From 3c7382bbff1b8abc280323eb066b7bf72f2ecf3c Mon Sep 17 00:00:00 2001 From: LuckyFBB <976060700@qq.com> Date: Wed, 9 Oct 2024 15:31:25 +0800 Subject: [PATCH 1/3] feat(trino): add columnName in expression and judge expression position --- src/grammar/trino/TrinoSql.g4 | 56 +- src/lib/trino/TrinoSql.interp | 4 +- src/lib/trino/TrinoSqlListener.ts | 22 + src/lib/trino/TrinoSqlParser.ts | 8845 +++++++++-------- src/lib/trino/TrinoSqlVisitor.ts | 14 + src/parser/trino/index.ts | 10 + .../suggestion/fixtures/syntaxSuggestion.sql | 8 +- .../trino/suggestion/syntaxSuggestion.test.ts | 50 + 8 files changed, 4603 insertions(+), 4406 deletions(-) diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index bebc0464..10c0e66d 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -91,7 +91,7 @@ statement )* ')' (KW_COMMENT comment=string)? (KW_WITH properties)? # createTable | KW_DROP KW_TABLE (KW_IF KW_EXISTS)? tableRef # dropTable | KW_INSERT KW_INTO tableRef columnList? rootQuery # insertInto - | KW_DELETE KW_FROM tableRef (KW_WHERE booleanExpression)? # delete + | KW_DELETE KW_FROM tableRef (whereClause)? # delete | KW_TRUNCATE KW_TABLE tableRef # truncateTable | KW_COMMENT KW_ON KW_TABLE tableRef KW_IS (string | KW_NULL) # commentTable | KW_COMMENT KW_ON KW_VIEW viewRef KW_IS (string | KW_NULL) # commentView @@ -106,7 +106,7 @@ statement | KW_ALTER KW_TABLE tableName=tableRef KW_SET KW_PROPERTIES propertyAssignments # setTableProperties | KW_ALTER KW_TABLE tableName=tableRef KW_EXECUTE procedureName=functionName ( '(' (callArgument (',' callArgument)*)? ')' - )? (KW_WHERE where=booleanExpression)? # tableExecute + )? (whereClause)? # tableExecute | KW_ANALYZE tableRef (KW_WITH properties)? # analyze | KW_CREATE (KW_OR KW_REPLACE)? KW_MATERIALIZED KW_VIEW (KW_IF KW_NOT KW_EXISTS)? viewNameCreate ( KW_GRACE KW_PERIOD interval @@ -167,26 +167,24 @@ statement | KW_DESC tableOrViewName # showColumns | KW_SHOW KW_FUNCTIONS ((KW_FROM | KW_IN) schemaRef)? ( KW_LIKE pattern=string (KW_ESCAPE escape=string)? - )? # showFunctions - | KW_SHOW KW_SESSION (KW_LIKE pattern=string (KW_ESCAPE escape=string)?)? # showSession - | KW_SET KW_SESSION KW_AUTHORIZATION authorizationUser # setSessionAuthorization - | KW_RESET KW_SESSION KW_AUTHORIZATION # resetSessionAuthorization - | KW_SET KW_SESSION qualifiedName EQ expression # setSession - | KW_RESET KW_SESSION qualifiedName # resetSession - | KW_START KW_TRANSACTION (transactionMode (',' transactionMode)*)? # startTransaction - | KW_COMMIT KW_WORK? # commit - | KW_ROLLBACK KW_WORK? # rollback - | KW_PREPARE identifier KW_FROM statement # prepare - | KW_DEALLOCATE KW_PREPARE identifier # deallocate - | KW_EXECUTE identifier (KW_USING expression (',' expression)*)? # execute - | KW_EXECUTE KW_IMMEDIATE string (KW_USING expression (',' expression)*)? # executeImmediate - | KW_DESCRIBE KW_INPUT identifier # describeInput - | KW_DESCRIBE KW_OUTPUT identifier # describeOutput - | KW_SET KW_PATH pathSpecification # setPath - | KW_SET KW_TIME KW_ZONE ( KW_LOCAL | expression) # setTimeZone - | KW_UPDATE tableRef KW_SET updateAssignment (',' updateAssignment)* ( - KW_WHERE where=booleanExpression - )? # update + )? # showFunctions + | KW_SHOW KW_SESSION (KW_LIKE pattern=string (KW_ESCAPE escape=string)?)? # showSession + | KW_SET KW_SESSION KW_AUTHORIZATION authorizationUser # setSessionAuthorization + | KW_RESET KW_SESSION KW_AUTHORIZATION # resetSessionAuthorization + | KW_SET KW_SESSION qualifiedName EQ expression # setSession + | KW_RESET KW_SESSION qualifiedName # resetSession + | KW_START KW_TRANSACTION (transactionMode (',' transactionMode)*)? # startTransaction + | KW_COMMIT KW_WORK? # commit + | KW_ROLLBACK KW_WORK? # rollback + | KW_PREPARE identifier KW_FROM statement # prepare + | KW_DEALLOCATE KW_PREPARE identifier # deallocate + | KW_EXECUTE identifier (KW_USING expression (',' expression)*)? # execute + | KW_EXECUTE KW_IMMEDIATE string (KW_USING expression (',' expression)*)? # executeImmediate + | KW_DESCRIBE KW_INPUT identifier # describeInput + | KW_DESCRIBE KW_OUTPUT identifier # describeOutput + | KW_SET KW_PATH pathSpecification # setPath + | KW_SET KW_TIME KW_ZONE ( KW_LOCAL | expression) # setTimeZone + | KW_UPDATE tableRef KW_SET updateAssignment (',' updateAssignment)* (whereClause)? # update | KW_MERGE KW_INTO tableRef (KW_AS? identifier)? KW_USING relation KW_ON expression mergeCase+ # merge | KW_SHOW KW_COMMENT KW_ON KW_TABLE tableRef # showTableComment // dtstack | KW_SHOW KW_COMMENT KW_ON KW_COLUMN columnRef # showColumnComment // dtstack @@ -283,12 +281,16 @@ sortItem querySpecification : KW_SELECT setQuantifier? selectItem (',' selectItem)* (KW_FROM relation (',' relation)*)? ( - KW_WHERE where=booleanExpression + whereClause )? (KW_GROUP KW_BY groupBy)? (KW_HAVING having=booleanExpression)? ( KW_WINDOW windowDefinition (',' windowDefinition)* )? ; +whereClause + : KW_WHERE where=booleanExpression + ; + groupBy : setQuantifier? groupingElement (',' groupingElement)* ; @@ -590,7 +592,7 @@ primaryExpression | KW_TRY_CAST '(' expression KW_AS type ')' # cast | KW_ARRAY '[' (expression (',' expression)*)? ']' # arrayConstructor | value=primaryExpression '[' index=valueExpression ']' # subscript - | identifier # columnReference + | columnName # columnReference | base=primaryExpression '.' fieldName=identifier # dereference | name=KW_CURRENT_DATE # currentDate | name=KW_CURRENT_TIME ('(' precision=INTEGER_VALUE ')')? # currentTime @@ -765,7 +767,7 @@ whenClause ; filter - : KW_FILTER '(' KW_WHERE booleanExpression ')' + : KW_FILTER '(' whereClause ')' ; mergeCase @@ -1008,6 +1010,10 @@ columnRef | {this.shouldMatchEmpty()}? ; +columnName + : qualifiedName + ; + columnNameCreate : identifier ; diff --git a/src/lib/trino/TrinoSql.interp b/src/lib/trino/TrinoSql.interp index 4b2b7d8d..8a5a8f9d 100644 --- a/src/lib/trino/TrinoSql.interp +++ b/src/lib/trino/TrinoSql.interp @@ -712,6 +712,7 @@ queryTerm queryPrimary sortItem querySpecification +whereClause groupBy groupingElement groupingSet @@ -824,6 +825,7 @@ catalogNameCreate functionName functionNameCreate columnRef +columnName columnNameCreate qualifiedName queryPeriod @@ -839,4 +841,4 @@ nonReserved atn: -[4, 1, 340, 3690, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 1, 0, 5, 0, 304, 8, 0, 10, 0, 12, 0, 307, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 315, 8, 2, 1, 3, 1, 3, 3, 3, 319, 8, 3, 1, 4, 1, 4, 3, 4, 323, 8, 4, 1, 5, 1, 5, 3, 5, 327, 8, 5, 1, 6, 1, 6, 3, 6, 331, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 344, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 351, 8, 8, 1, 8, 1, 8, 3, 8, 355, 8, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 365, 8, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 376, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 381, 8, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 391, 8, 8, 1, 8, 1, 8, 3, 8, 395, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 414, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 420, 8, 8, 1, 8, 1, 8, 3, 8, 424, 8, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 3, 8, 447, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 458, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 465, 8, 8, 10, 8, 12, 8, 468, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 473, 8, 8, 1, 8, 1, 8, 3, 8, 477, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 483, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 490, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 499, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 511, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 520, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 529, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 535, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 546, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 562, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 569, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 579, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 586, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 594, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 609, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 642, 8, 8, 10, 8, 12, 8, 645, 9, 8, 3, 8, 647, 8, 8, 1, 8, 3, 8, 650, 8, 8, 1, 8, 1, 8, 3, 8, 654, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 660, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 665, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 3, 8, 682, 8, 8, 1, 8, 1, 8, 3, 8, 686, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 694, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 3, 8, 704, 8, 8, 1, 8, 1, 8, 3, 8, 708, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 722, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 730, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 749, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 772, 8, 8, 10, 8, 12, 8, 775, 9, 8, 3, 8, 777, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 784, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 791, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 800, 8, 8, 1, 8, 1, 8, 3, 8, 804, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 811, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 817, 8, 8, 10, 8, 12, 8, 820, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 826, 8, 8, 10, 8, 12, 8, 829, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 834, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 839, 8, 8, 1, 8, 1, 8, 3, 8, 843, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 849, 8, 8, 10, 8, 12, 8, 852, 9, 8, 1, 8, 1, 8, 3, 8, 856, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 865, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 871, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 876, 8, 8, 10, 8, 12, 8, 879, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 885, 8, 8, 10, 8, 12, 8, 888, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 893, 8, 8, 1, 8, 1, 8, 3, 8, 897, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 903, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 908, 8, 8, 10, 8, 12, 8, 911, 9, 8, 1, 8, 1, 8, 3, 8, 915, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 926, 8, 8, 10, 8, 12, 8, 929, 9, 8, 1, 8, 1, 8, 3, 8, 933, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 945, 8, 8, 1, 8, 1, 8, 3, 8, 949, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 962, 8, 8, 10, 8, 12, 8, 965, 9, 8, 1, 8, 1, 8, 3, 8, 969, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 975, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1003, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1009, 8, 8, 3, 8, 1011, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1017, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1023, 8, 8, 3, 8, 1025, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1033, 8, 8, 3, 8, 1035, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1045, 8, 8, 3, 8, 1047, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1062, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1067, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1074, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1084, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1090, 8, 8, 3, 8, 1092, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1100, 8, 8, 3, 8, 1102, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1125, 8, 8, 10, 8, 12, 8, 1128, 9, 8, 3, 8, 1130, 8, 8, 1, 8, 1, 8, 3, 8, 1134, 8, 8, 1, 8, 1, 8, 3, 8, 1138, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1154, 8, 8, 10, 8, 12, 8, 1157, 9, 8, 3, 8, 1159, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1168, 8, 8, 10, 8, 12, 8, 1171, 9, 8, 3, 8, 1173, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1189, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1197, 8, 8, 10, 8, 12, 8, 1200, 9, 8, 1, 8, 1, 8, 3, 8, 1204, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1210, 8, 8, 1, 8, 3, 8, 1213, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1220, 8, 8, 11, 8, 12, 8, 1221, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1234, 8, 8, 1, 9, 3, 9, 1237, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1245, 8, 10, 10, 10, 12, 10, 1248, 9, 10, 1, 11, 3, 11, 1251, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1257, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1262, 8, 12, 10, 12, 12, 12, 1265, 9, 12, 1, 13, 1, 13, 3, 13, 1269, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1275, 8, 14, 1, 14, 1, 14, 3, 14, 1279, 8, 14, 1, 14, 1, 14, 3, 14, 1283, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1289, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1298, 8, 17, 10, 17, 12, 17, 1301, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1309, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1317, 8, 20, 10, 20, 12, 20, 1320, 9, 20, 3, 20, 1322, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1327, 8, 20, 3, 20, 1329, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1336, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1342, 8, 20, 3, 20, 1344, 8, 20, 1, 21, 1, 21, 3, 21, 1348, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1358, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1364, 8, 23, 1, 23, 5, 23, 1367, 8, 23, 10, 23, 12, 23, 1370, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1379, 8, 24, 10, 24, 12, 24, 1382, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1388, 8, 24, 1, 25, 1, 25, 3, 25, 1392, 8, 25, 1, 25, 3, 25, 1395, 8, 25, 1, 25, 1, 25, 3, 25, 1399, 8, 25, 1, 26, 1, 26, 3, 26, 1403, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1408, 8, 26, 10, 26, 12, 26, 1411, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1417, 8, 26, 10, 26, 12, 26, 1420, 9, 26, 3, 26, 1422, 8, 26, 1, 26, 1, 26, 3, 26, 1426, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1431, 8, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1441, 8, 26, 10, 26, 12, 26, 1444, 9, 26, 3, 26, 1446, 8, 26, 1, 27, 3, 27, 1449, 8, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1454, 8, 27, 10, 27, 12, 27, 1457, 9, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1465, 8, 28, 10, 28, 12, 28, 1468, 9, 28, 3, 28, 1470, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1478, 8, 28, 10, 28, 12, 28, 1481, 9, 28, 3, 28, 1483, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1492, 8, 28, 10, 28, 12, 28, 1495, 9, 28, 1, 28, 1, 28, 3, 28, 1499, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1505, 8, 29, 10, 29, 12, 29, 1508, 9, 29, 3, 29, 1510, 8, 29, 1, 29, 1, 29, 3, 29, 1514, 8, 29, 1, 30, 1, 30, 3, 30, 1518, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 3, 32, 1527, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1534, 8, 32, 10, 32, 12, 32, 1537, 9, 32, 3, 32, 1539, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1546, 8, 32, 10, 32, 12, 32, 1549, 9, 32, 3, 32, 1551, 8, 32, 1, 32, 3, 32, 1554, 8, 32, 1, 33, 1, 33, 3, 33, 1558, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 1569, 8, 35, 1, 35, 3, 35, 1572, 8, 35, 1, 35, 3, 35, 1575, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1582, 8, 35, 1, 35, 3, 35, 1585, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1604, 8, 36, 5, 36, 1606, 8, 36, 10, 36, 12, 36, 1609, 9, 36, 1, 37, 3, 37, 1612, 8, 37, 1, 37, 1, 37, 3, 37, 1616, 8, 37, 1, 37, 1, 37, 3, 37, 1620, 8, 37, 1, 37, 1, 37, 3, 37, 1624, 8, 37, 3, 37, 1626, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1635, 8, 38, 10, 38, 12, 38, 1638, 9, 38, 1, 38, 1, 38, 3, 38, 1642, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1651, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1660, 8, 42, 1, 42, 3, 42, 1663, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1669, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1679, 8, 44, 10, 44, 12, 44, 1682, 9, 44, 3, 44, 1684, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1691, 8, 44, 10, 44, 12, 44, 1694, 9, 44, 3, 44, 1696, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1702, 8, 44, 10, 44, 12, 44, 1705, 9, 44, 3, 44, 1707, 8, 44, 1, 44, 3, 44, 1710, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1715, 8, 44, 1, 44, 3, 44, 1718, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1728, 8, 44, 10, 44, 12, 44, 1731, 9, 44, 3, 44, 1733, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1739, 8, 44, 10, 44, 12, 44, 1742, 9, 44, 1, 44, 1, 44, 3, 44, 1746, 8, 44, 1, 44, 1, 44, 3, 44, 1750, 8, 44, 3, 44, 1752, 8, 44, 3, 44, 1754, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1769, 8, 46, 3, 46, 1771, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1782, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1803, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1811, 8, 49, 10, 49, 12, 49, 1814, 9, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1824, 8, 51, 1, 51, 1, 51, 3, 51, 1828, 8, 51, 3, 51, 1830, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1836, 8, 52, 10, 52, 12, 52, 1839, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1847, 8, 53, 10, 53, 12, 53, 1850, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1858, 8, 54, 10, 54, 12, 54, 1861, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1867, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1878, 8, 55, 10, 55, 12, 55, 1881, 9, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1886, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1910, 8, 55, 10, 55, 12, 55, 1913, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1927, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1932, 8, 55, 1, 55, 1, 55, 3, 55, 1936, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1946, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1952, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1958, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1966, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1971, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1978, 8, 56, 3, 56, 1980, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1986, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1992, 8, 56, 1, 56, 1, 56, 3, 56, 1996, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2001, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2008, 8, 56, 10, 56, 12, 56, 2011, 9, 56, 1, 56, 1, 56, 3, 56, 2015, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2027, 8, 57, 10, 57, 12, 57, 2030, 9, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2037, 8, 57, 10, 57, 12, 57, 2040, 9, 57, 3, 57, 2042, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2051, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2056, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2061, 8, 60, 3, 60, 2063, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2070, 8, 61, 10, 61, 12, 61, 2073, 9, 61, 3, 61, 2075, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2081, 8, 61, 10, 61, 12, 61, 2084, 9, 61, 3, 61, 2086, 8, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2093, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2098, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2107, 8, 63, 10, 63, 12, 63, 2110, 9, 63, 3, 63, 2112, 8, 63, 1, 63, 1, 63, 3, 63, 2116, 8, 63, 3, 63, 2118, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2126, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2134, 8, 63, 10, 63, 12, 63, 2137, 9, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2142, 8, 63, 3, 63, 2144, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2151, 8, 64, 1, 64, 1, 64, 3, 64, 2155, 8, 64, 3, 64, 2157, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2164, 8, 64, 1, 64, 1, 64, 3, 64, 2168, 8, 64, 3, 64, 2170, 8, 64, 3, 64, 2172, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2179, 8, 65, 10, 65, 12, 65, 2182, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2192, 8, 65, 1, 66, 1, 66, 3, 66, 2196, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2204, 8, 67, 10, 67, 12, 67, 2207, 9, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2216, 8, 69, 1, 69, 1, 69, 3, 69, 2220, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2228, 8, 69, 10, 69, 12, 69, 2231, 9, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2243, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2251, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2258, 8, 70, 10, 70, 12, 70, 2261, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2266, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2274, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2280, 8, 70, 1, 70, 1, 70, 3, 70, 2284, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2289, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2294, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2300, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2314, 8, 71, 10, 71, 12, 71, 2317, 9, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2344, 8, 72, 11, 72, 12, 72, 2345, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2355, 8, 72, 10, 72, 12, 72, 2358, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2365, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2370, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2375, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2386, 8, 72, 10, 72, 12, 72, 2389, 9, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2394, 8, 72, 1, 72, 3, 72, 2397, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2404, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2409, 8, 72, 1, 72, 3, 72, 2412, 8, 72, 1, 72, 3, 72, 2415, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2420, 8, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2425, 8, 72, 10, 72, 12, 72, 2428, 9, 72, 3, 72, 2430, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2437, 8, 72, 10, 72, 12, 72, 2440, 9, 72, 3, 72, 2442, 8, 72, 1, 72, 1, 72, 3, 72, 2446, 8, 72, 1, 72, 3, 72, 2449, 8, 72, 1, 72, 3, 72, 2452, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2465, 8, 72, 10, 72, 12, 72, 2468, 9, 72, 3, 72, 2470, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2487, 8, 72, 11, 72, 12, 72, 2488, 1, 72, 1, 72, 3, 72, 2493, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2499, 8, 72, 11, 72, 12, 72, 2500, 1, 72, 1, 72, 3, 72, 2505, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2528, 8, 72, 10, 72, 12, 72, 2531, 9, 72, 3, 72, 2533, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2542, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2548, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2554, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2560, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2569, 8, 72, 1, 72, 3, 72, 2572, 8, 72, 1, 72, 3, 72, 2575, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2594, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2603, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2623, 8, 72, 10, 72, 12, 72, 2626, 9, 72, 3, 72, 2628, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2638, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2647, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2653, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2659, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2670, 8, 72, 3, 72, 2672, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2677, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2684, 8, 72, 3, 72, 2686, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2692, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2698, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2707, 8, 72, 10, 72, 12, 72, 2710, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2718, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2723, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2728, 8, 72, 3, 72, 2730, 8, 72, 3, 72, 2732, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2738, 8, 72, 3, 72, 2740, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2748, 8, 72, 10, 72, 12, 72, 2751, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2759, 8, 72, 3, 72, 2761, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2767, 8, 72, 3, 72, 2769, 8, 72, 1, 72, 3, 72, 2772, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2782, 8, 72, 10, 72, 12, 72, 2785, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2798, 8, 73, 10, 73, 12, 73, 2801, 9, 73, 3, 73, 2803, 8, 73, 1, 74, 1, 74, 1, 74, 3, 74, 2808, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2813, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2825, 8, 78, 1, 79, 1, 79, 3, 79, 2829, 8, 79, 1, 79, 1, 79, 3, 79, 2833, 8, 79, 1, 79, 3, 79, 2836, 8, 79, 3, 79, 2838, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2846, 8, 80, 1, 81, 3, 81, 2849, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2859, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2867, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2873, 8, 84, 3, 84, 2875, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2883, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 3, 89, 2893, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2899, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2911, 8, 92, 10, 92, 12, 92, 2914, 9, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2922, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2929, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2934, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2941, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2951, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2956, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2963, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2987, 8, 92, 10, 92, 12, 92, 2990, 9, 92, 1, 92, 1, 92, 3, 92, 2994, 8, 92, 3, 92, 2996, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3003, 8, 92, 5, 92, 3005, 8, 92, 10, 92, 12, 92, 3008, 9, 92, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3014, 8, 93, 1, 94, 1, 94, 3, 94, 3018, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3035, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3048, 8, 97, 10, 97, 12, 97, 3051, 9, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3057, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3066, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3074, 8, 97, 10, 97, 12, 97, 3077, 9, 97, 1, 97, 1, 97, 3, 97, 3081, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3088, 8, 97, 10, 97, 12, 97, 3091, 9, 97, 1, 97, 1, 97, 3, 97, 3095, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3103, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3109, 8, 99, 10, 99, 12, 99, 3112, 9, 99, 3, 99, 3114, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3120, 8, 99, 1, 99, 3, 99, 3123, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3130, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3136, 8, 99, 10, 99, 12, 99, 3139, 9, 99, 3, 99, 3141, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3147, 8, 99, 10, 99, 12, 99, 3150, 9, 99, 3, 99, 3152, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3178, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3189, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3194, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3201, 8, 102, 10, 102, 12, 102, 3204, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3214, 8, 103, 10, 103, 12, 103, 3217, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3231, 8, 103, 1, 104, 1, 104, 3, 104, 3235, 8, 104, 1, 104, 1, 104, 3, 104, 3239, 8, 104, 1, 104, 1, 104, 3, 104, 3243, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3249, 8, 104, 1, 104, 1, 104, 3, 104, 3253, 8, 104, 1, 104, 1, 104, 3, 104, 3257, 8, 104, 1, 104, 1, 104, 3, 104, 3261, 8, 104, 3, 104, 3263, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3273, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3280, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3289, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3296, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3303, 8, 110, 1, 111, 1, 111, 1, 111, 5, 111, 3308, 8, 111, 10, 111, 12, 111, 3311, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3317, 8, 112, 10, 112, 12, 112, 3320, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3329, 8, 113, 10, 113, 12, 113, 3332, 9, 113, 3, 113, 3334, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3343, 8, 114, 10, 114, 12, 114, 3346, 9, 114, 3, 114, 3348, 8, 114, 1, 114, 1, 114, 1, 115, 3, 115, 3353, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 3, 117, 3363, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3379, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3391, 8, 118, 11, 118, 12, 118, 3392, 1, 118, 3, 118, 3396, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3403, 8, 118, 11, 118, 12, 118, 3404, 1, 118, 3, 118, 3408, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3418, 8, 118, 10, 118, 12, 118, 3421, 9, 118, 1, 118, 3, 118, 3424, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3437, 8, 118, 10, 118, 12, 118, 3440, 9, 118, 1, 118, 3, 118, 3443, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3449, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3459, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3471, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3480, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3499, 8, 122, 10, 122, 12, 122, 3502, 9, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3507, 8, 122, 1, 123, 1, 123, 1, 123, 4, 123, 3512, 8, 123, 11, 123, 12, 123, 3513, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3522, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 3527, 8, 125, 1, 126, 3, 126, 3530, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 3536, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3549, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3562, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3575, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3588, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3595, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3602, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 3614, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 5, 140, 3621, 8, 140, 10, 140, 12, 140, 3624, 9, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3637, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3644, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 3649, 8, 145, 10, 145, 12, 145, 3652, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3661, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3668, 8, 147, 1, 148, 3, 148, 3671, 8, 148, 1, 148, 1, 148, 3, 148, 3675, 8, 148, 1, 148, 1, 148, 3, 148, 3679, 8, 148, 1, 148, 3, 148, 3682, 8, 148, 1, 149, 1, 149, 3, 149, 3686, 8, 149, 1, 150, 1, 150, 1, 150, 0, 7, 46, 72, 138, 142, 144, 184, 204, 151, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 0, 35, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4245, 0, 305, 1, 0, 0, 0, 2, 310, 1, 0, 0, 0, 4, 312, 1, 0, 0, 0, 6, 316, 1, 0, 0, 0, 8, 320, 1, 0, 0, 0, 10, 324, 1, 0, 0, 0, 12, 328, 1, 0, 0, 0, 14, 332, 1, 0, 0, 0, 16, 1233, 1, 0, 0, 0, 18, 1236, 1, 0, 0, 0, 20, 1240, 1, 0, 0, 0, 22, 1250, 1, 0, 0, 0, 24, 1254, 1, 0, 0, 0, 26, 1268, 1, 0, 0, 0, 28, 1270, 1, 0, 0, 0, 30, 1284, 1, 0, 0, 0, 32, 1290, 1, 0, 0, 0, 34, 1294, 1, 0, 0, 0, 36, 1302, 1, 0, 0, 0, 38, 1308, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1351, 1, 0, 0, 0, 48, 1387, 1, 0, 0, 0, 50, 1391, 1, 0, 0, 0, 52, 1400, 1, 0, 0, 0, 54, 1448, 1, 0, 0, 0, 56, 1498, 1, 0, 0, 0, 58, 1513, 1, 0, 0, 0, 60, 1517, 1, 0, 0, 0, 62, 1519, 1, 0, 0, 0, 64, 1526, 1, 0, 0, 0, 66, 1555, 1, 0, 0, 0, 68, 1564, 1, 0, 0, 0, 70, 1584, 1, 0, 0, 0, 72, 1586, 1, 0, 0, 0, 74, 1625, 1, 0, 0, 0, 76, 1641, 1, 0, 0, 0, 78, 1643, 1, 0, 0, 0, 80, 1652, 1, 0, 0, 0, 82, 1654, 1, 0, 0, 0, 84, 1662, 1, 0, 0, 0, 86, 1668, 1, 0, 0, 0, 88, 1670, 1, 0, 0, 0, 90, 1755, 1, 0, 0, 0, 92, 1770, 1, 0, 0, 0, 94, 1781, 1, 0, 0, 0, 96, 1802, 1, 0, 0, 0, 98, 1804, 1, 0, 0, 0, 100, 1817, 1, 0, 0, 0, 102, 1821, 1, 0, 0, 0, 104, 1831, 1, 0, 0, 0, 106, 1842, 1, 0, 0, 0, 108, 1853, 1, 0, 0, 0, 110, 1935, 1, 0, 0, 0, 112, 2014, 1, 0, 0, 0, 114, 2041, 1, 0, 0, 0, 116, 2043, 1, 0, 0, 0, 118, 2050, 1, 0, 0, 0, 120, 2062, 1, 0, 0, 0, 122, 2064, 1, 0, 0, 0, 124, 2092, 1, 0, 0, 0, 126, 2099, 1, 0, 0, 0, 128, 2171, 1, 0, 0, 0, 130, 2191, 1, 0, 0, 0, 132, 2193, 1, 0, 0, 0, 134, 2197, 1, 0, 0, 0, 136, 2210, 1, 0, 0, 0, 138, 2219, 1, 0, 0, 0, 140, 2293, 1, 0, 0, 0, 142, 2299, 1, 0, 0, 0, 144, 2771, 1, 0, 0, 0, 146, 2786, 1, 0, 0, 0, 148, 2804, 1, 0, 0, 0, 150, 2809, 1, 0, 0, 0, 152, 2814, 1, 0, 0, 0, 154, 2818, 1, 0, 0, 0, 156, 2824, 1, 0, 0, 0, 158, 2837, 1, 0, 0, 0, 160, 2845, 1, 0, 0, 0, 162, 2858, 1, 0, 0, 0, 164, 2860, 1, 0, 0, 0, 166, 2866, 1, 0, 0, 0, 168, 2874, 1, 0, 0, 0, 170, 2882, 1, 0, 0, 0, 172, 2884, 1, 0, 0, 0, 174, 2886, 1, 0, 0, 0, 176, 2888, 1, 0, 0, 0, 178, 2890, 1, 0, 0, 0, 180, 2900, 1, 0, 0, 0, 182, 2902, 1, 0, 0, 0, 184, 2995, 1, 0, 0, 0, 186, 3013, 1, 0, 0, 0, 188, 3017, 1, 0, 0, 0, 190, 3019, 1, 0, 0, 0, 192, 3024, 1, 0, 0, 0, 194, 3094, 1, 0, 0, 0, 196, 3096, 1, 0, 0, 0, 198, 3113, 1, 0, 0, 0, 200, 3177, 1, 0, 0, 0, 202, 3188, 1, 0, 0, 0, 204, 3190, 1, 0, 0, 0, 206, 3230, 1, 0, 0, 0, 208, 3262, 1, 0, 0, 0, 210, 3264, 1, 0, 0, 0, 212, 3272, 1, 0, 0, 0, 214, 3279, 1, 0, 0, 0, 216, 3288, 1, 0, 0, 0, 218, 3295, 1, 0, 0, 0, 220, 3302, 1, 0, 0, 0, 222, 3304, 1, 0, 0, 0, 224, 3312, 1, 0, 0, 0, 226, 3323, 1, 0, 0, 0, 228, 3337, 1, 0, 0, 0, 230, 3352, 1, 0, 0, 0, 232, 3356, 1, 0, 0, 0, 234, 3378, 1, 0, 0, 0, 236, 3479, 1, 0, 0, 0, 238, 3481, 1, 0, 0, 0, 240, 3486, 1, 0, 0, 0, 242, 3491, 1, 0, 0, 0, 244, 3494, 1, 0, 0, 0, 246, 3511, 1, 0, 0, 0, 248, 3521, 1, 0, 0, 0, 250, 3526, 1, 0, 0, 0, 252, 3529, 1, 0, 0, 0, 254, 3535, 1, 0, 0, 0, 256, 3548, 1, 0, 0, 0, 258, 3561, 1, 0, 0, 0, 260, 3574, 1, 0, 0, 0, 262, 3587, 1, 0, 0, 0, 264, 3594, 1, 0, 0, 0, 266, 3601, 1, 0, 0, 0, 268, 3603, 1, 0, 0, 0, 270, 3605, 1, 0, 0, 0, 272, 3607, 1, 0, 0, 0, 274, 3609, 1, 0, 0, 0, 276, 3613, 1, 0, 0, 0, 278, 3615, 1, 0, 0, 0, 280, 3617, 1, 0, 0, 0, 282, 3625, 1, 0, 0, 0, 284, 3631, 1, 0, 0, 0, 286, 3636, 1, 0, 0, 0, 288, 3643, 1, 0, 0, 0, 290, 3645, 1, 0, 0, 0, 292, 3660, 1, 0, 0, 0, 294, 3667, 1, 0, 0, 0, 296, 3681, 1, 0, 0, 0, 298, 3685, 1, 0, 0, 0, 300, 3687, 1, 0, 0, 0, 302, 304, 3, 2, 1, 0, 303, 302, 1, 0, 0, 0, 304, 307, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 308, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 308, 309, 5, 0, 0, 1, 309, 1, 1, 0, 0, 0, 310, 311, 3, 4, 2, 0, 311, 3, 1, 0, 0, 0, 312, 314, 3, 16, 8, 0, 313, 315, 5, 325, 0, 0, 314, 313, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 5, 1, 0, 0, 0, 316, 318, 3, 136, 68, 0, 317, 319, 5, 325, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 7, 1, 0, 0, 0, 320, 322, 3, 222, 111, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 9, 1, 0, 0, 0, 324, 326, 3, 184, 92, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 11, 1, 0, 0, 0, 328, 330, 3, 204, 102, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 13, 1, 0, 0, 0, 332, 333, 3, 224, 112, 0, 333, 334, 5, 0, 0, 1, 334, 15, 1, 0, 0, 0, 335, 1234, 3, 18, 9, 0, 336, 337, 5, 288, 0, 0, 337, 1234, 3, 264, 132, 0, 338, 339, 5, 53, 0, 0, 339, 343, 5, 42, 0, 0, 340, 341, 5, 119, 0, 0, 341, 342, 5, 182, 0, 0, 342, 344, 5, 94, 0, 0, 343, 340, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 3, 270, 135, 0, 346, 347, 5, 290, 0, 0, 347, 350, 3, 294, 147, 0, 348, 349, 5, 46, 0, 0, 349, 351, 3, 168, 84, 0, 350, 348, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 354, 1, 0, 0, 0, 352, 353, 5, 31, 0, 0, 353, 355, 3, 288, 144, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 304, 0, 0, 357, 359, 3, 32, 16, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 1234, 1, 0, 0, 0, 360, 361, 5, 83, 0, 0, 361, 364, 5, 42, 0, 0, 362, 363, 5, 119, 0, 0, 363, 365, 5, 94, 0, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 368, 3, 268, 134, 0, 367, 369, 7, 0, 0, 0, 368, 367, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 1234, 1, 0, 0, 0, 370, 371, 5, 53, 0, 0, 371, 375, 5, 243, 0, 0, 372, 373, 5, 119, 0, 0, 373, 374, 5, 182, 0, 0, 374, 376, 5, 94, 0, 0, 375, 372, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 380, 3, 266, 133, 0, 378, 379, 5, 31, 0, 0, 379, 381, 3, 288, 144, 0, 380, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 383, 5, 304, 0, 0, 383, 385, 3, 32, 16, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 1234, 1, 0, 0, 0, 386, 387, 5, 83, 0, 0, 387, 390, 5, 243, 0, 0, 388, 389, 5, 119, 0, 0, 389, 391, 5, 94, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 3, 264, 132, 0, 393, 395, 7, 0, 0, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 1234, 1, 0, 0, 0, 396, 397, 5, 23, 0, 0, 397, 398, 5, 243, 0, 0, 398, 399, 3, 264, 132, 0, 399, 400, 5, 223, 0, 0, 400, 401, 5, 269, 0, 0, 401, 402, 3, 266, 133, 0, 402, 1234, 1, 0, 0, 0, 403, 404, 5, 23, 0, 0, 404, 405, 5, 243, 0, 0, 405, 406, 3, 264, 132, 0, 406, 407, 5, 251, 0, 0, 407, 408, 5, 31, 0, 0, 408, 409, 3, 288, 144, 0, 409, 1234, 1, 0, 0, 0, 410, 413, 5, 53, 0, 0, 411, 412, 5, 194, 0, 0, 412, 414, 5, 226, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 419, 5, 260, 0, 0, 416, 417, 5, 119, 0, 0, 417, 418, 5, 182, 0, 0, 418, 420, 5, 94, 0, 0, 419, 416, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 423, 3, 258, 129, 0, 422, 424, 3, 104, 52, 0, 423, 422, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 427, 1, 0, 0, 0, 425, 426, 5, 46, 0, 0, 426, 428, 3, 168, 84, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 430, 5, 304, 0, 0, 430, 432, 3, 32, 16, 0, 431, 429, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 439, 5, 28, 0, 0, 434, 440, 3, 18, 9, 0, 435, 436, 5, 1, 0, 0, 436, 437, 3, 18, 9, 0, 437, 438, 5, 2, 0, 0, 438, 440, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 440, 446, 1, 0, 0, 0, 441, 443, 5, 304, 0, 0, 442, 444, 5, 179, 0, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 447, 5, 65, 0, 0, 446, 441, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 1234, 1, 0, 0, 0, 448, 451, 5, 53, 0, 0, 449, 450, 5, 194, 0, 0, 450, 452, 5, 226, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 457, 5, 260, 0, 0, 454, 455, 5, 119, 0, 0, 455, 456, 5, 182, 0, 0, 456, 458, 5, 94, 0, 0, 457, 454, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 3, 258, 129, 0, 460, 461, 5, 1, 0, 0, 461, 466, 3, 26, 13, 0, 462, 463, 5, 3, 0, 0, 463, 465, 3, 26, 13, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 469, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 472, 5, 2, 0, 0, 470, 471, 5, 46, 0, 0, 471, 473, 3, 168, 84, 0, 472, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 475, 5, 304, 0, 0, 475, 477, 3, 32, 16, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1234, 1, 0, 0, 0, 478, 479, 5, 83, 0, 0, 479, 482, 5, 260, 0, 0, 480, 481, 5, 119, 0, 0, 481, 483, 5, 94, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 1234, 3, 256, 128, 0, 485, 486, 5, 127, 0, 0, 486, 487, 5, 130, 0, 0, 487, 489, 3, 256, 128, 0, 488, 490, 3, 106, 53, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 3, 18, 9, 0, 492, 1234, 1, 0, 0, 0, 493, 494, 5, 73, 0, 0, 494, 495, 5, 105, 0, 0, 495, 498, 3, 256, 128, 0, 496, 497, 5, 301, 0, 0, 497, 499, 3, 138, 69, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 1234, 1, 0, 0, 0, 500, 501, 5, 274, 0, 0, 501, 502, 5, 260, 0, 0, 502, 1234, 3, 256, 128, 0, 503, 504, 5, 46, 0, 0, 504, 505, 5, 190, 0, 0, 505, 506, 5, 260, 0, 0, 506, 507, 3, 256, 128, 0, 507, 510, 5, 133, 0, 0, 508, 511, 3, 168, 84, 0, 509, 511, 5, 183, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 1234, 1, 0, 0, 0, 512, 513, 5, 46, 0, 0, 513, 514, 5, 190, 0, 0, 514, 515, 5, 299, 0, 0, 515, 516, 3, 260, 130, 0, 516, 519, 5, 133, 0, 0, 517, 520, 3, 168, 84, 0, 518, 520, 5, 183, 0, 0, 519, 517, 1, 0, 0, 0, 519, 518, 1, 0, 0, 0, 520, 1234, 1, 0, 0, 0, 521, 522, 5, 46, 0, 0, 522, 523, 5, 190, 0, 0, 523, 524, 5, 44, 0, 0, 524, 525, 3, 276, 138, 0, 525, 528, 5, 133, 0, 0, 526, 529, 3, 168, 84, 0, 527, 529, 5, 183, 0, 0, 528, 526, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 1234, 1, 0, 0, 0, 530, 531, 5, 23, 0, 0, 531, 534, 5, 260, 0, 0, 532, 533, 5, 119, 0, 0, 533, 535, 5, 94, 0, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 3, 256, 128, 0, 537, 538, 5, 223, 0, 0, 538, 539, 5, 269, 0, 0, 539, 540, 3, 258, 129, 0, 540, 1234, 1, 0, 0, 0, 541, 542, 5, 23, 0, 0, 542, 545, 5, 260, 0, 0, 543, 544, 5, 119, 0, 0, 544, 546, 5, 94, 0, 0, 545, 543, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 3, 256, 128, 0, 548, 549, 5, 19, 0, 0, 549, 553, 5, 44, 0, 0, 550, 551, 5, 119, 0, 0, 551, 552, 5, 182, 0, 0, 552, 554, 5, 94, 0, 0, 553, 550, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 3, 28, 14, 0, 556, 1234, 1, 0, 0, 0, 557, 558, 5, 23, 0, 0, 558, 561, 5, 260, 0, 0, 559, 560, 5, 119, 0, 0, 560, 562, 5, 94, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 3, 256, 128, 0, 564, 565, 5, 223, 0, 0, 565, 568, 5, 44, 0, 0, 566, 567, 5, 119, 0, 0, 567, 569, 5, 94, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 3, 276, 138, 0, 571, 572, 5, 269, 0, 0, 572, 573, 3, 278, 139, 0, 573, 1234, 1, 0, 0, 0, 574, 575, 5, 23, 0, 0, 575, 578, 5, 260, 0, 0, 576, 577, 5, 119, 0, 0, 577, 579, 5, 94, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 3, 256, 128, 0, 581, 582, 5, 83, 0, 0, 582, 585, 5, 44, 0, 0, 583, 584, 5, 119, 0, 0, 584, 586, 5, 94, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 3, 276, 138, 0, 588, 1234, 1, 0, 0, 0, 589, 590, 5, 23, 0, 0, 590, 593, 5, 260, 0, 0, 591, 592, 5, 119, 0, 0, 592, 594, 5, 94, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 3, 256, 128, 0, 596, 597, 5, 23, 0, 0, 597, 598, 5, 44, 0, 0, 598, 599, 3, 276, 138, 0, 599, 600, 5, 251, 0, 0, 600, 601, 5, 65, 0, 0, 601, 602, 5, 276, 0, 0, 602, 603, 3, 184, 92, 0, 603, 1234, 1, 0, 0, 0, 604, 605, 5, 23, 0, 0, 605, 608, 5, 260, 0, 0, 606, 607, 5, 119, 0, 0, 607, 609, 5, 94, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 3, 256, 128, 0, 611, 612, 5, 23, 0, 0, 612, 613, 5, 44, 0, 0, 613, 614, 3, 276, 138, 0, 614, 615, 5, 83, 0, 0, 615, 616, 5, 182, 0, 0, 616, 617, 5, 183, 0, 0, 617, 1234, 1, 0, 0, 0, 618, 619, 5, 23, 0, 0, 619, 620, 5, 260, 0, 0, 620, 621, 3, 256, 128, 0, 621, 622, 5, 251, 0, 0, 622, 623, 5, 31, 0, 0, 623, 624, 3, 288, 144, 0, 624, 1234, 1, 0, 0, 0, 625, 626, 5, 23, 0, 0, 626, 627, 5, 260, 0, 0, 627, 628, 3, 256, 128, 0, 628, 629, 5, 251, 0, 0, 629, 630, 5, 216, 0, 0, 630, 631, 3, 34, 17, 0, 631, 1234, 1, 0, 0, 0, 632, 633, 5, 23, 0, 0, 633, 634, 5, 260, 0, 0, 634, 635, 3, 256, 128, 0, 635, 636, 5, 93, 0, 0, 636, 649, 3, 272, 136, 0, 637, 646, 5, 1, 0, 0, 638, 643, 3, 218, 109, 0, 639, 640, 5, 3, 0, 0, 640, 642, 3, 218, 109, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 5, 2, 0, 0, 649, 637, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 652, 5, 301, 0, 0, 652, 654, 3, 138, 69, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 1234, 1, 0, 0, 0, 655, 656, 5, 24, 0, 0, 656, 659, 3, 256, 128, 0, 657, 658, 5, 304, 0, 0, 658, 660, 3, 32, 16, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 1234, 1, 0, 0, 0, 661, 664, 5, 53, 0, 0, 662, 663, 5, 194, 0, 0, 663, 665, 5, 226, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 5, 167, 0, 0, 667, 671, 5, 299, 0, 0, 668, 669, 5, 119, 0, 0, 669, 670, 5, 182, 0, 0, 670, 672, 5, 94, 0, 0, 671, 668, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 677, 3, 262, 131, 0, 674, 675, 5, 109, 0, 0, 675, 676, 5, 208, 0, 0, 676, 678, 3, 178, 89, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 680, 5, 46, 0, 0, 680, 682, 3, 168, 84, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 684, 5, 304, 0, 0, 684, 686, 3, 32, 16, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 28, 0, 0, 688, 689, 3, 18, 9, 0, 689, 1234, 1, 0, 0, 0, 690, 693, 5, 53, 0, 0, 691, 692, 5, 194, 0, 0, 692, 694, 5, 226, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 299, 0, 0, 696, 699, 3, 262, 131, 0, 697, 698, 5, 46, 0, 0, 698, 700, 3, 168, 84, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 703, 1, 0, 0, 0, 701, 702, 5, 246, 0, 0, 702, 704, 7, 1, 0, 0, 703, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 706, 5, 304, 0, 0, 706, 708, 3, 32, 16, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 5, 28, 0, 0, 710, 711, 3, 18, 9, 0, 711, 1234, 1, 0, 0, 0, 712, 713, 5, 222, 0, 0, 713, 714, 5, 167, 0, 0, 714, 715, 5, 299, 0, 0, 715, 1234, 3, 260, 130, 0, 716, 717, 5, 83, 0, 0, 717, 718, 5, 167, 0, 0, 718, 721, 5, 299, 0, 0, 719, 720, 5, 119, 0, 0, 720, 722, 5, 94, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 1234, 3, 260, 130, 0, 724, 725, 5, 23, 0, 0, 725, 726, 5, 167, 0, 0, 726, 729, 5, 299, 0, 0, 727, 728, 5, 119, 0, 0, 728, 730, 5, 94, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 3, 260, 130, 0, 732, 733, 5, 223, 0, 0, 733, 734, 5, 269, 0, 0, 734, 735, 3, 262, 131, 0, 735, 1234, 1, 0, 0, 0, 736, 737, 5, 23, 0, 0, 737, 738, 5, 167, 0, 0, 738, 739, 5, 299, 0, 0, 739, 740, 3, 260, 130, 0, 740, 741, 5, 251, 0, 0, 741, 742, 5, 216, 0, 0, 742, 743, 3, 34, 17, 0, 743, 1234, 1, 0, 0, 0, 744, 745, 5, 83, 0, 0, 745, 748, 5, 299, 0, 0, 746, 747, 5, 119, 0, 0, 747, 749, 5, 94, 0, 0, 748, 746, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1234, 3, 260, 130, 0, 751, 752, 5, 23, 0, 0, 752, 753, 5, 299, 0, 0, 753, 754, 3, 260, 130, 0, 754, 755, 5, 223, 0, 0, 755, 756, 5, 269, 0, 0, 756, 757, 3, 262, 131, 0, 757, 1234, 1, 0, 0, 0, 758, 759, 5, 23, 0, 0, 759, 760, 5, 299, 0, 0, 760, 761, 3, 260, 130, 0, 761, 762, 5, 251, 0, 0, 762, 763, 5, 31, 0, 0, 763, 764, 3, 288, 144, 0, 764, 1234, 1, 0, 0, 0, 765, 766, 5, 37, 0, 0, 766, 767, 3, 272, 136, 0, 767, 776, 5, 1, 0, 0, 768, 773, 3, 218, 109, 0, 769, 770, 5, 3, 0, 0, 770, 772, 3, 218, 109, 0, 771, 769, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 2, 0, 0, 779, 1234, 1, 0, 0, 0, 780, 783, 5, 53, 0, 0, 781, 782, 5, 194, 0, 0, 782, 784, 5, 226, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 1234, 3, 224, 112, 0, 786, 787, 5, 83, 0, 0, 787, 790, 5, 107, 0, 0, 788, 789, 5, 119, 0, 0, 789, 791, 5, 94, 0, 0, 790, 788, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 1234, 3, 228, 114, 0, 793, 794, 5, 53, 0, 0, 794, 795, 5, 235, 0, 0, 795, 799, 3, 294, 147, 0, 796, 797, 5, 304, 0, 0, 797, 798, 5, 20, 0, 0, 798, 800, 3, 286, 143, 0, 799, 796, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 802, 5, 122, 0, 0, 802, 804, 3, 268, 134, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 1234, 1, 0, 0, 0, 805, 806, 5, 83, 0, 0, 806, 807, 5, 235, 0, 0, 807, 810, 3, 294, 147, 0, 808, 809, 5, 122, 0, 0, 809, 811, 3, 268, 134, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 1234, 1, 0, 0, 0, 812, 813, 5, 110, 0, 0, 813, 818, 3, 292, 146, 0, 814, 815, 5, 3, 0, 0, 815, 817, 3, 292, 146, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 5, 269, 0, 0, 822, 827, 3, 288, 144, 0, 823, 824, 5, 3, 0, 0, 824, 826, 3, 288, 144, 0, 825, 823, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 833, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 831, 5, 304, 0, 0, 831, 832, 5, 20, 0, 0, 832, 834, 5, 193, 0, 0, 833, 830, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 838, 1, 0, 0, 0, 835, 836, 5, 111, 0, 0, 836, 837, 5, 36, 0, 0, 837, 839, 3, 286, 143, 0, 838, 835, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 842, 1, 0, 0, 0, 840, 841, 5, 122, 0, 0, 841, 843, 3, 268, 134, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 1234, 1, 0, 0, 0, 844, 855, 5, 110, 0, 0, 845, 850, 3, 292, 146, 0, 846, 847, 5, 3, 0, 0, 847, 849, 3, 292, 146, 0, 848, 846, 1, 0, 0, 0, 849, 852, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 856, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 854, 5, 22, 0, 0, 854, 856, 5, 215, 0, 0, 855, 845, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 5, 190, 0, 0, 858, 859, 3, 252, 126, 0, 859, 860, 5, 269, 0, 0, 860, 864, 3, 288, 144, 0, 861, 862, 5, 304, 0, 0, 862, 863, 5, 110, 0, 0, 863, 865, 5, 193, 0, 0, 864, 861, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 1234, 1, 0, 0, 0, 866, 870, 5, 233, 0, 0, 867, 868, 5, 20, 0, 0, 868, 869, 5, 193, 0, 0, 869, 871, 5, 103, 0, 0, 870, 867, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 877, 3, 292, 146, 0, 873, 874, 5, 3, 0, 0, 874, 876, 3, 292, 146, 0, 875, 873, 1, 0, 0, 0, 876, 879, 1, 0, 0, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 880, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 880, 881, 5, 105, 0, 0, 881, 886, 3, 288, 144, 0, 882, 883, 5, 3, 0, 0, 883, 885, 3, 288, 144, 0, 884, 882, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 892, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 890, 5, 111, 0, 0, 890, 891, 5, 36, 0, 0, 891, 893, 3, 286, 143, 0, 892, 889, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 896, 1, 0, 0, 0, 894, 895, 5, 122, 0, 0, 895, 897, 3, 268, 134, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 1234, 1, 0, 0, 0, 898, 902, 5, 233, 0, 0, 899, 900, 5, 110, 0, 0, 900, 901, 5, 193, 0, 0, 901, 903, 5, 103, 0, 0, 902, 899, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 914, 1, 0, 0, 0, 904, 909, 3, 292, 146, 0, 905, 906, 5, 3, 0, 0, 906, 908, 3, 292, 146, 0, 907, 905, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 915, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 912, 913, 5, 22, 0, 0, 913, 915, 5, 215, 0, 0, 914, 904, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 190, 0, 0, 917, 918, 3, 252, 126, 0, 918, 919, 5, 105, 0, 0, 919, 920, 3, 288, 144, 0, 920, 1234, 1, 0, 0, 0, 921, 932, 5, 74, 0, 0, 922, 927, 3, 248, 124, 0, 923, 924, 5, 3, 0, 0, 924, 926, 3, 248, 124, 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 933, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 22, 0, 0, 931, 933, 5, 215, 0, 0, 932, 922, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 190, 0, 0, 935, 936, 3, 252, 126, 0, 936, 937, 5, 269, 0, 0, 937, 938, 3, 288, 144, 0, 938, 1234, 1, 0, 0, 0, 939, 940, 5, 251, 0, 0, 940, 944, 5, 235, 0, 0, 941, 945, 5, 22, 0, 0, 942, 945, 5, 180, 0, 0, 943, 945, 3, 294, 147, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 943, 1, 0, 0, 0, 945, 948, 1, 0, 0, 0, 946, 947, 5, 122, 0, 0, 947, 949, 3, 268, 134, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 1234, 1, 0, 0, 0, 950, 951, 5, 253, 0, 0, 951, 954, 5, 112, 0, 0, 952, 953, 5, 190, 0, 0, 953, 955, 3, 252, 126, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1234, 1, 0, 0, 0, 956, 968, 5, 95, 0, 0, 957, 958, 5, 1, 0, 0, 958, 963, 3, 212, 106, 0, 959, 960, 5, 3, 0, 0, 960, 962, 3, 212, 106, 0, 961, 959, 1, 0, 0, 0, 962, 965, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 966, 967, 5, 2, 0, 0, 967, 969, 1, 0, 0, 0, 968, 957, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 1234, 3, 16, 8, 0, 971, 972, 5, 95, 0, 0, 972, 974, 5, 24, 0, 0, 973, 975, 5, 297, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1234, 3, 16, 8, 0, 977, 978, 5, 253, 0, 0, 978, 979, 5, 53, 0, 0, 979, 980, 5, 260, 0, 0, 980, 1234, 3, 256, 128, 0, 981, 982, 5, 253, 0, 0, 982, 983, 5, 53, 0, 0, 983, 984, 5, 243, 0, 0, 984, 1234, 3, 264, 132, 0, 985, 986, 5, 253, 0, 0, 986, 987, 5, 53, 0, 0, 987, 988, 5, 299, 0, 0, 988, 1234, 3, 260, 130, 0, 989, 990, 5, 253, 0, 0, 990, 991, 5, 53, 0, 0, 991, 992, 5, 167, 0, 0, 992, 993, 5, 299, 0, 0, 993, 1234, 3, 260, 130, 0, 994, 995, 5, 253, 0, 0, 995, 996, 5, 53, 0, 0, 996, 997, 5, 107, 0, 0, 997, 1234, 3, 272, 136, 0, 998, 999, 5, 253, 0, 0, 999, 1002, 5, 261, 0, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 264, 132, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1010, 1, 0, 0, 0, 1004, 1005, 5, 154, 0, 0, 1005, 1008, 3, 168, 84, 0, 1006, 1007, 5, 90, 0, 0, 1007, 1009, 3, 168, 84, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 1, 0, 0, 0, 1010, 1004, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1234, 1, 0, 0, 0, 1012, 1013, 5, 253, 0, 0, 1013, 1016, 5, 244, 0, 0, 1014, 1015, 7, 2, 0, 0, 1015, 1017, 3, 268, 134, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1024, 1, 0, 0, 0, 1018, 1019, 5, 154, 0, 0, 1019, 1022, 3, 168, 84, 0, 1020, 1021, 5, 90, 0, 0, 1021, 1023, 3, 168, 84, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 1, 0, 0, 0, 1024, 1018, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1234, 1, 0, 0, 0, 1026, 1027, 5, 253, 0, 0, 1027, 1034, 5, 43, 0, 0, 1028, 1029, 5, 154, 0, 0, 1029, 1032, 3, 168, 84, 0, 1030, 1031, 5, 90, 0, 0, 1031, 1033, 3, 168, 84, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1028, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1234, 1, 0, 0, 0, 1036, 1037, 5, 253, 0, 0, 1037, 1038, 5, 45, 0, 0, 1038, 1039, 7, 2, 0, 0, 1039, 1046, 3, 254, 127, 0, 1040, 1041, 5, 154, 0, 0, 1041, 1044, 3, 168, 84, 0, 1042, 1043, 5, 90, 0, 0, 1043, 1045, 3, 168, 84, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1040, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1234, 1, 0, 0, 0, 1048, 1049, 5, 253, 0, 0, 1049, 1050, 5, 256, 0, 0, 1050, 1051, 5, 103, 0, 0, 1051, 1234, 3, 254, 127, 0, 1052, 1053, 5, 253, 0, 0, 1053, 1054, 5, 256, 0, 0, 1054, 1055, 5, 103, 0, 0, 1055, 1056, 5, 1, 0, 0, 1056, 1057, 3, 18, 9, 0, 1057, 1058, 5, 2, 0, 0, 1058, 1234, 1, 0, 0, 0, 1059, 1061, 5, 253, 0, 0, 1060, 1062, 5, 56, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1066, 5, 236, 0, 0, 1064, 1065, 7, 2, 0, 0, 1065, 1067, 3, 268, 134, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1234, 1, 0, 0, 0, 1068, 1069, 5, 253, 0, 0, 1069, 1070, 5, 235, 0, 0, 1070, 1073, 5, 112, 0, 0, 1071, 1072, 7, 2, 0, 0, 1072, 1074, 3, 268, 134, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1234, 1, 0, 0, 0, 1075, 1076, 5, 76, 0, 0, 1076, 1234, 3, 254, 127, 0, 1077, 1078, 5, 75, 0, 0, 1078, 1234, 3, 254, 127, 0, 1079, 1080, 5, 253, 0, 0, 1080, 1083, 5, 108, 0, 0, 1081, 1082, 7, 2, 0, 0, 1082, 1084, 3, 264, 132, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1091, 1, 0, 0, 0, 1085, 1086, 5, 154, 0, 0, 1086, 1089, 3, 168, 84, 0, 1087, 1088, 5, 90, 0, 0, 1088, 1090, 3, 168, 84, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 1, 0, 0, 0, 1091, 1085, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1234, 1, 0, 0, 0, 1093, 1094, 5, 253, 0, 0, 1094, 1101, 5, 250, 0, 0, 1095, 1096, 5, 154, 0, 0, 1096, 1099, 3, 168, 84, 0, 1097, 1098, 5, 90, 0, 0, 1098, 1100, 3, 168, 84, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, 1095, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1234, 1, 0, 0, 0, 1103, 1104, 5, 251, 0, 0, 1104, 1105, 5, 250, 0, 0, 1105, 1106, 5, 31, 0, 0, 1106, 1234, 3, 298, 149, 0, 1107, 1108, 5, 227, 0, 0, 1108, 1109, 5, 250, 0, 0, 1109, 1234, 5, 31, 0, 0, 1110, 1111, 5, 251, 0, 0, 1111, 1112, 5, 250, 0, 0, 1112, 1113, 3, 280, 140, 0, 1113, 1114, 5, 312, 0, 0, 1114, 1115, 3, 136, 68, 0, 1115, 1234, 1, 0, 0, 0, 1116, 1117, 5, 227, 0, 0, 1117, 1118, 5, 250, 0, 0, 1118, 1234, 3, 280, 140, 0, 1119, 1120, 5, 255, 0, 0, 1120, 1129, 5, 271, 0, 0, 1121, 1126, 3, 214, 107, 0, 1122, 1123, 5, 3, 0, 0, 1123, 1125, 3, 214, 107, 0, 1124, 1122, 1, 0, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1234, 1, 0, 0, 0, 1131, 1133, 5, 47, 0, 0, 1132, 1134, 5, 307, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1234, 1, 0, 0, 0, 1135, 1137, 5, 237, 0, 0, 1136, 1138, 5, 307, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1234, 1, 0, 0, 0, 1139, 1140, 5, 214, 0, 0, 1140, 1141, 3, 294, 147, 0, 1141, 1142, 5, 105, 0, 0, 1142, 1143, 3, 16, 8, 0, 1143, 1234, 1, 0, 0, 0, 1144, 1145, 5, 68, 0, 0, 1145, 1146, 5, 214, 0, 0, 1146, 1234, 3, 294, 147, 0, 1147, 1148, 5, 93, 0, 0, 1148, 1158, 3, 294, 147, 0, 1149, 1150, 5, 290, 0, 0, 1150, 1155, 3, 136, 68, 0, 1151, 1152, 5, 3, 0, 0, 1152, 1154, 3, 136, 68, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1149, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1234, 1, 0, 0, 0, 1160, 1161, 5, 93, 0, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1172, 3, 168, 84, 0, 1163, 1164, 5, 290, 0, 0, 1164, 1169, 3, 136, 68, 0, 1165, 1166, 5, 3, 0, 0, 1166, 1168, 3, 136, 68, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1173, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1163, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1234, 1, 0, 0, 0, 1174, 1175, 5, 76, 0, 0, 1175, 1176, 5, 126, 0, 0, 1176, 1234, 3, 294, 147, 0, 1177, 1178, 5, 76, 0, 0, 1178, 1179, 5, 198, 0, 0, 1179, 1234, 3, 294, 147, 0, 1180, 1181, 5, 251, 0, 0, 1181, 1182, 5, 205, 0, 0, 1182, 1234, 3, 222, 111, 0, 1183, 1184, 5, 251, 0, 0, 1184, 1185, 5, 267, 0, 0, 1185, 1188, 5, 311, 0, 0, 1186, 1189, 5, 157, 0, 0, 1187, 1189, 3, 136, 68, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 1234, 1, 0, 0, 0, 1190, 1191, 5, 287, 0, 0, 1191, 1192, 3, 256, 128, 0, 1192, 1193, 5, 251, 0, 0, 1193, 1198, 3, 210, 105, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1197, 3, 210, 105, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1200, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1203, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1202, 5, 301, 0, 0, 1202, 1204, 3, 138, 69, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1234, 1, 0, 0, 0, 1205, 1206, 5, 169, 0, 0, 1206, 1207, 5, 130, 0, 0, 1207, 1212, 3, 256, 128, 0, 1208, 1210, 5, 28, 0, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 3, 294, 147, 0, 1212, 1209, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 5, 290, 0, 0, 1215, 1216, 3, 72, 36, 0, 1216, 1217, 5, 190, 0, 0, 1217, 1219, 3, 136, 68, 0, 1218, 1220, 3, 194, 97, 0, 1219, 1218, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1234, 1, 0, 0, 0, 1223, 1224, 5, 253, 0, 0, 1224, 1225, 5, 46, 0, 0, 1225, 1226, 5, 190, 0, 0, 1226, 1227, 5, 260, 0, 0, 1227, 1234, 3, 256, 128, 0, 1228, 1229, 5, 253, 0, 0, 1229, 1230, 5, 46, 0, 0, 1230, 1231, 5, 190, 0, 0, 1231, 1232, 5, 44, 0, 0, 1232, 1234, 3, 276, 138, 0, 1233, 335, 1, 0, 0, 0, 1233, 336, 1, 0, 0, 0, 1233, 338, 1, 0, 0, 0, 1233, 360, 1, 0, 0, 0, 1233, 370, 1, 0, 0, 0, 1233, 386, 1, 0, 0, 0, 1233, 396, 1, 0, 0, 0, 1233, 403, 1, 0, 0, 0, 1233, 410, 1, 0, 0, 0, 1233, 448, 1, 0, 0, 0, 1233, 478, 1, 0, 0, 0, 1233, 485, 1, 0, 0, 0, 1233, 493, 1, 0, 0, 0, 1233, 500, 1, 0, 0, 0, 1233, 503, 1, 0, 0, 0, 1233, 512, 1, 0, 0, 0, 1233, 521, 1, 0, 0, 0, 1233, 530, 1, 0, 0, 0, 1233, 541, 1, 0, 0, 0, 1233, 557, 1, 0, 0, 0, 1233, 574, 1, 0, 0, 0, 1233, 589, 1, 0, 0, 0, 1233, 604, 1, 0, 0, 0, 1233, 618, 1, 0, 0, 0, 1233, 625, 1, 0, 0, 0, 1233, 632, 1, 0, 0, 0, 1233, 655, 1, 0, 0, 0, 1233, 661, 1, 0, 0, 0, 1233, 690, 1, 0, 0, 0, 1233, 712, 1, 0, 0, 0, 1233, 716, 1, 0, 0, 0, 1233, 724, 1, 0, 0, 0, 1233, 736, 1, 0, 0, 0, 1233, 744, 1, 0, 0, 0, 1233, 751, 1, 0, 0, 0, 1233, 758, 1, 0, 0, 0, 1233, 765, 1, 0, 0, 0, 1233, 780, 1, 0, 0, 0, 1233, 786, 1, 0, 0, 0, 1233, 793, 1, 0, 0, 0, 1233, 805, 1, 0, 0, 0, 1233, 812, 1, 0, 0, 0, 1233, 844, 1, 0, 0, 0, 1233, 866, 1, 0, 0, 0, 1233, 898, 1, 0, 0, 0, 1233, 921, 1, 0, 0, 0, 1233, 939, 1, 0, 0, 0, 1233, 950, 1, 0, 0, 0, 1233, 956, 1, 0, 0, 0, 1233, 971, 1, 0, 0, 0, 1233, 977, 1, 0, 0, 0, 1233, 981, 1, 0, 0, 0, 1233, 985, 1, 0, 0, 0, 1233, 989, 1, 0, 0, 0, 1233, 994, 1, 0, 0, 0, 1233, 998, 1, 0, 0, 0, 1233, 1012, 1, 0, 0, 0, 1233, 1026, 1, 0, 0, 0, 1233, 1036, 1, 0, 0, 0, 1233, 1048, 1, 0, 0, 0, 1233, 1052, 1, 0, 0, 0, 1233, 1059, 1, 0, 0, 0, 1233, 1068, 1, 0, 0, 0, 1233, 1075, 1, 0, 0, 0, 1233, 1077, 1, 0, 0, 0, 1233, 1079, 1, 0, 0, 0, 1233, 1093, 1, 0, 0, 0, 1233, 1103, 1, 0, 0, 0, 1233, 1107, 1, 0, 0, 0, 1233, 1110, 1, 0, 0, 0, 1233, 1116, 1, 0, 0, 0, 1233, 1119, 1, 0, 0, 0, 1233, 1131, 1, 0, 0, 0, 1233, 1135, 1, 0, 0, 0, 1233, 1139, 1, 0, 0, 0, 1233, 1144, 1, 0, 0, 0, 1233, 1147, 1, 0, 0, 0, 1233, 1160, 1, 0, 0, 0, 1233, 1174, 1, 0, 0, 0, 1233, 1177, 1, 0, 0, 0, 1233, 1180, 1, 0, 0, 0, 1233, 1183, 1, 0, 0, 0, 1233, 1190, 1, 0, 0, 0, 1233, 1205, 1, 0, 0, 0, 1233, 1223, 1, 0, 0, 0, 1233, 1228, 1, 0, 0, 0, 1234, 17, 1, 0, 0, 0, 1235, 1237, 3, 20, 10, 0, 1236, 1235, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 3, 22, 11, 0, 1239, 19, 1, 0, 0, 0, 1240, 1241, 5, 304, 0, 0, 1241, 1246, 3, 224, 112, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1245, 3, 224, 112, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 21, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1251, 3, 24, 12, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 3, 40, 20, 0, 1253, 23, 1, 0, 0, 0, 1254, 1256, 5, 304, 0, 0, 1255, 1257, 5, 221, 0, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1263, 3, 66, 33, 0, 1259, 1260, 5, 3, 0, 0, 1260, 1262, 3, 66, 33, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 25, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1269, 3, 28, 14, 0, 1267, 1269, 3, 30, 15, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 27, 1, 0, 0, 0, 1270, 1271, 3, 278, 139, 0, 1271, 1274, 3, 184, 92, 0, 1272, 1273, 5, 182, 0, 0, 1273, 1275, 5, 183, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1277, 5, 46, 0, 0, 1277, 1279, 3, 168, 84, 0, 1278, 1276, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1281, 5, 304, 0, 0, 1281, 1283, 3, 32, 16, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 29, 1, 0, 0, 0, 1284, 1285, 5, 154, 0, 0, 1285, 1288, 3, 256, 128, 0, 1286, 1287, 7, 3, 0, 0, 1287, 1289, 5, 216, 0, 0, 1288, 1286, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 31, 1, 0, 0, 0, 1290, 1291, 5, 1, 0, 0, 1291, 1292, 3, 34, 17, 0, 1292, 1293, 5, 2, 0, 0, 1293, 33, 1, 0, 0, 0, 1294, 1299, 3, 36, 18, 0, 1295, 1296, 5, 3, 0, 0, 1296, 1298, 3, 36, 18, 0, 1297, 1295, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 35, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1303, 3, 294, 147, 0, 1303, 1304, 5, 312, 0, 0, 1304, 1305, 3, 38, 19, 0, 1305, 37, 1, 0, 0, 0, 1306, 1309, 5, 70, 0, 0, 1307, 1309, 3, 136, 68, 0, 1308, 1306, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 39, 1, 0, 0, 0, 1310, 1321, 3, 46, 23, 0, 1311, 1312, 5, 195, 0, 0, 1312, 1313, 5, 36, 0, 0, 1313, 1318, 3, 50, 25, 0, 1314, 1315, 5, 3, 0, 0, 1315, 1317, 3, 50, 25, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1311, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1328, 1, 0, 0, 0, 1323, 1324, 5, 188, 0, 0, 1324, 1326, 3, 44, 22, 0, 1325, 1327, 7, 4, 0, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 1, 0, 0, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1343, 1, 0, 0, 0, 1330, 1331, 5, 155, 0, 0, 1331, 1344, 3, 42, 21, 0, 1332, 1333, 5, 98, 0, 0, 1333, 1335, 7, 5, 0, 0, 1334, 1336, 3, 44, 22, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1341, 7, 4, 0, 0, 1338, 1342, 5, 192, 0, 0, 1339, 1340, 5, 304, 0, 0, 1340, 1342, 5, 266, 0, 0, 1341, 1338, 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1342, 1344, 1, 0, 0, 0, 1343, 1330, 1, 0, 0, 0, 1343, 1332, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 41, 1, 0, 0, 0, 1345, 1348, 5, 22, 0, 0, 1346, 1348, 3, 44, 22, 0, 1347, 1345, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1350, 7, 6, 0, 0, 1350, 45, 1, 0, 0, 0, 1351, 1352, 6, 23, -1, 0, 1352, 1353, 3, 48, 24, 0, 1353, 1368, 1, 0, 0, 0, 1354, 1355, 10, 2, 0, 0, 1355, 1357, 5, 128, 0, 0, 1356, 1358, 3, 68, 34, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1367, 3, 46, 23, 3, 1360, 1361, 10, 1, 0, 0, 1361, 1363, 7, 7, 0, 0, 1362, 1364, 3, 68, 34, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 3, 46, 23, 2, 1366, 1354, 1, 0, 0, 0, 1366, 1360, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 47, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1388, 3, 52, 26, 0, 1372, 1373, 5, 260, 0, 0, 1373, 1388, 3, 256, 128, 0, 1374, 1375, 5, 296, 0, 0, 1375, 1380, 3, 136, 68, 0, 1376, 1377, 5, 3, 0, 0, 1377, 1379, 3, 136, 68, 0, 1378, 1376, 1, 0, 0, 0, 1379, 1382, 1, 0, 0, 0, 1380, 1378, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1388, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1383, 1384, 5, 1, 0, 0, 1384, 1385, 3, 40, 20, 0, 1385, 1386, 5, 2, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1371, 1, 0, 0, 0, 1387, 1372, 1, 0, 0, 0, 1387, 1374, 1, 0, 0, 0, 1387, 1383, 1, 0, 0, 0, 1388, 49, 1, 0, 0, 0, 1389, 1392, 3, 276, 138, 0, 1390, 1392, 3, 136, 68, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1390, 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1395, 7, 8, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1398, 1, 0, 0, 0, 1396, 1397, 5, 185, 0, 0, 1397, 1399, 7, 9, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 51, 1, 0, 0, 0, 1400, 1402, 5, 248, 0, 0, 1401, 1403, 3, 68, 34, 0, 1402, 1401, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1409, 3, 70, 35, 0, 1405, 1406, 5, 3, 0, 0, 1406, 1408, 3, 70, 35, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1421, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 105, 0, 0, 1413, 1418, 3, 72, 36, 0, 1414, 1415, 5, 3, 0, 0, 1415, 1417, 3, 72, 36, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1420, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1422, 1, 0, 0, 0, 1420, 1418, 1, 0, 0, 0, 1421, 1412, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1424, 5, 301, 0, 0, 1424, 1426, 3, 138, 69, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1430, 1, 0, 0, 0, 1427, 1428, 5, 114, 0, 0, 1428, 1429, 5, 36, 0, 0, 1429, 1431, 3, 54, 27, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1434, 1, 0, 0, 0, 1432, 1433, 5, 117, 0, 0, 1433, 1435, 3, 138, 69, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1445, 1, 0, 0, 0, 1436, 1437, 5, 303, 0, 0, 1437, 1442, 3, 62, 31, 0, 1438, 1439, 5, 3, 0, 0, 1439, 1441, 3, 62, 31, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1444, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1436, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 53, 1, 0, 0, 0, 1447, 1449, 3, 68, 34, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1455, 3, 56, 28, 0, 1451, 1452, 5, 3, 0, 0, 1452, 1454, 3, 56, 28, 0, 1453, 1451, 1, 0, 0, 0, 1454, 1457, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 55, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1499, 3, 58, 29, 0, 1459, 1460, 5, 238, 0, 0, 1460, 1469, 5, 1, 0, 0, 1461, 1466, 3, 58, 29, 0, 1462, 1463, 5, 3, 0, 0, 1463, 1465, 3, 58, 29, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1470, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1461, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1499, 5, 2, 0, 0, 1472, 1473, 5, 55, 0, 0, 1473, 1482, 5, 1, 0, 0, 1474, 1479, 3, 58, 29, 0, 1475, 1476, 5, 3, 0, 0, 1476, 1478, 3, 58, 29, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1481, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1474, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1499, 5, 2, 0, 0, 1485, 1486, 5, 115, 0, 0, 1486, 1487, 5, 252, 0, 0, 1487, 1488, 5, 1, 0, 0, 1488, 1493, 3, 58, 29, 0, 1489, 1490, 5, 3, 0, 0, 1490, 1492, 3, 58, 29, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 2, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1458, 1, 0, 0, 0, 1498, 1459, 1, 0, 0, 0, 1498, 1472, 1, 0, 0, 0, 1498, 1485, 1, 0, 0, 0, 1499, 57, 1, 0, 0, 0, 1500, 1509, 5, 1, 0, 0, 1501, 1506, 3, 60, 30, 0, 1502, 1503, 5, 3, 0, 0, 1503, 1505, 3, 60, 30, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1510, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1501, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 5, 2, 0, 0, 1512, 1514, 3, 60, 30, 0, 1513, 1500, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 59, 1, 0, 0, 0, 1515, 1518, 3, 276, 138, 0, 1516, 1518, 3, 136, 68, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1516, 1, 0, 0, 0, 1518, 61, 1, 0, 0, 0, 1519, 1520, 3, 294, 147, 0, 1520, 1521, 5, 28, 0, 0, 1521, 1522, 5, 1, 0, 0, 1522, 1523, 3, 64, 32, 0, 1523, 1524, 5, 2, 0, 0, 1524, 63, 1, 0, 0, 0, 1525, 1527, 3, 294, 147, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1538, 1, 0, 0, 0, 1528, 1529, 5, 201, 0, 0, 1529, 1530, 5, 36, 0, 0, 1530, 1535, 3, 136, 68, 0, 1531, 1532, 5, 3, 0, 0, 1532, 1534, 3, 136, 68, 0, 1533, 1531, 1, 0, 0, 0, 1534, 1537, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1539, 1, 0, 0, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1528, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1550, 1, 0, 0, 0, 1540, 1541, 5, 195, 0, 0, 1541, 1542, 5, 36, 0, 0, 1542, 1547, 3, 50, 25, 0, 1543, 1544, 5, 3, 0, 0, 1544, 1546, 3, 50, 25, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1551, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1540, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 1, 0, 0, 0, 1552, 1554, 3, 198, 99, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 65, 1, 0, 0, 0, 1555, 1557, 3, 294, 147, 0, 1556, 1558, 3, 108, 54, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 5, 28, 0, 0, 1560, 1561, 5, 1, 0, 0, 1561, 1562, 3, 22, 11, 0, 1562, 1563, 5, 2, 0, 0, 1563, 67, 1, 0, 0, 0, 1564, 1565, 7, 10, 0, 0, 1565, 69, 1, 0, 0, 0, 1566, 1569, 3, 276, 138, 0, 1567, 1569, 3, 136, 68, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1567, 1, 0, 0, 0, 1569, 1574, 1, 0, 0, 0, 1570, 1572, 5, 28, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 3, 294, 147, 0, 1574, 1571, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1585, 1, 0, 0, 0, 1576, 1577, 3, 144, 72, 0, 1577, 1578, 5, 4, 0, 0, 1578, 1581, 5, 320, 0, 0, 1579, 1580, 5, 28, 0, 0, 1580, 1582, 3, 108, 54, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1585, 5, 320, 0, 0, 1584, 1568, 1, 0, 0, 0, 1584, 1576, 1, 0, 0, 0, 1584, 1583, 1, 0, 0, 0, 1585, 71, 1, 0, 0, 0, 1586, 1587, 6, 36, -1, 0, 1587, 1588, 3, 78, 39, 0, 1588, 1607, 1, 0, 0, 0, 1589, 1603, 10, 2, 0, 0, 1590, 1591, 5, 54, 0, 0, 1591, 1592, 5, 136, 0, 0, 1592, 1604, 3, 78, 39, 0, 1593, 1594, 3, 74, 37, 0, 1594, 1595, 5, 136, 0, 0, 1595, 1596, 3, 72, 36, 0, 1596, 1597, 3, 76, 38, 0, 1597, 1604, 1, 0, 0, 0, 1598, 1599, 5, 172, 0, 0, 1599, 1600, 3, 74, 37, 0, 1600, 1601, 5, 136, 0, 0, 1601, 1602, 3, 78, 39, 0, 1602, 1604, 1, 0, 0, 0, 1603, 1590, 1, 0, 0, 0, 1603, 1593, 1, 0, 0, 0, 1603, 1598, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1589, 1, 0, 0, 0, 1606, 1609, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 73, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1610, 1612, 5, 125, 0, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1626, 1, 0, 0, 0, 1613, 1615, 5, 152, 0, 0, 1614, 1616, 5, 197, 0, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1626, 1, 0, 0, 0, 1617, 1619, 5, 234, 0, 0, 1618, 1620, 5, 197, 0, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1626, 1, 0, 0, 0, 1621, 1623, 5, 106, 0, 0, 1622, 1624, 5, 197, 0, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1611, 1, 0, 0, 0, 1625, 1613, 1, 0, 0, 0, 1625, 1617, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1626, 75, 1, 0, 0, 0, 1627, 1628, 5, 190, 0, 0, 1628, 1642, 3, 138, 69, 0, 1629, 1630, 5, 290, 0, 0, 1630, 1631, 5, 1, 0, 0, 1631, 1636, 3, 294, 147, 0, 1632, 1633, 5, 3, 0, 0, 1633, 1635, 3, 294, 147, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1640, 5, 2, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1627, 1, 0, 0, 0, 1641, 1629, 1, 0, 0, 0, 1642, 77, 1, 0, 0, 0, 1643, 1650, 3, 88, 44, 0, 1644, 1645, 5, 262, 0, 0, 1645, 1646, 3, 80, 40, 0, 1646, 1647, 5, 1, 0, 0, 1647, 1648, 3, 136, 68, 0, 1648, 1649, 5, 2, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1644, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 79, 1, 0, 0, 0, 1652, 1653, 7, 11, 0, 0, 1653, 81, 1, 0, 0, 0, 1654, 1655, 7, 12, 0, 0, 1655, 83, 1, 0, 0, 0, 1656, 1663, 5, 89, 0, 0, 1657, 1659, 5, 274, 0, 0, 1658, 1660, 3, 168, 84, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 3, 86, 43, 0, 1662, 1656, 1, 0, 0, 0, 1662, 1657, 1, 0, 0, 0, 1663, 85, 1, 0, 0, 0, 1664, 1665, 5, 304, 0, 0, 1665, 1669, 5, 51, 0, 0, 1666, 1667, 5, 306, 0, 0, 1667, 1669, 5, 51, 0, 0, 1668, 1664, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 87, 1, 0, 0, 0, 1670, 1753, 3, 102, 51, 0, 1671, 1672, 5, 166, 0, 0, 1672, 1683, 5, 1, 0, 0, 1673, 1674, 5, 201, 0, 0, 1674, 1675, 5, 36, 0, 0, 1675, 1680, 3, 136, 68, 0, 1676, 1677, 5, 3, 0, 0, 1677, 1679, 3, 136, 68, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1673, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1695, 1, 0, 0, 0, 1685, 1686, 5, 195, 0, 0, 1686, 1687, 5, 36, 0, 0, 1687, 1692, 3, 50, 25, 0, 1688, 1689, 5, 3, 0, 0, 1689, 1691, 3, 50, 25, 0, 1690, 1688, 1, 0, 0, 0, 1691, 1694, 1, 0, 0, 0, 1692, 1690, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1685, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1706, 1, 0, 0, 0, 1697, 1698, 5, 168, 0, 0, 1698, 1703, 3, 90, 45, 0, 1699, 1700, 5, 3, 0, 0, 1700, 1702, 3, 90, 45, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1697, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 92, 46, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1714, 1, 0, 0, 0, 1711, 1712, 5, 21, 0, 0, 1712, 1713, 5, 163, 0, 0, 1713, 1715, 3, 96, 48, 0, 1714, 1711, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1717, 1, 0, 0, 0, 1716, 1718, 7, 13, 0, 0, 1717, 1716, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 5, 206, 0, 0, 1720, 1721, 5, 1, 0, 0, 1721, 1722, 3, 204, 102, 0, 1722, 1732, 5, 2, 0, 0, 1723, 1724, 5, 257, 0, 0, 1724, 1729, 3, 98, 49, 0, 1725, 1726, 5, 3, 0, 0, 1726, 1728, 3, 98, 49, 0, 1727, 1725, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1733, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1723, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 5, 71, 0, 0, 1735, 1740, 3, 100, 50, 0, 1736, 1737, 5, 3, 0, 0, 1737, 1739, 3, 100, 50, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1751, 5, 2, 0, 0, 1744, 1746, 5, 28, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1749, 3, 294, 147, 0, 1748, 1750, 3, 108, 54, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 1, 0, 0, 0, 1751, 1745, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1671, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 89, 1, 0, 0, 0, 1755, 1756, 3, 136, 68, 0, 1756, 1757, 5, 28, 0, 0, 1757, 1758, 3, 294, 147, 0, 1758, 91, 1, 0, 0, 0, 1759, 1760, 5, 191, 0, 0, 1760, 1761, 5, 239, 0, 0, 1761, 1762, 5, 207, 0, 0, 1762, 1771, 5, 163, 0, 0, 1763, 1764, 5, 22, 0, 0, 1764, 1765, 5, 240, 0, 0, 1765, 1766, 5, 207, 0, 0, 1766, 1768, 5, 163, 0, 0, 1767, 1769, 3, 94, 47, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1759, 1, 0, 0, 0, 1770, 1763, 1, 0, 0, 0, 1771, 93, 1, 0, 0, 0, 1772, 1773, 5, 253, 0, 0, 1773, 1774, 5, 85, 0, 0, 1774, 1782, 5, 165, 0, 0, 1775, 1776, 5, 189, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1782, 5, 165, 0, 0, 1778, 1779, 5, 304, 0, 0, 1779, 1780, 5, 284, 0, 0, 1780, 1782, 5, 240, 0, 0, 1781, 1772, 1, 0, 0, 0, 1781, 1775, 1, 0, 0, 0, 1781, 1778, 1, 0, 0, 0, 1782, 95, 1, 0, 0, 0, 1783, 1784, 5, 5, 0, 0, 1784, 1785, 5, 269, 0, 0, 1785, 1786, 5, 174, 0, 0, 1786, 1803, 5, 239, 0, 0, 1787, 1788, 5, 5, 0, 0, 1788, 1789, 5, 204, 0, 0, 1789, 1790, 5, 148, 0, 0, 1790, 1803, 5, 239, 0, 0, 1791, 1792, 5, 5, 0, 0, 1792, 1793, 5, 269, 0, 0, 1793, 1794, 5, 101, 0, 0, 1794, 1803, 3, 294, 147, 0, 1795, 1796, 5, 5, 0, 0, 1796, 1797, 5, 269, 0, 0, 1797, 1798, 5, 148, 0, 0, 1798, 1803, 3, 294, 147, 0, 1799, 1800, 5, 5, 0, 0, 1800, 1801, 5, 269, 0, 0, 1801, 1803, 3, 294, 147, 0, 1802, 1783, 1, 0, 0, 0, 1802, 1787, 1, 0, 0, 0, 1802, 1791, 1, 0, 0, 0, 1802, 1795, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1803, 97, 1, 0, 0, 0, 1804, 1805, 3, 294, 147, 0, 1805, 1806, 5, 312, 0, 0, 1806, 1807, 5, 1, 0, 0, 1807, 1812, 3, 294, 147, 0, 1808, 1809, 5, 3, 0, 0, 1809, 1811, 3, 294, 147, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1815, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1816, 5, 2, 0, 0, 1816, 99, 1, 0, 0, 0, 1817, 1818, 3, 294, 147, 0, 1818, 1819, 5, 28, 0, 0, 1819, 1820, 3, 136, 68, 0, 1820, 101, 1, 0, 0, 0, 1821, 1829, 3, 110, 55, 0, 1822, 1824, 5, 28, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1827, 3, 294, 147, 0, 1826, 1828, 3, 108, 54, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 1, 0, 0, 0, 1829, 1823, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 103, 1, 0, 0, 0, 1831, 1832, 5, 1, 0, 0, 1832, 1837, 3, 278, 139, 0, 1833, 1834, 5, 3, 0, 0, 1834, 1836, 3, 278, 139, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1839, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 1841, 5, 2, 0, 0, 1841, 105, 1, 0, 0, 0, 1842, 1843, 5, 1, 0, 0, 1843, 1848, 3, 276, 138, 0, 1844, 1845, 5, 3, 0, 0, 1845, 1847, 3, 276, 138, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1850, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1852, 5, 2, 0, 0, 1852, 107, 1, 0, 0, 0, 1853, 1854, 5, 1, 0, 0, 1854, 1859, 3, 294, 147, 0, 1855, 1856, 5, 3, 0, 0, 1856, 1858, 3, 294, 147, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1863, 5, 2, 0, 0, 1863, 109, 1, 0, 0, 0, 1864, 1866, 3, 254, 127, 0, 1865, 1867, 3, 282, 141, 0, 1866, 1865, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1936, 1, 0, 0, 0, 1868, 1869, 5, 1, 0, 0, 1869, 1870, 3, 22, 11, 0, 1870, 1871, 5, 2, 0, 0, 1871, 1936, 1, 0, 0, 0, 1872, 1873, 5, 285, 0, 0, 1873, 1874, 5, 1, 0, 0, 1874, 1879, 3, 136, 68, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 3, 136, 68, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1882, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 5, 2, 0, 0, 1883, 1884, 5, 304, 0, 0, 1884, 1886, 5, 196, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1936, 1, 0, 0, 0, 1887, 1888, 5, 149, 0, 0, 1888, 1889, 5, 1, 0, 0, 1889, 1890, 3, 22, 11, 0, 1890, 1891, 5, 2, 0, 0, 1891, 1936, 1, 0, 0, 0, 1892, 1893, 5, 260, 0, 0, 1893, 1894, 5, 1, 0, 0, 1894, 1895, 3, 122, 61, 0, 1895, 1896, 5, 2, 0, 0, 1896, 1936, 1, 0, 0, 0, 1897, 1898, 5, 1, 0, 0, 1898, 1899, 3, 72, 36, 0, 1899, 1900, 5, 2, 0, 0, 1900, 1936, 1, 0, 0, 0, 1901, 1902, 5, 142, 0, 0, 1902, 1903, 5, 1, 0, 0, 1903, 1904, 3, 146, 73, 0, 1904, 1905, 5, 45, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1911, 3, 112, 56, 0, 1907, 1908, 5, 3, 0, 0, 1908, 1910, 3, 112, 56, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1914, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1926, 5, 2, 0, 0, 1915, 1916, 5, 210, 0, 0, 1916, 1917, 5, 1, 0, 0, 1917, 1918, 3, 114, 57, 0, 1918, 1919, 5, 2, 0, 0, 1919, 1927, 1, 0, 0, 0, 1920, 1921, 5, 210, 0, 0, 1921, 1922, 5, 70, 0, 0, 1922, 1923, 5, 1, 0, 0, 1923, 1924, 3, 120, 60, 0, 1924, 1925, 5, 2, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1915, 1, 0, 0, 0, 1926, 1920, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1931, 1, 0, 0, 0, 1928, 1929, 7, 14, 0, 0, 1929, 1930, 5, 190, 0, 0, 1930, 1932, 5, 89, 0, 0, 1931, 1928, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 2, 0, 0, 1934, 1936, 1, 0, 0, 0, 1935, 1864, 1, 0, 0, 0, 1935, 1868, 1, 0, 0, 0, 1935, 1872, 1, 0, 0, 0, 1935, 1887, 1, 0, 0, 0, 1935, 1892, 1, 0, 0, 0, 1935, 1897, 1, 0, 0, 0, 1935, 1901, 1, 0, 0, 0, 1936, 111, 1, 0, 0, 0, 1937, 1938, 3, 294, 147, 0, 1938, 1939, 5, 103, 0, 0, 1939, 1940, 5, 196, 0, 0, 1940, 2015, 1, 0, 0, 0, 1941, 1942, 3, 294, 147, 0, 1942, 1945, 3, 184, 92, 0, 1943, 1944, 5, 205, 0, 0, 1944, 1946, 3, 168, 84, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1951, 1, 0, 0, 0, 1947, 1948, 3, 156, 78, 0, 1948, 1949, 5, 190, 0, 0, 1949, 1950, 5, 85, 0, 0, 1950, 1952, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1957, 1, 0, 0, 0, 1953, 1954, 3, 156, 78, 0, 1954, 1955, 5, 190, 0, 0, 1955, 1956, 5, 89, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 2015, 1, 0, 0, 0, 1959, 1960, 3, 294, 147, 0, 1960, 1961, 3, 184, 92, 0, 1961, 1962, 5, 104, 0, 0, 1962, 1965, 3, 150, 75, 0, 1963, 1964, 5, 205, 0, 0, 1964, 1966, 3, 168, 84, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1970, 1, 0, 0, 0, 1967, 1968, 3, 158, 79, 0, 1968, 1969, 5, 308, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1967, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1979, 1, 0, 0, 0, 1972, 1973, 7, 15, 0, 0, 1973, 1977, 5, 218, 0, 0, 1974, 1975, 5, 190, 0, 0, 1975, 1976, 5, 242, 0, 0, 1976, 1978, 5, 264, 0, 0, 1977, 1974, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1972, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1985, 1, 0, 0, 0, 1981, 1982, 3, 160, 80, 0, 1982, 1983, 5, 190, 0, 0, 1983, 1984, 5, 85, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1981, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1991, 1, 0, 0, 0, 1987, 1988, 3, 160, 80, 0, 1988, 1989, 5, 190, 0, 0, 1989, 1990, 5, 89, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1987, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 2015, 1, 0, 0, 0, 1993, 1995, 5, 173, 0, 0, 1994, 1996, 5, 205, 0, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2000, 3, 168, 84, 0, 1998, 1999, 5, 28, 0, 0, 1999, 2001, 3, 294, 147, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 5, 45, 0, 0, 2003, 2004, 5, 1, 0, 0, 2004, 2009, 3, 112, 56, 0, 2005, 2006, 5, 3, 0, 0, 2006, 2008, 3, 112, 56, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2012, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2013, 5, 2, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 1937, 1, 0, 0, 0, 2014, 1941, 1, 0, 0, 0, 2014, 1959, 1, 0, 0, 0, 2014, 1993, 1, 0, 0, 0, 2015, 113, 1, 0, 0, 0, 2016, 2042, 3, 116, 58, 0, 2017, 2018, 3, 116, 58, 0, 2018, 2019, 7, 16, 0, 0, 2019, 2020, 3, 118, 59, 0, 2020, 2042, 1, 0, 0, 0, 2021, 2022, 3, 118, 59, 0, 2022, 2023, 5, 281, 0, 0, 2023, 2028, 3, 118, 59, 0, 2024, 2025, 5, 281, 0, 0, 2025, 2027, 3, 118, 59, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2030, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2042, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2032, 3, 118, 59, 0, 2032, 2033, 5, 54, 0, 0, 2033, 2038, 3, 118, 59, 0, 2034, 2035, 5, 54, 0, 0, 2035, 2037, 3, 118, 59, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2016, 1, 0, 0, 0, 2041, 2017, 1, 0, 0, 0, 2041, 2021, 1, 0, 0, 0, 2041, 2031, 1, 0, 0, 0, 2042, 115, 1, 0, 0, 0, 2043, 2044, 3, 294, 147, 0, 2044, 117, 1, 0, 0, 0, 2045, 2051, 3, 116, 58, 0, 2046, 2047, 5, 1, 0, 0, 2047, 2048, 3, 114, 57, 0, 2048, 2049, 5, 2, 0, 0, 2049, 2051, 1, 0, 0, 0, 2050, 2045, 1, 0, 0, 0, 2050, 2046, 1, 0, 0, 0, 2051, 119, 1, 0, 0, 0, 2052, 2055, 7, 16, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 7, 17, 0, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2063, 1, 0, 0, 0, 2057, 2060, 7, 17, 0, 0, 2058, 2059, 5, 3, 0, 0, 2059, 2061, 7, 16, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2052, 1, 0, 0, 0, 2062, 2057, 1, 0, 0, 0, 2063, 121, 1, 0, 0, 0, 2064, 2065, 3, 272, 136, 0, 2065, 2074, 5, 1, 0, 0, 2066, 2071, 3, 124, 62, 0, 2067, 2068, 5, 3, 0, 0, 2068, 2070, 3, 124, 62, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2073, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2075, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2066, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2085, 1, 0, 0, 0, 2076, 2077, 5, 52, 0, 0, 2077, 2082, 3, 134, 67, 0, 2078, 2079, 5, 3, 0, 0, 2079, 2081, 3, 134, 67, 0, 2080, 2078, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2076, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 5, 2, 0, 0, 2088, 123, 1, 0, 0, 0, 2089, 2090, 3, 294, 147, 0, 2090, 2091, 5, 6, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2098, 3, 126, 63, 0, 2095, 2098, 3, 130, 65, 0, 2096, 2098, 3, 136, 68, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2096, 1, 0, 0, 0, 2098, 125, 1, 0, 0, 0, 2099, 2117, 3, 128, 64, 0, 2100, 2101, 5, 201, 0, 0, 2101, 2115, 5, 36, 0, 0, 2102, 2111, 5, 1, 0, 0, 2103, 2108, 3, 136, 68, 0, 2104, 2105, 5, 3, 0, 0, 2105, 2107, 3, 136, 68, 0, 2106, 2104, 1, 0, 0, 0, 2107, 2110, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 1, 0, 0, 0, 2110, 2108, 1, 0, 0, 0, 2111, 2103, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2116, 5, 2, 0, 0, 2114, 2116, 3, 136, 68, 0, 2115, 2102, 1, 0, 0, 0, 2115, 2114, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2100, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2125, 1, 0, 0, 0, 2119, 2120, 5, 217, 0, 0, 2120, 2121, 5, 300, 0, 0, 2121, 2126, 5, 85, 0, 0, 2122, 2123, 5, 144, 0, 0, 2123, 2124, 5, 300, 0, 0, 2124, 2126, 5, 85, 0, 0, 2125, 2119, 1, 0, 0, 0, 2125, 2122, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2143, 1, 0, 0, 0, 2127, 2128, 5, 195, 0, 0, 2128, 2141, 5, 36, 0, 0, 2129, 2130, 5, 1, 0, 0, 2130, 2135, 3, 50, 25, 0, 2131, 2132, 5, 3, 0, 0, 2132, 2134, 3, 50, 25, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2137, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2138, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2139, 5, 2, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2142, 3, 50, 25, 0, 2141, 2129, 1, 0, 0, 0, 2141, 2140, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2127, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 127, 1, 0, 0, 0, 2145, 2146, 5, 260, 0, 0, 2146, 2147, 5, 1, 0, 0, 2147, 2148, 3, 256, 128, 0, 2148, 2156, 5, 2, 0, 0, 2149, 2151, 5, 28, 0, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 3, 294, 147, 0, 2153, 2155, 3, 108, 54, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2150, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2172, 1, 0, 0, 0, 2158, 2159, 5, 260, 0, 0, 2159, 2160, 5, 1, 0, 0, 2160, 2161, 3, 22, 11, 0, 2161, 2169, 5, 2, 0, 0, 2162, 2164, 5, 28, 0, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 3, 294, 147, 0, 2166, 2168, 3, 108, 54, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2163, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2145, 1, 0, 0, 0, 2171, 2158, 1, 0, 0, 0, 2172, 129, 1, 0, 0, 0, 2173, 2174, 5, 77, 0, 0, 2174, 2175, 5, 1, 0, 0, 2175, 2180, 3, 132, 66, 0, 2176, 2177, 5, 3, 0, 0, 2177, 2179, 3, 132, 66, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2182, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2183, 1, 0, 0, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2184, 5, 2, 0, 0, 2184, 2192, 1, 0, 0, 0, 2185, 2186, 5, 41, 0, 0, 2186, 2187, 5, 1, 0, 0, 2187, 2188, 5, 183, 0, 0, 2188, 2189, 5, 28, 0, 0, 2189, 2190, 5, 77, 0, 0, 2190, 2192, 5, 2, 0, 0, 2191, 2173, 1, 0, 0, 0, 2191, 2185, 1, 0, 0, 0, 2192, 131, 1, 0, 0, 0, 2193, 2195, 3, 294, 147, 0, 2194, 2196, 3, 184, 92, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 133, 1, 0, 0, 0, 2197, 2198, 5, 1, 0, 0, 2198, 2199, 3, 280, 140, 0, 2199, 2200, 5, 3, 0, 0, 2200, 2205, 3, 280, 140, 0, 2201, 2202, 5, 3, 0, 0, 2202, 2204, 3, 280, 140, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2208, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2209, 5, 2, 0, 0, 2209, 135, 1, 0, 0, 0, 2210, 2211, 3, 138, 69, 0, 2211, 137, 1, 0, 0, 0, 2212, 2213, 6, 69, -1, 0, 2213, 2215, 3, 142, 71, 0, 2214, 2216, 3, 140, 70, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2220, 1, 0, 0, 0, 2217, 2218, 5, 182, 0, 0, 2218, 2220, 3, 138, 69, 3, 2219, 2212, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2229, 1, 0, 0, 0, 2221, 2222, 10, 2, 0, 0, 2222, 2223, 5, 25, 0, 0, 2223, 2228, 3, 138, 69, 3, 2224, 2225, 10, 1, 0, 0, 2225, 2226, 5, 194, 0, 0, 2226, 2228, 3, 138, 69, 2, 2227, 2221, 1, 0, 0, 0, 2227, 2224, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 139, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2233, 3, 172, 86, 0, 2233, 2234, 3, 142, 71, 0, 2234, 2294, 1, 0, 0, 0, 2235, 2236, 3, 172, 86, 0, 2236, 2237, 3, 174, 87, 0, 2237, 2238, 5, 1, 0, 0, 2238, 2239, 3, 22, 11, 0, 2239, 2240, 5, 2, 0, 0, 2240, 2294, 1, 0, 0, 0, 2241, 2243, 5, 182, 0, 0, 2242, 2241, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 5, 34, 0, 0, 2245, 2246, 3, 142, 71, 0, 2246, 2247, 5, 25, 0, 0, 2247, 2248, 3, 142, 71, 0, 2248, 2294, 1, 0, 0, 0, 2249, 2251, 5, 182, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 122, 0, 0, 2253, 2254, 5, 1, 0, 0, 2254, 2259, 3, 136, 68, 0, 2255, 2256, 5, 3, 0, 0, 2256, 2258, 3, 136, 68, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2261, 1, 0, 0, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2262, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2263, 5, 2, 0, 0, 2263, 2294, 1, 0, 0, 0, 2264, 2266, 5, 182, 0, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2268, 5, 122, 0, 0, 2268, 2269, 5, 1, 0, 0, 2269, 2270, 3, 22, 11, 0, 2270, 2271, 5, 2, 0, 0, 2271, 2294, 1, 0, 0, 0, 2272, 2274, 5, 182, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2276, 5, 154, 0, 0, 2276, 2279, 3, 142, 71, 0, 2277, 2278, 5, 90, 0, 0, 2278, 2280, 3, 142, 71, 0, 2279, 2277, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2294, 1, 0, 0, 0, 2281, 2283, 5, 133, 0, 0, 2282, 2284, 5, 182, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2294, 5, 183, 0, 0, 2286, 2288, 5, 133, 0, 0, 2287, 2289, 5, 182, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2291, 5, 79, 0, 0, 2291, 2292, 5, 105, 0, 0, 2292, 2294, 3, 142, 71, 0, 2293, 2232, 1, 0, 0, 0, 2293, 2235, 1, 0, 0, 0, 2293, 2242, 1, 0, 0, 0, 2293, 2250, 1, 0, 0, 0, 2293, 2265, 1, 0, 0, 0, 2293, 2273, 1, 0, 0, 0, 2293, 2281, 1, 0, 0, 0, 2293, 2286, 1, 0, 0, 0, 2294, 141, 1, 0, 0, 0, 2295, 2296, 6, 71, -1, 0, 2296, 2300, 3, 144, 72, 0, 2297, 2298, 7, 18, 0, 0, 2298, 2300, 3, 142, 71, 4, 2299, 2295, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2315, 1, 0, 0, 0, 2301, 2302, 10, 3, 0, 0, 2302, 2303, 7, 19, 0, 0, 2303, 2314, 3, 142, 71, 4, 2304, 2305, 10, 2, 0, 0, 2305, 2306, 7, 18, 0, 0, 2306, 2314, 3, 142, 71, 3, 2307, 2308, 10, 1, 0, 0, 2308, 2309, 5, 323, 0, 0, 2309, 2314, 3, 142, 71, 2, 2310, 2311, 10, 5, 0, 0, 2311, 2312, 5, 30, 0, 0, 2312, 2314, 3, 170, 85, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2304, 1, 0, 0, 0, 2313, 2307, 1, 0, 0, 0, 2313, 2310, 1, 0, 0, 0, 2314, 2317, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 143, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2318, 2319, 6, 72, -1, 0, 2319, 2772, 5, 183, 0, 0, 2320, 2772, 3, 178, 89, 0, 2321, 2322, 3, 294, 147, 0, 2322, 2323, 3, 168, 84, 0, 2323, 2772, 1, 0, 0, 0, 2324, 2325, 5, 82, 0, 0, 2325, 2326, 5, 213, 0, 0, 2326, 2772, 3, 168, 84, 0, 2327, 2772, 3, 296, 148, 0, 2328, 2772, 3, 176, 88, 0, 2329, 2772, 3, 168, 84, 0, 2330, 2772, 5, 328, 0, 0, 2331, 2772, 5, 324, 0, 0, 2332, 2333, 5, 211, 0, 0, 2333, 2334, 5, 1, 0, 0, 2334, 2335, 3, 142, 71, 0, 2335, 2336, 5, 122, 0, 0, 2336, 2337, 3, 142, 71, 0, 2337, 2338, 5, 2, 0, 0, 2338, 2772, 1, 0, 0, 0, 2339, 2340, 5, 1, 0, 0, 2340, 2343, 3, 136, 68, 0, 2341, 2342, 5, 3, 0, 0, 2342, 2344, 3, 136, 68, 0, 2343, 2341, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 5, 2, 0, 0, 2348, 2772, 1, 0, 0, 0, 2349, 2350, 5, 239, 0, 0, 2350, 2351, 5, 1, 0, 0, 2351, 2356, 3, 136, 68, 0, 2352, 2353, 5, 3, 0, 0, 2353, 2355, 3, 136, 68, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2772, 1, 0, 0, 0, 2361, 2362, 5, 156, 0, 0, 2362, 2364, 5, 1, 0, 0, 2363, 2365, 3, 68, 34, 0, 2364, 2363, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2369, 3, 136, 68, 0, 2367, 2368, 5, 3, 0, 0, 2368, 2370, 3, 168, 84, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2374, 1, 0, 0, 0, 2371, 2372, 5, 190, 0, 0, 2372, 2373, 5, 200, 0, 0, 2373, 2375, 3, 84, 42, 0, 2374, 2371, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 2, 0, 0, 2377, 2378, 5, 305, 0, 0, 2378, 2379, 5, 114, 0, 0, 2379, 2380, 5, 1, 0, 0, 2380, 2381, 5, 195, 0, 0, 2381, 2382, 5, 36, 0, 0, 2382, 2387, 3, 50, 25, 0, 2383, 2384, 5, 3, 0, 0, 2384, 2386, 3, 50, 25, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2391, 5, 2, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2394, 3, 192, 96, 0, 2393, 2392, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2772, 1, 0, 0, 0, 2395, 2397, 3, 164, 82, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 3, 272, 136, 0, 2399, 2403, 5, 1, 0, 0, 2400, 2401, 3, 294, 147, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 1, 0, 0, 0, 2403, 2400, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 5, 320, 0, 0, 2406, 2408, 5, 2, 0, 0, 2407, 2409, 3, 192, 96, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2412, 3, 196, 98, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2772, 1, 0, 0, 0, 2413, 2415, 3, 164, 82, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2417, 3, 272, 136, 0, 2417, 2429, 5, 1, 0, 0, 2418, 2420, 3, 68, 34, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2426, 3, 136, 68, 0, 2422, 2423, 5, 3, 0, 0, 2423, 2425, 3, 136, 68, 0, 2424, 2422, 1, 0, 0, 0, 2425, 2428, 1, 0, 0, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2430, 1, 0, 0, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2419, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2441, 1, 0, 0, 0, 2431, 2432, 5, 195, 0, 0, 2432, 2433, 5, 36, 0, 0, 2433, 2438, 3, 50, 25, 0, 2434, 2435, 5, 3, 0, 0, 2435, 2437, 3, 50, 25, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2442, 1, 0, 0, 0, 2440, 2438, 1, 0, 0, 0, 2441, 2431, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2445, 5, 2, 0, 0, 2444, 2446, 3, 192, 96, 0, 2445, 2444, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2451, 1, 0, 0, 0, 2447, 2449, 3, 166, 83, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2452, 3, 196, 98, 0, 2451, 2448, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2772, 1, 0, 0, 0, 2453, 2454, 3, 294, 147, 0, 2454, 2455, 3, 196, 98, 0, 2455, 2772, 1, 0, 0, 0, 2456, 2457, 3, 294, 147, 0, 2457, 2458, 5, 7, 0, 0, 2458, 2459, 3, 136, 68, 0, 2459, 2772, 1, 0, 0, 0, 2460, 2469, 5, 1, 0, 0, 2461, 2466, 3, 294, 147, 0, 2462, 2463, 5, 3, 0, 0, 2463, 2465, 3, 294, 147, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2470, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2461, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2472, 5, 2, 0, 0, 2472, 2473, 5, 7, 0, 0, 2473, 2772, 3, 136, 68, 0, 2474, 2475, 5, 1, 0, 0, 2475, 2476, 3, 22, 11, 0, 2476, 2477, 5, 2, 0, 0, 2477, 2772, 1, 0, 0, 0, 2478, 2479, 5, 94, 0, 0, 2479, 2480, 5, 1, 0, 0, 2480, 2481, 3, 22, 11, 0, 2481, 2482, 5, 2, 0, 0, 2482, 2772, 1, 0, 0, 0, 2483, 2484, 5, 40, 0, 0, 2484, 2486, 3, 136, 68, 0, 2485, 2487, 3, 190, 95, 0, 2486, 2485, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2492, 1, 0, 0, 0, 2490, 2491, 5, 84, 0, 0, 2491, 2493, 3, 136, 68, 0, 2492, 2490, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2495, 5, 88, 0, 0, 2495, 2772, 1, 0, 0, 0, 2496, 2498, 5, 40, 0, 0, 2497, 2499, 3, 190, 95, 0, 2498, 2497, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2503, 5, 84, 0, 0, 2503, 2505, 3, 136, 68, 0, 2504, 2502, 1, 0, 0, 0, 2504, 2505, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2507, 5, 88, 0, 0, 2507, 2772, 1, 0, 0, 0, 2508, 2509, 5, 41, 0, 0, 2509, 2510, 5, 1, 0, 0, 2510, 2511, 3, 136, 68, 0, 2511, 2512, 5, 28, 0, 0, 2512, 2513, 3, 184, 92, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2772, 1, 0, 0, 0, 2515, 2516, 5, 275, 0, 0, 2516, 2517, 5, 1, 0, 0, 2517, 2518, 3, 136, 68, 0, 2518, 2519, 5, 28, 0, 0, 2519, 2520, 3, 184, 92, 0, 2520, 2521, 5, 2, 0, 0, 2521, 2772, 1, 0, 0, 0, 2522, 2523, 5, 27, 0, 0, 2523, 2532, 5, 8, 0, 0, 2524, 2529, 3, 136, 68, 0, 2525, 2526, 5, 3, 0, 0, 2526, 2528, 3, 136, 68, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2531, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2533, 1, 0, 0, 0, 2531, 2529, 1, 0, 0, 0, 2532, 2524, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2772, 5, 9, 0, 0, 2535, 2772, 3, 294, 147, 0, 2536, 2772, 5, 58, 0, 0, 2537, 2541, 5, 62, 0, 0, 2538, 2539, 5, 1, 0, 0, 2539, 2540, 5, 329, 0, 0, 2540, 2542, 5, 2, 0, 0, 2541, 2538, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2772, 1, 0, 0, 0, 2543, 2547, 5, 63, 0, 0, 2544, 2545, 5, 1, 0, 0, 2545, 2546, 5, 329, 0, 0, 2546, 2548, 5, 2, 0, 0, 2547, 2544, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2772, 1, 0, 0, 0, 2549, 2553, 5, 158, 0, 0, 2550, 2551, 5, 1, 0, 0, 2551, 2552, 5, 329, 0, 0, 2552, 2554, 5, 2, 0, 0, 2553, 2550, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2772, 1, 0, 0, 0, 2555, 2559, 5, 159, 0, 0, 2556, 2557, 5, 1, 0, 0, 2557, 2558, 5, 329, 0, 0, 2558, 2560, 5, 2, 0, 0, 2559, 2556, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2772, 1, 0, 0, 0, 2561, 2772, 5, 64, 0, 0, 2562, 2772, 5, 57, 0, 0, 2563, 2772, 5, 61, 0, 0, 2564, 2772, 5, 59, 0, 0, 2565, 2566, 5, 272, 0, 0, 2566, 2574, 5, 1, 0, 0, 2567, 2569, 3, 82, 41, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 142, 71, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2575, 5, 105, 0, 0, 2574, 2568, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 3, 142, 71, 0, 2577, 2578, 5, 2, 0, 0, 2578, 2772, 1, 0, 0, 0, 2579, 2580, 5, 272, 0, 0, 2580, 2581, 5, 1, 0, 0, 2581, 2582, 3, 142, 71, 0, 2582, 2583, 5, 3, 0, 0, 2583, 2584, 3, 142, 71, 0, 2584, 2585, 5, 2, 0, 0, 2585, 2772, 1, 0, 0, 0, 2586, 2587, 5, 258, 0, 0, 2587, 2588, 5, 1, 0, 0, 2588, 2589, 3, 142, 71, 0, 2589, 2590, 5, 105, 0, 0, 2590, 2593, 3, 142, 71, 0, 2591, 2592, 5, 103, 0, 0, 2592, 2594, 3, 142, 71, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 5, 2, 0, 0, 2596, 2772, 1, 0, 0, 0, 2597, 2598, 5, 181, 0, 0, 2598, 2599, 5, 1, 0, 0, 2599, 2602, 3, 142, 71, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2603, 3, 182, 91, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 5, 2, 0, 0, 2605, 2772, 1, 0, 0, 0, 2606, 2607, 5, 96, 0, 0, 2607, 2608, 5, 1, 0, 0, 2608, 2609, 3, 294, 147, 0, 2609, 2610, 5, 105, 0, 0, 2610, 2611, 3, 142, 71, 0, 2611, 2612, 5, 2, 0, 0, 2612, 2772, 1, 0, 0, 0, 2613, 2614, 5, 1, 0, 0, 2614, 2615, 3, 136, 68, 0, 2615, 2616, 5, 2, 0, 0, 2616, 2772, 1, 0, 0, 0, 2617, 2618, 5, 115, 0, 0, 2618, 2627, 5, 1, 0, 0, 2619, 2624, 3, 280, 140, 0, 2620, 2621, 5, 3, 0, 0, 2621, 2623, 3, 280, 140, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2626, 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2627, 2619, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2772, 5, 2, 0, 0, 2630, 2631, 5, 139, 0, 0, 2631, 2632, 5, 1, 0, 0, 2632, 2637, 3, 146, 73, 0, 2633, 2634, 3, 154, 77, 0, 2634, 2635, 5, 190, 0, 0, 2635, 2636, 5, 89, 0, 0, 2636, 2638, 1, 0, 0, 0, 2637, 2633, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 5, 2, 0, 0, 2640, 2772, 1, 0, 0, 0, 2641, 2642, 5, 143, 0, 0, 2642, 2643, 5, 1, 0, 0, 2643, 2646, 3, 146, 73, 0, 2644, 2645, 5, 231, 0, 0, 2645, 2647, 3, 184, 92, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2652, 1, 0, 0, 0, 2648, 2649, 3, 156, 78, 0, 2649, 2650, 5, 190, 0, 0, 2650, 2651, 5, 85, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2648, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2658, 1, 0, 0, 0, 2654, 2655, 3, 156, 78, 0, 2655, 2656, 5, 190, 0, 0, 2656, 2657, 5, 89, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2654, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 5, 2, 0, 0, 2661, 2772, 1, 0, 0, 0, 2662, 2663, 5, 141, 0, 0, 2663, 2664, 5, 1, 0, 0, 2664, 2671, 3, 146, 73, 0, 2665, 2666, 5, 231, 0, 0, 2666, 2669, 3, 184, 92, 0, 2667, 2668, 5, 104, 0, 0, 2668, 2670, 3, 150, 75, 0, 2669, 2667, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2665, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2676, 1, 0, 0, 0, 2673, 2674, 3, 158, 79, 0, 2674, 2675, 5, 308, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2673, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2685, 1, 0, 0, 0, 2678, 2679, 7, 15, 0, 0, 2679, 2683, 5, 218, 0, 0, 2680, 2681, 5, 190, 0, 0, 2681, 2682, 5, 242, 0, 0, 2682, 2684, 5, 264, 0, 0, 2683, 2680, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2678, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2691, 1, 0, 0, 0, 2687, 2688, 3, 160, 80, 0, 2688, 2689, 5, 190, 0, 0, 2689, 2690, 5, 85, 0, 0, 2690, 2692, 1, 0, 0, 0, 2691, 2687, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2697, 1, 0, 0, 0, 2693, 2694, 3, 160, 80, 0, 2694, 2695, 5, 190, 0, 0, 2695, 2696, 5, 89, 0, 0, 2696, 2698, 1, 0, 0, 0, 2697, 2693, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 5, 2, 0, 0, 2700, 2772, 1, 0, 0, 0, 2701, 2702, 5, 140, 0, 0, 2702, 2731, 5, 1, 0, 0, 2703, 2708, 3, 162, 81, 0, 2704, 2705, 5, 3, 0, 0, 2705, 2707, 3, 162, 81, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2717, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2712, 5, 183, 0, 0, 2712, 2713, 5, 190, 0, 0, 2713, 2718, 5, 183, 0, 0, 2714, 2715, 5, 18, 0, 0, 2715, 2716, 5, 190, 0, 0, 2716, 2718, 5, 183, 0, 0, 2717, 2711, 1, 0, 0, 0, 2717, 2714, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2729, 1, 0, 0, 0, 2719, 2720, 5, 304, 0, 0, 2720, 2722, 5, 282, 0, 0, 2721, 2723, 5, 146, 0, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2730, 1, 0, 0, 0, 2724, 2725, 5, 306, 0, 0, 2725, 2727, 5, 282, 0, 0, 2726, 2728, 5, 146, 0, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2730, 1, 0, 0, 0, 2729, 2719, 1, 0, 0, 0, 2729, 2724, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2732, 1, 0, 0, 0, 2731, 2703, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2739, 1, 0, 0, 0, 2733, 2734, 5, 231, 0, 0, 2734, 2737, 3, 184, 92, 0, 2735, 2736, 5, 104, 0, 0, 2736, 2738, 3, 150, 75, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2733, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2772, 5, 2, 0, 0, 2742, 2743, 5, 138, 0, 0, 2743, 2760, 5, 1, 0, 0, 2744, 2749, 3, 148, 74, 0, 2745, 2746, 5, 3, 0, 0, 2746, 2748, 3, 148, 74, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2751, 1, 0, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2758, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2752, 2753, 5, 183, 0, 0, 2753, 2754, 5, 190, 0, 0, 2754, 2759, 5, 183, 0, 0, 2755, 2756, 5, 18, 0, 0, 2756, 2757, 5, 190, 0, 0, 2757, 2759, 5, 183, 0, 0, 2758, 2752, 1, 0, 0, 0, 2758, 2755, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2744, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2768, 1, 0, 0, 0, 2762, 2763, 5, 231, 0, 0, 2763, 2766, 3, 184, 92, 0, 2764, 2765, 5, 104, 0, 0, 2765, 2767, 3, 150, 75, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2762, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 5, 2, 0, 0, 2771, 2318, 1, 0, 0, 0, 2771, 2320, 1, 0, 0, 0, 2771, 2321, 1, 0, 0, 0, 2771, 2324, 1, 0, 0, 0, 2771, 2327, 1, 0, 0, 0, 2771, 2328, 1, 0, 0, 0, 2771, 2329, 1, 0, 0, 0, 2771, 2330, 1, 0, 0, 0, 2771, 2331, 1, 0, 0, 0, 2771, 2332, 1, 0, 0, 0, 2771, 2339, 1, 0, 0, 0, 2771, 2349, 1, 0, 0, 0, 2771, 2361, 1, 0, 0, 0, 2771, 2396, 1, 0, 0, 0, 2771, 2414, 1, 0, 0, 0, 2771, 2453, 1, 0, 0, 0, 2771, 2456, 1, 0, 0, 0, 2771, 2460, 1, 0, 0, 0, 2771, 2474, 1, 0, 0, 0, 2771, 2478, 1, 0, 0, 0, 2771, 2483, 1, 0, 0, 0, 2771, 2496, 1, 0, 0, 0, 2771, 2508, 1, 0, 0, 0, 2771, 2515, 1, 0, 0, 0, 2771, 2522, 1, 0, 0, 0, 2771, 2535, 1, 0, 0, 0, 2771, 2536, 1, 0, 0, 0, 2771, 2537, 1, 0, 0, 0, 2771, 2543, 1, 0, 0, 0, 2771, 2549, 1, 0, 0, 0, 2771, 2555, 1, 0, 0, 0, 2771, 2561, 1, 0, 0, 0, 2771, 2562, 1, 0, 0, 0, 2771, 2563, 1, 0, 0, 0, 2771, 2564, 1, 0, 0, 0, 2771, 2565, 1, 0, 0, 0, 2771, 2579, 1, 0, 0, 0, 2771, 2586, 1, 0, 0, 0, 2771, 2597, 1, 0, 0, 0, 2771, 2606, 1, 0, 0, 0, 2771, 2613, 1, 0, 0, 0, 2771, 2617, 1, 0, 0, 0, 2771, 2630, 1, 0, 0, 0, 2771, 2641, 1, 0, 0, 0, 2771, 2662, 1, 0, 0, 0, 2771, 2701, 1, 0, 0, 0, 2771, 2742, 1, 0, 0, 0, 2772, 2783, 1, 0, 0, 0, 2773, 2774, 10, 24, 0, 0, 2774, 2775, 5, 8, 0, 0, 2775, 2776, 3, 142, 71, 0, 2776, 2777, 5, 9, 0, 0, 2777, 2782, 1, 0, 0, 0, 2778, 2779, 10, 22, 0, 0, 2779, 2780, 5, 4, 0, 0, 2780, 2782, 3, 294, 147, 0, 2781, 2773, 1, 0, 0, 0, 2781, 2778, 1, 0, 0, 0, 2782, 2785, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 145, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2786, 2787, 3, 148, 74, 0, 2787, 2788, 5, 3, 0, 0, 2788, 2791, 3, 168, 84, 0, 2789, 2790, 5, 28, 0, 0, 2790, 2792, 3, 294, 147, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2802, 1, 0, 0, 0, 2793, 2794, 5, 203, 0, 0, 2794, 2799, 3, 152, 76, 0, 2795, 2796, 5, 3, 0, 0, 2796, 2798, 3, 152, 76, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2801, 1, 0, 0, 0, 2799, 2797, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2803, 1, 0, 0, 0, 2801, 2799, 1, 0, 0, 0, 2802, 2793, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 147, 1, 0, 0, 0, 2804, 2807, 3, 136, 68, 0, 2805, 2806, 5, 104, 0, 0, 2806, 2808, 3, 150, 75, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 149, 1, 0, 0, 0, 2809, 2812, 5, 137, 0, 0, 2810, 2811, 5, 87, 0, 0, 2811, 2813, 7, 20, 0, 0, 2812, 2810, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 151, 1, 0, 0, 0, 2814, 2815, 3, 148, 74, 0, 2815, 2816, 5, 28, 0, 0, 2816, 2817, 3, 294, 147, 0, 2817, 153, 1, 0, 0, 0, 2818, 2819, 7, 21, 0, 0, 2819, 155, 1, 0, 0, 0, 2820, 2825, 5, 89, 0, 0, 2821, 2825, 5, 183, 0, 0, 2822, 2823, 5, 70, 0, 0, 2823, 2825, 3, 136, 68, 0, 2824, 2820, 1, 0, 0, 0, 2824, 2821, 1, 0, 0, 0, 2824, 2822, 1, 0, 0, 0, 2825, 157, 1, 0, 0, 0, 2826, 2828, 5, 306, 0, 0, 2827, 2829, 5, 27, 0, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2838, 1, 0, 0, 0, 2830, 2832, 5, 304, 0, 0, 2831, 2833, 7, 22, 0, 0, 2832, 2831, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2836, 5, 27, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2826, 1, 0, 0, 0, 2837, 2830, 1, 0, 0, 0, 2838, 159, 1, 0, 0, 0, 2839, 2846, 5, 89, 0, 0, 2840, 2846, 5, 183, 0, 0, 2841, 2842, 5, 85, 0, 0, 2842, 2846, 5, 27, 0, 0, 2843, 2844, 5, 85, 0, 0, 2844, 2846, 5, 186, 0, 0, 2845, 2839, 1, 0, 0, 0, 2845, 2840, 1, 0, 0, 0, 2845, 2841, 1, 0, 0, 0, 2845, 2843, 1, 0, 0, 0, 2846, 161, 1, 0, 0, 0, 2847, 2849, 5, 145, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 3, 136, 68, 0, 2851, 2852, 5, 295, 0, 0, 2852, 2853, 3, 148, 74, 0, 2853, 2859, 1, 0, 0, 0, 2854, 2855, 3, 136, 68, 0, 2855, 2856, 5, 10, 0, 0, 2856, 2857, 3, 148, 74, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2848, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 163, 1, 0, 0, 0, 2860, 2861, 7, 23, 0, 0, 2861, 165, 1, 0, 0, 0, 2862, 2863, 5, 120, 0, 0, 2863, 2867, 5, 185, 0, 0, 2864, 2865, 5, 228, 0, 0, 2865, 2867, 5, 185, 0, 0, 2866, 2862, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2867, 167, 1, 0, 0, 0, 2868, 2875, 5, 326, 0, 0, 2869, 2872, 5, 327, 0, 0, 2870, 2871, 5, 277, 0, 0, 2871, 2873, 5, 326, 0, 0, 2872, 2870, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2868, 1, 0, 0, 0, 2874, 2869, 1, 0, 0, 0, 2875, 169, 1, 0, 0, 0, 2876, 2877, 5, 267, 0, 0, 2877, 2878, 5, 311, 0, 0, 2878, 2883, 3, 178, 89, 0, 2879, 2880, 5, 267, 0, 0, 2880, 2881, 5, 311, 0, 0, 2881, 2883, 3, 168, 84, 0, 2882, 2876, 1, 0, 0, 0, 2882, 2879, 1, 0, 0, 0, 2883, 171, 1, 0, 0, 0, 2884, 2885, 7, 24, 0, 0, 2885, 173, 1, 0, 0, 0, 2886, 2887, 7, 25, 0, 0, 2887, 175, 1, 0, 0, 0, 2888, 2889, 7, 26, 0, 0, 2889, 177, 1, 0, 0, 0, 2890, 2892, 5, 129, 0, 0, 2891, 2893, 7, 18, 0, 0, 2892, 2891, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 3, 168, 84, 0, 2895, 2898, 3, 180, 90, 0, 2896, 2897, 5, 269, 0, 0, 2897, 2899, 3, 180, 90, 0, 2898, 2896, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 179, 1, 0, 0, 0, 2900, 2901, 7, 27, 0, 0, 2901, 181, 1, 0, 0, 0, 2902, 2903, 7, 28, 0, 0, 2903, 183, 1, 0, 0, 0, 2904, 2905, 6, 92, -1, 0, 2905, 2906, 5, 239, 0, 0, 2906, 2907, 5, 1, 0, 0, 2907, 2912, 3, 186, 93, 0, 2908, 2909, 5, 3, 0, 0, 2909, 2911, 3, 186, 93, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2914, 1, 0, 0, 0, 2912, 2910, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2915, 1, 0, 0, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2916, 5, 2, 0, 0, 2916, 2996, 1, 0, 0, 0, 2917, 2918, 5, 129, 0, 0, 2918, 2921, 3, 180, 90, 0, 2919, 2920, 5, 269, 0, 0, 2920, 2922, 3, 180, 90, 0, 2921, 2919, 1, 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2996, 1, 0, 0, 0, 2923, 2928, 5, 268, 0, 0, 2924, 2925, 5, 1, 0, 0, 2925, 2926, 3, 188, 94, 0, 2926, 2927, 5, 2, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2924, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2933, 1, 0, 0, 0, 2930, 2931, 5, 306, 0, 0, 2931, 2932, 5, 267, 0, 0, 2932, 2934, 5, 311, 0, 0, 2933, 2930, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2996, 1, 0, 0, 0, 2935, 2940, 5, 268, 0, 0, 2936, 2937, 5, 1, 0, 0, 2937, 2938, 3, 188, 94, 0, 2938, 2939, 5, 2, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2936, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2943, 5, 304, 0, 0, 2943, 2944, 5, 267, 0, 0, 2944, 2996, 5, 311, 0, 0, 2945, 2950, 5, 267, 0, 0, 2946, 2947, 5, 1, 0, 0, 2947, 2948, 3, 188, 94, 0, 2948, 2949, 5, 2, 0, 0, 2949, 2951, 1, 0, 0, 0, 2950, 2946, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2955, 1, 0, 0, 0, 2952, 2953, 5, 306, 0, 0, 2953, 2954, 5, 267, 0, 0, 2954, 2956, 5, 311, 0, 0, 2955, 2952, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2996, 1, 0, 0, 0, 2957, 2962, 5, 267, 0, 0, 2958, 2959, 5, 1, 0, 0, 2959, 2960, 3, 188, 94, 0, 2960, 2961, 5, 2, 0, 0, 2961, 2963, 1, 0, 0, 0, 2962, 2958, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 2965, 5, 304, 0, 0, 2965, 2966, 5, 267, 0, 0, 2966, 2996, 5, 311, 0, 0, 2967, 2968, 5, 82, 0, 0, 2968, 2996, 5, 213, 0, 0, 2969, 2970, 5, 27, 0, 0, 2970, 2971, 5, 314, 0, 0, 2971, 2972, 3, 184, 92, 0, 2972, 2973, 5, 316, 0, 0, 2973, 2996, 1, 0, 0, 0, 2974, 2975, 5, 162, 0, 0, 2975, 2976, 5, 314, 0, 0, 2976, 2977, 3, 184, 92, 0, 2977, 2978, 5, 3, 0, 0, 2978, 2979, 3, 184, 92, 0, 2979, 2980, 5, 316, 0, 0, 2980, 2996, 1, 0, 0, 0, 2981, 2993, 3, 294, 147, 0, 2982, 2983, 5, 1, 0, 0, 2983, 2988, 3, 188, 94, 0, 2984, 2985, 5, 3, 0, 0, 2985, 2987, 3, 188, 94, 0, 2986, 2984, 1, 0, 0, 0, 2987, 2990, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2991, 1, 0, 0, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2992, 5, 2, 0, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2982, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2904, 1, 0, 0, 0, 2995, 2917, 1, 0, 0, 0, 2995, 2923, 1, 0, 0, 0, 2995, 2935, 1, 0, 0, 0, 2995, 2945, 1, 0, 0, 0, 2995, 2957, 1, 0, 0, 0, 2995, 2967, 1, 0, 0, 0, 2995, 2969, 1, 0, 0, 0, 2995, 2974, 1, 0, 0, 0, 2995, 2981, 1, 0, 0, 0, 2996, 3006, 1, 0, 0, 0, 2997, 2998, 10, 2, 0, 0, 2998, 3002, 5, 27, 0, 0, 2999, 3000, 5, 8, 0, 0, 3000, 3001, 5, 329, 0, 0, 3001, 3003, 5, 9, 0, 0, 3002, 2999, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 2997, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 185, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3014, 3, 184, 92, 0, 3010, 3011, 3, 294, 147, 0, 3011, 3012, 3, 184, 92, 0, 3012, 3014, 1, 0, 0, 0, 3013, 3009, 1, 0, 0, 0, 3013, 3010, 1, 0, 0, 0, 3014, 187, 1, 0, 0, 0, 3015, 3018, 5, 329, 0, 0, 3016, 3018, 3, 184, 92, 0, 3017, 3015, 1, 0, 0, 0, 3017, 3016, 1, 0, 0, 0, 3018, 189, 1, 0, 0, 0, 3019, 3020, 5, 300, 0, 0, 3020, 3021, 3, 136, 68, 0, 3021, 3022, 5, 265, 0, 0, 3022, 3023, 3, 136, 68, 0, 3023, 191, 1, 0, 0, 0, 3024, 3025, 5, 99, 0, 0, 3025, 3026, 5, 1, 0, 0, 3026, 3027, 5, 301, 0, 0, 3027, 3028, 3, 138, 69, 0, 3028, 3029, 5, 2, 0, 0, 3029, 193, 1, 0, 0, 0, 3030, 3031, 5, 300, 0, 0, 3031, 3034, 5, 164, 0, 0, 3032, 3033, 5, 25, 0, 0, 3033, 3035, 3, 136, 68, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3037, 5, 265, 0, 0, 3037, 3038, 5, 287, 0, 0, 3038, 3039, 5, 251, 0, 0, 3039, 3040, 3, 294, 147, 0, 3040, 3041, 5, 312, 0, 0, 3041, 3049, 3, 136, 68, 0, 3042, 3043, 5, 3, 0, 0, 3043, 3044, 3, 294, 147, 0, 3044, 3045, 5, 312, 0, 0, 3045, 3046, 3, 136, 68, 0, 3046, 3048, 1, 0, 0, 0, 3047, 3042, 1, 0, 0, 0, 3048, 3051, 1, 0, 0, 0, 3049, 3047, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3095, 1, 0, 0, 0, 3051, 3049, 1, 0, 0, 0, 3052, 3053, 5, 300, 0, 0, 3053, 3056, 5, 164, 0, 0, 3054, 3055, 5, 25, 0, 0, 3055, 3057, 3, 136, 68, 0, 3056, 3054, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3059, 5, 265, 0, 0, 3059, 3095, 5, 73, 0, 0, 3060, 3061, 5, 300, 0, 0, 3061, 3062, 5, 182, 0, 0, 3062, 3065, 5, 164, 0, 0, 3063, 3064, 5, 25, 0, 0, 3064, 3066, 3, 136, 68, 0, 3065, 3063, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3068, 5, 265, 0, 0, 3068, 3080, 5, 127, 0, 0, 3069, 3070, 5, 1, 0, 0, 3070, 3075, 3, 294, 147, 0, 3071, 3072, 5, 3, 0, 0, 3072, 3074, 3, 294, 147, 0, 3073, 3071, 1, 0, 0, 0, 3074, 3077, 1, 0, 0, 0, 3075, 3073, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3075, 1, 0, 0, 0, 3078, 3079, 5, 2, 0, 0, 3079, 3081, 1, 0, 0, 0, 3080, 3069, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3083, 5, 296, 0, 0, 3083, 3084, 5, 1, 0, 0, 3084, 3089, 3, 136, 68, 0, 3085, 3086, 5, 3, 0, 0, 3086, 3088, 3, 136, 68, 0, 3087, 3085, 1, 0, 0, 0, 3088, 3091, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3092, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3092, 3093, 5, 2, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3030, 1, 0, 0, 0, 3094, 3052, 1, 0, 0, 0, 3094, 3060, 1, 0, 0, 0, 3095, 195, 1, 0, 0, 0, 3096, 3102, 5, 199, 0, 0, 3097, 3103, 3, 294, 147, 0, 3098, 3099, 5, 1, 0, 0, 3099, 3100, 3, 64, 32, 0, 3100, 3101, 5, 2, 0, 0, 3101, 3103, 1, 0, 0, 0, 3102, 3097, 1, 0, 0, 0, 3102, 3098, 1, 0, 0, 0, 3103, 197, 1, 0, 0, 0, 3104, 3105, 5, 168, 0, 0, 3105, 3110, 3, 90, 45, 0, 3106, 3107, 5, 3, 0, 0, 3107, 3109, 3, 90, 45, 0, 3108, 3106, 1, 0, 0, 0, 3109, 3112, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3113, 3104, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3119, 3, 200, 100, 0, 3116, 3117, 5, 21, 0, 0, 3117, 3118, 5, 163, 0, 0, 3118, 3120, 3, 96, 48, 0, 3119, 3116, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3122, 1, 0, 0, 0, 3121, 3123, 7, 13, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3129, 1, 0, 0, 0, 3124, 3125, 5, 206, 0, 0, 3125, 3126, 5, 1, 0, 0, 3126, 3127, 3, 204, 102, 0, 3127, 3128, 5, 2, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3124, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3140, 1, 0, 0, 0, 3131, 3132, 5, 257, 0, 0, 3132, 3137, 3, 98, 49, 0, 3133, 3134, 5, 3, 0, 0, 3134, 3136, 3, 98, 49, 0, 3135, 3133, 1, 0, 0, 0, 3136, 3139, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3141, 1, 0, 0, 0, 3139, 3137, 1, 0, 0, 0, 3140, 3131, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3151, 1, 0, 0, 0, 3142, 3143, 5, 71, 0, 0, 3143, 3148, 3, 100, 50, 0, 3144, 3145, 5, 3, 0, 0, 3145, 3147, 3, 100, 50, 0, 3146, 3144, 1, 0, 0, 0, 3147, 3150, 1, 0, 0, 0, 3148, 3146, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3152, 1, 0, 0, 0, 3150, 3148, 1, 0, 0, 0, 3151, 3142, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 199, 1, 0, 0, 0, 3153, 3154, 5, 219, 0, 0, 3154, 3178, 3, 202, 101, 0, 3155, 3156, 5, 240, 0, 0, 3156, 3178, 3, 202, 101, 0, 3157, 3158, 5, 116, 0, 0, 3158, 3178, 3, 202, 101, 0, 3159, 3160, 5, 219, 0, 0, 3160, 3161, 5, 34, 0, 0, 3161, 3162, 3, 202, 101, 0, 3162, 3163, 5, 25, 0, 0, 3163, 3164, 3, 202, 101, 0, 3164, 3178, 1, 0, 0, 0, 3165, 3166, 5, 240, 0, 0, 3166, 3167, 5, 34, 0, 0, 3167, 3168, 3, 202, 101, 0, 3168, 3169, 5, 25, 0, 0, 3169, 3170, 3, 202, 101, 0, 3170, 3178, 1, 0, 0, 0, 3171, 3172, 5, 116, 0, 0, 3172, 3173, 5, 34, 0, 0, 3173, 3174, 3, 202, 101, 0, 3174, 3175, 5, 25, 0, 0, 3175, 3176, 3, 202, 101, 0, 3176, 3178, 1, 0, 0, 0, 3177, 3153, 1, 0, 0, 0, 3177, 3155, 1, 0, 0, 0, 3177, 3157, 1, 0, 0, 0, 3177, 3159, 1, 0, 0, 0, 3177, 3165, 1, 0, 0, 0, 3177, 3171, 1, 0, 0, 0, 3178, 201, 1, 0, 0, 0, 3179, 3180, 5, 278, 0, 0, 3180, 3189, 5, 212, 0, 0, 3181, 3182, 5, 278, 0, 0, 3182, 3189, 5, 102, 0, 0, 3183, 3184, 5, 56, 0, 0, 3184, 3189, 5, 239, 0, 0, 3185, 3186, 3, 136, 68, 0, 3186, 3187, 7, 29, 0, 0, 3187, 3189, 1, 0, 0, 0, 3188, 3179, 1, 0, 0, 0, 3188, 3181, 1, 0, 0, 0, 3188, 3183, 1, 0, 0, 0, 3188, 3185, 1, 0, 0, 0, 3189, 203, 1, 0, 0, 0, 3190, 3191, 6, 102, -1, 0, 3191, 3193, 3, 206, 103, 0, 3192, 3194, 3, 208, 104, 0, 3193, 3192, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3202, 1, 0, 0, 0, 3195, 3196, 10, 2, 0, 0, 3196, 3201, 3, 204, 102, 3, 3197, 3198, 10, 1, 0, 0, 3198, 3199, 5, 11, 0, 0, 3199, 3201, 3, 204, 102, 2, 3200, 3195, 1, 0, 0, 0, 3200, 3197, 1, 0, 0, 0, 3201, 3204, 1, 0, 0, 0, 3202, 3200, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 205, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3231, 3, 294, 147, 0, 3206, 3207, 5, 1, 0, 0, 3207, 3231, 5, 2, 0, 0, 3208, 3209, 5, 209, 0, 0, 3209, 3210, 5, 1, 0, 0, 3210, 3215, 3, 204, 102, 0, 3211, 3212, 5, 3, 0, 0, 3212, 3214, 3, 204, 102, 0, 3213, 3211, 1, 0, 0, 0, 3214, 3217, 1, 0, 0, 0, 3215, 3213, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3218, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3218, 3219, 5, 2, 0, 0, 3219, 3231, 1, 0, 0, 0, 3220, 3221, 5, 1, 0, 0, 3221, 3222, 3, 204, 102, 0, 3222, 3223, 5, 2, 0, 0, 3223, 3231, 1, 0, 0, 0, 3224, 3231, 5, 12, 0, 0, 3225, 3231, 5, 13, 0, 0, 3226, 3227, 5, 14, 0, 0, 3227, 3228, 3, 204, 102, 0, 3228, 3229, 5, 15, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3205, 1, 0, 0, 0, 3230, 3206, 1, 0, 0, 0, 3230, 3208, 1, 0, 0, 0, 3230, 3220, 1, 0, 0, 0, 3230, 3224, 1, 0, 0, 0, 3230, 3225, 1, 0, 0, 0, 3230, 3226, 1, 0, 0, 0, 3231, 207, 1, 0, 0, 0, 3232, 3234, 5, 320, 0, 0, 3233, 3235, 5, 324, 0, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3263, 1, 0, 0, 0, 3236, 3238, 5, 318, 0, 0, 3237, 3239, 5, 324, 0, 0, 3238, 3237, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3263, 1, 0, 0, 0, 3240, 3242, 5, 324, 0, 0, 3241, 3243, 5, 324, 0, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3263, 1, 0, 0, 0, 3244, 3245, 5, 16, 0, 0, 3245, 3246, 5, 329, 0, 0, 3246, 3248, 5, 17, 0, 0, 3247, 3249, 5, 324, 0, 0, 3248, 3247, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3263, 1, 0, 0, 0, 3250, 3252, 5, 16, 0, 0, 3251, 3253, 5, 329, 0, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3256, 5, 3, 0, 0, 3255, 3257, 5, 329, 0, 0, 3256, 3255, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3260, 5, 17, 0, 0, 3259, 3261, 5, 324, 0, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3263, 1, 0, 0, 0, 3262, 3232, 1, 0, 0, 0, 3262, 3236, 1, 0, 0, 0, 3262, 3240, 1, 0, 0, 0, 3262, 3244, 1, 0, 0, 0, 3262, 3250, 1, 0, 0, 0, 3263, 209, 1, 0, 0, 0, 3264, 3265, 3, 294, 147, 0, 3265, 3266, 5, 312, 0, 0, 3266, 3267, 3, 136, 68, 0, 3267, 211, 1, 0, 0, 0, 3268, 3269, 5, 104, 0, 0, 3269, 3273, 7, 30, 0, 0, 3270, 3271, 5, 276, 0, 0, 3271, 3273, 7, 31, 0, 0, 3272, 3268, 1, 0, 0, 0, 3272, 3270, 1, 0, 0, 0, 3273, 213, 1, 0, 0, 0, 3274, 3275, 5, 134, 0, 0, 3275, 3276, 5, 153, 0, 0, 3276, 3280, 3, 216, 108, 0, 3277, 3278, 5, 220, 0, 0, 3278, 3280, 7, 32, 0, 0, 3279, 3274, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3280, 215, 1, 0, 0, 0, 3281, 3282, 5, 220, 0, 0, 3282, 3289, 5, 279, 0, 0, 3283, 3284, 5, 220, 0, 0, 3284, 3289, 5, 48, 0, 0, 3285, 3286, 5, 225, 0, 0, 3286, 3289, 5, 220, 0, 0, 3287, 3289, 5, 249, 0, 0, 3288, 3281, 1, 0, 0, 0, 3288, 3283, 1, 0, 0, 0, 3288, 3285, 1, 0, 0, 0, 3288, 3287, 1, 0, 0, 0, 3289, 217, 1, 0, 0, 0, 3290, 3296, 3, 136, 68, 0, 3291, 3292, 3, 294, 147, 0, 3292, 3293, 5, 6, 0, 0, 3293, 3294, 3, 136, 68, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3290, 1, 0, 0, 0, 3295, 3291, 1, 0, 0, 0, 3296, 219, 1, 0, 0, 0, 3297, 3298, 3, 294, 147, 0, 3298, 3299, 5, 4, 0, 0, 3299, 3300, 3, 294, 147, 0, 3300, 3303, 1, 0, 0, 0, 3301, 3303, 3, 294, 147, 0, 3302, 3297, 1, 0, 0, 0, 3302, 3301, 1, 0, 0, 0, 3303, 221, 1, 0, 0, 0, 3304, 3309, 3, 220, 110, 0, 3305, 3306, 5, 3, 0, 0, 3306, 3308, 3, 220, 110, 0, 3307, 3305, 1, 0, 0, 0, 3308, 3311, 1, 0, 0, 0, 3309, 3307, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 223, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3312, 3313, 5, 107, 0, 0, 3313, 3314, 3, 226, 113, 0, 3314, 3318, 3, 232, 116, 0, 3315, 3317, 3, 234, 117, 0, 3316, 3315, 1, 0, 0, 0, 3317, 3320, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3321, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3322, 3, 236, 118, 0, 3322, 225, 1, 0, 0, 0, 3323, 3324, 3, 274, 137, 0, 3324, 3333, 5, 1, 0, 0, 3325, 3330, 3, 230, 115, 0, 3326, 3327, 5, 3, 0, 0, 3327, 3329, 3, 230, 115, 0, 3328, 3326, 1, 0, 0, 0, 3329, 3332, 1, 0, 0, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3334, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3333, 3325, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3336, 5, 2, 0, 0, 3336, 227, 1, 0, 0, 0, 3337, 3338, 3, 272, 136, 0, 3338, 3347, 5, 1, 0, 0, 3339, 3344, 3, 230, 115, 0, 3340, 3341, 5, 3, 0, 0, 3341, 3343, 3, 230, 115, 0, 3342, 3340, 1, 0, 0, 0, 3343, 3346, 1, 0, 0, 0, 3344, 3342, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3348, 1, 0, 0, 0, 3346, 3344, 1, 0, 0, 0, 3347, 3339, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3350, 5, 2, 0, 0, 3350, 229, 1, 0, 0, 0, 3351, 3353, 3, 294, 147, 0, 3352, 3351, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 3, 184, 92, 0, 3355, 231, 1, 0, 0, 0, 3356, 3357, 5, 232, 0, 0, 3357, 3358, 3, 184, 92, 0, 3358, 233, 1, 0, 0, 0, 3359, 3360, 5, 147, 0, 0, 3360, 3379, 3, 294, 147, 0, 3361, 3363, 5, 182, 0, 0, 3362, 3361, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3379, 5, 78, 0, 0, 3365, 3366, 5, 232, 0, 0, 3366, 3367, 5, 183, 0, 0, 3367, 3368, 5, 190, 0, 0, 3368, 3369, 5, 183, 0, 0, 3369, 3379, 5, 126, 0, 0, 3370, 3371, 5, 38, 0, 0, 3371, 3372, 5, 190, 0, 0, 3372, 3373, 5, 183, 0, 0, 3373, 3379, 5, 126, 0, 0, 3374, 3375, 5, 246, 0, 0, 3375, 3379, 7, 1, 0, 0, 3376, 3377, 5, 46, 0, 0, 3377, 3379, 3, 168, 84, 0, 3378, 3359, 1, 0, 0, 0, 3378, 3362, 1, 0, 0, 0, 3378, 3365, 1, 0, 0, 0, 3378, 3370, 1, 0, 0, 0, 3378, 3374, 1, 0, 0, 0, 3378, 3376, 1, 0, 0, 0, 3379, 235, 1, 0, 0, 0, 3380, 3381, 5, 230, 0, 0, 3381, 3480, 3, 142, 71, 0, 3382, 3383, 5, 251, 0, 0, 3383, 3384, 3, 294, 147, 0, 3384, 3385, 5, 312, 0, 0, 3385, 3386, 3, 136, 68, 0, 3386, 3480, 1, 0, 0, 0, 3387, 3388, 5, 40, 0, 0, 3388, 3390, 3, 136, 68, 0, 3389, 3391, 3, 238, 119, 0, 3390, 3389, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 3395, 1, 0, 0, 0, 3394, 3396, 3, 242, 121, 0, 3395, 3394, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3398, 5, 88, 0, 0, 3398, 3399, 5, 40, 0, 0, 3399, 3480, 1, 0, 0, 0, 3400, 3402, 5, 40, 0, 0, 3401, 3403, 3, 238, 119, 0, 3402, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3407, 1, 0, 0, 0, 3406, 3408, 3, 242, 121, 0, 3407, 3406, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3410, 5, 88, 0, 0, 3410, 3411, 5, 40, 0, 0, 3411, 3480, 1, 0, 0, 0, 3412, 3413, 5, 119, 0, 0, 3413, 3414, 3, 136, 68, 0, 3414, 3415, 5, 265, 0, 0, 3415, 3419, 3, 246, 123, 0, 3416, 3418, 3, 240, 120, 0, 3417, 3416, 1, 0, 0, 0, 3418, 3421, 1, 0, 0, 0, 3419, 3417, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3423, 1, 0, 0, 0, 3421, 3419, 1, 0, 0, 0, 3422, 3424, 3, 242, 121, 0, 3423, 3422, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 5, 88, 0, 0, 3426, 3427, 5, 119, 0, 0, 3427, 3480, 1, 0, 0, 0, 3428, 3429, 5, 135, 0, 0, 3429, 3480, 3, 294, 147, 0, 3430, 3431, 5, 151, 0, 0, 3431, 3480, 3, 294, 147, 0, 3432, 3438, 5, 32, 0, 0, 3433, 3434, 3, 244, 122, 0, 3434, 3435, 5, 325, 0, 0, 3435, 3437, 1, 0, 0, 0, 3436, 3433, 1, 0, 0, 0, 3437, 3440, 1, 0, 0, 0, 3438, 3436, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3442, 1, 0, 0, 0, 3440, 3438, 1, 0, 0, 0, 3441, 3443, 3, 246, 123, 0, 3442, 3441, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3480, 5, 88, 0, 0, 3445, 3446, 3, 294, 147, 0, 3446, 3447, 5, 10, 0, 0, 3447, 3449, 1, 0, 0, 0, 3448, 3445, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3451, 5, 161, 0, 0, 3451, 3452, 3, 246, 123, 0, 3452, 3453, 5, 88, 0, 0, 3453, 3454, 5, 161, 0, 0, 3454, 3480, 1, 0, 0, 0, 3455, 3456, 3, 294, 147, 0, 3456, 3457, 5, 10, 0, 0, 3457, 3459, 1, 0, 0, 0, 3458, 3455, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3461, 5, 302, 0, 0, 3461, 3462, 3, 136, 68, 0, 3462, 3463, 5, 81, 0, 0, 3463, 3464, 3, 246, 123, 0, 3464, 3465, 5, 88, 0, 0, 3465, 3466, 5, 302, 0, 0, 3466, 3480, 1, 0, 0, 0, 3467, 3468, 3, 294, 147, 0, 3468, 3469, 5, 10, 0, 0, 3469, 3471, 1, 0, 0, 0, 3470, 3467, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3473, 5, 224, 0, 0, 3473, 3474, 3, 246, 123, 0, 3474, 3475, 5, 286, 0, 0, 3475, 3476, 3, 136, 68, 0, 3476, 3477, 5, 88, 0, 0, 3477, 3478, 5, 224, 0, 0, 3478, 3480, 1, 0, 0, 0, 3479, 3380, 1, 0, 0, 0, 3479, 3382, 1, 0, 0, 0, 3479, 3387, 1, 0, 0, 0, 3479, 3400, 1, 0, 0, 0, 3479, 3412, 1, 0, 0, 0, 3479, 3428, 1, 0, 0, 0, 3479, 3430, 1, 0, 0, 0, 3479, 3432, 1, 0, 0, 0, 3479, 3448, 1, 0, 0, 0, 3479, 3458, 1, 0, 0, 0, 3479, 3470, 1, 0, 0, 0, 3480, 237, 1, 0, 0, 0, 3481, 3482, 5, 300, 0, 0, 3482, 3483, 3, 136, 68, 0, 3483, 3484, 5, 265, 0, 0, 3484, 3485, 3, 246, 123, 0, 3485, 239, 1, 0, 0, 0, 3486, 3487, 5, 86, 0, 0, 3487, 3488, 3, 136, 68, 0, 3488, 3489, 5, 265, 0, 0, 3489, 3490, 3, 246, 123, 0, 3490, 241, 1, 0, 0, 0, 3491, 3492, 5, 84, 0, 0, 3492, 3493, 3, 246, 123, 0, 3493, 243, 1, 0, 0, 0, 3494, 3495, 5, 69, 0, 0, 3495, 3500, 3, 294, 147, 0, 3496, 3497, 5, 3, 0, 0, 3497, 3499, 3, 294, 147, 0, 3498, 3496, 1, 0, 0, 0, 3499, 3502, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3503, 3506, 3, 184, 92, 0, 3504, 3505, 5, 70, 0, 0, 3505, 3507, 3, 142, 71, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 245, 1, 0, 0, 0, 3508, 3509, 3, 236, 118, 0, 3509, 3510, 5, 325, 0, 0, 3510, 3512, 1, 0, 0, 0, 3511, 3508, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3511, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 247, 1, 0, 0, 0, 3515, 3522, 5, 53, 0, 0, 3516, 3522, 5, 248, 0, 0, 3517, 3522, 5, 73, 0, 0, 3518, 3522, 5, 127, 0, 0, 3519, 3522, 5, 287, 0, 0, 3520, 3522, 3, 294, 147, 0, 3521, 3515, 1, 0, 0, 0, 3521, 3516, 1, 0, 0, 0, 3521, 3517, 1, 0, 0, 0, 3521, 3518, 1, 0, 0, 0, 3521, 3519, 1, 0, 0, 0, 3521, 3520, 1, 0, 0, 0, 3522, 249, 1, 0, 0, 0, 3523, 3527, 5, 260, 0, 0, 3524, 3527, 5, 243, 0, 0, 3525, 3527, 3, 294, 147, 0, 3526, 3523, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3525, 1, 0, 0, 0, 3527, 251, 1, 0, 0, 0, 3528, 3530, 3, 250, 125, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3532, 3, 280, 140, 0, 3532, 253, 1, 0, 0, 0, 3533, 3536, 3, 256, 128, 0, 3534, 3536, 3, 260, 130, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3534, 1, 0, 0, 0, 3536, 255, 1, 0, 0, 0, 3537, 3549, 3, 294, 147, 0, 3538, 3539, 3, 294, 147, 0, 3539, 3540, 5, 4, 0, 0, 3540, 3541, 3, 294, 147, 0, 3541, 3549, 1, 0, 0, 0, 3542, 3543, 3, 294, 147, 0, 3543, 3544, 5, 4, 0, 0, 3544, 3545, 3, 294, 147, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3547, 3, 294, 147, 0, 3547, 3549, 1, 0, 0, 0, 3548, 3537, 1, 0, 0, 0, 3548, 3538, 1, 0, 0, 0, 3548, 3542, 1, 0, 0, 0, 3549, 257, 1, 0, 0, 0, 3550, 3562, 3, 294, 147, 0, 3551, 3552, 3, 294, 147, 0, 3552, 3553, 5, 4, 0, 0, 3553, 3554, 3, 294, 147, 0, 3554, 3562, 1, 0, 0, 0, 3555, 3556, 3, 294, 147, 0, 3556, 3557, 5, 4, 0, 0, 3557, 3558, 3, 294, 147, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3560, 3, 294, 147, 0, 3560, 3562, 1, 0, 0, 0, 3561, 3550, 1, 0, 0, 0, 3561, 3551, 1, 0, 0, 0, 3561, 3555, 1, 0, 0, 0, 3562, 259, 1, 0, 0, 0, 3563, 3575, 3, 294, 147, 0, 3564, 3565, 3, 294, 147, 0, 3565, 3566, 5, 4, 0, 0, 3566, 3567, 3, 294, 147, 0, 3567, 3575, 1, 0, 0, 0, 3568, 3569, 3, 294, 147, 0, 3569, 3570, 5, 4, 0, 0, 3570, 3571, 3, 294, 147, 0, 3571, 3572, 5, 4, 0, 0, 3572, 3573, 3, 294, 147, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3563, 1, 0, 0, 0, 3574, 3564, 1, 0, 0, 0, 3574, 3568, 1, 0, 0, 0, 3575, 261, 1, 0, 0, 0, 3576, 3588, 3, 294, 147, 0, 3577, 3578, 3, 294, 147, 0, 3578, 3579, 5, 4, 0, 0, 3579, 3580, 3, 294, 147, 0, 3580, 3588, 1, 0, 0, 0, 3581, 3582, 3, 294, 147, 0, 3582, 3583, 5, 4, 0, 0, 3583, 3584, 3, 294, 147, 0, 3584, 3585, 5, 4, 0, 0, 3585, 3586, 3, 294, 147, 0, 3586, 3588, 1, 0, 0, 0, 3587, 3576, 1, 0, 0, 0, 3587, 3577, 1, 0, 0, 0, 3587, 3581, 1, 0, 0, 0, 3588, 263, 1, 0, 0, 0, 3589, 3595, 3, 294, 147, 0, 3590, 3591, 3, 294, 147, 0, 3591, 3592, 5, 4, 0, 0, 3592, 3593, 3, 294, 147, 0, 3593, 3595, 1, 0, 0, 0, 3594, 3589, 1, 0, 0, 0, 3594, 3590, 1, 0, 0, 0, 3595, 265, 1, 0, 0, 0, 3596, 3602, 3, 294, 147, 0, 3597, 3598, 3, 294, 147, 0, 3598, 3599, 5, 4, 0, 0, 3599, 3600, 3, 294, 147, 0, 3600, 3602, 1, 0, 0, 0, 3601, 3596, 1, 0, 0, 0, 3601, 3597, 1, 0, 0, 0, 3602, 267, 1, 0, 0, 0, 3603, 3604, 3, 294, 147, 0, 3604, 269, 1, 0, 0, 0, 3605, 3606, 3, 294, 147, 0, 3606, 271, 1, 0, 0, 0, 3607, 3608, 3, 280, 140, 0, 3608, 273, 1, 0, 0, 0, 3609, 3610, 3, 280, 140, 0, 3610, 275, 1, 0, 0, 0, 3611, 3614, 3, 280, 140, 0, 3612, 3614, 4, 138, 14, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3612, 1, 0, 0, 0, 3614, 277, 1, 0, 0, 0, 3615, 3616, 3, 294, 147, 0, 3616, 279, 1, 0, 0, 0, 3617, 3622, 3, 294, 147, 0, 3618, 3619, 5, 4, 0, 0, 3619, 3621, 3, 294, 147, 0, 3620, 3618, 1, 0, 0, 0, 3621, 3624, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 281, 1, 0, 0, 0, 3624, 3622, 1, 0, 0, 0, 3625, 3626, 5, 103, 0, 0, 3626, 3627, 3, 284, 142, 0, 3627, 3628, 5, 28, 0, 0, 3628, 3629, 5, 187, 0, 0, 3629, 3630, 3, 142, 71, 0, 3630, 283, 1, 0, 0, 0, 3631, 3632, 7, 33, 0, 0, 3632, 285, 1, 0, 0, 0, 3633, 3637, 3, 288, 144, 0, 3634, 3637, 5, 64, 0, 0, 3635, 3637, 5, 60, 0, 0, 3636, 3633, 1, 0, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 287, 1, 0, 0, 0, 3638, 3644, 3, 294, 147, 0, 3639, 3640, 5, 289, 0, 0, 3640, 3644, 3, 294, 147, 0, 3641, 3642, 5, 235, 0, 0, 3642, 3644, 3, 294, 147, 0, 3643, 3638, 1, 0, 0, 0, 3643, 3639, 1, 0, 0, 0, 3643, 3641, 1, 0, 0, 0, 3644, 289, 1, 0, 0, 0, 3645, 3650, 3, 294, 147, 0, 3646, 3647, 5, 3, 0, 0, 3647, 3649, 3, 294, 147, 0, 3648, 3646, 1, 0, 0, 0, 3649, 3652, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 291, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3653, 3661, 5, 53, 0, 0, 3654, 3661, 5, 248, 0, 0, 3655, 3661, 5, 73, 0, 0, 3656, 3661, 5, 127, 0, 0, 3657, 3661, 5, 287, 0, 0, 3658, 3661, 5, 93, 0, 0, 3659, 3661, 3, 294, 147, 0, 3660, 3653, 1, 0, 0, 0, 3660, 3654, 1, 0, 0, 0, 3660, 3655, 1, 0, 0, 0, 3660, 3656, 1, 0, 0, 0, 3660, 3657, 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3660, 3659, 1, 0, 0, 0, 3661, 293, 1, 0, 0, 0, 3662, 3668, 5, 332, 0, 0, 3663, 3668, 5, 334, 0, 0, 3664, 3668, 3, 300, 150, 0, 3665, 3668, 5, 335, 0, 0, 3666, 3668, 5, 333, 0, 0, 3667, 3662, 1, 0, 0, 0, 3667, 3663, 1, 0, 0, 0, 3667, 3664, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3667, 3666, 1, 0, 0, 0, 3668, 295, 1, 0, 0, 0, 3669, 3671, 5, 319, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3682, 5, 330, 0, 0, 3673, 3675, 5, 319, 0, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3682, 5, 331, 0, 0, 3677, 3679, 5, 319, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3682, 5, 329, 0, 0, 3681, 3670, 1, 0, 0, 0, 3681, 3674, 1, 0, 0, 0, 3681, 3678, 1, 0, 0, 0, 3682, 297, 1, 0, 0, 0, 3683, 3686, 3, 294, 147, 0, 3684, 3686, 3, 168, 84, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3684, 1, 0, 0, 0, 3686, 299, 1, 0, 0, 0, 3687, 3688, 7, 34, 0, 0, 3688, 301, 1, 0, 0, 0, 480, 305, 314, 318, 322, 326, 330, 343, 350, 354, 358, 364, 368, 375, 380, 384, 390, 394, 413, 419, 423, 427, 431, 439, 443, 446, 451, 457, 466, 472, 476, 482, 489, 498, 510, 519, 528, 534, 545, 553, 561, 568, 578, 585, 593, 608, 643, 646, 649, 653, 659, 664, 671, 677, 681, 685, 693, 699, 703, 707, 721, 729, 748, 773, 776, 783, 790, 799, 803, 810, 818, 827, 833, 838, 842, 850, 855, 864, 870, 877, 886, 892, 896, 902, 909, 914, 927, 932, 944, 948, 954, 963, 968, 974, 1002, 1008, 1010, 1016, 1022, 1024, 1032, 1034, 1044, 1046, 1061, 1066, 1073, 1083, 1089, 1091, 1099, 1101, 1126, 1129, 1133, 1137, 1155, 1158, 1169, 1172, 1188, 1198, 1203, 1209, 1212, 1221, 1233, 1236, 1246, 1250, 1256, 1263, 1268, 1274, 1278, 1282, 1288, 1299, 1308, 1318, 1321, 1326, 1328, 1335, 1341, 1343, 1347, 1357, 1363, 1366, 1368, 1380, 1387, 1391, 1394, 1398, 1402, 1409, 1418, 1421, 1425, 1430, 1434, 1442, 1445, 1448, 1455, 1466, 1469, 1479, 1482, 1493, 1498, 1506, 1509, 1513, 1517, 1526, 1535, 1538, 1547, 1550, 1553, 1557, 1568, 1571, 1574, 1581, 1584, 1603, 1607, 1611, 1615, 1619, 1623, 1625, 1636, 1641, 1650, 1659, 1662, 1668, 1680, 1683, 1692, 1695, 1703, 1706, 1709, 1714, 1717, 1729, 1732, 1740, 1745, 1749, 1751, 1753, 1768, 1770, 1781, 1802, 1812, 1823, 1827, 1829, 1837, 1848, 1859, 1866, 1879, 1885, 1911, 1926, 1931, 1935, 1945, 1951, 1957, 1965, 1970, 1977, 1979, 1985, 1991, 1995, 2000, 2009, 2014, 2028, 2038, 2041, 2050, 2055, 2060, 2062, 2071, 2074, 2082, 2085, 2092, 2097, 2108, 2111, 2115, 2117, 2125, 2135, 2141, 2143, 2150, 2154, 2156, 2163, 2167, 2169, 2171, 2180, 2191, 2195, 2205, 2215, 2219, 2227, 2229, 2242, 2250, 2259, 2265, 2273, 2279, 2283, 2288, 2293, 2299, 2313, 2315, 2345, 2356, 2364, 2369, 2374, 2387, 2393, 2396, 2403, 2408, 2411, 2414, 2419, 2426, 2429, 2438, 2441, 2445, 2448, 2451, 2466, 2469, 2488, 2492, 2500, 2504, 2529, 2532, 2541, 2547, 2553, 2559, 2568, 2571, 2574, 2593, 2602, 2624, 2627, 2637, 2646, 2652, 2658, 2669, 2671, 2676, 2683, 2685, 2691, 2697, 2708, 2717, 2722, 2727, 2729, 2731, 2737, 2739, 2749, 2758, 2760, 2766, 2768, 2771, 2781, 2783, 2791, 2799, 2802, 2807, 2812, 2824, 2828, 2832, 2835, 2837, 2845, 2848, 2858, 2866, 2872, 2874, 2882, 2892, 2898, 2912, 2921, 2928, 2933, 2940, 2950, 2955, 2962, 2988, 2993, 2995, 3002, 3006, 3013, 3017, 3034, 3049, 3056, 3065, 3075, 3080, 3089, 3094, 3102, 3110, 3113, 3119, 3122, 3129, 3137, 3140, 3148, 3151, 3177, 3188, 3193, 3200, 3202, 3215, 3230, 3234, 3238, 3242, 3248, 3252, 3256, 3260, 3262, 3272, 3279, 3288, 3295, 3302, 3309, 3318, 3330, 3333, 3344, 3347, 3352, 3362, 3378, 3392, 3395, 3404, 3407, 3419, 3423, 3438, 3442, 3448, 3458, 3470, 3479, 3500, 3506, 3513, 3521, 3526, 3529, 3535, 3548, 3561, 3574, 3587, 3594, 3601, 3613, 3622, 3636, 3643, 3650, 3660, 3667, 3670, 3674, 3678, 3681, 3685] \ No newline at end of file +[4, 1, 340, 3694, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 1, 0, 5, 0, 308, 8, 0, 10, 0, 12, 0, 311, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 319, 8, 2, 1, 3, 1, 3, 3, 3, 323, 8, 3, 1, 4, 1, 4, 3, 4, 327, 8, 4, 1, 5, 1, 5, 3, 5, 331, 8, 5, 1, 6, 1, 6, 3, 6, 335, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 348, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 355, 8, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 3, 8, 363, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 3, 8, 373, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 380, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 395, 8, 8, 1, 8, 1, 8, 3, 8, 399, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 418, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 424, 8, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 3, 8, 436, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 3, 8, 451, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 456, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 462, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 469, 8, 8, 10, 8, 12, 8, 472, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 477, 8, 8, 1, 8, 1, 8, 3, 8, 481, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 487, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 494, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 502, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 514, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 523, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 532, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 538, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 549, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 557, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 565, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 572, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 582, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 589, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 597, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 612, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 645, 8, 8, 10, 8, 12, 8, 648, 9, 8, 3, 8, 650, 8, 8, 1, 8, 3, 8, 653, 8, 8, 1, 8, 3, 8, 656, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 662, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 667, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 674, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 680, 8, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 3, 8, 688, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 696, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 702, 8, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 3, 8, 710, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 724, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 732, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 751, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 774, 8, 8, 10, 8, 12, 8, 777, 9, 8, 3, 8, 779, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 786, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 793, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 802, 8, 8, 1, 8, 1, 8, 3, 8, 806, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 813, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 819, 8, 8, 10, 8, 12, 8, 822, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 828, 8, 8, 10, 8, 12, 8, 831, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 836, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 841, 8, 8, 1, 8, 1, 8, 3, 8, 845, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 851, 8, 8, 10, 8, 12, 8, 854, 9, 8, 1, 8, 1, 8, 3, 8, 858, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 873, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 878, 8, 8, 10, 8, 12, 8, 881, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 887, 8, 8, 10, 8, 12, 8, 890, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 895, 8, 8, 1, 8, 1, 8, 3, 8, 899, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 905, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 910, 8, 8, 10, 8, 12, 8, 913, 9, 8, 1, 8, 1, 8, 3, 8, 917, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 928, 8, 8, 10, 8, 12, 8, 931, 9, 8, 1, 8, 1, 8, 3, 8, 935, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 947, 8, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 957, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 964, 8, 8, 10, 8, 12, 8, 967, 9, 8, 1, 8, 1, 8, 3, 8, 971, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 977, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1005, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1011, 8, 8, 3, 8, 1013, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1019, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1025, 8, 8, 3, 8, 1027, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1035, 8, 8, 3, 8, 1037, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1047, 8, 8, 3, 8, 1049, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1064, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1069, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1076, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1086, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1092, 8, 8, 3, 8, 1094, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1102, 8, 8, 3, 8, 1104, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1127, 8, 8, 10, 8, 12, 8, 1130, 9, 8, 3, 8, 1132, 8, 8, 1, 8, 1, 8, 3, 8, 1136, 8, 8, 1, 8, 1, 8, 3, 8, 1140, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1156, 8, 8, 10, 8, 12, 8, 1159, 9, 8, 3, 8, 1161, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1170, 8, 8, 10, 8, 12, 8, 1173, 9, 8, 3, 8, 1175, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1191, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1199, 8, 8, 10, 8, 12, 8, 1202, 9, 8, 1, 8, 3, 8, 1205, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1211, 8, 8, 1, 8, 3, 8, 1214, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1221, 8, 8, 11, 8, 12, 8, 1222, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1235, 8, 8, 1, 9, 3, 9, 1238, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1246, 8, 10, 10, 10, 12, 10, 1249, 9, 10, 1, 11, 3, 11, 1252, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1258, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1263, 8, 12, 10, 12, 12, 12, 1266, 9, 12, 1, 13, 1, 13, 3, 13, 1270, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1276, 8, 14, 1, 14, 1, 14, 3, 14, 1280, 8, 14, 1, 14, 1, 14, 3, 14, 1284, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1290, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1299, 8, 17, 10, 17, 12, 17, 1302, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1310, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1318, 8, 20, 10, 20, 12, 20, 1321, 9, 20, 3, 20, 1323, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1328, 8, 20, 3, 20, 1330, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1337, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1343, 8, 20, 3, 20, 1345, 8, 20, 1, 21, 1, 21, 3, 21, 1349, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1359, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1365, 8, 23, 1, 23, 5, 23, 1368, 8, 23, 10, 23, 12, 23, 1371, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1380, 8, 24, 10, 24, 12, 24, 1383, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1389, 8, 24, 1, 25, 1, 25, 3, 25, 1393, 8, 25, 1, 25, 3, 25, 1396, 8, 25, 1, 25, 1, 25, 3, 25, 1400, 8, 25, 1, 26, 1, 26, 3, 26, 1404, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1409, 8, 26, 10, 26, 12, 26, 1412, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1418, 8, 26, 10, 26, 12, 26, 1421, 9, 26, 3, 26, 1423, 8, 26, 1, 26, 3, 26, 1426, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1431, 8, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1441, 8, 26, 10, 26, 12, 26, 1444, 9, 26, 3, 26, 1446, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 1452, 8, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1457, 8, 28, 10, 28, 12, 28, 1460, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1468, 8, 29, 10, 29, 12, 29, 1471, 9, 29, 3, 29, 1473, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1481, 8, 29, 10, 29, 12, 29, 1484, 9, 29, 3, 29, 1486, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1495, 8, 29, 10, 29, 12, 29, 1498, 9, 29, 1, 29, 1, 29, 3, 29, 1502, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1508, 8, 30, 10, 30, 12, 30, 1511, 9, 30, 3, 30, 1513, 8, 30, 1, 30, 1, 30, 3, 30, 1517, 8, 30, 1, 31, 1, 31, 3, 31, 1521, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 3, 33, 1530, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1537, 8, 33, 10, 33, 12, 33, 1540, 9, 33, 3, 33, 1542, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1549, 8, 33, 10, 33, 12, 33, 1552, 9, 33, 3, 33, 1554, 8, 33, 1, 33, 3, 33, 1557, 8, 33, 1, 34, 1, 34, 3, 34, 1561, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1572, 8, 36, 1, 36, 3, 36, 1575, 8, 36, 1, 36, 3, 36, 1578, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1585, 8, 36, 1, 36, 3, 36, 1588, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1607, 8, 37, 5, 37, 1609, 8, 37, 10, 37, 12, 37, 1612, 9, 37, 1, 38, 3, 38, 1615, 8, 38, 1, 38, 1, 38, 3, 38, 1619, 8, 38, 1, 38, 1, 38, 3, 38, 1623, 8, 38, 1, 38, 1, 38, 3, 38, 1627, 8, 38, 3, 38, 1629, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1638, 8, 39, 10, 39, 12, 39, 1641, 9, 39, 1, 39, 1, 39, 3, 39, 1645, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1654, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 3, 43, 1663, 8, 43, 1, 43, 3, 43, 1666, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1672, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1682, 8, 45, 10, 45, 12, 45, 1685, 9, 45, 3, 45, 1687, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1694, 8, 45, 10, 45, 12, 45, 1697, 9, 45, 3, 45, 1699, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1705, 8, 45, 10, 45, 12, 45, 1708, 9, 45, 3, 45, 1710, 8, 45, 1, 45, 3, 45, 1713, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1718, 8, 45, 1, 45, 3, 45, 1721, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1731, 8, 45, 10, 45, 12, 45, 1734, 9, 45, 3, 45, 1736, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1742, 8, 45, 10, 45, 12, 45, 1745, 9, 45, 1, 45, 1, 45, 3, 45, 1749, 8, 45, 1, 45, 1, 45, 3, 45, 1753, 8, 45, 3, 45, 1755, 8, 45, 3, 45, 1757, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1772, 8, 47, 3, 47, 1774, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1785, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1806, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1814, 8, 50, 10, 50, 12, 50, 1817, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 1827, 8, 52, 1, 52, 1, 52, 3, 52, 1831, 8, 52, 3, 52, 1833, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1839, 8, 53, 10, 53, 12, 53, 1842, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1850, 8, 54, 10, 54, 12, 54, 1853, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1861, 8, 55, 10, 55, 12, 55, 1864, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 3, 56, 1870, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1881, 8, 56, 10, 56, 12, 56, 1884, 9, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1889, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1913, 8, 56, 10, 56, 12, 56, 1916, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1930, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1935, 8, 56, 1, 56, 1, 56, 3, 56, 1939, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1949, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1955, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1961, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1969, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1974, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1981, 8, 57, 3, 57, 1983, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1989, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1995, 8, 57, 1, 57, 1, 57, 3, 57, 1999, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2004, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2011, 8, 57, 10, 57, 12, 57, 2014, 9, 57, 1, 57, 1, 57, 3, 57, 2018, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2030, 8, 58, 10, 58, 12, 58, 2033, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2040, 8, 58, 10, 58, 12, 58, 2043, 9, 58, 3, 58, 2045, 8, 58, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2054, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 2059, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2064, 8, 61, 3, 61, 2066, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2073, 8, 62, 10, 62, 12, 62, 2076, 9, 62, 3, 62, 2078, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2084, 8, 62, 10, 62, 12, 62, 2087, 9, 62, 3, 62, 2089, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2096, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2101, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2110, 8, 64, 10, 64, 12, 64, 2113, 9, 64, 3, 64, 2115, 8, 64, 1, 64, 1, 64, 3, 64, 2119, 8, 64, 3, 64, 2121, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2129, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2137, 8, 64, 10, 64, 12, 64, 2140, 9, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2145, 8, 64, 3, 64, 2147, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2154, 8, 65, 1, 65, 1, 65, 3, 65, 2158, 8, 65, 3, 65, 2160, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2167, 8, 65, 1, 65, 1, 65, 3, 65, 2171, 8, 65, 3, 65, 2173, 8, 65, 3, 65, 2175, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2182, 8, 66, 10, 66, 12, 66, 2185, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2195, 8, 66, 1, 67, 1, 67, 3, 67, 2199, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2207, 8, 68, 10, 68, 12, 68, 2210, 9, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2219, 8, 70, 1, 70, 1, 70, 3, 70, 2223, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2231, 8, 70, 10, 70, 12, 70, 2234, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2246, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2254, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2261, 8, 71, 10, 71, 12, 71, 2264, 9, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2269, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2277, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2283, 8, 71, 1, 71, 1, 71, 3, 71, 2287, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2292, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2297, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2303, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2317, 8, 72, 10, 72, 12, 72, 2320, 9, 72, 1, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 4, 73, 2347, 8, 73, 11, 73, 12, 73, 2348, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2358, 8, 73, 10, 73, 12, 73, 2361, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2368, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2373, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2378, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2389, 8, 73, 10, 73, 12, 73, 2392, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2397, 8, 73, 1, 73, 3, 73, 2400, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2407, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2412, 8, 73, 1, 73, 3, 73, 2415, 8, 73, 1, 73, 3, 73, 2418, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2423, 8, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2428, 8, 73, 10, 73, 12, 73, 2431, 9, 73, 3, 73, 2433, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2440, 8, 73, 10, 73, 12, 73, 2443, 9, 73, 3, 73, 2445, 8, 73, 1, 73, 1, 73, 3, 73, 2449, 8, 73, 1, 73, 3, 73, 2452, 8, 73, 1, 73, 3, 73, 2455, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2468, 8, 73, 10, 73, 12, 73, 2471, 9, 73, 3, 73, 2473, 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, 1, 73, 1, 73, 1, 73, 4, 73, 2490, 8, 73, 11, 73, 12, 73, 2491, 1, 73, 1, 73, 3, 73, 2496, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 4, 73, 2502, 8, 73, 11, 73, 12, 73, 2503, 1, 73, 1, 73, 3, 73, 2508, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2531, 8, 73, 10, 73, 12, 73, 2534, 9, 73, 3, 73, 2536, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2545, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2551, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2557, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2563, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2572, 8, 73, 1, 73, 3, 73, 2575, 8, 73, 1, 73, 3, 73, 2578, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2597, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2606, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2626, 8, 73, 10, 73, 12, 73, 2629, 9, 73, 3, 73, 2631, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2641, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2650, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2656, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2662, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2673, 8, 73, 3, 73, 2675, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2680, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2687, 8, 73, 3, 73, 2689, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2695, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2701, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2710, 8, 73, 10, 73, 12, 73, 2713, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2721, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2726, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2731, 8, 73, 3, 73, 2733, 8, 73, 3, 73, 2735, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2741, 8, 73, 3, 73, 2743, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2751, 8, 73, 10, 73, 12, 73, 2754, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2762, 8, 73, 3, 73, 2764, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2770, 8, 73, 3, 73, 2772, 8, 73, 1, 73, 3, 73, 2775, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2785, 8, 73, 10, 73, 12, 73, 2788, 9, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2795, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2801, 8, 74, 10, 74, 12, 74, 2804, 9, 74, 3, 74, 2806, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2811, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2816, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2828, 8, 79, 1, 80, 1, 80, 3, 80, 2832, 8, 80, 1, 80, 1, 80, 3, 80, 2836, 8, 80, 1, 80, 3, 80, 2839, 8, 80, 3, 80, 2841, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2849, 8, 81, 1, 82, 3, 82, 2852, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2862, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2870, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2876, 8, 85, 3, 85, 2878, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2886, 8, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2896, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2902, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 2914, 8, 93, 10, 93, 12, 93, 2917, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2925, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2932, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2937, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2944, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2954, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2959, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2966, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 2990, 8, 93, 10, 93, 12, 93, 2993, 9, 93, 1, 93, 1, 93, 3, 93, 2997, 8, 93, 3, 93, 2999, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3006, 8, 93, 5, 93, 3008, 8, 93, 10, 93, 12, 93, 3011, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3017, 8, 94, 1, 95, 1, 95, 3, 95, 3021, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3037, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3050, 8, 98, 10, 98, 12, 98, 3053, 9, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3059, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3068, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3076, 8, 98, 10, 98, 12, 98, 3079, 9, 98, 1, 98, 1, 98, 3, 98, 3083, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3090, 8, 98, 10, 98, 12, 98, 3093, 9, 98, 1, 98, 1, 98, 3, 98, 3097, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3105, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3111, 8, 100, 10, 100, 12, 100, 3114, 9, 100, 3, 100, 3116, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3122, 8, 100, 1, 100, 3, 100, 3125, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3132, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3138, 8, 100, 10, 100, 12, 100, 3141, 9, 100, 3, 100, 3143, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3149, 8, 100, 10, 100, 12, 100, 3152, 9, 100, 3, 100, 3154, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3180, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3191, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3196, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3203, 8, 103, 10, 103, 12, 103, 3206, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 3216, 8, 104, 10, 104, 12, 104, 3219, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3233, 8, 104, 1, 105, 1, 105, 3, 105, 3237, 8, 105, 1, 105, 1, 105, 3, 105, 3241, 8, 105, 1, 105, 1, 105, 3, 105, 3245, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3251, 8, 105, 1, 105, 1, 105, 3, 105, 3255, 8, 105, 1, 105, 1, 105, 3, 105, 3259, 8, 105, 1, 105, 1, 105, 3, 105, 3263, 8, 105, 3, 105, 3265, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3275, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3282, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3291, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3298, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3305, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3310, 8, 112, 10, 112, 12, 112, 3313, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3319, 8, 113, 10, 113, 12, 113, 3322, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3331, 8, 114, 10, 114, 12, 114, 3334, 9, 114, 3, 114, 3336, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3345, 8, 115, 10, 115, 12, 115, 3348, 9, 115, 3, 115, 3350, 8, 115, 1, 115, 1, 115, 1, 116, 3, 116, 3355, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 3, 118, 3365, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3381, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 4, 119, 3393, 8, 119, 11, 119, 12, 119, 3394, 1, 119, 3, 119, 3398, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 4, 119, 3405, 8, 119, 11, 119, 12, 119, 3406, 1, 119, 3, 119, 3410, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3420, 8, 119, 10, 119, 12, 119, 3423, 9, 119, 1, 119, 3, 119, 3426, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3439, 8, 119, 10, 119, 12, 119, 3442, 9, 119, 1, 119, 3, 119, 3445, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3451, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3461, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3473, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3482, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3501, 8, 123, 10, 123, 12, 123, 3504, 9, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3509, 8, 123, 1, 124, 1, 124, 1, 124, 4, 124, 3514, 8, 124, 11, 124, 12, 124, 3515, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3524, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 3529, 8, 126, 1, 127, 3, 127, 3532, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3538, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3551, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3564, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3577, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3590, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3597, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3604, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 3616, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 5, 142, 3625, 8, 142, 10, 142, 12, 142, 3628, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 3, 145, 3641, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3648, 8, 146, 1, 147, 1, 147, 1, 147, 5, 147, 3653, 8, 147, 10, 147, 12, 147, 3656, 9, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3665, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3672, 8, 149, 1, 150, 3, 150, 3675, 8, 150, 1, 150, 1, 150, 3, 150, 3679, 8, 150, 1, 150, 1, 150, 3, 150, 3683, 8, 150, 1, 150, 3, 150, 3686, 8, 150, 1, 151, 1, 151, 3, 151, 3690, 8, 151, 1, 152, 1, 152, 1, 152, 0, 7, 46, 74, 140, 144, 146, 186, 206, 153, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 0, 35, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4247, 0, 309, 1, 0, 0, 0, 2, 314, 1, 0, 0, 0, 4, 316, 1, 0, 0, 0, 6, 320, 1, 0, 0, 0, 8, 324, 1, 0, 0, 0, 10, 328, 1, 0, 0, 0, 12, 332, 1, 0, 0, 0, 14, 336, 1, 0, 0, 0, 16, 1234, 1, 0, 0, 0, 18, 1237, 1, 0, 0, 0, 20, 1241, 1, 0, 0, 0, 22, 1251, 1, 0, 0, 0, 24, 1255, 1, 0, 0, 0, 26, 1269, 1, 0, 0, 0, 28, 1271, 1, 0, 0, 0, 30, 1285, 1, 0, 0, 0, 32, 1291, 1, 0, 0, 0, 34, 1295, 1, 0, 0, 0, 36, 1303, 1, 0, 0, 0, 38, 1309, 1, 0, 0, 0, 40, 1311, 1, 0, 0, 0, 42, 1348, 1, 0, 0, 0, 44, 1350, 1, 0, 0, 0, 46, 1352, 1, 0, 0, 0, 48, 1388, 1, 0, 0, 0, 50, 1392, 1, 0, 0, 0, 52, 1401, 1, 0, 0, 0, 54, 1447, 1, 0, 0, 0, 56, 1451, 1, 0, 0, 0, 58, 1501, 1, 0, 0, 0, 60, 1516, 1, 0, 0, 0, 62, 1520, 1, 0, 0, 0, 64, 1522, 1, 0, 0, 0, 66, 1529, 1, 0, 0, 0, 68, 1558, 1, 0, 0, 0, 70, 1567, 1, 0, 0, 0, 72, 1587, 1, 0, 0, 0, 74, 1589, 1, 0, 0, 0, 76, 1628, 1, 0, 0, 0, 78, 1644, 1, 0, 0, 0, 80, 1646, 1, 0, 0, 0, 82, 1655, 1, 0, 0, 0, 84, 1657, 1, 0, 0, 0, 86, 1665, 1, 0, 0, 0, 88, 1671, 1, 0, 0, 0, 90, 1673, 1, 0, 0, 0, 92, 1758, 1, 0, 0, 0, 94, 1773, 1, 0, 0, 0, 96, 1784, 1, 0, 0, 0, 98, 1805, 1, 0, 0, 0, 100, 1807, 1, 0, 0, 0, 102, 1820, 1, 0, 0, 0, 104, 1824, 1, 0, 0, 0, 106, 1834, 1, 0, 0, 0, 108, 1845, 1, 0, 0, 0, 110, 1856, 1, 0, 0, 0, 112, 1938, 1, 0, 0, 0, 114, 2017, 1, 0, 0, 0, 116, 2044, 1, 0, 0, 0, 118, 2046, 1, 0, 0, 0, 120, 2053, 1, 0, 0, 0, 122, 2065, 1, 0, 0, 0, 124, 2067, 1, 0, 0, 0, 126, 2095, 1, 0, 0, 0, 128, 2102, 1, 0, 0, 0, 130, 2174, 1, 0, 0, 0, 132, 2194, 1, 0, 0, 0, 134, 2196, 1, 0, 0, 0, 136, 2200, 1, 0, 0, 0, 138, 2213, 1, 0, 0, 0, 140, 2222, 1, 0, 0, 0, 142, 2296, 1, 0, 0, 0, 144, 2302, 1, 0, 0, 0, 146, 2774, 1, 0, 0, 0, 148, 2789, 1, 0, 0, 0, 150, 2807, 1, 0, 0, 0, 152, 2812, 1, 0, 0, 0, 154, 2817, 1, 0, 0, 0, 156, 2821, 1, 0, 0, 0, 158, 2827, 1, 0, 0, 0, 160, 2840, 1, 0, 0, 0, 162, 2848, 1, 0, 0, 0, 164, 2861, 1, 0, 0, 0, 166, 2863, 1, 0, 0, 0, 168, 2869, 1, 0, 0, 0, 170, 2877, 1, 0, 0, 0, 172, 2885, 1, 0, 0, 0, 174, 2887, 1, 0, 0, 0, 176, 2889, 1, 0, 0, 0, 178, 2891, 1, 0, 0, 0, 180, 2893, 1, 0, 0, 0, 182, 2903, 1, 0, 0, 0, 184, 2905, 1, 0, 0, 0, 186, 2998, 1, 0, 0, 0, 188, 3016, 1, 0, 0, 0, 190, 3020, 1, 0, 0, 0, 192, 3022, 1, 0, 0, 0, 194, 3027, 1, 0, 0, 0, 196, 3096, 1, 0, 0, 0, 198, 3098, 1, 0, 0, 0, 200, 3115, 1, 0, 0, 0, 202, 3179, 1, 0, 0, 0, 204, 3190, 1, 0, 0, 0, 206, 3192, 1, 0, 0, 0, 208, 3232, 1, 0, 0, 0, 210, 3264, 1, 0, 0, 0, 212, 3266, 1, 0, 0, 0, 214, 3274, 1, 0, 0, 0, 216, 3281, 1, 0, 0, 0, 218, 3290, 1, 0, 0, 0, 220, 3297, 1, 0, 0, 0, 222, 3304, 1, 0, 0, 0, 224, 3306, 1, 0, 0, 0, 226, 3314, 1, 0, 0, 0, 228, 3325, 1, 0, 0, 0, 230, 3339, 1, 0, 0, 0, 232, 3354, 1, 0, 0, 0, 234, 3358, 1, 0, 0, 0, 236, 3380, 1, 0, 0, 0, 238, 3481, 1, 0, 0, 0, 240, 3483, 1, 0, 0, 0, 242, 3488, 1, 0, 0, 0, 244, 3493, 1, 0, 0, 0, 246, 3496, 1, 0, 0, 0, 248, 3513, 1, 0, 0, 0, 250, 3523, 1, 0, 0, 0, 252, 3528, 1, 0, 0, 0, 254, 3531, 1, 0, 0, 0, 256, 3537, 1, 0, 0, 0, 258, 3550, 1, 0, 0, 0, 260, 3563, 1, 0, 0, 0, 262, 3576, 1, 0, 0, 0, 264, 3589, 1, 0, 0, 0, 266, 3596, 1, 0, 0, 0, 268, 3603, 1, 0, 0, 0, 270, 3605, 1, 0, 0, 0, 272, 3607, 1, 0, 0, 0, 274, 3609, 1, 0, 0, 0, 276, 3611, 1, 0, 0, 0, 278, 3615, 1, 0, 0, 0, 280, 3617, 1, 0, 0, 0, 282, 3619, 1, 0, 0, 0, 284, 3621, 1, 0, 0, 0, 286, 3629, 1, 0, 0, 0, 288, 3635, 1, 0, 0, 0, 290, 3640, 1, 0, 0, 0, 292, 3647, 1, 0, 0, 0, 294, 3649, 1, 0, 0, 0, 296, 3664, 1, 0, 0, 0, 298, 3671, 1, 0, 0, 0, 300, 3685, 1, 0, 0, 0, 302, 3689, 1, 0, 0, 0, 304, 3691, 1, 0, 0, 0, 306, 308, 3, 2, 1, 0, 307, 306, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 312, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 5, 0, 0, 1, 313, 1, 1, 0, 0, 0, 314, 315, 3, 4, 2, 0, 315, 3, 1, 0, 0, 0, 316, 318, 3, 16, 8, 0, 317, 319, 5, 325, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 5, 1, 0, 0, 0, 320, 322, 3, 138, 69, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 7, 1, 0, 0, 0, 324, 326, 3, 224, 112, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 9, 1, 0, 0, 0, 328, 330, 3, 186, 93, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 11, 1, 0, 0, 0, 332, 334, 3, 206, 103, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 13, 1, 0, 0, 0, 336, 337, 3, 226, 113, 0, 337, 338, 5, 0, 0, 1, 338, 15, 1, 0, 0, 0, 339, 1235, 3, 18, 9, 0, 340, 341, 5, 288, 0, 0, 341, 1235, 3, 266, 133, 0, 342, 343, 5, 53, 0, 0, 343, 347, 5, 42, 0, 0, 344, 345, 5, 119, 0, 0, 345, 346, 5, 182, 0, 0, 346, 348, 5, 94, 0, 0, 347, 344, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 350, 3, 272, 136, 0, 350, 351, 5, 290, 0, 0, 351, 354, 3, 298, 149, 0, 352, 353, 5, 46, 0, 0, 353, 355, 3, 170, 85, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 31, 0, 0, 357, 359, 3, 292, 146, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 304, 0, 0, 361, 363, 3, 32, 16, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 1235, 1, 0, 0, 0, 364, 365, 5, 83, 0, 0, 365, 368, 5, 42, 0, 0, 366, 367, 5, 119, 0, 0, 367, 369, 5, 94, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 3, 270, 135, 0, 371, 373, 7, 0, 0, 0, 372, 371, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 1235, 1, 0, 0, 0, 374, 375, 5, 53, 0, 0, 375, 379, 5, 243, 0, 0, 376, 377, 5, 119, 0, 0, 377, 378, 5, 182, 0, 0, 378, 380, 5, 94, 0, 0, 379, 376, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 3, 268, 134, 0, 382, 383, 5, 31, 0, 0, 383, 385, 3, 292, 146, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 1, 0, 0, 0, 386, 387, 5, 304, 0, 0, 387, 389, 3, 32, 16, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 1235, 1, 0, 0, 0, 390, 391, 5, 83, 0, 0, 391, 394, 5, 243, 0, 0, 392, 393, 5, 119, 0, 0, 393, 395, 5, 94, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 3, 266, 133, 0, 397, 399, 7, 0, 0, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 1235, 1, 0, 0, 0, 400, 401, 5, 23, 0, 0, 401, 402, 5, 243, 0, 0, 402, 403, 3, 266, 133, 0, 403, 404, 5, 223, 0, 0, 404, 405, 5, 269, 0, 0, 405, 406, 3, 268, 134, 0, 406, 1235, 1, 0, 0, 0, 407, 408, 5, 23, 0, 0, 408, 409, 5, 243, 0, 0, 409, 410, 3, 266, 133, 0, 410, 411, 5, 251, 0, 0, 411, 412, 5, 31, 0, 0, 412, 413, 3, 292, 146, 0, 413, 1235, 1, 0, 0, 0, 414, 417, 5, 53, 0, 0, 415, 416, 5, 194, 0, 0, 416, 418, 5, 226, 0, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 423, 5, 260, 0, 0, 420, 421, 5, 119, 0, 0, 421, 422, 5, 182, 0, 0, 422, 424, 5, 94, 0, 0, 423, 420, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 3, 260, 130, 0, 426, 428, 3, 106, 53, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 430, 5, 46, 0, 0, 430, 432, 3, 170, 85, 0, 431, 429, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 434, 5, 304, 0, 0, 434, 436, 3, 32, 16, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 443, 5, 28, 0, 0, 438, 444, 3, 18, 9, 0, 439, 440, 5, 1, 0, 0, 440, 441, 3, 18, 9, 0, 441, 442, 5, 2, 0, 0, 442, 444, 1, 0, 0, 0, 443, 438, 1, 0, 0, 0, 443, 439, 1, 0, 0, 0, 444, 450, 1, 0, 0, 0, 445, 447, 5, 304, 0, 0, 446, 448, 5, 179, 0, 0, 447, 446, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 451, 5, 65, 0, 0, 450, 445, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 1235, 1, 0, 0, 0, 452, 455, 5, 53, 0, 0, 453, 454, 5, 194, 0, 0, 454, 456, 5, 226, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 461, 5, 260, 0, 0, 458, 459, 5, 119, 0, 0, 459, 460, 5, 182, 0, 0, 460, 462, 5, 94, 0, 0, 461, 458, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 3, 260, 130, 0, 464, 465, 5, 1, 0, 0, 465, 470, 3, 26, 13, 0, 466, 467, 5, 3, 0, 0, 467, 469, 3, 26, 13, 0, 468, 466, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 473, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 476, 5, 2, 0, 0, 474, 475, 5, 46, 0, 0, 475, 477, 3, 170, 85, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 479, 5, 304, 0, 0, 479, 481, 3, 32, 16, 0, 480, 478, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 1235, 1, 0, 0, 0, 482, 483, 5, 83, 0, 0, 483, 486, 5, 260, 0, 0, 484, 485, 5, 119, 0, 0, 485, 487, 5, 94, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 1235, 3, 258, 129, 0, 489, 490, 5, 127, 0, 0, 490, 491, 5, 130, 0, 0, 491, 493, 3, 258, 129, 0, 492, 494, 3, 108, 54, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 3, 18, 9, 0, 496, 1235, 1, 0, 0, 0, 497, 498, 5, 73, 0, 0, 498, 499, 5, 105, 0, 0, 499, 501, 3, 258, 129, 0, 500, 502, 3, 54, 27, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 1235, 1, 0, 0, 0, 503, 504, 5, 274, 0, 0, 504, 505, 5, 260, 0, 0, 505, 1235, 3, 258, 129, 0, 506, 507, 5, 46, 0, 0, 507, 508, 5, 190, 0, 0, 508, 509, 5, 260, 0, 0, 509, 510, 3, 258, 129, 0, 510, 513, 5, 133, 0, 0, 511, 514, 3, 170, 85, 0, 512, 514, 5, 183, 0, 0, 513, 511, 1, 0, 0, 0, 513, 512, 1, 0, 0, 0, 514, 1235, 1, 0, 0, 0, 515, 516, 5, 46, 0, 0, 516, 517, 5, 190, 0, 0, 517, 518, 5, 299, 0, 0, 518, 519, 3, 262, 131, 0, 519, 522, 5, 133, 0, 0, 520, 523, 3, 170, 85, 0, 521, 523, 5, 183, 0, 0, 522, 520, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 1235, 1, 0, 0, 0, 524, 525, 5, 46, 0, 0, 525, 526, 5, 190, 0, 0, 526, 527, 5, 44, 0, 0, 527, 528, 3, 278, 139, 0, 528, 531, 5, 133, 0, 0, 529, 532, 3, 170, 85, 0, 530, 532, 5, 183, 0, 0, 531, 529, 1, 0, 0, 0, 531, 530, 1, 0, 0, 0, 532, 1235, 1, 0, 0, 0, 533, 534, 5, 23, 0, 0, 534, 537, 5, 260, 0, 0, 535, 536, 5, 119, 0, 0, 536, 538, 5, 94, 0, 0, 537, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 3, 258, 129, 0, 540, 541, 5, 223, 0, 0, 541, 542, 5, 269, 0, 0, 542, 543, 3, 260, 130, 0, 543, 1235, 1, 0, 0, 0, 544, 545, 5, 23, 0, 0, 545, 548, 5, 260, 0, 0, 546, 547, 5, 119, 0, 0, 547, 549, 5, 94, 0, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 3, 258, 129, 0, 551, 552, 5, 19, 0, 0, 552, 556, 5, 44, 0, 0, 553, 554, 5, 119, 0, 0, 554, 555, 5, 182, 0, 0, 555, 557, 5, 94, 0, 0, 556, 553, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 3, 28, 14, 0, 559, 1235, 1, 0, 0, 0, 560, 561, 5, 23, 0, 0, 561, 564, 5, 260, 0, 0, 562, 563, 5, 119, 0, 0, 563, 565, 5, 94, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 3, 258, 129, 0, 567, 568, 5, 223, 0, 0, 568, 571, 5, 44, 0, 0, 569, 570, 5, 119, 0, 0, 570, 572, 5, 94, 0, 0, 571, 569, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 3, 278, 139, 0, 574, 575, 5, 269, 0, 0, 575, 576, 3, 282, 141, 0, 576, 1235, 1, 0, 0, 0, 577, 578, 5, 23, 0, 0, 578, 581, 5, 260, 0, 0, 579, 580, 5, 119, 0, 0, 580, 582, 5, 94, 0, 0, 581, 579, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 584, 3, 258, 129, 0, 584, 585, 5, 83, 0, 0, 585, 588, 5, 44, 0, 0, 586, 587, 5, 119, 0, 0, 587, 589, 5, 94, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 3, 278, 139, 0, 591, 1235, 1, 0, 0, 0, 592, 593, 5, 23, 0, 0, 593, 596, 5, 260, 0, 0, 594, 595, 5, 119, 0, 0, 595, 597, 5, 94, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 3, 258, 129, 0, 599, 600, 5, 23, 0, 0, 600, 601, 5, 44, 0, 0, 601, 602, 3, 278, 139, 0, 602, 603, 5, 251, 0, 0, 603, 604, 5, 65, 0, 0, 604, 605, 5, 276, 0, 0, 605, 606, 3, 186, 93, 0, 606, 1235, 1, 0, 0, 0, 607, 608, 5, 23, 0, 0, 608, 611, 5, 260, 0, 0, 609, 610, 5, 119, 0, 0, 610, 612, 5, 94, 0, 0, 611, 609, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 3, 258, 129, 0, 614, 615, 5, 23, 0, 0, 615, 616, 5, 44, 0, 0, 616, 617, 3, 278, 139, 0, 617, 618, 5, 83, 0, 0, 618, 619, 5, 182, 0, 0, 619, 620, 5, 183, 0, 0, 620, 1235, 1, 0, 0, 0, 621, 622, 5, 23, 0, 0, 622, 623, 5, 260, 0, 0, 623, 624, 3, 258, 129, 0, 624, 625, 5, 251, 0, 0, 625, 626, 5, 31, 0, 0, 626, 627, 3, 292, 146, 0, 627, 1235, 1, 0, 0, 0, 628, 629, 5, 23, 0, 0, 629, 630, 5, 260, 0, 0, 630, 631, 3, 258, 129, 0, 631, 632, 5, 251, 0, 0, 632, 633, 5, 216, 0, 0, 633, 634, 3, 34, 17, 0, 634, 1235, 1, 0, 0, 0, 635, 636, 5, 23, 0, 0, 636, 637, 5, 260, 0, 0, 637, 638, 3, 258, 129, 0, 638, 639, 5, 93, 0, 0, 639, 652, 3, 274, 137, 0, 640, 649, 5, 1, 0, 0, 641, 646, 3, 220, 110, 0, 642, 643, 5, 3, 0, 0, 643, 645, 3, 220, 110, 0, 644, 642, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 649, 641, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 653, 5, 2, 0, 0, 652, 640, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 656, 3, 54, 27, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 1235, 1, 0, 0, 0, 657, 658, 5, 24, 0, 0, 658, 661, 3, 258, 129, 0, 659, 660, 5, 304, 0, 0, 660, 662, 3, 32, 16, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 1235, 1, 0, 0, 0, 663, 666, 5, 53, 0, 0, 664, 665, 5, 194, 0, 0, 665, 667, 5, 226, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 5, 167, 0, 0, 669, 673, 5, 299, 0, 0, 670, 671, 5, 119, 0, 0, 671, 672, 5, 182, 0, 0, 672, 674, 5, 94, 0, 0, 673, 670, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 679, 3, 264, 132, 0, 676, 677, 5, 109, 0, 0, 677, 678, 5, 208, 0, 0, 678, 680, 3, 180, 90, 0, 679, 676, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 682, 5, 46, 0, 0, 682, 684, 3, 170, 85, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 304, 0, 0, 686, 688, 3, 32, 16, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 5, 28, 0, 0, 690, 691, 3, 18, 9, 0, 691, 1235, 1, 0, 0, 0, 692, 695, 5, 53, 0, 0, 693, 694, 5, 194, 0, 0, 694, 696, 5, 226, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 299, 0, 0, 698, 701, 3, 264, 132, 0, 699, 700, 5, 46, 0, 0, 700, 702, 3, 170, 85, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 705, 1, 0, 0, 0, 703, 704, 5, 246, 0, 0, 704, 706, 7, 1, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 5, 304, 0, 0, 708, 710, 3, 32, 16, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 28, 0, 0, 712, 713, 3, 18, 9, 0, 713, 1235, 1, 0, 0, 0, 714, 715, 5, 222, 0, 0, 715, 716, 5, 167, 0, 0, 716, 717, 5, 299, 0, 0, 717, 1235, 3, 262, 131, 0, 718, 719, 5, 83, 0, 0, 719, 720, 5, 167, 0, 0, 720, 723, 5, 299, 0, 0, 721, 722, 5, 119, 0, 0, 722, 724, 5, 94, 0, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 1235, 3, 262, 131, 0, 726, 727, 5, 23, 0, 0, 727, 728, 5, 167, 0, 0, 728, 731, 5, 299, 0, 0, 729, 730, 5, 119, 0, 0, 730, 732, 5, 94, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 3, 262, 131, 0, 734, 735, 5, 223, 0, 0, 735, 736, 5, 269, 0, 0, 736, 737, 3, 264, 132, 0, 737, 1235, 1, 0, 0, 0, 738, 739, 5, 23, 0, 0, 739, 740, 5, 167, 0, 0, 740, 741, 5, 299, 0, 0, 741, 742, 3, 262, 131, 0, 742, 743, 5, 251, 0, 0, 743, 744, 5, 216, 0, 0, 744, 745, 3, 34, 17, 0, 745, 1235, 1, 0, 0, 0, 746, 747, 5, 83, 0, 0, 747, 750, 5, 299, 0, 0, 748, 749, 5, 119, 0, 0, 749, 751, 5, 94, 0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 1235, 3, 262, 131, 0, 753, 754, 5, 23, 0, 0, 754, 755, 5, 299, 0, 0, 755, 756, 3, 262, 131, 0, 756, 757, 5, 223, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 264, 132, 0, 759, 1235, 1, 0, 0, 0, 760, 761, 5, 23, 0, 0, 761, 762, 5, 299, 0, 0, 762, 763, 3, 262, 131, 0, 763, 764, 5, 251, 0, 0, 764, 765, 5, 31, 0, 0, 765, 766, 3, 292, 146, 0, 766, 1235, 1, 0, 0, 0, 767, 768, 5, 37, 0, 0, 768, 769, 3, 274, 137, 0, 769, 778, 5, 1, 0, 0, 770, 775, 3, 220, 110, 0, 771, 772, 5, 3, 0, 0, 772, 774, 3, 220, 110, 0, 773, 771, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 770, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 5, 2, 0, 0, 781, 1235, 1, 0, 0, 0, 782, 785, 5, 53, 0, 0, 783, 784, 5, 194, 0, 0, 784, 786, 5, 226, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 1235, 3, 226, 113, 0, 788, 789, 5, 83, 0, 0, 789, 792, 5, 107, 0, 0, 790, 791, 5, 119, 0, 0, 791, 793, 5, 94, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 1235, 3, 230, 115, 0, 795, 796, 5, 53, 0, 0, 796, 797, 5, 235, 0, 0, 797, 801, 3, 298, 149, 0, 798, 799, 5, 304, 0, 0, 799, 800, 5, 20, 0, 0, 800, 802, 3, 290, 145, 0, 801, 798, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 804, 5, 122, 0, 0, 804, 806, 3, 270, 135, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 1235, 1, 0, 0, 0, 807, 808, 5, 83, 0, 0, 808, 809, 5, 235, 0, 0, 809, 812, 3, 298, 149, 0, 810, 811, 5, 122, 0, 0, 811, 813, 3, 270, 135, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 1235, 1, 0, 0, 0, 814, 815, 5, 110, 0, 0, 815, 820, 3, 296, 148, 0, 816, 817, 5, 3, 0, 0, 817, 819, 3, 296, 148, 0, 818, 816, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 824, 5, 269, 0, 0, 824, 829, 3, 292, 146, 0, 825, 826, 5, 3, 0, 0, 826, 828, 3, 292, 146, 0, 827, 825, 1, 0, 0, 0, 828, 831, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 835, 1, 0, 0, 0, 831, 829, 1, 0, 0, 0, 832, 833, 5, 304, 0, 0, 833, 834, 5, 20, 0, 0, 834, 836, 5, 193, 0, 0, 835, 832, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 840, 1, 0, 0, 0, 837, 838, 5, 111, 0, 0, 838, 839, 5, 36, 0, 0, 839, 841, 3, 290, 145, 0, 840, 837, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 843, 5, 122, 0, 0, 843, 845, 3, 270, 135, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 1235, 1, 0, 0, 0, 846, 857, 5, 110, 0, 0, 847, 852, 3, 296, 148, 0, 848, 849, 5, 3, 0, 0, 849, 851, 3, 296, 148, 0, 850, 848, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 858, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 855, 856, 5, 22, 0, 0, 856, 858, 5, 215, 0, 0, 857, 847, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 190, 0, 0, 860, 861, 3, 254, 127, 0, 861, 862, 5, 269, 0, 0, 862, 866, 3, 292, 146, 0, 863, 864, 5, 304, 0, 0, 864, 865, 5, 110, 0, 0, 865, 867, 5, 193, 0, 0, 866, 863, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 1235, 1, 0, 0, 0, 868, 872, 5, 233, 0, 0, 869, 870, 5, 20, 0, 0, 870, 871, 5, 193, 0, 0, 871, 873, 5, 103, 0, 0, 872, 869, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 879, 3, 296, 148, 0, 875, 876, 5, 3, 0, 0, 876, 878, 3, 296, 148, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 105, 0, 0, 883, 888, 3, 292, 146, 0, 884, 885, 5, 3, 0, 0, 885, 887, 3, 292, 146, 0, 886, 884, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 894, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 891, 892, 5, 111, 0, 0, 892, 893, 5, 36, 0, 0, 893, 895, 3, 290, 145, 0, 894, 891, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 897, 5, 122, 0, 0, 897, 899, 3, 270, 135, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 1235, 1, 0, 0, 0, 900, 904, 5, 233, 0, 0, 901, 902, 5, 110, 0, 0, 902, 903, 5, 193, 0, 0, 903, 905, 5, 103, 0, 0, 904, 901, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 916, 1, 0, 0, 0, 906, 911, 3, 296, 148, 0, 907, 908, 5, 3, 0, 0, 908, 910, 3, 296, 148, 0, 909, 907, 1, 0, 0, 0, 910, 913, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 917, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 914, 915, 5, 22, 0, 0, 915, 917, 5, 215, 0, 0, 916, 906, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 5, 190, 0, 0, 919, 920, 3, 254, 127, 0, 920, 921, 5, 105, 0, 0, 921, 922, 3, 292, 146, 0, 922, 1235, 1, 0, 0, 0, 923, 934, 5, 74, 0, 0, 924, 929, 3, 250, 125, 0, 925, 926, 5, 3, 0, 0, 926, 928, 3, 250, 125, 0, 927, 925, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 935, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 5, 22, 0, 0, 933, 935, 5, 215, 0, 0, 934, 924, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 5, 190, 0, 0, 937, 938, 3, 254, 127, 0, 938, 939, 5, 269, 0, 0, 939, 940, 3, 292, 146, 0, 940, 1235, 1, 0, 0, 0, 941, 942, 5, 251, 0, 0, 942, 946, 5, 235, 0, 0, 943, 947, 5, 22, 0, 0, 944, 947, 5, 180, 0, 0, 945, 947, 3, 298, 149, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 950, 1, 0, 0, 0, 948, 949, 5, 122, 0, 0, 949, 951, 3, 270, 135, 0, 950, 948, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 1235, 1, 0, 0, 0, 952, 953, 5, 253, 0, 0, 953, 956, 5, 112, 0, 0, 954, 955, 5, 190, 0, 0, 955, 957, 3, 254, 127, 0, 956, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 1235, 1, 0, 0, 0, 958, 970, 5, 95, 0, 0, 959, 960, 5, 1, 0, 0, 960, 965, 3, 214, 107, 0, 961, 962, 5, 3, 0, 0, 962, 964, 3, 214, 107, 0, 963, 961, 1, 0, 0, 0, 964, 967, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 968, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 968, 969, 5, 2, 0, 0, 969, 971, 1, 0, 0, 0, 970, 959, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 1235, 3, 16, 8, 0, 973, 974, 5, 95, 0, 0, 974, 976, 5, 24, 0, 0, 975, 977, 5, 297, 0, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 1235, 3, 16, 8, 0, 979, 980, 5, 253, 0, 0, 980, 981, 5, 53, 0, 0, 981, 982, 5, 260, 0, 0, 982, 1235, 3, 258, 129, 0, 983, 984, 5, 253, 0, 0, 984, 985, 5, 53, 0, 0, 985, 986, 5, 243, 0, 0, 986, 1235, 3, 266, 133, 0, 987, 988, 5, 253, 0, 0, 988, 989, 5, 53, 0, 0, 989, 990, 5, 299, 0, 0, 990, 1235, 3, 262, 131, 0, 991, 992, 5, 253, 0, 0, 992, 993, 5, 53, 0, 0, 993, 994, 5, 167, 0, 0, 994, 995, 5, 299, 0, 0, 995, 1235, 3, 262, 131, 0, 996, 997, 5, 253, 0, 0, 997, 998, 5, 53, 0, 0, 998, 999, 5, 107, 0, 0, 999, 1235, 3, 274, 137, 0, 1000, 1001, 5, 253, 0, 0, 1001, 1004, 5, 261, 0, 0, 1002, 1003, 7, 2, 0, 0, 1003, 1005, 3, 266, 133, 0, 1004, 1002, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1012, 1, 0, 0, 0, 1006, 1007, 5, 154, 0, 0, 1007, 1010, 3, 170, 85, 0, 1008, 1009, 5, 90, 0, 0, 1009, 1011, 3, 170, 85, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1235, 1, 0, 0, 0, 1014, 1015, 5, 253, 0, 0, 1015, 1018, 5, 244, 0, 0, 1016, 1017, 7, 2, 0, 0, 1017, 1019, 3, 270, 135, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1026, 1, 0, 0, 0, 1020, 1021, 5, 154, 0, 0, 1021, 1024, 3, 170, 85, 0, 1022, 1023, 5, 90, 0, 0, 1023, 1025, 3, 170, 85, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 1, 0, 0, 0, 1026, 1020, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1235, 1, 0, 0, 0, 1028, 1029, 5, 253, 0, 0, 1029, 1036, 5, 43, 0, 0, 1030, 1031, 5, 154, 0, 0, 1031, 1034, 3, 170, 85, 0, 1032, 1033, 5, 90, 0, 0, 1033, 1035, 3, 170, 85, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1030, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1235, 1, 0, 0, 0, 1038, 1039, 5, 253, 0, 0, 1039, 1040, 5, 45, 0, 0, 1040, 1041, 7, 2, 0, 0, 1041, 1048, 3, 256, 128, 0, 1042, 1043, 5, 154, 0, 0, 1043, 1046, 3, 170, 85, 0, 1044, 1045, 5, 90, 0, 0, 1045, 1047, 3, 170, 85, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1049, 1, 0, 0, 0, 1048, 1042, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1235, 1, 0, 0, 0, 1050, 1051, 5, 253, 0, 0, 1051, 1052, 5, 256, 0, 0, 1052, 1053, 5, 103, 0, 0, 1053, 1235, 3, 256, 128, 0, 1054, 1055, 5, 253, 0, 0, 1055, 1056, 5, 256, 0, 0, 1056, 1057, 5, 103, 0, 0, 1057, 1058, 5, 1, 0, 0, 1058, 1059, 3, 18, 9, 0, 1059, 1060, 5, 2, 0, 0, 1060, 1235, 1, 0, 0, 0, 1061, 1063, 5, 253, 0, 0, 1062, 1064, 5, 56, 0, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1068, 5, 236, 0, 0, 1066, 1067, 7, 2, 0, 0, 1067, 1069, 3, 270, 135, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1235, 1, 0, 0, 0, 1070, 1071, 5, 253, 0, 0, 1071, 1072, 5, 235, 0, 0, 1072, 1075, 5, 112, 0, 0, 1073, 1074, 7, 2, 0, 0, 1074, 1076, 3, 270, 135, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1235, 1, 0, 0, 0, 1077, 1078, 5, 76, 0, 0, 1078, 1235, 3, 256, 128, 0, 1079, 1080, 5, 75, 0, 0, 1080, 1235, 3, 256, 128, 0, 1081, 1082, 5, 253, 0, 0, 1082, 1085, 5, 108, 0, 0, 1083, 1084, 7, 2, 0, 0, 1084, 1086, 3, 266, 133, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1093, 1, 0, 0, 0, 1087, 1088, 5, 154, 0, 0, 1088, 1091, 3, 170, 85, 0, 1089, 1090, 5, 90, 0, 0, 1090, 1092, 3, 170, 85, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 1, 0, 0, 0, 1093, 1087, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1235, 1, 0, 0, 0, 1095, 1096, 5, 253, 0, 0, 1096, 1103, 5, 250, 0, 0, 1097, 1098, 5, 154, 0, 0, 1098, 1101, 3, 170, 85, 0, 1099, 1100, 5, 90, 0, 0, 1100, 1102, 3, 170, 85, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1097, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1235, 1, 0, 0, 0, 1105, 1106, 5, 251, 0, 0, 1106, 1107, 5, 250, 0, 0, 1107, 1108, 5, 31, 0, 0, 1108, 1235, 3, 302, 151, 0, 1109, 1110, 5, 227, 0, 0, 1110, 1111, 5, 250, 0, 0, 1111, 1235, 5, 31, 0, 0, 1112, 1113, 5, 251, 0, 0, 1113, 1114, 5, 250, 0, 0, 1114, 1115, 3, 284, 142, 0, 1115, 1116, 5, 312, 0, 0, 1116, 1117, 3, 138, 69, 0, 1117, 1235, 1, 0, 0, 0, 1118, 1119, 5, 227, 0, 0, 1119, 1120, 5, 250, 0, 0, 1120, 1235, 3, 284, 142, 0, 1121, 1122, 5, 255, 0, 0, 1122, 1131, 5, 271, 0, 0, 1123, 1128, 3, 216, 108, 0, 1124, 1125, 5, 3, 0, 0, 1125, 1127, 3, 216, 108, 0, 1126, 1124, 1, 0, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1132, 1, 0, 0, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1123, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1235, 1, 0, 0, 0, 1133, 1135, 5, 47, 0, 0, 1134, 1136, 5, 307, 0, 0, 1135, 1134, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1235, 1, 0, 0, 0, 1137, 1139, 5, 237, 0, 0, 1138, 1140, 5, 307, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1235, 1, 0, 0, 0, 1141, 1142, 5, 214, 0, 0, 1142, 1143, 3, 298, 149, 0, 1143, 1144, 5, 105, 0, 0, 1144, 1145, 3, 16, 8, 0, 1145, 1235, 1, 0, 0, 0, 1146, 1147, 5, 68, 0, 0, 1147, 1148, 5, 214, 0, 0, 1148, 1235, 3, 298, 149, 0, 1149, 1150, 5, 93, 0, 0, 1150, 1160, 3, 298, 149, 0, 1151, 1152, 5, 290, 0, 0, 1152, 1157, 3, 138, 69, 0, 1153, 1154, 5, 3, 0, 0, 1154, 1156, 3, 138, 69, 0, 1155, 1153, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1161, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1151, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1235, 1, 0, 0, 0, 1162, 1163, 5, 93, 0, 0, 1163, 1164, 5, 121, 0, 0, 1164, 1174, 3, 170, 85, 0, 1165, 1166, 5, 290, 0, 0, 1166, 1171, 3, 138, 69, 0, 1167, 1168, 5, 3, 0, 0, 1168, 1170, 3, 138, 69, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1173, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1165, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1235, 1, 0, 0, 0, 1176, 1177, 5, 76, 0, 0, 1177, 1178, 5, 126, 0, 0, 1178, 1235, 3, 298, 149, 0, 1179, 1180, 5, 76, 0, 0, 1180, 1181, 5, 198, 0, 0, 1181, 1235, 3, 298, 149, 0, 1182, 1183, 5, 251, 0, 0, 1183, 1184, 5, 205, 0, 0, 1184, 1235, 3, 224, 112, 0, 1185, 1186, 5, 251, 0, 0, 1186, 1187, 5, 267, 0, 0, 1187, 1190, 5, 311, 0, 0, 1188, 1191, 5, 157, 0, 0, 1189, 1191, 3, 138, 69, 0, 1190, 1188, 1, 0, 0, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1235, 1, 0, 0, 0, 1192, 1193, 5, 287, 0, 0, 1193, 1194, 3, 258, 129, 0, 1194, 1195, 5, 251, 0, 0, 1195, 1200, 3, 212, 106, 0, 1196, 1197, 5, 3, 0, 0, 1197, 1199, 3, 212, 106, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1205, 3, 54, 27, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1235, 1, 0, 0, 0, 1206, 1207, 5, 169, 0, 0, 1207, 1208, 5, 130, 0, 0, 1208, 1213, 3, 258, 129, 0, 1209, 1211, 5, 28, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1214, 3, 298, 149, 0, 1213, 1210, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 5, 290, 0, 0, 1216, 1217, 3, 74, 37, 0, 1217, 1218, 5, 190, 0, 0, 1218, 1220, 3, 138, 69, 0, 1219, 1221, 3, 196, 98, 0, 1220, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1235, 1, 0, 0, 0, 1224, 1225, 5, 253, 0, 0, 1225, 1226, 5, 46, 0, 0, 1226, 1227, 5, 190, 0, 0, 1227, 1228, 5, 260, 0, 0, 1228, 1235, 3, 258, 129, 0, 1229, 1230, 5, 253, 0, 0, 1230, 1231, 5, 46, 0, 0, 1231, 1232, 5, 190, 0, 0, 1232, 1233, 5, 44, 0, 0, 1233, 1235, 3, 278, 139, 0, 1234, 339, 1, 0, 0, 0, 1234, 340, 1, 0, 0, 0, 1234, 342, 1, 0, 0, 0, 1234, 364, 1, 0, 0, 0, 1234, 374, 1, 0, 0, 0, 1234, 390, 1, 0, 0, 0, 1234, 400, 1, 0, 0, 0, 1234, 407, 1, 0, 0, 0, 1234, 414, 1, 0, 0, 0, 1234, 452, 1, 0, 0, 0, 1234, 482, 1, 0, 0, 0, 1234, 489, 1, 0, 0, 0, 1234, 497, 1, 0, 0, 0, 1234, 503, 1, 0, 0, 0, 1234, 506, 1, 0, 0, 0, 1234, 515, 1, 0, 0, 0, 1234, 524, 1, 0, 0, 0, 1234, 533, 1, 0, 0, 0, 1234, 544, 1, 0, 0, 0, 1234, 560, 1, 0, 0, 0, 1234, 577, 1, 0, 0, 0, 1234, 592, 1, 0, 0, 0, 1234, 607, 1, 0, 0, 0, 1234, 621, 1, 0, 0, 0, 1234, 628, 1, 0, 0, 0, 1234, 635, 1, 0, 0, 0, 1234, 657, 1, 0, 0, 0, 1234, 663, 1, 0, 0, 0, 1234, 692, 1, 0, 0, 0, 1234, 714, 1, 0, 0, 0, 1234, 718, 1, 0, 0, 0, 1234, 726, 1, 0, 0, 0, 1234, 738, 1, 0, 0, 0, 1234, 746, 1, 0, 0, 0, 1234, 753, 1, 0, 0, 0, 1234, 760, 1, 0, 0, 0, 1234, 767, 1, 0, 0, 0, 1234, 782, 1, 0, 0, 0, 1234, 788, 1, 0, 0, 0, 1234, 795, 1, 0, 0, 0, 1234, 807, 1, 0, 0, 0, 1234, 814, 1, 0, 0, 0, 1234, 846, 1, 0, 0, 0, 1234, 868, 1, 0, 0, 0, 1234, 900, 1, 0, 0, 0, 1234, 923, 1, 0, 0, 0, 1234, 941, 1, 0, 0, 0, 1234, 952, 1, 0, 0, 0, 1234, 958, 1, 0, 0, 0, 1234, 973, 1, 0, 0, 0, 1234, 979, 1, 0, 0, 0, 1234, 983, 1, 0, 0, 0, 1234, 987, 1, 0, 0, 0, 1234, 991, 1, 0, 0, 0, 1234, 996, 1, 0, 0, 0, 1234, 1000, 1, 0, 0, 0, 1234, 1014, 1, 0, 0, 0, 1234, 1028, 1, 0, 0, 0, 1234, 1038, 1, 0, 0, 0, 1234, 1050, 1, 0, 0, 0, 1234, 1054, 1, 0, 0, 0, 1234, 1061, 1, 0, 0, 0, 1234, 1070, 1, 0, 0, 0, 1234, 1077, 1, 0, 0, 0, 1234, 1079, 1, 0, 0, 0, 1234, 1081, 1, 0, 0, 0, 1234, 1095, 1, 0, 0, 0, 1234, 1105, 1, 0, 0, 0, 1234, 1109, 1, 0, 0, 0, 1234, 1112, 1, 0, 0, 0, 1234, 1118, 1, 0, 0, 0, 1234, 1121, 1, 0, 0, 0, 1234, 1133, 1, 0, 0, 0, 1234, 1137, 1, 0, 0, 0, 1234, 1141, 1, 0, 0, 0, 1234, 1146, 1, 0, 0, 0, 1234, 1149, 1, 0, 0, 0, 1234, 1162, 1, 0, 0, 0, 1234, 1176, 1, 0, 0, 0, 1234, 1179, 1, 0, 0, 0, 1234, 1182, 1, 0, 0, 0, 1234, 1185, 1, 0, 0, 0, 1234, 1192, 1, 0, 0, 0, 1234, 1206, 1, 0, 0, 0, 1234, 1224, 1, 0, 0, 0, 1234, 1229, 1, 0, 0, 0, 1235, 17, 1, 0, 0, 0, 1236, 1238, 3, 20, 10, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1240, 3, 22, 11, 0, 1240, 19, 1, 0, 0, 0, 1241, 1242, 5, 304, 0, 0, 1242, 1247, 3, 226, 113, 0, 1243, 1244, 5, 3, 0, 0, 1244, 1246, 3, 226, 113, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1249, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 21, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1252, 3, 24, 12, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1254, 3, 40, 20, 0, 1254, 23, 1, 0, 0, 0, 1255, 1257, 5, 304, 0, 0, 1256, 1258, 5, 221, 0, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1264, 3, 68, 34, 0, 1260, 1261, 5, 3, 0, 0, 1261, 1263, 3, 68, 34, 0, 1262, 1260, 1, 0, 0, 0, 1263, 1266, 1, 0, 0, 0, 1264, 1262, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 25, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1270, 3, 28, 14, 0, 1268, 1270, 3, 30, 15, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 27, 1, 0, 0, 0, 1271, 1272, 3, 282, 141, 0, 1272, 1275, 3, 186, 93, 0, 1273, 1274, 5, 182, 0, 0, 1274, 1276, 5, 183, 0, 0, 1275, 1273, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 5, 46, 0, 0, 1278, 1280, 3, 170, 85, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 5, 304, 0, 0, 1282, 1284, 3, 32, 16, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 29, 1, 0, 0, 0, 1285, 1286, 5, 154, 0, 0, 1286, 1289, 3, 258, 129, 0, 1287, 1288, 7, 3, 0, 0, 1288, 1290, 5, 216, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 31, 1, 0, 0, 0, 1291, 1292, 5, 1, 0, 0, 1292, 1293, 3, 34, 17, 0, 1293, 1294, 5, 2, 0, 0, 1294, 33, 1, 0, 0, 0, 1295, 1300, 3, 36, 18, 0, 1296, 1297, 5, 3, 0, 0, 1297, 1299, 3, 36, 18, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 35, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1304, 3, 298, 149, 0, 1304, 1305, 5, 312, 0, 0, 1305, 1306, 3, 38, 19, 0, 1306, 37, 1, 0, 0, 0, 1307, 1310, 5, 70, 0, 0, 1308, 1310, 3, 138, 69, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1308, 1, 0, 0, 0, 1310, 39, 1, 0, 0, 0, 1311, 1322, 3, 46, 23, 0, 1312, 1313, 5, 195, 0, 0, 1313, 1314, 5, 36, 0, 0, 1314, 1319, 3, 50, 25, 0, 1315, 1316, 5, 3, 0, 0, 1316, 1318, 3, 50, 25, 0, 1317, 1315, 1, 0, 0, 0, 1318, 1321, 1, 0, 0, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1323, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1312, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1329, 1, 0, 0, 0, 1324, 1325, 5, 188, 0, 0, 1325, 1327, 3, 44, 22, 0, 1326, 1328, 7, 4, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1324, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1344, 1, 0, 0, 0, 1331, 1332, 5, 155, 0, 0, 1332, 1345, 3, 42, 21, 0, 1333, 1334, 5, 98, 0, 0, 1334, 1336, 7, 5, 0, 0, 1335, 1337, 3, 44, 22, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1342, 7, 4, 0, 0, 1339, 1343, 5, 192, 0, 0, 1340, 1341, 5, 304, 0, 0, 1341, 1343, 5, 266, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1331, 1, 0, 0, 0, 1344, 1333, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 41, 1, 0, 0, 0, 1346, 1349, 5, 22, 0, 0, 1347, 1349, 3, 44, 22, 0, 1348, 1346, 1, 0, 0, 0, 1348, 1347, 1, 0, 0, 0, 1349, 43, 1, 0, 0, 0, 1350, 1351, 7, 6, 0, 0, 1351, 45, 1, 0, 0, 0, 1352, 1353, 6, 23, -1, 0, 1353, 1354, 3, 48, 24, 0, 1354, 1369, 1, 0, 0, 0, 1355, 1356, 10, 2, 0, 0, 1356, 1358, 5, 128, 0, 0, 1357, 1359, 3, 70, 35, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1368, 3, 46, 23, 3, 1361, 1362, 10, 1, 0, 0, 1362, 1364, 7, 7, 0, 0, 1363, 1365, 3, 70, 35, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1368, 3, 46, 23, 2, 1367, 1355, 1, 0, 0, 0, 1367, 1361, 1, 0, 0, 0, 1368, 1371, 1, 0, 0, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 47, 1, 0, 0, 0, 1371, 1369, 1, 0, 0, 0, 1372, 1389, 3, 52, 26, 0, 1373, 1374, 5, 260, 0, 0, 1374, 1389, 3, 258, 129, 0, 1375, 1376, 5, 296, 0, 0, 1376, 1381, 3, 138, 69, 0, 1377, 1378, 5, 3, 0, 0, 1378, 1380, 3, 138, 69, 0, 1379, 1377, 1, 0, 0, 0, 1380, 1383, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1389, 1, 0, 0, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1385, 5, 1, 0, 0, 1385, 1386, 3, 40, 20, 0, 1386, 1387, 5, 2, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1372, 1, 0, 0, 0, 1388, 1373, 1, 0, 0, 0, 1388, 1375, 1, 0, 0, 0, 1388, 1384, 1, 0, 0, 0, 1389, 49, 1, 0, 0, 0, 1390, 1393, 3, 278, 139, 0, 1391, 1393, 3, 138, 69, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1391, 1, 0, 0, 0, 1393, 1395, 1, 0, 0, 0, 1394, 1396, 7, 8, 0, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1398, 5, 185, 0, 0, 1398, 1400, 7, 9, 0, 0, 1399, 1397, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 51, 1, 0, 0, 0, 1401, 1403, 5, 248, 0, 0, 1402, 1404, 3, 70, 35, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1410, 3, 72, 36, 0, 1406, 1407, 5, 3, 0, 0, 1407, 1409, 3, 72, 36, 0, 1408, 1406, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1422, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1414, 5, 105, 0, 0, 1414, 1419, 3, 74, 37, 0, 1415, 1416, 5, 3, 0, 0, 1416, 1418, 3, 74, 37, 0, 1417, 1415, 1, 0, 0, 0, 1418, 1421, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1423, 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1413, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1425, 1, 0, 0, 0, 1424, 1426, 3, 54, 27, 0, 1425, 1424, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1430, 1, 0, 0, 0, 1427, 1428, 5, 114, 0, 0, 1428, 1429, 5, 36, 0, 0, 1429, 1431, 3, 56, 28, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1434, 1, 0, 0, 0, 1432, 1433, 5, 117, 0, 0, 1433, 1435, 3, 140, 70, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1445, 1, 0, 0, 0, 1436, 1437, 5, 303, 0, 0, 1437, 1442, 3, 64, 32, 0, 1438, 1439, 5, 3, 0, 0, 1439, 1441, 3, 64, 32, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1444, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1436, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 53, 1, 0, 0, 0, 1447, 1448, 5, 301, 0, 0, 1448, 1449, 3, 140, 70, 0, 1449, 55, 1, 0, 0, 0, 1450, 1452, 3, 70, 35, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1458, 3, 58, 29, 0, 1454, 1455, 5, 3, 0, 0, 1455, 1457, 3, 58, 29, 0, 1456, 1454, 1, 0, 0, 0, 1457, 1460, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 57, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1461, 1502, 3, 60, 30, 0, 1462, 1463, 5, 238, 0, 0, 1463, 1472, 5, 1, 0, 0, 1464, 1469, 3, 60, 30, 0, 1465, 1466, 5, 3, 0, 0, 1466, 1468, 3, 60, 30, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1471, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1473, 1, 0, 0, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1464, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1502, 5, 2, 0, 0, 1475, 1476, 5, 55, 0, 0, 1476, 1485, 5, 1, 0, 0, 1477, 1482, 3, 60, 30, 0, 1478, 1479, 5, 3, 0, 0, 1479, 1481, 3, 60, 30, 0, 1480, 1478, 1, 0, 0, 0, 1481, 1484, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1486, 1, 0, 0, 0, 1484, 1482, 1, 0, 0, 0, 1485, 1477, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1502, 5, 2, 0, 0, 1488, 1489, 5, 115, 0, 0, 1489, 1490, 5, 252, 0, 0, 1490, 1491, 5, 1, 0, 0, 1491, 1496, 3, 60, 30, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 60, 30, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1500, 5, 2, 0, 0, 1500, 1502, 1, 0, 0, 0, 1501, 1461, 1, 0, 0, 0, 1501, 1462, 1, 0, 0, 0, 1501, 1475, 1, 0, 0, 0, 1501, 1488, 1, 0, 0, 0, 1502, 59, 1, 0, 0, 0, 1503, 1512, 5, 1, 0, 0, 1504, 1509, 3, 62, 31, 0, 1505, 1506, 5, 3, 0, 0, 1506, 1508, 3, 62, 31, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1513, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1504, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1517, 5, 2, 0, 0, 1515, 1517, 3, 62, 31, 0, 1516, 1503, 1, 0, 0, 0, 1516, 1515, 1, 0, 0, 0, 1517, 61, 1, 0, 0, 0, 1518, 1521, 3, 278, 139, 0, 1519, 1521, 3, 138, 69, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1519, 1, 0, 0, 0, 1521, 63, 1, 0, 0, 0, 1522, 1523, 3, 298, 149, 0, 1523, 1524, 5, 28, 0, 0, 1524, 1525, 5, 1, 0, 0, 1525, 1526, 3, 66, 33, 0, 1526, 1527, 5, 2, 0, 0, 1527, 65, 1, 0, 0, 0, 1528, 1530, 3, 298, 149, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1541, 1, 0, 0, 0, 1531, 1532, 5, 201, 0, 0, 1532, 1533, 5, 36, 0, 0, 1533, 1538, 3, 138, 69, 0, 1534, 1535, 5, 3, 0, 0, 1535, 1537, 3, 138, 69, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1538, 1, 0, 0, 0, 1541, 1531, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1553, 1, 0, 0, 0, 1543, 1544, 5, 195, 0, 0, 1544, 1545, 5, 36, 0, 0, 1545, 1550, 3, 50, 25, 0, 1546, 1547, 5, 3, 0, 0, 1547, 1549, 3, 50, 25, 0, 1548, 1546, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1543, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1556, 1, 0, 0, 0, 1555, 1557, 3, 200, 100, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 67, 1, 0, 0, 0, 1558, 1560, 3, 298, 149, 0, 1559, 1561, 3, 110, 55, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 5, 28, 0, 0, 1563, 1564, 5, 1, 0, 0, 1564, 1565, 3, 22, 11, 0, 1565, 1566, 5, 2, 0, 0, 1566, 69, 1, 0, 0, 0, 1567, 1568, 7, 10, 0, 0, 1568, 71, 1, 0, 0, 0, 1569, 1572, 3, 278, 139, 0, 1570, 1572, 3, 138, 69, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1570, 1, 0, 0, 0, 1572, 1577, 1, 0, 0, 0, 1573, 1575, 5, 28, 0, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 3, 298, 149, 0, 1577, 1574, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1588, 1, 0, 0, 0, 1579, 1580, 3, 146, 73, 0, 1580, 1581, 5, 4, 0, 0, 1581, 1584, 5, 320, 0, 0, 1582, 1583, 5, 28, 0, 0, 1583, 1585, 3, 110, 55, 0, 1584, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1588, 1, 0, 0, 0, 1586, 1588, 5, 320, 0, 0, 1587, 1571, 1, 0, 0, 0, 1587, 1579, 1, 0, 0, 0, 1587, 1586, 1, 0, 0, 0, 1588, 73, 1, 0, 0, 0, 1589, 1590, 6, 37, -1, 0, 1590, 1591, 3, 80, 40, 0, 1591, 1610, 1, 0, 0, 0, 1592, 1606, 10, 2, 0, 0, 1593, 1594, 5, 54, 0, 0, 1594, 1595, 5, 136, 0, 0, 1595, 1607, 3, 80, 40, 0, 1596, 1597, 3, 76, 38, 0, 1597, 1598, 5, 136, 0, 0, 1598, 1599, 3, 74, 37, 0, 1599, 1600, 3, 78, 39, 0, 1600, 1607, 1, 0, 0, 0, 1601, 1602, 5, 172, 0, 0, 1602, 1603, 3, 76, 38, 0, 1603, 1604, 5, 136, 0, 0, 1604, 1605, 3, 80, 40, 0, 1605, 1607, 1, 0, 0, 0, 1606, 1593, 1, 0, 0, 0, 1606, 1596, 1, 0, 0, 0, 1606, 1601, 1, 0, 0, 0, 1607, 1609, 1, 0, 0, 0, 1608, 1592, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 75, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1615, 5, 125, 0, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1629, 1, 0, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 197, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1629, 1, 0, 0, 0, 1620, 1622, 5, 234, 0, 0, 1621, 1623, 5, 197, 0, 0, 1622, 1621, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1629, 1, 0, 0, 0, 1624, 1626, 5, 106, 0, 0, 1625, 1627, 5, 197, 0, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1614, 1, 0, 0, 0, 1628, 1616, 1, 0, 0, 0, 1628, 1620, 1, 0, 0, 0, 1628, 1624, 1, 0, 0, 0, 1629, 77, 1, 0, 0, 0, 1630, 1631, 5, 190, 0, 0, 1631, 1645, 3, 140, 70, 0, 1632, 1633, 5, 290, 0, 0, 1633, 1634, 5, 1, 0, 0, 1634, 1639, 3, 298, 149, 0, 1635, 1636, 5, 3, 0, 0, 1636, 1638, 3, 298, 149, 0, 1637, 1635, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1643, 5, 2, 0, 0, 1643, 1645, 1, 0, 0, 0, 1644, 1630, 1, 0, 0, 0, 1644, 1632, 1, 0, 0, 0, 1645, 79, 1, 0, 0, 0, 1646, 1653, 3, 90, 45, 0, 1647, 1648, 5, 262, 0, 0, 1648, 1649, 3, 82, 41, 0, 1649, 1650, 5, 1, 0, 0, 1650, 1651, 3, 138, 69, 0, 1651, 1652, 5, 2, 0, 0, 1652, 1654, 1, 0, 0, 0, 1653, 1647, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 81, 1, 0, 0, 0, 1655, 1656, 7, 11, 0, 0, 1656, 83, 1, 0, 0, 0, 1657, 1658, 7, 12, 0, 0, 1658, 85, 1, 0, 0, 0, 1659, 1666, 5, 89, 0, 0, 1660, 1662, 5, 274, 0, 0, 1661, 1663, 3, 170, 85, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 3, 88, 44, 0, 1665, 1659, 1, 0, 0, 0, 1665, 1660, 1, 0, 0, 0, 1666, 87, 1, 0, 0, 0, 1667, 1668, 5, 304, 0, 0, 1668, 1672, 5, 51, 0, 0, 1669, 1670, 5, 306, 0, 0, 1670, 1672, 5, 51, 0, 0, 1671, 1667, 1, 0, 0, 0, 1671, 1669, 1, 0, 0, 0, 1672, 89, 1, 0, 0, 0, 1673, 1756, 3, 104, 52, 0, 1674, 1675, 5, 166, 0, 0, 1675, 1686, 5, 1, 0, 0, 1676, 1677, 5, 201, 0, 0, 1677, 1678, 5, 36, 0, 0, 1678, 1683, 3, 138, 69, 0, 1679, 1680, 5, 3, 0, 0, 1680, 1682, 3, 138, 69, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1687, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1686, 1676, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1698, 1, 0, 0, 0, 1688, 1689, 5, 195, 0, 0, 1689, 1690, 5, 36, 0, 0, 1690, 1695, 3, 50, 25, 0, 1691, 1692, 5, 3, 0, 0, 1692, 1694, 3, 50, 25, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1688, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1709, 1, 0, 0, 0, 1700, 1701, 5, 168, 0, 0, 1701, 1706, 3, 92, 46, 0, 1702, 1703, 5, 3, 0, 0, 1703, 1705, 3, 92, 46, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1700, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 94, 47, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1717, 1, 0, 0, 0, 1714, 1715, 5, 21, 0, 0, 1715, 1716, 5, 163, 0, 0, 1716, 1718, 3, 98, 49, 0, 1717, 1714, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1721, 7, 13, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 206, 0, 0, 1723, 1724, 5, 1, 0, 0, 1724, 1725, 3, 206, 103, 0, 1725, 1735, 5, 2, 0, 0, 1726, 1727, 5, 257, 0, 0, 1727, 1732, 3, 100, 50, 0, 1728, 1729, 5, 3, 0, 0, 1729, 1731, 3, 100, 50, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 5, 71, 0, 0, 1738, 1743, 3, 102, 51, 0, 1739, 1740, 5, 3, 0, 0, 1740, 1742, 3, 102, 51, 0, 1741, 1739, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1754, 5, 2, 0, 0, 1747, 1749, 5, 28, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 3, 298, 149, 0, 1751, 1753, 3, 110, 55, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1674, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 91, 1, 0, 0, 0, 1758, 1759, 3, 138, 69, 0, 1759, 1760, 5, 28, 0, 0, 1760, 1761, 3, 298, 149, 0, 1761, 93, 1, 0, 0, 0, 1762, 1763, 5, 191, 0, 0, 1763, 1764, 5, 239, 0, 0, 1764, 1765, 5, 207, 0, 0, 1765, 1774, 5, 163, 0, 0, 1766, 1767, 5, 22, 0, 0, 1767, 1768, 5, 240, 0, 0, 1768, 1769, 5, 207, 0, 0, 1769, 1771, 5, 163, 0, 0, 1770, 1772, 3, 96, 48, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1762, 1, 0, 0, 0, 1773, 1766, 1, 0, 0, 0, 1774, 95, 1, 0, 0, 0, 1775, 1776, 5, 253, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1785, 5, 165, 0, 0, 1778, 1779, 5, 189, 0, 0, 1779, 1780, 5, 85, 0, 0, 1780, 1785, 5, 165, 0, 0, 1781, 1782, 5, 304, 0, 0, 1782, 1783, 5, 284, 0, 0, 1783, 1785, 5, 240, 0, 0, 1784, 1775, 1, 0, 0, 0, 1784, 1778, 1, 0, 0, 0, 1784, 1781, 1, 0, 0, 0, 1785, 97, 1, 0, 0, 0, 1786, 1787, 5, 5, 0, 0, 1787, 1788, 5, 269, 0, 0, 1788, 1789, 5, 174, 0, 0, 1789, 1806, 5, 239, 0, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1792, 5, 204, 0, 0, 1792, 1793, 5, 148, 0, 0, 1793, 1806, 5, 239, 0, 0, 1794, 1795, 5, 5, 0, 0, 1795, 1796, 5, 269, 0, 0, 1796, 1797, 5, 101, 0, 0, 1797, 1806, 3, 298, 149, 0, 1798, 1799, 5, 5, 0, 0, 1799, 1800, 5, 269, 0, 0, 1800, 1801, 5, 148, 0, 0, 1801, 1806, 3, 298, 149, 0, 1802, 1803, 5, 5, 0, 0, 1803, 1804, 5, 269, 0, 0, 1804, 1806, 3, 298, 149, 0, 1805, 1786, 1, 0, 0, 0, 1805, 1790, 1, 0, 0, 0, 1805, 1794, 1, 0, 0, 0, 1805, 1798, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 99, 1, 0, 0, 0, 1807, 1808, 3, 298, 149, 0, 1808, 1809, 5, 312, 0, 0, 1809, 1810, 5, 1, 0, 0, 1810, 1815, 3, 298, 149, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1814, 3, 298, 149, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 2, 0, 0, 1819, 101, 1, 0, 0, 0, 1820, 1821, 3, 298, 149, 0, 1821, 1822, 5, 28, 0, 0, 1822, 1823, 3, 138, 69, 0, 1823, 103, 1, 0, 0, 0, 1824, 1832, 3, 112, 56, 0, 1825, 1827, 5, 28, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 3, 298, 149, 0, 1829, 1831, 3, 110, 55, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 105, 1, 0, 0, 0, 1834, 1835, 5, 1, 0, 0, 1835, 1840, 3, 282, 141, 0, 1836, 1837, 5, 3, 0, 0, 1837, 1839, 3, 282, 141, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 2, 0, 0, 1844, 107, 1, 0, 0, 0, 1845, 1846, 5, 1, 0, 0, 1846, 1851, 3, 278, 139, 0, 1847, 1848, 5, 3, 0, 0, 1848, 1850, 3, 278, 139, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 2, 0, 0, 1855, 109, 1, 0, 0, 0, 1856, 1857, 5, 1, 0, 0, 1857, 1862, 3, 298, 149, 0, 1858, 1859, 5, 3, 0, 0, 1859, 1861, 3, 298, 149, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1864, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1866, 5, 2, 0, 0, 1866, 111, 1, 0, 0, 0, 1867, 1869, 3, 256, 128, 0, 1868, 1870, 3, 286, 143, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1939, 1, 0, 0, 0, 1871, 1872, 5, 1, 0, 0, 1872, 1873, 3, 22, 11, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1939, 1, 0, 0, 0, 1875, 1876, 5, 285, 0, 0, 1876, 1877, 5, 1, 0, 0, 1877, 1882, 3, 138, 69, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 138, 69, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 5, 2, 0, 0, 1886, 1887, 5, 304, 0, 0, 1887, 1889, 5, 196, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1939, 1, 0, 0, 0, 1890, 1891, 5, 149, 0, 0, 1891, 1892, 5, 1, 0, 0, 1892, 1893, 3, 22, 11, 0, 1893, 1894, 5, 2, 0, 0, 1894, 1939, 1, 0, 0, 0, 1895, 1896, 5, 260, 0, 0, 1896, 1897, 5, 1, 0, 0, 1897, 1898, 3, 124, 62, 0, 1898, 1899, 5, 2, 0, 0, 1899, 1939, 1, 0, 0, 0, 1900, 1901, 5, 1, 0, 0, 1901, 1902, 3, 74, 37, 0, 1902, 1903, 5, 2, 0, 0, 1903, 1939, 1, 0, 0, 0, 1904, 1905, 5, 142, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1907, 3, 148, 74, 0, 1907, 1908, 5, 45, 0, 0, 1908, 1909, 5, 1, 0, 0, 1909, 1914, 3, 114, 57, 0, 1910, 1911, 5, 3, 0, 0, 1911, 1913, 3, 114, 57, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1917, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1917, 1929, 5, 2, 0, 0, 1918, 1919, 5, 210, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 116, 58, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1930, 1, 0, 0, 0, 1923, 1924, 5, 210, 0, 0, 1924, 1925, 5, 70, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 122, 61, 0, 1927, 1928, 5, 2, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1918, 1, 0, 0, 0, 1929, 1923, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1934, 1, 0, 0, 0, 1931, 1932, 7, 14, 0, 0, 1932, 1933, 5, 190, 0, 0, 1933, 1935, 5, 89, 0, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 2, 0, 0, 1937, 1939, 1, 0, 0, 0, 1938, 1867, 1, 0, 0, 0, 1938, 1871, 1, 0, 0, 0, 1938, 1875, 1, 0, 0, 0, 1938, 1890, 1, 0, 0, 0, 1938, 1895, 1, 0, 0, 0, 1938, 1900, 1, 0, 0, 0, 1938, 1904, 1, 0, 0, 0, 1939, 113, 1, 0, 0, 0, 1940, 1941, 3, 298, 149, 0, 1941, 1942, 5, 103, 0, 0, 1942, 1943, 5, 196, 0, 0, 1943, 2018, 1, 0, 0, 0, 1944, 1945, 3, 298, 149, 0, 1945, 1948, 3, 186, 93, 0, 1946, 1947, 5, 205, 0, 0, 1947, 1949, 3, 170, 85, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1954, 1, 0, 0, 0, 1950, 1951, 3, 158, 79, 0, 1951, 1952, 5, 190, 0, 0, 1952, 1953, 5, 85, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1950, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1960, 1, 0, 0, 0, 1956, 1957, 3, 158, 79, 0, 1957, 1958, 5, 190, 0, 0, 1958, 1959, 5, 89, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1956, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2018, 1, 0, 0, 0, 1962, 1963, 3, 298, 149, 0, 1963, 1964, 3, 186, 93, 0, 1964, 1965, 5, 104, 0, 0, 1965, 1968, 3, 152, 76, 0, 1966, 1967, 5, 205, 0, 0, 1967, 1969, 3, 170, 85, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1973, 1, 0, 0, 0, 1970, 1971, 3, 160, 80, 0, 1971, 1972, 5, 308, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1970, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1982, 1, 0, 0, 0, 1975, 1976, 7, 15, 0, 0, 1976, 1980, 5, 218, 0, 0, 1977, 1978, 5, 190, 0, 0, 1978, 1979, 5, 242, 0, 0, 1979, 1981, 5, 264, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1975, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1988, 1, 0, 0, 0, 1984, 1985, 3, 162, 81, 0, 1985, 1986, 5, 190, 0, 0, 1986, 1987, 5, 85, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1984, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1994, 1, 0, 0, 0, 1990, 1991, 3, 162, 81, 0, 1991, 1992, 5, 190, 0, 0, 1992, 1993, 5, 89, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1990, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2018, 1, 0, 0, 0, 1996, 1998, 5, 173, 0, 0, 1997, 1999, 5, 205, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 3, 170, 85, 0, 2001, 2002, 5, 28, 0, 0, 2002, 2004, 3, 298, 149, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 5, 45, 0, 0, 2006, 2007, 5, 1, 0, 0, 2007, 2012, 3, 114, 57, 0, 2008, 2009, 5, 3, 0, 0, 2009, 2011, 3, 114, 57, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2014, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2016, 5, 2, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 1940, 1, 0, 0, 0, 2017, 1944, 1, 0, 0, 0, 2017, 1962, 1, 0, 0, 0, 2017, 1996, 1, 0, 0, 0, 2018, 115, 1, 0, 0, 0, 2019, 2045, 3, 118, 59, 0, 2020, 2021, 3, 118, 59, 0, 2021, 2022, 7, 16, 0, 0, 2022, 2023, 3, 120, 60, 0, 2023, 2045, 1, 0, 0, 0, 2024, 2025, 3, 120, 60, 0, 2025, 2026, 5, 281, 0, 0, 2026, 2031, 3, 120, 60, 0, 2027, 2028, 5, 281, 0, 0, 2028, 2030, 3, 120, 60, 0, 2029, 2027, 1, 0, 0, 0, 2030, 2033, 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2045, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2035, 3, 120, 60, 0, 2035, 2036, 5, 54, 0, 0, 2036, 2041, 3, 120, 60, 0, 2037, 2038, 5, 54, 0, 0, 2038, 2040, 3, 120, 60, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2043, 1, 0, 0, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2045, 1, 0, 0, 0, 2043, 2041, 1, 0, 0, 0, 2044, 2019, 1, 0, 0, 0, 2044, 2020, 1, 0, 0, 0, 2044, 2024, 1, 0, 0, 0, 2044, 2034, 1, 0, 0, 0, 2045, 117, 1, 0, 0, 0, 2046, 2047, 3, 298, 149, 0, 2047, 119, 1, 0, 0, 0, 2048, 2054, 3, 118, 59, 0, 2049, 2050, 5, 1, 0, 0, 2050, 2051, 3, 116, 58, 0, 2051, 2052, 5, 2, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 2048, 1, 0, 0, 0, 2053, 2049, 1, 0, 0, 0, 2054, 121, 1, 0, 0, 0, 2055, 2058, 7, 16, 0, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 7, 17, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2066, 1, 0, 0, 0, 2060, 2063, 7, 17, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 7, 16, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2055, 1, 0, 0, 0, 2065, 2060, 1, 0, 0, 0, 2066, 123, 1, 0, 0, 0, 2067, 2068, 3, 274, 137, 0, 2068, 2077, 5, 1, 0, 0, 2069, 2074, 3, 126, 63, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 3, 126, 63, 0, 2072, 2070, 1, 0, 0, 0, 2073, 2076, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2077, 2069, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2088, 1, 0, 0, 0, 2079, 2080, 5, 52, 0, 0, 2080, 2085, 3, 136, 68, 0, 2081, 2082, 5, 3, 0, 0, 2082, 2084, 3, 136, 68, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2079, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 5, 2, 0, 0, 2091, 125, 1, 0, 0, 0, 2092, 2093, 3, 298, 149, 0, 2093, 2094, 5, 6, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2092, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2100, 1, 0, 0, 0, 2097, 2101, 3, 128, 64, 0, 2098, 2101, 3, 132, 66, 0, 2099, 2101, 3, 138, 69, 0, 2100, 2097, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 127, 1, 0, 0, 0, 2102, 2120, 3, 130, 65, 0, 2103, 2104, 5, 201, 0, 0, 2104, 2118, 5, 36, 0, 0, 2105, 2114, 5, 1, 0, 0, 2106, 2111, 3, 138, 69, 0, 2107, 2108, 5, 3, 0, 0, 2108, 2110, 3, 138, 69, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2106, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2119, 5, 2, 0, 0, 2117, 2119, 3, 138, 69, 0, 2118, 2105, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2103, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2128, 1, 0, 0, 0, 2122, 2123, 5, 217, 0, 0, 2123, 2124, 5, 300, 0, 0, 2124, 2129, 5, 85, 0, 0, 2125, 2126, 5, 144, 0, 0, 2126, 2127, 5, 300, 0, 0, 2127, 2129, 5, 85, 0, 0, 2128, 2122, 1, 0, 0, 0, 2128, 2125, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2146, 1, 0, 0, 0, 2130, 2131, 5, 195, 0, 0, 2131, 2144, 5, 36, 0, 0, 2132, 2133, 5, 1, 0, 0, 2133, 2138, 3, 50, 25, 0, 2134, 2135, 5, 3, 0, 0, 2135, 2137, 3, 50, 25, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2140, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2142, 5, 2, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2145, 3, 50, 25, 0, 2144, 2132, 1, 0, 0, 0, 2144, 2143, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2130, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 129, 1, 0, 0, 0, 2148, 2149, 5, 260, 0, 0, 2149, 2150, 5, 1, 0, 0, 2150, 2151, 3, 258, 129, 0, 2151, 2159, 5, 2, 0, 0, 2152, 2154, 5, 28, 0, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 3, 298, 149, 0, 2156, 2158, 3, 110, 55, 0, 2157, 2156, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2153, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2175, 1, 0, 0, 0, 2161, 2162, 5, 260, 0, 0, 2162, 2163, 5, 1, 0, 0, 2163, 2164, 3, 22, 11, 0, 2164, 2172, 5, 2, 0, 0, 2165, 2167, 5, 28, 0, 0, 2166, 2165, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 3, 298, 149, 0, 2169, 2171, 3, 110, 55, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2166, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2148, 1, 0, 0, 0, 2174, 2161, 1, 0, 0, 0, 2175, 131, 1, 0, 0, 0, 2176, 2177, 5, 77, 0, 0, 2177, 2178, 5, 1, 0, 0, 2178, 2183, 3, 134, 67, 0, 2179, 2180, 5, 3, 0, 0, 2180, 2182, 3, 134, 67, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 5, 2, 0, 0, 2187, 2195, 1, 0, 0, 0, 2188, 2189, 5, 41, 0, 0, 2189, 2190, 5, 1, 0, 0, 2190, 2191, 5, 183, 0, 0, 2191, 2192, 5, 28, 0, 0, 2192, 2193, 5, 77, 0, 0, 2193, 2195, 5, 2, 0, 0, 2194, 2176, 1, 0, 0, 0, 2194, 2188, 1, 0, 0, 0, 2195, 133, 1, 0, 0, 0, 2196, 2198, 3, 298, 149, 0, 2197, 2199, 3, 186, 93, 0, 2198, 2197, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 135, 1, 0, 0, 0, 2200, 2201, 5, 1, 0, 0, 2201, 2202, 3, 284, 142, 0, 2202, 2203, 5, 3, 0, 0, 2203, 2208, 3, 284, 142, 0, 2204, 2205, 5, 3, 0, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2204, 1, 0, 0, 0, 2207, 2210, 1, 0, 0, 0, 2208, 2206, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2211, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2211, 2212, 5, 2, 0, 0, 2212, 137, 1, 0, 0, 0, 2213, 2214, 3, 140, 70, 0, 2214, 139, 1, 0, 0, 0, 2215, 2216, 6, 70, -1, 0, 2216, 2218, 3, 144, 72, 0, 2217, 2219, 3, 142, 71, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2223, 1, 0, 0, 0, 2220, 2221, 5, 182, 0, 0, 2221, 2223, 3, 140, 70, 3, 2222, 2215, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2223, 2232, 1, 0, 0, 0, 2224, 2225, 10, 2, 0, 0, 2225, 2226, 5, 25, 0, 0, 2226, 2231, 3, 140, 70, 3, 2227, 2228, 10, 1, 0, 0, 2228, 2229, 5, 194, 0, 0, 2229, 2231, 3, 140, 70, 2, 2230, 2224, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 2234, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 141, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 3, 174, 87, 0, 2236, 2237, 3, 144, 72, 0, 2237, 2297, 1, 0, 0, 0, 2238, 2239, 3, 174, 87, 0, 2239, 2240, 3, 176, 88, 0, 2240, 2241, 5, 1, 0, 0, 2241, 2242, 3, 22, 11, 0, 2242, 2243, 5, 2, 0, 0, 2243, 2297, 1, 0, 0, 0, 2244, 2246, 5, 182, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 5, 34, 0, 0, 2248, 2249, 3, 144, 72, 0, 2249, 2250, 5, 25, 0, 0, 2250, 2251, 3, 144, 72, 0, 2251, 2297, 1, 0, 0, 0, 2252, 2254, 5, 182, 0, 0, 2253, 2252, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2256, 5, 122, 0, 0, 2256, 2257, 5, 1, 0, 0, 2257, 2262, 3, 138, 69, 0, 2258, 2259, 5, 3, 0, 0, 2259, 2261, 3, 138, 69, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2265, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2297, 1, 0, 0, 0, 2267, 2269, 5, 182, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 5, 122, 0, 0, 2271, 2272, 5, 1, 0, 0, 2272, 2273, 3, 22, 11, 0, 2273, 2274, 5, 2, 0, 0, 2274, 2297, 1, 0, 0, 0, 2275, 2277, 5, 182, 0, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2279, 5, 154, 0, 0, 2279, 2282, 3, 144, 72, 0, 2280, 2281, 5, 90, 0, 0, 2281, 2283, 3, 144, 72, 0, 2282, 2280, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2297, 1, 0, 0, 0, 2284, 2286, 5, 133, 0, 0, 2285, 2287, 5, 182, 0, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2297, 5, 183, 0, 0, 2289, 2291, 5, 133, 0, 0, 2290, 2292, 5, 182, 0, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2294, 5, 79, 0, 0, 2294, 2295, 5, 105, 0, 0, 2295, 2297, 3, 144, 72, 0, 2296, 2235, 1, 0, 0, 0, 2296, 2238, 1, 0, 0, 0, 2296, 2245, 1, 0, 0, 0, 2296, 2253, 1, 0, 0, 0, 2296, 2268, 1, 0, 0, 0, 2296, 2276, 1, 0, 0, 0, 2296, 2284, 1, 0, 0, 0, 2296, 2289, 1, 0, 0, 0, 2297, 143, 1, 0, 0, 0, 2298, 2299, 6, 72, -1, 0, 2299, 2303, 3, 146, 73, 0, 2300, 2301, 7, 18, 0, 0, 2301, 2303, 3, 144, 72, 4, 2302, 2298, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2318, 1, 0, 0, 0, 2304, 2305, 10, 3, 0, 0, 2305, 2306, 7, 19, 0, 0, 2306, 2317, 3, 144, 72, 4, 2307, 2308, 10, 2, 0, 0, 2308, 2309, 7, 18, 0, 0, 2309, 2317, 3, 144, 72, 3, 2310, 2311, 10, 1, 0, 0, 2311, 2312, 5, 323, 0, 0, 2312, 2317, 3, 144, 72, 2, 2313, 2314, 10, 5, 0, 0, 2314, 2315, 5, 30, 0, 0, 2315, 2317, 3, 172, 86, 0, 2316, 2304, 1, 0, 0, 0, 2316, 2307, 1, 0, 0, 0, 2316, 2310, 1, 0, 0, 0, 2316, 2313, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 145, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2322, 6, 73, -1, 0, 2322, 2775, 5, 183, 0, 0, 2323, 2775, 3, 180, 90, 0, 2324, 2325, 3, 298, 149, 0, 2325, 2326, 3, 170, 85, 0, 2326, 2775, 1, 0, 0, 0, 2327, 2328, 5, 82, 0, 0, 2328, 2329, 5, 213, 0, 0, 2329, 2775, 3, 170, 85, 0, 2330, 2775, 3, 300, 150, 0, 2331, 2775, 3, 178, 89, 0, 2332, 2775, 3, 170, 85, 0, 2333, 2775, 5, 328, 0, 0, 2334, 2775, 5, 324, 0, 0, 2335, 2336, 5, 211, 0, 0, 2336, 2337, 5, 1, 0, 0, 2337, 2338, 3, 144, 72, 0, 2338, 2339, 5, 122, 0, 0, 2339, 2340, 3, 144, 72, 0, 2340, 2341, 5, 2, 0, 0, 2341, 2775, 1, 0, 0, 0, 2342, 2343, 5, 1, 0, 0, 2343, 2346, 3, 138, 69, 0, 2344, 2345, 5, 3, 0, 0, 2345, 2347, 3, 138, 69, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 5, 2, 0, 0, 2351, 2775, 1, 0, 0, 0, 2352, 2353, 5, 239, 0, 0, 2353, 2354, 5, 1, 0, 0, 2354, 2359, 3, 138, 69, 0, 2355, 2356, 5, 3, 0, 0, 2356, 2358, 3, 138, 69, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2361, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2362, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2363, 5, 2, 0, 0, 2363, 2775, 1, 0, 0, 0, 2364, 2365, 5, 156, 0, 0, 2365, 2367, 5, 1, 0, 0, 2366, 2368, 3, 70, 35, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2372, 3, 138, 69, 0, 2370, 2371, 5, 3, 0, 0, 2371, 2373, 3, 170, 85, 0, 2372, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2377, 1, 0, 0, 0, 2374, 2375, 5, 190, 0, 0, 2375, 2376, 5, 200, 0, 0, 2376, 2378, 3, 86, 43, 0, 2377, 2374, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2380, 5, 2, 0, 0, 2380, 2381, 5, 305, 0, 0, 2381, 2382, 5, 114, 0, 0, 2382, 2383, 5, 1, 0, 0, 2383, 2384, 5, 195, 0, 0, 2384, 2385, 5, 36, 0, 0, 2385, 2390, 3, 50, 25, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 3, 50, 25, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 2, 0, 0, 2394, 2396, 1, 0, 0, 0, 2395, 2397, 3, 194, 97, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2775, 1, 0, 0, 0, 2398, 2400, 3, 166, 83, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 3, 274, 137, 0, 2402, 2406, 5, 1, 0, 0, 2403, 2404, 3, 298, 149, 0, 2404, 2405, 5, 4, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2403, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2409, 5, 320, 0, 0, 2409, 2411, 5, 2, 0, 0, 2410, 2412, 3, 194, 97, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2415, 3, 198, 99, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2775, 1, 0, 0, 0, 2416, 2418, 3, 166, 83, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2420, 3, 274, 137, 0, 2420, 2432, 5, 1, 0, 0, 2421, 2423, 3, 70, 35, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2429, 3, 138, 69, 0, 2425, 2426, 5, 3, 0, 0, 2426, 2428, 3, 138, 69, 0, 2427, 2425, 1, 0, 0, 0, 2428, 2431, 1, 0, 0, 0, 2429, 2427, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2422, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2444, 1, 0, 0, 0, 2434, 2435, 5, 195, 0, 0, 2435, 2436, 5, 36, 0, 0, 2436, 2441, 3, 50, 25, 0, 2437, 2438, 5, 3, 0, 0, 2438, 2440, 3, 50, 25, 0, 2439, 2437, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2434, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 5, 2, 0, 0, 2447, 2449, 3, 194, 97, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2454, 1, 0, 0, 0, 2450, 2452, 3, 168, 84, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 3, 198, 99, 0, 2454, 2451, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2775, 1, 0, 0, 0, 2456, 2457, 3, 298, 149, 0, 2457, 2458, 3, 198, 99, 0, 2458, 2775, 1, 0, 0, 0, 2459, 2460, 3, 298, 149, 0, 2460, 2461, 5, 7, 0, 0, 2461, 2462, 3, 138, 69, 0, 2462, 2775, 1, 0, 0, 0, 2463, 2472, 5, 1, 0, 0, 2464, 2469, 3, 298, 149, 0, 2465, 2466, 5, 3, 0, 0, 2466, 2468, 3, 298, 149, 0, 2467, 2465, 1, 0, 0, 0, 2468, 2471, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2473, 1, 0, 0, 0, 2471, 2469, 1, 0, 0, 0, 2472, 2464, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 5, 2, 0, 0, 2475, 2476, 5, 7, 0, 0, 2476, 2775, 3, 138, 69, 0, 2477, 2478, 5, 1, 0, 0, 2478, 2479, 3, 22, 11, 0, 2479, 2480, 5, 2, 0, 0, 2480, 2775, 1, 0, 0, 0, 2481, 2482, 5, 94, 0, 0, 2482, 2483, 5, 1, 0, 0, 2483, 2484, 3, 22, 11, 0, 2484, 2485, 5, 2, 0, 0, 2485, 2775, 1, 0, 0, 0, 2486, 2487, 5, 40, 0, 0, 2487, 2489, 3, 138, 69, 0, 2488, 2490, 3, 192, 96, 0, 2489, 2488, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2494, 5, 84, 0, 0, 2494, 2496, 3, 138, 69, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 5, 88, 0, 0, 2498, 2775, 1, 0, 0, 0, 2499, 2501, 5, 40, 0, 0, 2500, 2502, 3, 192, 96, 0, 2501, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2507, 1, 0, 0, 0, 2505, 2506, 5, 84, 0, 0, 2506, 2508, 3, 138, 69, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2510, 5, 88, 0, 0, 2510, 2775, 1, 0, 0, 0, 2511, 2512, 5, 41, 0, 0, 2512, 2513, 5, 1, 0, 0, 2513, 2514, 3, 138, 69, 0, 2514, 2515, 5, 28, 0, 0, 2515, 2516, 3, 186, 93, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2775, 1, 0, 0, 0, 2518, 2519, 5, 275, 0, 0, 2519, 2520, 5, 1, 0, 0, 2520, 2521, 3, 138, 69, 0, 2521, 2522, 5, 28, 0, 0, 2522, 2523, 3, 186, 93, 0, 2523, 2524, 5, 2, 0, 0, 2524, 2775, 1, 0, 0, 0, 2525, 2526, 5, 27, 0, 0, 2526, 2535, 5, 8, 0, 0, 2527, 2532, 3, 138, 69, 0, 2528, 2529, 5, 3, 0, 0, 2529, 2531, 3, 138, 69, 0, 2530, 2528, 1, 0, 0, 0, 2531, 2534, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2536, 1, 0, 0, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2527, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2775, 5, 9, 0, 0, 2538, 2775, 3, 280, 140, 0, 2539, 2775, 5, 58, 0, 0, 2540, 2544, 5, 62, 0, 0, 2541, 2542, 5, 1, 0, 0, 2542, 2543, 5, 329, 0, 0, 2543, 2545, 5, 2, 0, 0, 2544, 2541, 1, 0, 0, 0, 2544, 2545, 1, 0, 0, 0, 2545, 2775, 1, 0, 0, 0, 2546, 2550, 5, 63, 0, 0, 2547, 2548, 5, 1, 0, 0, 2548, 2549, 5, 329, 0, 0, 2549, 2551, 5, 2, 0, 0, 2550, 2547, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2775, 1, 0, 0, 0, 2552, 2556, 5, 158, 0, 0, 2553, 2554, 5, 1, 0, 0, 2554, 2555, 5, 329, 0, 0, 2555, 2557, 5, 2, 0, 0, 2556, 2553, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2775, 1, 0, 0, 0, 2558, 2562, 5, 159, 0, 0, 2559, 2560, 5, 1, 0, 0, 2560, 2561, 5, 329, 0, 0, 2561, 2563, 5, 2, 0, 0, 2562, 2559, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2775, 1, 0, 0, 0, 2564, 2775, 5, 64, 0, 0, 2565, 2775, 5, 57, 0, 0, 2566, 2775, 5, 61, 0, 0, 2567, 2775, 5, 59, 0, 0, 2568, 2569, 5, 272, 0, 0, 2569, 2577, 5, 1, 0, 0, 2570, 2572, 3, 84, 42, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 144, 72, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2578, 5, 105, 0, 0, 2577, 2571, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2580, 3, 144, 72, 0, 2580, 2581, 5, 2, 0, 0, 2581, 2775, 1, 0, 0, 0, 2582, 2583, 5, 272, 0, 0, 2583, 2584, 5, 1, 0, 0, 2584, 2585, 3, 144, 72, 0, 2585, 2586, 5, 3, 0, 0, 2586, 2587, 3, 144, 72, 0, 2587, 2588, 5, 2, 0, 0, 2588, 2775, 1, 0, 0, 0, 2589, 2590, 5, 258, 0, 0, 2590, 2591, 5, 1, 0, 0, 2591, 2592, 3, 144, 72, 0, 2592, 2593, 5, 105, 0, 0, 2593, 2596, 3, 144, 72, 0, 2594, 2595, 5, 103, 0, 0, 2595, 2597, 3, 144, 72, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 5, 2, 0, 0, 2599, 2775, 1, 0, 0, 0, 2600, 2601, 5, 181, 0, 0, 2601, 2602, 5, 1, 0, 0, 2602, 2605, 3, 144, 72, 0, 2603, 2604, 5, 3, 0, 0, 2604, 2606, 3, 184, 92, 0, 2605, 2603, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2775, 1, 0, 0, 0, 2609, 2610, 5, 96, 0, 0, 2610, 2611, 5, 1, 0, 0, 2611, 2612, 3, 298, 149, 0, 2612, 2613, 5, 105, 0, 0, 2613, 2614, 3, 144, 72, 0, 2614, 2615, 5, 2, 0, 0, 2615, 2775, 1, 0, 0, 0, 2616, 2617, 5, 1, 0, 0, 2617, 2618, 3, 138, 69, 0, 2618, 2619, 5, 2, 0, 0, 2619, 2775, 1, 0, 0, 0, 2620, 2621, 5, 115, 0, 0, 2621, 2630, 5, 1, 0, 0, 2622, 2627, 3, 284, 142, 0, 2623, 2624, 5, 3, 0, 0, 2624, 2626, 3, 284, 142, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2631, 1, 0, 0, 0, 2629, 2627, 1, 0, 0, 0, 2630, 2622, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2775, 5, 2, 0, 0, 2633, 2634, 5, 139, 0, 0, 2634, 2635, 5, 1, 0, 0, 2635, 2640, 3, 148, 74, 0, 2636, 2637, 3, 156, 78, 0, 2637, 2638, 5, 190, 0, 0, 2638, 2639, 5, 89, 0, 0, 2639, 2641, 1, 0, 0, 0, 2640, 2636, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 5, 2, 0, 0, 2643, 2775, 1, 0, 0, 0, 2644, 2645, 5, 143, 0, 0, 2645, 2646, 5, 1, 0, 0, 2646, 2649, 3, 148, 74, 0, 2647, 2648, 5, 231, 0, 0, 2648, 2650, 3, 186, 93, 0, 2649, 2647, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2655, 1, 0, 0, 0, 2651, 2652, 3, 158, 79, 0, 2652, 2653, 5, 190, 0, 0, 2653, 2654, 5, 85, 0, 0, 2654, 2656, 1, 0, 0, 0, 2655, 2651, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2661, 1, 0, 0, 0, 2657, 2658, 3, 158, 79, 0, 2658, 2659, 5, 190, 0, 0, 2659, 2660, 5, 89, 0, 0, 2660, 2662, 1, 0, 0, 0, 2661, 2657, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 5, 2, 0, 0, 2664, 2775, 1, 0, 0, 0, 2665, 2666, 5, 141, 0, 0, 2666, 2667, 5, 1, 0, 0, 2667, 2674, 3, 148, 74, 0, 2668, 2669, 5, 231, 0, 0, 2669, 2672, 3, 186, 93, 0, 2670, 2671, 5, 104, 0, 0, 2671, 2673, 3, 152, 76, 0, 2672, 2670, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2668, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2679, 1, 0, 0, 0, 2676, 2677, 3, 160, 80, 0, 2677, 2678, 5, 308, 0, 0, 2678, 2680, 1, 0, 0, 0, 2679, 2676, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2688, 1, 0, 0, 0, 2681, 2682, 7, 15, 0, 0, 2682, 2686, 5, 218, 0, 0, 2683, 2684, 5, 190, 0, 0, 2684, 2685, 5, 242, 0, 0, 2685, 2687, 5, 264, 0, 0, 2686, 2683, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2689, 1, 0, 0, 0, 2688, 2681, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2694, 1, 0, 0, 0, 2690, 2691, 3, 162, 81, 0, 2691, 2692, 5, 190, 0, 0, 2692, 2693, 5, 85, 0, 0, 2693, 2695, 1, 0, 0, 0, 2694, 2690, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2700, 1, 0, 0, 0, 2696, 2697, 3, 162, 81, 0, 2697, 2698, 5, 190, 0, 0, 2698, 2699, 5, 89, 0, 0, 2699, 2701, 1, 0, 0, 0, 2700, 2696, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2703, 5, 2, 0, 0, 2703, 2775, 1, 0, 0, 0, 2704, 2705, 5, 140, 0, 0, 2705, 2734, 5, 1, 0, 0, 2706, 2711, 3, 164, 82, 0, 2707, 2708, 5, 3, 0, 0, 2708, 2710, 3, 164, 82, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2713, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2720, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2714, 2715, 5, 183, 0, 0, 2715, 2716, 5, 190, 0, 0, 2716, 2721, 5, 183, 0, 0, 2717, 2718, 5, 18, 0, 0, 2718, 2719, 5, 190, 0, 0, 2719, 2721, 5, 183, 0, 0, 2720, 2714, 1, 0, 0, 0, 2720, 2717, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2732, 1, 0, 0, 0, 2722, 2723, 5, 304, 0, 0, 2723, 2725, 5, 282, 0, 0, 2724, 2726, 5, 146, 0, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2733, 1, 0, 0, 0, 2727, 2728, 5, 306, 0, 0, 2728, 2730, 5, 282, 0, 0, 2729, 2731, 5, 146, 0, 0, 2730, 2729, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2733, 1, 0, 0, 0, 2732, 2722, 1, 0, 0, 0, 2732, 2727, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2735, 1, 0, 0, 0, 2734, 2706, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2742, 1, 0, 0, 0, 2736, 2737, 5, 231, 0, 0, 2737, 2740, 3, 186, 93, 0, 2738, 2739, 5, 104, 0, 0, 2739, 2741, 3, 152, 76, 0, 2740, 2738, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2743, 1, 0, 0, 0, 2742, 2736, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2775, 5, 2, 0, 0, 2745, 2746, 5, 138, 0, 0, 2746, 2763, 5, 1, 0, 0, 2747, 2752, 3, 150, 75, 0, 2748, 2749, 5, 3, 0, 0, 2749, 2751, 3, 150, 75, 0, 2750, 2748, 1, 0, 0, 0, 2751, 2754, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2761, 1, 0, 0, 0, 2754, 2752, 1, 0, 0, 0, 2755, 2756, 5, 183, 0, 0, 2756, 2757, 5, 190, 0, 0, 2757, 2762, 5, 183, 0, 0, 2758, 2759, 5, 18, 0, 0, 2759, 2760, 5, 190, 0, 0, 2760, 2762, 5, 183, 0, 0, 2761, 2755, 1, 0, 0, 0, 2761, 2758, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2764, 1, 0, 0, 0, 2763, 2747, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2771, 1, 0, 0, 0, 2765, 2766, 5, 231, 0, 0, 2766, 2769, 3, 186, 93, 0, 2767, 2768, 5, 104, 0, 0, 2768, 2770, 3, 152, 76, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2765, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 5, 2, 0, 0, 2774, 2321, 1, 0, 0, 0, 2774, 2323, 1, 0, 0, 0, 2774, 2324, 1, 0, 0, 0, 2774, 2327, 1, 0, 0, 0, 2774, 2330, 1, 0, 0, 0, 2774, 2331, 1, 0, 0, 0, 2774, 2332, 1, 0, 0, 0, 2774, 2333, 1, 0, 0, 0, 2774, 2334, 1, 0, 0, 0, 2774, 2335, 1, 0, 0, 0, 2774, 2342, 1, 0, 0, 0, 2774, 2352, 1, 0, 0, 0, 2774, 2364, 1, 0, 0, 0, 2774, 2399, 1, 0, 0, 0, 2774, 2417, 1, 0, 0, 0, 2774, 2456, 1, 0, 0, 0, 2774, 2459, 1, 0, 0, 0, 2774, 2463, 1, 0, 0, 0, 2774, 2477, 1, 0, 0, 0, 2774, 2481, 1, 0, 0, 0, 2774, 2486, 1, 0, 0, 0, 2774, 2499, 1, 0, 0, 0, 2774, 2511, 1, 0, 0, 0, 2774, 2518, 1, 0, 0, 0, 2774, 2525, 1, 0, 0, 0, 2774, 2538, 1, 0, 0, 0, 2774, 2539, 1, 0, 0, 0, 2774, 2540, 1, 0, 0, 0, 2774, 2546, 1, 0, 0, 0, 2774, 2552, 1, 0, 0, 0, 2774, 2558, 1, 0, 0, 0, 2774, 2564, 1, 0, 0, 0, 2774, 2565, 1, 0, 0, 0, 2774, 2566, 1, 0, 0, 0, 2774, 2567, 1, 0, 0, 0, 2774, 2568, 1, 0, 0, 0, 2774, 2582, 1, 0, 0, 0, 2774, 2589, 1, 0, 0, 0, 2774, 2600, 1, 0, 0, 0, 2774, 2609, 1, 0, 0, 0, 2774, 2616, 1, 0, 0, 0, 2774, 2620, 1, 0, 0, 0, 2774, 2633, 1, 0, 0, 0, 2774, 2644, 1, 0, 0, 0, 2774, 2665, 1, 0, 0, 0, 2774, 2704, 1, 0, 0, 0, 2774, 2745, 1, 0, 0, 0, 2775, 2786, 1, 0, 0, 0, 2776, 2777, 10, 24, 0, 0, 2777, 2778, 5, 8, 0, 0, 2778, 2779, 3, 144, 72, 0, 2779, 2780, 5, 9, 0, 0, 2780, 2785, 1, 0, 0, 0, 2781, 2782, 10, 22, 0, 0, 2782, 2783, 5, 4, 0, 0, 2783, 2785, 3, 298, 149, 0, 2784, 2776, 1, 0, 0, 0, 2784, 2781, 1, 0, 0, 0, 2785, 2788, 1, 0, 0, 0, 2786, 2784, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 147, 1, 0, 0, 0, 2788, 2786, 1, 0, 0, 0, 2789, 2790, 3, 150, 75, 0, 2790, 2791, 5, 3, 0, 0, 2791, 2794, 3, 170, 85, 0, 2792, 2793, 5, 28, 0, 0, 2793, 2795, 3, 298, 149, 0, 2794, 2792, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2805, 1, 0, 0, 0, 2796, 2797, 5, 203, 0, 0, 2797, 2802, 3, 154, 77, 0, 2798, 2799, 5, 3, 0, 0, 2799, 2801, 3, 154, 77, 0, 2800, 2798, 1, 0, 0, 0, 2801, 2804, 1, 0, 0, 0, 2802, 2800, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2806, 1, 0, 0, 0, 2804, 2802, 1, 0, 0, 0, 2805, 2796, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 149, 1, 0, 0, 0, 2807, 2810, 3, 138, 69, 0, 2808, 2809, 5, 104, 0, 0, 2809, 2811, 3, 152, 76, 0, 2810, 2808, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 151, 1, 0, 0, 0, 2812, 2815, 5, 137, 0, 0, 2813, 2814, 5, 87, 0, 0, 2814, 2816, 7, 20, 0, 0, 2815, 2813, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 153, 1, 0, 0, 0, 2817, 2818, 3, 150, 75, 0, 2818, 2819, 5, 28, 0, 0, 2819, 2820, 3, 298, 149, 0, 2820, 155, 1, 0, 0, 0, 2821, 2822, 7, 21, 0, 0, 2822, 157, 1, 0, 0, 0, 2823, 2828, 5, 89, 0, 0, 2824, 2828, 5, 183, 0, 0, 2825, 2826, 5, 70, 0, 0, 2826, 2828, 3, 138, 69, 0, 2827, 2823, 1, 0, 0, 0, 2827, 2824, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 159, 1, 0, 0, 0, 2829, 2831, 5, 306, 0, 0, 2830, 2832, 5, 27, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2841, 1, 0, 0, 0, 2833, 2835, 5, 304, 0, 0, 2834, 2836, 7, 22, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2839, 5, 27, 0, 0, 2838, 2837, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2841, 1, 0, 0, 0, 2840, 2829, 1, 0, 0, 0, 2840, 2833, 1, 0, 0, 0, 2841, 161, 1, 0, 0, 0, 2842, 2849, 5, 89, 0, 0, 2843, 2849, 5, 183, 0, 0, 2844, 2845, 5, 85, 0, 0, 2845, 2849, 5, 27, 0, 0, 2846, 2847, 5, 85, 0, 0, 2847, 2849, 5, 186, 0, 0, 2848, 2842, 1, 0, 0, 0, 2848, 2843, 1, 0, 0, 0, 2848, 2844, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2849, 163, 1, 0, 0, 0, 2850, 2852, 5, 145, 0, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2854, 3, 138, 69, 0, 2854, 2855, 5, 295, 0, 0, 2855, 2856, 3, 150, 75, 0, 2856, 2862, 1, 0, 0, 0, 2857, 2858, 3, 138, 69, 0, 2858, 2859, 5, 10, 0, 0, 2859, 2860, 3, 150, 75, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2851, 1, 0, 0, 0, 2861, 2857, 1, 0, 0, 0, 2862, 165, 1, 0, 0, 0, 2863, 2864, 7, 23, 0, 0, 2864, 167, 1, 0, 0, 0, 2865, 2866, 5, 120, 0, 0, 2866, 2870, 5, 185, 0, 0, 2867, 2868, 5, 228, 0, 0, 2868, 2870, 5, 185, 0, 0, 2869, 2865, 1, 0, 0, 0, 2869, 2867, 1, 0, 0, 0, 2870, 169, 1, 0, 0, 0, 2871, 2878, 5, 326, 0, 0, 2872, 2875, 5, 327, 0, 0, 2873, 2874, 5, 277, 0, 0, 2874, 2876, 5, 326, 0, 0, 2875, 2873, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2878, 1, 0, 0, 0, 2877, 2871, 1, 0, 0, 0, 2877, 2872, 1, 0, 0, 0, 2878, 171, 1, 0, 0, 0, 2879, 2880, 5, 267, 0, 0, 2880, 2881, 5, 311, 0, 0, 2881, 2886, 3, 180, 90, 0, 2882, 2883, 5, 267, 0, 0, 2883, 2884, 5, 311, 0, 0, 2884, 2886, 3, 170, 85, 0, 2885, 2879, 1, 0, 0, 0, 2885, 2882, 1, 0, 0, 0, 2886, 173, 1, 0, 0, 0, 2887, 2888, 7, 24, 0, 0, 2888, 175, 1, 0, 0, 0, 2889, 2890, 7, 25, 0, 0, 2890, 177, 1, 0, 0, 0, 2891, 2892, 7, 26, 0, 0, 2892, 179, 1, 0, 0, 0, 2893, 2895, 5, 129, 0, 0, 2894, 2896, 7, 18, 0, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2898, 3, 170, 85, 0, 2898, 2901, 3, 182, 91, 0, 2899, 2900, 5, 269, 0, 0, 2900, 2902, 3, 182, 91, 0, 2901, 2899, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 181, 1, 0, 0, 0, 2903, 2904, 7, 27, 0, 0, 2904, 183, 1, 0, 0, 0, 2905, 2906, 7, 28, 0, 0, 2906, 185, 1, 0, 0, 0, 2907, 2908, 6, 93, -1, 0, 2908, 2909, 5, 239, 0, 0, 2909, 2910, 5, 1, 0, 0, 2910, 2915, 3, 188, 94, 0, 2911, 2912, 5, 3, 0, 0, 2912, 2914, 3, 188, 94, 0, 2913, 2911, 1, 0, 0, 0, 2914, 2917, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2918, 1, 0, 0, 0, 2917, 2915, 1, 0, 0, 0, 2918, 2919, 5, 2, 0, 0, 2919, 2999, 1, 0, 0, 0, 2920, 2921, 5, 129, 0, 0, 2921, 2924, 3, 182, 91, 0, 2922, 2923, 5, 269, 0, 0, 2923, 2925, 3, 182, 91, 0, 2924, 2922, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2999, 1, 0, 0, 0, 2926, 2931, 5, 268, 0, 0, 2927, 2928, 5, 1, 0, 0, 2928, 2929, 3, 190, 95, 0, 2929, 2930, 5, 2, 0, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2927, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2936, 1, 0, 0, 0, 2933, 2934, 5, 306, 0, 0, 2934, 2935, 5, 267, 0, 0, 2935, 2937, 5, 311, 0, 0, 2936, 2933, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2999, 1, 0, 0, 0, 2938, 2943, 5, 268, 0, 0, 2939, 2940, 5, 1, 0, 0, 2940, 2941, 3, 190, 95, 0, 2941, 2942, 5, 2, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2939, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2946, 5, 304, 0, 0, 2946, 2947, 5, 267, 0, 0, 2947, 2999, 5, 311, 0, 0, 2948, 2953, 5, 267, 0, 0, 2949, 2950, 5, 1, 0, 0, 2950, 2951, 3, 190, 95, 0, 2951, 2952, 5, 2, 0, 0, 2952, 2954, 1, 0, 0, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2958, 1, 0, 0, 0, 2955, 2956, 5, 306, 0, 0, 2956, 2957, 5, 267, 0, 0, 2957, 2959, 5, 311, 0, 0, 2958, 2955, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2999, 1, 0, 0, 0, 2960, 2965, 5, 267, 0, 0, 2961, 2962, 5, 1, 0, 0, 2962, 2963, 3, 190, 95, 0, 2963, 2964, 5, 2, 0, 0, 2964, 2966, 1, 0, 0, 0, 2965, 2961, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2968, 5, 304, 0, 0, 2968, 2969, 5, 267, 0, 0, 2969, 2999, 5, 311, 0, 0, 2970, 2971, 5, 82, 0, 0, 2971, 2999, 5, 213, 0, 0, 2972, 2973, 5, 27, 0, 0, 2973, 2974, 5, 314, 0, 0, 2974, 2975, 3, 186, 93, 0, 2975, 2976, 5, 316, 0, 0, 2976, 2999, 1, 0, 0, 0, 2977, 2978, 5, 162, 0, 0, 2978, 2979, 5, 314, 0, 0, 2979, 2980, 3, 186, 93, 0, 2980, 2981, 5, 3, 0, 0, 2981, 2982, 3, 186, 93, 0, 2982, 2983, 5, 316, 0, 0, 2983, 2999, 1, 0, 0, 0, 2984, 2996, 3, 298, 149, 0, 2985, 2986, 5, 1, 0, 0, 2986, 2991, 3, 190, 95, 0, 2987, 2988, 5, 3, 0, 0, 2988, 2990, 3, 190, 95, 0, 2989, 2987, 1, 0, 0, 0, 2990, 2993, 1, 0, 0, 0, 2991, 2989, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2991, 1, 0, 0, 0, 2994, 2995, 5, 2, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2985, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2999, 1, 0, 0, 0, 2998, 2907, 1, 0, 0, 0, 2998, 2920, 1, 0, 0, 0, 2998, 2926, 1, 0, 0, 0, 2998, 2938, 1, 0, 0, 0, 2998, 2948, 1, 0, 0, 0, 2998, 2960, 1, 0, 0, 0, 2998, 2970, 1, 0, 0, 0, 2998, 2972, 1, 0, 0, 0, 2998, 2977, 1, 0, 0, 0, 2998, 2984, 1, 0, 0, 0, 2999, 3009, 1, 0, 0, 0, 3000, 3001, 10, 2, 0, 0, 3001, 3005, 5, 27, 0, 0, 3002, 3003, 5, 8, 0, 0, 3003, 3004, 5, 329, 0, 0, 3004, 3006, 5, 9, 0, 0, 3005, 3002, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3008, 1, 0, 0, 0, 3007, 3000, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 187, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3012, 3017, 3, 186, 93, 0, 3013, 3014, 3, 298, 149, 0, 3014, 3015, 3, 186, 93, 0, 3015, 3017, 1, 0, 0, 0, 3016, 3012, 1, 0, 0, 0, 3016, 3013, 1, 0, 0, 0, 3017, 189, 1, 0, 0, 0, 3018, 3021, 5, 329, 0, 0, 3019, 3021, 3, 186, 93, 0, 3020, 3018, 1, 0, 0, 0, 3020, 3019, 1, 0, 0, 0, 3021, 191, 1, 0, 0, 0, 3022, 3023, 5, 300, 0, 0, 3023, 3024, 3, 138, 69, 0, 3024, 3025, 5, 265, 0, 0, 3025, 3026, 3, 138, 69, 0, 3026, 193, 1, 0, 0, 0, 3027, 3028, 5, 99, 0, 0, 3028, 3029, 5, 1, 0, 0, 3029, 3030, 3, 54, 27, 0, 3030, 3031, 5, 2, 0, 0, 3031, 195, 1, 0, 0, 0, 3032, 3033, 5, 300, 0, 0, 3033, 3036, 5, 164, 0, 0, 3034, 3035, 5, 25, 0, 0, 3035, 3037, 3, 138, 69, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3039, 5, 265, 0, 0, 3039, 3040, 5, 287, 0, 0, 3040, 3041, 5, 251, 0, 0, 3041, 3042, 3, 298, 149, 0, 3042, 3043, 5, 312, 0, 0, 3043, 3051, 3, 138, 69, 0, 3044, 3045, 5, 3, 0, 0, 3045, 3046, 3, 298, 149, 0, 3046, 3047, 5, 312, 0, 0, 3047, 3048, 3, 138, 69, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3044, 1, 0, 0, 0, 3050, 3053, 1, 0, 0, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3097, 1, 0, 0, 0, 3053, 3051, 1, 0, 0, 0, 3054, 3055, 5, 300, 0, 0, 3055, 3058, 5, 164, 0, 0, 3056, 3057, 5, 25, 0, 0, 3057, 3059, 3, 138, 69, 0, 3058, 3056, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3061, 5, 265, 0, 0, 3061, 3097, 5, 73, 0, 0, 3062, 3063, 5, 300, 0, 0, 3063, 3064, 5, 182, 0, 0, 3064, 3067, 5, 164, 0, 0, 3065, 3066, 5, 25, 0, 0, 3066, 3068, 3, 138, 69, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 5, 265, 0, 0, 3070, 3082, 5, 127, 0, 0, 3071, 3072, 5, 1, 0, 0, 3072, 3077, 3, 298, 149, 0, 3073, 3074, 5, 3, 0, 0, 3074, 3076, 3, 298, 149, 0, 3075, 3073, 1, 0, 0, 0, 3076, 3079, 1, 0, 0, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3077, 1, 0, 0, 0, 3080, 3081, 5, 2, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3071, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3085, 5, 296, 0, 0, 3085, 3086, 5, 1, 0, 0, 3086, 3091, 3, 138, 69, 0, 3087, 3088, 5, 3, 0, 0, 3088, 3090, 3, 138, 69, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3093, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3094, 1, 0, 0, 0, 3093, 3091, 1, 0, 0, 0, 3094, 3095, 5, 2, 0, 0, 3095, 3097, 1, 0, 0, 0, 3096, 3032, 1, 0, 0, 0, 3096, 3054, 1, 0, 0, 0, 3096, 3062, 1, 0, 0, 0, 3097, 197, 1, 0, 0, 0, 3098, 3104, 5, 199, 0, 0, 3099, 3105, 3, 298, 149, 0, 3100, 3101, 5, 1, 0, 0, 3101, 3102, 3, 66, 33, 0, 3102, 3103, 5, 2, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3099, 1, 0, 0, 0, 3104, 3100, 1, 0, 0, 0, 3105, 199, 1, 0, 0, 0, 3106, 3107, 5, 168, 0, 0, 3107, 3112, 3, 92, 46, 0, 3108, 3109, 5, 3, 0, 0, 3109, 3111, 3, 92, 46, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3116, 1, 0, 0, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3106, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3121, 3, 202, 101, 0, 3118, 3119, 5, 21, 0, 0, 3119, 3120, 5, 163, 0, 0, 3120, 3122, 3, 98, 49, 0, 3121, 3118, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3124, 1, 0, 0, 0, 3123, 3125, 7, 13, 0, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3131, 1, 0, 0, 0, 3126, 3127, 5, 206, 0, 0, 3127, 3128, 5, 1, 0, 0, 3128, 3129, 3, 206, 103, 0, 3129, 3130, 5, 2, 0, 0, 3130, 3132, 1, 0, 0, 0, 3131, 3126, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3142, 1, 0, 0, 0, 3133, 3134, 5, 257, 0, 0, 3134, 3139, 3, 100, 50, 0, 3135, 3136, 5, 3, 0, 0, 3136, 3138, 3, 100, 50, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3141, 1, 0, 0, 0, 3139, 3137, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3143, 1, 0, 0, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3133, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3153, 1, 0, 0, 0, 3144, 3145, 5, 71, 0, 0, 3145, 3150, 3, 102, 51, 0, 3146, 3147, 5, 3, 0, 0, 3147, 3149, 3, 102, 51, 0, 3148, 3146, 1, 0, 0, 0, 3149, 3152, 1, 0, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3154, 1, 0, 0, 0, 3152, 3150, 1, 0, 0, 0, 3153, 3144, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 201, 1, 0, 0, 0, 3155, 3156, 5, 219, 0, 0, 3156, 3180, 3, 204, 102, 0, 3157, 3158, 5, 240, 0, 0, 3158, 3180, 3, 204, 102, 0, 3159, 3160, 5, 116, 0, 0, 3160, 3180, 3, 204, 102, 0, 3161, 3162, 5, 219, 0, 0, 3162, 3163, 5, 34, 0, 0, 3163, 3164, 3, 204, 102, 0, 3164, 3165, 5, 25, 0, 0, 3165, 3166, 3, 204, 102, 0, 3166, 3180, 1, 0, 0, 0, 3167, 3168, 5, 240, 0, 0, 3168, 3169, 5, 34, 0, 0, 3169, 3170, 3, 204, 102, 0, 3170, 3171, 5, 25, 0, 0, 3171, 3172, 3, 204, 102, 0, 3172, 3180, 1, 0, 0, 0, 3173, 3174, 5, 116, 0, 0, 3174, 3175, 5, 34, 0, 0, 3175, 3176, 3, 204, 102, 0, 3176, 3177, 5, 25, 0, 0, 3177, 3178, 3, 204, 102, 0, 3178, 3180, 1, 0, 0, 0, 3179, 3155, 1, 0, 0, 0, 3179, 3157, 1, 0, 0, 0, 3179, 3159, 1, 0, 0, 0, 3179, 3161, 1, 0, 0, 0, 3179, 3167, 1, 0, 0, 0, 3179, 3173, 1, 0, 0, 0, 3180, 203, 1, 0, 0, 0, 3181, 3182, 5, 278, 0, 0, 3182, 3191, 5, 212, 0, 0, 3183, 3184, 5, 278, 0, 0, 3184, 3191, 5, 102, 0, 0, 3185, 3186, 5, 56, 0, 0, 3186, 3191, 5, 239, 0, 0, 3187, 3188, 3, 138, 69, 0, 3188, 3189, 7, 29, 0, 0, 3189, 3191, 1, 0, 0, 0, 3190, 3181, 1, 0, 0, 0, 3190, 3183, 1, 0, 0, 0, 3190, 3185, 1, 0, 0, 0, 3190, 3187, 1, 0, 0, 0, 3191, 205, 1, 0, 0, 0, 3192, 3193, 6, 103, -1, 0, 3193, 3195, 3, 208, 104, 0, 3194, 3196, 3, 210, 105, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3204, 1, 0, 0, 0, 3197, 3198, 10, 2, 0, 0, 3198, 3203, 3, 206, 103, 3, 3199, 3200, 10, 1, 0, 0, 3200, 3201, 5, 11, 0, 0, 3201, 3203, 3, 206, 103, 2, 3202, 3197, 1, 0, 0, 0, 3202, 3199, 1, 0, 0, 0, 3203, 3206, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 207, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3207, 3233, 3, 298, 149, 0, 3208, 3209, 5, 1, 0, 0, 3209, 3233, 5, 2, 0, 0, 3210, 3211, 5, 209, 0, 0, 3211, 3212, 5, 1, 0, 0, 3212, 3217, 3, 206, 103, 0, 3213, 3214, 5, 3, 0, 0, 3214, 3216, 3, 206, 103, 0, 3215, 3213, 1, 0, 0, 0, 3216, 3219, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3220, 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3221, 5, 2, 0, 0, 3221, 3233, 1, 0, 0, 0, 3222, 3223, 5, 1, 0, 0, 3223, 3224, 3, 206, 103, 0, 3224, 3225, 5, 2, 0, 0, 3225, 3233, 1, 0, 0, 0, 3226, 3233, 5, 12, 0, 0, 3227, 3233, 5, 13, 0, 0, 3228, 3229, 5, 14, 0, 0, 3229, 3230, 3, 206, 103, 0, 3230, 3231, 5, 15, 0, 0, 3231, 3233, 1, 0, 0, 0, 3232, 3207, 1, 0, 0, 0, 3232, 3208, 1, 0, 0, 0, 3232, 3210, 1, 0, 0, 0, 3232, 3222, 1, 0, 0, 0, 3232, 3226, 1, 0, 0, 0, 3232, 3227, 1, 0, 0, 0, 3232, 3228, 1, 0, 0, 0, 3233, 209, 1, 0, 0, 0, 3234, 3236, 5, 320, 0, 0, 3235, 3237, 5, 324, 0, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3265, 1, 0, 0, 0, 3238, 3240, 5, 318, 0, 0, 3239, 3241, 5, 324, 0, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3265, 1, 0, 0, 0, 3242, 3244, 5, 324, 0, 0, 3243, 3245, 5, 324, 0, 0, 3244, 3243, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3265, 1, 0, 0, 0, 3246, 3247, 5, 16, 0, 0, 3247, 3248, 5, 329, 0, 0, 3248, 3250, 5, 17, 0, 0, 3249, 3251, 5, 324, 0, 0, 3250, 3249, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3265, 1, 0, 0, 0, 3252, 3254, 5, 16, 0, 0, 3253, 3255, 5, 329, 0, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 5, 3, 0, 0, 3257, 3259, 5, 329, 0, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 5, 17, 0, 0, 3261, 3263, 5, 324, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3234, 1, 0, 0, 0, 3264, 3238, 1, 0, 0, 0, 3264, 3242, 1, 0, 0, 0, 3264, 3246, 1, 0, 0, 0, 3264, 3252, 1, 0, 0, 0, 3265, 211, 1, 0, 0, 0, 3266, 3267, 3, 298, 149, 0, 3267, 3268, 5, 312, 0, 0, 3268, 3269, 3, 138, 69, 0, 3269, 213, 1, 0, 0, 0, 3270, 3271, 5, 104, 0, 0, 3271, 3275, 7, 30, 0, 0, 3272, 3273, 5, 276, 0, 0, 3273, 3275, 7, 31, 0, 0, 3274, 3270, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3275, 215, 1, 0, 0, 0, 3276, 3277, 5, 134, 0, 0, 3277, 3278, 5, 153, 0, 0, 3278, 3282, 3, 218, 109, 0, 3279, 3280, 5, 220, 0, 0, 3280, 3282, 7, 32, 0, 0, 3281, 3276, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 217, 1, 0, 0, 0, 3283, 3284, 5, 220, 0, 0, 3284, 3291, 5, 279, 0, 0, 3285, 3286, 5, 220, 0, 0, 3286, 3291, 5, 48, 0, 0, 3287, 3288, 5, 225, 0, 0, 3288, 3291, 5, 220, 0, 0, 3289, 3291, 5, 249, 0, 0, 3290, 3283, 1, 0, 0, 0, 3290, 3285, 1, 0, 0, 0, 3290, 3287, 1, 0, 0, 0, 3290, 3289, 1, 0, 0, 0, 3291, 219, 1, 0, 0, 0, 3292, 3298, 3, 138, 69, 0, 3293, 3294, 3, 298, 149, 0, 3294, 3295, 5, 6, 0, 0, 3295, 3296, 3, 138, 69, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3292, 1, 0, 0, 0, 3297, 3293, 1, 0, 0, 0, 3298, 221, 1, 0, 0, 0, 3299, 3300, 3, 298, 149, 0, 3300, 3301, 5, 4, 0, 0, 3301, 3302, 3, 298, 149, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3305, 3, 298, 149, 0, 3304, 3299, 1, 0, 0, 0, 3304, 3303, 1, 0, 0, 0, 3305, 223, 1, 0, 0, 0, 3306, 3311, 3, 222, 111, 0, 3307, 3308, 5, 3, 0, 0, 3308, 3310, 3, 222, 111, 0, 3309, 3307, 1, 0, 0, 0, 3310, 3313, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 225, 1, 0, 0, 0, 3313, 3311, 1, 0, 0, 0, 3314, 3315, 5, 107, 0, 0, 3315, 3316, 3, 228, 114, 0, 3316, 3320, 3, 234, 117, 0, 3317, 3319, 3, 236, 118, 0, 3318, 3317, 1, 0, 0, 0, 3319, 3322, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3324, 3, 238, 119, 0, 3324, 227, 1, 0, 0, 0, 3325, 3326, 3, 276, 138, 0, 3326, 3335, 5, 1, 0, 0, 3327, 3332, 3, 232, 116, 0, 3328, 3329, 5, 3, 0, 0, 3329, 3331, 3, 232, 116, 0, 3330, 3328, 1, 0, 0, 0, 3331, 3334, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, 0, 3335, 3327, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 5, 2, 0, 0, 3338, 229, 1, 0, 0, 0, 3339, 3340, 3, 274, 137, 0, 3340, 3349, 5, 1, 0, 0, 3341, 3346, 3, 232, 116, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3345, 3, 232, 116, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3348, 1, 0, 0, 0, 3346, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 1, 0, 0, 0, 3348, 3346, 1, 0, 0, 0, 3349, 3341, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3352, 5, 2, 0, 0, 3352, 231, 1, 0, 0, 0, 3353, 3355, 3, 298, 149, 0, 3354, 3353, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 3, 186, 93, 0, 3357, 233, 1, 0, 0, 0, 3358, 3359, 5, 232, 0, 0, 3359, 3360, 3, 186, 93, 0, 3360, 235, 1, 0, 0, 0, 3361, 3362, 5, 147, 0, 0, 3362, 3381, 3, 298, 149, 0, 3363, 3365, 5, 182, 0, 0, 3364, 3363, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3381, 5, 78, 0, 0, 3367, 3368, 5, 232, 0, 0, 3368, 3369, 5, 183, 0, 0, 3369, 3370, 5, 190, 0, 0, 3370, 3371, 5, 183, 0, 0, 3371, 3381, 5, 126, 0, 0, 3372, 3373, 5, 38, 0, 0, 3373, 3374, 5, 190, 0, 0, 3374, 3375, 5, 183, 0, 0, 3375, 3381, 5, 126, 0, 0, 3376, 3377, 5, 246, 0, 0, 3377, 3381, 7, 1, 0, 0, 3378, 3379, 5, 46, 0, 0, 3379, 3381, 3, 170, 85, 0, 3380, 3361, 1, 0, 0, 0, 3380, 3364, 1, 0, 0, 0, 3380, 3367, 1, 0, 0, 0, 3380, 3372, 1, 0, 0, 0, 3380, 3376, 1, 0, 0, 0, 3380, 3378, 1, 0, 0, 0, 3381, 237, 1, 0, 0, 0, 3382, 3383, 5, 230, 0, 0, 3383, 3482, 3, 144, 72, 0, 3384, 3385, 5, 251, 0, 0, 3385, 3386, 3, 298, 149, 0, 3386, 3387, 5, 312, 0, 0, 3387, 3388, 3, 138, 69, 0, 3388, 3482, 1, 0, 0, 0, 3389, 3390, 5, 40, 0, 0, 3390, 3392, 3, 138, 69, 0, 3391, 3393, 3, 240, 120, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3397, 1, 0, 0, 0, 3396, 3398, 3, 244, 122, 0, 3397, 3396, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 5, 88, 0, 0, 3400, 3401, 5, 40, 0, 0, 3401, 3482, 1, 0, 0, 0, 3402, 3404, 5, 40, 0, 0, 3403, 3405, 3, 240, 120, 0, 3404, 3403, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3404, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 244, 122, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 88, 0, 0, 3412, 3413, 5, 40, 0, 0, 3413, 3482, 1, 0, 0, 0, 3414, 3415, 5, 119, 0, 0, 3415, 3416, 3, 138, 69, 0, 3416, 3417, 5, 265, 0, 0, 3417, 3421, 3, 248, 124, 0, 3418, 3420, 3, 242, 121, 0, 3419, 3418, 1, 0, 0, 0, 3420, 3423, 1, 0, 0, 0, 3421, 3419, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3424, 3426, 3, 244, 122, 0, 3425, 3424, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3428, 5, 88, 0, 0, 3428, 3429, 5, 119, 0, 0, 3429, 3482, 1, 0, 0, 0, 3430, 3431, 5, 135, 0, 0, 3431, 3482, 3, 298, 149, 0, 3432, 3433, 5, 151, 0, 0, 3433, 3482, 3, 298, 149, 0, 3434, 3440, 5, 32, 0, 0, 3435, 3436, 3, 246, 123, 0, 3436, 3437, 5, 325, 0, 0, 3437, 3439, 1, 0, 0, 0, 3438, 3435, 1, 0, 0, 0, 3439, 3442, 1, 0, 0, 0, 3440, 3438, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3444, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3443, 3445, 3, 248, 124, 0, 3444, 3443, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3482, 5, 88, 0, 0, 3447, 3448, 3, 298, 149, 0, 3448, 3449, 5, 10, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3447, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3453, 5, 161, 0, 0, 3453, 3454, 3, 248, 124, 0, 3454, 3455, 5, 88, 0, 0, 3455, 3456, 5, 161, 0, 0, 3456, 3482, 1, 0, 0, 0, 3457, 3458, 3, 298, 149, 0, 3458, 3459, 5, 10, 0, 0, 3459, 3461, 1, 0, 0, 0, 3460, 3457, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 5, 302, 0, 0, 3463, 3464, 3, 138, 69, 0, 3464, 3465, 5, 81, 0, 0, 3465, 3466, 3, 248, 124, 0, 3466, 3467, 5, 88, 0, 0, 3467, 3468, 5, 302, 0, 0, 3468, 3482, 1, 0, 0, 0, 3469, 3470, 3, 298, 149, 0, 3470, 3471, 5, 10, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3469, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3475, 5, 224, 0, 0, 3475, 3476, 3, 248, 124, 0, 3476, 3477, 5, 286, 0, 0, 3477, 3478, 3, 138, 69, 0, 3478, 3479, 5, 88, 0, 0, 3479, 3480, 5, 224, 0, 0, 3480, 3482, 1, 0, 0, 0, 3481, 3382, 1, 0, 0, 0, 3481, 3384, 1, 0, 0, 0, 3481, 3389, 1, 0, 0, 0, 3481, 3402, 1, 0, 0, 0, 3481, 3414, 1, 0, 0, 0, 3481, 3430, 1, 0, 0, 0, 3481, 3432, 1, 0, 0, 0, 3481, 3434, 1, 0, 0, 0, 3481, 3450, 1, 0, 0, 0, 3481, 3460, 1, 0, 0, 0, 3481, 3472, 1, 0, 0, 0, 3482, 239, 1, 0, 0, 0, 3483, 3484, 5, 300, 0, 0, 3484, 3485, 3, 138, 69, 0, 3485, 3486, 5, 265, 0, 0, 3486, 3487, 3, 248, 124, 0, 3487, 241, 1, 0, 0, 0, 3488, 3489, 5, 86, 0, 0, 3489, 3490, 3, 138, 69, 0, 3490, 3491, 5, 265, 0, 0, 3491, 3492, 3, 248, 124, 0, 3492, 243, 1, 0, 0, 0, 3493, 3494, 5, 84, 0, 0, 3494, 3495, 3, 248, 124, 0, 3495, 245, 1, 0, 0, 0, 3496, 3497, 5, 69, 0, 0, 3497, 3502, 3, 298, 149, 0, 3498, 3499, 5, 3, 0, 0, 3499, 3501, 3, 298, 149, 0, 3500, 3498, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3508, 3, 186, 93, 0, 3506, 3507, 5, 70, 0, 0, 3507, 3509, 3, 144, 72, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 247, 1, 0, 0, 0, 3510, 3511, 3, 238, 119, 0, 3511, 3512, 5, 325, 0, 0, 3512, 3514, 1, 0, 0, 0, 3513, 3510, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 249, 1, 0, 0, 0, 3517, 3524, 5, 53, 0, 0, 3518, 3524, 5, 248, 0, 0, 3519, 3524, 5, 73, 0, 0, 3520, 3524, 5, 127, 0, 0, 3521, 3524, 5, 287, 0, 0, 3522, 3524, 3, 298, 149, 0, 3523, 3517, 1, 0, 0, 0, 3523, 3518, 1, 0, 0, 0, 3523, 3519, 1, 0, 0, 0, 3523, 3520, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3522, 1, 0, 0, 0, 3524, 251, 1, 0, 0, 0, 3525, 3529, 5, 260, 0, 0, 3526, 3529, 5, 243, 0, 0, 3527, 3529, 3, 298, 149, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 253, 1, 0, 0, 0, 3530, 3532, 3, 252, 126, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3534, 3, 284, 142, 0, 3534, 255, 1, 0, 0, 0, 3535, 3538, 3, 258, 129, 0, 3536, 3538, 3, 262, 131, 0, 3537, 3535, 1, 0, 0, 0, 3537, 3536, 1, 0, 0, 0, 3538, 257, 1, 0, 0, 0, 3539, 3551, 3, 298, 149, 0, 3540, 3541, 3, 298, 149, 0, 3541, 3542, 5, 4, 0, 0, 3542, 3543, 3, 298, 149, 0, 3543, 3551, 1, 0, 0, 0, 3544, 3545, 3, 298, 149, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3547, 3, 298, 149, 0, 3547, 3548, 5, 4, 0, 0, 3548, 3549, 3, 298, 149, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3539, 1, 0, 0, 0, 3550, 3540, 1, 0, 0, 0, 3550, 3544, 1, 0, 0, 0, 3551, 259, 1, 0, 0, 0, 3552, 3564, 3, 298, 149, 0, 3553, 3554, 3, 298, 149, 0, 3554, 3555, 5, 4, 0, 0, 3555, 3556, 3, 298, 149, 0, 3556, 3564, 1, 0, 0, 0, 3557, 3558, 3, 298, 149, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3560, 3, 298, 149, 0, 3560, 3561, 5, 4, 0, 0, 3561, 3562, 3, 298, 149, 0, 3562, 3564, 1, 0, 0, 0, 3563, 3552, 1, 0, 0, 0, 3563, 3553, 1, 0, 0, 0, 3563, 3557, 1, 0, 0, 0, 3564, 261, 1, 0, 0, 0, 3565, 3577, 3, 298, 149, 0, 3566, 3567, 3, 298, 149, 0, 3567, 3568, 5, 4, 0, 0, 3568, 3569, 3, 298, 149, 0, 3569, 3577, 1, 0, 0, 0, 3570, 3571, 3, 298, 149, 0, 3571, 3572, 5, 4, 0, 0, 3572, 3573, 3, 298, 149, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3575, 3, 298, 149, 0, 3575, 3577, 1, 0, 0, 0, 3576, 3565, 1, 0, 0, 0, 3576, 3566, 1, 0, 0, 0, 3576, 3570, 1, 0, 0, 0, 3577, 263, 1, 0, 0, 0, 3578, 3590, 3, 298, 149, 0, 3579, 3580, 3, 298, 149, 0, 3580, 3581, 5, 4, 0, 0, 3581, 3582, 3, 298, 149, 0, 3582, 3590, 1, 0, 0, 0, 3583, 3584, 3, 298, 149, 0, 3584, 3585, 5, 4, 0, 0, 3585, 3586, 3, 298, 149, 0, 3586, 3587, 5, 4, 0, 0, 3587, 3588, 3, 298, 149, 0, 3588, 3590, 1, 0, 0, 0, 3589, 3578, 1, 0, 0, 0, 3589, 3579, 1, 0, 0, 0, 3589, 3583, 1, 0, 0, 0, 3590, 265, 1, 0, 0, 0, 3591, 3597, 3, 298, 149, 0, 3592, 3593, 3, 298, 149, 0, 3593, 3594, 5, 4, 0, 0, 3594, 3595, 3, 298, 149, 0, 3595, 3597, 1, 0, 0, 0, 3596, 3591, 1, 0, 0, 0, 3596, 3592, 1, 0, 0, 0, 3597, 267, 1, 0, 0, 0, 3598, 3604, 3, 298, 149, 0, 3599, 3600, 3, 298, 149, 0, 3600, 3601, 5, 4, 0, 0, 3601, 3602, 3, 298, 149, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3598, 1, 0, 0, 0, 3603, 3599, 1, 0, 0, 0, 3604, 269, 1, 0, 0, 0, 3605, 3606, 3, 298, 149, 0, 3606, 271, 1, 0, 0, 0, 3607, 3608, 3, 298, 149, 0, 3608, 273, 1, 0, 0, 0, 3609, 3610, 3, 284, 142, 0, 3610, 275, 1, 0, 0, 0, 3611, 3612, 3, 284, 142, 0, 3612, 277, 1, 0, 0, 0, 3613, 3616, 3, 284, 142, 0, 3614, 3616, 4, 139, 14, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3614, 1, 0, 0, 0, 3616, 279, 1, 0, 0, 0, 3617, 3618, 3, 284, 142, 0, 3618, 281, 1, 0, 0, 0, 3619, 3620, 3, 298, 149, 0, 3620, 283, 1, 0, 0, 0, 3621, 3626, 3, 298, 149, 0, 3622, 3623, 5, 4, 0, 0, 3623, 3625, 3, 298, 149, 0, 3624, 3622, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3624, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 285, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3629, 3630, 5, 103, 0, 0, 3630, 3631, 3, 288, 144, 0, 3631, 3632, 5, 28, 0, 0, 3632, 3633, 5, 187, 0, 0, 3633, 3634, 3, 144, 72, 0, 3634, 287, 1, 0, 0, 0, 3635, 3636, 7, 33, 0, 0, 3636, 289, 1, 0, 0, 0, 3637, 3641, 3, 292, 146, 0, 3638, 3641, 5, 64, 0, 0, 3639, 3641, 5, 60, 0, 0, 3640, 3637, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 291, 1, 0, 0, 0, 3642, 3648, 3, 298, 149, 0, 3643, 3644, 5, 289, 0, 0, 3644, 3648, 3, 298, 149, 0, 3645, 3646, 5, 235, 0, 0, 3646, 3648, 3, 298, 149, 0, 3647, 3642, 1, 0, 0, 0, 3647, 3643, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3648, 293, 1, 0, 0, 0, 3649, 3654, 3, 298, 149, 0, 3650, 3651, 5, 3, 0, 0, 3651, 3653, 3, 298, 149, 0, 3652, 3650, 1, 0, 0, 0, 3653, 3656, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 295, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 3665, 5, 53, 0, 0, 3658, 3665, 5, 248, 0, 0, 3659, 3665, 5, 73, 0, 0, 3660, 3665, 5, 127, 0, 0, 3661, 3665, 5, 287, 0, 0, 3662, 3665, 5, 93, 0, 0, 3663, 3665, 3, 298, 149, 0, 3664, 3657, 1, 0, 0, 0, 3664, 3658, 1, 0, 0, 0, 3664, 3659, 1, 0, 0, 0, 3664, 3660, 1, 0, 0, 0, 3664, 3661, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 297, 1, 0, 0, 0, 3666, 3672, 5, 332, 0, 0, 3667, 3672, 5, 334, 0, 0, 3668, 3672, 3, 304, 152, 0, 3669, 3672, 5, 335, 0, 0, 3670, 3672, 5, 333, 0, 0, 3671, 3666, 1, 0, 0, 0, 3671, 3667, 1, 0, 0, 0, 3671, 3668, 1, 0, 0, 0, 3671, 3669, 1, 0, 0, 0, 3671, 3670, 1, 0, 0, 0, 3672, 299, 1, 0, 0, 0, 3673, 3675, 5, 319, 0, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3686, 5, 330, 0, 0, 3677, 3679, 5, 319, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3686, 5, 331, 0, 0, 3681, 3683, 5, 319, 0, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3686, 5, 329, 0, 0, 3685, 3674, 1, 0, 0, 0, 3685, 3678, 1, 0, 0, 0, 3685, 3682, 1, 0, 0, 0, 3686, 301, 1, 0, 0, 0, 3687, 3690, 3, 298, 149, 0, 3688, 3690, 3, 170, 85, 0, 3689, 3687, 1, 0, 0, 0, 3689, 3688, 1, 0, 0, 0, 3690, 303, 1, 0, 0, 0, 3691, 3692, 7, 34, 0, 0, 3692, 305, 1, 0, 0, 0, 480, 309, 318, 322, 326, 330, 334, 347, 354, 358, 362, 368, 372, 379, 384, 388, 394, 398, 417, 423, 427, 431, 435, 443, 447, 450, 455, 461, 470, 476, 480, 486, 493, 501, 513, 522, 531, 537, 548, 556, 564, 571, 581, 588, 596, 611, 646, 649, 652, 655, 661, 666, 673, 679, 683, 687, 695, 701, 705, 709, 723, 731, 750, 775, 778, 785, 792, 801, 805, 812, 820, 829, 835, 840, 844, 852, 857, 866, 872, 879, 888, 894, 898, 904, 911, 916, 929, 934, 946, 950, 956, 965, 970, 976, 1004, 1010, 1012, 1018, 1024, 1026, 1034, 1036, 1046, 1048, 1063, 1068, 1075, 1085, 1091, 1093, 1101, 1103, 1128, 1131, 1135, 1139, 1157, 1160, 1171, 1174, 1190, 1200, 1204, 1210, 1213, 1222, 1234, 1237, 1247, 1251, 1257, 1264, 1269, 1275, 1279, 1283, 1289, 1300, 1309, 1319, 1322, 1327, 1329, 1336, 1342, 1344, 1348, 1358, 1364, 1367, 1369, 1381, 1388, 1392, 1395, 1399, 1403, 1410, 1419, 1422, 1425, 1430, 1434, 1442, 1445, 1451, 1458, 1469, 1472, 1482, 1485, 1496, 1501, 1509, 1512, 1516, 1520, 1529, 1538, 1541, 1550, 1553, 1556, 1560, 1571, 1574, 1577, 1584, 1587, 1606, 1610, 1614, 1618, 1622, 1626, 1628, 1639, 1644, 1653, 1662, 1665, 1671, 1683, 1686, 1695, 1698, 1706, 1709, 1712, 1717, 1720, 1732, 1735, 1743, 1748, 1752, 1754, 1756, 1771, 1773, 1784, 1805, 1815, 1826, 1830, 1832, 1840, 1851, 1862, 1869, 1882, 1888, 1914, 1929, 1934, 1938, 1948, 1954, 1960, 1968, 1973, 1980, 1982, 1988, 1994, 1998, 2003, 2012, 2017, 2031, 2041, 2044, 2053, 2058, 2063, 2065, 2074, 2077, 2085, 2088, 2095, 2100, 2111, 2114, 2118, 2120, 2128, 2138, 2144, 2146, 2153, 2157, 2159, 2166, 2170, 2172, 2174, 2183, 2194, 2198, 2208, 2218, 2222, 2230, 2232, 2245, 2253, 2262, 2268, 2276, 2282, 2286, 2291, 2296, 2302, 2316, 2318, 2348, 2359, 2367, 2372, 2377, 2390, 2396, 2399, 2406, 2411, 2414, 2417, 2422, 2429, 2432, 2441, 2444, 2448, 2451, 2454, 2469, 2472, 2491, 2495, 2503, 2507, 2532, 2535, 2544, 2550, 2556, 2562, 2571, 2574, 2577, 2596, 2605, 2627, 2630, 2640, 2649, 2655, 2661, 2672, 2674, 2679, 2686, 2688, 2694, 2700, 2711, 2720, 2725, 2730, 2732, 2734, 2740, 2742, 2752, 2761, 2763, 2769, 2771, 2774, 2784, 2786, 2794, 2802, 2805, 2810, 2815, 2827, 2831, 2835, 2838, 2840, 2848, 2851, 2861, 2869, 2875, 2877, 2885, 2895, 2901, 2915, 2924, 2931, 2936, 2943, 2953, 2958, 2965, 2991, 2996, 2998, 3005, 3009, 3016, 3020, 3036, 3051, 3058, 3067, 3077, 3082, 3091, 3096, 3104, 3112, 3115, 3121, 3124, 3131, 3139, 3142, 3150, 3153, 3179, 3190, 3195, 3202, 3204, 3217, 3232, 3236, 3240, 3244, 3250, 3254, 3258, 3262, 3264, 3274, 3281, 3290, 3297, 3304, 3311, 3320, 3332, 3335, 3346, 3349, 3354, 3364, 3380, 3394, 3397, 3406, 3409, 3421, 3425, 3440, 3444, 3450, 3460, 3472, 3481, 3502, 3508, 3515, 3523, 3528, 3531, 3537, 3550, 3563, 3576, 3589, 3596, 3603, 3615, 3626, 3640, 3647, 3654, 3664, 3671, 3674, 3678, 3682, 3685, 3689] \ No newline at end of file diff --git a/src/lib/trino/TrinoSqlListener.ts b/src/lib/trino/TrinoSqlListener.ts index 8a0856c6..c4d5725c 100644 --- a/src/lib/trino/TrinoSqlListener.ts +++ b/src/lib/trino/TrinoSqlListener.ts @@ -123,6 +123,7 @@ import { InlineTableContext } from "./TrinoSqlParser.js"; import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; +import { WhereClauseContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; @@ -355,6 +356,7 @@ import { CatalogNameCreateContext } from "./TrinoSqlParser.js"; import { FunctionNameContext } from "./TrinoSqlParser.js"; import { FunctionNameCreateContext } from "./TrinoSqlParser.js"; import { ColumnRefContext } from "./TrinoSqlParser.js"; +import { ColumnNameContext } from "./TrinoSqlParser.js"; import { ColumnNameCreateContext } from "./TrinoSqlParser.js"; import { QualifiedNameContext } from "./TrinoSqlParser.js"; import { QueryPeriodContext } from "./TrinoSqlParser.js"; @@ -1720,6 +1722,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.whereClause`. + * @param ctx the parse tree + */ + enterWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.whereClause`. + * @param ctx the parse tree + */ + exitWhereClause?: (ctx: WhereClauseContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -4332,6 +4344,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnRef?: (ctx: ColumnRefContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.columnName`. + * @param ctx the parse tree + */ + enterColumnName?: (ctx: ColumnNameContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.columnName`. + * @param ctx the parse tree + */ + exitColumnName?: (ctx: ColumnNameContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index 6c6eeb81..644467c5 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -384,130 +384,132 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly RULE_queryPrimary = 24; public static readonly RULE_sortItem = 25; public static readonly RULE_querySpecification = 26; - public static readonly RULE_groupBy = 27; - public static readonly RULE_groupingElement = 28; - public static readonly RULE_groupingSet = 29; - public static readonly RULE_groupingTerm = 30; - public static readonly RULE_windowDefinition = 31; - public static readonly RULE_windowSpecification = 32; - public static readonly RULE_namedQuery = 33; - public static readonly RULE_setQuantifier = 34; - public static readonly RULE_selectItem = 35; - public static readonly RULE_relation = 36; - public static readonly RULE_joinType = 37; - public static readonly RULE_joinCriteria = 38; - public static readonly RULE_sampledRelation = 39; - public static readonly RULE_sampleType = 40; - public static readonly RULE_trimsSpecification = 41; - public static readonly RULE_listAggOverflowBehavior = 42; - public static readonly RULE_listaggCountIndication = 43; - public static readonly RULE_patternRecognition = 44; - public static readonly RULE_measureDefinition = 45; - public static readonly RULE_rowsPerMatch = 46; - public static readonly RULE_emptyMatchHandling = 47; - public static readonly RULE_skipTo = 48; - public static readonly RULE_subsetDefinition = 49; - public static readonly RULE_variableDefinition = 50; - public static readonly RULE_aliasedRelation = 51; - public static readonly RULE_columnListCreate = 52; - public static readonly RULE_columnList = 53; - public static readonly RULE_columnAliases = 54; - public static readonly RULE_relationPrimary = 55; - public static readonly RULE_jsonTableColumn = 56; - public static readonly RULE_jsonTableSpecificPlan = 57; - public static readonly RULE_jsonTablePathName = 58; - public static readonly RULE_planPrimary = 59; - public static readonly RULE_jsonTableDefaultPlan = 60; - public static readonly RULE_tableFunctionCall = 61; - public static readonly RULE_tableFunctionArgument = 62; - public static readonly RULE_tableArgument = 63; - public static readonly RULE_tableArgumentRelation = 64; - public static readonly RULE_descriptorArgument = 65; - public static readonly RULE_descriptorField = 66; - public static readonly RULE_copartitionTables = 67; - public static readonly RULE_expression = 68; - public static readonly RULE_booleanExpression = 69; - public static readonly RULE_predicate = 70; - public static readonly RULE_valueExpression = 71; - public static readonly RULE_primaryExpression = 72; - public static readonly RULE_jsonPathInvocation = 73; - public static readonly RULE_jsonValueExpression = 74; - public static readonly RULE_jsonRepresentation = 75; - public static readonly RULE_jsonArgument = 76; - public static readonly RULE_jsonExistsErrorBehavior = 77; - public static readonly RULE_jsonValueBehavior = 78; - public static readonly RULE_jsonQueryWrapperBehavior = 79; - public static readonly RULE_jsonQueryBehavior = 80; - public static readonly RULE_jsonObjectMember = 81; - public static readonly RULE_processingMode = 82; - public static readonly RULE_nullTreatment = 83; - public static readonly RULE_string = 84; - public static readonly RULE_timeZoneSpecifier = 85; - public static readonly RULE_comparisonOperator = 86; - public static readonly RULE_comparisonQuantifier = 87; - public static readonly RULE_booleanValue = 88; - public static readonly RULE_interval = 89; - public static readonly RULE_intervalField = 90; - public static readonly RULE_normalForm = 91; - public static readonly RULE_type = 92; - public static readonly RULE_rowField = 93; - public static readonly RULE_typeParameter = 94; - public static readonly RULE_whenClause = 95; - public static readonly RULE_filter = 96; - public static readonly RULE_mergeCase = 97; - public static readonly RULE_over = 98; - public static readonly RULE_windowFrame = 99; - public static readonly RULE_frameExtent = 100; - public static readonly RULE_frameBound = 101; - public static readonly RULE_rowPattern = 102; - public static readonly RULE_patternPrimary = 103; - public static readonly RULE_patternQuantifier = 104; - public static readonly RULE_updateAssignment = 105; - public static readonly RULE_explainOption = 106; - public static readonly RULE_transactionMode = 107; - public static readonly RULE_levelOfIsolation = 108; - public static readonly RULE_callArgument = 109; - public static readonly RULE_pathElement = 110; - public static readonly RULE_pathSpecification = 111; - public static readonly RULE_functionSpecification = 112; - public static readonly RULE_functionDeclaration = 113; - public static readonly RULE_functionSignature = 114; - public static readonly RULE_parameterDeclaration = 115; - public static readonly RULE_returnsClause = 116; - public static readonly RULE_routineCharacteristic = 117; - public static readonly RULE_controlStatement = 118; - public static readonly RULE_caseStatementWhenClause = 119; - public static readonly RULE_elseIfClause = 120; - public static readonly RULE_elseClause = 121; - public static readonly RULE_variableDeclaration = 122; - public static readonly RULE_sqlStatementList = 123; - public static readonly RULE_privilege = 124; - public static readonly RULE_entityKind = 125; - public static readonly RULE_grantObject = 126; - public static readonly RULE_tableOrViewName = 127; - public static readonly RULE_tableRef = 128; - public static readonly RULE_tableNameCreate = 129; - public static readonly RULE_viewRef = 130; - public static readonly RULE_viewNameCreate = 131; - public static readonly RULE_schemaRef = 132; - public static readonly RULE_schemaNameCreate = 133; - public static readonly RULE_catalogRef = 134; - public static readonly RULE_catalogNameCreate = 135; - public static readonly RULE_functionName = 136; - public static readonly RULE_functionNameCreate = 137; - public static readonly RULE_columnRef = 138; - public static readonly RULE_columnNameCreate = 139; - public static readonly RULE_qualifiedName = 140; - public static readonly RULE_queryPeriod = 141; - public static readonly RULE_rangeType = 142; - public static readonly RULE_grantor = 143; - public static readonly RULE_principal = 144; - public static readonly RULE_roles = 145; - public static readonly RULE_privilegeOrRole = 146; - public static readonly RULE_identifier = 147; - public static readonly RULE_number = 148; - public static readonly RULE_authorizationUser = 149; - public static readonly RULE_nonReserved = 150; + public static readonly RULE_whereClause = 27; + public static readonly RULE_groupBy = 28; + public static readonly RULE_groupingElement = 29; + public static readonly RULE_groupingSet = 30; + public static readonly RULE_groupingTerm = 31; + public static readonly RULE_windowDefinition = 32; + public static readonly RULE_windowSpecification = 33; + public static readonly RULE_namedQuery = 34; + public static readonly RULE_setQuantifier = 35; + public static readonly RULE_selectItem = 36; + public static readonly RULE_relation = 37; + public static readonly RULE_joinType = 38; + public static readonly RULE_joinCriteria = 39; + public static readonly RULE_sampledRelation = 40; + public static readonly RULE_sampleType = 41; + public static readonly RULE_trimsSpecification = 42; + public static readonly RULE_listAggOverflowBehavior = 43; + public static readonly RULE_listaggCountIndication = 44; + public static readonly RULE_patternRecognition = 45; + public static readonly RULE_measureDefinition = 46; + public static readonly RULE_rowsPerMatch = 47; + public static readonly RULE_emptyMatchHandling = 48; + public static readonly RULE_skipTo = 49; + public static readonly RULE_subsetDefinition = 50; + public static readonly RULE_variableDefinition = 51; + public static readonly RULE_aliasedRelation = 52; + public static readonly RULE_columnListCreate = 53; + public static readonly RULE_columnList = 54; + public static readonly RULE_columnAliases = 55; + public static readonly RULE_relationPrimary = 56; + public static readonly RULE_jsonTableColumn = 57; + public static readonly RULE_jsonTableSpecificPlan = 58; + public static readonly RULE_jsonTablePathName = 59; + public static readonly RULE_planPrimary = 60; + public static readonly RULE_jsonTableDefaultPlan = 61; + public static readonly RULE_tableFunctionCall = 62; + public static readonly RULE_tableFunctionArgument = 63; + public static readonly RULE_tableArgument = 64; + public static readonly RULE_tableArgumentRelation = 65; + public static readonly RULE_descriptorArgument = 66; + public static readonly RULE_descriptorField = 67; + public static readonly RULE_copartitionTables = 68; + public static readonly RULE_expression = 69; + public static readonly RULE_booleanExpression = 70; + public static readonly RULE_predicate = 71; + public static readonly RULE_valueExpression = 72; + public static readonly RULE_primaryExpression = 73; + public static readonly RULE_jsonPathInvocation = 74; + public static readonly RULE_jsonValueExpression = 75; + public static readonly RULE_jsonRepresentation = 76; + public static readonly RULE_jsonArgument = 77; + public static readonly RULE_jsonExistsErrorBehavior = 78; + public static readonly RULE_jsonValueBehavior = 79; + public static readonly RULE_jsonQueryWrapperBehavior = 80; + public static readonly RULE_jsonQueryBehavior = 81; + public static readonly RULE_jsonObjectMember = 82; + public static readonly RULE_processingMode = 83; + public static readonly RULE_nullTreatment = 84; + public static readonly RULE_string = 85; + public static readonly RULE_timeZoneSpecifier = 86; + public static readonly RULE_comparisonOperator = 87; + public static readonly RULE_comparisonQuantifier = 88; + public static readonly RULE_booleanValue = 89; + public static readonly RULE_interval = 90; + public static readonly RULE_intervalField = 91; + public static readonly RULE_normalForm = 92; + public static readonly RULE_type = 93; + public static readonly RULE_rowField = 94; + public static readonly RULE_typeParameter = 95; + public static readonly RULE_whenClause = 96; + public static readonly RULE_filter = 97; + public static readonly RULE_mergeCase = 98; + public static readonly RULE_over = 99; + public static readonly RULE_windowFrame = 100; + public static readonly RULE_frameExtent = 101; + public static readonly RULE_frameBound = 102; + public static readonly RULE_rowPattern = 103; + public static readonly RULE_patternPrimary = 104; + public static readonly RULE_patternQuantifier = 105; + public static readonly RULE_updateAssignment = 106; + public static readonly RULE_explainOption = 107; + public static readonly RULE_transactionMode = 108; + public static readonly RULE_levelOfIsolation = 109; + public static readonly RULE_callArgument = 110; + public static readonly RULE_pathElement = 111; + public static readonly RULE_pathSpecification = 112; + public static readonly RULE_functionSpecification = 113; + public static readonly RULE_functionDeclaration = 114; + public static readonly RULE_functionSignature = 115; + public static readonly RULE_parameterDeclaration = 116; + public static readonly RULE_returnsClause = 117; + public static readonly RULE_routineCharacteristic = 118; + public static readonly RULE_controlStatement = 119; + public static readonly RULE_caseStatementWhenClause = 120; + public static readonly RULE_elseIfClause = 121; + public static readonly RULE_elseClause = 122; + public static readonly RULE_variableDeclaration = 123; + public static readonly RULE_sqlStatementList = 124; + public static readonly RULE_privilege = 125; + public static readonly RULE_entityKind = 126; + public static readonly RULE_grantObject = 127; + public static readonly RULE_tableOrViewName = 128; + public static readonly RULE_tableRef = 129; + public static readonly RULE_tableNameCreate = 130; + public static readonly RULE_viewRef = 131; + public static readonly RULE_viewNameCreate = 132; + public static readonly RULE_schemaRef = 133; + public static readonly RULE_schemaNameCreate = 134; + public static readonly RULE_catalogRef = 135; + public static readonly RULE_catalogNameCreate = 136; + public static readonly RULE_functionName = 137; + public static readonly RULE_functionNameCreate = 138; + public static readonly RULE_columnRef = 139; + public static readonly RULE_columnName = 140; + public static readonly RULE_columnNameCreate = 141; + public static readonly RULE_qualifiedName = 142; + public static readonly RULE_queryPeriod = 143; + public static readonly RULE_rangeType = 144; + public static readonly RULE_grantor = 145; + public static readonly RULE_principal = 146; + public static readonly RULE_roles = 147; + public static readonly RULE_privilegeOrRole = 148; + public static readonly RULE_identifier = 149; + public static readonly RULE_number = 150; + public static readonly RULE_authorizationUser = 151; + public static readonly RULE_nonReserved = 152; public static readonly literalNames = [ null, "'('", "')'", "','", "'.'", "'SKIP'", "'=>'", "'->'", "'['", @@ -639,7 +641,7 @@ export class TrinoSqlParser extends SQLParserBase { "query", "with", "tableElement", "columnDefinition", "likeClause", "properties", "propertyAssignments", "property", "propertyValue", "queryNoWith", "limitRowCount", "rowCount", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "groupBy", "groupingElement", + "sortItem", "querySpecification", "whereClause", "groupBy", "groupingElement", "groupingSet", "groupingTerm", "windowDefinition", "windowSpecification", "namedQuery", "setQuantifier", "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", "sampleType", "trimsSpecification", @@ -667,8 +669,8 @@ export class TrinoSqlParser extends SQLParserBase { "privilege", "entityKind", "grantObject", "tableOrViewName", "tableRef", "tableNameCreate", "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", "catalogRef", "catalogNameCreate", "functionName", "functionNameCreate", - "columnRef", "columnNameCreate", "qualifiedName", "queryPeriod", - "rangeType", "grantor", "principal", "roles", "privilegeOrRole", + "columnRef", "columnName", "columnNameCreate", "qualifiedName", + "queryPeriod", "rangeType", "grantor", "principal", "roles", "privilegeOrRole", "identifier", "number", "authorizationUser", "nonReserved", ]; @@ -693,21 +695,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 305; + this.state = 309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 25165826) !== 0) || ((((_la - 37)) & ~0x1F) === 0 && ((1 << (_la - 37)) & 2147550721) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 5243919) !== 0) || _la === 110 || _la === 127 || _la === 169 || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 8921345) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 67113129) !== 0) || ((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131587) !== 0)) { { { - this.state = 302; + this.state = 306; this.statements(); } } - this.state = 307; + this.state = 311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 308; + this.state = 312; this.match(TrinoSqlParser.EOF); } } @@ -731,7 +733,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 310; + this.state = 314; this.singleStatement(); } } @@ -756,14 +758,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 312; + this.state = 316; this.statement(); - this.state = 314; + this.state = 318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 313; + this.state = 317; this.match(TrinoSqlParser.SEMICOLON); } } @@ -791,14 +793,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 316; + this.state = 320; this.expression(); - this.state = 318; + this.state = 322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 317; + this.state = 321; this.match(TrinoSqlParser.SEMICOLON); } } @@ -826,14 +828,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 320; + this.state = 324; this.pathSpecification(); - this.state = 322; + this.state = 326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 321; + this.state = 325; this.match(TrinoSqlParser.SEMICOLON); } } @@ -861,14 +863,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 324; + this.state = 328; this.type_(0); - this.state = 326; + this.state = 330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 325; + this.state = 329; this.match(TrinoSqlParser.SEMICOLON); } } @@ -896,14 +898,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 328; + this.state = 332; this.rowPattern(0); - this.state = 330; + this.state = 334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 329; + this.state = 333; this.match(TrinoSqlParser.SEMICOLON); } } @@ -930,9 +932,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 332; + this.state = 336; this.functionSpecification(); - this.state = 333; + this.state = 337; this.match(TrinoSqlParser.EOF); } } @@ -955,14 +957,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 16, TrinoSqlParser.RULE_statement); let _la: number; try { - this.state = 1233; + this.state = 1234; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 335; + this.state = 339; this.rootQuery(); } break; @@ -970,9 +972,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UseContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 336; + this.state = 340; this.match(TrinoSqlParser.KW_USE); - this.state = 337; + this.state = 341; this.schemaRef(); } break; @@ -980,62 +982,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateCatalogContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 338; + this.state = 342; this.match(TrinoSqlParser.KW_CREATE); - this.state = 339; - this.match(TrinoSqlParser.KW_CATALOG); this.state = 343; + this.match(TrinoSqlParser.KW_CATALOG); + this.state = 347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: { - this.state = 340; + this.state = 344; this.match(TrinoSqlParser.KW_IF); - this.state = 341; + this.state = 345; this.match(TrinoSqlParser.KW_NOT); - this.state = 342; + this.state = 346; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 345; + this.state = 349; (localContext as CreateCatalogContext)._catalog = this.catalogNameCreate(); - this.state = 346; + this.state = 350; this.match(TrinoSqlParser.KW_USING); - this.state = 347; + this.state = 351; (localContext as CreateCatalogContext)._connectorName = this.identifier(); - this.state = 350; + this.state = 354; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 348; + this.state = 352; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 349; + this.state = 353; this.string_(); } break; } - this.state = 354; + this.state = 358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 352; + this.state = 356; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 353; + this.state = 357; this.principal(); } } - this.state = 358; + this.state = 362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 356; + this.state = 360; this.match(TrinoSqlParser.KW_WITH); - this.state = 357; + this.state = 361; this.properties(); } break; @@ -1046,30 +1048,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 360; + this.state = 364; this.match(TrinoSqlParser.KW_DROP); - this.state = 361; + this.state = 365; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 364; + this.state = 368; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 362; + this.state = 366; this.match(TrinoSqlParser.KW_IF); - this.state = 363; + this.state = 367; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 366; + this.state = 370; (localContext as DropCatalogContext)._catalog = this.catalogRef(); - this.state = 368; + this.state = 372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 367; + this.state = 371; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1087,46 +1089,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateSchemaContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 370; + this.state = 374; this.match(TrinoSqlParser.KW_CREATE); - this.state = 371; - this.match(TrinoSqlParser.KW_SCHEMA); this.state = 375; + this.match(TrinoSqlParser.KW_SCHEMA); + this.state = 379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 372; + this.state = 376; this.match(TrinoSqlParser.KW_IF); - this.state = 373; + this.state = 377; this.match(TrinoSqlParser.KW_NOT); - this.state = 374; + this.state = 378; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 377; + this.state = 381; this.schemaNameCreate(); - this.state = 380; + this.state = 384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 378; + this.state = 382; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 379; + this.state = 383; this.principal(); } } - this.state = 384; + this.state = 388; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 382; + this.state = 386; this.match(TrinoSqlParser.KW_WITH); - this.state = 383; + this.state = 387; this.properties(); } break; @@ -1137,30 +1139,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropSchemaContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 386; + this.state = 390; this.match(TrinoSqlParser.KW_DROP); - this.state = 387; + this.state = 391; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 390; + this.state = 394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 388; + this.state = 392; this.match(TrinoSqlParser.KW_IF); - this.state = 389; + this.state = 393; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 392; + this.state = 396; this.schemaRef(); - this.state = 394; + this.state = 398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 393; + this.state = 397; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1178,17 +1180,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameSchemaContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 396; + this.state = 400; this.match(TrinoSqlParser.KW_ALTER); - this.state = 397; + this.state = 401; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 398; + this.state = 402; this.schemaRef(); - this.state = 399; + this.state = 403; this.match(TrinoSqlParser.KW_RENAME); - this.state = 400; + this.state = 404; this.match(TrinoSqlParser.KW_TO); - this.state = 401; + this.state = 405; this.schemaNameCreate(); } break; @@ -1196,17 +1198,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSchemaAuthorizationContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 403; + this.state = 407; this.match(TrinoSqlParser.KW_ALTER); - this.state = 404; + this.state = 408; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 405; + this.state = 409; this.schemaRef(); - this.state = 406; + this.state = 410; this.match(TrinoSqlParser.KW_SET); - this.state = 407; + this.state = 411; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 408; + this.state = 412; this.principal(); } break; @@ -1214,112 +1216,112 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableAsSelectContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 410; + this.state = 414; this.match(TrinoSqlParser.KW_CREATE); - this.state = 413; + this.state = 417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 411; + this.state = 415; this.match(TrinoSqlParser.KW_OR); - this.state = 412; + this.state = 416; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 415; - this.match(TrinoSqlParser.KW_TABLE); this.state = 419; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 416; + this.state = 420; this.match(TrinoSqlParser.KW_IF); - this.state = 417; + this.state = 421; this.match(TrinoSqlParser.KW_NOT); - this.state = 418; + this.state = 422; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 421; + this.state = 425; this.tableNameCreate(); - this.state = 423; + this.state = 427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 422; + this.state = 426; this.columnListCreate(); } } - this.state = 427; + this.state = 431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 425; + this.state = 429; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 426; + this.state = 430; (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } - this.state = 431; + this.state = 435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 429; + this.state = 433; this.match(TrinoSqlParser.KW_WITH); - this.state = 430; + this.state = 434; this.properties(); } } - this.state = 433; + this.state = 437; this.match(TrinoSqlParser.KW_AS); - this.state = 439; + this.state = 443; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 434; + this.state = 438; this.rootQuery(); } break; case 2: { - this.state = 435; + this.state = 439; this.match(TrinoSqlParser.T__0); - this.state = 436; + this.state = 440; this.rootQuery(); - this.state = 437; + this.state = 441; this.match(TrinoSqlParser.T__1); } break; } - this.state = 446; + this.state = 450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 441; + this.state = 445; this.match(TrinoSqlParser.KW_WITH); - this.state = 443; + this.state = 447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 179) { { - this.state = 442; + this.state = 446; this.match(TrinoSqlParser.KW_NO); } } - this.state = 445; + this.state = 449; this.match(TrinoSqlParser.KW_DATA); } break; @@ -1330,80 +1332,80 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 448; + this.state = 452; this.match(TrinoSqlParser.KW_CREATE); - this.state = 451; + this.state = 455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 449; + this.state = 453; this.match(TrinoSqlParser.KW_OR); - this.state = 450; + this.state = 454; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 453; - this.match(TrinoSqlParser.KW_TABLE); this.state = 457; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 454; + this.state = 458; this.match(TrinoSqlParser.KW_IF); - this.state = 455; + this.state = 459; this.match(TrinoSqlParser.KW_NOT); - this.state = 456; + this.state = 460; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 459; + this.state = 463; this.tableNameCreate(); - this.state = 460; + this.state = 464; this.match(TrinoSqlParser.T__0); - this.state = 461; + this.state = 465; this.tableElement(); - this.state = 466; + this.state = 470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 462; + this.state = 466; this.match(TrinoSqlParser.T__2); - this.state = 463; + this.state = 467; this.tableElement(); } } - this.state = 468; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 469; + this.state = 473; this.match(TrinoSqlParser.T__1); - this.state = 472; + this.state = 476; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 470; + this.state = 474; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 471; + this.state = 475; (localContext as CreateTableContext)._comment = this.string_(); } break; } - this.state = 476; + this.state = 480; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 474; + this.state = 478; this.match(TrinoSqlParser.KW_WITH); - this.state = 475; + this.state = 479; this.properties(); } break; @@ -1414,23 +1416,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 478; + this.state = 482; this.match(TrinoSqlParser.KW_DROP); - this.state = 479; + this.state = 483; this.match(TrinoSqlParser.KW_TABLE); - this.state = 482; + this.state = 486; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 480; + this.state = 484; this.match(TrinoSqlParser.KW_IF); - this.state = 481; + this.state = 485; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 484; + this.state = 488; this.tableRef(); } break; @@ -1438,23 +1440,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InsertIntoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 485; + this.state = 489; this.match(TrinoSqlParser.KW_INSERT); - this.state = 486; + this.state = 490; this.match(TrinoSqlParser.KW_INTO); - this.state = 487; + this.state = 491; this.tableRef(); - this.state = 489; + this.state = 493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: { - this.state = 488; + this.state = 492; this.columnList(); } break; } - this.state = 491; + this.state = 495; this.rootQuery(); } break; @@ -1462,21 +1464,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeleteContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 493; + this.state = 497; this.match(TrinoSqlParser.KW_DELETE); - this.state = 494; + this.state = 498; this.match(TrinoSqlParser.KW_FROM); - this.state = 495; + this.state = 499; this.tableRef(); - this.state = 498; + this.state = 501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 496; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 497; - this.booleanExpression(0); + this.state = 500; + this.whereClause(); } } @@ -1486,11 +1486,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 500; + this.state = 503; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 501; + this.state = 504; this.match(TrinoSqlParser.KW_TABLE); - this.state = 502; + this.state = 505; this.tableRef(); } break; @@ -1498,29 +1498,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 503; + this.state = 506; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 504; + this.state = 507; this.match(TrinoSqlParser.KW_ON); - this.state = 505; + this.state = 508; this.match(TrinoSqlParser.KW_TABLE); - this.state = 506; + this.state = 509; this.tableRef(); - this.state = 507; - this.match(TrinoSqlParser.KW_IS); this.state = 510; + this.match(TrinoSqlParser.KW_IS); + this.state = 513; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 508; + this.state = 511; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 509; + this.state = 512; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1533,29 +1533,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentViewContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 512; + this.state = 515; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 513; + this.state = 516; this.match(TrinoSqlParser.KW_ON); - this.state = 514; + this.state = 517; this.match(TrinoSqlParser.KW_VIEW); - this.state = 515; + this.state = 518; this.viewRef(); - this.state = 516; - this.match(TrinoSqlParser.KW_IS); this.state = 519; + this.match(TrinoSqlParser.KW_IS); + this.state = 522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 517; + this.state = 520; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 518; + this.state = 521; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1568,29 +1568,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 521; + this.state = 524; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 522; + this.state = 525; this.match(TrinoSqlParser.KW_ON); - this.state = 523; + this.state = 526; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 524; + this.state = 527; this.columnRef(); - this.state = 525; - this.match(TrinoSqlParser.KW_IS); this.state = 528; + this.match(TrinoSqlParser.KW_IS); + this.state = 531; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 526; + this.state = 529; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 527; + this.state = 530; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1603,29 +1603,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 530; + this.state = 533; this.match(TrinoSqlParser.KW_ALTER); - this.state = 531; - this.match(TrinoSqlParser.KW_TABLE); this.state = 534; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 532; + this.state = 535; this.match(TrinoSqlParser.KW_IF); - this.state = 533; + this.state = 536; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 536; + this.state = 539; (localContext as RenameTableContext)._from_ = this.tableRef(); - this.state = 537; + this.state = 540; this.match(TrinoSqlParser.KW_RENAME); - this.state = 538; + this.state = 541; this.match(TrinoSqlParser.KW_TO); - this.state = 539; + this.state = 542; (localContext as RenameTableContext)._to = this.tableNameCreate(); } break; @@ -1633,43 +1633,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AddColumnContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 541; + this.state = 544; this.match(TrinoSqlParser.KW_ALTER); - this.state = 542; - this.match(TrinoSqlParser.KW_TABLE); this.state = 545; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 543; + this.state = 546; this.match(TrinoSqlParser.KW_IF); - this.state = 544; + this.state = 547; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 547; + this.state = 550; (localContext as AddColumnContext)._tableName = this.tableRef(); - this.state = 548; + this.state = 551; this.match(TrinoSqlParser.KW_ADD); - this.state = 549; + this.state = 552; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 553; + this.state = 556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 550; + this.state = 553; this.match(TrinoSqlParser.KW_IF); - this.state = 551; + this.state = 554; this.match(TrinoSqlParser.KW_NOT); - this.state = 552; + this.state = 555; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 555; + this.state = 558; (localContext as AddColumnContext)._column = this.columnDefinition(); } break; @@ -1677,45 +1677,45 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 557; + this.state = 560; this.match(TrinoSqlParser.KW_ALTER); - this.state = 558; - this.match(TrinoSqlParser.KW_TABLE); this.state = 561; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 559; + this.state = 562; this.match(TrinoSqlParser.KW_IF); - this.state = 560; + this.state = 563; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 563; + this.state = 566; (localContext as RenameColumnContext)._tableName = this.tableRef(); - this.state = 564; + this.state = 567; this.match(TrinoSqlParser.KW_RENAME); - this.state = 565; - this.match(TrinoSqlParser.KW_COLUMN); this.state = 568; + this.match(TrinoSqlParser.KW_COLUMN); + this.state = 571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 566; + this.state = 569; this.match(TrinoSqlParser.KW_IF); - this.state = 567; + this.state = 570; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 570; + this.state = 573; (localContext as RenameColumnContext)._from_ = this.columnRef(); - this.state = 571; + this.state = 574; this.match(TrinoSqlParser.KW_TO); - this.state = 572; + this.state = 575; (localContext as RenameColumnContext)._to = this.columnNameCreate(); } break; @@ -1723,41 +1723,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropColumnContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 574; + this.state = 577; this.match(TrinoSqlParser.KW_ALTER); - this.state = 575; - this.match(TrinoSqlParser.KW_TABLE); this.state = 578; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 581; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 576; + this.state = 579; this.match(TrinoSqlParser.KW_IF); - this.state = 577; + this.state = 580; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 580; + this.state = 583; (localContext as DropColumnContext)._tableName = this.tableRef(); - this.state = 581; + this.state = 584; this.match(TrinoSqlParser.KW_DROP); - this.state = 582; - this.match(TrinoSqlParser.KW_COLUMN); this.state = 585; + this.match(TrinoSqlParser.KW_COLUMN); + this.state = 588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 583; + this.state = 586; this.match(TrinoSqlParser.KW_IF); - this.state = 584; + this.state = 587; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 587; + this.state = 590; (localContext as DropColumnContext)._column = this.columnRef(); } break; @@ -1765,37 +1765,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetColumnTypeContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 589; + this.state = 592; this.match(TrinoSqlParser.KW_ALTER); - this.state = 590; - this.match(TrinoSqlParser.KW_TABLE); this.state = 593; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 591; + this.state = 594; this.match(TrinoSqlParser.KW_IF); - this.state = 592; + this.state = 595; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 595; + this.state = 598; (localContext as SetColumnTypeContext)._tableName = this.tableRef(); - this.state = 596; + this.state = 599; this.match(TrinoSqlParser.KW_ALTER); - this.state = 597; + this.state = 600; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 598; + this.state = 601; (localContext as SetColumnTypeContext)._column = this.columnRef(); - this.state = 599; + this.state = 602; this.match(TrinoSqlParser.KW_SET); - this.state = 600; + this.state = 603; this.match(TrinoSqlParser.KW_DATA); - this.state = 601; + this.state = 604; this.match(TrinoSqlParser.KW_TYPE); - this.state = 602; + this.state = 605; this.type_(0); } break; @@ -1803,35 +1803,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropNotNullConstraintContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 604; + this.state = 607; this.match(TrinoSqlParser.KW_ALTER); - this.state = 605; - this.match(TrinoSqlParser.KW_TABLE); this.state = 608; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 606; + this.state = 609; this.match(TrinoSqlParser.KW_IF); - this.state = 607; + this.state = 610; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 610; + this.state = 613; (localContext as DropNotNullConstraintContext)._tableName = this.tableRef(); - this.state = 611; + this.state = 614; this.match(TrinoSqlParser.KW_ALTER); - this.state = 612; + this.state = 615; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 613; + this.state = 616; (localContext as DropNotNullConstraintContext)._column = this.columnRef(); - this.state = 614; + this.state = 617; this.match(TrinoSqlParser.KW_DROP); - this.state = 615; + this.state = 618; this.match(TrinoSqlParser.KW_NOT); - this.state = 616; + this.state = 619; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1839,17 +1839,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTableAuthorizationContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 618; + this.state = 621; this.match(TrinoSqlParser.KW_ALTER); - this.state = 619; + this.state = 622; this.match(TrinoSqlParser.KW_TABLE); - this.state = 620; + this.state = 623; (localContext as SetTableAuthorizationContext)._tableName = this.tableRef(); - this.state = 621; + this.state = 624; this.match(TrinoSqlParser.KW_SET); - this.state = 622; + this.state = 625; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 623; + this.state = 626; this.principal(); } break; @@ -1857,17 +1857,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 625; + this.state = 628; this.match(TrinoSqlParser.KW_ALTER); - this.state = 626; + this.state = 629; this.match(TrinoSqlParser.KW_TABLE); - this.state = 627; + this.state = 630; (localContext as SetTablePropertiesContext)._tableName = this.tableRef(); - this.state = 628; + this.state = 631; this.match(TrinoSqlParser.KW_SET); - this.state = 629; + this.state = 632; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 630; + this.state = 633; this.propertyAssignments(); } break; @@ -1875,63 +1875,61 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableExecuteContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 632; + this.state = 635; this.match(TrinoSqlParser.KW_ALTER); - this.state = 633; + this.state = 636; this.match(TrinoSqlParser.KW_TABLE); - this.state = 634; + this.state = 637; (localContext as TableExecuteContext)._tableName = this.tableRef(); - this.state = 635; + this.state = 638; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 636; + this.state = 639; (localContext as TableExecuteContext)._procedureName = this.functionName(); - this.state = 649; + this.state = 652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 637; + this.state = 640; this.match(TrinoSqlParser.T__0); - this.state = 646; + this.state = 649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 638; + this.state = 641; this.callArgument(); - this.state = 643; + this.state = 646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 639; + this.state = 642; this.match(TrinoSqlParser.T__2); - this.state = 640; + this.state = 643; this.callArgument(); } } - this.state = 645; + this.state = 648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 648; + this.state = 651; this.match(TrinoSqlParser.T__1); } break; } - this.state = 653; + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 651; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 652; - (localContext as TableExecuteContext)._where = this.booleanExpression(0); + this.state = 654; + this.whereClause(); } } @@ -1941,18 +1939,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 655; + this.state = 657; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 656; + this.state = 658; this.tableRef(); - this.state = 659; + this.state = 661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 657; + this.state = 659; this.match(TrinoSqlParser.KW_WITH); - this.state = 658; + this.state = 660; this.properties(); } break; @@ -1963,81 +1961,81 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 661; + this.state = 663; this.match(TrinoSqlParser.KW_CREATE); - this.state = 664; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 662; + this.state = 664; this.match(TrinoSqlParser.KW_OR); - this.state = 663; + this.state = 665; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 666; + this.state = 668; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 667; + this.state = 669; this.match(TrinoSqlParser.KW_VIEW); - this.state = 671; + this.state = 673; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 668; + this.state = 670; this.match(TrinoSqlParser.KW_IF); - this.state = 669; + this.state = 671; this.match(TrinoSqlParser.KW_NOT); - this.state = 670; + this.state = 672; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 673; + this.state = 675; this.viewNameCreate(); - this.state = 677; + this.state = 679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 674; + this.state = 676; this.match(TrinoSqlParser.KW_GRACE); - this.state = 675; + this.state = 677; this.match(TrinoSqlParser.KW_PERIOD); - this.state = 676; + this.state = 678; this.interval(); } } - this.state = 681; + this.state = 683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 679; + this.state = 681; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 680; + this.state = 682; (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } - this.state = 685; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 683; + this.state = 685; this.match(TrinoSqlParser.KW_WITH); - this.state = 684; + this.state = 686; this.properties(); } } - this.state = 687; + this.state = 689; this.match(TrinoSqlParser.KW_AS); - this.state = 688; + this.state = 690; this.rootQuery(); } break; @@ -2045,44 +2043,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 690; + this.state = 692; this.match(TrinoSqlParser.KW_CREATE); - this.state = 693; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 691; + this.state = 693; this.match(TrinoSqlParser.KW_OR); - this.state = 692; + this.state = 694; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 695; + this.state = 697; this.match(TrinoSqlParser.KW_VIEW); - this.state = 696; + this.state = 698; this.viewNameCreate(); - this.state = 699; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 697; + this.state = 699; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 698; + this.state = 700; (localContext as CreateViewContext)._comment = this.string_(); } } - this.state = 703; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 701; + this.state = 703; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 702; + this.state = 704; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -2094,21 +2092,21 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 707; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 705; + this.state = 707; this.match(TrinoSqlParser.KW_WITH); - this.state = 706; + this.state = 708; this.properties(); } } - this.state = 709; + this.state = 711; this.match(TrinoSqlParser.KW_AS); - this.state = 710; + this.state = 712; this.rootQuery(); } break; @@ -2116,13 +2114,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 712; + this.state = 714; this.match(TrinoSqlParser.KW_REFRESH); - this.state = 713; + this.state = 715; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 714; + this.state = 716; this.match(TrinoSqlParser.KW_VIEW); - this.state = 715; + this.state = 717; this.viewRef(); } break; @@ -2130,25 +2128,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 716; + this.state = 718; this.match(TrinoSqlParser.KW_DROP); - this.state = 717; + this.state = 719; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 718; + this.state = 720; this.match(TrinoSqlParser.KW_VIEW); - this.state = 721; + this.state = 723; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 719; + this.state = 721; this.match(TrinoSqlParser.KW_IF); - this.state = 720; + this.state = 722; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 723; + this.state = 725; this.viewRef(); } break; @@ -2156,31 +2154,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 724; + this.state = 726; this.match(TrinoSqlParser.KW_ALTER); - this.state = 725; + this.state = 727; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 726; + this.state = 728; this.match(TrinoSqlParser.KW_VIEW); - this.state = 729; + this.state = 731; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 727; + this.state = 729; this.match(TrinoSqlParser.KW_IF); - this.state = 728; + this.state = 730; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 731; + this.state = 733; (localContext as RenameMaterializedViewContext)._from_ = this.viewRef(); - this.state = 732; + this.state = 734; this.match(TrinoSqlParser.KW_RENAME); - this.state = 733; + this.state = 735; this.match(TrinoSqlParser.KW_TO); - this.state = 734; + this.state = 736; (localContext as RenameMaterializedViewContext)._to = this.viewNameCreate(); } break; @@ -2188,19 +2186,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 736; + this.state = 738; this.match(TrinoSqlParser.KW_ALTER); - this.state = 737; + this.state = 739; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 738; + this.state = 740; this.match(TrinoSqlParser.KW_VIEW); - this.state = 739; + this.state = 741; this.viewRef(); - this.state = 740; + this.state = 742; this.match(TrinoSqlParser.KW_SET); - this.state = 741; + this.state = 743; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 742; + this.state = 744; this.propertyAssignments(); } break; @@ -2208,23 +2206,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 744; + this.state = 746; this.match(TrinoSqlParser.KW_DROP); - this.state = 745; + this.state = 747; this.match(TrinoSqlParser.KW_VIEW); - this.state = 748; + this.state = 750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 746; + this.state = 748; this.match(TrinoSqlParser.KW_IF); - this.state = 747; + this.state = 749; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 750; + this.state = 752; this.viewRef(); } break; @@ -2232,17 +2230,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameViewContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 751; + this.state = 753; this.match(TrinoSqlParser.KW_ALTER); - this.state = 752; + this.state = 754; this.match(TrinoSqlParser.KW_VIEW); - this.state = 753; + this.state = 755; (localContext as RenameViewContext)._from_ = this.viewRef(); - this.state = 754; + this.state = 756; this.match(TrinoSqlParser.KW_RENAME); - this.state = 755; + this.state = 757; this.match(TrinoSqlParser.KW_TO); - this.state = 756; + this.state = 758; (localContext as RenameViewContext)._to = this.viewNameCreate(); } break; @@ -2250,17 +2248,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetViewAuthorizationContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 758; + this.state = 760; this.match(TrinoSqlParser.KW_ALTER); - this.state = 759; + this.state = 761; this.match(TrinoSqlParser.KW_VIEW); - this.state = 760; + this.state = 762; (localContext as SetViewAuthorizationContext)._from_ = this.viewRef(); - this.state = 761; + this.state = 763; this.match(TrinoSqlParser.KW_SET); - this.state = 762; + this.state = 764; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 763; + this.state = 765; this.principal(); } break; @@ -2268,39 +2266,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CallContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 765; + this.state = 767; this.match(TrinoSqlParser.KW_CALL); - this.state = 766; + this.state = 768; this.functionName(); - this.state = 767; + this.state = 769; this.match(TrinoSqlParser.T__0); - this.state = 776; + this.state = 778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 768; + this.state = 770; this.callArgument(); - this.state = 773; + this.state = 775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 769; + this.state = 771; this.match(TrinoSqlParser.T__2); - this.state = 770; + this.state = 772; this.callArgument(); } } - this.state = 775; + this.state = 777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 778; + this.state = 780; this.match(TrinoSqlParser.T__1); } break; @@ -2308,21 +2306,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 780; + this.state = 782; this.match(TrinoSqlParser.KW_CREATE); - this.state = 783; + this.state = 785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 781; + this.state = 783; this.match(TrinoSqlParser.KW_OR); - this.state = 782; + this.state = 784; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 785; + this.state = 787; this.functionSpecification(); } break; @@ -2330,23 +2328,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 786; + this.state = 788; this.match(TrinoSqlParser.KW_DROP); - this.state = 787; + this.state = 789; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 790; + this.state = 792; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 788; + this.state = 790; this.match(TrinoSqlParser.KW_IF); - this.state = 789; + this.state = 791; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 792; + this.state = 794; this.functionSignature(); } break; @@ -2354,34 +2352,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateRoleContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 793; + this.state = 795; this.match(TrinoSqlParser.KW_CREATE); - this.state = 794; + this.state = 796; this.match(TrinoSqlParser.KW_ROLE); - this.state = 795; + this.state = 797; (localContext as CreateRoleContext)._name = this.identifier(); - this.state = 799; + this.state = 801; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 796; + this.state = 798; this.match(TrinoSqlParser.KW_WITH); - this.state = 797; + this.state = 799; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 798; + this.state = 800; this.grantor(); } break; } - this.state = 803; + this.state = 805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 801; + this.state = 803; this.match(TrinoSqlParser.KW_IN); - this.state = 802; + this.state = 804; (localContext as CreateRoleContext)._catalog = this.catalogRef(); } } @@ -2392,20 +2390,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropRoleContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 805; + this.state = 807; this.match(TrinoSqlParser.KW_DROP); - this.state = 806; + this.state = 808; this.match(TrinoSqlParser.KW_ROLE); - this.state = 807; + this.state = 809; (localContext as DropRoleContext)._name = this.identifier(); - this.state = 810; + this.state = 812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 808; + this.state = 810; this.match(TrinoSqlParser.KW_IN); - this.state = 809; + this.state = 811; (localContext as DropRoleContext)._catalog = this.catalogRef(); } } @@ -2416,82 +2414,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantRolesContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 812; + this.state = 814; this.match(TrinoSqlParser.KW_GRANT); - this.state = 813; + this.state = 815; this.privilegeOrRole(); - this.state = 818; + this.state = 820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 814; + this.state = 816; this.match(TrinoSqlParser.T__2); - this.state = 815; + this.state = 817; this.privilegeOrRole(); } } - this.state = 820; + this.state = 822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 821; + this.state = 823; this.match(TrinoSqlParser.KW_TO); - this.state = 822; + this.state = 824; this.principal(); - this.state = 827; + this.state = 829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 823; + this.state = 825; this.match(TrinoSqlParser.T__2); - this.state = 824; + this.state = 826; this.principal(); } } - this.state = 829; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 835; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 830; + this.state = 832; this.match(TrinoSqlParser.KW_WITH); - this.state = 831; + this.state = 833; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 832; + this.state = 834; this.match(TrinoSqlParser.KW_OPTION); } break; } - this.state = 838; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 835; + this.state = 837; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 836; + this.state = 838; this.match(TrinoSqlParser.KW_BY); - this.state = 837; + this.state = 839; this.grantor(); } } - this.state = 842; + this.state = 844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 840; + this.state = 842; this.match(TrinoSqlParser.KW_IN); - this.state = 841; + this.state = 843; (localContext as GrantRolesContext)._catalog = this.catalogRef(); } } @@ -2502,29 +2500,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantPrivilegesContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 844; + this.state = 846; this.match(TrinoSqlParser.KW_GRANT); - this.state = 855; + this.state = 857; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { { - this.state = 845; + this.state = 847; this.privilegeOrRole(); - this.state = 850; + this.state = 852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 846; + this.state = 848; this.match(TrinoSqlParser.T__2); - this.state = 847; + this.state = 849; this.privilegeOrRole(); } } - this.state = 852; + this.state = 854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2533,31 +2531,31 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 853; + this.state = 855; this.match(TrinoSqlParser.KW_ALL); - this.state = 854; + this.state = 856; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 857; + this.state = 859; this.match(TrinoSqlParser.KW_ON); - this.state = 858; + this.state = 860; this.grantObject(); - this.state = 859; + this.state = 861; this.match(TrinoSqlParser.KW_TO); - this.state = 860; + this.state = 862; this.principal(); - this.state = 864; + this.state = 866; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 861; + this.state = 863; this.match(TrinoSqlParser.KW_WITH); - this.state = 862; + this.state = 864; this.match(TrinoSqlParser.KW_GRANT); - this.state = 863; + this.state = 865; this.match(TrinoSqlParser.KW_OPTION); } break; @@ -2568,82 +2566,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokeRolesContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 866; + this.state = 868; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 870; + this.state = 872; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 867; + this.state = 869; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 868; + this.state = 870; this.match(TrinoSqlParser.KW_OPTION); - this.state = 869; + this.state = 871; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 872; + this.state = 874; this.privilegeOrRole(); - this.state = 877; + this.state = 879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 873; + this.state = 875; this.match(TrinoSqlParser.T__2); - this.state = 874; + this.state = 876; this.privilegeOrRole(); } } - this.state = 879; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 880; + this.state = 882; this.match(TrinoSqlParser.KW_FROM); - this.state = 881; + this.state = 883; this.principal(); - this.state = 886; + this.state = 888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 882; + this.state = 884; this.match(TrinoSqlParser.T__2); - this.state = 883; + this.state = 885; this.principal(); } } - this.state = 888; + this.state = 890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 892; + this.state = 894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 889; + this.state = 891; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 890; + this.state = 892; this.match(TrinoSqlParser.KW_BY); - this.state = 891; + this.state = 893; this.grantor(); } } - this.state = 896; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 894; + this.state = 896; this.match(TrinoSqlParser.KW_IN); - this.state = 895; + this.state = 897; (localContext as RevokeRolesContext)._catalog = this.catalogRef(); } } @@ -2654,43 +2652,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokePrivilegesContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 898; + this.state = 900; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 902; + this.state = 904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 899; + this.state = 901; this.match(TrinoSqlParser.KW_GRANT); - this.state = 900; + this.state = 902; this.match(TrinoSqlParser.KW_OPTION); - this.state = 901; + this.state = 903; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 914; + this.state = 916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { { - this.state = 904; + this.state = 906; this.privilegeOrRole(); - this.state = 909; + this.state = 911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 905; + this.state = 907; this.match(TrinoSqlParser.T__2); - this.state = 906; + this.state = 908; this.privilegeOrRole(); } } - this.state = 911; + this.state = 913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2699,20 +2697,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 912; + this.state = 914; this.match(TrinoSqlParser.KW_ALL); - this.state = 913; + this.state = 915; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 916; + this.state = 918; this.match(TrinoSqlParser.KW_ON); - this.state = 917; + this.state = 919; this.grantObject(); - this.state = 918; + this.state = 920; this.match(TrinoSqlParser.KW_FROM); - this.state = 919; + this.state = 921; (localContext as RevokePrivilegesContext)._grantee = this.principal(); } break; @@ -2720,28 +2718,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DenyContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 921; + this.state = 923; this.match(TrinoSqlParser.KW_DENY); - this.state = 932; + this.state = 934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 922; + this.state = 924; this.privilege(); - this.state = 927; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 923; + this.state = 925; this.match(TrinoSqlParser.T__2); - this.state = 924; + this.state = 926; this.privilege(); } } - this.state = 929; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2749,20 +2747,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 930; + this.state = 932; this.match(TrinoSqlParser.KW_ALL); - this.state = 931; + this.state = 933; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 934; + this.state = 936; this.match(TrinoSqlParser.KW_ON); - this.state = 935; + this.state = 937; this.grantObject(); - this.state = 936; + this.state = 938; this.match(TrinoSqlParser.KW_TO); - this.state = 937; + this.state = 939; (localContext as DenyContext)._grantee = this.principal(); } break; @@ -2770,40 +2768,40 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetRoleContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 939; + this.state = 941; this.match(TrinoSqlParser.KW_SET); - this.state = 940; + this.state = 942; this.match(TrinoSqlParser.KW_ROLE); - this.state = 944; + this.state = 946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 941; + this.state = 943; this.match(TrinoSqlParser.KW_ALL); } break; case 2: { - this.state = 942; + this.state = 944; this.match(TrinoSqlParser.KW_NONE); } break; case 3: { - this.state = 943; + this.state = 945; (localContext as SetRoleContext)._role = this.identifier(); } break; } - this.state = 948; + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 946; + this.state = 948; this.match(TrinoSqlParser.KW_IN); - this.state = 947; + this.state = 949; (localContext as SetRoleContext)._catalog = this.catalogRef(); } } @@ -2814,18 +2812,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 950; + this.state = 952; this.match(TrinoSqlParser.KW_SHOW); - this.state = 951; + this.state = 953; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 954; + this.state = 956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 952; + this.state = 954; this.match(TrinoSqlParser.KW_ON); - this.state = 953; + this.state = 955; this.grantObject(); } } @@ -2836,39 +2834,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 956; + this.state = 958; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 968; + this.state = 970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 957; + this.state = 959; this.match(TrinoSqlParser.T__0); - this.state = 958; + this.state = 960; this.explainOption(); - this.state = 963; + this.state = 965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 959; + this.state = 961; this.match(TrinoSqlParser.T__2); - this.state = 960; + this.state = 962; this.explainOption(); } } - this.state = 965; + this.state = 967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 966; + this.state = 968; this.match(TrinoSqlParser.T__1); } break; } - this.state = 970; + this.state = 972; this.statement(); } break; @@ -2876,21 +2874,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainAnalyzeContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 971; + this.state = 973; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 972; - this.match(TrinoSqlParser.KW_ANALYZE); this.state = 974; + this.match(TrinoSqlParser.KW_ANALYZE); + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 973; + this.state = 975; this.match(TrinoSqlParser.KW_VERBOSE); } } - this.state = 976; + this.state = 978; this.statement(); } break; @@ -2898,13 +2896,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 977; + this.state = 979; this.match(TrinoSqlParser.KW_SHOW); - this.state = 978; + this.state = 980; this.match(TrinoSqlParser.KW_CREATE); - this.state = 979; + this.state = 981; this.match(TrinoSqlParser.KW_TABLE); - this.state = 980; + this.state = 982; this.tableRef(); } break; @@ -2912,13 +2910,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateSchemaContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 981; + this.state = 983; this.match(TrinoSqlParser.KW_SHOW); - this.state = 982; + this.state = 984; this.match(TrinoSqlParser.KW_CREATE); - this.state = 983; + this.state = 985; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 984; + this.state = 986; this.schemaRef(); } break; @@ -2926,13 +2924,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 985; + this.state = 987; this.match(TrinoSqlParser.KW_SHOW); - this.state = 986; + this.state = 988; this.match(TrinoSqlParser.KW_CREATE); - this.state = 987; + this.state = 989; this.match(TrinoSqlParser.KW_VIEW); - this.state = 988; + this.state = 990; this.viewRef(); } break; @@ -2940,15 +2938,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 989; + this.state = 991; this.match(TrinoSqlParser.KW_SHOW); - this.state = 990; + this.state = 992; this.match(TrinoSqlParser.KW_CREATE); - this.state = 991; + this.state = 993; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 992; + this.state = 994; this.match(TrinoSqlParser.KW_VIEW); - this.state = 993; + this.state = 995; this.viewRef(); } break; @@ -2956,13 +2954,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 994; + this.state = 996; this.match(TrinoSqlParser.KW_SHOW); - this.state = 995; + this.state = 997; this.match(TrinoSqlParser.KW_CREATE); - this.state = 996; + this.state = 998; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 997; + this.state = 999; this.functionName(); } break; @@ -2970,16 +2968,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 998; + this.state = 1000; this.match(TrinoSqlParser.KW_SHOW); - this.state = 999; + this.state = 1001; this.match(TrinoSqlParser.KW_TABLES); - this.state = 1002; + this.state = 1004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1000; + this.state = 1002; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -2988,28 +2986,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 1003; this.schemaRef(); } } - this.state = 1010; + this.state = 1012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1004; + this.state = 1006; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1005; + this.state = 1007; (localContext as ShowTablesContext)._pattern = this.string_(); - this.state = 1008; + this.state = 1010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1006; + this.state = 1008; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1007; + this.state = 1009; (localContext as ShowTablesContext)._escape = this.string_(); } } @@ -3023,16 +3021,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSchemasContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1012; + this.state = 1014; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1013; + this.state = 1015; this.match(TrinoSqlParser.KW_SCHEMAS); - this.state = 1016; + this.state = 1018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1014; + this.state = 1016; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3041,28 +3039,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1015; + this.state = 1017; this.catalogRef(); } } - this.state = 1024; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1018; + this.state = 1020; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1019; + this.state = 1021; (localContext as ShowSchemasContext)._pattern = this.string_(); - this.state = 1022; + this.state = 1024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1020; + this.state = 1022; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1021; + this.state = 1023; (localContext as ShowSchemasContext)._escape = this.string_(); } } @@ -3076,27 +3074,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1026; + this.state = 1028; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1027; + this.state = 1029; this.match(TrinoSqlParser.KW_CATALOGS); - this.state = 1034; + this.state = 1036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1028; + this.state = 1030; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1029; + this.state = 1031; (localContext as ShowCatalogsContext)._pattern = this.string_(); - this.state = 1032; + this.state = 1034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1030; + this.state = 1032; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1031; + this.state = 1033; (localContext as ShowCatalogsContext)._escape = this.string_(); } } @@ -3110,11 +3108,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1036; + this.state = 1038; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1037; + this.state = 1039; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1038; + this.state = 1040; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3123,25 +3121,25 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1039; + this.state = 1041; this.tableOrViewName(); - this.state = 1046; + this.state = 1048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1040; + this.state = 1042; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1041; + this.state = 1043; (localContext as ShowColumnsContext)._pattern = this.string_(); - this.state = 1044; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1042; + this.state = 1044; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1043; + this.state = 1045; (localContext as ShowColumnsContext)._escape = this.string_(); } } @@ -3155,13 +3153,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1048; + this.state = 1050; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1051; this.match(TrinoSqlParser.KW_STATS); - this.state = 1050; + this.state = 1052; this.match(TrinoSqlParser.KW_FOR); - this.state = 1051; + this.state = 1053; this.tableOrViewName(); } break; @@ -3169,17 +3167,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsForQueryContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1052; + this.state = 1054; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1053; + this.state = 1055; this.match(TrinoSqlParser.KW_STATS); - this.state = 1054; + this.state = 1056; this.match(TrinoSqlParser.KW_FOR); - this.state = 1055; + this.state = 1057; this.match(TrinoSqlParser.T__0); - this.state = 1056; + this.state = 1058; this.rootQuery(); - this.state = 1057; + this.state = 1059; this.match(TrinoSqlParser.T__1); } break; @@ -3187,26 +3185,26 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRolesContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1059; - this.match(TrinoSqlParser.KW_SHOW); this.state = 1061; + this.match(TrinoSqlParser.KW_SHOW); + this.state = 1063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 56) { { - this.state = 1060; + this.state = 1062; this.match(TrinoSqlParser.KW_CURRENT); } } - this.state = 1063; + this.state = 1065; this.match(TrinoSqlParser.KW_ROLES); - this.state = 1066; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1064; + this.state = 1066; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3215,7 +3213,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1065; + this.state = 1067; this.catalogRef(); } } @@ -3226,18 +3224,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRoleGrantsContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1068; + this.state = 1070; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1069; + this.state = 1071; this.match(TrinoSqlParser.KW_ROLE); - this.state = 1070; + this.state = 1072; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 1073; + this.state = 1075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1071; + this.state = 1073; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3246,7 +3244,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1072; + this.state = 1074; this.catalogRef(); } } @@ -3257,9 +3255,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1075; + this.state = 1077; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1076; + this.state = 1078; this.tableOrViewName(); } break; @@ -3267,9 +3265,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1077; + this.state = 1079; this.match(TrinoSqlParser.KW_DESC); - this.state = 1078; + this.state = 1080; this.tableOrViewName(); } break; @@ -3277,16 +3275,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1079; + this.state = 1081; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1080; + this.state = 1082; this.match(TrinoSqlParser.KW_FUNCTIONS); - this.state = 1083; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1081; + this.state = 1083; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3295,28 +3293,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1084; this.schemaRef(); } } - this.state = 1091; + this.state = 1093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1085; + this.state = 1087; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1086; + this.state = 1088; (localContext as ShowFunctionsContext)._pattern = this.string_(); - this.state = 1089; + this.state = 1091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1087; + this.state = 1089; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1088; + this.state = 1090; (localContext as ShowFunctionsContext)._escape = this.string_(); } } @@ -3330,27 +3328,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSessionContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1093; + this.state = 1095; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1094; + this.state = 1096; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1101; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1095; + this.state = 1097; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1096; + this.state = 1098; (localContext as ShowSessionContext)._pattern = this.string_(); - this.state = 1099; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1097; + this.state = 1099; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1098; + this.state = 1100; (localContext as ShowSessionContext)._escape = this.string_(); } } @@ -3364,13 +3362,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1103; + this.state = 1105; this.match(TrinoSqlParser.KW_SET); - this.state = 1104; + this.state = 1106; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1105; + this.state = 1107; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 1106; + this.state = 1108; this.authorizationUser(); } break; @@ -3378,11 +3376,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1107; + this.state = 1109; this.match(TrinoSqlParser.KW_RESET); - this.state = 1108; + this.state = 1110; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1109; + this.state = 1111; this.match(TrinoSqlParser.KW_AUTHORIZATION); } break; @@ -3390,15 +3388,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1110; + this.state = 1112; this.match(TrinoSqlParser.KW_SET); - this.state = 1111; + this.state = 1113; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1112; + this.state = 1114; this.qualifiedName(); - this.state = 1113; + this.state = 1115; this.match(TrinoSqlParser.EQ); - this.state = 1114; + this.state = 1116; this.expression(); } break; @@ -3406,11 +3404,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1116; + this.state = 1118; this.match(TrinoSqlParser.KW_RESET); - this.state = 1117; + this.state = 1119; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1118; + this.state = 1120; this.qualifiedName(); } break; @@ -3418,30 +3416,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StartTransactionContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1119; + this.state = 1121; this.match(TrinoSqlParser.KW_START); - this.state = 1120; + this.state = 1122; this.match(TrinoSqlParser.KW_TRANSACTION); - this.state = 1129; + this.state = 1131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 220) { { - this.state = 1121; + this.state = 1123; this.transactionMode(); - this.state = 1126; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1122; + this.state = 1124; this.match(TrinoSqlParser.T__2); - this.state = 1123; + this.state = 1125; this.transactionMode(); } } - this.state = 1128; + this.state = 1130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3454,14 +3452,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommitContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1131; - this.match(TrinoSqlParser.KW_COMMIT); this.state = 1133; + this.match(TrinoSqlParser.KW_COMMIT); + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1132; + this.state = 1134; this.match(TrinoSqlParser.KW_WORK); } } @@ -3472,14 +3470,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollbackContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1135; - this.match(TrinoSqlParser.KW_ROLLBACK); this.state = 1137; + this.match(TrinoSqlParser.KW_ROLLBACK); + this.state = 1139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1136; + this.state = 1138; this.match(TrinoSqlParser.KW_WORK); } } @@ -3490,13 +3488,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PrepareContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1139; + this.state = 1141; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1140; + this.state = 1142; this.identifier(); - this.state = 1141; + this.state = 1143; this.match(TrinoSqlParser.KW_FROM); - this.state = 1142; + this.state = 1144; this.statement(); } break; @@ -3504,11 +3502,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeallocateContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1144; + this.state = 1146; this.match(TrinoSqlParser.KW_DEALLOCATE); - this.state = 1145; + this.state = 1147; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1146; + this.state = 1148; this.identifier(); } break; @@ -3516,32 +3514,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1147; + this.state = 1149; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1148; + this.state = 1150; this.identifier(); - this.state = 1158; + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1149; + this.state = 1151; this.match(TrinoSqlParser.KW_USING); - this.state = 1150; + this.state = 1152; this.expression(); - this.state = 1155; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1151; + this.state = 1153; this.match(TrinoSqlParser.T__2); - this.state = 1152; + this.state = 1154; this.expression(); } } - this.state = 1157; + this.state = 1159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3554,34 +3552,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteImmediateContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1160; + this.state = 1162; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1161; + this.state = 1163; this.match(TrinoSqlParser.KW_IMMEDIATE); - this.state = 1162; + this.state = 1164; this.string_(); - this.state = 1172; + this.state = 1174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1163; + this.state = 1165; this.match(TrinoSqlParser.KW_USING); - this.state = 1164; + this.state = 1166; this.expression(); - this.state = 1169; + this.state = 1171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1165; + this.state = 1167; this.match(TrinoSqlParser.T__2); - this.state = 1166; + this.state = 1168; this.expression(); } } - this.state = 1171; + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3594,11 +3592,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeInputContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1174; + this.state = 1176; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1175; + this.state = 1177; this.match(TrinoSqlParser.KW_INPUT); - this.state = 1176; + this.state = 1178; this.identifier(); } break; @@ -3606,11 +3604,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeOutputContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1177; + this.state = 1179; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1178; + this.state = 1180; this.match(TrinoSqlParser.KW_OUTPUT); - this.state = 1179; + this.state = 1181; this.identifier(); } break; @@ -3618,11 +3616,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetPathContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1180; + this.state = 1182; this.match(TrinoSqlParser.KW_SET); - this.state = 1181; + this.state = 1183; this.match(TrinoSqlParser.KW_PATH); - this.state = 1182; + this.state = 1184; this.pathSpecification(); } break; @@ -3630,24 +3628,24 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1183; + this.state = 1185; this.match(TrinoSqlParser.KW_SET); - this.state = 1184; + this.state = 1186; this.match(TrinoSqlParser.KW_TIME); - this.state = 1185; + this.state = 1187; this.match(TrinoSqlParser.KW_ZONE); - this.state = 1188; + this.state = 1190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1186; + this.state = 1188; this.match(TrinoSqlParser.KW_LOCAL); } break; case 2: { - this.state = 1187; + this.state = 1189; this.expression(); } break; @@ -3658,39 +3656,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UpdateContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1190; + this.state = 1192; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 1191; + this.state = 1193; this.tableRef(); - this.state = 1192; + this.state = 1194; this.match(TrinoSqlParser.KW_SET); - this.state = 1193; + this.state = 1195; this.updateAssignment(); - this.state = 1198; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1194; + this.state = 1196; this.match(TrinoSqlParser.T__2); - this.state = 1195; + this.state = 1197; this.updateAssignment(); } } - this.state = 1200; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1203; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 1201; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 1202; - (localContext as UpdateContext)._where = this.booleanExpression(0); + this.state = 1203; + this.whereClause(); } } @@ -3700,51 +3696,51 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1205; - this.match(TrinoSqlParser.KW_MERGE); this.state = 1206; - this.match(TrinoSqlParser.KW_INTO); + this.match(TrinoSqlParser.KW_MERGE); this.state = 1207; + this.match(TrinoSqlParser.KW_INTO); + this.state = 1208; this.tableRef(); - this.state = 1212; + this.state = 1213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282056543) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 1209; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1208; + this.state = 1209; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1211; + this.state = 1212; this.identifier(); } } - this.state = 1214; - this.match(TrinoSqlParser.KW_USING); this.state = 1215; - this.relation(0); + this.match(TrinoSqlParser.KW_USING); this.state = 1216; - this.match(TrinoSqlParser.KW_ON); + this.relation(0); this.state = 1217; + this.match(TrinoSqlParser.KW_ON); + this.state = 1218; this.expression(); - this.state = 1219; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1218; + this.state = 1219; this.mergeCase(); } } - this.state = 1221; + this.state = 1222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); @@ -3754,15 +3750,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTableCommentContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1223; - this.match(TrinoSqlParser.KW_SHOW); this.state = 1224; - this.match(TrinoSqlParser.KW_COMMENT); + this.match(TrinoSqlParser.KW_SHOW); this.state = 1225; - this.match(TrinoSqlParser.KW_ON); + this.match(TrinoSqlParser.KW_COMMENT); this.state = 1226; - this.match(TrinoSqlParser.KW_TABLE); + this.match(TrinoSqlParser.KW_ON); this.state = 1227; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 1228; this.tableRef(); } break; @@ -3770,15 +3766,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnCommentContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1228; - this.match(TrinoSqlParser.KW_SHOW); this.state = 1229; - this.match(TrinoSqlParser.KW_COMMENT); + this.match(TrinoSqlParser.KW_SHOW); this.state = 1230; - this.match(TrinoSqlParser.KW_ON); + this.match(TrinoSqlParser.KW_COMMENT); this.state = 1231; - this.match(TrinoSqlParser.KW_COLUMN); + this.match(TrinoSqlParser.KW_ON); this.state = 1232; + this.match(TrinoSqlParser.KW_COLUMN); + this.state = 1233; this.columnRef(); } break; @@ -3804,17 +3800,17 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1236; + this.state = 1237; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1235; + this.state = 1236; this.withFunction(); } break; } - this.state = 1238; + this.state = 1239; this.query(); } } @@ -3839,23 +3835,23 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1240; - this.match(TrinoSqlParser.KW_WITH); this.state = 1241; + this.match(TrinoSqlParser.KW_WITH); + this.state = 1242; this.functionSpecification(); - this.state = 1246; + this.state = 1247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1242; - this.match(TrinoSqlParser.T__2); this.state = 1243; + this.match(TrinoSqlParser.T__2); + this.state = 1244; this.functionSpecification(); } } - this.state = 1248; + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3883,17 +3879,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1250; + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 1249; + this.state = 1250; this.with_(); } } - this.state = 1252; + this.state = 1253; this.queryNoWith(); } } @@ -3918,33 +3914,33 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1254; + this.state = 1255; this.match(TrinoSqlParser.KW_WITH); - this.state = 1256; + this.state = 1257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 221) { { - this.state = 1255; + this.state = 1256; this.match(TrinoSqlParser.KW_RECURSIVE); } } - this.state = 1258; + this.state = 1259; this.namedQuery(); - this.state = 1263; + this.state = 1264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1259; - this.match(TrinoSqlParser.T__2); this.state = 1260; + this.match(TrinoSqlParser.T__2); + this.state = 1261; this.namedQuery(); } } - this.state = 1265; + this.state = 1266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3968,7 +3964,7 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new TableElementContext(this.context, this.state); this.enterRule(localContext, 26, TrinoSqlParser.RULE_tableElement); try { - this.state = 1268; + this.state = 1269; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -4190,14 +4186,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1267; this.columnDefinition(); } break; case TrinoSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1267; + this.state = 1268; this.likeClause(); } break; @@ -4226,42 +4222,42 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1270; - this.columnNameCreate(); this.state = 1271; + this.columnNameCreate(); + this.state = 1272; localContext._colType = this.type_(0); - this.state = 1274; + this.state = 1275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 1272; - this.match(TrinoSqlParser.KW_NOT); this.state = 1273; + this.match(TrinoSqlParser.KW_NOT); + this.state = 1274; this.match(TrinoSqlParser.KW_NULL); } } - this.state = 1278; + this.state = 1279; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1276; - this.match(TrinoSqlParser.KW_COMMENT); this.state = 1277; + this.match(TrinoSqlParser.KW_COMMENT); + this.state = 1278; localContext._comment = this.string_(); } break; } - this.state = 1282; + this.state = 1283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1280; - this.match(TrinoSqlParser.KW_WITH); this.state = 1281; + this.match(TrinoSqlParser.KW_WITH); + this.state = 1282; this.properties(); } break; @@ -4289,16 +4285,16 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1284; - this.match(TrinoSqlParser.KW_LIKE); this.state = 1285; + this.match(TrinoSqlParser.KW_LIKE); + this.state = 1286; this.tableRef(); - this.state = 1288; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92 || _la === 123) { { - this.state = 1286; + this.state = 1287; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 123)) { @@ -4308,7 +4304,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1287; + this.state = 1288; this.match(TrinoSqlParser.KW_PROPERTIES); } } @@ -4335,11 +4331,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1290; - this.match(TrinoSqlParser.T__0); this.state = 1291; - this.propertyAssignments(); + this.match(TrinoSqlParser.T__0); this.state = 1292; + this.propertyAssignments(); + this.state = 1293; this.match(TrinoSqlParser.T__1); } } @@ -4364,21 +4360,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1295; this.property(); - this.state = 1299; + this.state = 1300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1295; - this.match(TrinoSqlParser.T__2); this.state = 1296; + this.match(TrinoSqlParser.T__2); + this.state = 1297; this.property(); } } - this.state = 1301; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4404,11 +4400,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1302; - this.identifier(); this.state = 1303; - this.match(TrinoSqlParser.EQ); + this.identifier(); this.state = 1304; + this.match(TrinoSqlParser.EQ); + this.state = 1305; this.propertyValue(); } } @@ -4430,14 +4426,14 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 38, TrinoSqlParser.RULE_propertyValue); try { - this.state = 1308; + this.state = 1309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: localContext = new DefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1306; + this.state = 1307; this.match(TrinoSqlParser.KW_DEFAULT); } break; @@ -4445,7 +4441,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NonDefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1307; + this.state = 1308; this.expression(); } break; @@ -4472,53 +4468,53 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1310; + this.state = 1311; this.queryTerm(0); - this.state = 1321; + this.state = 1322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1311; - this.match(TrinoSqlParser.KW_ORDER); this.state = 1312; - this.match(TrinoSqlParser.KW_BY); + this.match(TrinoSqlParser.KW_ORDER); this.state = 1313; + this.match(TrinoSqlParser.KW_BY); + this.state = 1314; this.sortItem(); - this.state = 1318; + this.state = 1319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1314; - this.match(TrinoSqlParser.T__2); this.state = 1315; + this.match(TrinoSqlParser.T__2); + this.state = 1316; this.sortItem(); } } - this.state = 1320; + this.state = 1321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1328; + this.state = 1329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1323; - this.match(TrinoSqlParser.KW_OFFSET); this.state = 1324; + this.match(TrinoSqlParser.KW_OFFSET); + this.state = 1325; localContext._offset = this.rowCount(); - this.state = 1326; + this.state = 1327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 239 || _la === 240) { { - this.state = 1325; + this.state = 1326; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4533,15 +4529,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1343; + this.state = 1344; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LIMIT: { { - this.state = 1330; - this.match(TrinoSqlParser.KW_LIMIT); this.state = 1331; + this.match(TrinoSqlParser.KW_LIMIT); + this.state = 1332; localContext._limit = this.limitRowCount(); } } @@ -4549,9 +4545,9 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FETCH: { { - this.state = 1332; - this.match(TrinoSqlParser.KW_FETCH); this.state = 1333; + this.match(TrinoSqlParser.KW_FETCH); + this.state = 1334; _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 174)) { this.errorHandler.recoverInline(this); @@ -4560,17 +4556,17 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1335; + this.state = 1336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 324 || _la === 329) { { - this.state = 1334; + this.state = 1335; localContext._fetchFirst = this.rowCount(); } } - this.state = 1337; + this.state = 1338; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4579,20 +4575,20 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1342; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONLY: { - this.state = 1338; + this.state = 1339; this.match(TrinoSqlParser.KW_ONLY); } break; case TrinoSqlParser.KW_WITH: { - this.state = 1339; - this.match(TrinoSqlParser.KW_WITH); this.state = 1340; + this.match(TrinoSqlParser.KW_WITH); + this.state = 1341; this.match(TrinoSqlParser.KW_TIES); } break; @@ -4662,13 +4658,13 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new LimitRowCountContext(this.context, this.state); this.enterRule(localContext, 42, TrinoSqlParser.RULE_limitRowCount); try { - this.state = 1347; + this.state = 1348; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1346; this.match(TrinoSqlParser.KW_ALL); } break; @@ -4676,7 +4672,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1346; + this.state = 1347; this.rowCount(); } break; @@ -4705,7 +4701,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1350; _la = this.tokenStream.LA(1); if(!(_la === 324 || _la === 329)) { this.errorHandler.recoverInline(this); @@ -4754,11 +4750,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1352; + this.state = 1353; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1368; + this.state = 1369; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -4768,7 +4764,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1366; + this.state = 1367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: @@ -4776,23 +4772,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1354; + this.state = 1355; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1355; + this.state = 1356; (localContext as SetOperationContext)._operator = this.match(TrinoSqlParser.KW_INTERSECT); - this.state = 1357; + this.state = 1358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1356; + this.state = 1357; this.setQuantifier(); } } - this.state = 1359; + this.state = 1360; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -4801,11 +4797,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1360; + this.state = 1361; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1361; + this.state = 1362; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 281)) { @@ -4815,24 +4811,24 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1363; + this.state = 1364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1362; + this.state = 1363; this.setQuantifier(); } } - this.state = 1365; + this.state = 1366; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1370; + this.state = 1371; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -4857,14 +4853,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 48, TrinoSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1387; + this.state = 1388; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1371; + this.state = 1372; this.querySpecification(); } break; @@ -4872,9 +4868,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1372; - this.match(TrinoSqlParser.KW_TABLE); this.state = 1373; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 1374; this.tableRef(); } break; @@ -4882,25 +4878,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1374; - this.match(TrinoSqlParser.KW_VALUES); this.state = 1375; + this.match(TrinoSqlParser.KW_VALUES); + this.state = 1376; this.expression(); - this.state = 1380; + this.state = 1381; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1376; - this.match(TrinoSqlParser.T__2); this.state = 1377; + this.match(TrinoSqlParser.T__2); + this.state = 1378; this.expression(); } } } - this.state = 1382; + this.state = 1383; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4910,11 +4906,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1383; - this.match(TrinoSqlParser.T__0); this.state = 1384; - this.queryNoWith(); + this.match(TrinoSqlParser.T__0); this.state = 1385; + this.queryNoWith(); + this.state = 1386; this.match(TrinoSqlParser.T__1); } break; @@ -4943,28 +4939,28 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; + this.state = 1392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1389; + this.state = 1390; this.columnRef(); } break; case 2: { - this.state = 1390; + this.state = 1391; this.expression(); } break; } - this.state = 1394; + this.state = 1395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1393; + this.state = 1394; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 29 || _la === 75)) { @@ -4977,14 +4973,14 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 1398; + this.state = 1399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1396; - this.match(TrinoSqlParser.KW_NULLS); this.state = 1397; + this.match(TrinoSqlParser.KW_NULLS); + this.state = 1398; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 148)) { @@ -5020,62 +5016,62 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1401; this.match(TrinoSqlParser.KW_SELECT); - this.state = 1402; + this.state = 1403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1401; + this.state = 1402; this.setQuantifier(); } break; } - this.state = 1404; + this.state = 1405; this.selectItem(); - this.state = 1409; + this.state = 1410; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1405; - this.match(TrinoSqlParser.T__2); this.state = 1406; + this.match(TrinoSqlParser.T__2); + this.state = 1407; this.selectItem(); } } } - this.state = 1411; + this.state = 1412; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } - this.state = 1421; + this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1412; - this.match(TrinoSqlParser.KW_FROM); this.state = 1413; + this.match(TrinoSqlParser.KW_FROM); + this.state = 1414; this.relation(0); - this.state = 1418; + this.state = 1419; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1414; - this.match(TrinoSqlParser.T__2); this.state = 1415; + this.match(TrinoSqlParser.T__2); + this.state = 1416; this.relation(0); } } } - this.state = 1420; + this.state = 1421; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); } @@ -5087,10 +5083,8 @@ export class TrinoSqlParser extends SQLParserBase { switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1423; - this.match(TrinoSqlParser.KW_WHERE); this.state = 1424; - localContext._where = this.booleanExpression(0); + this.whereClause(); } break; } @@ -5166,40 +5160,66 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 54, TrinoSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1447; + this.match(TrinoSqlParser.KW_WHERE); + this.state = 1448; + localContext._where = this.booleanExpression(0); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 54, TrinoSqlParser.RULE_groupBy); + this.enterRule(localContext, 56, TrinoSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1447; + this.state = 1450; this.setQuantifier(); } break; } - this.state = 1450; + this.state = 1453; this.groupingElement(); - this.state = 1455; + this.state = 1458; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1451; + this.state = 1454; this.match(TrinoSqlParser.T__2); - this.state = 1452; + this.state = 1455; this.groupingElement(); } } } - this.state = 1457; + this.state = 1460; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } @@ -5221,17 +5241,17 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 56, TrinoSqlParser.RULE_groupingElement); + this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupingElement); let _la: number; try { - this.state = 1498; + this.state = 1501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1461; this.groupingSet(); } break; @@ -5239,37 +5259,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollupContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1459; + this.state = 1462; this.match(TrinoSqlParser.KW_ROLLUP); - this.state = 1460; + this.state = 1463; this.match(TrinoSqlParser.T__0); - this.state = 1469; + this.state = 1472; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: { - this.state = 1461; + this.state = 1464; this.groupingSet(); - this.state = 1466; + this.state = 1469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1462; + this.state = 1465; this.match(TrinoSqlParser.T__2); - this.state = 1463; + this.state = 1466; this.groupingSet(); } } - this.state = 1468; + this.state = 1471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1471; + this.state = 1474; this.match(TrinoSqlParser.T__1); } break; @@ -5277,37 +5297,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CubeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1472; + this.state = 1475; this.match(TrinoSqlParser.KW_CUBE); - this.state = 1473; + this.state = 1476; this.match(TrinoSqlParser.T__0); - this.state = 1482; + this.state = 1485; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { - this.state = 1474; + this.state = 1477; this.groupingSet(); - this.state = 1479; + this.state = 1482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1475; + this.state = 1478; this.match(TrinoSqlParser.T__2); - this.state = 1476; + this.state = 1479; this.groupingSet(); } } - this.state = 1481; + this.state = 1484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1484; + this.state = 1487; this.match(TrinoSqlParser.T__1); } break; @@ -5315,31 +5335,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MultipleGroupingSetsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1485; + this.state = 1488; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 1486; + this.state = 1489; this.match(TrinoSqlParser.KW_SETS); - this.state = 1487; + this.state = 1490; this.match(TrinoSqlParser.T__0); - this.state = 1488; + this.state = 1491; this.groupingSet(); - this.state = 1493; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1489; + this.state = 1492; this.match(TrinoSqlParser.T__2); - this.state = 1490; + this.state = 1493; this.groupingSet(); } } - this.state = 1495; + this.state = 1498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1496; + this.state = 1499; this.match(TrinoSqlParser.T__1); } break; @@ -5361,51 +5381,51 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupingSet); + this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1513; + this.state = 1516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1500; + this.state = 1503; this.match(TrinoSqlParser.T__0); - this.state = 1509; + this.state = 1512; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { case 1: { - this.state = 1501; + this.state = 1504; this.groupingTerm(); - this.state = 1506; + this.state = 1509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1502; + this.state = 1505; this.match(TrinoSqlParser.T__2); - this.state = 1503; + this.state = 1506; this.groupingTerm(); } } - this.state = 1508; + this.state = 1511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1511; + this.state = 1514; this.match(TrinoSqlParser.T__1); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1512; + this.state = 1515; this.groupingTerm(); } break; @@ -5427,22 +5447,22 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingTerm(): GroupingTermContext { let localContext = new GroupingTermContext(this.context, this.state); - this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupingTerm); + this.enterRule(localContext, 62, TrinoSqlParser.RULE_groupingTerm); try { - this.state = 1517; + this.state = 1520; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1518; this.columnRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1516; + this.state = 1519; this.expression(); } break; @@ -5464,19 +5484,19 @@ export class TrinoSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 62, TrinoSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 64, TrinoSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1522; localContext._name = this.identifier(); - this.state = 1520; + this.state = 1523; this.match(TrinoSqlParser.KW_AS); - this.state = 1521; + this.state = 1524; this.match(TrinoSqlParser.T__0); - this.state = 1522; + this.state = 1525; this.windowSpecification(); - this.state = 1523; + this.state = 1526; this.match(TrinoSqlParser.T__1); } } @@ -5496,89 +5516,89 @@ export class TrinoSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 64, TrinoSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 66, TrinoSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1526; + this.state = 1529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - this.state = 1525; + this.state = 1528; localContext._existingWindowName = this.identifier(); } break; } - this.state = 1538; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1528; + this.state = 1531; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1529; + this.state = 1532; this.match(TrinoSqlParser.KW_BY); - this.state = 1530; + this.state = 1533; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 1535; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1531; + this.state = 1534; this.match(TrinoSqlParser.T__2); - this.state = 1532; + this.state = 1535; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 1537; + this.state = 1540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1550; + this.state = 1553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1540; + this.state = 1543; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1541; + this.state = 1544; this.match(TrinoSqlParser.KW_BY); - this.state = 1542; + this.state = 1545; this.sortItem(); - this.state = 1547; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1543; + this.state = 1546; this.match(TrinoSqlParser.T__2); - this.state = 1544; + this.state = 1547; this.sortItem(); } } - this.state = 1549; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1553; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116 || _la === 168 || _la === 219 || _la === 240) { { - this.state = 1552; + this.state = 1555; this.windowFrame(); } } @@ -5601,30 +5621,30 @@ export class TrinoSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 66, TrinoSqlParser.RULE_namedQuery); + this.enterRule(localContext, 68, TrinoSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1555; + this.state = 1558; localContext._name = this.identifier(); - this.state = 1557; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 1556; + this.state = 1559; this.columnAliases(); } } - this.state = 1559; + this.state = 1562; this.match(TrinoSqlParser.KW_AS); - this.state = 1560; + this.state = 1563; this.match(TrinoSqlParser.T__0); - this.state = 1561; + this.state = 1564; this.query(); - this.state = 1562; + this.state = 1565; this.match(TrinoSqlParser.T__1); } } @@ -5644,12 +5664,12 @@ export class TrinoSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 68, TrinoSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 70, TrinoSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1564; + this.state = 1567; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 79)) { this.errorHandler.recoverInline(this); @@ -5676,48 +5696,48 @@ export class TrinoSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 70, TrinoSqlParser.RULE_selectItem); + this.enterRule(localContext, 72, TrinoSqlParser.RULE_selectItem); let _la: number; try { - this.state = 1584; + this.state = 1587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1568; + this.state = 1571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1566; + this.state = 1569; this.columnRef(); } break; case 2: { - this.state = 1567; + this.state = 1570; this.expression(); } break; } - this.state = 1574; + this.state = 1577; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1571; + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1570; + this.state = 1573; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1573; + this.state = 1576; (localContext as SelectSingleContext)._alias = this.identifier(); } break; @@ -5728,20 +5748,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1576; + this.state = 1579; this.primaryExpression(0); - this.state = 1577; + this.state = 1580; this.match(TrinoSqlParser.T__3); - this.state = 1578; - this.match(TrinoSqlParser.ASTERISK); this.state = 1581; + this.match(TrinoSqlParser.ASTERISK); + this.state = 1584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1579; + this.state = 1582; this.match(TrinoSqlParser.KW_AS); - this.state = 1580; + this.state = 1583; this.columnAliases(); } break; @@ -5752,7 +5772,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1583; + this.state = 1586; this.match(TrinoSqlParser.ASTERISK); } break; @@ -5784,8 +5804,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 72; - this.enterRecursionRule(localContext, 72, TrinoSqlParser.RULE_relation, _p); + let _startState = 74; + this.enterRecursionRule(localContext, 74, TrinoSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5795,11 +5815,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1587; + this.state = 1590; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1607; + this.state = 1610; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5813,20 +5833,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_relation); - this.state = 1589; + this.state = 1592; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1603; + this.state = 1606; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_CROSS: { - this.state = 1590; + this.state = 1593; this.match(TrinoSqlParser.KW_CROSS); - this.state = 1591; + this.state = 1594; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1592; + this.state = 1595; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5836,25 +5856,25 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: case TrinoSqlParser.KW_RIGHT: { - this.state = 1593; + this.state = 1596; this.joinType(); - this.state = 1594; + this.state = 1597; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1595; + this.state = 1598; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 1596; + this.state = 1599; this.joinCriteria(); } break; case TrinoSqlParser.KW_NATURAL: { - this.state = 1598; + this.state = 1601; this.match(TrinoSqlParser.KW_NATURAL); - this.state = 1599; + this.state = 1602; this.joinType(); - this.state = 1600; + this.state = 1603; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1601; + this.state = 1604; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5864,7 +5884,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 1609; + this.state = 1612; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); } @@ -5886,22 +5906,22 @@ export class TrinoSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 74, TrinoSqlParser.RULE_joinType); + this.enterRule(localContext, 76, TrinoSqlParser.RULE_joinType); let _la: number; try { - this.state = 1625; + this.state = 1628; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 1611; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 1610; + this.state = 1613; this.match(TrinoSqlParser.KW_INNER); } } @@ -5911,14 +5931,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: this.enterOuterAlt(localContext, 2); { - this.state = 1613; + this.state = 1616; this.match(TrinoSqlParser.KW_LEFT); - this.state = 1615; + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1614; + this.state = 1617; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5928,14 +5948,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 3); { - this.state = 1617; + this.state = 1620; this.match(TrinoSqlParser.KW_RIGHT); - this.state = 1619; + this.state = 1622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1618; + this.state = 1621; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5945,14 +5965,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FULL: this.enterOuterAlt(localContext, 4); { - this.state = 1621; + this.state = 1624; this.match(TrinoSqlParser.KW_FULL); - this.state = 1623; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1622; + this.state = 1625; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5979,47 +5999,47 @@ export class TrinoSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 76, TrinoSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 78, TrinoSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 1641; + this.state = 1644; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1627; + this.state = 1630; this.match(TrinoSqlParser.KW_ON); - this.state = 1628; + this.state = 1631; this.booleanExpression(0); } break; case TrinoSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1629; + this.state = 1632; this.match(TrinoSqlParser.KW_USING); - this.state = 1630; + this.state = 1633; this.match(TrinoSqlParser.T__0); - this.state = 1631; + this.state = 1634; this.identifier(); - this.state = 1636; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1632; + this.state = 1635; this.match(TrinoSqlParser.T__2); - this.state = 1633; + this.state = 1636; this.identifier(); } } - this.state = 1638; + this.state = 1641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1639; + this.state = 1642; this.match(TrinoSqlParser.T__1); } break; @@ -6043,26 +6063,26 @@ export class TrinoSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 78, TrinoSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 80, TrinoSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 1643; + this.state = 1646; this.patternRecognition(); - this.state = 1650; + this.state = 1653; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: { - this.state = 1644; + this.state = 1647; this.match(TrinoSqlParser.KW_TABLESAMPLE); - this.state = 1645; + this.state = 1648; this.sampleType(); - this.state = 1646; + this.state = 1649; this.match(TrinoSqlParser.T__0); - this.state = 1647; + this.state = 1650; localContext._percentage = this.expression(); - this.state = 1648; + this.state = 1651; this.match(TrinoSqlParser.T__1); } break; @@ -6085,12 +6105,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 80, TrinoSqlParser.RULE_sampleType); + this.enterRule(localContext, 82, TrinoSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1655; _la = this.tokenStream.LA(1); if(!(_la === 33 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -6117,12 +6137,12 @@ export class TrinoSqlParser extends SQLParserBase { } public trimsSpecification(): TrimsSpecificationContext { let localContext = new TrimsSpecificationContext(this.context, this.state); - this.enterRule(localContext, 82, TrinoSqlParser.RULE_trimsSpecification); + this.enterRule(localContext, 84, TrinoSqlParser.RULE_trimsSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1657; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 150 || _la === 270)) { this.errorHandler.recoverInline(this); @@ -6149,35 +6169,35 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggOverflowBehavior(): ListAggOverflowBehaviorContext { let localContext = new ListAggOverflowBehaviorContext(this.context, this.state); - this.enterRule(localContext, 84, TrinoSqlParser.RULE_listAggOverflowBehavior); + this.enterRule(localContext, 86, TrinoSqlParser.RULE_listAggOverflowBehavior); let _la: number; try { - this.state = 1662; + this.state = 1665; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 1656; + this.state = 1659; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 2); { - this.state = 1657; + this.state = 1660; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 1659; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326 || _la === 327) { { - this.state = 1658; + this.state = 1661; this.string_(); } } - this.state = 1661; + this.state = 1664; this.listaggCountIndication(); } break; @@ -6201,26 +6221,26 @@ export class TrinoSqlParser extends SQLParserBase { } public listaggCountIndication(): ListaggCountIndicationContext { let localContext = new ListaggCountIndicationContext(this.context, this.state); - this.enterRule(localContext, 86, TrinoSqlParser.RULE_listaggCountIndication); + this.enterRule(localContext, 88, TrinoSqlParser.RULE_listaggCountIndication); try { - this.state = 1668; + this.state = 1671; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1667; this.match(TrinoSqlParser.KW_WITH); - this.state = 1665; + this.state = 1668; this.match(TrinoSqlParser.KW_COUNT); } break; case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 1666; + this.state = 1669; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 1667; + this.state = 1670; this.match(TrinoSqlParser.KW_COUNT); } break; @@ -6244,142 +6264,142 @@ export class TrinoSqlParser extends SQLParserBase { } public patternRecognition(): PatternRecognitionContext { let localContext = new PatternRecognitionContext(this.context, this.state); - this.enterRule(localContext, 88, TrinoSqlParser.RULE_patternRecognition); + this.enterRule(localContext, 90, TrinoSqlParser.RULE_patternRecognition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1673; this.aliasedRelation(); - this.state = 1753; + this.state = 1756; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1671; + this.state = 1674; this.match(TrinoSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1672; + this.state = 1675; this.match(TrinoSqlParser.T__0); - this.state = 1683; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1673; + this.state = 1676; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1674; + this.state = 1677; this.match(TrinoSqlParser.KW_BY); - this.state = 1675; + this.state = 1678; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 1680; + this.state = 1683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1676; + this.state = 1679; this.match(TrinoSqlParser.T__2); - this.state = 1677; + this.state = 1680; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 1682; + this.state = 1685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1695; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1685; + this.state = 1688; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1686; + this.state = 1689; this.match(TrinoSqlParser.KW_BY); - this.state = 1687; + this.state = 1690; this.sortItem(); - this.state = 1692; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1688; + this.state = 1691; this.match(TrinoSqlParser.T__2); - this.state = 1689; + this.state = 1692; this.sortItem(); } } - this.state = 1694; + this.state = 1697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1706; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1697; + this.state = 1700; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 1698; + this.state = 1701; this.measureDefinition(); - this.state = 1703; + this.state = 1706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1699; + this.state = 1702; this.match(TrinoSqlParser.T__2); - this.state = 1700; + this.state = 1703; this.measureDefinition(); } } - this.state = 1705; + this.state = 1708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1709; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 191) { { - this.state = 1708; + this.state = 1711; this.rowsPerMatch(); } } - this.state = 1714; + this.state = 1717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1711; + this.state = 1714; this.match(TrinoSqlParser.KW_AFTER); - this.state = 1712; + this.state = 1715; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1713; + this.state = 1716; this.skipTo(); } } - this.state = 1717; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 1716; + this.state = 1719; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -6391,87 +6411,87 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1719; + this.state = 1722; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 1720; + this.state = 1723; this.match(TrinoSqlParser.T__0); - this.state = 1721; + this.state = 1724; this.rowPattern(0); - this.state = 1722; + this.state = 1725; this.match(TrinoSqlParser.T__1); - this.state = 1732; + this.state = 1735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1723; + this.state = 1726; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 1724; + this.state = 1727; this.subsetDefinition(); - this.state = 1729; + this.state = 1732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1725; + this.state = 1728; this.match(TrinoSqlParser.T__2); - this.state = 1726; + this.state = 1729; this.subsetDefinition(); } } - this.state = 1731; + this.state = 1734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1734; + this.state = 1737; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 1735; + this.state = 1738; this.variableDefinition(); - this.state = 1740; + this.state = 1743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1736; + this.state = 1739; this.match(TrinoSqlParser.T__2); - this.state = 1737; + this.state = 1740; this.variableDefinition(); } } - this.state = 1742; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1743; + this.state = 1746; this.match(TrinoSqlParser.T__1); - this.state = 1751; + this.state = 1754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1745; + this.state = 1748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1744; + this.state = 1747; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1747; + this.state = 1750; this.identifier(); - this.state = 1749; + this.state = 1752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1748; + this.state = 1751; this.columnAliases(); } break; @@ -6500,15 +6520,15 @@ export class TrinoSqlParser extends SQLParserBase { } public measureDefinition(): MeasureDefinitionContext { let localContext = new MeasureDefinitionContext(this.context, this.state); - this.enterRule(localContext, 90, TrinoSqlParser.RULE_measureDefinition); + this.enterRule(localContext, 92, TrinoSqlParser.RULE_measureDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1758; this.expression(); - this.state = 1756; + this.state = 1759; this.match(TrinoSqlParser.KW_AS); - this.state = 1757; + this.state = 1760; this.identifier(); } } @@ -6528,42 +6548,42 @@ export class TrinoSqlParser extends SQLParserBase { } public rowsPerMatch(): RowsPerMatchContext { let localContext = new RowsPerMatchContext(this.context, this.state); - this.enterRule(localContext, 92, TrinoSqlParser.RULE_rowsPerMatch); + this.enterRule(localContext, 94, TrinoSqlParser.RULE_rowsPerMatch); let _la: number; try { - this.state = 1770; + this.state = 1773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONE: this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1762; this.match(TrinoSqlParser.KW_ONE); - this.state = 1760; + this.state = 1763; this.match(TrinoSqlParser.KW_ROW); - this.state = 1761; + this.state = 1764; this.match(TrinoSqlParser.KW_PER); - this.state = 1762; + this.state = 1765; this.match(TrinoSqlParser.KW_MATCH); } break; case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 1763; + this.state = 1766; this.match(TrinoSqlParser.KW_ALL); - this.state = 1764; + this.state = 1767; this.match(TrinoSqlParser.KW_ROWS); - this.state = 1765; + this.state = 1768; this.match(TrinoSqlParser.KW_PER); - this.state = 1766; + this.state = 1769; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1768; + this.state = 1771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189 || _la === 253 || _la === 304) { { - this.state = 1767; + this.state = 1770; this.emptyMatchHandling(); } } @@ -6590,41 +6610,41 @@ export class TrinoSqlParser extends SQLParserBase { } public emptyMatchHandling(): EmptyMatchHandlingContext { let localContext = new EmptyMatchHandlingContext(this.context, this.state); - this.enterRule(localContext, 94, TrinoSqlParser.RULE_emptyMatchHandling); + this.enterRule(localContext, 96, TrinoSqlParser.RULE_emptyMatchHandling); try { - this.state = 1781; + this.state = 1784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SHOW: this.enterOuterAlt(localContext, 1); { - this.state = 1772; + this.state = 1775; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1773; + this.state = 1776; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1774; + this.state = 1777; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_OMIT: this.enterOuterAlt(localContext, 2); { - this.state = 1775; + this.state = 1778; this.match(TrinoSqlParser.KW_OMIT); - this.state = 1776; + this.state = 1779; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1777; + this.state = 1780; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1778; + this.state = 1781; this.match(TrinoSqlParser.KW_WITH); - this.state = 1779; + this.state = 1782; this.match(TrinoSqlParser.KW_UNMATCHED); - this.state = 1780; + this.state = 1783; this.match(TrinoSqlParser.KW_ROWS); } break; @@ -6648,71 +6668,71 @@ export class TrinoSqlParser extends SQLParserBase { } public skipTo(): SkipToContext { let localContext = new SkipToContext(this.context, this.state); - this.enterRule(localContext, 96, TrinoSqlParser.RULE_skipTo); + this.enterRule(localContext, 98, TrinoSqlParser.RULE_skipTo); try { - this.state = 1802; + this.state = 1805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1786; this.match(TrinoSqlParser.T__4); - this.state = 1784; + this.state = 1787; this.match(TrinoSqlParser.KW_TO); - this.state = 1785; + this.state = 1788; this.match(TrinoSqlParser.KW_NEXT); - this.state = 1786; + this.state = 1789; this.match(TrinoSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1787; + this.state = 1790; this.match(TrinoSqlParser.T__4); - this.state = 1788; + this.state = 1791; this.match(TrinoSqlParser.KW_PAST); - this.state = 1789; + this.state = 1792; this.match(TrinoSqlParser.KW_LAST); - this.state = 1790; + this.state = 1793; this.match(TrinoSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1791; + this.state = 1794; this.match(TrinoSqlParser.T__4); - this.state = 1792; + this.state = 1795; this.match(TrinoSqlParser.KW_TO); - this.state = 1793; + this.state = 1796; this.match(TrinoSqlParser.KW_FIRST); - this.state = 1794; + this.state = 1797; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1795; + this.state = 1798; this.match(TrinoSqlParser.T__4); - this.state = 1796; + this.state = 1799; this.match(TrinoSqlParser.KW_TO); - this.state = 1797; + this.state = 1800; this.match(TrinoSqlParser.KW_LAST); - this.state = 1798; + this.state = 1801; this.identifier(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1799; + this.state = 1802; this.match(TrinoSqlParser.T__4); - this.state = 1800; + this.state = 1803; this.match(TrinoSqlParser.KW_TO); - this.state = 1801; + this.state = 1804; this.identifier(); } break; @@ -6734,38 +6754,38 @@ export class TrinoSqlParser extends SQLParserBase { } public subsetDefinition(): SubsetDefinitionContext { let localContext = new SubsetDefinitionContext(this.context, this.state); - this.enterRule(localContext, 98, TrinoSqlParser.RULE_subsetDefinition); + this.enterRule(localContext, 100, TrinoSqlParser.RULE_subsetDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1804; + this.state = 1807; localContext._name = this.identifier(); - this.state = 1805; + this.state = 1808; this.match(TrinoSqlParser.EQ); - this.state = 1806; + this.state = 1809; this.match(TrinoSqlParser.T__0); - this.state = 1807; + this.state = 1810; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); - this.state = 1812; + this.state = 1815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1808; + this.state = 1811; this.match(TrinoSqlParser.T__2); - this.state = 1809; + this.state = 1812; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); } } - this.state = 1814; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1815; + this.state = 1818; this.match(TrinoSqlParser.T__1); } } @@ -6785,15 +6805,15 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDefinition(): VariableDefinitionContext { let localContext = new VariableDefinitionContext(this.context, this.state); - this.enterRule(localContext, 100, TrinoSqlParser.RULE_variableDefinition); + this.enterRule(localContext, 102, TrinoSqlParser.RULE_variableDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1817; + this.state = 1820; this.identifier(); - this.state = 1818; + this.state = 1821; this.match(TrinoSqlParser.KW_AS); - this.state = 1819; + this.state = 1822; this.expression(); } } @@ -6813,36 +6833,36 @@ export class TrinoSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 102, TrinoSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 104, TrinoSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1824; this.relationPrimary(); - this.state = 1829; + this.state = 1832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1823; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1822; + this.state = 1825; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1825; + this.state = 1828; localContext._alias = this.identifier(); - this.state = 1827; + this.state = 1830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1826; + this.state = 1829; this.columnAliases(); } break; @@ -6868,32 +6888,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnListCreate(): ColumnListCreateContext { let localContext = new ColumnListCreateContext(this.context, this.state); - this.enterRule(localContext, 104, TrinoSqlParser.RULE_columnListCreate); + this.enterRule(localContext, 106, TrinoSqlParser.RULE_columnListCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1831; + this.state = 1834; this.match(TrinoSqlParser.T__0); - this.state = 1832; + this.state = 1835; this.columnNameCreate(); - this.state = 1837; + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1833; + this.state = 1836; this.match(TrinoSqlParser.T__2); - this.state = 1834; + this.state = 1837; this.columnNameCreate(); } } - this.state = 1839; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1840; + this.state = 1843; this.match(TrinoSqlParser.T__1); } } @@ -6913,32 +6933,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnList(): ColumnListContext { let localContext = new ColumnListContext(this.context, this.state); - this.enterRule(localContext, 106, TrinoSqlParser.RULE_columnList); + this.enterRule(localContext, 108, TrinoSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1845; this.match(TrinoSqlParser.T__0); - this.state = 1843; + this.state = 1846; this.columnRef(); - this.state = 1848; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1844; + this.state = 1847; this.match(TrinoSqlParser.T__2); - this.state = 1845; + this.state = 1848; this.columnRef(); } } - this.state = 1850; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1851; + this.state = 1854; this.match(TrinoSqlParser.T__1); } } @@ -6958,32 +6978,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 108, TrinoSqlParser.RULE_columnAliases); + this.enterRule(localContext, 110, TrinoSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1856; this.match(TrinoSqlParser.T__0); - this.state = 1854; + this.state = 1857; this.identifier(); - this.state = 1859; + this.state = 1862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1855; + this.state = 1858; this.match(TrinoSqlParser.T__2); - this.state = 1856; + this.state = 1859; this.identifier(); } } - this.state = 1861; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1862; + this.state = 1865; this.match(TrinoSqlParser.T__1); } } @@ -7003,24 +7023,24 @@ export class TrinoSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 110, TrinoSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 112, TrinoSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 1935; + this.state = 1938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1864; + this.state = 1867; this.tableOrViewName(); - this.state = 1866; + this.state = 1869; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 1865; + this.state = 1868; this.queryPeriod(); } break; @@ -7031,11 +7051,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryRelationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1868; + this.state = 1871; this.match(TrinoSqlParser.T__0); - this.state = 1869; + this.state = 1872; this.query(); - this.state = 1870; + this.state = 1873; this.match(TrinoSqlParser.T__1); } break; @@ -7043,38 +7063,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnnestContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1872; + this.state = 1875; this.match(TrinoSqlParser.KW_UNNEST); - this.state = 1873; + this.state = 1876; this.match(TrinoSqlParser.T__0); - this.state = 1874; + this.state = 1877; this.expression(); - this.state = 1879; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1875; + this.state = 1878; this.match(TrinoSqlParser.T__2); - this.state = 1876; + this.state = 1879; this.expression(); } } - this.state = 1881; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1882; - this.match(TrinoSqlParser.T__1); this.state = 1885; + this.match(TrinoSqlParser.T__1); + this.state = 1888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 1883; + this.state = 1886; this.match(TrinoSqlParser.KW_WITH); - this.state = 1884; + this.state = 1887; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7085,13 +7105,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LateralContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1887; + this.state = 1890; this.match(TrinoSqlParser.KW_LATERAL); - this.state = 1888; + this.state = 1891; this.match(TrinoSqlParser.T__0); - this.state = 1889; + this.state = 1892; this.query(); - this.state = 1890; + this.state = 1893; this.match(TrinoSqlParser.T__1); } break; @@ -7099,13 +7119,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableFunctionInvocationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1892; + this.state = 1895; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1893; + this.state = 1896; this.match(TrinoSqlParser.T__0); - this.state = 1894; + this.state = 1897; this.tableFunctionCall(); - this.state = 1895; + this.state = 1898; this.match(TrinoSqlParser.T__1); } break; @@ -7113,11 +7133,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedRelationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1897; + this.state = 1900; this.match(TrinoSqlParser.T__0); - this.state = 1898; + this.state = 1901; this.relation(0); - this.state = 1899; + this.state = 1902; this.match(TrinoSqlParser.T__1); } break; @@ -7125,72 +7145,72 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonTableContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1901; + this.state = 1904; this.match(TrinoSqlParser.KW_JSON_TABLE); - this.state = 1902; + this.state = 1905; this.match(TrinoSqlParser.T__0); - this.state = 1903; + this.state = 1906; this.jsonPathInvocation(); - this.state = 1904; + this.state = 1907; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1905; + this.state = 1908; this.match(TrinoSqlParser.T__0); - this.state = 1906; + this.state = 1909; this.jsonTableColumn(); - this.state = 1911; + this.state = 1914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1907; + this.state = 1910; this.match(TrinoSqlParser.T__2); - this.state = 1908; + this.state = 1911; this.jsonTableColumn(); } } - this.state = 1913; + this.state = 1916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1914; + this.state = 1917; this.match(TrinoSqlParser.T__1); - this.state = 1926; + this.state = 1929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 1915; + this.state = 1918; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1916; + this.state = 1919; this.match(TrinoSqlParser.T__0); - this.state = 1917; + this.state = 1920; this.jsonTableSpecificPlan(); - this.state = 1918; + this.state = 1921; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 1920; + this.state = 1923; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1921; + this.state = 1924; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 1922; + this.state = 1925; this.match(TrinoSqlParser.T__0); - this.state = 1923; + this.state = 1926; this.jsonTableDefaultPlan(); - this.state = 1924; + this.state = 1927; this.match(TrinoSqlParser.T__1); } break; } - this.state = 1931; + this.state = 1934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89) { { - this.state = 1928; + this.state = 1931; _la = this.tokenStream.LA(1); if(!(_la === 85 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -7199,14 +7219,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1929; + this.state = 1932; this.match(TrinoSqlParser.KW_ON); - this.state = 1930; + this.state = 1933; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 1933; + this.state = 1936; this.match(TrinoSqlParser.T__1); } break; @@ -7228,21 +7248,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableColumn(): JsonTableColumnContext { let localContext = new JsonTableColumnContext(this.context, this.state); - this.enterRule(localContext, 112, TrinoSqlParser.RULE_jsonTableColumn); + this.enterRule(localContext, 114, TrinoSqlParser.RULE_jsonTableColumn); let _la: number; try { - this.state = 2014; + this.state = 2017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: localContext = new OrdinalityColumnContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1940; this.identifier(); - this.state = 1938; + this.state = 1941; this.match(TrinoSqlParser.KW_FOR); - this.state = 1939; + this.state = 1942; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7250,46 +7270,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ValueColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1941; + this.state = 1944; this.identifier(); - this.state = 1942; - this.type_(0); this.state = 1945; + this.type_(0); + this.state = 1948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1943; + this.state = 1946; this.match(TrinoSqlParser.KW_PATH); - this.state = 1944; + this.state = 1947; this.string_(); } } - this.state = 1951; + this.state = 1954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 1947; + this.state = 1950; (localContext as ValueColumnContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 1948; + this.state = 1951; this.match(TrinoSqlParser.KW_ON); - this.state = 1949; + this.state = 1952; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1957; + this.state = 1960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 1953; + this.state = 1956; (localContext as ValueColumnContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 1954; + this.state = 1957; this.match(TrinoSqlParser.KW_ON); - this.state = 1955; + this.state = 1958; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7300,44 +7320,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryColumnContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1959; + this.state = 1962; this.identifier(); - this.state = 1960; + this.state = 1963; this.type_(0); - this.state = 1961; - this.match(TrinoSqlParser.KW_FORMAT); - this.state = 1962; - this.jsonRepresentation(); + this.state = 1964; + this.match(TrinoSqlParser.KW_FORMAT); this.state = 1965; + this.jsonRepresentation(); + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1963; + this.state = 1966; this.match(TrinoSqlParser.KW_PATH); - this.state = 1964; + this.state = 1967; this.string_(); } } - this.state = 1970; + this.state = 1973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 1967; + this.state = 1970; this.jsonQueryWrapperBehavior(); - this.state = 1968; + this.state = 1971; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 1979; + this.state = 1982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 1972; + this.state = 1975; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -7346,18 +7366,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1973; + this.state = 1976; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 1977; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 1974; + this.state = 1977; this.match(TrinoSqlParser.KW_ON); - this.state = 1975; + this.state = 1978; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 1976; + this.state = 1979; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -7365,30 +7385,30 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1985; + this.state = 1988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1981; + this.state = 1984; (localContext as QueryColumnContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 1982; + this.state = 1985; this.match(TrinoSqlParser.KW_ON); - this.state = 1983; + this.state = 1986; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1991; + this.state = 1994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 1987; + this.state = 1990; (localContext as QueryColumnContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 1988; + this.state = 1991; this.match(TrinoSqlParser.KW_ON); - this.state = 1989; + this.state = 1992; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7399,55 +7419,55 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NestedColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1993; + this.state = 1996; this.match(TrinoSqlParser.KW_NESTED); - this.state = 1995; + this.state = 1998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1994; + this.state = 1997; this.match(TrinoSqlParser.KW_PATH); } } - this.state = 1997; - this.string_(); this.state = 2000; + this.string_(); + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1998; + this.state = 2001; this.match(TrinoSqlParser.KW_AS); - this.state = 1999; + this.state = 2002; this.identifier(); } } - this.state = 2002; + this.state = 2005; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 2003; + this.state = 2006; this.match(TrinoSqlParser.T__0); - this.state = 2004; + this.state = 2007; this.jsonTableColumn(); - this.state = 2009; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2005; + this.state = 2008; this.match(TrinoSqlParser.T__2); - this.state = 2006; + this.state = 2009; this.jsonTableColumn(); } } - this.state = 2011; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2012; + this.state = 2015; this.match(TrinoSqlParser.T__1); } break; @@ -7469,17 +7489,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableSpecificPlan(): JsonTableSpecificPlanContext { let localContext = new JsonTableSpecificPlanContext(this.context, this.state); - this.enterRule(localContext, 114, TrinoSqlParser.RULE_jsonTableSpecificPlan); + this.enterRule(localContext, 116, TrinoSqlParser.RULE_jsonTableSpecificPlan); let _la: number; try { - this.state = 2041; + this.state = 2044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: localContext = new LeafPlanContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2016; + this.state = 2019; this.jsonTablePathName(); } break; @@ -7487,9 +7507,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinPlanContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2017; + this.state = 2020; this.jsonTablePathName(); - this.state = 2018; + this.state = 2021; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7498,7 +7518,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 2022; this.planPrimary(); } break; @@ -7506,25 +7526,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnionPlanContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2021; + this.state = 2024; this.planPrimary(); - this.state = 2022; + this.state = 2025; this.match(TrinoSqlParser.KW_UNION); - this.state = 2023; + this.state = 2026; this.planPrimary(); - this.state = 2028; + this.state = 2031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 281) { { { - this.state = 2024; + this.state = 2027; this.match(TrinoSqlParser.KW_UNION); - this.state = 2025; + this.state = 2028; this.planPrimary(); } } - this.state = 2030; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7534,25 +7554,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CrossPlanContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2031; + this.state = 2034; this.planPrimary(); - this.state = 2032; + this.state = 2035; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2033; + this.state = 2036; this.planPrimary(); - this.state = 2038; + this.state = 2041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 2034; + this.state = 2037; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2035; + this.state = 2038; this.planPrimary(); } } - this.state = 2040; + this.state = 2043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7576,11 +7596,11 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTablePathName(): JsonTablePathNameContext { let localContext = new JsonTablePathNameContext(this.context, this.state); - this.enterRule(localContext, 116, TrinoSqlParser.RULE_jsonTablePathName); + this.enterRule(localContext, 118, TrinoSqlParser.RULE_jsonTablePathName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2043; + this.state = 2046; this.identifier(); } } @@ -7600,9 +7620,9 @@ export class TrinoSqlParser extends SQLParserBase { } public planPrimary(): PlanPrimaryContext { let localContext = new PlanPrimaryContext(this.context, this.state); - this.enterRule(localContext, 118, TrinoSqlParser.RULE_planPrimary); + this.enterRule(localContext, 120, TrinoSqlParser.RULE_planPrimary); try { - this.state = 2050; + this.state = 2053; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -7824,18 +7844,18 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2048; this.jsonTablePathName(); } break; case TrinoSqlParser.T__0: this.enterOuterAlt(localContext, 2); { - this.state = 2046; + this.state = 2049; this.match(TrinoSqlParser.T__0); - this.state = 2047; + this.state = 2050; this.jsonTableSpecificPlan(); - this.state = 2048; + this.state = 2051; this.match(TrinoSqlParser.T__1); } break; @@ -7859,17 +7879,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableDefaultPlan(): JsonTableDefaultPlanContext { let localContext = new JsonTableDefaultPlanContext(this.context, this.state); - this.enterRule(localContext, 120, TrinoSqlParser.RULE_jsonTableDefaultPlan); + this.enterRule(localContext, 122, TrinoSqlParser.RULE_jsonTableDefaultPlan); let _la: number; try { - this.state = 2062; + this.state = 2065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_OUTER: this.enterOuterAlt(localContext, 1); { - this.state = 2052; + this.state = 2055; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7878,14 +7898,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2055; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2053; + this.state = 2056; this.match(TrinoSqlParser.T__2); - this.state = 2054; + this.state = 2057; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7903,7 +7923,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_UNION: this.enterOuterAlt(localContext, 2); { - this.state = 2057; + this.state = 2060; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7912,14 +7932,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2060; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2058; + this.state = 2061; this.match(TrinoSqlParser.T__2); - this.state = 2059; + this.state = 2062; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7953,70 +7973,70 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionCall(): TableFunctionCallContext { let localContext = new TableFunctionCallContext(this.context, this.state); - this.enterRule(localContext, 122, TrinoSqlParser.RULE_tableFunctionCall); + this.enterRule(localContext, 124, TrinoSqlParser.RULE_tableFunctionCall); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2067; this.functionName(); - this.state = 2065; + this.state = 2068; this.match(TrinoSqlParser.T__0); - this.state = 2074; + this.state = 2077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2066; + this.state = 2069; this.tableFunctionArgument(); - this.state = 2071; + this.state = 2074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2067; + this.state = 2070; this.match(TrinoSqlParser.T__2); - this.state = 2068; + this.state = 2071; this.tableFunctionArgument(); } } - this.state = 2073; + this.state = 2076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2085; + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 52) { { - this.state = 2076; + this.state = 2079; this.match(TrinoSqlParser.KW_COPARTITION); - this.state = 2077; + this.state = 2080; this.copartitionTables(); - this.state = 2082; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2078; + this.state = 2081; this.match(TrinoSqlParser.T__2); - this.state = 2079; + this.state = 2082; this.copartitionTables(); } } - this.state = 2084; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2087; + this.state = 2090; this.match(TrinoSqlParser.T__1); } } @@ -8036,40 +8056,40 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionArgument(): TableFunctionArgumentContext { let localContext = new TableFunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 124, TrinoSqlParser.RULE_tableFunctionArgument); + this.enterRule(localContext, 126, TrinoSqlParser.RULE_tableFunctionArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2089; + this.state = 2092; this.identifier(); - this.state = 2090; + this.state = 2093; this.match(TrinoSqlParser.T__5); } break; } - this.state = 2097; + this.state = 2100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: { - this.state = 2094; + this.state = 2097; this.tableArgument(); } break; case 2: { - this.state = 2095; + this.state = 2098; this.descriptorArgument(); } break; case 3: { - this.state = 2096; + this.state = 2099; this.expression(); } break; @@ -8092,62 +8112,62 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgument(): TableArgumentContext { let localContext = new TableArgumentContext(this.context, this.state); - this.enterRule(localContext, 126, TrinoSqlParser.RULE_tableArgument); + this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2102; this.tableArgumentRelation(); - this.state = 2117; + this.state = 2120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 2100; + this.state = 2103; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 2101; + this.state = 2104; this.match(TrinoSqlParser.KW_BY); - this.state = 2115; + this.state = 2118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2102; + this.state = 2105; this.match(TrinoSqlParser.T__0); - this.state = 2111; + this.state = 2114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2103; + this.state = 2106; this.expression(); - this.state = 2108; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2104; + this.state = 2107; this.match(TrinoSqlParser.T__2); - this.state = 2105; + this.state = 2108; this.expression(); } } - this.state = 2110; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2113; + this.state = 2116; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2114; + this.state = 2117; this.expression(); } break; @@ -8155,26 +8175,26 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2125; + this.state = 2128; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_PRUNE: { - this.state = 2119; + this.state = 2122; this.match(TrinoSqlParser.KW_PRUNE); - this.state = 2120; + this.state = 2123; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2121; + this.state = 2124; this.match(TrinoSqlParser.KW_EMPTY); } break; case TrinoSqlParser.KW_KEEP: { - this.state = 2122; + this.state = 2125; this.match(TrinoSqlParser.KW_KEEP); - this.state = 2123; + this.state = 2126; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2124; + this.state = 2127; this.match(TrinoSqlParser.KW_EMPTY); } break; @@ -8186,47 +8206,47 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2143; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2127; + this.state = 2130; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2128; + this.state = 2131; this.match(TrinoSqlParser.KW_BY); - this.state = 2141; + this.state = 2144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2129; + this.state = 2132; this.match(TrinoSqlParser.T__0); - this.state = 2130; + this.state = 2133; this.sortItem(); - this.state = 2135; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2131; + this.state = 2134; this.match(TrinoSqlParser.T__2); - this.state = 2132; + this.state = 2135; this.sortItem(); } } - this.state = 2137; + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2138; + this.state = 2141; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2140; + this.state = 2143; this.sortItem(); } break; @@ -8252,47 +8272,47 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgumentRelation(): TableArgumentRelationContext { let localContext = new TableArgumentRelationContext(this.context, this.state); - this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableArgumentRelation); + this.enterRule(localContext, 130, TrinoSqlParser.RULE_tableArgumentRelation); let _la: number; try { - this.state = 2171; + this.state = 2174; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: localContext = new TableArgumentTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2148; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2146; + this.state = 2149; this.match(TrinoSqlParser.T__0); - this.state = 2147; + this.state = 2150; this.tableRef(); - this.state = 2148; + this.state = 2151; this.match(TrinoSqlParser.T__1); - this.state = 2156; + this.state = 2159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2150; + this.state = 2153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2149; + this.state = 2152; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2152; + this.state = 2155; this.identifier(); - this.state = 2154; + this.state = 2157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2153; + this.state = 2156; this.columnAliases(); } } @@ -8306,37 +8326,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableArgumentQueryContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2158; + this.state = 2161; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2159; + this.state = 2162; this.match(TrinoSqlParser.T__0); - this.state = 2160; + this.state = 2163; this.query(); - this.state = 2161; + this.state = 2164; this.match(TrinoSqlParser.T__1); - this.state = 2169; + this.state = 2172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2163; + this.state = 2166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2162; + this.state = 2165; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2165; + this.state = 2168; this.identifier(); - this.state = 2167; + this.state = 2170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2166; + this.state = 2169; this.columnAliases(); } } @@ -8364,55 +8384,55 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorArgument(): DescriptorArgumentContext { let localContext = new DescriptorArgumentContext(this.context, this.state); - this.enterRule(localContext, 130, TrinoSqlParser.RULE_descriptorArgument); + this.enterRule(localContext, 132, TrinoSqlParser.RULE_descriptorArgument); let _la: number; try { - this.state = 2191; + this.state = 2194; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_DESCRIPTOR: this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2176; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2174; + this.state = 2177; this.match(TrinoSqlParser.T__0); - this.state = 2175; + this.state = 2178; this.descriptorField(); - this.state = 2180; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2176; + this.state = 2179; this.match(TrinoSqlParser.T__2); - this.state = 2177; + this.state = 2180; this.descriptorField(); } } - this.state = 2182; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2183; + this.state = 2186; this.match(TrinoSqlParser.T__1); } break; case TrinoSqlParser.KW_CAST: this.enterOuterAlt(localContext, 2); { - this.state = 2185; + this.state = 2188; this.match(TrinoSqlParser.KW_CAST); - this.state = 2186; + this.state = 2189; this.match(TrinoSqlParser.T__0); - this.state = 2187; + this.state = 2190; this.match(TrinoSqlParser.KW_NULL); - this.state = 2188; + this.state = 2191; this.match(TrinoSqlParser.KW_AS); - this.state = 2189; + this.state = 2192; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2190; + this.state = 2193; this.match(TrinoSqlParser.T__1); } break; @@ -8436,19 +8456,19 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorField(): DescriptorFieldContext { let localContext = new DescriptorFieldContext(this.context, this.state); - this.enterRule(localContext, 132, TrinoSqlParser.RULE_descriptorField); + this.enterRule(localContext, 134, TrinoSqlParser.RULE_descriptorField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2196; this.identifier(); - this.state = 2195; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2194; + this.state = 2197; this.type_(0); } } @@ -8471,36 +8491,36 @@ export class TrinoSqlParser extends SQLParserBase { } public copartitionTables(): CopartitionTablesContext { let localContext = new CopartitionTablesContext(this.context, this.state); - this.enterRule(localContext, 134, TrinoSqlParser.RULE_copartitionTables); + this.enterRule(localContext, 136, TrinoSqlParser.RULE_copartitionTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2200; this.match(TrinoSqlParser.T__0); - this.state = 2198; + this.state = 2201; this.qualifiedName(); - this.state = 2199; + this.state = 2202; this.match(TrinoSqlParser.T__2); - this.state = 2200; + this.state = 2203; this.qualifiedName(); - this.state = 2205; + this.state = 2208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2201; + this.state = 2204; this.match(TrinoSqlParser.T__2); - this.state = 2202; + this.state = 2205; this.qualifiedName(); } } - this.state = 2207; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2208; + this.state = 2211; this.match(TrinoSqlParser.T__1); } } @@ -8520,11 +8540,11 @@ export class TrinoSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 136, TrinoSqlParser.RULE_expression); + this.enterRule(localContext, 138, TrinoSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2210; + this.state = 2213; this.booleanExpression(0); } } @@ -8554,13 +8574,13 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 138; - this.enterRecursionRule(localContext, 138, TrinoSqlParser.RULE_booleanExpression, _p); + let _startState = 140; + this.enterRecursionRule(localContext, 140, TrinoSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2222; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: @@ -8820,14 +8840,14 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2213; + this.state = 2216; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2215; + this.state = 2218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2214; + this.state = 2217; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -8839,9 +8859,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2217; + this.state = 2220; this.match(TrinoSqlParser.KW_NOT); - this.state = 2218; + this.state = 2221; this.booleanExpression(3); } break; @@ -8849,7 +8869,7 @@ export class TrinoSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2229; + this.state = 2232; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8859,20 +8879,20 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2227; + this.state = 2230; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: { localContext = new AndContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2221; + this.state = 2224; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2222; + this.state = 2225; this.match(TrinoSqlParser.KW_AND); - this.state = 2223; + this.state = 2226; this.booleanExpression(3); } break; @@ -8880,20 +8900,20 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new OrContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2224; + this.state = 2227; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2225; + this.state = 2228; this.match(TrinoSqlParser.KW_OR); - this.state = 2226; + this.state = 2229; this.booleanExpression(2); } break; } } } - this.state = 2231; + this.state = 2234; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } @@ -8915,19 +8935,19 @@ export class TrinoSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 140, TrinoSqlParser.RULE_predicate); + this.enterRule(localContext, 142, TrinoSqlParser.RULE_predicate); let _la: number; try { - this.state = 2293; + this.state = 2296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2232; + this.state = 2235; this.comparisonOperator(); - this.state = 2233; + this.state = 2236; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -8935,15 +8955,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2238; this.comparisonOperator(); - this.state = 2236; + this.state = 2239; this.comparisonQuantifier(); - this.state = 2237; + this.state = 2240; this.match(TrinoSqlParser.T__0); - this.state = 2238; + this.state = 2241; this.query(); - this.state = 2239; + this.state = 2242; this.match(TrinoSqlParser.T__1); } break; @@ -8951,23 +8971,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2242; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2241; + this.state = 2244; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2244; + this.state = 2247; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 2245; + this.state = 2248; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2246; + this.state = 2249; this.match(TrinoSqlParser.KW_AND); - this.state = 2247; + this.state = 2250; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -8975,39 +8995,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2250; + this.state = 2253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2249; + this.state = 2252; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2252; + this.state = 2255; this.match(TrinoSqlParser.KW_IN); - this.state = 2253; + this.state = 2256; this.match(TrinoSqlParser.T__0); - this.state = 2254; + this.state = 2257; this.expression(); - this.state = 2259; + this.state = 2262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2255; + this.state = 2258; this.match(TrinoSqlParser.T__2); - this.state = 2256; + this.state = 2259; this.expression(); } } - this.state = 2261; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2262; + this.state = 2265; this.match(TrinoSqlParser.T__1); } break; @@ -9015,23 +9035,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2265; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2264; + this.state = 2267; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2267; + this.state = 2270; this.match(TrinoSqlParser.KW_IN); - this.state = 2268; + this.state = 2271; this.match(TrinoSqlParser.T__0); - this.state = 2269; + this.state = 2272; this.query(); - this.state = 2270; + this.state = 2273; this.match(TrinoSqlParser.T__1); } break; @@ -9039,28 +9059,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2273; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2272; + this.state = 2275; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2275; + this.state = 2278; this.match(TrinoSqlParser.KW_LIKE); - this.state = 2276; - (localContext as LikeContext)._pattern = this.valueExpression(0); this.state = 2279; + (localContext as LikeContext)._pattern = this.valueExpression(0); + this.state = 2282; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { - this.state = 2277; + this.state = 2280; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 2278; + this.state = 2281; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -9071,19 +9091,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2281; + this.state = 2284; this.match(TrinoSqlParser.KW_IS); - this.state = 2283; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2282; + this.state = 2285; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2285; + this.state = 2288; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9091,23 +9111,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2286; + this.state = 2289; this.match(TrinoSqlParser.KW_IS); - this.state = 2288; + this.state = 2291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2287; + this.state = 2290; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2290; + this.state = 2293; this.match(TrinoSqlParser.KW_DISTINCT); - this.state = 2291; + this.state = 2294; this.match(TrinoSqlParser.KW_FROM); - this.state = 2292; + this.state = 2295; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -9139,14 +9159,14 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 142; - this.enterRecursionRule(localContext, 142, TrinoSqlParser.RULE_valueExpression, _p); + let _startState = 144; + this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2299; + this.state = 2302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: @@ -9155,7 +9175,7 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2296; + this.state = 2299; this.primaryExpression(0); } break; @@ -9164,7 +9184,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2297; + this.state = 2300; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9174,13 +9194,13 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2298; + this.state = 2301; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2315; + this.state = 2318; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9190,7 +9210,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2313; + this.state = 2316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: @@ -9198,11 +9218,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2301; + this.state = 2304; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2302; + this.state = 2305; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 7) !== 0))) { @@ -9212,7 +9232,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2303; + this.state = 2306; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9221,11 +9241,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2304; + this.state = 2307; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2305; + this.state = 2308; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9235,7 +9255,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2306; + this.state = 2309; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9244,13 +9264,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2307; + this.state = 2310; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2308; + this.state = 2311; this.match(TrinoSqlParser.CONCAT); - this.state = 2309; + this.state = 2312; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -9258,20 +9278,20 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2310; + this.state = 2313; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2311; + this.state = 2314; this.match(TrinoSqlParser.KW_AT); - this.state = 2312; + this.state = 2315; this.timeZoneSpecifier(); } break; } } } - this.state = 2317; + this.state = 2320; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); } @@ -9303,14 +9323,14 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 144; - this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_primaryExpression, _p); + let _startState = 146; + this.enterRecursionRule(localContext, 146, TrinoSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2771; + this.state = 2774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: @@ -9319,7 +9339,7 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2319; + this.state = 2322; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9328,7 +9348,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2320; + this.state = 2323; this.interval(); } break; @@ -9337,9 +9357,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2321; + this.state = 2324; this.identifier(); - this.state = 2322; + this.state = 2325; this.string_(); } break; @@ -9348,11 +9368,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2324; + this.state = 2327; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2325; + this.state = 2328; this.match(TrinoSqlParser.KW_PRECISION); - this.state = 2326; + this.state = 2329; this.string_(); } break; @@ -9361,7 +9381,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2330; this.number_(); } break; @@ -9370,7 +9390,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2328; + this.state = 2331; this.booleanValue(); } break; @@ -9379,7 +9399,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2329; + this.state = 2332; this.string_(); } break; @@ -9388,7 +9408,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2330; + this.state = 2333; this.match(TrinoSqlParser.BINARY_LITERAL); } break; @@ -9397,7 +9417,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2331; + this.state = 2334; this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -9406,17 +9426,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2332; + this.state = 2335; this.match(TrinoSqlParser.KW_POSITION); - this.state = 2333; + this.state = 2336; this.match(TrinoSqlParser.T__0); - this.state = 2334; + this.state = 2337; this.valueExpression(0); - this.state = 2335; + this.state = 2338; this.match(TrinoSqlParser.KW_IN); - this.state = 2336; + this.state = 2339; this.valueExpression(0); - this.state = 2337; + this.state = 2340; this.match(TrinoSqlParser.T__1); } break; @@ -9425,27 +9445,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2339; + this.state = 2342; this.match(TrinoSqlParser.T__0); - this.state = 2340; - this.expression(); this.state = 2343; + this.expression(); + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2341; + this.state = 2344; this.match(TrinoSqlParser.T__2); - this.state = 2342; + this.state = 2345; this.expression(); } } - this.state = 2345; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 3); - this.state = 2347; + this.state = 2350; this.match(TrinoSqlParser.T__1); } break; @@ -9454,29 +9474,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2349; + this.state = 2352; this.match(TrinoSqlParser.KW_ROW); - this.state = 2350; + this.state = 2353; this.match(TrinoSqlParser.T__0); - this.state = 2351; + this.state = 2354; this.expression(); - this.state = 2356; + this.state = 2359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2352; + this.state = 2355; this.match(TrinoSqlParser.T__2); - this.state = 2353; + this.state = 2356; this.expression(); } } - this.state = 2358; + this.state = 2361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2359; + this.state = 2362; this.match(TrinoSqlParser.T__1); } break; @@ -9485,88 +9505,88 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ListaggContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2364; (localContext as ListaggContext)._name = this.match(TrinoSqlParser.KW_LISTAGG); - this.state = 2362; + this.state = 2365; this.match(TrinoSqlParser.T__0); - this.state = 2364; + this.state = 2367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: { - this.state = 2363; + this.state = 2366; this.setQuantifier(); } break; } - this.state = 2366; - this.expression(); this.state = 2369; + this.expression(); + this.state = 2372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2367; + this.state = 2370; this.match(TrinoSqlParser.T__2); - this.state = 2368; + this.state = 2371; this.string_(); } } - this.state = 2374; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2371; + this.state = 2374; this.match(TrinoSqlParser.KW_ON); - this.state = 2372; + this.state = 2375; this.match(TrinoSqlParser.KW_OVERFLOW); - this.state = 2373; + this.state = 2376; this.listAggOverflowBehavior(); } } - this.state = 2376; + this.state = 2379; this.match(TrinoSqlParser.T__1); { - this.state = 2377; + this.state = 2380; this.match(TrinoSqlParser.KW_WITHIN); - this.state = 2378; + this.state = 2381; this.match(TrinoSqlParser.KW_GROUP); - this.state = 2379; + this.state = 2382; this.match(TrinoSqlParser.T__0); - this.state = 2380; + this.state = 2383; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2381; + this.state = 2384; this.match(TrinoSqlParser.KW_BY); - this.state = 2382; + this.state = 2385; this.sortItem(); - this.state = 2387; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2383; + this.state = 2386; this.match(TrinoSqlParser.T__2); - this.state = 2384; + this.state = 2387; this.sortItem(); } } - this.state = 2389; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2390; + this.state = 2393; this.match(TrinoSqlParser.T__1); } - this.state = 2393; + this.state = 2396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2392; + this.state = 2395; this.filter(); } break; @@ -9578,52 +9598,52 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2396; + this.state = 2399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2395; + this.state = 2398; this.processingMode(); } break; } - this.state = 2398; + this.state = 2401; this.functionName(); - this.state = 2399; + this.state = 2402; this.match(TrinoSqlParser.T__0); - this.state = 2403; + this.state = 2406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2400; + this.state = 2403; (localContext as FunctionCallContext)._label = this.identifier(); - this.state = 2401; + this.state = 2404; this.match(TrinoSqlParser.T__3); } } - this.state = 2405; + this.state = 2408; this.match(TrinoSqlParser.ASTERISK); - this.state = 2406; + this.state = 2409; this.match(TrinoSqlParser.T__1); - this.state = 2408; + this.state = 2411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2407; + this.state = 2410; this.filter(); } break; } - this.state = 2411; + this.state = 2414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2410; + this.state = 2413; this.over(); } break; @@ -9635,114 +9655,114 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2414; + this.state = 2417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2413; + this.state = 2416; this.processingMode(); } break; } - this.state = 2416; + this.state = 2419; this.functionName(); - this.state = 2417; + this.state = 2420; this.match(TrinoSqlParser.T__0); - this.state = 2429; + this.state = 2432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538415087) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2419; + this.state = 2422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2418; + this.state = 2421; this.setQuantifier(); } break; } - this.state = 2421; + this.state = 2424; this.expression(); - this.state = 2426; + this.state = 2429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2422; + this.state = 2425; this.match(TrinoSqlParser.T__2); - this.state = 2423; + this.state = 2426; this.expression(); } } - this.state = 2428; + this.state = 2431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2441; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2431; + this.state = 2434; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2432; + this.state = 2435; this.match(TrinoSqlParser.KW_BY); - this.state = 2433; + this.state = 2436; this.sortItem(); - this.state = 2438; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2434; + this.state = 2437; this.match(TrinoSqlParser.T__2); - this.state = 2435; + this.state = 2438; this.sortItem(); } } - this.state = 2440; + this.state = 2443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2443; + this.state = 2446; this.match(TrinoSqlParser.T__1); - this.state = 2445; + this.state = 2448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2444; + this.state = 2447; this.filter(); } break; } - this.state = 2451; + this.state = 2454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2448; + this.state = 2451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120 || _la === 228) { { - this.state = 2447; + this.state = 2450; this.nullTreatment(); } } - this.state = 2450; + this.state = 2453; this.over(); } break; @@ -9754,9 +9774,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MeasureContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2453; + this.state = 2456; this.identifier(); - this.state = 2454; + this.state = 2457; this.over(); } break; @@ -9765,11 +9785,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2456; + this.state = 2459; this.identifier(); - this.state = 2457; + this.state = 2460; this.match(TrinoSqlParser.T__6); - this.state = 2458; + this.state = 2461; this.expression(); } break; @@ -9778,39 +9798,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2460; + this.state = 2463; this.match(TrinoSqlParser.T__0); - this.state = 2469; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2461; + this.state = 2464; this.identifier(); - this.state = 2466; + this.state = 2469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2462; + this.state = 2465; this.match(TrinoSqlParser.T__2); - this.state = 2463; + this.state = 2466; this.identifier(); } } - this.state = 2468; + this.state = 2471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2471; + this.state = 2474; this.match(TrinoSqlParser.T__1); - this.state = 2472; + this.state = 2475; this.match(TrinoSqlParser.T__6); - this.state = 2473; + this.state = 2476; this.expression(); } break; @@ -9819,11 +9839,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2474; + this.state = 2477; this.match(TrinoSqlParser.T__0); - this.state = 2475; + this.state = 2478; this.query(); - this.state = 2476; + this.state = 2479; this.match(TrinoSqlParser.T__1); } break; @@ -9832,13 +9852,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2478; + this.state = 2481; this.match(TrinoSqlParser.KW_EXISTS); - this.state = 2479; + this.state = 2482; this.match(TrinoSqlParser.T__0); - this.state = 2480; + this.state = 2483; this.query(); - this.state = 2481; + this.state = 2484; this.match(TrinoSqlParser.T__1); } break; @@ -9847,37 +9867,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2483; + this.state = 2486; this.match(TrinoSqlParser.KW_CASE); - this.state = 2484; + this.state = 2487; (localContext as SimpleCaseContext)._operand = this.expression(); - this.state = 2486; + this.state = 2489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2485; + this.state = 2488; this.whenClause(); } } - this.state = 2488; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2492; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2490; + this.state = 2493; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2491; + this.state = 2494; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2494; + this.state = 2497; this.match(TrinoSqlParser.KW_END); } break; @@ -9886,35 +9906,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2496; + this.state = 2499; this.match(TrinoSqlParser.KW_CASE); - this.state = 2498; + this.state = 2501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2497; + this.state = 2500; this.whenClause(); } } - this.state = 2500; + this.state = 2503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2504; + this.state = 2507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2502; + this.state = 2505; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2503; + this.state = 2506; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2506; + this.state = 2509; this.match(TrinoSqlParser.KW_END); } break; @@ -9923,17 +9943,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2508; + this.state = 2511; this.match(TrinoSqlParser.KW_CAST); - this.state = 2509; + this.state = 2512; this.match(TrinoSqlParser.T__0); - this.state = 2510; + this.state = 2513; this.expression(); - this.state = 2511; + this.state = 2514; this.match(TrinoSqlParser.KW_AS); - this.state = 2512; + this.state = 2515; this.type_(0); - this.state = 2513; + this.state = 2516; this.match(TrinoSqlParser.T__1); } break; @@ -9942,17 +9962,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2515; + this.state = 2518; this.match(TrinoSqlParser.KW_TRY_CAST); - this.state = 2516; + this.state = 2519; this.match(TrinoSqlParser.T__0); - this.state = 2517; + this.state = 2520; this.expression(); - this.state = 2518; + this.state = 2521; this.match(TrinoSqlParser.KW_AS); - this.state = 2519; + this.state = 2522; this.type_(0); - this.state = 2520; + this.state = 2523; this.match(TrinoSqlParser.T__1); } break; @@ -9961,37 +9981,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2522; + this.state = 2525; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2523; + this.state = 2526; this.match(TrinoSqlParser.T__7); - this.state = 2532; + this.state = 2535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2524; + this.state = 2527; this.expression(); - this.state = 2529; + this.state = 2532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2525; + this.state = 2528; this.match(TrinoSqlParser.T__2); - this.state = 2526; + this.state = 2529; this.expression(); } } - this.state = 2531; + this.state = 2534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2534; + this.state = 2537; this.match(TrinoSqlParser.T__8); } break; @@ -10000,8 +10020,8 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2535; - this.identifier(); + this.state = 2538; + this.columnName(); } break; case 27: @@ -10009,7 +10029,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentDateContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2536; + this.state = 2539; (localContext as CurrentDateContext)._name = this.match(TrinoSqlParser.KW_CURRENT_DATE); } break; @@ -10018,18 +10038,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2537; + this.state = 2540; (localContext as CurrentTimeContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIME); - this.state = 2541; + this.state = 2544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2538; + this.state = 2541; this.match(TrinoSqlParser.T__0); - this.state = 2539; + this.state = 2542; (localContext as CurrentTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2540; + this.state = 2543; this.match(TrinoSqlParser.T__1); } break; @@ -10041,18 +10061,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2543; + this.state = 2546; (localContext as CurrentTimestampContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2547; + this.state = 2550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2544; + this.state = 2547; this.match(TrinoSqlParser.T__0); - this.state = 2545; + this.state = 2548; (localContext as CurrentTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2546; + this.state = 2549; this.match(TrinoSqlParser.T__1); } break; @@ -10064,18 +10084,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2549; + this.state = 2552; (localContext as LocalTimeContext)._name = this.match(TrinoSqlParser.KW_LOCALTIME); - this.state = 2553; + this.state = 2556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2550; + this.state = 2553; this.match(TrinoSqlParser.T__0); - this.state = 2551; + this.state = 2554; (localContext as LocalTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2552; + this.state = 2555; this.match(TrinoSqlParser.T__1); } break; @@ -10087,18 +10107,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2555; + this.state = 2558; (localContext as LocalTimestampContext)._name = this.match(TrinoSqlParser.KW_LOCALTIMESTAMP); - this.state = 2559; + this.state = 2562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2556; + this.state = 2559; this.match(TrinoSqlParser.T__0); - this.state = 2557; + this.state = 2560; (localContext as LocalTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2558; + this.state = 2561; this.match(TrinoSqlParser.T__1); } break; @@ -10110,7 +10130,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2561; + this.state = 2564; (localContext as CurrentUserContext)._name = this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -10119,7 +10139,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentCatalogContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2562; + this.state = 2565; (localContext as CurrentCatalogContext)._name = this.match(TrinoSqlParser.KW_CURRENT_CATALOG); } break; @@ -10128,7 +10148,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentSchemaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2563; + this.state = 2566; (localContext as CurrentSchemaContext)._name = this.match(TrinoSqlParser.KW_CURRENT_SCHEMA); } break; @@ -10137,7 +10157,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2564; + this.state = 2567; (localContext as CurrentPathContext)._name = this.match(TrinoSqlParser.KW_CURRENT_PATH); } break; @@ -10146,43 +10166,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2565; + this.state = 2568; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2566; + this.state = 2569; this.match(TrinoSqlParser.T__0); - this.state = 2574; + this.state = 2577; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2568; + this.state = 2571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2567; + this.state = 2570; this.trimsSpecification(); } break; } - this.state = 2571; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3755997183) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2570; + this.state = 2573; (localContext as TrimContext)._trimChar = this.valueExpression(0); } } - this.state = 2573; + this.state = 2576; this.match(TrinoSqlParser.KW_FROM); } break; } - this.state = 2576; + this.state = 2579; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2577; + this.state = 2580; this.match(TrinoSqlParser.T__1); } break; @@ -10191,17 +10211,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2579; + this.state = 2582; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2580; + this.state = 2583; this.match(TrinoSqlParser.T__0); - this.state = 2581; + this.state = 2584; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2582; + this.state = 2585; this.match(TrinoSqlParser.T__2); - this.state = 2583; + this.state = 2586; (localContext as TrimContext)._trimChar = this.valueExpression(0); - this.state = 2584; + this.state = 2587; this.match(TrinoSqlParser.T__1); } break; @@ -10210,29 +10230,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2586; + this.state = 2589; this.match(TrinoSqlParser.KW_SUBSTRING); - this.state = 2587; + this.state = 2590; this.match(TrinoSqlParser.T__0); - this.state = 2588; + this.state = 2591; this.valueExpression(0); - this.state = 2589; + this.state = 2592; this.match(TrinoSqlParser.KW_FROM); - this.state = 2590; - this.valueExpression(0); this.state = 2593; + this.valueExpression(0); + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2591; + this.state = 2594; this.match(TrinoSqlParser.KW_FOR); - this.state = 2592; + this.state = 2595; this.valueExpression(0); } } - this.state = 2595; + this.state = 2598; this.match(TrinoSqlParser.T__1); } break; @@ -10241,25 +10261,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2597; + this.state = 2600; this.match(TrinoSqlParser.KW_NORMALIZE); - this.state = 2598; + this.state = 2601; this.match(TrinoSqlParser.T__0); - this.state = 2599; - this.valueExpression(0); this.state = 2602; + this.valueExpression(0); + this.state = 2605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2600; + this.state = 2603; this.match(TrinoSqlParser.T__2); - this.state = 2601; + this.state = 2604; this.normalForm(); } } - this.state = 2604; + this.state = 2607; this.match(TrinoSqlParser.T__1); } break; @@ -10268,17 +10288,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2606; + this.state = 2609; this.match(TrinoSqlParser.KW_EXTRACT); - this.state = 2607; + this.state = 2610; this.match(TrinoSqlParser.T__0); - this.state = 2608; + this.state = 2611; this.identifier(); - this.state = 2609; + this.state = 2612; this.match(TrinoSqlParser.KW_FROM); - this.state = 2610; + this.state = 2613; this.valueExpression(0); - this.state = 2611; + this.state = 2614; this.match(TrinoSqlParser.T__1); } break; @@ -10287,11 +10307,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2613; + this.state = 2616; this.match(TrinoSqlParser.T__0); - this.state = 2614; + this.state = 2617; this.expression(); - this.state = 2615; + this.state = 2618; this.match(TrinoSqlParser.T__1); } break; @@ -10300,37 +10320,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2617; + this.state = 2620; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 2618; + this.state = 2621; this.match(TrinoSqlParser.T__0); - this.state = 2627; + this.state = 2630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2619; + this.state = 2622; this.qualifiedName(); - this.state = 2624; + this.state = 2627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2620; + this.state = 2623; this.match(TrinoSqlParser.T__2); - this.state = 2621; + this.state = 2624; this.qualifiedName(); } } - this.state = 2626; + this.state = 2629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2629; + this.state = 2632; this.match(TrinoSqlParser.T__1); } break; @@ -10339,27 +10359,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2630; + this.state = 2633; this.match(TrinoSqlParser.KW_JSON_EXISTS); - this.state = 2631; + this.state = 2634; this.match(TrinoSqlParser.T__0); - this.state = 2632; + this.state = 2635; this.jsonPathInvocation(); - this.state = 2637; + this.state = 2640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 89 || _la === 97 || _la === 273 || _la === 283) { { - this.state = 2633; + this.state = 2636; this.jsonExistsErrorBehavior(); - this.state = 2634; + this.state = 2637; this.match(TrinoSqlParser.KW_ON); - this.state = 2635; + this.state = 2638; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2639; + this.state = 2642; this.match(TrinoSqlParser.T__1); } break; @@ -10368,53 +10388,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonValueContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2641; + this.state = 2644; this.match(TrinoSqlParser.KW_JSON_VALUE); - this.state = 2642; + this.state = 2645; this.match(TrinoSqlParser.T__0); - this.state = 2643; - this.jsonPathInvocation(); this.state = 2646; + this.jsonPathInvocation(); + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2644; + this.state = 2647; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2645; + this.state = 2648; this.type_(0); } } - this.state = 2652; + this.state = 2655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { case 1: { - this.state = 2648; + this.state = 2651; (localContext as JsonValueContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 2649; + this.state = 2652; this.match(TrinoSqlParser.KW_ON); - this.state = 2650; + this.state = 2653; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2658; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 2654; + this.state = 2657; (localContext as JsonValueContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 2655; + this.state = 2658; this.match(TrinoSqlParser.KW_ON); - this.state = 2656; + this.state = 2659; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2660; + this.state = 2663; this.match(TrinoSqlParser.T__1); } break; @@ -10423,29 +10443,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonQueryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2662; + this.state = 2665; this.match(TrinoSqlParser.KW_JSON_QUERY); - this.state = 2663; + this.state = 2666; this.match(TrinoSqlParser.T__0); - this.state = 2664; + this.state = 2667; this.jsonPathInvocation(); - this.state = 2671; + this.state = 2674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2665; + this.state = 2668; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2666; - this.type_(0); this.state = 2669; + this.type_(0); + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2667; + this.state = 2670; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2668; + this.state = 2671; this.jsonRepresentation(); } } @@ -10453,24 +10473,24 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2676; + this.state = 2679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 2673; + this.state = 2676; this.jsonQueryWrapperBehavior(); - this.state = 2674; + this.state = 2677; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2685; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 2678; + this.state = 2681; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -10479,18 +10499,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2679; + this.state = 2682; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2683; + this.state = 2686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2680; + this.state = 2683; this.match(TrinoSqlParser.KW_ON); - this.state = 2681; + this.state = 2684; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2682; + this.state = 2685; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -10498,35 +10518,35 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2691; + this.state = 2694; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2687; + this.state = 2690; (localContext as JsonQueryContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2688; + this.state = 2691; this.match(TrinoSqlParser.KW_ON); - this.state = 2689; + this.state = 2692; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2697; + this.state = 2700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 2693; + this.state = 2696; (localContext as JsonQueryContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2694; + this.state = 2697; this.match(TrinoSqlParser.KW_ON); - this.state = 2695; + this.state = 2698; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2699; + this.state = 2702; this.match(TrinoSqlParser.T__1); } break; @@ -10535,53 +10555,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonObjectContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2701; + this.state = 2704; this.match(TrinoSqlParser.KW_JSON_OBJECT); - this.state = 2702; + this.state = 2705; this.match(TrinoSqlParser.T__0); - this.state = 2731; + this.state = 2734; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 2703; + this.state = 2706; this.jsonObjectMember(); - this.state = 2708; + this.state = 2711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2704; + this.state = 2707; this.match(TrinoSqlParser.T__2); - this.state = 2705; + this.state = 2708; this.jsonObjectMember(); } } - this.state = 2710; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2717; + this.state = 2720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2711; + this.state = 2714; this.match(TrinoSqlParser.KW_NULL); - this.state = 2712; + this.state = 2715; this.match(TrinoSqlParser.KW_ON); - this.state = 2713; + this.state = 2716; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2714; + this.state = 2717; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2715; + this.state = 2718; this.match(TrinoSqlParser.KW_ON); - this.state = 2716; + this.state = 2719; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10593,21 +10613,21 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2729; + this.state = 2732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: { - this.state = 2719; + this.state = 2722; this.match(TrinoSqlParser.KW_WITH); - this.state = 2720; + this.state = 2723; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2722; + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2721; + this.state = 2724; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10616,16 +10636,16 @@ export class TrinoSqlParser extends SQLParserBase { break; case TrinoSqlParser.KW_WITHOUT: { - this.state = 2724; + this.state = 2727; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2725; + this.state = 2728; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2727; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2726; + this.state = 2729; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10641,23 +10661,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2739; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2733; + this.state = 2736; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2734; - this.type_(0); this.state = 2737; + this.type_(0); + this.state = 2740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2735; + this.state = 2738; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2736; + this.state = 2739; this.jsonRepresentation(); } } @@ -10665,7 +10685,7 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2741; + this.state = 2744; this.match(TrinoSqlParser.T__1); } break; @@ -10674,53 +10694,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonArrayContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2742; + this.state = 2745; this.match(TrinoSqlParser.KW_JSON_ARRAY); - this.state = 2743; + this.state = 2746; this.match(TrinoSqlParser.T__0); - this.state = 2760; + this.state = 2763; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2744; + this.state = 2747; this.jsonValueExpression(); - this.state = 2749; + this.state = 2752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2745; + this.state = 2748; this.match(TrinoSqlParser.T__2); - this.state = 2746; + this.state = 2749; this.jsonValueExpression(); } } - this.state = 2751; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2758; + this.state = 2761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2752; + this.state = 2755; this.match(TrinoSqlParser.KW_NULL); - this.state = 2753; + this.state = 2756; this.match(TrinoSqlParser.KW_ON); - this.state = 2754; + this.state = 2757; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2755; + this.state = 2758; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2756; + this.state = 2759; this.match(TrinoSqlParser.KW_ON); - this.state = 2757; + this.state = 2760; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10733,23 +10753,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2768; + this.state = 2771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2762; + this.state = 2765; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2763; - this.type_(0); this.state = 2766; + this.type_(0); + this.state = 2769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2764; + this.state = 2767; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2765; + this.state = 2768; this.jsonRepresentation(); } } @@ -10757,13 +10777,13 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2770; + this.state = 2773; this.match(TrinoSqlParser.T__1); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2783; + this.state = 2786; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10773,7 +10793,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2781; + this.state = 2784; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: @@ -10781,15 +10801,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2773; + this.state = 2776; if (!(this.precpred(this.context, 24))) { throw this.createFailedPredicateException("this.precpred(this.context, 24)"); } - this.state = 2774; + this.state = 2777; this.match(TrinoSqlParser.T__7); - this.state = 2775; + this.state = 2778; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2776; + this.state = 2779; this.match(TrinoSqlParser.T__8); } break; @@ -10798,20 +10818,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2778; + this.state = 2781; if (!(this.precpred(this.context, 22))) { throw this.createFailedPredicateException("this.precpred(this.context, 22)"); } - this.state = 2779; + this.state = 2782; this.match(TrinoSqlParser.T__3); - this.state = 2780; + this.state = 2783; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2785; + this.state = 2788; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); } @@ -10833,51 +10853,51 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonPathInvocation(): JsonPathInvocationContext { let localContext = new JsonPathInvocationContext(this.context, this.state); - this.enterRule(localContext, 146, TrinoSqlParser.RULE_jsonPathInvocation); + this.enterRule(localContext, 148, TrinoSqlParser.RULE_jsonPathInvocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2786; + this.state = 2789; this.jsonValueExpression(); - this.state = 2787; + this.state = 2790; this.match(TrinoSqlParser.T__2); - this.state = 2788; - localContext._path = this.string_(); this.state = 2791; + localContext._path = this.string_(); + this.state = 2794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2789; + this.state = 2792; this.match(TrinoSqlParser.KW_AS); - this.state = 2790; + this.state = 2793; localContext._pathName = this.identifier(); } } - this.state = 2802; + this.state = 2805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2793; + this.state = 2796; this.match(TrinoSqlParser.KW_PASSING); - this.state = 2794; + this.state = 2797; this.jsonArgument(); - this.state = 2799; + this.state = 2802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2795; + this.state = 2798; this.match(TrinoSqlParser.T__2); - this.state = 2796; + this.state = 2799; this.jsonArgument(); } } - this.state = 2801; + this.state = 2804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10902,21 +10922,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueExpression(): JsonValueExpressionContext { let localContext = new JsonValueExpressionContext(this.context, this.state); - this.enterRule(localContext, 148, TrinoSqlParser.RULE_jsonValueExpression); + this.enterRule(localContext, 150, TrinoSqlParser.RULE_jsonValueExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2804; - this.expression(); this.state = 2807; + this.expression(); + this.state = 2810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2805; + this.state = 2808; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2806; + this.state = 2809; this.jsonRepresentation(); } } @@ -10939,21 +10959,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonRepresentation(): JsonRepresentationContext { let localContext = new JsonRepresentationContext(this.context, this.state); - this.enterRule(localContext, 150, TrinoSqlParser.RULE_jsonRepresentation); + this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonRepresentation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2809; - this.match(TrinoSqlParser.KW_JSON); this.state = 2812; + this.match(TrinoSqlParser.KW_JSON); + this.state = 2815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 2810; + this.state = 2813; this.match(TrinoSqlParser.KW_ENCODING); - this.state = 2811; + this.state = 2814; _la = this.tokenStream.LA(1); if(!(((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10983,15 +11003,15 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonArgument(): JsonArgumentContext { let localContext = new JsonArgumentContext(this.context, this.state); - this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonArgument); + this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2814; + this.state = 2817; this.jsonValueExpression(); - this.state = 2815; + this.state = 2818; this.match(TrinoSqlParser.KW_AS); - this.state = 2816; + this.state = 2819; this.identifier(); } } @@ -11011,12 +11031,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonExistsErrorBehavior(): JsonExistsErrorBehaviorContext { let localContext = new JsonExistsErrorBehaviorContext(this.context, this.state); - this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonExistsErrorBehavior); + this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonExistsErrorBehavior); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2818; + this.state = 2821; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 97 || _la === 273 || _la === 283)) { this.errorHandler.recoverInline(this); @@ -11043,31 +11063,31 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueBehavior(): JsonValueBehaviorContext { let localContext = new JsonValueBehaviorContext(this.context, this.state); - this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonValueBehavior); + this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonValueBehavior); try { - this.state = 2824; + this.state = 2827; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 2820; + this.state = 2823; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 2821; + this.state = 2824; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2825; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 2823; + this.state = 2826; this.expression(); } break; @@ -11091,23 +11111,23 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryWrapperBehavior(): JsonQueryWrapperBehaviorContext { let localContext = new JsonQueryWrapperBehaviorContext(this.context, this.state); - this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); + this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); let _la: number; try { - this.state = 2837; + this.state = 2840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 1); { - this.state = 2826; + this.state = 2829; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2828; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2827; + this.state = 2830; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11117,14 +11137,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 2830; + this.state = 2833; this.match(TrinoSqlParser.KW_WITH); - this.state = 2832; + this.state = 2835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 49 || _la === 280) { { - this.state = 2831; + this.state = 2834; _la = this.tokenStream.LA(1); if(!(_la === 49 || _la === 280)) { this.errorHandler.recoverInline(this); @@ -11136,12 +11156,12 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2835; + this.state = 2838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2834; + this.state = 2837; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11168,40 +11188,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryBehavior(): JsonQueryBehaviorContext { let localContext = new JsonQueryBehaviorContext(this.context, this.state); - this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonQueryBehavior); + this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonQueryBehavior); try { - this.state = 2845; + this.state = 2848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2839; + this.state = 2842; this.match(TrinoSqlParser.KW_ERROR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2840; + this.state = 2843; this.match(TrinoSqlParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2841; + this.state = 2844; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2842; + this.state = 2845; this.match(TrinoSqlParser.KW_ARRAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2843; + this.state = 2846; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2844; + this.state = 2847; this.match(TrinoSqlParser.KW_OBJECT); } break; @@ -11223,40 +11243,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonObjectMember(): JsonObjectMemberContext { let localContext = new JsonObjectMemberContext(this.context, this.state); - this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonObjectMember); + this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonObjectMember); try { - this.state = 2858; + this.state = 2861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2848; + this.state = 2851; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 2847; + this.state = 2850; this.match(TrinoSqlParser.KW_KEY); } break; } - this.state = 2850; + this.state = 2853; this.expression(); - this.state = 2851; + this.state = 2854; this.match(TrinoSqlParser.KW_VALUE); - this.state = 2852; + this.state = 2855; this.jsonValueExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2854; + this.state = 2857; this.expression(); - this.state = 2855; + this.state = 2858; this.match(TrinoSqlParser.T__9); - this.state = 2856; + this.state = 2859; this.jsonValueExpression(); } break; @@ -11278,12 +11298,12 @@ export class TrinoSqlParser extends SQLParserBase { } public processingMode(): ProcessingModeContext { let localContext = new ProcessingModeContext(this.context, this.state); - this.enterRule(localContext, 164, TrinoSqlParser.RULE_processingMode); + this.enterRule(localContext, 166, TrinoSqlParser.RULE_processingMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2860; + this.state = 2863; _la = this.tokenStream.LA(1); if(!(_la === 100 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -11310,26 +11330,26 @@ export class TrinoSqlParser extends SQLParserBase { } public nullTreatment(): NullTreatmentContext { let localContext = new NullTreatmentContext(this.context, this.state); - this.enterRule(localContext, 166, TrinoSqlParser.RULE_nullTreatment); + this.enterRule(localContext, 168, TrinoSqlParser.RULE_nullTreatment); try { - this.state = 2866; + this.state = 2869; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 1); { - this.state = 2862; + this.state = 2865; this.match(TrinoSqlParser.KW_IGNORE); - this.state = 2863; + this.state = 2866; this.match(TrinoSqlParser.KW_NULLS); } break; case TrinoSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 2); { - this.state = 2864; + this.state = 2867; this.match(TrinoSqlParser.KW_RESPECT); - this.state = 2865; + this.state = 2868; this.match(TrinoSqlParser.KW_NULLS); } break; @@ -11353,16 +11373,16 @@ export class TrinoSqlParser extends SQLParserBase { } public string_(): StringContext { let localContext = new StringContext(this.context, this.state); - this.enterRule(localContext, 168, TrinoSqlParser.RULE_string); + this.enterRule(localContext, 170, TrinoSqlParser.RULE_string); try { - this.state = 2874; + this.state = 2877; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2868; + this.state = 2871; this.match(TrinoSqlParser.STRING); } break; @@ -11370,16 +11390,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2869; - this.match(TrinoSqlParser.UNICODE_STRING); this.state = 2872; + this.match(TrinoSqlParser.UNICODE_STRING); + this.state = 2875; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2870; + this.state = 2873; this.match(TrinoSqlParser.KW_UESCAPE); - this.state = 2871; + this.state = 2874; this.match(TrinoSqlParser.STRING); } break; @@ -11406,20 +11426,20 @@ export class TrinoSqlParser extends SQLParserBase { } public timeZoneSpecifier(): TimeZoneSpecifierContext { let localContext = new TimeZoneSpecifierContext(this.context, this.state); - this.enterRule(localContext, 170, TrinoSqlParser.RULE_timeZoneSpecifier); + this.enterRule(localContext, 172, TrinoSqlParser.RULE_timeZoneSpecifier); try { - this.state = 2882; + this.state = 2885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: localContext = new TimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2876; + this.state = 2879; this.match(TrinoSqlParser.KW_TIME); - this.state = 2877; + this.state = 2880; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2878; + this.state = 2881; this.interval(); } break; @@ -11427,11 +11447,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeZoneStringContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2879; + this.state = 2882; this.match(TrinoSqlParser.KW_TIME); - this.state = 2880; + this.state = 2883; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2881; + this.state = 2884; this.string_(); } break; @@ -11453,12 +11473,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 172, TrinoSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 174, TrinoSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2884; + this.state = 2887; _la = this.tokenStream.LA(1); if(!(((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11485,12 +11505,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 174, TrinoSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 176, TrinoSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2886; + this.state = 2889; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 26 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11517,12 +11537,12 @@ export class TrinoSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 176, TrinoSqlParser.RULE_booleanValue); + this.enterRule(localContext, 178, TrinoSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2888; + this.state = 2891; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 273)) { this.errorHandler.recoverInline(this); @@ -11549,19 +11569,19 @@ export class TrinoSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 178, TrinoSqlParser.RULE_interval); + this.enterRule(localContext, 180, TrinoSqlParser.RULE_interval); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2890; + this.state = 2893; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2892; + this.state = 2895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 318 || _la === 319) { { - this.state = 2891; + this.state = 2894; localContext._sign = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -11574,18 +11594,18 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2894; + this.state = 2897; this.string_(); - this.state = 2895; - localContext._from_ = this.intervalField(); this.state = 2898; + localContext._from_ = this.intervalField(); + this.state = 2901; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2896; + this.state = 2899; this.match(TrinoSqlParser.KW_TO); - this.state = 2897; + this.state = 2900; localContext._to = this.intervalField(); } break; @@ -11608,12 +11628,12 @@ export class TrinoSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 180, TrinoSqlParser.RULE_intervalField); + this.enterRule(localContext, 182, TrinoSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2900; + this.state = 2903; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 118 || _la === 170 || _la === 171 || _la === 245 || _la === 310)) { this.errorHandler.recoverInline(this); @@ -11640,12 +11660,12 @@ export class TrinoSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 182, TrinoSqlParser.RULE_normalForm); + this.enterRule(localContext, 184, TrinoSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2902; + this.state = 2905; _la = this.tokenStream.LA(1); if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11682,14 +11702,14 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 184; - this.enterRecursionRule(localContext, 184, TrinoSqlParser.RULE_type, _p); + let _startState = 186; + this.enterRecursionRule(localContext, 186, TrinoSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2995; + this.state = 2998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: @@ -11698,29 +11718,29 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2905; + this.state = 2908; this.match(TrinoSqlParser.KW_ROW); - this.state = 2906; + this.state = 2909; this.match(TrinoSqlParser.T__0); - this.state = 2907; + this.state = 2910; this.rowField(); - this.state = 2912; + this.state = 2915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2908; + this.state = 2911; this.match(TrinoSqlParser.T__2); - this.state = 2909; + this.state = 2912; this.rowField(); } } - this.state = 2914; + this.state = 2917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2915; + this.state = 2918; this.match(TrinoSqlParser.T__1); } break; @@ -11729,18 +11749,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2917; + this.state = 2920; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2918; - (localContext as IntervalTypeContext)._from_ = this.intervalField(); this.state = 2921; + (localContext as IntervalTypeContext)._from_ = this.intervalField(); + this.state = 2924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2919; + this.state = 2922; this.match(TrinoSqlParser.KW_TO); - this.state = 2920; + this.state = 2923; (localContext as IntervalTypeContext)._to = this.intervalField(); } break; @@ -11752,32 +11772,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2923; + this.state = 2926; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2928; + this.state = 2931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2924; + this.state = 2927; this.match(TrinoSqlParser.T__0); - this.state = 2925; + this.state = 2928; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2926; + this.state = 2929; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2933; + this.state = 2936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2930; + this.state = 2933; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2931; + this.state = 2934; this.match(TrinoSqlParser.KW_TIME); - this.state = 2932; + this.state = 2935; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11789,27 +11809,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2935; + this.state = 2938; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2940; + this.state = 2943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2936; + this.state = 2939; this.match(TrinoSqlParser.T__0); - this.state = 2937; + this.state = 2940; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2938; + this.state = 2941; this.match(TrinoSqlParser.T__1); } } - this.state = 2942; + this.state = 2945; this.match(TrinoSqlParser.KW_WITH); - this.state = 2943; + this.state = 2946; this.match(TrinoSqlParser.KW_TIME); - this.state = 2944; + this.state = 2947; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11818,32 +11838,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2945; + this.state = 2948; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2950; + this.state = 2953; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2946; + this.state = 2949; this.match(TrinoSqlParser.T__0); - this.state = 2947; + this.state = 2950; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2948; + this.state = 2951; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2955; + this.state = 2958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { - this.state = 2952; + this.state = 2955; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2953; + this.state = 2956; this.match(TrinoSqlParser.KW_TIME); - this.state = 2954; + this.state = 2957; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11855,27 +11875,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2957; + this.state = 2960; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2962; + this.state = 2965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2958; + this.state = 2961; this.match(TrinoSqlParser.T__0); - this.state = 2959; + this.state = 2962; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2960; + this.state = 2963; this.match(TrinoSqlParser.T__1); } } - this.state = 2964; + this.state = 2967; this.match(TrinoSqlParser.KW_WITH); - this.state = 2965; + this.state = 2968; this.match(TrinoSqlParser.KW_TIME); - this.state = 2966; + this.state = 2969; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11884,9 +11904,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoublePrecisionTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2967; + this.state = 2970; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2968; + this.state = 2971; this.match(TrinoSqlParser.KW_PRECISION); } break; @@ -11895,13 +11915,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyArrayTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2969; + this.state = 2972; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2970; + this.state = 2973; this.match(TrinoSqlParser.LT); - this.state = 2971; + this.state = 2974; this.type_(0); - this.state = 2972; + this.state = 2975; this.match(TrinoSqlParser.GT); } break; @@ -11910,17 +11930,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyMapTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2974; + this.state = 2977; this.match(TrinoSqlParser.KW_MAP); - this.state = 2975; + this.state = 2978; this.match(TrinoSqlParser.LT); - this.state = 2976; + this.state = 2979; (localContext as LegacyMapTypeContext)._keyType = this.type_(0); - this.state = 2977; + this.state = 2980; this.match(TrinoSqlParser.T__2); - this.state = 2978; + this.state = 2981; (localContext as LegacyMapTypeContext)._valueType = this.type_(0); - this.state = 2979; + this.state = 2982; this.match(TrinoSqlParser.GT); } break; @@ -11929,34 +11949,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GenericTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2981; + this.state = 2984; this.identifier(); - this.state = 2993; + this.state = 2996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2982; + this.state = 2985; this.match(TrinoSqlParser.T__0); - this.state = 2983; + this.state = 2986; this.typeParameter(); - this.state = 2988; + this.state = 2991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2984; + this.state = 2987; this.match(TrinoSqlParser.T__2); - this.state = 2985; + this.state = 2988; this.typeParameter(); } } - this.state = 2990; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2991; + this.state = 2994; this.match(TrinoSqlParser.T__1); } break; @@ -11965,7 +11985,7 @@ export class TrinoSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3006; + this.state = 3009; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 393, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11978,22 +11998,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new ArrayTypeContext(new TypeContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_type); - this.state = 2997; + this.state = 3000; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2998; + this.state = 3001; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 3002; + this.state = 3005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 2999; + this.state = 3002; this.match(TrinoSqlParser.T__7); - this.state = 3000; + this.state = 3003; this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3001; + this.state = 3004; this.match(TrinoSqlParser.T__8); } break; @@ -12001,7 +12021,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 3008; + this.state = 3011; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 393, this.context); } @@ -12023,24 +12043,24 @@ export class TrinoSqlParser extends SQLParserBase { } public rowField(): RowFieldContext { let localContext = new RowFieldContext(this.context, this.state); - this.enterRule(localContext, 186, TrinoSqlParser.RULE_rowField); + this.enterRule(localContext, 188, TrinoSqlParser.RULE_rowField); try { - this.state = 3013; + this.state = 3016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3009; + this.state = 3012; this.type_(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3010; + this.state = 3013; this.identifier(); - this.state = 3011; + this.state = 3014; this.type_(0); } break; @@ -12062,15 +12082,15 @@ export class TrinoSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 188, TrinoSqlParser.RULE_typeParameter); + this.enterRule(localContext, 190, TrinoSqlParser.RULE_typeParameter); try { - this.state = 3017; + this.state = 3020; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3015; + this.state = 3018; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -12293,7 +12313,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 3016; + this.state = 3019; this.type_(0); } break; @@ -12317,17 +12337,17 @@ export class TrinoSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 190, TrinoSqlParser.RULE_whenClause); + this.enterRule(localContext, 192, TrinoSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3019; + this.state = 3022; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3020; + this.state = 3023; localContext._condition = this.expression(); - this.state = 3021; + this.state = 3024; this.match(TrinoSqlParser.KW_THEN); - this.state = 3022; + this.state = 3025; localContext._result = this.expression(); } } @@ -12347,19 +12367,17 @@ export class TrinoSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 192, TrinoSqlParser.RULE_filter); + this.enterRule(localContext, 194, TrinoSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 3024; - this.match(TrinoSqlParser.KW_FILTER); - this.state = 3025; - this.match(TrinoSqlParser.T__0); - this.state = 3026; - this.match(TrinoSqlParser.KW_WHERE); this.state = 3027; - this.booleanExpression(0); + this.match(TrinoSqlParser.KW_FILTER); this.state = 3028; + this.match(TrinoSqlParser.T__0); + this.state = 3029; + this.whereClause(); + this.state = 3030; this.match(TrinoSqlParser.T__1); } } @@ -12379,65 +12397,65 @@ export class TrinoSqlParser extends SQLParserBase { } public mergeCase(): MergeCaseContext { let localContext = new MergeCaseContext(this.context, this.state); - this.enterRule(localContext, 194, TrinoSqlParser.RULE_mergeCase); + this.enterRule(localContext, 196, TrinoSqlParser.RULE_mergeCase); let _la: number; try { - this.state = 3094; + this.state = 3096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: localContext = new MergeUpdateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3030; + this.state = 3032; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3031; + this.state = 3033; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3034; + this.state = 3036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3032; + this.state = 3034; this.match(TrinoSqlParser.KW_AND); - this.state = 3033; + this.state = 3035; (localContext as MergeUpdateContext)._condition = this.expression(); } } - this.state = 3036; + this.state = 3038; this.match(TrinoSqlParser.KW_THEN); - this.state = 3037; + this.state = 3039; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 3038; + this.state = 3040; this.match(TrinoSqlParser.KW_SET); - this.state = 3039; + this.state = 3041; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3040; + this.state = 3042; this.match(TrinoSqlParser.EQ); - this.state = 3041; + this.state = 3043; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); - this.state = 3049; + this.state = 3051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3042; + this.state = 3044; this.match(TrinoSqlParser.T__2); - this.state = 3043; + this.state = 3045; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3044; + this.state = 3046; this.match(TrinoSqlParser.EQ); - this.state = 3045; + this.state = 3047; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); } } - this.state = 3051; + this.state = 3053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12447,25 +12465,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeDeleteContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3052; + this.state = 3054; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3053; + this.state = 3055; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3056; + this.state = 3058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3054; + this.state = 3056; this.match(TrinoSqlParser.KW_AND); - this.state = 3055; + this.state = 3057; (localContext as MergeDeleteContext)._condition = this.expression(); } } - this.state = 3058; + this.state = 3060; this.match(TrinoSqlParser.KW_THEN); - this.state = 3059; + this.state = 3061; this.match(TrinoSqlParser.KW_DELETE); } break; @@ -12473,85 +12491,85 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeInsertContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3060; + this.state = 3062; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3061; + this.state = 3063; this.match(TrinoSqlParser.KW_NOT); - this.state = 3062; + this.state = 3064; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3065; + this.state = 3067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3063; + this.state = 3065; this.match(TrinoSqlParser.KW_AND); - this.state = 3064; + this.state = 3066; (localContext as MergeInsertContext)._condition = this.expression(); } } - this.state = 3067; + this.state = 3069; this.match(TrinoSqlParser.KW_THEN); - this.state = 3068; + this.state = 3070; this.match(TrinoSqlParser.KW_INSERT); - this.state = 3080; + this.state = 3082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 3069; + this.state = 3071; this.match(TrinoSqlParser.T__0); - this.state = 3070; + this.state = 3072; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); - this.state = 3075; + this.state = 3077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3071; + this.state = 3073; this.match(TrinoSqlParser.T__2); - this.state = 3072; + this.state = 3074; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); } } - this.state = 3077; + this.state = 3079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3078; + this.state = 3080; this.match(TrinoSqlParser.T__1); } } - this.state = 3082; + this.state = 3084; this.match(TrinoSqlParser.KW_VALUES); - this.state = 3083; + this.state = 3085; this.match(TrinoSqlParser.T__0); - this.state = 3084; + this.state = 3086; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); - this.state = 3089; + this.state = 3091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3085; + this.state = 3087; this.match(TrinoSqlParser.T__2); - this.state = 3086; + this.state = 3088; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); } } - this.state = 3091; + this.state = 3093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3092; + this.state = 3094; this.match(TrinoSqlParser.T__1); } break; @@ -12573,13 +12591,13 @@ export class TrinoSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 196, TrinoSqlParser.RULE_over); + this.enterRule(localContext, 198, TrinoSqlParser.RULE_over); try { this.enterOuterAlt(localContext, 1); { - this.state = 3096; + this.state = 3098; this.match(TrinoSqlParser.KW_OVER); - this.state = 3102; + this.state = 3104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -12800,17 +12818,17 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.QUOTED_IDENTIFIER: case TrinoSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3097; + this.state = 3099; localContext._windowName = this.identifier(); } break; case TrinoSqlParser.T__0: { - this.state = 3098; + this.state = 3100; this.match(TrinoSqlParser.T__0); - this.state = 3099; + this.state = 3101; this.windowSpecification(); - this.state = 3100; + this.state = 3102; this.match(TrinoSqlParser.T__1); } break; @@ -12835,61 +12853,61 @@ export class TrinoSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 198, TrinoSqlParser.RULE_windowFrame); + this.enterRule(localContext, 200, TrinoSqlParser.RULE_windowFrame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3113; + this.state = 3115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 3104; + this.state = 3106; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 3105; + this.state = 3107; this.measureDefinition(); - this.state = 3110; + this.state = 3112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3106; + this.state = 3108; this.match(TrinoSqlParser.T__2); - this.state = 3107; + this.state = 3109; this.measureDefinition(); } } - this.state = 3112; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3115; + this.state = 3117; this.frameExtent(); - this.state = 3119; + this.state = 3121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 3116; + this.state = 3118; this.match(TrinoSqlParser.KW_AFTER); - this.state = 3117; + this.state = 3119; this.match(TrinoSqlParser.KW_MATCH); - this.state = 3118; + this.state = 3120; this.skipTo(); } } - this.state = 3122; + this.state = 3124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 3121; + this.state = 3123; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -12901,72 +12919,72 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 3129; + this.state = 3131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3124; + this.state = 3126; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 3125; + this.state = 3127; this.match(TrinoSqlParser.T__0); - this.state = 3126; + this.state = 3128; this.rowPattern(0); - this.state = 3127; + this.state = 3129; this.match(TrinoSqlParser.T__1); } } - this.state = 3140; + this.state = 3142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 3131; + this.state = 3133; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 3132; + this.state = 3134; this.subsetDefinition(); - this.state = 3137; + this.state = 3139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3133; + this.state = 3135; this.match(TrinoSqlParser.T__2); - this.state = 3134; + this.state = 3136; this.subsetDefinition(); } } - this.state = 3139; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3151; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 3142; + this.state = 3144; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 3143; + this.state = 3145; this.variableDefinition(); - this.state = 3148; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3144; + this.state = 3146; this.match(TrinoSqlParser.T__2); - this.state = 3145; + this.state = 3147; this.variableDefinition(); } } - this.state = 3150; + this.state = 3152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12991,80 +13009,80 @@ export class TrinoSqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 200, TrinoSqlParser.RULE_frameExtent); + this.enterRule(localContext, 202, TrinoSqlParser.RULE_frameExtent); try { - this.state = 3177; + this.state = 3179; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3153; + this.state = 3155; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3154; + this.state = 3156; localContext._start = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3155; + this.state = 3157; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3156; + this.state = 3158; localContext._start = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3157; + this.state = 3159; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3158; + this.state = 3160; localContext._start = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3159; + this.state = 3161; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3160; + this.state = 3162; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3161; + this.state = 3163; localContext._start = this.frameBound(); - this.state = 3162; + this.state = 3164; this.match(TrinoSqlParser.KW_AND); - this.state = 3163; + this.state = 3165; localContext._end = this.frameBound(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3165; + this.state = 3167; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3166; + this.state = 3168; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3167; + this.state = 3169; localContext._start = this.frameBound(); - this.state = 3168; + this.state = 3170; this.match(TrinoSqlParser.KW_AND); - this.state = 3169; + this.state = 3171; localContext._end = this.frameBound(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3171; + this.state = 3173; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3172; + this.state = 3174; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3173; + this.state = 3175; localContext._start = this.frameBound(); - this.state = 3174; + this.state = 3176; this.match(TrinoSqlParser.KW_AND); - this.state = 3175; + this.state = 3177; localContext._end = this.frameBound(); } break; @@ -13086,19 +13104,19 @@ export class TrinoSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 202, TrinoSqlParser.RULE_frameBound); + this.enterRule(localContext, 204, TrinoSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3188; + this.state = 3190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 3181; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3180; + this.state = 3182; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_PRECEDING); } break; @@ -13106,9 +13124,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3181; + this.state = 3183; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3182; + this.state = 3184; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_FOLLOWING); } break; @@ -13116,9 +13134,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3183; + this.state = 3185; this.match(TrinoSqlParser.KW_CURRENT); - this.state = 3184; + this.state = 3186; this.match(TrinoSqlParser.KW_ROW); } break; @@ -13126,9 +13144,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3185; + this.state = 3187; this.expression(); - this.state = 3186; + this.state = 3188; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 212)) { @@ -13168,8 +13186,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RowPatternContext(this.context, parentState); let previousContext = localContext; - let _startState = 204; - this.enterRecursionRule(localContext, 204, TrinoSqlParser.RULE_rowPattern, _p); + let _startState = 206; + this.enterRecursionRule(localContext, 206, TrinoSqlParser.RULE_rowPattern, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -13179,21 +13197,21 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 3191; - this.patternPrimary(); this.state = 3193; + this.patternPrimary(); + this.state = 3195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3192; + this.state = 3194; this.patternQuantifier(); } break; } } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3202; + this.state = 3204; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 418, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -13203,18 +13221,18 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3200; + this.state = 3202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { localContext = new PatternConcatenationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3195; + this.state = 3197; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3196; + this.state = 3198; this.rowPattern(3); } break; @@ -13222,20 +13240,20 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new PatternAlternationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3197; + this.state = 3199; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3198; + this.state = 3200; this.match(TrinoSqlParser.T__10); - this.state = 3199; + this.state = 3201; this.rowPattern(2); } break; } } } - this.state = 3204; + this.state = 3206; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 418, this.context); } @@ -13257,17 +13275,17 @@ export class TrinoSqlParser extends SQLParserBase { } public patternPrimary(): PatternPrimaryContext { let localContext = new PatternPrimaryContext(this.context, this.state); - this.enterRule(localContext, 206, TrinoSqlParser.RULE_patternPrimary); + this.enterRule(localContext, 208, TrinoSqlParser.RULE_patternPrimary); let _la: number; try { - this.state = 3230; + this.state = 3232; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: localContext = new PatternVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3205; + this.state = 3207; this.identifier(); } break; @@ -13275,9 +13293,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new EmptyPatternContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3206; + this.state = 3208; this.match(TrinoSqlParser.T__0); - this.state = 3207; + this.state = 3209; this.match(TrinoSqlParser.T__1); } break; @@ -13285,29 +13303,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PatternPermutationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3208; + this.state = 3210; this.match(TrinoSqlParser.KW_PERMUTE); - this.state = 3209; + this.state = 3211; this.match(TrinoSqlParser.T__0); - this.state = 3210; + this.state = 3212; this.rowPattern(0); - this.state = 3215; + this.state = 3217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3211; + this.state = 3213; this.match(TrinoSqlParser.T__2); - this.state = 3212; + this.state = 3214; this.rowPattern(0); } } - this.state = 3217; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3218; + this.state = 3220; this.match(TrinoSqlParser.T__1); } break; @@ -13315,11 +13333,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupedPatternContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3220; + this.state = 3222; this.match(TrinoSqlParser.T__0); - this.state = 3221; + this.state = 3223; this.rowPattern(0); - this.state = 3222; + this.state = 3224; this.match(TrinoSqlParser.T__1); } break; @@ -13327,7 +13345,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionStartAnchorContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3224; + this.state = 3226; this.match(TrinoSqlParser.T__11); } break; @@ -13335,7 +13353,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionEndAnchorContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3225; + this.state = 3227; this.match(TrinoSqlParser.T__12); } break; @@ -13343,11 +13361,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExcludedPatternContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3226; + this.state = 3228; this.match(TrinoSqlParser.T__13); - this.state = 3227; + this.state = 3229; this.rowPattern(0); - this.state = 3228; + this.state = 3230; this.match(TrinoSqlParser.T__14); } break; @@ -13369,24 +13387,24 @@ export class TrinoSqlParser extends SQLParserBase { } public patternQuantifier(): PatternQuantifierContext { let localContext = new PatternQuantifierContext(this.context, this.state); - this.enterRule(localContext, 208, TrinoSqlParser.RULE_patternQuantifier); + this.enterRule(localContext, 210, TrinoSqlParser.RULE_patternQuantifier); let _la: number; try { - this.state = 3262; + this.state = 3264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: localContext = new ZeroOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3232; - this.match(TrinoSqlParser.ASTERISK); this.state = 3234; + this.match(TrinoSqlParser.ASTERISK); + this.state = 3236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3233; + this.state = 3235; (localContext as ZeroOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13397,14 +13415,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new OneOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3236; - this.match(TrinoSqlParser.PLUS); this.state = 3238; + this.match(TrinoSqlParser.PLUS); + this.state = 3240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3237; + this.state = 3239; (localContext as OneOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13415,14 +13433,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ZeroOrOneQuantifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3240; - this.match(TrinoSqlParser.QUESTION_MARK); this.state = 3242; + this.match(TrinoSqlParser.QUESTION_MARK); + this.state = 3244; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3241; + this.state = 3243; (localContext as ZeroOrOneQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13433,18 +13451,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3244; + this.state = 3246; this.match(TrinoSqlParser.T__15); - this.state = 3245; + this.state = 3247; (localContext as RangeQuantifierContext)._exactly = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3246; - this.match(TrinoSqlParser.T__16); this.state = 3248; + this.match(TrinoSqlParser.T__16); + this.state = 3250; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3247; + this.state = 3249; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13455,38 +13473,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3250; - this.match(TrinoSqlParser.T__15); this.state = 3252; + this.match(TrinoSqlParser.T__15); + this.state = 3254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3251; + this.state = 3253; (localContext as RangeQuantifierContext)._atLeast = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3254; - this.match(TrinoSqlParser.T__2); this.state = 3256; + this.match(TrinoSqlParser.T__2); + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3255; + this.state = 3257; (localContext as RangeQuantifierContext)._atMost = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3258; - this.match(TrinoSqlParser.T__16); this.state = 3260; + this.match(TrinoSqlParser.T__16); + this.state = 3262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3259; + this.state = 3261; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13511,15 +13529,15 @@ export class TrinoSqlParser extends SQLParserBase { } public updateAssignment(): UpdateAssignmentContext { let localContext = new UpdateAssignmentContext(this.context, this.state); - this.enterRule(localContext, 210, TrinoSqlParser.RULE_updateAssignment); + this.enterRule(localContext, 212, TrinoSqlParser.RULE_updateAssignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3264; + this.state = 3266; this.identifier(); - this.state = 3265; + this.state = 3267; this.match(TrinoSqlParser.EQ); - this.state = 3266; + this.state = 3268; this.expression(); } } @@ -13539,19 +13557,19 @@ export class TrinoSqlParser extends SQLParserBase { } public explainOption(): ExplainOptionContext { let localContext = new ExplainOptionContext(this.context, this.state); - this.enterRule(localContext, 212, TrinoSqlParser.RULE_explainOption); + this.enterRule(localContext, 214, TrinoSqlParser.RULE_explainOption); let _la: number; try { - this.state = 3272; + this.state = 3274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_FORMAT: localContext = new ExplainFormatContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3268; + this.state = 3270; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 3269; + this.state = 3271; (localContext as ExplainFormatContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 137 || _la === 263)) { @@ -13567,9 +13585,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3270; + this.state = 3272; this.match(TrinoSqlParser.KW_TYPE); - this.state = 3271; + this.state = 3273; (localContext as ExplainTypeContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 132 || _la === 160 || _la === 294)) { @@ -13601,21 +13619,21 @@ export class TrinoSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 214, TrinoSqlParser.RULE_transactionMode); + this.enterRule(localContext, 216, TrinoSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 3279; + this.state = 3281; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ISOLATION: localContext = new IsolationLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3274; + this.state = 3276; this.match(TrinoSqlParser.KW_ISOLATION); - this.state = 3275; + this.state = 3277; this.match(TrinoSqlParser.KW_LEVEL); - this.state = 3276; + this.state = 3278; this.levelOfIsolation(); } break; @@ -13623,9 +13641,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TransactionAccessModeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3277; + this.state = 3279; this.match(TrinoSqlParser.KW_READ); - this.state = 3278; + this.state = 3280; (localContext as TransactionAccessModeContext)._accessMode = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 309)) { @@ -13657,18 +13675,18 @@ export class TrinoSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 216, TrinoSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 218, TrinoSqlParser.RULE_levelOfIsolation); try { - this.state = 3288; + this.state = 3290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: localContext = new ReadUncommittedContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3281; + this.state = 3283; this.match(TrinoSqlParser.KW_READ); - this.state = 3282; + this.state = 3284; this.match(TrinoSqlParser.KW_UNCOMMITTED); } break; @@ -13676,9 +13694,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReadCommittedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3283; + this.state = 3285; this.match(TrinoSqlParser.KW_READ); - this.state = 3284; + this.state = 3286; this.match(TrinoSqlParser.KW_COMMITTED); } break; @@ -13686,9 +13704,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatableReadContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3285; + this.state = 3287; this.match(TrinoSqlParser.KW_REPEATABLE); - this.state = 3286; + this.state = 3288; this.match(TrinoSqlParser.KW_READ); } break; @@ -13696,7 +13714,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SerializableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3287; + this.state = 3289; this.match(TrinoSqlParser.KW_SERIALIZABLE); } break; @@ -13718,16 +13736,16 @@ export class TrinoSqlParser extends SQLParserBase { } public callArgument(): CallArgumentContext { let localContext = new CallArgumentContext(this.context, this.state); - this.enterRule(localContext, 218, TrinoSqlParser.RULE_callArgument); + this.enterRule(localContext, 220, TrinoSqlParser.RULE_callArgument); try { - this.state = 3295; + this.state = 3297; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: localContext = new PositionalArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3290; + this.state = 3292; this.expression(); } break; @@ -13735,11 +13753,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NamedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3291; + this.state = 3293; this.identifier(); - this.state = 3292; + this.state = 3294; this.match(TrinoSqlParser.T__5); - this.state = 3293; + this.state = 3295; this.expression(); } break; @@ -13761,20 +13779,20 @@ export class TrinoSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 220, TrinoSqlParser.RULE_pathElement); + this.enterRule(localContext, 222, TrinoSqlParser.RULE_pathElement); try { - this.state = 3302; + this.state = 3304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3297; + this.state = 3299; this.identifier(); - this.state = 3298; + this.state = 3300; this.match(TrinoSqlParser.T__3); - this.state = 3299; + this.state = 3301; this.identifier(); } break; @@ -13782,7 +13800,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3301; + this.state = 3303; this.identifier(); } break; @@ -13804,26 +13822,26 @@ export class TrinoSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 222, TrinoSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 224, TrinoSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3304; + this.state = 3306; this.pathElement(); - this.state = 3309; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3305; + this.state = 3307; this.match(TrinoSqlParser.T__2); - this.state = 3306; + this.state = 3308; this.pathElement(); } } - this.state = 3311; + this.state = 3313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13845,34 +13863,34 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSpecification(): FunctionSpecificationContext { let localContext = new FunctionSpecificationContext(this.context, this.state); - this.enterRule(localContext, 224, TrinoSqlParser.RULE_functionSpecification); + this.enterRule(localContext, 226, TrinoSqlParser.RULE_functionSpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3312; + this.state = 3314; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 3313; + this.state = 3315; this.functionDeclaration(); - this.state = 3314; + this.state = 3316; this.returnsClause(); - this.state = 3318; + this.state = 3320; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3315; + this.state = 3317; this.routineCharacteristic(); } } } - this.state = 3320; + this.state = 3322; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } - this.state = 3321; + this.state = 3323; this.controlStatement(); } } @@ -13892,42 +13910,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionDeclaration(): FunctionDeclarationContext { let localContext = new FunctionDeclarationContext(this.context, this.state); - this.enterRule(localContext, 226, TrinoSqlParser.RULE_functionDeclaration); + this.enterRule(localContext, 228, TrinoSqlParser.RULE_functionDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3323; + this.state = 3325; this.functionNameCreate(); - this.state = 3324; + this.state = 3326; this.match(TrinoSqlParser.T__0); - this.state = 3333; + this.state = 3335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3325; + this.state = 3327; this.parameterDeclaration(); - this.state = 3330; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3326; + this.state = 3328; this.match(TrinoSqlParser.T__2); - this.state = 3327; + this.state = 3329; this.parameterDeclaration(); } } - this.state = 3332; + this.state = 3334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3335; + this.state = 3337; this.match(TrinoSqlParser.T__1); } } @@ -13947,42 +13965,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSignature(): FunctionSignatureContext { let localContext = new FunctionSignatureContext(this.context, this.state); - this.enterRule(localContext, 228, TrinoSqlParser.RULE_functionSignature); + this.enterRule(localContext, 230, TrinoSqlParser.RULE_functionSignature); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3337; + this.state = 3339; this.functionName(); - this.state = 3338; + this.state = 3340; this.match(TrinoSqlParser.T__0); - this.state = 3347; + this.state = 3349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3339; + this.state = 3341; this.parameterDeclaration(); - this.state = 3344; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3340; + this.state = 3342; this.match(TrinoSqlParser.T__2); - this.state = 3341; + this.state = 3343; this.parameterDeclaration(); } } - this.state = 3346; + this.state = 3348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3349; + this.state = 3351; this.match(TrinoSqlParser.T__1); } } @@ -14002,21 +14020,21 @@ export class TrinoSqlParser extends SQLParserBase { } public parameterDeclaration(): ParameterDeclarationContext { let localContext = new ParameterDeclarationContext(this.context, this.state); - this.enterRule(localContext, 230, TrinoSqlParser.RULE_parameterDeclaration); + this.enterRule(localContext, 232, TrinoSqlParser.RULE_parameterDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 3352; + this.state = 3354; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3351; + this.state = 3353; this.identifier(); } break; } - this.state = 3354; + this.state = 3356; this.type_(0); } } @@ -14036,13 +14054,13 @@ export class TrinoSqlParser extends SQLParserBase { } public returnsClause(): ReturnsClauseContext { let localContext = new ReturnsClauseContext(this.context, this.state); - this.enterRule(localContext, 232, TrinoSqlParser.RULE_returnsClause); + this.enterRule(localContext, 234, TrinoSqlParser.RULE_returnsClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3356; + this.state = 3358; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3357; + this.state = 3359; this.type_(0); } } @@ -14062,19 +14080,19 @@ export class TrinoSqlParser extends SQLParserBase { } public routineCharacteristic(): RoutineCharacteristicContext { let localContext = new RoutineCharacteristicContext(this.context, this.state); - this.enterRule(localContext, 234, TrinoSqlParser.RULE_routineCharacteristic); + this.enterRule(localContext, 236, TrinoSqlParser.RULE_routineCharacteristic); let _la: number; try { - this.state = 3378; + this.state = 3380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LANGUAGE: localContext = new LanguageCharacteristicContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3359; + this.state = 3361; this.match(TrinoSqlParser.KW_LANGUAGE); - this.state = 3360; + this.state = 3362; this.identifier(); } break; @@ -14083,17 +14101,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeterministicCharacteristicContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3362; + this.state = 3364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 3361; + this.state = 3363; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 3364; + this.state = 3366; this.match(TrinoSqlParser.KW_DETERMINISTIC); } break; @@ -14101,15 +14119,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReturnsNullOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3365; - this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3366; - this.match(TrinoSqlParser.KW_NULL); this.state = 3367; - this.match(TrinoSqlParser.KW_ON); + this.match(TrinoSqlParser.KW_RETURNS); this.state = 3368; this.match(TrinoSqlParser.KW_NULL); this.state = 3369; + this.match(TrinoSqlParser.KW_ON); + this.state = 3370; + this.match(TrinoSqlParser.KW_NULL); + this.state = 3371; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14117,13 +14135,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CalledOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3370; + this.state = 3372; this.match(TrinoSqlParser.KW_CALLED); - this.state = 3371; + this.state = 3373; this.match(TrinoSqlParser.KW_ON); - this.state = 3372; + this.state = 3374; this.match(TrinoSqlParser.KW_NULL); - this.state = 3373; + this.state = 3375; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14131,9 +14149,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SecurityCharacteristicContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3374; + this.state = 3376; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 3375; + this.state = 3377; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -14148,9 +14166,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentCharacteristicContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3376; + this.state = 3378; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 3377; + this.state = 3379; this.string_(); } break; @@ -14174,20 +14192,20 @@ export class TrinoSqlParser extends SQLParserBase { } public controlStatement(): ControlStatementContext { let localContext = new ControlStatementContext(this.context, this.state); - this.enterRule(localContext, 236, TrinoSqlParser.RULE_controlStatement); + this.enterRule(localContext, 238, TrinoSqlParser.RULE_controlStatement); let _la: number; try { let alternative: number; - this.state = 3479; + this.state = 3481; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: localContext = new ReturnStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3380; + this.state = 3382; this.match(TrinoSqlParser.KW_RETURN); - this.state = 3381; + this.state = 3383; this.valueExpression(0); } break; @@ -14195,13 +14213,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AssignmentStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3382; + this.state = 3384; this.match(TrinoSqlParser.KW_SET); - this.state = 3383; + this.state = 3385; this.identifier(); - this.state = 3384; + this.state = 3386; this.match(TrinoSqlParser.EQ); - this.state = 3385; + this.state = 3387; this.expression(); } break; @@ -14209,37 +14227,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseStatementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3387; + this.state = 3389; this.match(TrinoSqlParser.KW_CASE); - this.state = 3388; - this.expression(); this.state = 3390; + this.expression(); + this.state = 3392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3389; + this.state = 3391; this.caseStatementWhenClause(); } } - this.state = 3392; + this.state = 3394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3395; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3394; + this.state = 3396; this.elseClause(); } } - this.state = 3397; + this.state = 3399; this.match(TrinoSqlParser.KW_END); - this.state = 3398; + this.state = 3400; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14247,35 +14265,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseStatementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3400; - this.match(TrinoSqlParser.KW_CASE); this.state = 3402; + this.match(TrinoSqlParser.KW_CASE); + this.state = 3404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3401; + this.state = 3403; this.caseStatementWhenClause(); } } - this.state = 3404; + this.state = 3406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3407; + this.state = 3409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3406; + this.state = 3408; this.elseClause(); } } - this.state = 3409; + this.state = 3411; this.match(TrinoSqlParser.KW_END); - this.state = 3410; + this.state = 3412; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14283,41 +14301,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IfStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3412; + this.state = 3414; this.match(TrinoSqlParser.KW_IF); - this.state = 3413; + this.state = 3415; this.expression(); - this.state = 3414; + this.state = 3416; this.match(TrinoSqlParser.KW_THEN); - this.state = 3415; + this.state = 3417; this.sqlStatementList(); - this.state = 3419; + this.state = 3421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 86) { { { - this.state = 3416; + this.state = 3418; this.elseIfClause(); } } - this.state = 3421; + this.state = 3423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3423; + this.state = 3425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3422; + this.state = 3424; this.elseClause(); } } - this.state = 3425; + this.state = 3427; this.match(TrinoSqlParser.KW_END); - this.state = 3426; + this.state = 3428; this.match(TrinoSqlParser.KW_IF); } break; @@ -14325,9 +14343,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IterateStatementContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3428; + this.state = 3430; this.match(TrinoSqlParser.KW_ITERATE); - this.state = 3429; + this.state = 3431; this.identifier(); } break; @@ -14335,9 +14353,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LeaveStatementContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3430; + this.state = 3432; this.match(TrinoSqlParser.KW_LEAVE); - this.state = 3431; + this.state = 3433; this.identifier(); } break; @@ -14345,37 +14363,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CompoundStatementContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3432; + this.state = 3434; this.match(TrinoSqlParser.KW_BEGIN); - this.state = 3438; + this.state = 3440; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3433; + this.state = 3435; this.variableDeclaration(); - this.state = 3434; + this.state = 3436; this.match(TrinoSqlParser.SEMICOLON); } } } - this.state = 3440; + this.state = 3442; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); } - this.state = 3442; + this.state = 3444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4286249823) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3441; + this.state = 3443; this.sqlStatementList(); } } - this.state = 3444; + this.state = 3446; this.match(TrinoSqlParser.KW_END); } break; @@ -14383,25 +14401,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LoopStatementContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3448; + this.state = 3450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3445; + this.state = 3447; (localContext as LoopStatementContext)._label = this.identifier(); - this.state = 3446; + this.state = 3448; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3450; + this.state = 3452; this.match(TrinoSqlParser.KW_LOOP); - this.state = 3451; + this.state = 3453; this.sqlStatementList(); - this.state = 3452; + this.state = 3454; this.match(TrinoSqlParser.KW_END); - this.state = 3453; + this.state = 3455; this.match(TrinoSqlParser.KW_LOOP); } break; @@ -14409,29 +14427,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new WhileStatementContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3458; + this.state = 3460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3455; + this.state = 3457; (localContext as WhileStatementContext)._label = this.identifier(); - this.state = 3456; + this.state = 3458; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3460; + this.state = 3462; this.match(TrinoSqlParser.KW_WHILE); - this.state = 3461; + this.state = 3463; this.expression(); - this.state = 3462; + this.state = 3464; this.match(TrinoSqlParser.KW_DO); - this.state = 3463; + this.state = 3465; this.sqlStatementList(); - this.state = 3464; + this.state = 3466; this.match(TrinoSqlParser.KW_END); - this.state = 3465; + this.state = 3467; this.match(TrinoSqlParser.KW_WHILE); } break; @@ -14439,29 +14457,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatStatementContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3470; + this.state = 3472; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3467; + this.state = 3469; (localContext as RepeatStatementContext)._label = this.identifier(); - this.state = 3468; + this.state = 3470; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3472; + this.state = 3474; this.match(TrinoSqlParser.KW_REPEAT); - this.state = 3473; + this.state = 3475; this.sqlStatementList(); - this.state = 3474; + this.state = 3476; this.match(TrinoSqlParser.KW_UNTIL); - this.state = 3475; + this.state = 3477; this.expression(); - this.state = 3476; + this.state = 3478; this.match(TrinoSqlParser.KW_END); - this.state = 3477; + this.state = 3479; this.match(TrinoSqlParser.KW_REPEAT); } break; @@ -14483,17 +14501,17 @@ export class TrinoSqlParser extends SQLParserBase { } public caseStatementWhenClause(): CaseStatementWhenClauseContext { let localContext = new CaseStatementWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 238, TrinoSqlParser.RULE_caseStatementWhenClause); + this.enterRule(localContext, 240, TrinoSqlParser.RULE_caseStatementWhenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3481; + this.state = 3483; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3482; + this.state = 3484; this.expression(); - this.state = 3483; + this.state = 3485; this.match(TrinoSqlParser.KW_THEN); - this.state = 3484; + this.state = 3486; this.sqlStatementList(); } } @@ -14513,17 +14531,17 @@ export class TrinoSqlParser extends SQLParserBase { } public elseIfClause(): ElseIfClauseContext { let localContext = new ElseIfClauseContext(this.context, this.state); - this.enterRule(localContext, 240, TrinoSqlParser.RULE_elseIfClause); + this.enterRule(localContext, 242, TrinoSqlParser.RULE_elseIfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3486; + this.state = 3488; this.match(TrinoSqlParser.KW_ELSEIF); - this.state = 3487; + this.state = 3489; this.expression(); - this.state = 3488; + this.state = 3490; this.match(TrinoSqlParser.KW_THEN); - this.state = 3489; + this.state = 3491; this.sqlStatementList(); } } @@ -14543,13 +14561,13 @@ export class TrinoSqlParser extends SQLParserBase { } public elseClause(): ElseClauseContext { let localContext = new ElseClauseContext(this.context, this.state); - this.enterRule(localContext, 242, TrinoSqlParser.RULE_elseClause); + this.enterRule(localContext, 244, TrinoSqlParser.RULE_elseClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3491; + this.state = 3493; this.match(TrinoSqlParser.KW_ELSE); - this.state = 3492; + this.state = 3494; this.sqlStatementList(); } } @@ -14569,41 +14587,41 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDeclaration(): VariableDeclarationContext { let localContext = new VariableDeclarationContext(this.context, this.state); - this.enterRule(localContext, 244, TrinoSqlParser.RULE_variableDeclaration); + this.enterRule(localContext, 246, TrinoSqlParser.RULE_variableDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3494; + this.state = 3496; this.match(TrinoSqlParser.KW_DECLARE); - this.state = 3495; + this.state = 3497; this.identifier(); - this.state = 3500; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3496; + this.state = 3498; this.match(TrinoSqlParser.T__2); - this.state = 3497; + this.state = 3499; this.identifier(); } } - this.state = 3502; + this.state = 3504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3503; + this.state = 3505; this.type_(0); - this.state = 3506; + this.state = 3508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70) { { - this.state = 3504; + this.state = 3506; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 3505; + this.state = 3507; this.valueExpression(0); } } @@ -14626,12 +14644,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sqlStatementList(): SqlStatementListContext { let localContext = new SqlStatementListContext(this.context, this.state); - this.enterRule(localContext, 246, TrinoSqlParser.RULE_sqlStatementList); + this.enterRule(localContext, 248, TrinoSqlParser.RULE_sqlStatementList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3511; + this.state = 3513; this.errorHandler.sync(this); alternative = 1; do { @@ -14639,9 +14657,9 @@ export class TrinoSqlParser extends SQLParserBase { case 1: { { - this.state = 3508; + this.state = 3510; this.controlStatement(); - this.state = 3509; + this.state = 3511; this.match(TrinoSqlParser.SEMICOLON); } } @@ -14649,7 +14667,7 @@ export class TrinoSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3513; + this.state = 3515; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -14671,50 +14689,50 @@ export class TrinoSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 248, TrinoSqlParser.RULE_privilege); + this.enterRule(localContext, 250, TrinoSqlParser.RULE_privilege); try { - this.state = 3521; + this.state = 3523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3515; + this.state = 3517; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3516; + this.state = 3518; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3517; + this.state = 3519; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3518; + this.state = 3520; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3519; + this.state = 3521; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3520; + this.state = 3522; this.identifier(); } break; @@ -14736,29 +14754,29 @@ export class TrinoSqlParser extends SQLParserBase { } public entityKind(): EntityKindContext { let localContext = new EntityKindContext(this.context, this.state); - this.enterRule(localContext, 250, TrinoSqlParser.RULE_entityKind); + this.enterRule(localContext, 252, TrinoSqlParser.RULE_entityKind); try { - this.state = 3526; + this.state = 3528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3523; + this.state = 3525; this.match(TrinoSqlParser.KW_TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3524; + this.state = 3526; this.match(TrinoSqlParser.KW_SCHEMA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3525; + this.state = 3527; this.identifier(); } break; @@ -14780,21 +14798,21 @@ export class TrinoSqlParser extends SQLParserBase { } public grantObject(): GrantObjectContext { let localContext = new GrantObjectContext(this.context, this.state); - this.enterRule(localContext, 252, TrinoSqlParser.RULE_grantObject); + this.enterRule(localContext, 254, TrinoSqlParser.RULE_grantObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 3529; + this.state = 3531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3528; + this.state = 3530; this.entityKind(); } break; } - this.state = 3531; + this.state = 3533; this.qualifiedName(); } } @@ -14814,22 +14832,22 @@ export class TrinoSqlParser extends SQLParserBase { } public tableOrViewName(): TableOrViewNameContext { let localContext = new TableOrViewNameContext(this.context, this.state); - this.enterRule(localContext, 254, TrinoSqlParser.RULE_tableOrViewName); + this.enterRule(localContext, 256, TrinoSqlParser.RULE_tableOrViewName); try { - this.state = 3535; + this.state = 3537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3535; this.tableRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3534; + this.state = 3536; this.viewRef(); } break; @@ -14851,41 +14869,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableRef(): TableRefContext { let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 256, TrinoSqlParser.RULE_tableRef); + this.enterRule(localContext, 258, TrinoSqlParser.RULE_tableRef); try { - this.state = 3548; + this.state = 3550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3537; + this.state = 3539; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3538; + this.state = 3540; localContext._schema = this.identifier(); - this.state = 3539; + this.state = 3541; this.match(TrinoSqlParser.T__3); - this.state = 3540; + this.state = 3542; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3542; - localContext._catalog = this.identifier(); - this.state = 3543; - this.match(TrinoSqlParser.T__3); this.state = 3544; - localContext._schema = this.identifier(); + localContext._catalog = this.identifier(); this.state = 3545; this.match(TrinoSqlParser.T__3); this.state = 3546; + localContext._schema = this.identifier(); + this.state = 3547; + this.match(TrinoSqlParser.T__3); + this.state = 3548; localContext._table = this.identifier(); } break; @@ -14907,41 +14925,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 258, TrinoSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 260, TrinoSqlParser.RULE_tableNameCreate); try { - this.state = 3561; + this.state = 3563; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3552; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3551; + this.state = 3553; localContext._schema = this.identifier(); - this.state = 3552; + this.state = 3554; this.match(TrinoSqlParser.T__3); - this.state = 3553; + this.state = 3555; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3555; - localContext._catalog = this.identifier(); - this.state = 3556; - this.match(TrinoSqlParser.T__3); this.state = 3557; - localContext._schema = this.identifier(); + localContext._catalog = this.identifier(); this.state = 3558; this.match(TrinoSqlParser.T__3); this.state = 3559; + localContext._schema = this.identifier(); + this.state = 3560; + this.match(TrinoSqlParser.T__3); + this.state = 3561; localContext._table = this.identifier(); } break; @@ -14963,41 +14981,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewRef(): ViewRefContext { let localContext = new ViewRefContext(this.context, this.state); - this.enterRule(localContext, 260, TrinoSqlParser.RULE_viewRef); + this.enterRule(localContext, 262, TrinoSqlParser.RULE_viewRef); try { - this.state = 3574; + this.state = 3576; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3563; + this.state = 3565; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3564; + this.state = 3566; localContext._schema = this.identifier(); - this.state = 3565; + this.state = 3567; this.match(TrinoSqlParser.T__3); - this.state = 3566; + this.state = 3568; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3568; - localContext._catalog = this.identifier(); - this.state = 3569; - this.match(TrinoSqlParser.T__3); this.state = 3570; - localContext._schema = this.identifier(); + localContext._catalog = this.identifier(); this.state = 3571; this.match(TrinoSqlParser.T__3); this.state = 3572; + localContext._schema = this.identifier(); + this.state = 3573; + this.match(TrinoSqlParser.T__3); + this.state = 3574; localContext._view = this.identifier(); } break; @@ -15019,41 +15037,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 262, TrinoSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 264, TrinoSqlParser.RULE_viewNameCreate); try { - this.state = 3587; + this.state = 3589; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3576; + this.state = 3578; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3577; + this.state = 3579; localContext._schema = this.identifier(); - this.state = 3578; + this.state = 3580; this.match(TrinoSqlParser.T__3); - this.state = 3579; + this.state = 3581; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3581; - localContext._catalog = this.identifier(); - this.state = 3582; - this.match(TrinoSqlParser.T__3); this.state = 3583; - localContext._schema = this.identifier(); + localContext._catalog = this.identifier(); this.state = 3584; this.match(TrinoSqlParser.T__3); this.state = 3585; + localContext._schema = this.identifier(); + this.state = 3586; + this.match(TrinoSqlParser.T__3); + this.state = 3587; localContext._view = this.identifier(); } break; @@ -15075,26 +15093,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaRef(): SchemaRefContext { let localContext = new SchemaRefContext(this.context, this.state); - this.enterRule(localContext, 264, TrinoSqlParser.RULE_schemaRef); + this.enterRule(localContext, 266, TrinoSqlParser.RULE_schemaRef); try { - this.state = 3594; + this.state = 3596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3591; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3590; + this.state = 3592; localContext._catalog = this.identifier(); - this.state = 3591; + this.state = 3593; this.match(TrinoSqlParser.T__3); - this.state = 3592; + this.state = 3594; localContext._schema = this.identifier(); } break; @@ -15116,26 +15134,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaNameCreate(): SchemaNameCreateContext { let localContext = new SchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 266, TrinoSqlParser.RULE_schemaNameCreate); + this.enterRule(localContext, 268, TrinoSqlParser.RULE_schemaNameCreate); try { - this.state = 3601; + this.state = 3603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3596; + this.state = 3598; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3597; + this.state = 3599; localContext._catalog = this.identifier(); - this.state = 3598; + this.state = 3600; this.match(TrinoSqlParser.T__3); - this.state = 3599; + this.state = 3601; localContext._schema = this.identifier(); } break; @@ -15157,11 +15175,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogRef(): CatalogRefContext { let localContext = new CatalogRefContext(this.context, this.state); - this.enterRule(localContext, 268, TrinoSqlParser.RULE_catalogRef); + this.enterRule(localContext, 270, TrinoSqlParser.RULE_catalogRef); try { this.enterOuterAlt(localContext, 1); { - this.state = 3603; + this.state = 3605; localContext._catalog = this.identifier(); } } @@ -15181,11 +15199,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogNameCreate(): CatalogNameCreateContext { let localContext = new CatalogNameCreateContext(this.context, this.state); - this.enterRule(localContext, 270, TrinoSqlParser.RULE_catalogNameCreate); + this.enterRule(localContext, 272, TrinoSqlParser.RULE_catalogNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3605; + this.state = 3607; localContext._catalog = this.identifier(); } } @@ -15205,11 +15223,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 272, TrinoSqlParser.RULE_functionName); + this.enterRule(localContext, 274, TrinoSqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3607; + this.state = 3609; this.qualifiedName(); } } @@ -15229,11 +15247,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 274, TrinoSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 276, TrinoSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3609; + this.state = 3611; this.qualifiedName(); } } @@ -15253,22 +15271,22 @@ export class TrinoSqlParser extends SQLParserBase { } public columnRef(): ColumnRefContext { let localContext = new ColumnRefContext(this.context, this.state); - this.enterRule(localContext, 276, TrinoSqlParser.RULE_columnRef); + this.enterRule(localContext, 278, TrinoSqlParser.RULE_columnRef); try { - this.state = 3613; + this.state = 3615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3611; + this.state = 3613; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3612; + this.state = 3614; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -15290,13 +15308,37 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public columnName(): ColumnNameContext { + let localContext = new ColumnNameContext(this.context, this.state); + this.enterRule(localContext, 280, TrinoSqlParser.RULE_columnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3617; + this.qualifiedName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 278, TrinoSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 282, TrinoSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3615; + this.state = 3619; this.identifier(); } } @@ -15316,28 +15358,28 @@ export class TrinoSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 280, TrinoSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 284, TrinoSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3617; + this.state = 3621; this.identifier(); - this.state = 3622; + this.state = 3626; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3618; + this.state = 3622; this.match(TrinoSqlParser.T__3); - this.state = 3619; + this.state = 3623; this.identifier(); } } } - this.state = 3624; + this.state = 3628; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); } @@ -15359,19 +15401,19 @@ export class TrinoSqlParser extends SQLParserBase { } public queryPeriod(): QueryPeriodContext { let localContext = new QueryPeriodContext(this.context, this.state); - this.enterRule(localContext, 282, TrinoSqlParser.RULE_queryPeriod); + this.enterRule(localContext, 286, TrinoSqlParser.RULE_queryPeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 3625; + this.state = 3629; this.match(TrinoSqlParser.KW_FOR); - this.state = 3626; + this.state = 3630; this.rangeType(); - this.state = 3627; + this.state = 3631; this.match(TrinoSqlParser.KW_AS); - this.state = 3628; + this.state = 3632; this.match(TrinoSqlParser.KW_OF); - this.state = 3629; + this.state = 3633; localContext._end = this.valueExpression(0); } } @@ -15391,12 +15433,12 @@ export class TrinoSqlParser extends SQLParserBase { } public rangeType(): RangeTypeContext { let localContext = new RangeTypeContext(this.context, this.state); - this.enterRule(localContext, 284, TrinoSqlParser.RULE_rangeType); + this.enterRule(localContext, 288, TrinoSqlParser.RULE_rangeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3631; + this.state = 3635; _la = this.tokenStream.LA(1); if(!(_la === 268 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -15423,9 +15465,9 @@ export class TrinoSqlParser extends SQLParserBase { } public grantor(): GrantorContext { let localContext = new GrantorContext(this.context, this.state); - this.enterRule(localContext, 286, TrinoSqlParser.RULE_grantor); + this.enterRule(localContext, 290, TrinoSqlParser.RULE_grantor); try { - this.state = 3636; + this.state = 3640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -15648,7 +15690,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3633; + this.state = 3637; this.principal(); } break; @@ -15656,7 +15698,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3634; + this.state = 3638; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -15664,7 +15706,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3635; + this.state = 3639; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -15688,16 +15730,16 @@ export class TrinoSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 288, TrinoSqlParser.RULE_principal); + this.enterRule(localContext, 292, TrinoSqlParser.RULE_principal); try { - this.state = 3643; + this.state = 3647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3638; + this.state = 3642; this.identifier(); } break; @@ -15705,9 +15747,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3639; + this.state = 3643; this.match(TrinoSqlParser.KW_USER); - this.state = 3640; + this.state = 3644; this.identifier(); } break; @@ -15715,9 +15757,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3641; + this.state = 3645; this.match(TrinoSqlParser.KW_ROLE); - this.state = 3642; + this.state = 3646; this.identifier(); } break; @@ -15739,26 +15781,26 @@ export class TrinoSqlParser extends SQLParserBase { } public roles(): RolesContext { let localContext = new RolesContext(this.context, this.state); - this.enterRule(localContext, 290, TrinoSqlParser.RULE_roles); + this.enterRule(localContext, 294, TrinoSqlParser.RULE_roles); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3645; + this.state = 3649; this.identifier(); - this.state = 3650; + this.state = 3654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3646; + this.state = 3650; this.match(TrinoSqlParser.T__2); - this.state = 3647; + this.state = 3651; this.identifier(); } } - this.state = 3652; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15780,57 +15822,57 @@ export class TrinoSqlParser extends SQLParserBase { } public privilegeOrRole(): PrivilegeOrRoleContext { let localContext = new PrivilegeOrRoleContext(this.context, this.state); - this.enterRule(localContext, 292, TrinoSqlParser.RULE_privilegeOrRole); + this.enterRule(localContext, 296, TrinoSqlParser.RULE_privilegeOrRole); try { - this.state = 3660; + this.state = 3664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3653; + this.state = 3657; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3654; + this.state = 3658; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3655; + this.state = 3659; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3656; + this.state = 3660; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3657; + this.state = 3661; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3658; + this.state = 3662; this.match(TrinoSqlParser.KW_EXECUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3659; + this.state = 3663; this.identifier(); } break; @@ -15852,16 +15894,16 @@ export class TrinoSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 294, TrinoSqlParser.RULE_identifier); + this.enterRule(localContext, 298, TrinoSqlParser.RULE_identifier); try { - this.state = 3667; + this.state = 3671; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3662; + this.state = 3666; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -15869,7 +15911,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3663; + this.state = 3667; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -16089,7 +16131,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3664; + this.state = 3668; this.nonReserved(); } break; @@ -16097,7 +16139,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3665; + this.state = 3669; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -16105,7 +16147,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3666; + this.state = 3670; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -16129,27 +16171,27 @@ export class TrinoSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 296, TrinoSqlParser.RULE_number); + this.enterRule(localContext, 300, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 3681; + this.state = 3685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3670; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3669; + this.state = 3673; this.match(TrinoSqlParser.MINUS); } } - this.state = 3672; + this.state = 3676; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -16157,17 +16199,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3674; + this.state = 3678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3673; + this.state = 3677; this.match(TrinoSqlParser.MINUS); } } - this.state = 3676; + this.state = 3680; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -16175,17 +16217,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3678; + this.state = 3682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3677; + this.state = 3681; this.match(TrinoSqlParser.MINUS); } } - this.state = 3680; + this.state = 3684; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -16207,9 +16249,9 @@ export class TrinoSqlParser extends SQLParserBase { } public authorizationUser(): AuthorizationUserContext { let localContext = new AuthorizationUserContext(this.context, this.state); - this.enterRule(localContext, 298, TrinoSqlParser.RULE_authorizationUser); + this.enterRule(localContext, 302, TrinoSqlParser.RULE_authorizationUser); try { - this.state = 3685; + this.state = 3689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -16432,7 +16474,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IdentifierUserContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3683; + this.state = 3687; this.identifier(); } break; @@ -16441,7 +16483,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3684; + this.state = 3688; this.string_(); } break; @@ -16465,12 +16507,12 @@ export class TrinoSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 300, TrinoSqlParser.RULE_nonReserved); + this.enterRule(localContext, 304, TrinoSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3687; + this.state = 3691; _la = this.tokenStream.LA(1); if(!(((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0))) { this.errorHandler.recoverInline(this); @@ -16500,19 +16542,19 @@ export class TrinoSqlParser extends SQLParserBase { switch (ruleIndex) { case 23: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 36: + case 37: return this.relation_sempred(localContext as RelationContext, predIndex); - case 69: + case 70: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 71: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 72: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 73: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 92: + case 93: return this.type_sempred(localContext as TypeContext, predIndex); - case 102: + case 103: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); - case 138: + case 139: return this.columnRef_sempred(localContext as ColumnRefContext, predIndex); } return true; @@ -16589,7 +16631,7 @@ export class TrinoSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,340,3690,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,340,3694,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, @@ -16613,316 +16655,317 @@ export class TrinoSqlParser extends SQLParserBase { 7,131,2,132,7,132,2,133,7,133,2,134,7,134,2,135,7,135,2,136,7,136, 2,137,7,137,2,138,7,138,2,139,7,139,2,140,7,140,2,141,7,141,2,142, 7,142,2,143,7,143,2,144,7,144,2,145,7,145,2,146,7,146,2,147,7,147, - 2,148,7,148,2,149,7,149,2,150,7,150,1,0,5,0,304,8,0,10,0,12,0,307, - 9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,315,8,2,1,3,1,3,3,3,319,8,3,1,4, - 1,4,3,4,323,8,4,1,5,1,5,3,5,327,8,5,1,6,1,6,3,6,331,8,6,1,7,1,7, - 1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,344,8,8,1,8,1,8,1,8,1,8, - 1,8,3,8,351,8,8,1,8,1,8,3,8,355,8,8,1,8,1,8,3,8,359,8,8,1,8,1,8, - 1,8,1,8,3,8,365,8,8,1,8,1,8,3,8,369,8,8,1,8,1,8,1,8,1,8,1,8,3,8, - 376,8,8,1,8,1,8,1,8,3,8,381,8,8,1,8,1,8,3,8,385,8,8,1,8,1,8,1,8, - 1,8,3,8,391,8,8,1,8,1,8,3,8,395,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,414,8,8,1,8,1,8,1,8, - 1,8,3,8,420,8,8,1,8,1,8,3,8,424,8,8,1,8,1,8,3,8,428,8,8,1,8,1,8, - 3,8,432,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,440,8,8,1,8,1,8,3,8,444, - 8,8,1,8,3,8,447,8,8,1,8,1,8,1,8,3,8,452,8,8,1,8,1,8,1,8,1,8,3,8, - 458,8,8,1,8,1,8,1,8,1,8,1,8,5,8,465,8,8,10,8,12,8,468,9,8,1,8,1, - 8,1,8,3,8,473,8,8,1,8,1,8,3,8,477,8,8,1,8,1,8,1,8,1,8,3,8,483,8, - 8,1,8,1,8,1,8,1,8,1,8,3,8,490,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3, - 8,499,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,511,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,520,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,529,8,8,1,8,1,8,1,8,1,8,3,8,535,8,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,546,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,554,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,3,8,562,8,8,1,8,1,8,1,8,1,8,1,8,3,8,569,8, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,579,8,8,1,8,1,8,1,8,1,8,1, - 8,3,8,586,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,594,8,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,609,8,8,1,8,1,8,1,8,1, + 2,148,7,148,2,149,7,149,2,150,7,150,2,151,7,151,2,152,7,152,1,0, + 5,0,308,8,0,10,0,12,0,311,9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,319,8, + 2,1,3,1,3,3,3,323,8,3,1,4,1,4,3,4,327,8,4,1,5,1,5,3,5,331,8,5,1, + 6,1,6,3,6,335,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3, + 8,348,8,8,1,8,1,8,1,8,1,8,1,8,3,8,355,8,8,1,8,1,8,3,8,359,8,8,1, + 8,1,8,3,8,363,8,8,1,8,1,8,1,8,1,8,3,8,369,8,8,1,8,1,8,3,8,373,8, + 8,1,8,1,8,1,8,1,8,1,8,3,8,380,8,8,1,8,1,8,1,8,3,8,385,8,8,1,8,1, + 8,3,8,389,8,8,1,8,1,8,1,8,1,8,3,8,395,8,8,1,8,1,8,3,8,399,8,8,1, 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,642,8,8,10,8,12, - 8,645,9,8,3,8,647,8,8,1,8,3,8,650,8,8,1,8,1,8,3,8,654,8,8,1,8,1, - 8,1,8,1,8,3,8,660,8,8,1,8,1,8,1,8,3,8,665,8,8,1,8,1,8,1,8,1,8,1, - 8,3,8,672,8,8,1,8,1,8,1,8,1,8,3,8,678,8,8,1,8,1,8,3,8,682,8,8,1, - 8,1,8,3,8,686,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,694,8,8,1,8,1,8,1, - 8,1,8,3,8,700,8,8,1,8,1,8,3,8,704,8,8,1,8,1,8,3,8,708,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,722,8,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,730,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,749,8,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5, - 8,772,8,8,10,8,12,8,775,9,8,3,8,777,8,8,1,8,1,8,1,8,1,8,1,8,3,8, - 784,8,8,1,8,1,8,1,8,1,8,1,8,3,8,791,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,800,8,8,1,8,1,8,3,8,804,8,8,1,8,1,8,1,8,1,8,1,8,3,8,811, - 8,8,1,8,1,8,1,8,1,8,5,8,817,8,8,10,8,12,8,820,9,8,1,8,1,8,1,8,1, - 8,5,8,826,8,8,10,8,12,8,829,9,8,1,8,1,8,1,8,3,8,834,8,8,1,8,1,8, - 1,8,3,8,839,8,8,1,8,1,8,3,8,843,8,8,1,8,1,8,1,8,1,8,5,8,849,8,8, - 10,8,12,8,852,9,8,1,8,1,8,3,8,856,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,865,8,8,1,8,1,8,1,8,1,8,3,8,871,8,8,1,8,1,8,1,8,5,8,876,8, - 8,10,8,12,8,879,9,8,1,8,1,8,1,8,1,8,5,8,885,8,8,10,8,12,8,888,9, - 8,1,8,1,8,1,8,3,8,893,8,8,1,8,1,8,3,8,897,8,8,1,8,1,8,1,8,1,8,3, - 8,903,8,8,1,8,1,8,1,8,5,8,908,8,8,10,8,12,8,911,9,8,1,8,1,8,3,8, - 915,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,926,8,8,10,8,12, - 8,929,9,8,1,8,1,8,3,8,933,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,945,8,8,1,8,1,8,3,8,949,8,8,1,8,1,8,1,8,1,8,3,8,955,8, - 8,1,8,1,8,1,8,1,8,1,8,5,8,962,8,8,10,8,12,8,965,9,8,1,8,1,8,3,8, - 969,8,8,1,8,1,8,1,8,1,8,3,8,975,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 8,3,8,418,8,8,1,8,1,8,1,8,1,8,3,8,424,8,8,1,8,1,8,3,8,428,8,8,1, + 8,1,8,3,8,432,8,8,1,8,1,8,3,8,436,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3, + 8,444,8,8,1,8,1,8,3,8,448,8,8,1,8,3,8,451,8,8,1,8,1,8,1,8,3,8,456, + 8,8,1,8,1,8,1,8,1,8,3,8,462,8,8,1,8,1,8,1,8,1,8,1,8,5,8,469,8,8, + 10,8,12,8,472,9,8,1,8,1,8,1,8,3,8,477,8,8,1,8,1,8,3,8,481,8,8,1, + 8,1,8,1,8,1,8,3,8,487,8,8,1,8,1,8,1,8,1,8,1,8,3,8,494,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,502,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,514,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,523,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,3,8,532,8,8,1,8,1,8,1,8,1,8,3,8,538,8,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,549,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,557,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,565,8,8,1,8,1,8,1, + 8,1,8,1,8,3,8,572,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,582,8, + 8,1,8,1,8,1,8,1,8,1,8,3,8,589,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,597, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,612, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 5,8,645,8,8,10,8,12,8,648,9,8,3,8,650,8,8,1,8,3,8,653,8,8,1,8,3, + 8,656,8,8,1,8,1,8,1,8,1,8,3,8,662,8,8,1,8,1,8,1,8,3,8,667,8,8,1, + 8,1,8,1,8,1,8,1,8,3,8,674,8,8,1,8,1,8,1,8,1,8,3,8,680,8,8,1,8,1, + 8,3,8,684,8,8,1,8,1,8,3,8,688,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,696, + 8,8,1,8,1,8,1,8,1,8,3,8,702,8,8,1,8,1,8,3,8,706,8,8,1,8,1,8,3,8, + 710,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,724, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,732,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,751,8,8,1,8,1,8, 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,3,8,1003,8,8,1,8,1,8,1,8,1,8,3,8,1009,8,8,3,8,1011,8, - 8,1,8,1,8,1,8,1,8,3,8,1017,8,8,1,8,1,8,1,8,1,8,3,8,1023,8,8,3,8, - 1025,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1033,8,8,3,8,1035,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1045,8,8,3,8,1047,8,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1062,8,8,1,8,1,8,1,8, - 3,8,1067,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1074,8,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,1084,8,8,1,8,1,8,1,8,1,8,3,8,1090,8,8,3,8,1092, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1100,8,8,3,8,1102,8,8,1,8,1,8,1, + 1,8,1,8,1,8,5,8,774,8,8,10,8,12,8,777,9,8,3,8,779,8,8,1,8,1,8,1, + 8,1,8,1,8,3,8,786,8,8,1,8,1,8,1,8,1,8,1,8,3,8,793,8,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,802,8,8,1,8,1,8,3,8,806,8,8,1,8,1,8,1,8,1, + 8,1,8,3,8,813,8,8,1,8,1,8,1,8,1,8,5,8,819,8,8,10,8,12,8,822,9,8, + 1,8,1,8,1,8,1,8,5,8,828,8,8,10,8,12,8,831,9,8,1,8,1,8,1,8,3,8,836, + 8,8,1,8,1,8,1,8,3,8,841,8,8,1,8,1,8,3,8,845,8,8,1,8,1,8,1,8,1,8, + 5,8,851,8,8,10,8,12,8,854,9,8,1,8,1,8,3,8,858,8,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,867,8,8,1,8,1,8,1,8,1,8,3,8,873,8,8,1,8,1,8,1, + 8,5,8,878,8,8,10,8,12,8,881,9,8,1,8,1,8,1,8,1,8,5,8,887,8,8,10,8, + 12,8,890,9,8,1,8,1,8,1,8,3,8,895,8,8,1,8,1,8,3,8,899,8,8,1,8,1,8, + 1,8,1,8,3,8,905,8,8,1,8,1,8,1,8,5,8,910,8,8,10,8,12,8,913,9,8,1, + 8,1,8,3,8,917,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,928,8, + 8,10,8,12,8,931,9,8,1,8,1,8,3,8,935,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,3,8,947,8,8,1,8,1,8,3,8,951,8,8,1,8,1,8,1,8,1,8, + 3,8,957,8,8,1,8,1,8,1,8,1,8,1,8,5,8,964,8,8,10,8,12,8,967,9,8,1, + 8,1,8,3,8,971,8,8,1,8,1,8,1,8,1,8,3,8,977,8,8,1,8,1,8,1,8,1,8,1, 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,5,8,1125,8,8,10,8,12,8,1128,9,8,3,8,1130,8,8,1,8,1,8,3, - 8,1134,8,8,1,8,1,8,3,8,1138,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,5,8,1154,8,8,10,8,12,8,1157,9,8,3,8,1159, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1168,8,8,10,8,12,8,1171,9,8, - 3,8,1173,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,1189,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1197,8,8,10,8,12,8, - 1200,9,8,1,8,1,8,3,8,1204,8,8,1,8,1,8,1,8,1,8,3,8,1210,8,8,1,8,3, - 8,1213,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1220,8,8,11,8,12,8,1221,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1234,8,8,1,9,3,9,1237,8,9, - 1,9,1,9,1,10,1,10,1,10,1,10,5,10,1245,8,10,10,10,12,10,1248,9,10, - 1,11,3,11,1251,8,11,1,11,1,11,1,12,1,12,3,12,1257,8,12,1,12,1,12, - 1,12,5,12,1262,8,12,10,12,12,12,1265,9,12,1,13,1,13,3,13,1269,8, - 13,1,14,1,14,1,14,1,14,3,14,1275,8,14,1,14,1,14,3,14,1279,8,14,1, - 14,1,14,3,14,1283,8,14,1,15,1,15,1,15,1,15,3,15,1289,8,15,1,16,1, - 16,1,16,1,16,1,17,1,17,1,17,5,17,1298,8,17,10,17,12,17,1301,9,17, - 1,18,1,18,1,18,1,18,1,19,1,19,3,19,1309,8,19,1,20,1,20,1,20,1,20, - 1,20,1,20,5,20,1317,8,20,10,20,12,20,1320,9,20,3,20,1322,8,20,1, - 20,1,20,1,20,3,20,1327,8,20,3,20,1329,8,20,1,20,1,20,1,20,1,20,1, - 20,3,20,1336,8,20,1,20,1,20,1,20,1,20,3,20,1342,8,20,3,20,1344,8, - 20,1,21,1,21,3,21,1348,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1, - 23,3,23,1358,8,23,1,23,1,23,1,23,1,23,3,23,1364,8,23,1,23,5,23,1367, - 8,23,10,23,12,23,1370,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,5, - 24,1379,8,24,10,24,12,24,1382,9,24,1,24,1,24,1,24,1,24,3,24,1388, - 8,24,1,25,1,25,3,25,1392,8,25,1,25,3,25,1395,8,25,1,25,1,25,3,25, - 1399,8,25,1,26,1,26,3,26,1403,8,26,1,26,1,26,1,26,5,26,1408,8,26, - 10,26,12,26,1411,9,26,1,26,1,26,1,26,1,26,5,26,1417,8,26,10,26,12, - 26,1420,9,26,3,26,1422,8,26,1,26,1,26,3,26,1426,8,26,1,26,1,26,1, - 26,3,26,1431,8,26,1,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,1,26,5, - 26,1441,8,26,10,26,12,26,1444,9,26,3,26,1446,8,26,1,27,3,27,1449, - 8,27,1,27,1,27,1,27,5,27,1454,8,27,10,27,12,27,1457,9,27,1,28,1, - 28,1,28,1,28,1,28,1,28,5,28,1465,8,28,10,28,12,28,1468,9,28,3,28, - 1470,8,28,1,28,1,28,1,28,1,28,1,28,1,28,5,28,1478,8,28,10,28,12, - 28,1481,9,28,3,28,1483,8,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,5, - 28,1492,8,28,10,28,12,28,1495,9,28,1,28,1,28,3,28,1499,8,28,1,29, - 1,29,1,29,1,29,5,29,1505,8,29,10,29,12,29,1508,9,29,3,29,1510,8, - 29,1,29,1,29,3,29,1514,8,29,1,30,1,30,3,30,1518,8,30,1,31,1,31,1, - 31,1,31,1,31,1,31,1,32,3,32,1527,8,32,1,32,1,32,1,32,1,32,1,32,5, - 32,1534,8,32,10,32,12,32,1537,9,32,3,32,1539,8,32,1,32,1,32,1,32, - 1,32,1,32,5,32,1546,8,32,10,32,12,32,1549,9,32,3,32,1551,8,32,1, - 32,3,32,1554,8,32,1,33,1,33,3,33,1558,8,33,1,33,1,33,1,33,1,33,1, - 33,1,34,1,34,1,35,1,35,3,35,1569,8,35,1,35,3,35,1572,8,35,1,35,3, - 35,1575,8,35,1,35,1,35,1,35,1,35,1,35,3,35,1582,8,35,1,35,3,35,1585, - 8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1604,8,36,5,36,1606,8,36,10,36,12, - 36,1609,9,36,1,37,3,37,1612,8,37,1,37,1,37,3,37,1616,8,37,1,37,1, - 37,3,37,1620,8,37,1,37,1,37,3,37,1624,8,37,3,37,1626,8,37,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,5,38,1635,8,38,10,38,12,38,1638,9,38, - 1,38,1,38,3,38,1642,8,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39, - 1651,8,39,1,40,1,40,1,41,1,41,1,42,1,42,1,42,3,42,1660,8,42,1,42, - 3,42,1663,8,42,1,43,1,43,1,43,1,43,3,43,1669,8,43,1,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,5,44,1679,8,44,10,44,12,44,1682,9,44,3, - 44,1684,8,44,1,44,1,44,1,44,1,44,1,44,5,44,1691,8,44,10,44,12,44, - 1694,9,44,3,44,1696,8,44,1,44,1,44,1,44,1,44,5,44,1702,8,44,10,44, - 12,44,1705,9,44,3,44,1707,8,44,1,44,3,44,1710,8,44,1,44,1,44,1,44, - 3,44,1715,8,44,1,44,3,44,1718,8,44,1,44,1,44,1,44,1,44,1,44,1,44, - 1,44,1,44,5,44,1728,8,44,10,44,12,44,1731,9,44,3,44,1733,8,44,1, - 44,1,44,1,44,1,44,5,44,1739,8,44,10,44,12,44,1742,9,44,1,44,1,44, - 3,44,1746,8,44,1,44,1,44,3,44,1750,8,44,3,44,1752,8,44,3,44,1754, - 8,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46, - 1,46,3,46,1769,8,46,3,46,1771,8,46,1,47,1,47,1,47,1,47,1,47,1,47, - 1,47,1,47,1,47,3,47,1782,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48, - 1803,8,48,1,49,1,49,1,49,1,49,1,49,1,49,5,49,1811,8,49,10,49,12, - 49,1814,9,49,1,49,1,49,1,50,1,50,1,50,1,50,1,51,1,51,3,51,1824,8, - 51,1,51,1,51,3,51,1828,8,51,3,51,1830,8,51,1,52,1,52,1,52,1,52,5, - 52,1836,8,52,10,52,12,52,1839,9,52,1,52,1,52,1,53,1,53,1,53,1,53, - 5,53,1847,8,53,10,53,12,53,1850,9,53,1,53,1,53,1,54,1,54,1,54,1, - 54,5,54,1858,8,54,10,54,12,54,1861,9,54,1,54,1,54,1,55,1,55,3,55, - 1867,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,1878, - 8,55,10,55,12,55,1881,9,55,1,55,1,55,1,55,3,55,1886,8,55,1,55,1, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,1910,8,55,10,55,12,55, - 1913,9,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55, - 1,55,3,55,1927,8,55,1,55,1,55,1,55,3,55,1932,8,55,1,55,1,55,3,55, - 1936,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1946,8,56, - 1,56,1,56,1,56,1,56,3,56,1952,8,56,1,56,1,56,1,56,1,56,3,56,1958, - 8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1966,8,56,1,56,1,56,1,56, - 3,56,1971,8,56,1,56,1,56,1,56,1,56,1,56,3,56,1978,8,56,3,56,1980, - 8,56,1,56,1,56,1,56,1,56,3,56,1986,8,56,1,56,1,56,1,56,1,56,3,56, - 1992,8,56,1,56,1,56,3,56,1996,8,56,1,56,1,56,1,56,3,56,2001,8,56, - 1,56,1,56,1,56,1,56,1,56,5,56,2008,8,56,10,56,12,56,2011,9,56,1, - 56,1,56,3,56,2015,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1, - 57,1,57,5,57,2027,8,57,10,57,12,57,2030,9,57,1,57,1,57,1,57,1,57, - 1,57,5,57,2037,8,57,10,57,12,57,2040,9,57,3,57,2042,8,57,1,58,1, - 58,1,59,1,59,1,59,1,59,1,59,3,59,2051,8,59,1,60,1,60,1,60,3,60,2056, - 8,60,1,60,1,60,1,60,3,60,2061,8,60,3,60,2063,8,60,1,61,1,61,1,61, - 1,61,1,61,5,61,2070,8,61,10,61,12,61,2073,9,61,3,61,2075,8,61,1, - 61,1,61,1,61,1,61,5,61,2081,8,61,10,61,12,61,2084,9,61,3,61,2086, - 8,61,1,61,1,61,1,62,1,62,1,62,3,62,2093,8,62,1,62,1,62,1,62,3,62, - 2098,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,5,63,2107,8,63,10,63, - 12,63,2110,9,63,3,63,2112,8,63,1,63,1,63,3,63,2116,8,63,3,63,2118, - 8,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2126,8,63,1,63,1,63,1,63, - 1,63,1,63,1,63,5,63,2134,8,63,10,63,12,63,2137,9,63,1,63,1,63,1, - 63,3,63,2142,8,63,3,63,2144,8,63,1,64,1,64,1,64,1,64,1,64,3,64,2151, - 8,64,1,64,1,64,3,64,2155,8,64,3,64,2157,8,64,1,64,1,64,1,64,1,64, - 1,64,3,64,2164,8,64,1,64,1,64,3,64,2168,8,64,3,64,2170,8,64,3,64, - 2172,8,64,1,65,1,65,1,65,1,65,1,65,5,65,2179,8,65,10,65,12,65,2182, - 9,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2192,8,65,1,66, - 1,66,3,66,2196,8,66,1,67,1,67,1,67,1,67,1,67,1,67,5,67,2204,8,67, - 10,67,12,67,2207,9,67,1,67,1,67,1,68,1,68,1,69,1,69,1,69,3,69,2216, - 8,69,1,69,1,69,3,69,2220,8,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69, - 2228,8,69,10,69,12,69,2231,9,69,1,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,70,1,70,1,70,3,70,2243,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3, - 70,2251,8,70,1,70,1,70,1,70,1,70,1,70,5,70,2258,8,70,10,70,12,70, - 2261,9,70,1,70,1,70,1,70,3,70,2266,8,70,1,70,1,70,1,70,1,70,1,70, - 1,70,3,70,2274,8,70,1,70,1,70,1,70,1,70,3,70,2280,8,70,1,70,1,70, - 3,70,2284,8,70,1,70,1,70,1,70,3,70,2289,8,70,1,70,1,70,1,70,3,70, - 2294,8,70,1,71,1,71,1,71,1,71,3,71,2300,8,71,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2314,8,71,10,71,12, - 71,2317,9,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1, - 72,1,72,4,72,2344,8,72,11,72,12,72,2345,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,5,72,2355,8,72,10,72,12,72,2358,9,72,1,72,1,72,1,72,1, - 72,1,72,3,72,2365,8,72,1,72,1,72,1,72,3,72,2370,8,72,1,72,1,72,1, - 72,3,72,2375,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2386,8,72,10,72,12,72,2389,9,72,1,72,1,72,1,72,3,72,2394,8,72, - 1,72,3,72,2397,8,72,1,72,1,72,1,72,1,72,1,72,3,72,2404,8,72,1,72, - 1,72,1,72,3,72,2409,8,72,1,72,3,72,2412,8,72,1,72,3,72,2415,8,72, - 1,72,1,72,1,72,3,72,2420,8,72,1,72,1,72,1,72,5,72,2425,8,72,10,72, - 12,72,2428,9,72,3,72,2430,8,72,1,72,1,72,1,72,1,72,1,72,5,72,2437, - 8,72,10,72,12,72,2440,9,72,3,72,2442,8,72,1,72,1,72,3,72,2446,8, - 72,1,72,3,72,2449,8,72,1,72,3,72,2452,8,72,1,72,1,72,1,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2465,8,72,10,72,12,72,2468, - 9,72,3,72,2470,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,4,72,2487,8,72,11,72,12,72,2488,1, - 72,1,72,3,72,2493,8,72,1,72,1,72,1,72,1,72,4,72,2499,8,72,11,72, - 12,72,2500,1,72,1,72,3,72,2505,8,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,5,72,2528,8,72,10,72,12,72,2531,9,72,3,72,2533,8,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2542,8,72,1,72,1,72,1,72,1, - 72,3,72,2548,8,72,1,72,1,72,1,72,1,72,3,72,2554,8,72,1,72,1,72,1, - 72,1,72,3,72,2560,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2569, - 8,72,1,72,3,72,2572,8,72,1,72,3,72,2575,8,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 3,72,2594,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2603,8,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,5,72,2623,8,72,10,72,12,72,2626,9,72,3, - 72,2628,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2638,8, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2647,8,72,1,72,1,72,1, - 72,1,72,3,72,2653,8,72,1,72,1,72,1,72,1,72,3,72,2659,8,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2670,8,72,3,72,2672,8, - 72,1,72,1,72,1,72,3,72,2677,8,72,1,72,1,72,1,72,1,72,1,72,3,72,2684, - 8,72,3,72,2686,8,72,1,72,1,72,1,72,1,72,3,72,2692,8,72,1,72,1,72, - 1,72,1,72,3,72,2698,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72, - 2707,8,72,10,72,12,72,2710,9,72,1,72,1,72,1,72,1,72,1,72,1,72,3, - 72,2718,8,72,1,72,1,72,1,72,3,72,2723,8,72,1,72,1,72,1,72,3,72,2728, - 8,72,3,72,2730,8,72,3,72,2732,8,72,1,72,1,72,1,72,1,72,3,72,2738, - 8,72,3,72,2740,8,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2748,8,72, - 10,72,12,72,2751,9,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2759,8, - 72,3,72,2761,8,72,1,72,1,72,1,72,1,72,3,72,2767,8,72,3,72,2769,8, - 72,1,72,3,72,2772,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2782,8,72,10,72,12,72,2785,9,72,1,73,1,73,1,73,1,73,1,73,3,73, - 2792,8,73,1,73,1,73,1,73,1,73,5,73,2798,8,73,10,73,12,73,2801,9, - 73,3,73,2803,8,73,1,74,1,74,1,74,3,74,2808,8,74,1,75,1,75,1,75,3, - 75,2813,8,75,1,76,1,76,1,76,1,76,1,77,1,77,1,78,1,78,1,78,1,78,3, - 78,2825,8,78,1,79,1,79,3,79,2829,8,79,1,79,1,79,3,79,2833,8,79,1, - 79,3,79,2836,8,79,3,79,2838,8,79,1,80,1,80,1,80,1,80,1,80,1,80,3, - 80,2846,8,80,1,81,3,81,2849,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1, - 81,1,81,3,81,2859,8,81,1,82,1,82,1,83,1,83,1,83,1,83,3,83,2867,8, - 83,1,84,1,84,1,84,1,84,3,84,2873,8,84,3,84,2875,8,84,1,85,1,85,1, - 85,1,85,1,85,1,85,3,85,2883,8,85,1,86,1,86,1,87,1,87,1,88,1,88,1, - 89,1,89,3,89,2893,8,89,1,89,1,89,1,89,1,89,3,89,2899,8,89,1,90,1, - 90,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,5,92,2911,8,92,10,92, - 12,92,2914,9,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,2922,8,92,1,92, - 1,92,1,92,1,92,1,92,3,92,2929,8,92,1,92,1,92,1,92,3,92,2934,8,92, - 1,92,1,92,1,92,1,92,1,92,3,92,2941,8,92,1,92,1,92,1,92,1,92,1,92, - 1,92,1,92,1,92,3,92,2951,8,92,1,92,1,92,1,92,3,92,2956,8,92,1,92, - 1,92,1,92,1,92,1,92,3,92,2963,8,92,1,92,1,92,1,92,1,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, - 1,92,1,92,1,92,5,92,2987,8,92,10,92,12,92,2990,9,92,1,92,1,92,3, - 92,2994,8,92,3,92,2996,8,92,1,92,1,92,1,92,1,92,1,92,3,92,3003,8, - 92,5,92,3005,8,92,10,92,12,92,3008,9,92,1,93,1,93,1,93,1,93,3,93, - 3014,8,93,1,94,1,94,3,94,3018,8,94,1,95,1,95,1,95,1,95,1,95,1,96, - 1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,3,97,3035,8,97,1,97, - 1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,5,97,3048,8,97, - 10,97,12,97,3051,9,97,1,97,1,97,1,97,1,97,3,97,3057,8,97,1,97,1, - 97,1,97,1,97,1,97,1,97,1,97,3,97,3066,8,97,1,97,1,97,1,97,1,97,1, - 97,1,97,5,97,3074,8,97,10,97,12,97,3077,9,97,1,97,1,97,3,97,3081, - 8,97,1,97,1,97,1,97,1,97,1,97,5,97,3088,8,97,10,97,12,97,3091,9, - 97,1,97,1,97,3,97,3095,8,97,1,98,1,98,1,98,1,98,1,98,1,98,3,98,3103, - 8,98,1,99,1,99,1,99,1,99,5,99,3109,8,99,10,99,12,99,3112,9,99,3, - 99,3114,8,99,1,99,1,99,1,99,1,99,3,99,3120,8,99,1,99,3,99,3123,8, - 99,1,99,1,99,1,99,1,99,1,99,3,99,3130,8,99,1,99,1,99,1,99,1,99,5, - 99,3136,8,99,10,99,12,99,3139,9,99,3,99,3141,8,99,1,99,1,99,1,99, - 1,99,5,99,3147,8,99,10,99,12,99,3150,9,99,3,99,3152,8,99,1,100,1, - 100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,3,100,3178,8,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,3,101,3189,8,101,1,102,1,102,1,102,3,102,3194,8,102, - 1,102,1,102,1,102,1,102,1,102,5,102,3201,8,102,10,102,12,102,3204, - 9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103,3214, - 8,103,10,103,12,103,3217,9,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,3,103,3231,8,103,1,104,1,104, - 3,104,3235,8,104,1,104,1,104,3,104,3239,8,104,1,104,1,104,3,104, - 3243,8,104,1,104,1,104,1,104,1,104,3,104,3249,8,104,1,104,1,104, - 3,104,3253,8,104,1,104,1,104,3,104,3257,8,104,1,104,1,104,3,104, - 3261,8,104,3,104,3263,8,104,1,105,1,105,1,105,1,105,1,106,1,106, - 1,106,1,106,3,106,3273,8,106,1,107,1,107,1,107,1,107,1,107,3,107, - 3280,8,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,3,108,3289, - 8,108,1,109,1,109,1,109,1,109,1,109,3,109,3296,8,109,1,110,1,110, - 1,110,1,110,1,110,3,110,3303,8,110,1,111,1,111,1,111,5,111,3308, - 8,111,10,111,12,111,3311,9,111,1,112,1,112,1,112,1,112,5,112,3317, - 8,112,10,112,12,112,3320,9,112,1,112,1,112,1,113,1,113,1,113,1,113, - 1,113,5,113,3329,8,113,10,113,12,113,3332,9,113,3,113,3334,8,113, - 1,113,1,113,1,114,1,114,1,114,1,114,1,114,5,114,3343,8,114,10,114, - 12,114,3346,9,114,3,114,3348,8,114,1,114,1,114,1,115,3,115,3353, - 8,115,1,115,1,115,1,116,1,116,1,116,1,117,1,117,1,117,3,117,3363, - 8,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117, - 1,117,1,117,1,117,1,117,3,117,3379,8,117,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,4,118,3391,8,118,11,118,12,118, - 3392,1,118,3,118,3396,8,118,1,118,1,118,1,118,1,118,1,118,4,118, - 3403,8,118,11,118,12,118,3404,1,118,3,118,3408,8,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,5,118,3418,8,118,10,118,12,118, - 3421,9,118,1,118,3,118,3424,8,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,5,118,3437,8,118,10,118,12,118, - 3440,9,118,1,118,3,118,3443,8,118,1,118,1,118,1,118,1,118,3,118, - 3449,8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118, - 3459,8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,3,118,3471,8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 3,118,3480,8,118,1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120, - 1,120,1,120,1,121,1,121,1,121,1,122,1,122,1,122,1,122,5,122,3499, - 8,122,10,122,12,122,3502,9,122,1,122,1,122,1,122,3,122,3507,8,122, - 1,123,1,123,1,123,4,123,3512,8,123,11,123,12,123,3513,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,3522,8,124,1,125,1,125,1,125,3,125, - 3527,8,125,1,126,3,126,3530,8,126,1,126,1,126,1,127,1,127,3,127, - 3536,8,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128, - 1,128,1,128,3,128,3549,8,128,1,129,1,129,1,129,1,129,1,129,1,129, - 1,129,1,129,1,129,1,129,1,129,3,129,3562,8,129,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,3575,8,130, - 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 3,131,3588,8,131,1,132,1,132,1,132,1,132,1,132,3,132,3595,8,132, - 1,133,1,133,1,133,1,133,1,133,3,133,3602,8,133,1,134,1,134,1,135, - 1,135,1,136,1,136,1,137,1,137,1,138,1,138,3,138,3614,8,138,1,139, - 1,139,1,140,1,140,1,140,5,140,3621,8,140,10,140,12,140,3624,9,140, - 1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142,1,143,1,143,1,143, - 3,143,3637,8,143,1,144,1,144,1,144,1,144,1,144,3,144,3644,8,144, - 1,145,1,145,1,145,5,145,3649,8,145,10,145,12,145,3652,9,145,1,146, - 1,146,1,146,1,146,1,146,1,146,1,146,3,146,3661,8,146,1,147,1,147, - 1,147,1,147,1,147,3,147,3668,8,147,1,148,3,148,3671,8,148,1,148, - 1,148,3,148,3675,8,148,1,148,1,148,3,148,3679,8,148,1,148,3,148, - 3682,8,148,1,149,1,149,3,149,3686,8,149,1,150,1,150,1,150,0,7,46, - 72,138,142,144,184,204,151,0,2,4,6,8,10,12,14,16,18,20,22,24,26, - 28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70, - 72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110, - 112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142, - 144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174, - 176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206, - 208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238, - 240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270, - 272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,0,35, + 8,1,8,1,8,1,8,1,8,1,8,3,8,1005,8,8,1,8,1,8,1,8,1,8,3,8,1011,8,8, + 3,8,1013,8,8,1,8,1,8,1,8,1,8,3,8,1019,8,8,1,8,1,8,1,8,1,8,3,8,1025, + 8,8,3,8,1027,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1035,8,8,3,8,1037,8, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1047,8,8,3,8,1049,8,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1064,8,8,1,8, + 1,8,1,8,3,8,1069,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1076,8,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,3,8,1086,8,8,1,8,1,8,1,8,1,8,3,8,1092,8,8, + 3,8,1094,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1102,8,8,3,8,1104,8,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,5,8,1127,8,8,10,8,12,8,1130,9,8,3,8,1132,8,8,1, + 8,1,8,3,8,1136,8,8,1,8,1,8,3,8,1140,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1156,8,8,10,8,12,8,1159,9,8, + 3,8,1161,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1170,8,8,10,8,12,8, + 1173,9,8,3,8,1175,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,1191,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1199,8,8, + 10,8,12,8,1202,9,8,1,8,3,8,1205,8,8,1,8,1,8,1,8,1,8,3,8,1211,8,8, + 1,8,3,8,1214,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1221,8,8,11,8,12,8,1222, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1235,8,8,1,9,3,9,1238, + 8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10,1246,8,10,10,10,12,10,1249, + 9,10,1,11,3,11,1252,8,11,1,11,1,11,1,12,1,12,3,12,1258,8,12,1,12, + 1,12,1,12,5,12,1263,8,12,10,12,12,12,1266,9,12,1,13,1,13,3,13,1270, + 8,13,1,14,1,14,1,14,1,14,3,14,1276,8,14,1,14,1,14,3,14,1280,8,14, + 1,14,1,14,3,14,1284,8,14,1,15,1,15,1,15,1,15,3,15,1290,8,15,1,16, + 1,16,1,16,1,16,1,17,1,17,1,17,5,17,1299,8,17,10,17,12,17,1302,9, + 17,1,18,1,18,1,18,1,18,1,19,1,19,3,19,1310,8,19,1,20,1,20,1,20,1, + 20,1,20,1,20,5,20,1318,8,20,10,20,12,20,1321,9,20,3,20,1323,8,20, + 1,20,1,20,1,20,3,20,1328,8,20,3,20,1330,8,20,1,20,1,20,1,20,1,20, + 1,20,3,20,1337,8,20,1,20,1,20,1,20,1,20,3,20,1343,8,20,3,20,1345, + 8,20,1,21,1,21,3,21,1349,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23, + 1,23,3,23,1359,8,23,1,23,1,23,1,23,1,23,3,23,1365,8,23,1,23,5,23, + 1368,8,23,10,23,12,23,1371,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1, + 24,5,24,1380,8,24,10,24,12,24,1383,9,24,1,24,1,24,1,24,1,24,3,24, + 1389,8,24,1,25,1,25,3,25,1393,8,25,1,25,3,25,1396,8,25,1,25,1,25, + 3,25,1400,8,25,1,26,1,26,3,26,1404,8,26,1,26,1,26,1,26,5,26,1409, + 8,26,10,26,12,26,1412,9,26,1,26,1,26,1,26,1,26,5,26,1418,8,26,10, + 26,12,26,1421,9,26,3,26,1423,8,26,1,26,3,26,1426,8,26,1,26,1,26, + 1,26,3,26,1431,8,26,1,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,1,26, + 5,26,1441,8,26,10,26,12,26,1444,9,26,3,26,1446,8,26,1,27,1,27,1, + 27,1,28,3,28,1452,8,28,1,28,1,28,1,28,5,28,1457,8,28,10,28,12,28, + 1460,9,28,1,29,1,29,1,29,1,29,1,29,1,29,5,29,1468,8,29,10,29,12, + 29,1471,9,29,3,29,1473,8,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,1481, + 8,29,10,29,12,29,1484,9,29,3,29,1486,8,29,1,29,1,29,1,29,1,29,1, + 29,1,29,1,29,5,29,1495,8,29,10,29,12,29,1498,9,29,1,29,1,29,3,29, + 1502,8,29,1,30,1,30,1,30,1,30,5,30,1508,8,30,10,30,12,30,1511,9, + 30,3,30,1513,8,30,1,30,1,30,3,30,1517,8,30,1,31,1,31,3,31,1521,8, + 31,1,32,1,32,1,32,1,32,1,32,1,32,1,33,3,33,1530,8,33,1,33,1,33,1, + 33,1,33,1,33,5,33,1537,8,33,10,33,12,33,1540,9,33,3,33,1542,8,33, + 1,33,1,33,1,33,1,33,1,33,5,33,1549,8,33,10,33,12,33,1552,9,33,3, + 33,1554,8,33,1,33,3,33,1557,8,33,1,34,1,34,3,34,1561,8,34,1,34,1, + 34,1,34,1,34,1,34,1,35,1,35,1,36,1,36,3,36,1572,8,36,1,36,3,36,1575, + 8,36,1,36,3,36,1578,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1585,8,36, + 1,36,3,36,1588,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, + 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,1607,8,37,5,37,1609, + 8,37,10,37,12,37,1612,9,37,1,38,3,38,1615,8,38,1,38,1,38,3,38,1619, + 8,38,1,38,1,38,3,38,1623,8,38,1,38,1,38,3,38,1627,8,38,3,38,1629, + 8,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,5,39,1638,8,39,10,39,12, + 39,1641,9,39,1,39,1,39,3,39,1645,8,39,1,40,1,40,1,40,1,40,1,40,1, + 40,1,40,3,40,1654,8,40,1,41,1,41,1,42,1,42,1,43,1,43,1,43,3,43,1663, + 8,43,1,43,3,43,1666,8,43,1,44,1,44,1,44,1,44,3,44,1672,8,44,1,45, + 1,45,1,45,1,45,1,45,1,45,1,45,1,45,5,45,1682,8,45,10,45,12,45,1685, + 9,45,3,45,1687,8,45,1,45,1,45,1,45,1,45,1,45,5,45,1694,8,45,10,45, + 12,45,1697,9,45,3,45,1699,8,45,1,45,1,45,1,45,1,45,5,45,1705,8,45, + 10,45,12,45,1708,9,45,3,45,1710,8,45,1,45,3,45,1713,8,45,1,45,1, + 45,1,45,3,45,1718,8,45,1,45,3,45,1721,8,45,1,45,1,45,1,45,1,45,1, + 45,1,45,1,45,1,45,5,45,1731,8,45,10,45,12,45,1734,9,45,3,45,1736, + 8,45,1,45,1,45,1,45,1,45,5,45,1742,8,45,10,45,12,45,1745,9,45,1, + 45,1,45,3,45,1749,8,45,1,45,1,45,3,45,1753,8,45,3,45,1755,8,45,3, + 45,1757,8,45,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,3,47,1772,8,47,3,47,1774,8,47,1,48,1,48,1,48,1,48,1, + 48,1,48,1,48,1,48,1,48,3,48,1785,8,48,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,3,49,1806,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5,50,1814,8,50,10, + 50,12,50,1817,9,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,3,52, + 1827,8,52,1,52,1,52,3,52,1831,8,52,3,52,1833,8,52,1,53,1,53,1,53, + 1,53,5,53,1839,8,53,10,53,12,53,1842,9,53,1,53,1,53,1,54,1,54,1, + 54,1,54,5,54,1850,8,54,10,54,12,54,1853,9,54,1,54,1,54,1,55,1,55, + 1,55,1,55,5,55,1861,8,55,10,55,12,55,1864,9,55,1,55,1,55,1,56,1, + 56,3,56,1870,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5, + 56,1881,8,56,10,56,12,56,1884,9,56,1,56,1,56,1,56,3,56,1889,8,56, + 1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,1913,8,56,10,56, + 12,56,1916,9,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,3,56,1930,8,56,1,56,1,56,1,56,3,56,1935,8,56,1,56,1,56, + 3,56,1939,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1949, + 8,57,1,57,1,57,1,57,1,57,3,57,1955,8,57,1,57,1,57,1,57,1,57,3,57, + 1961,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1969,8,57,1,57,1,57, + 1,57,3,57,1974,8,57,1,57,1,57,1,57,1,57,1,57,3,57,1981,8,57,3,57, + 1983,8,57,1,57,1,57,1,57,1,57,3,57,1989,8,57,1,57,1,57,1,57,1,57, + 3,57,1995,8,57,1,57,1,57,3,57,1999,8,57,1,57,1,57,1,57,3,57,2004, + 8,57,1,57,1,57,1,57,1,57,1,57,5,57,2011,8,57,10,57,12,57,2014,9, + 57,1,57,1,57,3,57,2018,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,5,58,2030,8,58,10,58,12,58,2033,9,58,1,58,1,58,1,58, + 1,58,1,58,5,58,2040,8,58,10,58,12,58,2043,9,58,3,58,2045,8,58,1, + 59,1,59,1,60,1,60,1,60,1,60,1,60,3,60,2054,8,60,1,61,1,61,1,61,3, + 61,2059,8,61,1,61,1,61,1,61,3,61,2064,8,61,3,61,2066,8,61,1,62,1, + 62,1,62,1,62,1,62,5,62,2073,8,62,10,62,12,62,2076,9,62,3,62,2078, + 8,62,1,62,1,62,1,62,1,62,5,62,2084,8,62,10,62,12,62,2087,9,62,3, + 62,2089,8,62,1,62,1,62,1,63,1,63,1,63,3,63,2096,8,63,1,63,1,63,1, + 63,3,63,2101,8,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,2110,8, + 64,10,64,12,64,2113,9,64,3,64,2115,8,64,1,64,1,64,3,64,2119,8,64, + 3,64,2121,8,64,1,64,1,64,1,64,1,64,1,64,1,64,3,64,2129,8,64,1,64, + 1,64,1,64,1,64,1,64,1,64,5,64,2137,8,64,10,64,12,64,2140,9,64,1, + 64,1,64,1,64,3,64,2145,8,64,3,64,2147,8,64,1,65,1,65,1,65,1,65,1, + 65,3,65,2154,8,65,1,65,1,65,3,65,2158,8,65,3,65,2160,8,65,1,65,1, + 65,1,65,1,65,1,65,3,65,2167,8,65,1,65,1,65,3,65,2171,8,65,3,65,2173, + 8,65,3,65,2175,8,65,1,66,1,66,1,66,1,66,1,66,5,66,2182,8,66,10,66, + 12,66,2185,9,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,2195, + 8,66,1,67,1,67,3,67,2199,8,67,1,68,1,68,1,68,1,68,1,68,1,68,5,68, + 2207,8,68,10,68,12,68,2210,9,68,1,68,1,68,1,69,1,69,1,70,1,70,1, + 70,3,70,2219,8,70,1,70,1,70,3,70,2223,8,70,1,70,1,70,1,70,1,70,1, + 70,1,70,5,70,2231,8,70,10,70,12,70,2234,9,70,1,71,1,71,1,71,1,71, + 1,71,1,71,1,71,1,71,1,71,1,71,3,71,2246,8,71,1,71,1,71,1,71,1,71, + 1,71,1,71,3,71,2254,8,71,1,71,1,71,1,71,1,71,1,71,5,71,2261,8,71, + 10,71,12,71,2264,9,71,1,71,1,71,1,71,3,71,2269,8,71,1,71,1,71,1, + 71,1,71,1,71,1,71,3,71,2277,8,71,1,71,1,71,1,71,1,71,3,71,2283,8, + 71,1,71,1,71,3,71,2287,8,71,1,71,1,71,1,71,3,71,2292,8,71,1,71,1, + 71,1,71,3,71,2297,8,71,1,72,1,72,1,72,1,72,3,72,2303,8,72,1,72,1, + 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2317,8, + 72,10,72,12,72,2320,9,72,1,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,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,1,73,4,73,2347,8,73,11,73,12,73,2348,1,73,1,73,1, + 73,1,73,1,73,1,73,1,73,5,73,2358,8,73,10,73,12,73,2361,9,73,1,73, + 1,73,1,73,1,73,1,73,3,73,2368,8,73,1,73,1,73,1,73,3,73,2373,8,73, + 1,73,1,73,1,73,3,73,2378,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,5,73,2389,8,73,10,73,12,73,2392,9,73,1,73,1,73,1,73,3, + 73,2397,8,73,1,73,3,73,2400,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2407, + 8,73,1,73,1,73,1,73,3,73,2412,8,73,1,73,3,73,2415,8,73,1,73,3,73, + 2418,8,73,1,73,1,73,1,73,3,73,2423,8,73,1,73,1,73,1,73,5,73,2428, + 8,73,10,73,12,73,2431,9,73,3,73,2433,8,73,1,73,1,73,1,73,1,73,1, + 73,5,73,2440,8,73,10,73,12,73,2443,9,73,3,73,2445,8,73,1,73,1,73, + 3,73,2449,8,73,1,73,3,73,2452,8,73,1,73,3,73,2455,8,73,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2468,8,73,10,73, + 12,73,2471,9,73,3,73,2473,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,1,73,1,73,1,73,4,73,2490,8,73,11,73,12, + 73,2491,1,73,1,73,3,73,2496,8,73,1,73,1,73,1,73,1,73,4,73,2502,8, + 73,11,73,12,73,2503,1,73,1,73,3,73,2508,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,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,1,73,5,73,2531,8,73,10,73,12,73,2534,9,73,3,73,2536, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2545,8,73,1,73,1,73, + 1,73,1,73,3,73,2551,8,73,1,73,1,73,1,73,1,73,3,73,2557,8,73,1,73, + 1,73,1,73,1,73,3,73,2563,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 3,73,2572,8,73,1,73,3,73,2575,8,73,1,73,3,73,2578,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,1,73,1,73,1,73, + 1,73,1,73,3,73,2597,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, + 2606,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,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2626,8,73,10,73,12,73,2629, + 9,73,3,73,2631,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, + 2641,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2650,8,73,1,73, + 1,73,1,73,1,73,3,73,2656,8,73,1,73,1,73,1,73,1,73,3,73,2662,8,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2673,8,73,3,73, + 2675,8,73,1,73,1,73,1,73,3,73,2680,8,73,1,73,1,73,1,73,1,73,1,73, + 3,73,2687,8,73,3,73,2689,8,73,1,73,1,73,1,73,1,73,3,73,2695,8,73, + 1,73,1,73,1,73,1,73,3,73,2701,8,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,5,73,2710,8,73,10,73,12,73,2713,9,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2721,8,73,1,73,1,73,1,73,3,73,2726,8,73,1,73,1,73,1, + 73,3,73,2731,8,73,3,73,2733,8,73,3,73,2735,8,73,1,73,1,73,1,73,1, + 73,3,73,2741,8,73,3,73,2743,8,73,1,73,1,73,1,73,1,73,1,73,1,73,5, + 73,2751,8,73,10,73,12,73,2754,9,73,1,73,1,73,1,73,1,73,1,73,1,73, + 3,73,2762,8,73,3,73,2764,8,73,1,73,1,73,1,73,1,73,3,73,2770,8,73, + 3,73,2772,8,73,1,73,3,73,2775,8,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,5,73,2785,8,73,10,73,12,73,2788,9,73,1,74,1,74,1,74,1, + 74,1,74,3,74,2795,8,74,1,74,1,74,1,74,1,74,5,74,2801,8,74,10,74, + 12,74,2804,9,74,3,74,2806,8,74,1,75,1,75,1,75,3,75,2811,8,75,1,76, + 1,76,1,76,3,76,2816,8,76,1,77,1,77,1,77,1,77,1,78,1,78,1,79,1,79, + 1,79,1,79,3,79,2828,8,79,1,80,1,80,3,80,2832,8,80,1,80,1,80,3,80, + 2836,8,80,1,80,3,80,2839,8,80,3,80,2841,8,80,1,81,1,81,1,81,1,81, + 1,81,1,81,3,81,2849,8,81,1,82,3,82,2852,8,82,1,82,1,82,1,82,1,82, + 1,82,1,82,1,82,1,82,3,82,2862,8,82,1,83,1,83,1,84,1,84,1,84,1,84, + 3,84,2870,8,84,1,85,1,85,1,85,1,85,3,85,2876,8,85,3,85,2878,8,85, + 1,86,1,86,1,86,1,86,1,86,1,86,3,86,2886,8,86,1,87,1,87,1,88,1,88, + 1,89,1,89,1,90,1,90,3,90,2896,8,90,1,90,1,90,1,90,1,90,3,90,2902, + 8,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,5,93,2914, + 8,93,10,93,12,93,2917,9,93,1,93,1,93,1,93,1,93,1,93,1,93,3,93,2925, + 8,93,1,93,1,93,1,93,1,93,1,93,3,93,2932,8,93,1,93,1,93,1,93,3,93, + 2937,8,93,1,93,1,93,1,93,1,93,1,93,3,93,2944,8,93,1,93,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,3,93,2954,8,93,1,93,1,93,1,93,3,93,2959, + 8,93,1,93,1,93,1,93,1,93,1,93,3,93,2966,8,93,1,93,1,93,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,5,93,2990,8,93,10,93,12,93,2993,9,93,1, + 93,1,93,3,93,2997,8,93,3,93,2999,8,93,1,93,1,93,1,93,1,93,1,93,3, + 93,3006,8,93,5,93,3008,8,93,10,93,12,93,3011,9,93,1,94,1,94,1,94, + 1,94,3,94,3017,8,94,1,95,1,95,3,95,3021,8,95,1,96,1,96,1,96,1,96, + 1,96,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,3,98,3037,8,98, + 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,5,98,3050, + 8,98,10,98,12,98,3053,9,98,1,98,1,98,1,98,1,98,3,98,3059,8,98,1, + 98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,3068,8,98,1,98,1,98,1,98,1, + 98,1,98,1,98,5,98,3076,8,98,10,98,12,98,3079,9,98,1,98,1,98,3,98, + 3083,8,98,1,98,1,98,1,98,1,98,1,98,5,98,3090,8,98,10,98,12,98,3093, + 9,98,1,98,1,98,3,98,3097,8,98,1,99,1,99,1,99,1,99,1,99,1,99,3,99, + 3105,8,99,1,100,1,100,1,100,1,100,5,100,3111,8,100,10,100,12,100, + 3114,9,100,3,100,3116,8,100,1,100,1,100,1,100,1,100,3,100,3122,8, + 100,1,100,3,100,3125,8,100,1,100,1,100,1,100,1,100,1,100,3,100,3132, + 8,100,1,100,1,100,1,100,1,100,5,100,3138,8,100,10,100,12,100,3141, + 9,100,3,100,3143,8,100,1,100,1,100,1,100,1,100,5,100,3149,8,100, + 10,100,12,100,3152,9,100,3,100,3154,8,100,1,101,1,101,1,101,1,101, + 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3180, + 8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,3,102, + 3191,8,102,1,103,1,103,1,103,3,103,3196,8,103,1,103,1,103,1,103, + 1,103,1,103,5,103,3203,8,103,10,103,12,103,3206,9,103,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,5,104,3216,8,104,10,104,12,104, + 3219,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,3,104,3233,8,104,1,105,1,105,3,105,3237,8,105, + 1,105,1,105,3,105,3241,8,105,1,105,1,105,3,105,3245,8,105,1,105, + 1,105,1,105,1,105,3,105,3251,8,105,1,105,1,105,3,105,3255,8,105, + 1,105,1,105,3,105,3259,8,105,1,105,1,105,3,105,3263,8,105,3,105, + 3265,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,3,107, + 3275,8,107,1,108,1,108,1,108,1,108,1,108,3,108,3282,8,108,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,3,109,3291,8,109,1,110,1,110, + 1,110,1,110,1,110,3,110,3298,8,110,1,111,1,111,1,111,1,111,1,111, + 3,111,3305,8,111,1,112,1,112,1,112,5,112,3310,8,112,10,112,12,112, + 3313,9,112,1,113,1,113,1,113,1,113,5,113,3319,8,113,10,113,12,113, + 3322,9,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,5,114,3331, + 8,114,10,114,12,114,3334,9,114,3,114,3336,8,114,1,114,1,114,1,115, + 1,115,1,115,1,115,1,115,5,115,3345,8,115,10,115,12,115,3348,9,115, + 3,115,3350,8,115,1,115,1,115,1,116,3,116,3355,8,116,1,116,1,116, + 1,117,1,117,1,117,1,118,1,118,1,118,3,118,3365,8,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,3,118,3381,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,4,119,3393,8,119,11,119,12,119,3394,1,119,3,119, + 3398,8,119,1,119,1,119,1,119,1,119,1,119,4,119,3405,8,119,11,119, + 12,119,3406,1,119,3,119,3410,8,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,5,119,3420,8,119,10,119,12,119,3423,9,119,1,119, + 3,119,3426,8,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,5,119,3439,8,119,10,119,12,119,3442,9,119,1,119, + 3,119,3445,8,119,1,119,1,119,1,119,1,119,3,119,3451,8,119,1,119, + 1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3461,8,119,1,119, + 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3473, + 8,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3482,8,119, + 1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122, + 1,122,1,122,1,123,1,123,1,123,1,123,5,123,3501,8,123,10,123,12,123, + 3504,9,123,1,123,1,123,1,123,3,123,3509,8,123,1,124,1,124,1,124, + 4,124,3514,8,124,11,124,12,124,3515,1,125,1,125,1,125,1,125,1,125, + 1,125,3,125,3524,8,125,1,126,1,126,1,126,3,126,3529,8,126,1,127, + 3,127,3532,8,127,1,127,1,127,1,128,1,128,3,128,3538,8,128,1,129, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129, + 3551,8,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, + 1,130,1,130,3,130,3564,8,130,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,3,131,3577,8,131,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,3590,8,132, + 1,133,1,133,1,133,1,133,1,133,3,133,3597,8,133,1,134,1,134,1,134, + 1,134,1,134,3,134,3604,8,134,1,135,1,135,1,136,1,136,1,137,1,137, + 1,138,1,138,1,139,1,139,3,139,3616,8,139,1,140,1,140,1,141,1,141, + 1,142,1,142,1,142,5,142,3625,8,142,10,142,12,142,3628,9,142,1,143, + 1,143,1,143,1,143,1,143,1,143,1,144,1,144,1,145,1,145,1,145,3,145, + 3641,8,145,1,146,1,146,1,146,1,146,1,146,3,146,3648,8,146,1,147, + 1,147,1,147,5,147,3653,8,147,10,147,12,147,3656,9,147,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,3,148,3665,8,148,1,149,1,149,1,149, + 1,149,1,149,3,149,3672,8,149,1,150,3,150,3675,8,150,1,150,1,150, + 3,150,3679,8,150,1,150,1,150,3,150,3683,8,150,1,150,3,150,3686,8, + 150,1,151,1,151,3,151,3690,8,151,1,152,1,152,1,152,0,7,46,74,140, + 144,146,186,206,153,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32, + 34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76, + 78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114, + 116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146, + 148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178, + 180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210, + 212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242, + 244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274, + 276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,0,35, 2,0,39,39,229,229,2,0,72,72,131,131,2,0,105,105,122,122,2,0,92,92, 123,123,1,0,239,240,2,0,101,101,174,174,2,0,324,324,329,329,2,0, 91,91,281,281,2,0,29,29,75,75,2,0,101,101,148,148,2,0,22,22,79,79, @@ -16939,1240 +16982,1241 @@ export class TrinoSqlParser extends SQLParserBase { 131,132,134,135,137,137,144,151,153,153,155,155,157,157,160,171, 173,180,184,189,191,193,196,196,198,213,215,220,222,233,235,237, 239,247,249,259,261,264,266,271,274,276,278,280,282,284,286,289, - 291,295,297,299,302,303,305,311,4245,0,305,1,0,0,0,2,310,1,0,0,0, - 4,312,1,0,0,0,6,316,1,0,0,0,8,320,1,0,0,0,10,324,1,0,0,0,12,328, - 1,0,0,0,14,332,1,0,0,0,16,1233,1,0,0,0,18,1236,1,0,0,0,20,1240,1, - 0,0,0,22,1250,1,0,0,0,24,1254,1,0,0,0,26,1268,1,0,0,0,28,1270,1, - 0,0,0,30,1284,1,0,0,0,32,1290,1,0,0,0,34,1294,1,0,0,0,36,1302,1, - 0,0,0,38,1308,1,0,0,0,40,1310,1,0,0,0,42,1347,1,0,0,0,44,1349,1, - 0,0,0,46,1351,1,0,0,0,48,1387,1,0,0,0,50,1391,1,0,0,0,52,1400,1, - 0,0,0,54,1448,1,0,0,0,56,1498,1,0,0,0,58,1513,1,0,0,0,60,1517,1, - 0,0,0,62,1519,1,0,0,0,64,1526,1,0,0,0,66,1555,1,0,0,0,68,1564,1, - 0,0,0,70,1584,1,0,0,0,72,1586,1,0,0,0,74,1625,1,0,0,0,76,1641,1, - 0,0,0,78,1643,1,0,0,0,80,1652,1,0,0,0,82,1654,1,0,0,0,84,1662,1, - 0,0,0,86,1668,1,0,0,0,88,1670,1,0,0,0,90,1755,1,0,0,0,92,1770,1, - 0,0,0,94,1781,1,0,0,0,96,1802,1,0,0,0,98,1804,1,0,0,0,100,1817,1, - 0,0,0,102,1821,1,0,0,0,104,1831,1,0,0,0,106,1842,1,0,0,0,108,1853, - 1,0,0,0,110,1935,1,0,0,0,112,2014,1,0,0,0,114,2041,1,0,0,0,116,2043, - 1,0,0,0,118,2050,1,0,0,0,120,2062,1,0,0,0,122,2064,1,0,0,0,124,2092, - 1,0,0,0,126,2099,1,0,0,0,128,2171,1,0,0,0,130,2191,1,0,0,0,132,2193, - 1,0,0,0,134,2197,1,0,0,0,136,2210,1,0,0,0,138,2219,1,0,0,0,140,2293, - 1,0,0,0,142,2299,1,0,0,0,144,2771,1,0,0,0,146,2786,1,0,0,0,148,2804, - 1,0,0,0,150,2809,1,0,0,0,152,2814,1,0,0,0,154,2818,1,0,0,0,156,2824, - 1,0,0,0,158,2837,1,0,0,0,160,2845,1,0,0,0,162,2858,1,0,0,0,164,2860, - 1,0,0,0,166,2866,1,0,0,0,168,2874,1,0,0,0,170,2882,1,0,0,0,172,2884, - 1,0,0,0,174,2886,1,0,0,0,176,2888,1,0,0,0,178,2890,1,0,0,0,180,2900, - 1,0,0,0,182,2902,1,0,0,0,184,2995,1,0,0,0,186,3013,1,0,0,0,188,3017, - 1,0,0,0,190,3019,1,0,0,0,192,3024,1,0,0,0,194,3094,1,0,0,0,196,3096, - 1,0,0,0,198,3113,1,0,0,0,200,3177,1,0,0,0,202,3188,1,0,0,0,204,3190, - 1,0,0,0,206,3230,1,0,0,0,208,3262,1,0,0,0,210,3264,1,0,0,0,212,3272, - 1,0,0,0,214,3279,1,0,0,0,216,3288,1,0,0,0,218,3295,1,0,0,0,220,3302, - 1,0,0,0,222,3304,1,0,0,0,224,3312,1,0,0,0,226,3323,1,0,0,0,228,3337, - 1,0,0,0,230,3352,1,0,0,0,232,3356,1,0,0,0,234,3378,1,0,0,0,236,3479, - 1,0,0,0,238,3481,1,0,0,0,240,3486,1,0,0,0,242,3491,1,0,0,0,244,3494, - 1,0,0,0,246,3511,1,0,0,0,248,3521,1,0,0,0,250,3526,1,0,0,0,252,3529, - 1,0,0,0,254,3535,1,0,0,0,256,3548,1,0,0,0,258,3561,1,0,0,0,260,3574, - 1,0,0,0,262,3587,1,0,0,0,264,3594,1,0,0,0,266,3601,1,0,0,0,268,3603, - 1,0,0,0,270,3605,1,0,0,0,272,3607,1,0,0,0,274,3609,1,0,0,0,276,3613, - 1,0,0,0,278,3615,1,0,0,0,280,3617,1,0,0,0,282,3625,1,0,0,0,284,3631, - 1,0,0,0,286,3636,1,0,0,0,288,3643,1,0,0,0,290,3645,1,0,0,0,292,3660, - 1,0,0,0,294,3667,1,0,0,0,296,3681,1,0,0,0,298,3685,1,0,0,0,300,3687, - 1,0,0,0,302,304,3,2,1,0,303,302,1,0,0,0,304,307,1,0,0,0,305,303, - 1,0,0,0,305,306,1,0,0,0,306,308,1,0,0,0,307,305,1,0,0,0,308,309, - 5,0,0,1,309,1,1,0,0,0,310,311,3,4,2,0,311,3,1,0,0,0,312,314,3,16, - 8,0,313,315,5,325,0,0,314,313,1,0,0,0,314,315,1,0,0,0,315,5,1,0, - 0,0,316,318,3,136,68,0,317,319,5,325,0,0,318,317,1,0,0,0,318,319, - 1,0,0,0,319,7,1,0,0,0,320,322,3,222,111,0,321,323,5,325,0,0,322, - 321,1,0,0,0,322,323,1,0,0,0,323,9,1,0,0,0,324,326,3,184,92,0,325, - 327,5,325,0,0,326,325,1,0,0,0,326,327,1,0,0,0,327,11,1,0,0,0,328, - 330,3,204,102,0,329,331,5,325,0,0,330,329,1,0,0,0,330,331,1,0,0, - 0,331,13,1,0,0,0,332,333,3,224,112,0,333,334,5,0,0,1,334,15,1,0, - 0,0,335,1234,3,18,9,0,336,337,5,288,0,0,337,1234,3,264,132,0,338, - 339,5,53,0,0,339,343,5,42,0,0,340,341,5,119,0,0,341,342,5,182,0, - 0,342,344,5,94,0,0,343,340,1,0,0,0,343,344,1,0,0,0,344,345,1,0,0, - 0,345,346,3,270,135,0,346,347,5,290,0,0,347,350,3,294,147,0,348, - 349,5,46,0,0,349,351,3,168,84,0,350,348,1,0,0,0,350,351,1,0,0,0, - 351,354,1,0,0,0,352,353,5,31,0,0,353,355,3,288,144,0,354,352,1,0, - 0,0,354,355,1,0,0,0,355,358,1,0,0,0,356,357,5,304,0,0,357,359,3, - 32,16,0,358,356,1,0,0,0,358,359,1,0,0,0,359,1234,1,0,0,0,360,361, - 5,83,0,0,361,364,5,42,0,0,362,363,5,119,0,0,363,365,5,94,0,0,364, - 362,1,0,0,0,364,365,1,0,0,0,365,366,1,0,0,0,366,368,3,268,134,0, - 367,369,7,0,0,0,368,367,1,0,0,0,368,369,1,0,0,0,369,1234,1,0,0,0, - 370,371,5,53,0,0,371,375,5,243,0,0,372,373,5,119,0,0,373,374,5,182, - 0,0,374,376,5,94,0,0,375,372,1,0,0,0,375,376,1,0,0,0,376,377,1,0, - 0,0,377,380,3,266,133,0,378,379,5,31,0,0,379,381,3,288,144,0,380, - 378,1,0,0,0,380,381,1,0,0,0,381,384,1,0,0,0,382,383,5,304,0,0,383, - 385,3,32,16,0,384,382,1,0,0,0,384,385,1,0,0,0,385,1234,1,0,0,0,386, - 387,5,83,0,0,387,390,5,243,0,0,388,389,5,119,0,0,389,391,5,94,0, - 0,390,388,1,0,0,0,390,391,1,0,0,0,391,392,1,0,0,0,392,394,3,264, - 132,0,393,395,7,0,0,0,394,393,1,0,0,0,394,395,1,0,0,0,395,1234,1, - 0,0,0,396,397,5,23,0,0,397,398,5,243,0,0,398,399,3,264,132,0,399, - 400,5,223,0,0,400,401,5,269,0,0,401,402,3,266,133,0,402,1234,1,0, - 0,0,403,404,5,23,0,0,404,405,5,243,0,0,405,406,3,264,132,0,406,407, - 5,251,0,0,407,408,5,31,0,0,408,409,3,288,144,0,409,1234,1,0,0,0, - 410,413,5,53,0,0,411,412,5,194,0,0,412,414,5,226,0,0,413,411,1,0, - 0,0,413,414,1,0,0,0,414,415,1,0,0,0,415,419,5,260,0,0,416,417,5, - 119,0,0,417,418,5,182,0,0,418,420,5,94,0,0,419,416,1,0,0,0,419,420, - 1,0,0,0,420,421,1,0,0,0,421,423,3,258,129,0,422,424,3,104,52,0,423, - 422,1,0,0,0,423,424,1,0,0,0,424,427,1,0,0,0,425,426,5,46,0,0,426, - 428,3,168,84,0,427,425,1,0,0,0,427,428,1,0,0,0,428,431,1,0,0,0,429, - 430,5,304,0,0,430,432,3,32,16,0,431,429,1,0,0,0,431,432,1,0,0,0, - 432,433,1,0,0,0,433,439,5,28,0,0,434,440,3,18,9,0,435,436,5,1,0, - 0,436,437,3,18,9,0,437,438,5,2,0,0,438,440,1,0,0,0,439,434,1,0,0, - 0,439,435,1,0,0,0,440,446,1,0,0,0,441,443,5,304,0,0,442,444,5,179, - 0,0,443,442,1,0,0,0,443,444,1,0,0,0,444,445,1,0,0,0,445,447,5,65, - 0,0,446,441,1,0,0,0,446,447,1,0,0,0,447,1234,1,0,0,0,448,451,5,53, - 0,0,449,450,5,194,0,0,450,452,5,226,0,0,451,449,1,0,0,0,451,452, - 1,0,0,0,452,453,1,0,0,0,453,457,5,260,0,0,454,455,5,119,0,0,455, - 456,5,182,0,0,456,458,5,94,0,0,457,454,1,0,0,0,457,458,1,0,0,0,458, - 459,1,0,0,0,459,460,3,258,129,0,460,461,5,1,0,0,461,466,3,26,13, - 0,462,463,5,3,0,0,463,465,3,26,13,0,464,462,1,0,0,0,465,468,1,0, - 0,0,466,464,1,0,0,0,466,467,1,0,0,0,467,469,1,0,0,0,468,466,1,0, - 0,0,469,472,5,2,0,0,470,471,5,46,0,0,471,473,3,168,84,0,472,470, - 1,0,0,0,472,473,1,0,0,0,473,476,1,0,0,0,474,475,5,304,0,0,475,477, - 3,32,16,0,476,474,1,0,0,0,476,477,1,0,0,0,477,1234,1,0,0,0,478,479, - 5,83,0,0,479,482,5,260,0,0,480,481,5,119,0,0,481,483,5,94,0,0,482, - 480,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484,1234,3,256,128,0, - 485,486,5,127,0,0,486,487,5,130,0,0,487,489,3,256,128,0,488,490, - 3,106,53,0,489,488,1,0,0,0,489,490,1,0,0,0,490,491,1,0,0,0,491,492, - 3,18,9,0,492,1234,1,0,0,0,493,494,5,73,0,0,494,495,5,105,0,0,495, - 498,3,256,128,0,496,497,5,301,0,0,497,499,3,138,69,0,498,496,1,0, - 0,0,498,499,1,0,0,0,499,1234,1,0,0,0,500,501,5,274,0,0,501,502,5, - 260,0,0,502,1234,3,256,128,0,503,504,5,46,0,0,504,505,5,190,0,0, - 505,506,5,260,0,0,506,507,3,256,128,0,507,510,5,133,0,0,508,511, - 3,168,84,0,509,511,5,183,0,0,510,508,1,0,0,0,510,509,1,0,0,0,511, - 1234,1,0,0,0,512,513,5,46,0,0,513,514,5,190,0,0,514,515,5,299,0, - 0,515,516,3,260,130,0,516,519,5,133,0,0,517,520,3,168,84,0,518,520, - 5,183,0,0,519,517,1,0,0,0,519,518,1,0,0,0,520,1234,1,0,0,0,521,522, - 5,46,0,0,522,523,5,190,0,0,523,524,5,44,0,0,524,525,3,276,138,0, - 525,528,5,133,0,0,526,529,3,168,84,0,527,529,5,183,0,0,528,526,1, - 0,0,0,528,527,1,0,0,0,529,1234,1,0,0,0,530,531,5,23,0,0,531,534, - 5,260,0,0,532,533,5,119,0,0,533,535,5,94,0,0,534,532,1,0,0,0,534, - 535,1,0,0,0,535,536,1,0,0,0,536,537,3,256,128,0,537,538,5,223,0, - 0,538,539,5,269,0,0,539,540,3,258,129,0,540,1234,1,0,0,0,541,542, - 5,23,0,0,542,545,5,260,0,0,543,544,5,119,0,0,544,546,5,94,0,0,545, - 543,1,0,0,0,545,546,1,0,0,0,546,547,1,0,0,0,547,548,3,256,128,0, - 548,549,5,19,0,0,549,553,5,44,0,0,550,551,5,119,0,0,551,552,5,182, - 0,0,552,554,5,94,0,0,553,550,1,0,0,0,553,554,1,0,0,0,554,555,1,0, - 0,0,555,556,3,28,14,0,556,1234,1,0,0,0,557,558,5,23,0,0,558,561, - 5,260,0,0,559,560,5,119,0,0,560,562,5,94,0,0,561,559,1,0,0,0,561, - 562,1,0,0,0,562,563,1,0,0,0,563,564,3,256,128,0,564,565,5,223,0, - 0,565,568,5,44,0,0,566,567,5,119,0,0,567,569,5,94,0,0,568,566,1, - 0,0,0,568,569,1,0,0,0,569,570,1,0,0,0,570,571,3,276,138,0,571,572, - 5,269,0,0,572,573,3,278,139,0,573,1234,1,0,0,0,574,575,5,23,0,0, - 575,578,5,260,0,0,576,577,5,119,0,0,577,579,5,94,0,0,578,576,1,0, - 0,0,578,579,1,0,0,0,579,580,1,0,0,0,580,581,3,256,128,0,581,582, - 5,83,0,0,582,585,5,44,0,0,583,584,5,119,0,0,584,586,5,94,0,0,585, - 583,1,0,0,0,585,586,1,0,0,0,586,587,1,0,0,0,587,588,3,276,138,0, - 588,1234,1,0,0,0,589,590,5,23,0,0,590,593,5,260,0,0,591,592,5,119, - 0,0,592,594,5,94,0,0,593,591,1,0,0,0,593,594,1,0,0,0,594,595,1,0, - 0,0,595,596,3,256,128,0,596,597,5,23,0,0,597,598,5,44,0,0,598,599, - 3,276,138,0,599,600,5,251,0,0,600,601,5,65,0,0,601,602,5,276,0,0, - 602,603,3,184,92,0,603,1234,1,0,0,0,604,605,5,23,0,0,605,608,5,260, - 0,0,606,607,5,119,0,0,607,609,5,94,0,0,608,606,1,0,0,0,608,609,1, - 0,0,0,609,610,1,0,0,0,610,611,3,256,128,0,611,612,5,23,0,0,612,613, - 5,44,0,0,613,614,3,276,138,0,614,615,5,83,0,0,615,616,5,182,0,0, - 616,617,5,183,0,0,617,1234,1,0,0,0,618,619,5,23,0,0,619,620,5,260, - 0,0,620,621,3,256,128,0,621,622,5,251,0,0,622,623,5,31,0,0,623,624, - 3,288,144,0,624,1234,1,0,0,0,625,626,5,23,0,0,626,627,5,260,0,0, - 627,628,3,256,128,0,628,629,5,251,0,0,629,630,5,216,0,0,630,631, - 3,34,17,0,631,1234,1,0,0,0,632,633,5,23,0,0,633,634,5,260,0,0,634, - 635,3,256,128,0,635,636,5,93,0,0,636,649,3,272,136,0,637,646,5,1, - 0,0,638,643,3,218,109,0,639,640,5,3,0,0,640,642,3,218,109,0,641, - 639,1,0,0,0,642,645,1,0,0,0,643,641,1,0,0,0,643,644,1,0,0,0,644, - 647,1,0,0,0,645,643,1,0,0,0,646,638,1,0,0,0,646,647,1,0,0,0,647, - 648,1,0,0,0,648,650,5,2,0,0,649,637,1,0,0,0,649,650,1,0,0,0,650, - 653,1,0,0,0,651,652,5,301,0,0,652,654,3,138,69,0,653,651,1,0,0,0, - 653,654,1,0,0,0,654,1234,1,0,0,0,655,656,5,24,0,0,656,659,3,256, - 128,0,657,658,5,304,0,0,658,660,3,32,16,0,659,657,1,0,0,0,659,660, - 1,0,0,0,660,1234,1,0,0,0,661,664,5,53,0,0,662,663,5,194,0,0,663, - 665,5,226,0,0,664,662,1,0,0,0,664,665,1,0,0,0,665,666,1,0,0,0,666, - 667,5,167,0,0,667,671,5,299,0,0,668,669,5,119,0,0,669,670,5,182, - 0,0,670,672,5,94,0,0,671,668,1,0,0,0,671,672,1,0,0,0,672,673,1,0, - 0,0,673,677,3,262,131,0,674,675,5,109,0,0,675,676,5,208,0,0,676, - 678,3,178,89,0,677,674,1,0,0,0,677,678,1,0,0,0,678,681,1,0,0,0,679, - 680,5,46,0,0,680,682,3,168,84,0,681,679,1,0,0,0,681,682,1,0,0,0, - 682,685,1,0,0,0,683,684,5,304,0,0,684,686,3,32,16,0,685,683,1,0, - 0,0,685,686,1,0,0,0,686,687,1,0,0,0,687,688,5,28,0,0,688,689,3,18, - 9,0,689,1234,1,0,0,0,690,693,5,53,0,0,691,692,5,194,0,0,692,694, - 5,226,0,0,693,691,1,0,0,0,693,694,1,0,0,0,694,695,1,0,0,0,695,696, - 5,299,0,0,696,699,3,262,131,0,697,698,5,46,0,0,698,700,3,168,84, - 0,699,697,1,0,0,0,699,700,1,0,0,0,700,703,1,0,0,0,701,702,5,246, - 0,0,702,704,7,1,0,0,703,701,1,0,0,0,703,704,1,0,0,0,704,707,1,0, - 0,0,705,706,5,304,0,0,706,708,3,32,16,0,707,705,1,0,0,0,707,708, - 1,0,0,0,708,709,1,0,0,0,709,710,5,28,0,0,710,711,3,18,9,0,711,1234, - 1,0,0,0,712,713,5,222,0,0,713,714,5,167,0,0,714,715,5,299,0,0,715, - 1234,3,260,130,0,716,717,5,83,0,0,717,718,5,167,0,0,718,721,5,299, - 0,0,719,720,5,119,0,0,720,722,5,94,0,0,721,719,1,0,0,0,721,722,1, - 0,0,0,722,723,1,0,0,0,723,1234,3,260,130,0,724,725,5,23,0,0,725, - 726,5,167,0,0,726,729,5,299,0,0,727,728,5,119,0,0,728,730,5,94,0, - 0,729,727,1,0,0,0,729,730,1,0,0,0,730,731,1,0,0,0,731,732,3,260, - 130,0,732,733,5,223,0,0,733,734,5,269,0,0,734,735,3,262,131,0,735, - 1234,1,0,0,0,736,737,5,23,0,0,737,738,5,167,0,0,738,739,5,299,0, - 0,739,740,3,260,130,0,740,741,5,251,0,0,741,742,5,216,0,0,742,743, - 3,34,17,0,743,1234,1,0,0,0,744,745,5,83,0,0,745,748,5,299,0,0,746, - 747,5,119,0,0,747,749,5,94,0,0,748,746,1,0,0,0,748,749,1,0,0,0,749, - 750,1,0,0,0,750,1234,3,260,130,0,751,752,5,23,0,0,752,753,5,299, - 0,0,753,754,3,260,130,0,754,755,5,223,0,0,755,756,5,269,0,0,756, - 757,3,262,131,0,757,1234,1,0,0,0,758,759,5,23,0,0,759,760,5,299, - 0,0,760,761,3,260,130,0,761,762,5,251,0,0,762,763,5,31,0,0,763,764, - 3,288,144,0,764,1234,1,0,0,0,765,766,5,37,0,0,766,767,3,272,136, - 0,767,776,5,1,0,0,768,773,3,218,109,0,769,770,5,3,0,0,770,772,3, - 218,109,0,771,769,1,0,0,0,772,775,1,0,0,0,773,771,1,0,0,0,773,774, - 1,0,0,0,774,777,1,0,0,0,775,773,1,0,0,0,776,768,1,0,0,0,776,777, - 1,0,0,0,777,778,1,0,0,0,778,779,5,2,0,0,779,1234,1,0,0,0,780,783, - 5,53,0,0,781,782,5,194,0,0,782,784,5,226,0,0,783,781,1,0,0,0,783, - 784,1,0,0,0,784,785,1,0,0,0,785,1234,3,224,112,0,786,787,5,83,0, - 0,787,790,5,107,0,0,788,789,5,119,0,0,789,791,5,94,0,0,790,788,1, - 0,0,0,790,791,1,0,0,0,791,792,1,0,0,0,792,1234,3,228,114,0,793,794, - 5,53,0,0,794,795,5,235,0,0,795,799,3,294,147,0,796,797,5,304,0,0, - 797,798,5,20,0,0,798,800,3,286,143,0,799,796,1,0,0,0,799,800,1,0, - 0,0,800,803,1,0,0,0,801,802,5,122,0,0,802,804,3,268,134,0,803,801, - 1,0,0,0,803,804,1,0,0,0,804,1234,1,0,0,0,805,806,5,83,0,0,806,807, - 5,235,0,0,807,810,3,294,147,0,808,809,5,122,0,0,809,811,3,268,134, - 0,810,808,1,0,0,0,810,811,1,0,0,0,811,1234,1,0,0,0,812,813,5,110, - 0,0,813,818,3,292,146,0,814,815,5,3,0,0,815,817,3,292,146,0,816, - 814,1,0,0,0,817,820,1,0,0,0,818,816,1,0,0,0,818,819,1,0,0,0,819, - 821,1,0,0,0,820,818,1,0,0,0,821,822,5,269,0,0,822,827,3,288,144, - 0,823,824,5,3,0,0,824,826,3,288,144,0,825,823,1,0,0,0,826,829,1, - 0,0,0,827,825,1,0,0,0,827,828,1,0,0,0,828,833,1,0,0,0,829,827,1, - 0,0,0,830,831,5,304,0,0,831,832,5,20,0,0,832,834,5,193,0,0,833,830, - 1,0,0,0,833,834,1,0,0,0,834,838,1,0,0,0,835,836,5,111,0,0,836,837, - 5,36,0,0,837,839,3,286,143,0,838,835,1,0,0,0,838,839,1,0,0,0,839, - 842,1,0,0,0,840,841,5,122,0,0,841,843,3,268,134,0,842,840,1,0,0, - 0,842,843,1,0,0,0,843,1234,1,0,0,0,844,855,5,110,0,0,845,850,3,292, - 146,0,846,847,5,3,0,0,847,849,3,292,146,0,848,846,1,0,0,0,849,852, - 1,0,0,0,850,848,1,0,0,0,850,851,1,0,0,0,851,856,1,0,0,0,852,850, - 1,0,0,0,853,854,5,22,0,0,854,856,5,215,0,0,855,845,1,0,0,0,855,853, - 1,0,0,0,856,857,1,0,0,0,857,858,5,190,0,0,858,859,3,252,126,0,859, - 860,5,269,0,0,860,864,3,288,144,0,861,862,5,304,0,0,862,863,5,110, - 0,0,863,865,5,193,0,0,864,861,1,0,0,0,864,865,1,0,0,0,865,1234,1, - 0,0,0,866,870,5,233,0,0,867,868,5,20,0,0,868,869,5,193,0,0,869,871, - 5,103,0,0,870,867,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,877, - 3,292,146,0,873,874,5,3,0,0,874,876,3,292,146,0,875,873,1,0,0,0, - 876,879,1,0,0,0,877,875,1,0,0,0,877,878,1,0,0,0,878,880,1,0,0,0, - 879,877,1,0,0,0,880,881,5,105,0,0,881,886,3,288,144,0,882,883,5, - 3,0,0,883,885,3,288,144,0,884,882,1,0,0,0,885,888,1,0,0,0,886,884, - 1,0,0,0,886,887,1,0,0,0,887,892,1,0,0,0,888,886,1,0,0,0,889,890, - 5,111,0,0,890,891,5,36,0,0,891,893,3,286,143,0,892,889,1,0,0,0,892, - 893,1,0,0,0,893,896,1,0,0,0,894,895,5,122,0,0,895,897,3,268,134, - 0,896,894,1,0,0,0,896,897,1,0,0,0,897,1234,1,0,0,0,898,902,5,233, - 0,0,899,900,5,110,0,0,900,901,5,193,0,0,901,903,5,103,0,0,902,899, - 1,0,0,0,902,903,1,0,0,0,903,914,1,0,0,0,904,909,3,292,146,0,905, - 906,5,3,0,0,906,908,3,292,146,0,907,905,1,0,0,0,908,911,1,0,0,0, - 909,907,1,0,0,0,909,910,1,0,0,0,910,915,1,0,0,0,911,909,1,0,0,0, - 912,913,5,22,0,0,913,915,5,215,0,0,914,904,1,0,0,0,914,912,1,0,0, - 0,915,916,1,0,0,0,916,917,5,190,0,0,917,918,3,252,126,0,918,919, - 5,105,0,0,919,920,3,288,144,0,920,1234,1,0,0,0,921,932,5,74,0,0, - 922,927,3,248,124,0,923,924,5,3,0,0,924,926,3,248,124,0,925,923, - 1,0,0,0,926,929,1,0,0,0,927,925,1,0,0,0,927,928,1,0,0,0,928,933, - 1,0,0,0,929,927,1,0,0,0,930,931,5,22,0,0,931,933,5,215,0,0,932,922, - 1,0,0,0,932,930,1,0,0,0,933,934,1,0,0,0,934,935,5,190,0,0,935,936, - 3,252,126,0,936,937,5,269,0,0,937,938,3,288,144,0,938,1234,1,0,0, - 0,939,940,5,251,0,0,940,944,5,235,0,0,941,945,5,22,0,0,942,945,5, - 180,0,0,943,945,3,294,147,0,944,941,1,0,0,0,944,942,1,0,0,0,944, - 943,1,0,0,0,945,948,1,0,0,0,946,947,5,122,0,0,947,949,3,268,134, - 0,948,946,1,0,0,0,948,949,1,0,0,0,949,1234,1,0,0,0,950,951,5,253, - 0,0,951,954,5,112,0,0,952,953,5,190,0,0,953,955,3,252,126,0,954, - 952,1,0,0,0,954,955,1,0,0,0,955,1234,1,0,0,0,956,968,5,95,0,0,957, - 958,5,1,0,0,958,963,3,212,106,0,959,960,5,3,0,0,960,962,3,212,106, - 0,961,959,1,0,0,0,962,965,1,0,0,0,963,961,1,0,0,0,963,964,1,0,0, - 0,964,966,1,0,0,0,965,963,1,0,0,0,966,967,5,2,0,0,967,969,1,0,0, - 0,968,957,1,0,0,0,968,969,1,0,0,0,969,970,1,0,0,0,970,1234,3,16, - 8,0,971,972,5,95,0,0,972,974,5,24,0,0,973,975,5,297,0,0,974,973, - 1,0,0,0,974,975,1,0,0,0,975,976,1,0,0,0,976,1234,3,16,8,0,977,978, - 5,253,0,0,978,979,5,53,0,0,979,980,5,260,0,0,980,1234,3,256,128, - 0,981,982,5,253,0,0,982,983,5,53,0,0,983,984,5,243,0,0,984,1234, - 3,264,132,0,985,986,5,253,0,0,986,987,5,53,0,0,987,988,5,299,0,0, - 988,1234,3,260,130,0,989,990,5,253,0,0,990,991,5,53,0,0,991,992, - 5,167,0,0,992,993,5,299,0,0,993,1234,3,260,130,0,994,995,5,253,0, - 0,995,996,5,53,0,0,996,997,5,107,0,0,997,1234,3,272,136,0,998,999, - 5,253,0,0,999,1002,5,261,0,0,1000,1001,7,2,0,0,1001,1003,3,264,132, - 0,1002,1000,1,0,0,0,1002,1003,1,0,0,0,1003,1010,1,0,0,0,1004,1005, - 5,154,0,0,1005,1008,3,168,84,0,1006,1007,5,90,0,0,1007,1009,3,168, - 84,0,1008,1006,1,0,0,0,1008,1009,1,0,0,0,1009,1011,1,0,0,0,1010, - 1004,1,0,0,0,1010,1011,1,0,0,0,1011,1234,1,0,0,0,1012,1013,5,253, - 0,0,1013,1016,5,244,0,0,1014,1015,7,2,0,0,1015,1017,3,268,134,0, - 1016,1014,1,0,0,0,1016,1017,1,0,0,0,1017,1024,1,0,0,0,1018,1019, - 5,154,0,0,1019,1022,3,168,84,0,1020,1021,5,90,0,0,1021,1023,3,168, - 84,0,1022,1020,1,0,0,0,1022,1023,1,0,0,0,1023,1025,1,0,0,0,1024, - 1018,1,0,0,0,1024,1025,1,0,0,0,1025,1234,1,0,0,0,1026,1027,5,253, - 0,0,1027,1034,5,43,0,0,1028,1029,5,154,0,0,1029,1032,3,168,84,0, - 1030,1031,5,90,0,0,1031,1033,3,168,84,0,1032,1030,1,0,0,0,1032,1033, - 1,0,0,0,1033,1035,1,0,0,0,1034,1028,1,0,0,0,1034,1035,1,0,0,0,1035, - 1234,1,0,0,0,1036,1037,5,253,0,0,1037,1038,5,45,0,0,1038,1039,7, - 2,0,0,1039,1046,3,254,127,0,1040,1041,5,154,0,0,1041,1044,3,168, - 84,0,1042,1043,5,90,0,0,1043,1045,3,168,84,0,1044,1042,1,0,0,0,1044, - 1045,1,0,0,0,1045,1047,1,0,0,0,1046,1040,1,0,0,0,1046,1047,1,0,0, - 0,1047,1234,1,0,0,0,1048,1049,5,253,0,0,1049,1050,5,256,0,0,1050, - 1051,5,103,0,0,1051,1234,3,254,127,0,1052,1053,5,253,0,0,1053,1054, - 5,256,0,0,1054,1055,5,103,0,0,1055,1056,5,1,0,0,1056,1057,3,18,9, - 0,1057,1058,5,2,0,0,1058,1234,1,0,0,0,1059,1061,5,253,0,0,1060,1062, - 5,56,0,0,1061,1060,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0,0,0,1063, - 1066,5,236,0,0,1064,1065,7,2,0,0,1065,1067,3,268,134,0,1066,1064, - 1,0,0,0,1066,1067,1,0,0,0,1067,1234,1,0,0,0,1068,1069,5,253,0,0, - 1069,1070,5,235,0,0,1070,1073,5,112,0,0,1071,1072,7,2,0,0,1072,1074, - 3,268,134,0,1073,1071,1,0,0,0,1073,1074,1,0,0,0,1074,1234,1,0,0, - 0,1075,1076,5,76,0,0,1076,1234,3,254,127,0,1077,1078,5,75,0,0,1078, - 1234,3,254,127,0,1079,1080,5,253,0,0,1080,1083,5,108,0,0,1081,1082, - 7,2,0,0,1082,1084,3,264,132,0,1083,1081,1,0,0,0,1083,1084,1,0,0, - 0,1084,1091,1,0,0,0,1085,1086,5,154,0,0,1086,1089,3,168,84,0,1087, - 1088,5,90,0,0,1088,1090,3,168,84,0,1089,1087,1,0,0,0,1089,1090,1, - 0,0,0,1090,1092,1,0,0,0,1091,1085,1,0,0,0,1091,1092,1,0,0,0,1092, - 1234,1,0,0,0,1093,1094,5,253,0,0,1094,1101,5,250,0,0,1095,1096,5, - 154,0,0,1096,1099,3,168,84,0,1097,1098,5,90,0,0,1098,1100,3,168, - 84,0,1099,1097,1,0,0,0,1099,1100,1,0,0,0,1100,1102,1,0,0,0,1101, - 1095,1,0,0,0,1101,1102,1,0,0,0,1102,1234,1,0,0,0,1103,1104,5,251, - 0,0,1104,1105,5,250,0,0,1105,1106,5,31,0,0,1106,1234,3,298,149,0, - 1107,1108,5,227,0,0,1108,1109,5,250,0,0,1109,1234,5,31,0,0,1110, - 1111,5,251,0,0,1111,1112,5,250,0,0,1112,1113,3,280,140,0,1113,1114, - 5,312,0,0,1114,1115,3,136,68,0,1115,1234,1,0,0,0,1116,1117,5,227, - 0,0,1117,1118,5,250,0,0,1118,1234,3,280,140,0,1119,1120,5,255,0, - 0,1120,1129,5,271,0,0,1121,1126,3,214,107,0,1122,1123,5,3,0,0,1123, - 1125,3,214,107,0,1124,1122,1,0,0,0,1125,1128,1,0,0,0,1126,1124,1, - 0,0,0,1126,1127,1,0,0,0,1127,1130,1,0,0,0,1128,1126,1,0,0,0,1129, - 1121,1,0,0,0,1129,1130,1,0,0,0,1130,1234,1,0,0,0,1131,1133,5,47, - 0,0,1132,1134,5,307,0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0,1134, - 1234,1,0,0,0,1135,1137,5,237,0,0,1136,1138,5,307,0,0,1137,1136,1, - 0,0,0,1137,1138,1,0,0,0,1138,1234,1,0,0,0,1139,1140,5,214,0,0,1140, - 1141,3,294,147,0,1141,1142,5,105,0,0,1142,1143,3,16,8,0,1143,1234, - 1,0,0,0,1144,1145,5,68,0,0,1145,1146,5,214,0,0,1146,1234,3,294,147, - 0,1147,1148,5,93,0,0,1148,1158,3,294,147,0,1149,1150,5,290,0,0,1150, - 1155,3,136,68,0,1151,1152,5,3,0,0,1152,1154,3,136,68,0,1153,1151, - 1,0,0,0,1154,1157,1,0,0,0,1155,1153,1,0,0,0,1155,1156,1,0,0,0,1156, - 1159,1,0,0,0,1157,1155,1,0,0,0,1158,1149,1,0,0,0,1158,1159,1,0,0, - 0,1159,1234,1,0,0,0,1160,1161,5,93,0,0,1161,1162,5,121,0,0,1162, - 1172,3,168,84,0,1163,1164,5,290,0,0,1164,1169,3,136,68,0,1165,1166, - 5,3,0,0,1166,1168,3,136,68,0,1167,1165,1,0,0,0,1168,1171,1,0,0,0, - 1169,1167,1,0,0,0,1169,1170,1,0,0,0,1170,1173,1,0,0,0,1171,1169, - 1,0,0,0,1172,1163,1,0,0,0,1172,1173,1,0,0,0,1173,1234,1,0,0,0,1174, - 1175,5,76,0,0,1175,1176,5,126,0,0,1176,1234,3,294,147,0,1177,1178, - 5,76,0,0,1178,1179,5,198,0,0,1179,1234,3,294,147,0,1180,1181,5,251, - 0,0,1181,1182,5,205,0,0,1182,1234,3,222,111,0,1183,1184,5,251,0, - 0,1184,1185,5,267,0,0,1185,1188,5,311,0,0,1186,1189,5,157,0,0,1187, - 1189,3,136,68,0,1188,1186,1,0,0,0,1188,1187,1,0,0,0,1189,1234,1, - 0,0,0,1190,1191,5,287,0,0,1191,1192,3,256,128,0,1192,1193,5,251, - 0,0,1193,1198,3,210,105,0,1194,1195,5,3,0,0,1195,1197,3,210,105, - 0,1196,1194,1,0,0,0,1197,1200,1,0,0,0,1198,1196,1,0,0,0,1198,1199, - 1,0,0,0,1199,1203,1,0,0,0,1200,1198,1,0,0,0,1201,1202,5,301,0,0, - 1202,1204,3,138,69,0,1203,1201,1,0,0,0,1203,1204,1,0,0,0,1204,1234, - 1,0,0,0,1205,1206,5,169,0,0,1206,1207,5,130,0,0,1207,1212,3,256, - 128,0,1208,1210,5,28,0,0,1209,1208,1,0,0,0,1209,1210,1,0,0,0,1210, - 1211,1,0,0,0,1211,1213,3,294,147,0,1212,1209,1,0,0,0,1212,1213,1, - 0,0,0,1213,1214,1,0,0,0,1214,1215,5,290,0,0,1215,1216,3,72,36,0, - 1216,1217,5,190,0,0,1217,1219,3,136,68,0,1218,1220,3,194,97,0,1219, - 1218,1,0,0,0,1220,1221,1,0,0,0,1221,1219,1,0,0,0,1221,1222,1,0,0, - 0,1222,1234,1,0,0,0,1223,1224,5,253,0,0,1224,1225,5,46,0,0,1225, - 1226,5,190,0,0,1226,1227,5,260,0,0,1227,1234,3,256,128,0,1228,1229, - 5,253,0,0,1229,1230,5,46,0,0,1230,1231,5,190,0,0,1231,1232,5,44, - 0,0,1232,1234,3,276,138,0,1233,335,1,0,0,0,1233,336,1,0,0,0,1233, - 338,1,0,0,0,1233,360,1,0,0,0,1233,370,1,0,0,0,1233,386,1,0,0,0,1233, - 396,1,0,0,0,1233,403,1,0,0,0,1233,410,1,0,0,0,1233,448,1,0,0,0,1233, - 478,1,0,0,0,1233,485,1,0,0,0,1233,493,1,0,0,0,1233,500,1,0,0,0,1233, - 503,1,0,0,0,1233,512,1,0,0,0,1233,521,1,0,0,0,1233,530,1,0,0,0,1233, - 541,1,0,0,0,1233,557,1,0,0,0,1233,574,1,0,0,0,1233,589,1,0,0,0,1233, - 604,1,0,0,0,1233,618,1,0,0,0,1233,625,1,0,0,0,1233,632,1,0,0,0,1233, - 655,1,0,0,0,1233,661,1,0,0,0,1233,690,1,0,0,0,1233,712,1,0,0,0,1233, - 716,1,0,0,0,1233,724,1,0,0,0,1233,736,1,0,0,0,1233,744,1,0,0,0,1233, - 751,1,0,0,0,1233,758,1,0,0,0,1233,765,1,0,0,0,1233,780,1,0,0,0,1233, - 786,1,0,0,0,1233,793,1,0,0,0,1233,805,1,0,0,0,1233,812,1,0,0,0,1233, - 844,1,0,0,0,1233,866,1,0,0,0,1233,898,1,0,0,0,1233,921,1,0,0,0,1233, - 939,1,0,0,0,1233,950,1,0,0,0,1233,956,1,0,0,0,1233,971,1,0,0,0,1233, - 977,1,0,0,0,1233,981,1,0,0,0,1233,985,1,0,0,0,1233,989,1,0,0,0,1233, - 994,1,0,0,0,1233,998,1,0,0,0,1233,1012,1,0,0,0,1233,1026,1,0,0,0, - 1233,1036,1,0,0,0,1233,1048,1,0,0,0,1233,1052,1,0,0,0,1233,1059, - 1,0,0,0,1233,1068,1,0,0,0,1233,1075,1,0,0,0,1233,1077,1,0,0,0,1233, - 1079,1,0,0,0,1233,1093,1,0,0,0,1233,1103,1,0,0,0,1233,1107,1,0,0, - 0,1233,1110,1,0,0,0,1233,1116,1,0,0,0,1233,1119,1,0,0,0,1233,1131, - 1,0,0,0,1233,1135,1,0,0,0,1233,1139,1,0,0,0,1233,1144,1,0,0,0,1233, - 1147,1,0,0,0,1233,1160,1,0,0,0,1233,1174,1,0,0,0,1233,1177,1,0,0, - 0,1233,1180,1,0,0,0,1233,1183,1,0,0,0,1233,1190,1,0,0,0,1233,1205, - 1,0,0,0,1233,1223,1,0,0,0,1233,1228,1,0,0,0,1234,17,1,0,0,0,1235, - 1237,3,20,10,0,1236,1235,1,0,0,0,1236,1237,1,0,0,0,1237,1238,1,0, - 0,0,1238,1239,3,22,11,0,1239,19,1,0,0,0,1240,1241,5,304,0,0,1241, - 1246,3,224,112,0,1242,1243,5,3,0,0,1243,1245,3,224,112,0,1244,1242, - 1,0,0,0,1245,1248,1,0,0,0,1246,1244,1,0,0,0,1246,1247,1,0,0,0,1247, - 21,1,0,0,0,1248,1246,1,0,0,0,1249,1251,3,24,12,0,1250,1249,1,0,0, - 0,1250,1251,1,0,0,0,1251,1252,1,0,0,0,1252,1253,3,40,20,0,1253,23, - 1,0,0,0,1254,1256,5,304,0,0,1255,1257,5,221,0,0,1256,1255,1,0,0, - 0,1256,1257,1,0,0,0,1257,1258,1,0,0,0,1258,1263,3,66,33,0,1259,1260, - 5,3,0,0,1260,1262,3,66,33,0,1261,1259,1,0,0,0,1262,1265,1,0,0,0, - 1263,1261,1,0,0,0,1263,1264,1,0,0,0,1264,25,1,0,0,0,1265,1263,1, - 0,0,0,1266,1269,3,28,14,0,1267,1269,3,30,15,0,1268,1266,1,0,0,0, - 1268,1267,1,0,0,0,1269,27,1,0,0,0,1270,1271,3,278,139,0,1271,1274, - 3,184,92,0,1272,1273,5,182,0,0,1273,1275,5,183,0,0,1274,1272,1,0, - 0,0,1274,1275,1,0,0,0,1275,1278,1,0,0,0,1276,1277,5,46,0,0,1277, - 1279,3,168,84,0,1278,1276,1,0,0,0,1278,1279,1,0,0,0,1279,1282,1, - 0,0,0,1280,1281,5,304,0,0,1281,1283,3,32,16,0,1282,1280,1,0,0,0, - 1282,1283,1,0,0,0,1283,29,1,0,0,0,1284,1285,5,154,0,0,1285,1288, - 3,256,128,0,1286,1287,7,3,0,0,1287,1289,5,216,0,0,1288,1286,1,0, - 0,0,1288,1289,1,0,0,0,1289,31,1,0,0,0,1290,1291,5,1,0,0,1291,1292, - 3,34,17,0,1292,1293,5,2,0,0,1293,33,1,0,0,0,1294,1299,3,36,18,0, - 1295,1296,5,3,0,0,1296,1298,3,36,18,0,1297,1295,1,0,0,0,1298,1301, - 1,0,0,0,1299,1297,1,0,0,0,1299,1300,1,0,0,0,1300,35,1,0,0,0,1301, - 1299,1,0,0,0,1302,1303,3,294,147,0,1303,1304,5,312,0,0,1304,1305, - 3,38,19,0,1305,37,1,0,0,0,1306,1309,5,70,0,0,1307,1309,3,136,68, - 0,1308,1306,1,0,0,0,1308,1307,1,0,0,0,1309,39,1,0,0,0,1310,1321, - 3,46,23,0,1311,1312,5,195,0,0,1312,1313,5,36,0,0,1313,1318,3,50, - 25,0,1314,1315,5,3,0,0,1315,1317,3,50,25,0,1316,1314,1,0,0,0,1317, - 1320,1,0,0,0,1318,1316,1,0,0,0,1318,1319,1,0,0,0,1319,1322,1,0,0, - 0,1320,1318,1,0,0,0,1321,1311,1,0,0,0,1321,1322,1,0,0,0,1322,1328, - 1,0,0,0,1323,1324,5,188,0,0,1324,1326,3,44,22,0,1325,1327,7,4,0, - 0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1329,1,0,0,0,1328,1323, - 1,0,0,0,1328,1329,1,0,0,0,1329,1343,1,0,0,0,1330,1331,5,155,0,0, - 1331,1344,3,42,21,0,1332,1333,5,98,0,0,1333,1335,7,5,0,0,1334,1336, - 3,44,22,0,1335,1334,1,0,0,0,1335,1336,1,0,0,0,1336,1337,1,0,0,0, - 1337,1341,7,4,0,0,1338,1342,5,192,0,0,1339,1340,5,304,0,0,1340,1342, - 5,266,0,0,1341,1338,1,0,0,0,1341,1339,1,0,0,0,1342,1344,1,0,0,0, - 1343,1330,1,0,0,0,1343,1332,1,0,0,0,1343,1344,1,0,0,0,1344,41,1, - 0,0,0,1345,1348,5,22,0,0,1346,1348,3,44,22,0,1347,1345,1,0,0,0,1347, - 1346,1,0,0,0,1348,43,1,0,0,0,1349,1350,7,6,0,0,1350,45,1,0,0,0,1351, - 1352,6,23,-1,0,1352,1353,3,48,24,0,1353,1368,1,0,0,0,1354,1355,10, - 2,0,0,1355,1357,5,128,0,0,1356,1358,3,68,34,0,1357,1356,1,0,0,0, - 1357,1358,1,0,0,0,1358,1359,1,0,0,0,1359,1367,3,46,23,3,1360,1361, - 10,1,0,0,1361,1363,7,7,0,0,1362,1364,3,68,34,0,1363,1362,1,0,0,0, - 1363,1364,1,0,0,0,1364,1365,1,0,0,0,1365,1367,3,46,23,2,1366,1354, - 1,0,0,0,1366,1360,1,0,0,0,1367,1370,1,0,0,0,1368,1366,1,0,0,0,1368, - 1369,1,0,0,0,1369,47,1,0,0,0,1370,1368,1,0,0,0,1371,1388,3,52,26, - 0,1372,1373,5,260,0,0,1373,1388,3,256,128,0,1374,1375,5,296,0,0, - 1375,1380,3,136,68,0,1376,1377,5,3,0,0,1377,1379,3,136,68,0,1378, - 1376,1,0,0,0,1379,1382,1,0,0,0,1380,1378,1,0,0,0,1380,1381,1,0,0, - 0,1381,1388,1,0,0,0,1382,1380,1,0,0,0,1383,1384,5,1,0,0,1384,1385, - 3,40,20,0,1385,1386,5,2,0,0,1386,1388,1,0,0,0,1387,1371,1,0,0,0, - 1387,1372,1,0,0,0,1387,1374,1,0,0,0,1387,1383,1,0,0,0,1388,49,1, - 0,0,0,1389,1392,3,276,138,0,1390,1392,3,136,68,0,1391,1389,1,0,0, - 0,1391,1390,1,0,0,0,1392,1394,1,0,0,0,1393,1395,7,8,0,0,1394,1393, - 1,0,0,0,1394,1395,1,0,0,0,1395,1398,1,0,0,0,1396,1397,5,185,0,0, - 1397,1399,7,9,0,0,1398,1396,1,0,0,0,1398,1399,1,0,0,0,1399,51,1, - 0,0,0,1400,1402,5,248,0,0,1401,1403,3,68,34,0,1402,1401,1,0,0,0, - 1402,1403,1,0,0,0,1403,1404,1,0,0,0,1404,1409,3,70,35,0,1405,1406, - 5,3,0,0,1406,1408,3,70,35,0,1407,1405,1,0,0,0,1408,1411,1,0,0,0, - 1409,1407,1,0,0,0,1409,1410,1,0,0,0,1410,1421,1,0,0,0,1411,1409, - 1,0,0,0,1412,1413,5,105,0,0,1413,1418,3,72,36,0,1414,1415,5,3,0, - 0,1415,1417,3,72,36,0,1416,1414,1,0,0,0,1417,1420,1,0,0,0,1418,1416, - 1,0,0,0,1418,1419,1,0,0,0,1419,1422,1,0,0,0,1420,1418,1,0,0,0,1421, - 1412,1,0,0,0,1421,1422,1,0,0,0,1422,1425,1,0,0,0,1423,1424,5,301, - 0,0,1424,1426,3,138,69,0,1425,1423,1,0,0,0,1425,1426,1,0,0,0,1426, - 1430,1,0,0,0,1427,1428,5,114,0,0,1428,1429,5,36,0,0,1429,1431,3, - 54,27,0,1430,1427,1,0,0,0,1430,1431,1,0,0,0,1431,1434,1,0,0,0,1432, - 1433,5,117,0,0,1433,1435,3,138,69,0,1434,1432,1,0,0,0,1434,1435, - 1,0,0,0,1435,1445,1,0,0,0,1436,1437,5,303,0,0,1437,1442,3,62,31, - 0,1438,1439,5,3,0,0,1439,1441,3,62,31,0,1440,1438,1,0,0,0,1441,1444, - 1,0,0,0,1442,1440,1,0,0,0,1442,1443,1,0,0,0,1443,1446,1,0,0,0,1444, - 1442,1,0,0,0,1445,1436,1,0,0,0,1445,1446,1,0,0,0,1446,53,1,0,0,0, - 1447,1449,3,68,34,0,1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1450, - 1,0,0,0,1450,1455,3,56,28,0,1451,1452,5,3,0,0,1452,1454,3,56,28, - 0,1453,1451,1,0,0,0,1454,1457,1,0,0,0,1455,1453,1,0,0,0,1455,1456, - 1,0,0,0,1456,55,1,0,0,0,1457,1455,1,0,0,0,1458,1499,3,58,29,0,1459, - 1460,5,238,0,0,1460,1469,5,1,0,0,1461,1466,3,58,29,0,1462,1463,5, - 3,0,0,1463,1465,3,58,29,0,1464,1462,1,0,0,0,1465,1468,1,0,0,0,1466, - 1464,1,0,0,0,1466,1467,1,0,0,0,1467,1470,1,0,0,0,1468,1466,1,0,0, - 0,1469,1461,1,0,0,0,1469,1470,1,0,0,0,1470,1471,1,0,0,0,1471,1499, - 5,2,0,0,1472,1473,5,55,0,0,1473,1482,5,1,0,0,1474,1479,3,58,29,0, - 1475,1476,5,3,0,0,1476,1478,3,58,29,0,1477,1475,1,0,0,0,1478,1481, - 1,0,0,0,1479,1477,1,0,0,0,1479,1480,1,0,0,0,1480,1483,1,0,0,0,1481, - 1479,1,0,0,0,1482,1474,1,0,0,0,1482,1483,1,0,0,0,1483,1484,1,0,0, - 0,1484,1499,5,2,0,0,1485,1486,5,115,0,0,1486,1487,5,252,0,0,1487, - 1488,5,1,0,0,1488,1493,3,58,29,0,1489,1490,5,3,0,0,1490,1492,3,58, - 29,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0,1493,1491,1,0,0,0,1493, - 1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493,1,0,0,0,1496,1497,5,2,0, - 0,1497,1499,1,0,0,0,1498,1458,1,0,0,0,1498,1459,1,0,0,0,1498,1472, - 1,0,0,0,1498,1485,1,0,0,0,1499,57,1,0,0,0,1500,1509,5,1,0,0,1501, - 1506,3,60,30,0,1502,1503,5,3,0,0,1503,1505,3,60,30,0,1504,1502,1, - 0,0,0,1505,1508,1,0,0,0,1506,1504,1,0,0,0,1506,1507,1,0,0,0,1507, - 1510,1,0,0,0,1508,1506,1,0,0,0,1509,1501,1,0,0,0,1509,1510,1,0,0, - 0,1510,1511,1,0,0,0,1511,1514,5,2,0,0,1512,1514,3,60,30,0,1513,1500, - 1,0,0,0,1513,1512,1,0,0,0,1514,59,1,0,0,0,1515,1518,3,276,138,0, - 1516,1518,3,136,68,0,1517,1515,1,0,0,0,1517,1516,1,0,0,0,1518,61, - 1,0,0,0,1519,1520,3,294,147,0,1520,1521,5,28,0,0,1521,1522,5,1,0, - 0,1522,1523,3,64,32,0,1523,1524,5,2,0,0,1524,63,1,0,0,0,1525,1527, - 3,294,147,0,1526,1525,1,0,0,0,1526,1527,1,0,0,0,1527,1538,1,0,0, - 0,1528,1529,5,201,0,0,1529,1530,5,36,0,0,1530,1535,3,136,68,0,1531, - 1532,5,3,0,0,1532,1534,3,136,68,0,1533,1531,1,0,0,0,1534,1537,1, - 0,0,0,1535,1533,1,0,0,0,1535,1536,1,0,0,0,1536,1539,1,0,0,0,1537, - 1535,1,0,0,0,1538,1528,1,0,0,0,1538,1539,1,0,0,0,1539,1550,1,0,0, - 0,1540,1541,5,195,0,0,1541,1542,5,36,0,0,1542,1547,3,50,25,0,1543, - 1544,5,3,0,0,1544,1546,3,50,25,0,1545,1543,1,0,0,0,1546,1549,1,0, - 0,0,1547,1545,1,0,0,0,1547,1548,1,0,0,0,1548,1551,1,0,0,0,1549,1547, - 1,0,0,0,1550,1540,1,0,0,0,1550,1551,1,0,0,0,1551,1553,1,0,0,0,1552, - 1554,3,198,99,0,1553,1552,1,0,0,0,1553,1554,1,0,0,0,1554,65,1,0, - 0,0,1555,1557,3,294,147,0,1556,1558,3,108,54,0,1557,1556,1,0,0,0, - 1557,1558,1,0,0,0,1558,1559,1,0,0,0,1559,1560,5,28,0,0,1560,1561, - 5,1,0,0,1561,1562,3,22,11,0,1562,1563,5,2,0,0,1563,67,1,0,0,0,1564, - 1565,7,10,0,0,1565,69,1,0,0,0,1566,1569,3,276,138,0,1567,1569,3, - 136,68,0,1568,1566,1,0,0,0,1568,1567,1,0,0,0,1569,1574,1,0,0,0,1570, - 1572,5,28,0,0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0, - 0,0,1573,1575,3,294,147,0,1574,1571,1,0,0,0,1574,1575,1,0,0,0,1575, - 1585,1,0,0,0,1576,1577,3,144,72,0,1577,1578,5,4,0,0,1578,1581,5, - 320,0,0,1579,1580,5,28,0,0,1580,1582,3,108,54,0,1581,1579,1,0,0, - 0,1581,1582,1,0,0,0,1582,1585,1,0,0,0,1583,1585,5,320,0,0,1584,1568, - 1,0,0,0,1584,1576,1,0,0,0,1584,1583,1,0,0,0,1585,71,1,0,0,0,1586, - 1587,6,36,-1,0,1587,1588,3,78,39,0,1588,1607,1,0,0,0,1589,1603,10, - 2,0,0,1590,1591,5,54,0,0,1591,1592,5,136,0,0,1592,1604,3,78,39,0, - 1593,1594,3,74,37,0,1594,1595,5,136,0,0,1595,1596,3,72,36,0,1596, - 1597,3,76,38,0,1597,1604,1,0,0,0,1598,1599,5,172,0,0,1599,1600,3, - 74,37,0,1600,1601,5,136,0,0,1601,1602,3,78,39,0,1602,1604,1,0,0, - 0,1603,1590,1,0,0,0,1603,1593,1,0,0,0,1603,1598,1,0,0,0,1604,1606, - 1,0,0,0,1605,1589,1,0,0,0,1606,1609,1,0,0,0,1607,1605,1,0,0,0,1607, - 1608,1,0,0,0,1608,73,1,0,0,0,1609,1607,1,0,0,0,1610,1612,5,125,0, - 0,1611,1610,1,0,0,0,1611,1612,1,0,0,0,1612,1626,1,0,0,0,1613,1615, - 5,152,0,0,1614,1616,5,197,0,0,1615,1614,1,0,0,0,1615,1616,1,0,0, - 0,1616,1626,1,0,0,0,1617,1619,5,234,0,0,1618,1620,5,197,0,0,1619, - 1618,1,0,0,0,1619,1620,1,0,0,0,1620,1626,1,0,0,0,1621,1623,5,106, - 0,0,1622,1624,5,197,0,0,1623,1622,1,0,0,0,1623,1624,1,0,0,0,1624, - 1626,1,0,0,0,1625,1611,1,0,0,0,1625,1613,1,0,0,0,1625,1617,1,0,0, - 0,1625,1621,1,0,0,0,1626,75,1,0,0,0,1627,1628,5,190,0,0,1628,1642, - 3,138,69,0,1629,1630,5,290,0,0,1630,1631,5,1,0,0,1631,1636,3,294, - 147,0,1632,1633,5,3,0,0,1633,1635,3,294,147,0,1634,1632,1,0,0,0, - 1635,1638,1,0,0,0,1636,1634,1,0,0,0,1636,1637,1,0,0,0,1637,1639, - 1,0,0,0,1638,1636,1,0,0,0,1639,1640,5,2,0,0,1640,1642,1,0,0,0,1641, - 1627,1,0,0,0,1641,1629,1,0,0,0,1642,77,1,0,0,0,1643,1650,3,88,44, - 0,1644,1645,5,262,0,0,1645,1646,3,80,40,0,1646,1647,5,1,0,0,1647, - 1648,3,136,68,0,1648,1649,5,2,0,0,1649,1651,1,0,0,0,1650,1644,1, - 0,0,0,1650,1651,1,0,0,0,1651,79,1,0,0,0,1652,1653,7,11,0,0,1653, - 81,1,0,0,0,1654,1655,7,12,0,0,1655,83,1,0,0,0,1656,1663,5,89,0,0, - 1657,1659,5,274,0,0,1658,1660,3,168,84,0,1659,1658,1,0,0,0,1659, - 1660,1,0,0,0,1660,1661,1,0,0,0,1661,1663,3,86,43,0,1662,1656,1,0, - 0,0,1662,1657,1,0,0,0,1663,85,1,0,0,0,1664,1665,5,304,0,0,1665,1669, - 5,51,0,0,1666,1667,5,306,0,0,1667,1669,5,51,0,0,1668,1664,1,0,0, - 0,1668,1666,1,0,0,0,1669,87,1,0,0,0,1670,1753,3,102,51,0,1671,1672, - 5,166,0,0,1672,1683,5,1,0,0,1673,1674,5,201,0,0,1674,1675,5,36,0, - 0,1675,1680,3,136,68,0,1676,1677,5,3,0,0,1677,1679,3,136,68,0,1678, - 1676,1,0,0,0,1679,1682,1,0,0,0,1680,1678,1,0,0,0,1680,1681,1,0,0, - 0,1681,1684,1,0,0,0,1682,1680,1,0,0,0,1683,1673,1,0,0,0,1683,1684, - 1,0,0,0,1684,1695,1,0,0,0,1685,1686,5,195,0,0,1686,1687,5,36,0,0, - 1687,1692,3,50,25,0,1688,1689,5,3,0,0,1689,1691,3,50,25,0,1690,1688, - 1,0,0,0,1691,1694,1,0,0,0,1692,1690,1,0,0,0,1692,1693,1,0,0,0,1693, - 1696,1,0,0,0,1694,1692,1,0,0,0,1695,1685,1,0,0,0,1695,1696,1,0,0, - 0,1696,1706,1,0,0,0,1697,1698,5,168,0,0,1698,1703,3,90,45,0,1699, - 1700,5,3,0,0,1700,1702,3,90,45,0,1701,1699,1,0,0,0,1702,1705,1,0, - 0,0,1703,1701,1,0,0,0,1703,1704,1,0,0,0,1704,1707,1,0,0,0,1705,1703, - 1,0,0,0,1706,1697,1,0,0,0,1706,1707,1,0,0,0,1707,1709,1,0,0,0,1708, - 1710,3,92,46,0,1709,1708,1,0,0,0,1709,1710,1,0,0,0,1710,1714,1,0, - 0,0,1711,1712,5,21,0,0,1712,1713,5,163,0,0,1713,1715,3,96,48,0,1714, - 1711,1,0,0,0,1714,1715,1,0,0,0,1715,1717,1,0,0,0,1716,1718,7,13, - 0,0,1717,1716,1,0,0,0,1717,1718,1,0,0,0,1718,1719,1,0,0,0,1719,1720, - 5,206,0,0,1720,1721,5,1,0,0,1721,1722,3,204,102,0,1722,1732,5,2, - 0,0,1723,1724,5,257,0,0,1724,1729,3,98,49,0,1725,1726,5,3,0,0,1726, - 1728,3,98,49,0,1727,1725,1,0,0,0,1728,1731,1,0,0,0,1729,1727,1,0, - 0,0,1729,1730,1,0,0,0,1730,1733,1,0,0,0,1731,1729,1,0,0,0,1732,1723, - 1,0,0,0,1732,1733,1,0,0,0,1733,1734,1,0,0,0,1734,1735,5,71,0,0,1735, - 1740,3,100,50,0,1736,1737,5,3,0,0,1737,1739,3,100,50,0,1738,1736, - 1,0,0,0,1739,1742,1,0,0,0,1740,1738,1,0,0,0,1740,1741,1,0,0,0,1741, - 1743,1,0,0,0,1742,1740,1,0,0,0,1743,1751,5,2,0,0,1744,1746,5,28, - 0,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747,1749, - 3,294,147,0,1748,1750,3,108,54,0,1749,1748,1,0,0,0,1749,1750,1,0, - 0,0,1750,1752,1,0,0,0,1751,1745,1,0,0,0,1751,1752,1,0,0,0,1752,1754, - 1,0,0,0,1753,1671,1,0,0,0,1753,1754,1,0,0,0,1754,89,1,0,0,0,1755, - 1756,3,136,68,0,1756,1757,5,28,0,0,1757,1758,3,294,147,0,1758,91, - 1,0,0,0,1759,1760,5,191,0,0,1760,1761,5,239,0,0,1761,1762,5,207, - 0,0,1762,1771,5,163,0,0,1763,1764,5,22,0,0,1764,1765,5,240,0,0,1765, - 1766,5,207,0,0,1766,1768,5,163,0,0,1767,1769,3,94,47,0,1768,1767, - 1,0,0,0,1768,1769,1,0,0,0,1769,1771,1,0,0,0,1770,1759,1,0,0,0,1770, - 1763,1,0,0,0,1771,93,1,0,0,0,1772,1773,5,253,0,0,1773,1774,5,85, - 0,0,1774,1782,5,165,0,0,1775,1776,5,189,0,0,1776,1777,5,85,0,0,1777, - 1782,5,165,0,0,1778,1779,5,304,0,0,1779,1780,5,284,0,0,1780,1782, - 5,240,0,0,1781,1772,1,0,0,0,1781,1775,1,0,0,0,1781,1778,1,0,0,0, - 1782,95,1,0,0,0,1783,1784,5,5,0,0,1784,1785,5,269,0,0,1785,1786, - 5,174,0,0,1786,1803,5,239,0,0,1787,1788,5,5,0,0,1788,1789,5,204, - 0,0,1789,1790,5,148,0,0,1790,1803,5,239,0,0,1791,1792,5,5,0,0,1792, - 1793,5,269,0,0,1793,1794,5,101,0,0,1794,1803,3,294,147,0,1795,1796, - 5,5,0,0,1796,1797,5,269,0,0,1797,1798,5,148,0,0,1798,1803,3,294, - 147,0,1799,1800,5,5,0,0,1800,1801,5,269,0,0,1801,1803,3,294,147, - 0,1802,1783,1,0,0,0,1802,1787,1,0,0,0,1802,1791,1,0,0,0,1802,1795, - 1,0,0,0,1802,1799,1,0,0,0,1803,97,1,0,0,0,1804,1805,3,294,147,0, - 1805,1806,5,312,0,0,1806,1807,5,1,0,0,1807,1812,3,294,147,0,1808, - 1809,5,3,0,0,1809,1811,3,294,147,0,1810,1808,1,0,0,0,1811,1814,1, - 0,0,0,1812,1810,1,0,0,0,1812,1813,1,0,0,0,1813,1815,1,0,0,0,1814, - 1812,1,0,0,0,1815,1816,5,2,0,0,1816,99,1,0,0,0,1817,1818,3,294,147, - 0,1818,1819,5,28,0,0,1819,1820,3,136,68,0,1820,101,1,0,0,0,1821, - 1829,3,110,55,0,1822,1824,5,28,0,0,1823,1822,1,0,0,0,1823,1824,1, - 0,0,0,1824,1825,1,0,0,0,1825,1827,3,294,147,0,1826,1828,3,108,54, - 0,1827,1826,1,0,0,0,1827,1828,1,0,0,0,1828,1830,1,0,0,0,1829,1823, - 1,0,0,0,1829,1830,1,0,0,0,1830,103,1,0,0,0,1831,1832,5,1,0,0,1832, - 1837,3,278,139,0,1833,1834,5,3,0,0,1834,1836,3,278,139,0,1835,1833, - 1,0,0,0,1836,1839,1,0,0,0,1837,1835,1,0,0,0,1837,1838,1,0,0,0,1838, - 1840,1,0,0,0,1839,1837,1,0,0,0,1840,1841,5,2,0,0,1841,105,1,0,0, - 0,1842,1843,5,1,0,0,1843,1848,3,276,138,0,1844,1845,5,3,0,0,1845, - 1847,3,276,138,0,1846,1844,1,0,0,0,1847,1850,1,0,0,0,1848,1846,1, - 0,0,0,1848,1849,1,0,0,0,1849,1851,1,0,0,0,1850,1848,1,0,0,0,1851, - 1852,5,2,0,0,1852,107,1,0,0,0,1853,1854,5,1,0,0,1854,1859,3,294, - 147,0,1855,1856,5,3,0,0,1856,1858,3,294,147,0,1857,1855,1,0,0,0, - 1858,1861,1,0,0,0,1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,1862, - 1,0,0,0,1861,1859,1,0,0,0,1862,1863,5,2,0,0,1863,109,1,0,0,0,1864, - 1866,3,254,127,0,1865,1867,3,282,141,0,1866,1865,1,0,0,0,1866,1867, - 1,0,0,0,1867,1936,1,0,0,0,1868,1869,5,1,0,0,1869,1870,3,22,11,0, - 1870,1871,5,2,0,0,1871,1936,1,0,0,0,1872,1873,5,285,0,0,1873,1874, - 5,1,0,0,1874,1879,3,136,68,0,1875,1876,5,3,0,0,1876,1878,3,136,68, - 0,1877,1875,1,0,0,0,1878,1881,1,0,0,0,1879,1877,1,0,0,0,1879,1880, - 1,0,0,0,1880,1882,1,0,0,0,1881,1879,1,0,0,0,1882,1885,5,2,0,0,1883, - 1884,5,304,0,0,1884,1886,5,196,0,0,1885,1883,1,0,0,0,1885,1886,1, - 0,0,0,1886,1936,1,0,0,0,1887,1888,5,149,0,0,1888,1889,5,1,0,0,1889, - 1890,3,22,11,0,1890,1891,5,2,0,0,1891,1936,1,0,0,0,1892,1893,5,260, - 0,0,1893,1894,5,1,0,0,1894,1895,3,122,61,0,1895,1896,5,2,0,0,1896, - 1936,1,0,0,0,1897,1898,5,1,0,0,1898,1899,3,72,36,0,1899,1900,5,2, - 0,0,1900,1936,1,0,0,0,1901,1902,5,142,0,0,1902,1903,5,1,0,0,1903, - 1904,3,146,73,0,1904,1905,5,45,0,0,1905,1906,5,1,0,0,1906,1911,3, - 112,56,0,1907,1908,5,3,0,0,1908,1910,3,112,56,0,1909,1907,1,0,0, - 0,1910,1913,1,0,0,0,1911,1909,1,0,0,0,1911,1912,1,0,0,0,1912,1914, - 1,0,0,0,1913,1911,1,0,0,0,1914,1926,5,2,0,0,1915,1916,5,210,0,0, - 1916,1917,5,1,0,0,1917,1918,3,114,57,0,1918,1919,5,2,0,0,1919,1927, - 1,0,0,0,1920,1921,5,210,0,0,1921,1922,5,70,0,0,1922,1923,5,1,0,0, - 1923,1924,3,120,60,0,1924,1925,5,2,0,0,1925,1927,1,0,0,0,1926,1915, - 1,0,0,0,1926,1920,1,0,0,0,1926,1927,1,0,0,0,1927,1931,1,0,0,0,1928, - 1929,7,14,0,0,1929,1930,5,190,0,0,1930,1932,5,89,0,0,1931,1928,1, - 0,0,0,1931,1932,1,0,0,0,1932,1933,1,0,0,0,1933,1934,5,2,0,0,1934, - 1936,1,0,0,0,1935,1864,1,0,0,0,1935,1868,1,0,0,0,1935,1872,1,0,0, - 0,1935,1887,1,0,0,0,1935,1892,1,0,0,0,1935,1897,1,0,0,0,1935,1901, - 1,0,0,0,1936,111,1,0,0,0,1937,1938,3,294,147,0,1938,1939,5,103,0, - 0,1939,1940,5,196,0,0,1940,2015,1,0,0,0,1941,1942,3,294,147,0,1942, - 1945,3,184,92,0,1943,1944,5,205,0,0,1944,1946,3,168,84,0,1945,1943, - 1,0,0,0,1945,1946,1,0,0,0,1946,1951,1,0,0,0,1947,1948,3,156,78,0, - 1948,1949,5,190,0,0,1949,1950,5,85,0,0,1950,1952,1,0,0,0,1951,1947, - 1,0,0,0,1951,1952,1,0,0,0,1952,1957,1,0,0,0,1953,1954,3,156,78,0, - 1954,1955,5,190,0,0,1955,1956,5,89,0,0,1956,1958,1,0,0,0,1957,1953, - 1,0,0,0,1957,1958,1,0,0,0,1958,2015,1,0,0,0,1959,1960,3,294,147, - 0,1960,1961,3,184,92,0,1961,1962,5,104,0,0,1962,1965,3,150,75,0, - 1963,1964,5,205,0,0,1964,1966,3,168,84,0,1965,1963,1,0,0,0,1965, - 1966,1,0,0,0,1966,1970,1,0,0,0,1967,1968,3,158,79,0,1968,1969,5, - 308,0,0,1969,1971,1,0,0,0,1970,1967,1,0,0,0,1970,1971,1,0,0,0,1971, - 1979,1,0,0,0,1972,1973,7,15,0,0,1973,1977,5,218,0,0,1974,1975,5, - 190,0,0,1975,1976,5,242,0,0,1976,1978,5,264,0,0,1977,1974,1,0,0, - 0,1977,1978,1,0,0,0,1978,1980,1,0,0,0,1979,1972,1,0,0,0,1979,1980, - 1,0,0,0,1980,1985,1,0,0,0,1981,1982,3,160,80,0,1982,1983,5,190,0, - 0,1983,1984,5,85,0,0,1984,1986,1,0,0,0,1985,1981,1,0,0,0,1985,1986, - 1,0,0,0,1986,1991,1,0,0,0,1987,1988,3,160,80,0,1988,1989,5,190,0, - 0,1989,1990,5,89,0,0,1990,1992,1,0,0,0,1991,1987,1,0,0,0,1991,1992, - 1,0,0,0,1992,2015,1,0,0,0,1993,1995,5,173,0,0,1994,1996,5,205,0, - 0,1995,1994,1,0,0,0,1995,1996,1,0,0,0,1996,1997,1,0,0,0,1997,2000, - 3,168,84,0,1998,1999,5,28,0,0,1999,2001,3,294,147,0,2000,1998,1, - 0,0,0,2000,2001,1,0,0,0,2001,2002,1,0,0,0,2002,2003,5,45,0,0,2003, - 2004,5,1,0,0,2004,2009,3,112,56,0,2005,2006,5,3,0,0,2006,2008,3, - 112,56,0,2007,2005,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009, - 2010,1,0,0,0,2010,2012,1,0,0,0,2011,2009,1,0,0,0,2012,2013,5,2,0, - 0,2013,2015,1,0,0,0,2014,1937,1,0,0,0,2014,1941,1,0,0,0,2014,1959, - 1,0,0,0,2014,1993,1,0,0,0,2015,113,1,0,0,0,2016,2042,3,116,58,0, - 2017,2018,3,116,58,0,2018,2019,7,16,0,0,2019,2020,3,118,59,0,2020, - 2042,1,0,0,0,2021,2022,3,118,59,0,2022,2023,5,281,0,0,2023,2028, - 3,118,59,0,2024,2025,5,281,0,0,2025,2027,3,118,59,0,2026,2024,1, - 0,0,0,2027,2030,1,0,0,0,2028,2026,1,0,0,0,2028,2029,1,0,0,0,2029, - 2042,1,0,0,0,2030,2028,1,0,0,0,2031,2032,3,118,59,0,2032,2033,5, - 54,0,0,2033,2038,3,118,59,0,2034,2035,5,54,0,0,2035,2037,3,118,59, - 0,2036,2034,1,0,0,0,2037,2040,1,0,0,0,2038,2036,1,0,0,0,2038,2039, - 1,0,0,0,2039,2042,1,0,0,0,2040,2038,1,0,0,0,2041,2016,1,0,0,0,2041, - 2017,1,0,0,0,2041,2021,1,0,0,0,2041,2031,1,0,0,0,2042,115,1,0,0, - 0,2043,2044,3,294,147,0,2044,117,1,0,0,0,2045,2051,3,116,58,0,2046, - 2047,5,1,0,0,2047,2048,3,114,57,0,2048,2049,5,2,0,0,2049,2051,1, - 0,0,0,2050,2045,1,0,0,0,2050,2046,1,0,0,0,2051,119,1,0,0,0,2052, - 2055,7,16,0,0,2053,2054,5,3,0,0,2054,2056,7,17,0,0,2055,2053,1,0, - 0,0,2055,2056,1,0,0,0,2056,2063,1,0,0,0,2057,2060,7,17,0,0,2058, - 2059,5,3,0,0,2059,2061,7,16,0,0,2060,2058,1,0,0,0,2060,2061,1,0, - 0,0,2061,2063,1,0,0,0,2062,2052,1,0,0,0,2062,2057,1,0,0,0,2063,121, - 1,0,0,0,2064,2065,3,272,136,0,2065,2074,5,1,0,0,2066,2071,3,124, - 62,0,2067,2068,5,3,0,0,2068,2070,3,124,62,0,2069,2067,1,0,0,0,2070, - 2073,1,0,0,0,2071,2069,1,0,0,0,2071,2072,1,0,0,0,2072,2075,1,0,0, - 0,2073,2071,1,0,0,0,2074,2066,1,0,0,0,2074,2075,1,0,0,0,2075,2085, - 1,0,0,0,2076,2077,5,52,0,0,2077,2082,3,134,67,0,2078,2079,5,3,0, - 0,2079,2081,3,134,67,0,2080,2078,1,0,0,0,2081,2084,1,0,0,0,2082, - 2080,1,0,0,0,2082,2083,1,0,0,0,2083,2086,1,0,0,0,2084,2082,1,0,0, - 0,2085,2076,1,0,0,0,2085,2086,1,0,0,0,2086,2087,1,0,0,0,2087,2088, - 5,2,0,0,2088,123,1,0,0,0,2089,2090,3,294,147,0,2090,2091,5,6,0,0, - 2091,2093,1,0,0,0,2092,2089,1,0,0,0,2092,2093,1,0,0,0,2093,2097, - 1,0,0,0,2094,2098,3,126,63,0,2095,2098,3,130,65,0,2096,2098,3,136, - 68,0,2097,2094,1,0,0,0,2097,2095,1,0,0,0,2097,2096,1,0,0,0,2098, - 125,1,0,0,0,2099,2117,3,128,64,0,2100,2101,5,201,0,0,2101,2115,5, - 36,0,0,2102,2111,5,1,0,0,2103,2108,3,136,68,0,2104,2105,5,3,0,0, - 2105,2107,3,136,68,0,2106,2104,1,0,0,0,2107,2110,1,0,0,0,2108,2106, - 1,0,0,0,2108,2109,1,0,0,0,2109,2112,1,0,0,0,2110,2108,1,0,0,0,2111, - 2103,1,0,0,0,2111,2112,1,0,0,0,2112,2113,1,0,0,0,2113,2116,5,2,0, - 0,2114,2116,3,136,68,0,2115,2102,1,0,0,0,2115,2114,1,0,0,0,2116, - 2118,1,0,0,0,2117,2100,1,0,0,0,2117,2118,1,0,0,0,2118,2125,1,0,0, - 0,2119,2120,5,217,0,0,2120,2121,5,300,0,0,2121,2126,5,85,0,0,2122, - 2123,5,144,0,0,2123,2124,5,300,0,0,2124,2126,5,85,0,0,2125,2119, - 1,0,0,0,2125,2122,1,0,0,0,2125,2126,1,0,0,0,2126,2143,1,0,0,0,2127, - 2128,5,195,0,0,2128,2141,5,36,0,0,2129,2130,5,1,0,0,2130,2135,3, - 50,25,0,2131,2132,5,3,0,0,2132,2134,3,50,25,0,2133,2131,1,0,0,0, - 2134,2137,1,0,0,0,2135,2133,1,0,0,0,2135,2136,1,0,0,0,2136,2138, - 1,0,0,0,2137,2135,1,0,0,0,2138,2139,5,2,0,0,2139,2142,1,0,0,0,2140, - 2142,3,50,25,0,2141,2129,1,0,0,0,2141,2140,1,0,0,0,2142,2144,1,0, - 0,0,2143,2127,1,0,0,0,2143,2144,1,0,0,0,2144,127,1,0,0,0,2145,2146, - 5,260,0,0,2146,2147,5,1,0,0,2147,2148,3,256,128,0,2148,2156,5,2, - 0,0,2149,2151,5,28,0,0,2150,2149,1,0,0,0,2150,2151,1,0,0,0,2151, - 2152,1,0,0,0,2152,2154,3,294,147,0,2153,2155,3,108,54,0,2154,2153, - 1,0,0,0,2154,2155,1,0,0,0,2155,2157,1,0,0,0,2156,2150,1,0,0,0,2156, - 2157,1,0,0,0,2157,2172,1,0,0,0,2158,2159,5,260,0,0,2159,2160,5,1, - 0,0,2160,2161,3,22,11,0,2161,2169,5,2,0,0,2162,2164,5,28,0,0,2163, - 2162,1,0,0,0,2163,2164,1,0,0,0,2164,2165,1,0,0,0,2165,2167,3,294, - 147,0,2166,2168,3,108,54,0,2167,2166,1,0,0,0,2167,2168,1,0,0,0,2168, - 2170,1,0,0,0,2169,2163,1,0,0,0,2169,2170,1,0,0,0,2170,2172,1,0,0, - 0,2171,2145,1,0,0,0,2171,2158,1,0,0,0,2172,129,1,0,0,0,2173,2174, - 5,77,0,0,2174,2175,5,1,0,0,2175,2180,3,132,66,0,2176,2177,5,3,0, - 0,2177,2179,3,132,66,0,2178,2176,1,0,0,0,2179,2182,1,0,0,0,2180, - 2178,1,0,0,0,2180,2181,1,0,0,0,2181,2183,1,0,0,0,2182,2180,1,0,0, - 0,2183,2184,5,2,0,0,2184,2192,1,0,0,0,2185,2186,5,41,0,0,2186,2187, - 5,1,0,0,2187,2188,5,183,0,0,2188,2189,5,28,0,0,2189,2190,5,77,0, - 0,2190,2192,5,2,0,0,2191,2173,1,0,0,0,2191,2185,1,0,0,0,2192,131, - 1,0,0,0,2193,2195,3,294,147,0,2194,2196,3,184,92,0,2195,2194,1,0, - 0,0,2195,2196,1,0,0,0,2196,133,1,0,0,0,2197,2198,5,1,0,0,2198,2199, - 3,280,140,0,2199,2200,5,3,0,0,2200,2205,3,280,140,0,2201,2202,5, - 3,0,0,2202,2204,3,280,140,0,2203,2201,1,0,0,0,2204,2207,1,0,0,0, - 2205,2203,1,0,0,0,2205,2206,1,0,0,0,2206,2208,1,0,0,0,2207,2205, - 1,0,0,0,2208,2209,5,2,0,0,2209,135,1,0,0,0,2210,2211,3,138,69,0, - 2211,137,1,0,0,0,2212,2213,6,69,-1,0,2213,2215,3,142,71,0,2214,2216, - 3,140,70,0,2215,2214,1,0,0,0,2215,2216,1,0,0,0,2216,2220,1,0,0,0, - 2217,2218,5,182,0,0,2218,2220,3,138,69,3,2219,2212,1,0,0,0,2219, - 2217,1,0,0,0,2220,2229,1,0,0,0,2221,2222,10,2,0,0,2222,2223,5,25, - 0,0,2223,2228,3,138,69,3,2224,2225,10,1,0,0,2225,2226,5,194,0,0, - 2226,2228,3,138,69,2,2227,2221,1,0,0,0,2227,2224,1,0,0,0,2228,2231, - 1,0,0,0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230,139,1,0,0,0,2231, - 2229,1,0,0,0,2232,2233,3,172,86,0,2233,2234,3,142,71,0,2234,2294, - 1,0,0,0,2235,2236,3,172,86,0,2236,2237,3,174,87,0,2237,2238,5,1, - 0,0,2238,2239,3,22,11,0,2239,2240,5,2,0,0,2240,2294,1,0,0,0,2241, - 2243,5,182,0,0,2242,2241,1,0,0,0,2242,2243,1,0,0,0,2243,2244,1,0, - 0,0,2244,2245,5,34,0,0,2245,2246,3,142,71,0,2246,2247,5,25,0,0,2247, - 2248,3,142,71,0,2248,2294,1,0,0,0,2249,2251,5,182,0,0,2250,2249, - 1,0,0,0,2250,2251,1,0,0,0,2251,2252,1,0,0,0,2252,2253,5,122,0,0, - 2253,2254,5,1,0,0,2254,2259,3,136,68,0,2255,2256,5,3,0,0,2256,2258, - 3,136,68,0,2257,2255,1,0,0,0,2258,2261,1,0,0,0,2259,2257,1,0,0,0, - 2259,2260,1,0,0,0,2260,2262,1,0,0,0,2261,2259,1,0,0,0,2262,2263, - 5,2,0,0,2263,2294,1,0,0,0,2264,2266,5,182,0,0,2265,2264,1,0,0,0, - 2265,2266,1,0,0,0,2266,2267,1,0,0,0,2267,2268,5,122,0,0,2268,2269, - 5,1,0,0,2269,2270,3,22,11,0,2270,2271,5,2,0,0,2271,2294,1,0,0,0, - 2272,2274,5,182,0,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274,2275, - 1,0,0,0,2275,2276,5,154,0,0,2276,2279,3,142,71,0,2277,2278,5,90, - 0,0,2278,2280,3,142,71,0,2279,2277,1,0,0,0,2279,2280,1,0,0,0,2280, - 2294,1,0,0,0,2281,2283,5,133,0,0,2282,2284,5,182,0,0,2283,2282,1, - 0,0,0,2283,2284,1,0,0,0,2284,2285,1,0,0,0,2285,2294,5,183,0,0,2286, - 2288,5,133,0,0,2287,2289,5,182,0,0,2288,2287,1,0,0,0,2288,2289,1, - 0,0,0,2289,2290,1,0,0,0,2290,2291,5,79,0,0,2291,2292,5,105,0,0,2292, - 2294,3,142,71,0,2293,2232,1,0,0,0,2293,2235,1,0,0,0,2293,2242,1, - 0,0,0,2293,2250,1,0,0,0,2293,2265,1,0,0,0,2293,2273,1,0,0,0,2293, - 2281,1,0,0,0,2293,2286,1,0,0,0,2294,141,1,0,0,0,2295,2296,6,71,-1, - 0,2296,2300,3,144,72,0,2297,2298,7,18,0,0,2298,2300,3,142,71,4,2299, - 2295,1,0,0,0,2299,2297,1,0,0,0,2300,2315,1,0,0,0,2301,2302,10,3, - 0,0,2302,2303,7,19,0,0,2303,2314,3,142,71,4,2304,2305,10,2,0,0,2305, - 2306,7,18,0,0,2306,2314,3,142,71,3,2307,2308,10,1,0,0,2308,2309, - 5,323,0,0,2309,2314,3,142,71,2,2310,2311,10,5,0,0,2311,2312,5,30, - 0,0,2312,2314,3,170,85,0,2313,2301,1,0,0,0,2313,2304,1,0,0,0,2313, - 2307,1,0,0,0,2313,2310,1,0,0,0,2314,2317,1,0,0,0,2315,2313,1,0,0, - 0,2315,2316,1,0,0,0,2316,143,1,0,0,0,2317,2315,1,0,0,0,2318,2319, - 6,72,-1,0,2319,2772,5,183,0,0,2320,2772,3,178,89,0,2321,2322,3,294, - 147,0,2322,2323,3,168,84,0,2323,2772,1,0,0,0,2324,2325,5,82,0,0, - 2325,2326,5,213,0,0,2326,2772,3,168,84,0,2327,2772,3,296,148,0,2328, - 2772,3,176,88,0,2329,2772,3,168,84,0,2330,2772,5,328,0,0,2331,2772, - 5,324,0,0,2332,2333,5,211,0,0,2333,2334,5,1,0,0,2334,2335,3,142, - 71,0,2335,2336,5,122,0,0,2336,2337,3,142,71,0,2337,2338,5,2,0,0, - 2338,2772,1,0,0,0,2339,2340,5,1,0,0,2340,2343,3,136,68,0,2341,2342, - 5,3,0,0,2342,2344,3,136,68,0,2343,2341,1,0,0,0,2344,2345,1,0,0,0, - 2345,2343,1,0,0,0,2345,2346,1,0,0,0,2346,2347,1,0,0,0,2347,2348, - 5,2,0,0,2348,2772,1,0,0,0,2349,2350,5,239,0,0,2350,2351,5,1,0,0, - 2351,2356,3,136,68,0,2352,2353,5,3,0,0,2353,2355,3,136,68,0,2354, - 2352,1,0,0,0,2355,2358,1,0,0,0,2356,2354,1,0,0,0,2356,2357,1,0,0, - 0,2357,2359,1,0,0,0,2358,2356,1,0,0,0,2359,2360,5,2,0,0,2360,2772, - 1,0,0,0,2361,2362,5,156,0,0,2362,2364,5,1,0,0,2363,2365,3,68,34, - 0,2364,2363,1,0,0,0,2364,2365,1,0,0,0,2365,2366,1,0,0,0,2366,2369, - 3,136,68,0,2367,2368,5,3,0,0,2368,2370,3,168,84,0,2369,2367,1,0, - 0,0,2369,2370,1,0,0,0,2370,2374,1,0,0,0,2371,2372,5,190,0,0,2372, - 2373,5,200,0,0,2373,2375,3,84,42,0,2374,2371,1,0,0,0,2374,2375,1, - 0,0,0,2375,2376,1,0,0,0,2376,2377,5,2,0,0,2377,2378,5,305,0,0,2378, - 2379,5,114,0,0,2379,2380,5,1,0,0,2380,2381,5,195,0,0,2381,2382,5, - 36,0,0,2382,2387,3,50,25,0,2383,2384,5,3,0,0,2384,2386,3,50,25,0, - 2385,2383,1,0,0,0,2386,2389,1,0,0,0,2387,2385,1,0,0,0,2387,2388, - 1,0,0,0,2388,2390,1,0,0,0,2389,2387,1,0,0,0,2390,2391,5,2,0,0,2391, - 2393,1,0,0,0,2392,2394,3,192,96,0,2393,2392,1,0,0,0,2393,2394,1, - 0,0,0,2394,2772,1,0,0,0,2395,2397,3,164,82,0,2396,2395,1,0,0,0,2396, - 2397,1,0,0,0,2397,2398,1,0,0,0,2398,2399,3,272,136,0,2399,2403,5, - 1,0,0,2400,2401,3,294,147,0,2401,2402,5,4,0,0,2402,2404,1,0,0,0, - 2403,2400,1,0,0,0,2403,2404,1,0,0,0,2404,2405,1,0,0,0,2405,2406, - 5,320,0,0,2406,2408,5,2,0,0,2407,2409,3,192,96,0,2408,2407,1,0,0, - 0,2408,2409,1,0,0,0,2409,2411,1,0,0,0,2410,2412,3,196,98,0,2411, - 2410,1,0,0,0,2411,2412,1,0,0,0,2412,2772,1,0,0,0,2413,2415,3,164, - 82,0,2414,2413,1,0,0,0,2414,2415,1,0,0,0,2415,2416,1,0,0,0,2416, - 2417,3,272,136,0,2417,2429,5,1,0,0,2418,2420,3,68,34,0,2419,2418, - 1,0,0,0,2419,2420,1,0,0,0,2420,2421,1,0,0,0,2421,2426,3,136,68,0, - 2422,2423,5,3,0,0,2423,2425,3,136,68,0,2424,2422,1,0,0,0,2425,2428, - 1,0,0,0,2426,2424,1,0,0,0,2426,2427,1,0,0,0,2427,2430,1,0,0,0,2428, - 2426,1,0,0,0,2429,2419,1,0,0,0,2429,2430,1,0,0,0,2430,2441,1,0,0, - 0,2431,2432,5,195,0,0,2432,2433,5,36,0,0,2433,2438,3,50,25,0,2434, - 2435,5,3,0,0,2435,2437,3,50,25,0,2436,2434,1,0,0,0,2437,2440,1,0, - 0,0,2438,2436,1,0,0,0,2438,2439,1,0,0,0,2439,2442,1,0,0,0,2440,2438, - 1,0,0,0,2441,2431,1,0,0,0,2441,2442,1,0,0,0,2442,2443,1,0,0,0,2443, - 2445,5,2,0,0,2444,2446,3,192,96,0,2445,2444,1,0,0,0,2445,2446,1, - 0,0,0,2446,2451,1,0,0,0,2447,2449,3,166,83,0,2448,2447,1,0,0,0,2448, - 2449,1,0,0,0,2449,2450,1,0,0,0,2450,2452,3,196,98,0,2451,2448,1, - 0,0,0,2451,2452,1,0,0,0,2452,2772,1,0,0,0,2453,2454,3,294,147,0, - 2454,2455,3,196,98,0,2455,2772,1,0,0,0,2456,2457,3,294,147,0,2457, - 2458,5,7,0,0,2458,2459,3,136,68,0,2459,2772,1,0,0,0,2460,2469,5, - 1,0,0,2461,2466,3,294,147,0,2462,2463,5,3,0,0,2463,2465,3,294,147, - 0,2464,2462,1,0,0,0,2465,2468,1,0,0,0,2466,2464,1,0,0,0,2466,2467, - 1,0,0,0,2467,2470,1,0,0,0,2468,2466,1,0,0,0,2469,2461,1,0,0,0,2469, - 2470,1,0,0,0,2470,2471,1,0,0,0,2471,2472,5,2,0,0,2472,2473,5,7,0, - 0,2473,2772,3,136,68,0,2474,2475,5,1,0,0,2475,2476,3,22,11,0,2476, - 2477,5,2,0,0,2477,2772,1,0,0,0,2478,2479,5,94,0,0,2479,2480,5,1, - 0,0,2480,2481,3,22,11,0,2481,2482,5,2,0,0,2482,2772,1,0,0,0,2483, - 2484,5,40,0,0,2484,2486,3,136,68,0,2485,2487,3,190,95,0,2486,2485, - 1,0,0,0,2487,2488,1,0,0,0,2488,2486,1,0,0,0,2488,2489,1,0,0,0,2489, - 2492,1,0,0,0,2490,2491,5,84,0,0,2491,2493,3,136,68,0,2492,2490,1, - 0,0,0,2492,2493,1,0,0,0,2493,2494,1,0,0,0,2494,2495,5,88,0,0,2495, - 2772,1,0,0,0,2496,2498,5,40,0,0,2497,2499,3,190,95,0,2498,2497,1, - 0,0,0,2499,2500,1,0,0,0,2500,2498,1,0,0,0,2500,2501,1,0,0,0,2501, - 2504,1,0,0,0,2502,2503,5,84,0,0,2503,2505,3,136,68,0,2504,2502,1, - 0,0,0,2504,2505,1,0,0,0,2505,2506,1,0,0,0,2506,2507,5,88,0,0,2507, - 2772,1,0,0,0,2508,2509,5,41,0,0,2509,2510,5,1,0,0,2510,2511,3,136, - 68,0,2511,2512,5,28,0,0,2512,2513,3,184,92,0,2513,2514,5,2,0,0,2514, - 2772,1,0,0,0,2515,2516,5,275,0,0,2516,2517,5,1,0,0,2517,2518,3,136, - 68,0,2518,2519,5,28,0,0,2519,2520,3,184,92,0,2520,2521,5,2,0,0,2521, - 2772,1,0,0,0,2522,2523,5,27,0,0,2523,2532,5,8,0,0,2524,2529,3,136, - 68,0,2525,2526,5,3,0,0,2526,2528,3,136,68,0,2527,2525,1,0,0,0,2528, - 2531,1,0,0,0,2529,2527,1,0,0,0,2529,2530,1,0,0,0,2530,2533,1,0,0, - 0,2531,2529,1,0,0,0,2532,2524,1,0,0,0,2532,2533,1,0,0,0,2533,2534, - 1,0,0,0,2534,2772,5,9,0,0,2535,2772,3,294,147,0,2536,2772,5,58,0, - 0,2537,2541,5,62,0,0,2538,2539,5,1,0,0,2539,2540,5,329,0,0,2540, - 2542,5,2,0,0,2541,2538,1,0,0,0,2541,2542,1,0,0,0,2542,2772,1,0,0, - 0,2543,2547,5,63,0,0,2544,2545,5,1,0,0,2545,2546,5,329,0,0,2546, - 2548,5,2,0,0,2547,2544,1,0,0,0,2547,2548,1,0,0,0,2548,2772,1,0,0, - 0,2549,2553,5,158,0,0,2550,2551,5,1,0,0,2551,2552,5,329,0,0,2552, - 2554,5,2,0,0,2553,2550,1,0,0,0,2553,2554,1,0,0,0,2554,2772,1,0,0, - 0,2555,2559,5,159,0,0,2556,2557,5,1,0,0,2557,2558,5,329,0,0,2558, - 2560,5,2,0,0,2559,2556,1,0,0,0,2559,2560,1,0,0,0,2560,2772,1,0,0, - 0,2561,2772,5,64,0,0,2562,2772,5,57,0,0,2563,2772,5,61,0,0,2564, - 2772,5,59,0,0,2565,2566,5,272,0,0,2566,2574,5,1,0,0,2567,2569,3, - 82,41,0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570, - 2572,3,142,71,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2573,1, - 0,0,0,2573,2575,5,105,0,0,2574,2568,1,0,0,0,2574,2575,1,0,0,0,2575, - 2576,1,0,0,0,2576,2577,3,142,71,0,2577,2578,5,2,0,0,2578,2772,1, - 0,0,0,2579,2580,5,272,0,0,2580,2581,5,1,0,0,2581,2582,3,142,71,0, - 2582,2583,5,3,0,0,2583,2584,3,142,71,0,2584,2585,5,2,0,0,2585,2772, - 1,0,0,0,2586,2587,5,258,0,0,2587,2588,5,1,0,0,2588,2589,3,142,71, - 0,2589,2590,5,105,0,0,2590,2593,3,142,71,0,2591,2592,5,103,0,0,2592, - 2594,3,142,71,0,2593,2591,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1, - 0,0,0,2595,2596,5,2,0,0,2596,2772,1,0,0,0,2597,2598,5,181,0,0,2598, - 2599,5,1,0,0,2599,2602,3,142,71,0,2600,2601,5,3,0,0,2601,2603,3, - 182,91,0,2602,2600,1,0,0,0,2602,2603,1,0,0,0,2603,2604,1,0,0,0,2604, - 2605,5,2,0,0,2605,2772,1,0,0,0,2606,2607,5,96,0,0,2607,2608,5,1, - 0,0,2608,2609,3,294,147,0,2609,2610,5,105,0,0,2610,2611,3,142,71, - 0,2611,2612,5,2,0,0,2612,2772,1,0,0,0,2613,2614,5,1,0,0,2614,2615, - 3,136,68,0,2615,2616,5,2,0,0,2616,2772,1,0,0,0,2617,2618,5,115,0, - 0,2618,2627,5,1,0,0,2619,2624,3,280,140,0,2620,2621,5,3,0,0,2621, - 2623,3,280,140,0,2622,2620,1,0,0,0,2623,2626,1,0,0,0,2624,2622,1, - 0,0,0,2624,2625,1,0,0,0,2625,2628,1,0,0,0,2626,2624,1,0,0,0,2627, - 2619,1,0,0,0,2627,2628,1,0,0,0,2628,2629,1,0,0,0,2629,2772,5,2,0, - 0,2630,2631,5,139,0,0,2631,2632,5,1,0,0,2632,2637,3,146,73,0,2633, - 2634,3,154,77,0,2634,2635,5,190,0,0,2635,2636,5,89,0,0,2636,2638, - 1,0,0,0,2637,2633,1,0,0,0,2637,2638,1,0,0,0,2638,2639,1,0,0,0,2639, - 2640,5,2,0,0,2640,2772,1,0,0,0,2641,2642,5,143,0,0,2642,2643,5,1, - 0,0,2643,2646,3,146,73,0,2644,2645,5,231,0,0,2645,2647,3,184,92, - 0,2646,2644,1,0,0,0,2646,2647,1,0,0,0,2647,2652,1,0,0,0,2648,2649, - 3,156,78,0,2649,2650,5,190,0,0,2650,2651,5,85,0,0,2651,2653,1,0, - 0,0,2652,2648,1,0,0,0,2652,2653,1,0,0,0,2653,2658,1,0,0,0,2654,2655, - 3,156,78,0,2655,2656,5,190,0,0,2656,2657,5,89,0,0,2657,2659,1,0, - 0,0,2658,2654,1,0,0,0,2658,2659,1,0,0,0,2659,2660,1,0,0,0,2660,2661, - 5,2,0,0,2661,2772,1,0,0,0,2662,2663,5,141,0,0,2663,2664,5,1,0,0, - 2664,2671,3,146,73,0,2665,2666,5,231,0,0,2666,2669,3,184,92,0,2667, - 2668,5,104,0,0,2668,2670,3,150,75,0,2669,2667,1,0,0,0,2669,2670, - 1,0,0,0,2670,2672,1,0,0,0,2671,2665,1,0,0,0,2671,2672,1,0,0,0,2672, - 2676,1,0,0,0,2673,2674,3,158,79,0,2674,2675,5,308,0,0,2675,2677, - 1,0,0,0,2676,2673,1,0,0,0,2676,2677,1,0,0,0,2677,2685,1,0,0,0,2678, - 2679,7,15,0,0,2679,2683,5,218,0,0,2680,2681,5,190,0,0,2681,2682, - 5,242,0,0,2682,2684,5,264,0,0,2683,2680,1,0,0,0,2683,2684,1,0,0, - 0,2684,2686,1,0,0,0,2685,2678,1,0,0,0,2685,2686,1,0,0,0,2686,2691, - 1,0,0,0,2687,2688,3,160,80,0,2688,2689,5,190,0,0,2689,2690,5,85, - 0,0,2690,2692,1,0,0,0,2691,2687,1,0,0,0,2691,2692,1,0,0,0,2692,2697, - 1,0,0,0,2693,2694,3,160,80,0,2694,2695,5,190,0,0,2695,2696,5,89, - 0,0,2696,2698,1,0,0,0,2697,2693,1,0,0,0,2697,2698,1,0,0,0,2698,2699, - 1,0,0,0,2699,2700,5,2,0,0,2700,2772,1,0,0,0,2701,2702,5,140,0,0, - 2702,2731,5,1,0,0,2703,2708,3,162,81,0,2704,2705,5,3,0,0,2705,2707, - 3,162,81,0,2706,2704,1,0,0,0,2707,2710,1,0,0,0,2708,2706,1,0,0,0, - 2708,2709,1,0,0,0,2709,2717,1,0,0,0,2710,2708,1,0,0,0,2711,2712, - 5,183,0,0,2712,2713,5,190,0,0,2713,2718,5,183,0,0,2714,2715,5,18, - 0,0,2715,2716,5,190,0,0,2716,2718,5,183,0,0,2717,2711,1,0,0,0,2717, - 2714,1,0,0,0,2717,2718,1,0,0,0,2718,2729,1,0,0,0,2719,2720,5,304, - 0,0,2720,2722,5,282,0,0,2721,2723,5,146,0,0,2722,2721,1,0,0,0,2722, - 2723,1,0,0,0,2723,2730,1,0,0,0,2724,2725,5,306,0,0,2725,2727,5,282, - 0,0,2726,2728,5,146,0,0,2727,2726,1,0,0,0,2727,2728,1,0,0,0,2728, - 2730,1,0,0,0,2729,2719,1,0,0,0,2729,2724,1,0,0,0,2729,2730,1,0,0, - 0,2730,2732,1,0,0,0,2731,2703,1,0,0,0,2731,2732,1,0,0,0,2732,2739, - 1,0,0,0,2733,2734,5,231,0,0,2734,2737,3,184,92,0,2735,2736,5,104, - 0,0,2736,2738,3,150,75,0,2737,2735,1,0,0,0,2737,2738,1,0,0,0,2738, - 2740,1,0,0,0,2739,2733,1,0,0,0,2739,2740,1,0,0,0,2740,2741,1,0,0, - 0,2741,2772,5,2,0,0,2742,2743,5,138,0,0,2743,2760,5,1,0,0,2744,2749, - 3,148,74,0,2745,2746,5,3,0,0,2746,2748,3,148,74,0,2747,2745,1,0, - 0,0,2748,2751,1,0,0,0,2749,2747,1,0,0,0,2749,2750,1,0,0,0,2750,2758, - 1,0,0,0,2751,2749,1,0,0,0,2752,2753,5,183,0,0,2753,2754,5,190,0, - 0,2754,2759,5,183,0,0,2755,2756,5,18,0,0,2756,2757,5,190,0,0,2757, - 2759,5,183,0,0,2758,2752,1,0,0,0,2758,2755,1,0,0,0,2758,2759,1,0, - 0,0,2759,2761,1,0,0,0,2760,2744,1,0,0,0,2760,2761,1,0,0,0,2761,2768, - 1,0,0,0,2762,2763,5,231,0,0,2763,2766,3,184,92,0,2764,2765,5,104, - 0,0,2765,2767,3,150,75,0,2766,2764,1,0,0,0,2766,2767,1,0,0,0,2767, - 2769,1,0,0,0,2768,2762,1,0,0,0,2768,2769,1,0,0,0,2769,2770,1,0,0, - 0,2770,2772,5,2,0,0,2771,2318,1,0,0,0,2771,2320,1,0,0,0,2771,2321, - 1,0,0,0,2771,2324,1,0,0,0,2771,2327,1,0,0,0,2771,2328,1,0,0,0,2771, - 2329,1,0,0,0,2771,2330,1,0,0,0,2771,2331,1,0,0,0,2771,2332,1,0,0, - 0,2771,2339,1,0,0,0,2771,2349,1,0,0,0,2771,2361,1,0,0,0,2771,2396, - 1,0,0,0,2771,2414,1,0,0,0,2771,2453,1,0,0,0,2771,2456,1,0,0,0,2771, - 2460,1,0,0,0,2771,2474,1,0,0,0,2771,2478,1,0,0,0,2771,2483,1,0,0, - 0,2771,2496,1,0,0,0,2771,2508,1,0,0,0,2771,2515,1,0,0,0,2771,2522, - 1,0,0,0,2771,2535,1,0,0,0,2771,2536,1,0,0,0,2771,2537,1,0,0,0,2771, - 2543,1,0,0,0,2771,2549,1,0,0,0,2771,2555,1,0,0,0,2771,2561,1,0,0, - 0,2771,2562,1,0,0,0,2771,2563,1,0,0,0,2771,2564,1,0,0,0,2771,2565, - 1,0,0,0,2771,2579,1,0,0,0,2771,2586,1,0,0,0,2771,2597,1,0,0,0,2771, - 2606,1,0,0,0,2771,2613,1,0,0,0,2771,2617,1,0,0,0,2771,2630,1,0,0, - 0,2771,2641,1,0,0,0,2771,2662,1,0,0,0,2771,2701,1,0,0,0,2771,2742, - 1,0,0,0,2772,2783,1,0,0,0,2773,2774,10,24,0,0,2774,2775,5,8,0,0, - 2775,2776,3,142,71,0,2776,2777,5,9,0,0,2777,2782,1,0,0,0,2778,2779, - 10,22,0,0,2779,2780,5,4,0,0,2780,2782,3,294,147,0,2781,2773,1,0, - 0,0,2781,2778,1,0,0,0,2782,2785,1,0,0,0,2783,2781,1,0,0,0,2783,2784, - 1,0,0,0,2784,145,1,0,0,0,2785,2783,1,0,0,0,2786,2787,3,148,74,0, - 2787,2788,5,3,0,0,2788,2791,3,168,84,0,2789,2790,5,28,0,0,2790,2792, - 3,294,147,0,2791,2789,1,0,0,0,2791,2792,1,0,0,0,2792,2802,1,0,0, - 0,2793,2794,5,203,0,0,2794,2799,3,152,76,0,2795,2796,5,3,0,0,2796, - 2798,3,152,76,0,2797,2795,1,0,0,0,2798,2801,1,0,0,0,2799,2797,1, - 0,0,0,2799,2800,1,0,0,0,2800,2803,1,0,0,0,2801,2799,1,0,0,0,2802, - 2793,1,0,0,0,2802,2803,1,0,0,0,2803,147,1,0,0,0,2804,2807,3,136, - 68,0,2805,2806,5,104,0,0,2806,2808,3,150,75,0,2807,2805,1,0,0,0, - 2807,2808,1,0,0,0,2808,149,1,0,0,0,2809,2812,5,137,0,0,2810,2811, - 5,87,0,0,2811,2813,7,20,0,0,2812,2810,1,0,0,0,2812,2813,1,0,0,0, - 2813,151,1,0,0,0,2814,2815,3,148,74,0,2815,2816,5,28,0,0,2816,2817, - 3,294,147,0,2817,153,1,0,0,0,2818,2819,7,21,0,0,2819,155,1,0,0,0, - 2820,2825,5,89,0,0,2821,2825,5,183,0,0,2822,2823,5,70,0,0,2823,2825, - 3,136,68,0,2824,2820,1,0,0,0,2824,2821,1,0,0,0,2824,2822,1,0,0,0, - 2825,157,1,0,0,0,2826,2828,5,306,0,0,2827,2829,5,27,0,0,2828,2827, - 1,0,0,0,2828,2829,1,0,0,0,2829,2838,1,0,0,0,2830,2832,5,304,0,0, - 2831,2833,7,22,0,0,2832,2831,1,0,0,0,2832,2833,1,0,0,0,2833,2835, - 1,0,0,0,2834,2836,5,27,0,0,2835,2834,1,0,0,0,2835,2836,1,0,0,0,2836, - 2838,1,0,0,0,2837,2826,1,0,0,0,2837,2830,1,0,0,0,2838,159,1,0,0, - 0,2839,2846,5,89,0,0,2840,2846,5,183,0,0,2841,2842,5,85,0,0,2842, - 2846,5,27,0,0,2843,2844,5,85,0,0,2844,2846,5,186,0,0,2845,2839,1, - 0,0,0,2845,2840,1,0,0,0,2845,2841,1,0,0,0,2845,2843,1,0,0,0,2846, - 161,1,0,0,0,2847,2849,5,145,0,0,2848,2847,1,0,0,0,2848,2849,1,0, - 0,0,2849,2850,1,0,0,0,2850,2851,3,136,68,0,2851,2852,5,295,0,0,2852, - 2853,3,148,74,0,2853,2859,1,0,0,0,2854,2855,3,136,68,0,2855,2856, - 5,10,0,0,2856,2857,3,148,74,0,2857,2859,1,0,0,0,2858,2848,1,0,0, - 0,2858,2854,1,0,0,0,2859,163,1,0,0,0,2860,2861,7,23,0,0,2861,165, - 1,0,0,0,2862,2863,5,120,0,0,2863,2867,5,185,0,0,2864,2865,5,228, - 0,0,2865,2867,5,185,0,0,2866,2862,1,0,0,0,2866,2864,1,0,0,0,2867, - 167,1,0,0,0,2868,2875,5,326,0,0,2869,2872,5,327,0,0,2870,2871,5, - 277,0,0,2871,2873,5,326,0,0,2872,2870,1,0,0,0,2872,2873,1,0,0,0, - 2873,2875,1,0,0,0,2874,2868,1,0,0,0,2874,2869,1,0,0,0,2875,169,1, - 0,0,0,2876,2877,5,267,0,0,2877,2878,5,311,0,0,2878,2883,3,178,89, - 0,2879,2880,5,267,0,0,2880,2881,5,311,0,0,2881,2883,3,168,84,0,2882, - 2876,1,0,0,0,2882,2879,1,0,0,0,2883,171,1,0,0,0,2884,2885,7,24,0, - 0,2885,173,1,0,0,0,2886,2887,7,25,0,0,2887,175,1,0,0,0,2888,2889, - 7,26,0,0,2889,177,1,0,0,0,2890,2892,5,129,0,0,2891,2893,7,18,0,0, - 2892,2891,1,0,0,0,2892,2893,1,0,0,0,2893,2894,1,0,0,0,2894,2895, - 3,168,84,0,2895,2898,3,180,90,0,2896,2897,5,269,0,0,2897,2899,3, - 180,90,0,2898,2896,1,0,0,0,2898,2899,1,0,0,0,2899,179,1,0,0,0,2900, - 2901,7,27,0,0,2901,181,1,0,0,0,2902,2903,7,28,0,0,2903,183,1,0,0, - 0,2904,2905,6,92,-1,0,2905,2906,5,239,0,0,2906,2907,5,1,0,0,2907, - 2912,3,186,93,0,2908,2909,5,3,0,0,2909,2911,3,186,93,0,2910,2908, - 1,0,0,0,2911,2914,1,0,0,0,2912,2910,1,0,0,0,2912,2913,1,0,0,0,2913, - 2915,1,0,0,0,2914,2912,1,0,0,0,2915,2916,5,2,0,0,2916,2996,1,0,0, - 0,2917,2918,5,129,0,0,2918,2921,3,180,90,0,2919,2920,5,269,0,0,2920, - 2922,3,180,90,0,2921,2919,1,0,0,0,2921,2922,1,0,0,0,2922,2996,1, - 0,0,0,2923,2928,5,268,0,0,2924,2925,5,1,0,0,2925,2926,3,188,94,0, - 2926,2927,5,2,0,0,2927,2929,1,0,0,0,2928,2924,1,0,0,0,2928,2929, - 1,0,0,0,2929,2933,1,0,0,0,2930,2931,5,306,0,0,2931,2932,5,267,0, - 0,2932,2934,5,311,0,0,2933,2930,1,0,0,0,2933,2934,1,0,0,0,2934,2996, - 1,0,0,0,2935,2940,5,268,0,0,2936,2937,5,1,0,0,2937,2938,3,188,94, - 0,2938,2939,5,2,0,0,2939,2941,1,0,0,0,2940,2936,1,0,0,0,2940,2941, - 1,0,0,0,2941,2942,1,0,0,0,2942,2943,5,304,0,0,2943,2944,5,267,0, - 0,2944,2996,5,311,0,0,2945,2950,5,267,0,0,2946,2947,5,1,0,0,2947, - 2948,3,188,94,0,2948,2949,5,2,0,0,2949,2951,1,0,0,0,2950,2946,1, - 0,0,0,2950,2951,1,0,0,0,2951,2955,1,0,0,0,2952,2953,5,306,0,0,2953, - 2954,5,267,0,0,2954,2956,5,311,0,0,2955,2952,1,0,0,0,2955,2956,1, - 0,0,0,2956,2996,1,0,0,0,2957,2962,5,267,0,0,2958,2959,5,1,0,0,2959, - 2960,3,188,94,0,2960,2961,5,2,0,0,2961,2963,1,0,0,0,2962,2958,1, - 0,0,0,2962,2963,1,0,0,0,2963,2964,1,0,0,0,2964,2965,5,304,0,0,2965, - 2966,5,267,0,0,2966,2996,5,311,0,0,2967,2968,5,82,0,0,2968,2996, - 5,213,0,0,2969,2970,5,27,0,0,2970,2971,5,314,0,0,2971,2972,3,184, - 92,0,2972,2973,5,316,0,0,2973,2996,1,0,0,0,2974,2975,5,162,0,0,2975, - 2976,5,314,0,0,2976,2977,3,184,92,0,2977,2978,5,3,0,0,2978,2979, - 3,184,92,0,2979,2980,5,316,0,0,2980,2996,1,0,0,0,2981,2993,3,294, - 147,0,2982,2983,5,1,0,0,2983,2988,3,188,94,0,2984,2985,5,3,0,0,2985, - 2987,3,188,94,0,2986,2984,1,0,0,0,2987,2990,1,0,0,0,2988,2986,1, - 0,0,0,2988,2989,1,0,0,0,2989,2991,1,0,0,0,2990,2988,1,0,0,0,2991, - 2992,5,2,0,0,2992,2994,1,0,0,0,2993,2982,1,0,0,0,2993,2994,1,0,0, - 0,2994,2996,1,0,0,0,2995,2904,1,0,0,0,2995,2917,1,0,0,0,2995,2923, - 1,0,0,0,2995,2935,1,0,0,0,2995,2945,1,0,0,0,2995,2957,1,0,0,0,2995, - 2967,1,0,0,0,2995,2969,1,0,0,0,2995,2974,1,0,0,0,2995,2981,1,0,0, - 0,2996,3006,1,0,0,0,2997,2998,10,2,0,0,2998,3002,5,27,0,0,2999,3000, - 5,8,0,0,3000,3001,5,329,0,0,3001,3003,5,9,0,0,3002,2999,1,0,0,0, - 3002,3003,1,0,0,0,3003,3005,1,0,0,0,3004,2997,1,0,0,0,3005,3008, - 1,0,0,0,3006,3004,1,0,0,0,3006,3007,1,0,0,0,3007,185,1,0,0,0,3008, - 3006,1,0,0,0,3009,3014,3,184,92,0,3010,3011,3,294,147,0,3011,3012, - 3,184,92,0,3012,3014,1,0,0,0,3013,3009,1,0,0,0,3013,3010,1,0,0,0, - 3014,187,1,0,0,0,3015,3018,5,329,0,0,3016,3018,3,184,92,0,3017,3015, - 1,0,0,0,3017,3016,1,0,0,0,3018,189,1,0,0,0,3019,3020,5,300,0,0,3020, - 3021,3,136,68,0,3021,3022,5,265,0,0,3022,3023,3,136,68,0,3023,191, - 1,0,0,0,3024,3025,5,99,0,0,3025,3026,5,1,0,0,3026,3027,5,301,0,0, - 3027,3028,3,138,69,0,3028,3029,5,2,0,0,3029,193,1,0,0,0,3030,3031, - 5,300,0,0,3031,3034,5,164,0,0,3032,3033,5,25,0,0,3033,3035,3,136, - 68,0,3034,3032,1,0,0,0,3034,3035,1,0,0,0,3035,3036,1,0,0,0,3036, - 3037,5,265,0,0,3037,3038,5,287,0,0,3038,3039,5,251,0,0,3039,3040, - 3,294,147,0,3040,3041,5,312,0,0,3041,3049,3,136,68,0,3042,3043,5, - 3,0,0,3043,3044,3,294,147,0,3044,3045,5,312,0,0,3045,3046,3,136, - 68,0,3046,3048,1,0,0,0,3047,3042,1,0,0,0,3048,3051,1,0,0,0,3049, - 3047,1,0,0,0,3049,3050,1,0,0,0,3050,3095,1,0,0,0,3051,3049,1,0,0, - 0,3052,3053,5,300,0,0,3053,3056,5,164,0,0,3054,3055,5,25,0,0,3055, - 3057,3,136,68,0,3056,3054,1,0,0,0,3056,3057,1,0,0,0,3057,3058,1, - 0,0,0,3058,3059,5,265,0,0,3059,3095,5,73,0,0,3060,3061,5,300,0,0, - 3061,3062,5,182,0,0,3062,3065,5,164,0,0,3063,3064,5,25,0,0,3064, - 3066,3,136,68,0,3065,3063,1,0,0,0,3065,3066,1,0,0,0,3066,3067,1, - 0,0,0,3067,3068,5,265,0,0,3068,3080,5,127,0,0,3069,3070,5,1,0,0, - 3070,3075,3,294,147,0,3071,3072,5,3,0,0,3072,3074,3,294,147,0,3073, - 3071,1,0,0,0,3074,3077,1,0,0,0,3075,3073,1,0,0,0,3075,3076,1,0,0, - 0,3076,3078,1,0,0,0,3077,3075,1,0,0,0,3078,3079,5,2,0,0,3079,3081, - 1,0,0,0,3080,3069,1,0,0,0,3080,3081,1,0,0,0,3081,3082,1,0,0,0,3082, - 3083,5,296,0,0,3083,3084,5,1,0,0,3084,3089,3,136,68,0,3085,3086, - 5,3,0,0,3086,3088,3,136,68,0,3087,3085,1,0,0,0,3088,3091,1,0,0,0, - 3089,3087,1,0,0,0,3089,3090,1,0,0,0,3090,3092,1,0,0,0,3091,3089, - 1,0,0,0,3092,3093,5,2,0,0,3093,3095,1,0,0,0,3094,3030,1,0,0,0,3094, - 3052,1,0,0,0,3094,3060,1,0,0,0,3095,195,1,0,0,0,3096,3102,5,199, - 0,0,3097,3103,3,294,147,0,3098,3099,5,1,0,0,3099,3100,3,64,32,0, - 3100,3101,5,2,0,0,3101,3103,1,0,0,0,3102,3097,1,0,0,0,3102,3098, - 1,0,0,0,3103,197,1,0,0,0,3104,3105,5,168,0,0,3105,3110,3,90,45,0, - 3106,3107,5,3,0,0,3107,3109,3,90,45,0,3108,3106,1,0,0,0,3109,3112, - 1,0,0,0,3110,3108,1,0,0,0,3110,3111,1,0,0,0,3111,3114,1,0,0,0,3112, - 3110,1,0,0,0,3113,3104,1,0,0,0,3113,3114,1,0,0,0,3114,3115,1,0,0, - 0,3115,3119,3,200,100,0,3116,3117,5,21,0,0,3117,3118,5,163,0,0,3118, - 3120,3,96,48,0,3119,3116,1,0,0,0,3119,3120,1,0,0,0,3120,3122,1,0, - 0,0,3121,3123,7,13,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0,3123, - 3129,1,0,0,0,3124,3125,5,206,0,0,3125,3126,5,1,0,0,3126,3127,3,204, - 102,0,3127,3128,5,2,0,0,3128,3130,1,0,0,0,3129,3124,1,0,0,0,3129, - 3130,1,0,0,0,3130,3140,1,0,0,0,3131,3132,5,257,0,0,3132,3137,3,98, - 49,0,3133,3134,5,3,0,0,3134,3136,3,98,49,0,3135,3133,1,0,0,0,3136, - 3139,1,0,0,0,3137,3135,1,0,0,0,3137,3138,1,0,0,0,3138,3141,1,0,0, - 0,3139,3137,1,0,0,0,3140,3131,1,0,0,0,3140,3141,1,0,0,0,3141,3151, - 1,0,0,0,3142,3143,5,71,0,0,3143,3148,3,100,50,0,3144,3145,5,3,0, - 0,3145,3147,3,100,50,0,3146,3144,1,0,0,0,3147,3150,1,0,0,0,3148, - 3146,1,0,0,0,3148,3149,1,0,0,0,3149,3152,1,0,0,0,3150,3148,1,0,0, - 0,3151,3142,1,0,0,0,3151,3152,1,0,0,0,3152,199,1,0,0,0,3153,3154, - 5,219,0,0,3154,3178,3,202,101,0,3155,3156,5,240,0,0,3156,3178,3, - 202,101,0,3157,3158,5,116,0,0,3158,3178,3,202,101,0,3159,3160,5, - 219,0,0,3160,3161,5,34,0,0,3161,3162,3,202,101,0,3162,3163,5,25, - 0,0,3163,3164,3,202,101,0,3164,3178,1,0,0,0,3165,3166,5,240,0,0, - 3166,3167,5,34,0,0,3167,3168,3,202,101,0,3168,3169,5,25,0,0,3169, - 3170,3,202,101,0,3170,3178,1,0,0,0,3171,3172,5,116,0,0,3172,3173, - 5,34,0,0,3173,3174,3,202,101,0,3174,3175,5,25,0,0,3175,3176,3,202, - 101,0,3176,3178,1,0,0,0,3177,3153,1,0,0,0,3177,3155,1,0,0,0,3177, - 3157,1,0,0,0,3177,3159,1,0,0,0,3177,3165,1,0,0,0,3177,3171,1,0,0, - 0,3178,201,1,0,0,0,3179,3180,5,278,0,0,3180,3189,5,212,0,0,3181, - 3182,5,278,0,0,3182,3189,5,102,0,0,3183,3184,5,56,0,0,3184,3189, - 5,239,0,0,3185,3186,3,136,68,0,3186,3187,7,29,0,0,3187,3189,1,0, - 0,0,3188,3179,1,0,0,0,3188,3181,1,0,0,0,3188,3183,1,0,0,0,3188,3185, - 1,0,0,0,3189,203,1,0,0,0,3190,3191,6,102,-1,0,3191,3193,3,206,103, - 0,3192,3194,3,208,104,0,3193,3192,1,0,0,0,3193,3194,1,0,0,0,3194, - 3202,1,0,0,0,3195,3196,10,2,0,0,3196,3201,3,204,102,3,3197,3198, - 10,1,0,0,3198,3199,5,11,0,0,3199,3201,3,204,102,2,3200,3195,1,0, - 0,0,3200,3197,1,0,0,0,3201,3204,1,0,0,0,3202,3200,1,0,0,0,3202,3203, - 1,0,0,0,3203,205,1,0,0,0,3204,3202,1,0,0,0,3205,3231,3,294,147,0, - 3206,3207,5,1,0,0,3207,3231,5,2,0,0,3208,3209,5,209,0,0,3209,3210, - 5,1,0,0,3210,3215,3,204,102,0,3211,3212,5,3,0,0,3212,3214,3,204, - 102,0,3213,3211,1,0,0,0,3214,3217,1,0,0,0,3215,3213,1,0,0,0,3215, - 3216,1,0,0,0,3216,3218,1,0,0,0,3217,3215,1,0,0,0,3218,3219,5,2,0, - 0,3219,3231,1,0,0,0,3220,3221,5,1,0,0,3221,3222,3,204,102,0,3222, - 3223,5,2,0,0,3223,3231,1,0,0,0,3224,3231,5,12,0,0,3225,3231,5,13, - 0,0,3226,3227,5,14,0,0,3227,3228,3,204,102,0,3228,3229,5,15,0,0, - 3229,3231,1,0,0,0,3230,3205,1,0,0,0,3230,3206,1,0,0,0,3230,3208, - 1,0,0,0,3230,3220,1,0,0,0,3230,3224,1,0,0,0,3230,3225,1,0,0,0,3230, - 3226,1,0,0,0,3231,207,1,0,0,0,3232,3234,5,320,0,0,3233,3235,5,324, - 0,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0,3235,3263,1,0,0,0,3236,3238, - 5,318,0,0,3237,3239,5,324,0,0,3238,3237,1,0,0,0,3238,3239,1,0,0, - 0,3239,3263,1,0,0,0,3240,3242,5,324,0,0,3241,3243,5,324,0,0,3242, - 3241,1,0,0,0,3242,3243,1,0,0,0,3243,3263,1,0,0,0,3244,3245,5,16, - 0,0,3245,3246,5,329,0,0,3246,3248,5,17,0,0,3247,3249,5,324,0,0,3248, - 3247,1,0,0,0,3248,3249,1,0,0,0,3249,3263,1,0,0,0,3250,3252,5,16, - 0,0,3251,3253,5,329,0,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0,3253, - 3254,1,0,0,0,3254,3256,5,3,0,0,3255,3257,5,329,0,0,3256,3255,1,0, - 0,0,3256,3257,1,0,0,0,3257,3258,1,0,0,0,3258,3260,5,17,0,0,3259, - 3261,5,324,0,0,3260,3259,1,0,0,0,3260,3261,1,0,0,0,3261,3263,1,0, - 0,0,3262,3232,1,0,0,0,3262,3236,1,0,0,0,3262,3240,1,0,0,0,3262,3244, - 1,0,0,0,3262,3250,1,0,0,0,3263,209,1,0,0,0,3264,3265,3,294,147,0, - 3265,3266,5,312,0,0,3266,3267,3,136,68,0,3267,211,1,0,0,0,3268,3269, - 5,104,0,0,3269,3273,7,30,0,0,3270,3271,5,276,0,0,3271,3273,7,31, - 0,0,3272,3268,1,0,0,0,3272,3270,1,0,0,0,3273,213,1,0,0,0,3274,3275, - 5,134,0,0,3275,3276,5,153,0,0,3276,3280,3,216,108,0,3277,3278,5, - 220,0,0,3278,3280,7,32,0,0,3279,3274,1,0,0,0,3279,3277,1,0,0,0,3280, - 215,1,0,0,0,3281,3282,5,220,0,0,3282,3289,5,279,0,0,3283,3284,5, - 220,0,0,3284,3289,5,48,0,0,3285,3286,5,225,0,0,3286,3289,5,220,0, - 0,3287,3289,5,249,0,0,3288,3281,1,0,0,0,3288,3283,1,0,0,0,3288,3285, - 1,0,0,0,3288,3287,1,0,0,0,3289,217,1,0,0,0,3290,3296,3,136,68,0, - 3291,3292,3,294,147,0,3292,3293,5,6,0,0,3293,3294,3,136,68,0,3294, - 3296,1,0,0,0,3295,3290,1,0,0,0,3295,3291,1,0,0,0,3296,219,1,0,0, - 0,3297,3298,3,294,147,0,3298,3299,5,4,0,0,3299,3300,3,294,147,0, - 3300,3303,1,0,0,0,3301,3303,3,294,147,0,3302,3297,1,0,0,0,3302,3301, - 1,0,0,0,3303,221,1,0,0,0,3304,3309,3,220,110,0,3305,3306,5,3,0,0, - 3306,3308,3,220,110,0,3307,3305,1,0,0,0,3308,3311,1,0,0,0,3309,3307, - 1,0,0,0,3309,3310,1,0,0,0,3310,223,1,0,0,0,3311,3309,1,0,0,0,3312, - 3313,5,107,0,0,3313,3314,3,226,113,0,3314,3318,3,232,116,0,3315, - 3317,3,234,117,0,3316,3315,1,0,0,0,3317,3320,1,0,0,0,3318,3316,1, - 0,0,0,3318,3319,1,0,0,0,3319,3321,1,0,0,0,3320,3318,1,0,0,0,3321, - 3322,3,236,118,0,3322,225,1,0,0,0,3323,3324,3,274,137,0,3324,3333, - 5,1,0,0,3325,3330,3,230,115,0,3326,3327,5,3,0,0,3327,3329,3,230, - 115,0,3328,3326,1,0,0,0,3329,3332,1,0,0,0,3330,3328,1,0,0,0,3330, - 3331,1,0,0,0,3331,3334,1,0,0,0,3332,3330,1,0,0,0,3333,3325,1,0,0, - 0,3333,3334,1,0,0,0,3334,3335,1,0,0,0,3335,3336,5,2,0,0,3336,227, - 1,0,0,0,3337,3338,3,272,136,0,3338,3347,5,1,0,0,3339,3344,3,230, - 115,0,3340,3341,5,3,0,0,3341,3343,3,230,115,0,3342,3340,1,0,0,0, - 3343,3346,1,0,0,0,3344,3342,1,0,0,0,3344,3345,1,0,0,0,3345,3348, - 1,0,0,0,3346,3344,1,0,0,0,3347,3339,1,0,0,0,3347,3348,1,0,0,0,3348, - 3349,1,0,0,0,3349,3350,5,2,0,0,3350,229,1,0,0,0,3351,3353,3,294, - 147,0,3352,3351,1,0,0,0,3352,3353,1,0,0,0,3353,3354,1,0,0,0,3354, - 3355,3,184,92,0,3355,231,1,0,0,0,3356,3357,5,232,0,0,3357,3358,3, - 184,92,0,3358,233,1,0,0,0,3359,3360,5,147,0,0,3360,3379,3,294,147, - 0,3361,3363,5,182,0,0,3362,3361,1,0,0,0,3362,3363,1,0,0,0,3363,3364, - 1,0,0,0,3364,3379,5,78,0,0,3365,3366,5,232,0,0,3366,3367,5,183,0, - 0,3367,3368,5,190,0,0,3368,3369,5,183,0,0,3369,3379,5,126,0,0,3370, - 3371,5,38,0,0,3371,3372,5,190,0,0,3372,3373,5,183,0,0,3373,3379, - 5,126,0,0,3374,3375,5,246,0,0,3375,3379,7,1,0,0,3376,3377,5,46,0, - 0,3377,3379,3,168,84,0,3378,3359,1,0,0,0,3378,3362,1,0,0,0,3378, - 3365,1,0,0,0,3378,3370,1,0,0,0,3378,3374,1,0,0,0,3378,3376,1,0,0, - 0,3379,235,1,0,0,0,3380,3381,5,230,0,0,3381,3480,3,142,71,0,3382, - 3383,5,251,0,0,3383,3384,3,294,147,0,3384,3385,5,312,0,0,3385,3386, - 3,136,68,0,3386,3480,1,0,0,0,3387,3388,5,40,0,0,3388,3390,3,136, - 68,0,3389,3391,3,238,119,0,3390,3389,1,0,0,0,3391,3392,1,0,0,0,3392, - 3390,1,0,0,0,3392,3393,1,0,0,0,3393,3395,1,0,0,0,3394,3396,3,242, - 121,0,3395,3394,1,0,0,0,3395,3396,1,0,0,0,3396,3397,1,0,0,0,3397, - 3398,5,88,0,0,3398,3399,5,40,0,0,3399,3480,1,0,0,0,3400,3402,5,40, - 0,0,3401,3403,3,238,119,0,3402,3401,1,0,0,0,3403,3404,1,0,0,0,3404, - 3402,1,0,0,0,3404,3405,1,0,0,0,3405,3407,1,0,0,0,3406,3408,3,242, - 121,0,3407,3406,1,0,0,0,3407,3408,1,0,0,0,3408,3409,1,0,0,0,3409, - 3410,5,88,0,0,3410,3411,5,40,0,0,3411,3480,1,0,0,0,3412,3413,5,119, - 0,0,3413,3414,3,136,68,0,3414,3415,5,265,0,0,3415,3419,3,246,123, - 0,3416,3418,3,240,120,0,3417,3416,1,0,0,0,3418,3421,1,0,0,0,3419, - 3417,1,0,0,0,3419,3420,1,0,0,0,3420,3423,1,0,0,0,3421,3419,1,0,0, - 0,3422,3424,3,242,121,0,3423,3422,1,0,0,0,3423,3424,1,0,0,0,3424, - 3425,1,0,0,0,3425,3426,5,88,0,0,3426,3427,5,119,0,0,3427,3480,1, - 0,0,0,3428,3429,5,135,0,0,3429,3480,3,294,147,0,3430,3431,5,151, - 0,0,3431,3480,3,294,147,0,3432,3438,5,32,0,0,3433,3434,3,244,122, - 0,3434,3435,5,325,0,0,3435,3437,1,0,0,0,3436,3433,1,0,0,0,3437,3440, - 1,0,0,0,3438,3436,1,0,0,0,3438,3439,1,0,0,0,3439,3442,1,0,0,0,3440, - 3438,1,0,0,0,3441,3443,3,246,123,0,3442,3441,1,0,0,0,3442,3443,1, - 0,0,0,3443,3444,1,0,0,0,3444,3480,5,88,0,0,3445,3446,3,294,147,0, - 3446,3447,5,10,0,0,3447,3449,1,0,0,0,3448,3445,1,0,0,0,3448,3449, - 1,0,0,0,3449,3450,1,0,0,0,3450,3451,5,161,0,0,3451,3452,3,246,123, - 0,3452,3453,5,88,0,0,3453,3454,5,161,0,0,3454,3480,1,0,0,0,3455, - 3456,3,294,147,0,3456,3457,5,10,0,0,3457,3459,1,0,0,0,3458,3455, - 1,0,0,0,3458,3459,1,0,0,0,3459,3460,1,0,0,0,3460,3461,5,302,0,0, - 3461,3462,3,136,68,0,3462,3463,5,81,0,0,3463,3464,3,246,123,0,3464, - 3465,5,88,0,0,3465,3466,5,302,0,0,3466,3480,1,0,0,0,3467,3468,3, - 294,147,0,3468,3469,5,10,0,0,3469,3471,1,0,0,0,3470,3467,1,0,0,0, - 3470,3471,1,0,0,0,3471,3472,1,0,0,0,3472,3473,5,224,0,0,3473,3474, - 3,246,123,0,3474,3475,5,286,0,0,3475,3476,3,136,68,0,3476,3477,5, - 88,0,0,3477,3478,5,224,0,0,3478,3480,1,0,0,0,3479,3380,1,0,0,0,3479, - 3382,1,0,0,0,3479,3387,1,0,0,0,3479,3400,1,0,0,0,3479,3412,1,0,0, - 0,3479,3428,1,0,0,0,3479,3430,1,0,0,0,3479,3432,1,0,0,0,3479,3448, - 1,0,0,0,3479,3458,1,0,0,0,3479,3470,1,0,0,0,3480,237,1,0,0,0,3481, - 3482,5,300,0,0,3482,3483,3,136,68,0,3483,3484,5,265,0,0,3484,3485, - 3,246,123,0,3485,239,1,0,0,0,3486,3487,5,86,0,0,3487,3488,3,136, - 68,0,3488,3489,5,265,0,0,3489,3490,3,246,123,0,3490,241,1,0,0,0, - 3491,3492,5,84,0,0,3492,3493,3,246,123,0,3493,243,1,0,0,0,3494,3495, - 5,69,0,0,3495,3500,3,294,147,0,3496,3497,5,3,0,0,3497,3499,3,294, - 147,0,3498,3496,1,0,0,0,3499,3502,1,0,0,0,3500,3498,1,0,0,0,3500, - 3501,1,0,0,0,3501,3503,1,0,0,0,3502,3500,1,0,0,0,3503,3506,3,184, - 92,0,3504,3505,5,70,0,0,3505,3507,3,142,71,0,3506,3504,1,0,0,0,3506, - 3507,1,0,0,0,3507,245,1,0,0,0,3508,3509,3,236,118,0,3509,3510,5, - 325,0,0,3510,3512,1,0,0,0,3511,3508,1,0,0,0,3512,3513,1,0,0,0,3513, - 3511,1,0,0,0,3513,3514,1,0,0,0,3514,247,1,0,0,0,3515,3522,5,53,0, - 0,3516,3522,5,248,0,0,3517,3522,5,73,0,0,3518,3522,5,127,0,0,3519, - 3522,5,287,0,0,3520,3522,3,294,147,0,3521,3515,1,0,0,0,3521,3516, - 1,0,0,0,3521,3517,1,0,0,0,3521,3518,1,0,0,0,3521,3519,1,0,0,0,3521, - 3520,1,0,0,0,3522,249,1,0,0,0,3523,3527,5,260,0,0,3524,3527,5,243, - 0,0,3525,3527,3,294,147,0,3526,3523,1,0,0,0,3526,3524,1,0,0,0,3526, - 3525,1,0,0,0,3527,251,1,0,0,0,3528,3530,3,250,125,0,3529,3528,1, - 0,0,0,3529,3530,1,0,0,0,3530,3531,1,0,0,0,3531,3532,3,280,140,0, - 3532,253,1,0,0,0,3533,3536,3,256,128,0,3534,3536,3,260,130,0,3535, - 3533,1,0,0,0,3535,3534,1,0,0,0,3536,255,1,0,0,0,3537,3549,3,294, - 147,0,3538,3539,3,294,147,0,3539,3540,5,4,0,0,3540,3541,3,294,147, - 0,3541,3549,1,0,0,0,3542,3543,3,294,147,0,3543,3544,5,4,0,0,3544, - 3545,3,294,147,0,3545,3546,5,4,0,0,3546,3547,3,294,147,0,3547,3549, - 1,0,0,0,3548,3537,1,0,0,0,3548,3538,1,0,0,0,3548,3542,1,0,0,0,3549, - 257,1,0,0,0,3550,3562,3,294,147,0,3551,3552,3,294,147,0,3552,3553, - 5,4,0,0,3553,3554,3,294,147,0,3554,3562,1,0,0,0,3555,3556,3,294, - 147,0,3556,3557,5,4,0,0,3557,3558,3,294,147,0,3558,3559,5,4,0,0, - 3559,3560,3,294,147,0,3560,3562,1,0,0,0,3561,3550,1,0,0,0,3561,3551, - 1,0,0,0,3561,3555,1,0,0,0,3562,259,1,0,0,0,3563,3575,3,294,147,0, - 3564,3565,3,294,147,0,3565,3566,5,4,0,0,3566,3567,3,294,147,0,3567, - 3575,1,0,0,0,3568,3569,3,294,147,0,3569,3570,5,4,0,0,3570,3571,3, - 294,147,0,3571,3572,5,4,0,0,3572,3573,3,294,147,0,3573,3575,1,0, - 0,0,3574,3563,1,0,0,0,3574,3564,1,0,0,0,3574,3568,1,0,0,0,3575,261, - 1,0,0,0,3576,3588,3,294,147,0,3577,3578,3,294,147,0,3578,3579,5, - 4,0,0,3579,3580,3,294,147,0,3580,3588,1,0,0,0,3581,3582,3,294,147, - 0,3582,3583,5,4,0,0,3583,3584,3,294,147,0,3584,3585,5,4,0,0,3585, - 3586,3,294,147,0,3586,3588,1,0,0,0,3587,3576,1,0,0,0,3587,3577,1, - 0,0,0,3587,3581,1,0,0,0,3588,263,1,0,0,0,3589,3595,3,294,147,0,3590, - 3591,3,294,147,0,3591,3592,5,4,0,0,3592,3593,3,294,147,0,3593,3595, - 1,0,0,0,3594,3589,1,0,0,0,3594,3590,1,0,0,0,3595,265,1,0,0,0,3596, - 3602,3,294,147,0,3597,3598,3,294,147,0,3598,3599,5,4,0,0,3599,3600, - 3,294,147,0,3600,3602,1,0,0,0,3601,3596,1,0,0,0,3601,3597,1,0,0, - 0,3602,267,1,0,0,0,3603,3604,3,294,147,0,3604,269,1,0,0,0,3605,3606, - 3,294,147,0,3606,271,1,0,0,0,3607,3608,3,280,140,0,3608,273,1,0, - 0,0,3609,3610,3,280,140,0,3610,275,1,0,0,0,3611,3614,3,280,140,0, - 3612,3614,4,138,14,0,3613,3611,1,0,0,0,3613,3612,1,0,0,0,3614,277, - 1,0,0,0,3615,3616,3,294,147,0,3616,279,1,0,0,0,3617,3622,3,294,147, - 0,3618,3619,5,4,0,0,3619,3621,3,294,147,0,3620,3618,1,0,0,0,3621, - 3624,1,0,0,0,3622,3620,1,0,0,0,3622,3623,1,0,0,0,3623,281,1,0,0, - 0,3624,3622,1,0,0,0,3625,3626,5,103,0,0,3626,3627,3,284,142,0,3627, - 3628,5,28,0,0,3628,3629,5,187,0,0,3629,3630,3,142,71,0,3630,283, - 1,0,0,0,3631,3632,7,33,0,0,3632,285,1,0,0,0,3633,3637,3,288,144, - 0,3634,3637,5,64,0,0,3635,3637,5,60,0,0,3636,3633,1,0,0,0,3636,3634, - 1,0,0,0,3636,3635,1,0,0,0,3637,287,1,0,0,0,3638,3644,3,294,147,0, - 3639,3640,5,289,0,0,3640,3644,3,294,147,0,3641,3642,5,235,0,0,3642, - 3644,3,294,147,0,3643,3638,1,0,0,0,3643,3639,1,0,0,0,3643,3641,1, - 0,0,0,3644,289,1,0,0,0,3645,3650,3,294,147,0,3646,3647,5,3,0,0,3647, - 3649,3,294,147,0,3648,3646,1,0,0,0,3649,3652,1,0,0,0,3650,3648,1, - 0,0,0,3650,3651,1,0,0,0,3651,291,1,0,0,0,3652,3650,1,0,0,0,3653, - 3661,5,53,0,0,3654,3661,5,248,0,0,3655,3661,5,73,0,0,3656,3661,5, - 127,0,0,3657,3661,5,287,0,0,3658,3661,5,93,0,0,3659,3661,3,294,147, - 0,3660,3653,1,0,0,0,3660,3654,1,0,0,0,3660,3655,1,0,0,0,3660,3656, - 1,0,0,0,3660,3657,1,0,0,0,3660,3658,1,0,0,0,3660,3659,1,0,0,0,3661, - 293,1,0,0,0,3662,3668,5,332,0,0,3663,3668,5,334,0,0,3664,3668,3, - 300,150,0,3665,3668,5,335,0,0,3666,3668,5,333,0,0,3667,3662,1,0, - 0,0,3667,3663,1,0,0,0,3667,3664,1,0,0,0,3667,3665,1,0,0,0,3667,3666, - 1,0,0,0,3668,295,1,0,0,0,3669,3671,5,319,0,0,3670,3669,1,0,0,0,3670, - 3671,1,0,0,0,3671,3672,1,0,0,0,3672,3682,5,330,0,0,3673,3675,5,319, - 0,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0,3675,3676,1,0,0,0,3676,3682, - 5,331,0,0,3677,3679,5,319,0,0,3678,3677,1,0,0,0,3678,3679,1,0,0, - 0,3679,3680,1,0,0,0,3680,3682,5,329,0,0,3681,3670,1,0,0,0,3681,3674, - 1,0,0,0,3681,3678,1,0,0,0,3682,297,1,0,0,0,3683,3686,3,294,147,0, - 3684,3686,3,168,84,0,3685,3683,1,0,0,0,3685,3684,1,0,0,0,3686,299, - 1,0,0,0,3687,3688,7,34,0,0,3688,301,1,0,0,0,480,305,314,318,322, - 326,330,343,350,354,358,364,368,375,380,384,390,394,413,419,423, - 427,431,439,443,446,451,457,466,472,476,482,489,498,510,519,528, - 534,545,553,561,568,578,585,593,608,643,646,649,653,659,664,671, - 677,681,685,693,699,703,707,721,729,748,773,776,783,790,799,803, - 810,818,827,833,838,842,850,855,864,870,877,886,892,896,902,909, - 914,927,932,944,948,954,963,968,974,1002,1008,1010,1016,1022,1024, - 1032,1034,1044,1046,1061,1066,1073,1083,1089,1091,1099,1101,1126, - 1129,1133,1137,1155,1158,1169,1172,1188,1198,1203,1209,1212,1221, - 1233,1236,1246,1250,1256,1263,1268,1274,1278,1282,1288,1299,1308, - 1318,1321,1326,1328,1335,1341,1343,1347,1357,1363,1366,1368,1380, - 1387,1391,1394,1398,1402,1409,1418,1421,1425,1430,1434,1442,1445, - 1448,1455,1466,1469,1479,1482,1493,1498,1506,1509,1513,1517,1526, - 1535,1538,1547,1550,1553,1557,1568,1571,1574,1581,1584,1603,1607, - 1611,1615,1619,1623,1625,1636,1641,1650,1659,1662,1668,1680,1683, - 1692,1695,1703,1706,1709,1714,1717,1729,1732,1740,1745,1749,1751, - 1753,1768,1770,1781,1802,1812,1823,1827,1829,1837,1848,1859,1866, - 1879,1885,1911,1926,1931,1935,1945,1951,1957,1965,1970,1977,1979, - 1985,1991,1995,2000,2009,2014,2028,2038,2041,2050,2055,2060,2062, - 2071,2074,2082,2085,2092,2097,2108,2111,2115,2117,2125,2135,2141, - 2143,2150,2154,2156,2163,2167,2169,2171,2180,2191,2195,2205,2215, - 2219,2227,2229,2242,2250,2259,2265,2273,2279,2283,2288,2293,2299, - 2313,2315,2345,2356,2364,2369,2374,2387,2393,2396,2403,2408,2411, - 2414,2419,2426,2429,2438,2441,2445,2448,2451,2466,2469,2488,2492, - 2500,2504,2529,2532,2541,2547,2553,2559,2568,2571,2574,2593,2602, - 2624,2627,2637,2646,2652,2658,2669,2671,2676,2683,2685,2691,2697, - 2708,2717,2722,2727,2729,2731,2737,2739,2749,2758,2760,2766,2768, - 2771,2781,2783,2791,2799,2802,2807,2812,2824,2828,2832,2835,2837, - 2845,2848,2858,2866,2872,2874,2882,2892,2898,2912,2921,2928,2933, - 2940,2950,2955,2962,2988,2993,2995,3002,3006,3013,3017,3034,3049, - 3056,3065,3075,3080,3089,3094,3102,3110,3113,3119,3122,3129,3137, - 3140,3148,3151,3177,3188,3193,3200,3202,3215,3230,3234,3238,3242, - 3248,3252,3256,3260,3262,3272,3279,3288,3295,3302,3309,3318,3330, - 3333,3344,3347,3352,3362,3378,3392,3395,3404,3407,3419,3423,3438, - 3442,3448,3458,3470,3479,3500,3506,3513,3521,3526,3529,3535,3548, - 3561,3574,3587,3594,3601,3613,3622,3636,3643,3650,3660,3667,3670, - 3674,3678,3681,3685 + 291,295,297,299,302,303,305,311,4247,0,309,1,0,0,0,2,314,1,0,0,0, + 4,316,1,0,0,0,6,320,1,0,0,0,8,324,1,0,0,0,10,328,1,0,0,0,12,332, + 1,0,0,0,14,336,1,0,0,0,16,1234,1,0,0,0,18,1237,1,0,0,0,20,1241,1, + 0,0,0,22,1251,1,0,0,0,24,1255,1,0,0,0,26,1269,1,0,0,0,28,1271,1, + 0,0,0,30,1285,1,0,0,0,32,1291,1,0,0,0,34,1295,1,0,0,0,36,1303,1, + 0,0,0,38,1309,1,0,0,0,40,1311,1,0,0,0,42,1348,1,0,0,0,44,1350,1, + 0,0,0,46,1352,1,0,0,0,48,1388,1,0,0,0,50,1392,1,0,0,0,52,1401,1, + 0,0,0,54,1447,1,0,0,0,56,1451,1,0,0,0,58,1501,1,0,0,0,60,1516,1, + 0,0,0,62,1520,1,0,0,0,64,1522,1,0,0,0,66,1529,1,0,0,0,68,1558,1, + 0,0,0,70,1567,1,0,0,0,72,1587,1,0,0,0,74,1589,1,0,0,0,76,1628,1, + 0,0,0,78,1644,1,0,0,0,80,1646,1,0,0,0,82,1655,1,0,0,0,84,1657,1, + 0,0,0,86,1665,1,0,0,0,88,1671,1,0,0,0,90,1673,1,0,0,0,92,1758,1, + 0,0,0,94,1773,1,0,0,0,96,1784,1,0,0,0,98,1805,1,0,0,0,100,1807,1, + 0,0,0,102,1820,1,0,0,0,104,1824,1,0,0,0,106,1834,1,0,0,0,108,1845, + 1,0,0,0,110,1856,1,0,0,0,112,1938,1,0,0,0,114,2017,1,0,0,0,116,2044, + 1,0,0,0,118,2046,1,0,0,0,120,2053,1,0,0,0,122,2065,1,0,0,0,124,2067, + 1,0,0,0,126,2095,1,0,0,0,128,2102,1,0,0,0,130,2174,1,0,0,0,132,2194, + 1,0,0,0,134,2196,1,0,0,0,136,2200,1,0,0,0,138,2213,1,0,0,0,140,2222, + 1,0,0,0,142,2296,1,0,0,0,144,2302,1,0,0,0,146,2774,1,0,0,0,148,2789, + 1,0,0,0,150,2807,1,0,0,0,152,2812,1,0,0,0,154,2817,1,0,0,0,156,2821, + 1,0,0,0,158,2827,1,0,0,0,160,2840,1,0,0,0,162,2848,1,0,0,0,164,2861, + 1,0,0,0,166,2863,1,0,0,0,168,2869,1,0,0,0,170,2877,1,0,0,0,172,2885, + 1,0,0,0,174,2887,1,0,0,0,176,2889,1,0,0,0,178,2891,1,0,0,0,180,2893, + 1,0,0,0,182,2903,1,0,0,0,184,2905,1,0,0,0,186,2998,1,0,0,0,188,3016, + 1,0,0,0,190,3020,1,0,0,0,192,3022,1,0,0,0,194,3027,1,0,0,0,196,3096, + 1,0,0,0,198,3098,1,0,0,0,200,3115,1,0,0,0,202,3179,1,0,0,0,204,3190, + 1,0,0,0,206,3192,1,0,0,0,208,3232,1,0,0,0,210,3264,1,0,0,0,212,3266, + 1,0,0,0,214,3274,1,0,0,0,216,3281,1,0,0,0,218,3290,1,0,0,0,220,3297, + 1,0,0,0,222,3304,1,0,0,0,224,3306,1,0,0,0,226,3314,1,0,0,0,228,3325, + 1,0,0,0,230,3339,1,0,0,0,232,3354,1,0,0,0,234,3358,1,0,0,0,236,3380, + 1,0,0,0,238,3481,1,0,0,0,240,3483,1,0,0,0,242,3488,1,0,0,0,244,3493, + 1,0,0,0,246,3496,1,0,0,0,248,3513,1,0,0,0,250,3523,1,0,0,0,252,3528, + 1,0,0,0,254,3531,1,0,0,0,256,3537,1,0,0,0,258,3550,1,0,0,0,260,3563, + 1,0,0,0,262,3576,1,0,0,0,264,3589,1,0,0,0,266,3596,1,0,0,0,268,3603, + 1,0,0,0,270,3605,1,0,0,0,272,3607,1,0,0,0,274,3609,1,0,0,0,276,3611, + 1,0,0,0,278,3615,1,0,0,0,280,3617,1,0,0,0,282,3619,1,0,0,0,284,3621, + 1,0,0,0,286,3629,1,0,0,0,288,3635,1,0,0,0,290,3640,1,0,0,0,292,3647, + 1,0,0,0,294,3649,1,0,0,0,296,3664,1,0,0,0,298,3671,1,0,0,0,300,3685, + 1,0,0,0,302,3689,1,0,0,0,304,3691,1,0,0,0,306,308,3,2,1,0,307,306, + 1,0,0,0,308,311,1,0,0,0,309,307,1,0,0,0,309,310,1,0,0,0,310,312, + 1,0,0,0,311,309,1,0,0,0,312,313,5,0,0,1,313,1,1,0,0,0,314,315,3, + 4,2,0,315,3,1,0,0,0,316,318,3,16,8,0,317,319,5,325,0,0,318,317,1, + 0,0,0,318,319,1,0,0,0,319,5,1,0,0,0,320,322,3,138,69,0,321,323,5, + 325,0,0,322,321,1,0,0,0,322,323,1,0,0,0,323,7,1,0,0,0,324,326,3, + 224,112,0,325,327,5,325,0,0,326,325,1,0,0,0,326,327,1,0,0,0,327, + 9,1,0,0,0,328,330,3,186,93,0,329,331,5,325,0,0,330,329,1,0,0,0,330, + 331,1,0,0,0,331,11,1,0,0,0,332,334,3,206,103,0,333,335,5,325,0,0, + 334,333,1,0,0,0,334,335,1,0,0,0,335,13,1,0,0,0,336,337,3,226,113, + 0,337,338,5,0,0,1,338,15,1,0,0,0,339,1235,3,18,9,0,340,341,5,288, + 0,0,341,1235,3,266,133,0,342,343,5,53,0,0,343,347,5,42,0,0,344,345, + 5,119,0,0,345,346,5,182,0,0,346,348,5,94,0,0,347,344,1,0,0,0,347, + 348,1,0,0,0,348,349,1,0,0,0,349,350,3,272,136,0,350,351,5,290,0, + 0,351,354,3,298,149,0,352,353,5,46,0,0,353,355,3,170,85,0,354,352, + 1,0,0,0,354,355,1,0,0,0,355,358,1,0,0,0,356,357,5,31,0,0,357,359, + 3,292,146,0,358,356,1,0,0,0,358,359,1,0,0,0,359,362,1,0,0,0,360, + 361,5,304,0,0,361,363,3,32,16,0,362,360,1,0,0,0,362,363,1,0,0,0, + 363,1235,1,0,0,0,364,365,5,83,0,0,365,368,5,42,0,0,366,367,5,119, + 0,0,367,369,5,94,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,370,1,0, + 0,0,370,372,3,270,135,0,371,373,7,0,0,0,372,371,1,0,0,0,372,373, + 1,0,0,0,373,1235,1,0,0,0,374,375,5,53,0,0,375,379,5,243,0,0,376, + 377,5,119,0,0,377,378,5,182,0,0,378,380,5,94,0,0,379,376,1,0,0,0, + 379,380,1,0,0,0,380,381,1,0,0,0,381,384,3,268,134,0,382,383,5,31, + 0,0,383,385,3,292,146,0,384,382,1,0,0,0,384,385,1,0,0,0,385,388, + 1,0,0,0,386,387,5,304,0,0,387,389,3,32,16,0,388,386,1,0,0,0,388, + 389,1,0,0,0,389,1235,1,0,0,0,390,391,5,83,0,0,391,394,5,243,0,0, + 392,393,5,119,0,0,393,395,5,94,0,0,394,392,1,0,0,0,394,395,1,0,0, + 0,395,396,1,0,0,0,396,398,3,266,133,0,397,399,7,0,0,0,398,397,1, + 0,0,0,398,399,1,0,0,0,399,1235,1,0,0,0,400,401,5,23,0,0,401,402, + 5,243,0,0,402,403,3,266,133,0,403,404,5,223,0,0,404,405,5,269,0, + 0,405,406,3,268,134,0,406,1235,1,0,0,0,407,408,5,23,0,0,408,409, + 5,243,0,0,409,410,3,266,133,0,410,411,5,251,0,0,411,412,5,31,0,0, + 412,413,3,292,146,0,413,1235,1,0,0,0,414,417,5,53,0,0,415,416,5, + 194,0,0,416,418,5,226,0,0,417,415,1,0,0,0,417,418,1,0,0,0,418,419, + 1,0,0,0,419,423,5,260,0,0,420,421,5,119,0,0,421,422,5,182,0,0,422, + 424,5,94,0,0,423,420,1,0,0,0,423,424,1,0,0,0,424,425,1,0,0,0,425, + 427,3,260,130,0,426,428,3,106,53,0,427,426,1,0,0,0,427,428,1,0,0, + 0,428,431,1,0,0,0,429,430,5,46,0,0,430,432,3,170,85,0,431,429,1, + 0,0,0,431,432,1,0,0,0,432,435,1,0,0,0,433,434,5,304,0,0,434,436, + 3,32,16,0,435,433,1,0,0,0,435,436,1,0,0,0,436,437,1,0,0,0,437,443, + 5,28,0,0,438,444,3,18,9,0,439,440,5,1,0,0,440,441,3,18,9,0,441,442, + 5,2,0,0,442,444,1,0,0,0,443,438,1,0,0,0,443,439,1,0,0,0,444,450, + 1,0,0,0,445,447,5,304,0,0,446,448,5,179,0,0,447,446,1,0,0,0,447, + 448,1,0,0,0,448,449,1,0,0,0,449,451,5,65,0,0,450,445,1,0,0,0,450, + 451,1,0,0,0,451,1235,1,0,0,0,452,455,5,53,0,0,453,454,5,194,0,0, + 454,456,5,226,0,0,455,453,1,0,0,0,455,456,1,0,0,0,456,457,1,0,0, + 0,457,461,5,260,0,0,458,459,5,119,0,0,459,460,5,182,0,0,460,462, + 5,94,0,0,461,458,1,0,0,0,461,462,1,0,0,0,462,463,1,0,0,0,463,464, + 3,260,130,0,464,465,5,1,0,0,465,470,3,26,13,0,466,467,5,3,0,0,467, + 469,3,26,13,0,468,466,1,0,0,0,469,472,1,0,0,0,470,468,1,0,0,0,470, + 471,1,0,0,0,471,473,1,0,0,0,472,470,1,0,0,0,473,476,5,2,0,0,474, + 475,5,46,0,0,475,477,3,170,85,0,476,474,1,0,0,0,476,477,1,0,0,0, + 477,480,1,0,0,0,478,479,5,304,0,0,479,481,3,32,16,0,480,478,1,0, + 0,0,480,481,1,0,0,0,481,1235,1,0,0,0,482,483,5,83,0,0,483,486,5, + 260,0,0,484,485,5,119,0,0,485,487,5,94,0,0,486,484,1,0,0,0,486,487, + 1,0,0,0,487,488,1,0,0,0,488,1235,3,258,129,0,489,490,5,127,0,0,490, + 491,5,130,0,0,491,493,3,258,129,0,492,494,3,108,54,0,493,492,1,0, + 0,0,493,494,1,0,0,0,494,495,1,0,0,0,495,496,3,18,9,0,496,1235,1, + 0,0,0,497,498,5,73,0,0,498,499,5,105,0,0,499,501,3,258,129,0,500, + 502,3,54,27,0,501,500,1,0,0,0,501,502,1,0,0,0,502,1235,1,0,0,0,503, + 504,5,274,0,0,504,505,5,260,0,0,505,1235,3,258,129,0,506,507,5,46, + 0,0,507,508,5,190,0,0,508,509,5,260,0,0,509,510,3,258,129,0,510, + 513,5,133,0,0,511,514,3,170,85,0,512,514,5,183,0,0,513,511,1,0,0, + 0,513,512,1,0,0,0,514,1235,1,0,0,0,515,516,5,46,0,0,516,517,5,190, + 0,0,517,518,5,299,0,0,518,519,3,262,131,0,519,522,5,133,0,0,520, + 523,3,170,85,0,521,523,5,183,0,0,522,520,1,0,0,0,522,521,1,0,0,0, + 523,1235,1,0,0,0,524,525,5,46,0,0,525,526,5,190,0,0,526,527,5,44, + 0,0,527,528,3,278,139,0,528,531,5,133,0,0,529,532,3,170,85,0,530, + 532,5,183,0,0,531,529,1,0,0,0,531,530,1,0,0,0,532,1235,1,0,0,0,533, + 534,5,23,0,0,534,537,5,260,0,0,535,536,5,119,0,0,536,538,5,94,0, + 0,537,535,1,0,0,0,537,538,1,0,0,0,538,539,1,0,0,0,539,540,3,258, + 129,0,540,541,5,223,0,0,541,542,5,269,0,0,542,543,3,260,130,0,543, + 1235,1,0,0,0,544,545,5,23,0,0,545,548,5,260,0,0,546,547,5,119,0, + 0,547,549,5,94,0,0,548,546,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0, + 0,550,551,3,258,129,0,551,552,5,19,0,0,552,556,5,44,0,0,553,554, + 5,119,0,0,554,555,5,182,0,0,555,557,5,94,0,0,556,553,1,0,0,0,556, + 557,1,0,0,0,557,558,1,0,0,0,558,559,3,28,14,0,559,1235,1,0,0,0,560, + 561,5,23,0,0,561,564,5,260,0,0,562,563,5,119,0,0,563,565,5,94,0, + 0,564,562,1,0,0,0,564,565,1,0,0,0,565,566,1,0,0,0,566,567,3,258, + 129,0,567,568,5,223,0,0,568,571,5,44,0,0,569,570,5,119,0,0,570,572, + 5,94,0,0,571,569,1,0,0,0,571,572,1,0,0,0,572,573,1,0,0,0,573,574, + 3,278,139,0,574,575,5,269,0,0,575,576,3,282,141,0,576,1235,1,0,0, + 0,577,578,5,23,0,0,578,581,5,260,0,0,579,580,5,119,0,0,580,582,5, + 94,0,0,581,579,1,0,0,0,581,582,1,0,0,0,582,583,1,0,0,0,583,584,3, + 258,129,0,584,585,5,83,0,0,585,588,5,44,0,0,586,587,5,119,0,0,587, + 589,5,94,0,0,588,586,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590, + 591,3,278,139,0,591,1235,1,0,0,0,592,593,5,23,0,0,593,596,5,260, + 0,0,594,595,5,119,0,0,595,597,5,94,0,0,596,594,1,0,0,0,596,597,1, + 0,0,0,597,598,1,0,0,0,598,599,3,258,129,0,599,600,5,23,0,0,600,601, + 5,44,0,0,601,602,3,278,139,0,602,603,5,251,0,0,603,604,5,65,0,0, + 604,605,5,276,0,0,605,606,3,186,93,0,606,1235,1,0,0,0,607,608,5, + 23,0,0,608,611,5,260,0,0,609,610,5,119,0,0,610,612,5,94,0,0,611, + 609,1,0,0,0,611,612,1,0,0,0,612,613,1,0,0,0,613,614,3,258,129,0, + 614,615,5,23,0,0,615,616,5,44,0,0,616,617,3,278,139,0,617,618,5, + 83,0,0,618,619,5,182,0,0,619,620,5,183,0,0,620,1235,1,0,0,0,621, + 622,5,23,0,0,622,623,5,260,0,0,623,624,3,258,129,0,624,625,5,251, + 0,0,625,626,5,31,0,0,626,627,3,292,146,0,627,1235,1,0,0,0,628,629, + 5,23,0,0,629,630,5,260,0,0,630,631,3,258,129,0,631,632,5,251,0,0, + 632,633,5,216,0,0,633,634,3,34,17,0,634,1235,1,0,0,0,635,636,5,23, + 0,0,636,637,5,260,0,0,637,638,3,258,129,0,638,639,5,93,0,0,639,652, + 3,274,137,0,640,649,5,1,0,0,641,646,3,220,110,0,642,643,5,3,0,0, + 643,645,3,220,110,0,644,642,1,0,0,0,645,648,1,0,0,0,646,644,1,0, + 0,0,646,647,1,0,0,0,647,650,1,0,0,0,648,646,1,0,0,0,649,641,1,0, + 0,0,649,650,1,0,0,0,650,651,1,0,0,0,651,653,5,2,0,0,652,640,1,0, + 0,0,652,653,1,0,0,0,653,655,1,0,0,0,654,656,3,54,27,0,655,654,1, + 0,0,0,655,656,1,0,0,0,656,1235,1,0,0,0,657,658,5,24,0,0,658,661, + 3,258,129,0,659,660,5,304,0,0,660,662,3,32,16,0,661,659,1,0,0,0, + 661,662,1,0,0,0,662,1235,1,0,0,0,663,666,5,53,0,0,664,665,5,194, + 0,0,665,667,5,226,0,0,666,664,1,0,0,0,666,667,1,0,0,0,667,668,1, + 0,0,0,668,669,5,167,0,0,669,673,5,299,0,0,670,671,5,119,0,0,671, + 672,5,182,0,0,672,674,5,94,0,0,673,670,1,0,0,0,673,674,1,0,0,0,674, + 675,1,0,0,0,675,679,3,264,132,0,676,677,5,109,0,0,677,678,5,208, + 0,0,678,680,3,180,90,0,679,676,1,0,0,0,679,680,1,0,0,0,680,683,1, + 0,0,0,681,682,5,46,0,0,682,684,3,170,85,0,683,681,1,0,0,0,683,684, + 1,0,0,0,684,687,1,0,0,0,685,686,5,304,0,0,686,688,3,32,16,0,687, + 685,1,0,0,0,687,688,1,0,0,0,688,689,1,0,0,0,689,690,5,28,0,0,690, + 691,3,18,9,0,691,1235,1,0,0,0,692,695,5,53,0,0,693,694,5,194,0,0, + 694,696,5,226,0,0,695,693,1,0,0,0,695,696,1,0,0,0,696,697,1,0,0, + 0,697,698,5,299,0,0,698,701,3,264,132,0,699,700,5,46,0,0,700,702, + 3,170,85,0,701,699,1,0,0,0,701,702,1,0,0,0,702,705,1,0,0,0,703,704, + 5,246,0,0,704,706,7,1,0,0,705,703,1,0,0,0,705,706,1,0,0,0,706,709, + 1,0,0,0,707,708,5,304,0,0,708,710,3,32,16,0,709,707,1,0,0,0,709, + 710,1,0,0,0,710,711,1,0,0,0,711,712,5,28,0,0,712,713,3,18,9,0,713, + 1235,1,0,0,0,714,715,5,222,0,0,715,716,5,167,0,0,716,717,5,299,0, + 0,717,1235,3,262,131,0,718,719,5,83,0,0,719,720,5,167,0,0,720,723, + 5,299,0,0,721,722,5,119,0,0,722,724,5,94,0,0,723,721,1,0,0,0,723, + 724,1,0,0,0,724,725,1,0,0,0,725,1235,3,262,131,0,726,727,5,23,0, + 0,727,728,5,167,0,0,728,731,5,299,0,0,729,730,5,119,0,0,730,732, + 5,94,0,0,731,729,1,0,0,0,731,732,1,0,0,0,732,733,1,0,0,0,733,734, + 3,262,131,0,734,735,5,223,0,0,735,736,5,269,0,0,736,737,3,264,132, + 0,737,1235,1,0,0,0,738,739,5,23,0,0,739,740,5,167,0,0,740,741,5, + 299,0,0,741,742,3,262,131,0,742,743,5,251,0,0,743,744,5,216,0,0, + 744,745,3,34,17,0,745,1235,1,0,0,0,746,747,5,83,0,0,747,750,5,299, + 0,0,748,749,5,119,0,0,749,751,5,94,0,0,750,748,1,0,0,0,750,751,1, + 0,0,0,751,752,1,0,0,0,752,1235,3,262,131,0,753,754,5,23,0,0,754, + 755,5,299,0,0,755,756,3,262,131,0,756,757,5,223,0,0,757,758,5,269, + 0,0,758,759,3,264,132,0,759,1235,1,0,0,0,760,761,5,23,0,0,761,762, + 5,299,0,0,762,763,3,262,131,0,763,764,5,251,0,0,764,765,5,31,0,0, + 765,766,3,292,146,0,766,1235,1,0,0,0,767,768,5,37,0,0,768,769,3, + 274,137,0,769,778,5,1,0,0,770,775,3,220,110,0,771,772,5,3,0,0,772, + 774,3,220,110,0,773,771,1,0,0,0,774,777,1,0,0,0,775,773,1,0,0,0, + 775,776,1,0,0,0,776,779,1,0,0,0,777,775,1,0,0,0,778,770,1,0,0,0, + 778,779,1,0,0,0,779,780,1,0,0,0,780,781,5,2,0,0,781,1235,1,0,0,0, + 782,785,5,53,0,0,783,784,5,194,0,0,784,786,5,226,0,0,785,783,1,0, + 0,0,785,786,1,0,0,0,786,787,1,0,0,0,787,1235,3,226,113,0,788,789, + 5,83,0,0,789,792,5,107,0,0,790,791,5,119,0,0,791,793,5,94,0,0,792, + 790,1,0,0,0,792,793,1,0,0,0,793,794,1,0,0,0,794,1235,3,230,115,0, + 795,796,5,53,0,0,796,797,5,235,0,0,797,801,3,298,149,0,798,799,5, + 304,0,0,799,800,5,20,0,0,800,802,3,290,145,0,801,798,1,0,0,0,801, + 802,1,0,0,0,802,805,1,0,0,0,803,804,5,122,0,0,804,806,3,270,135, + 0,805,803,1,0,0,0,805,806,1,0,0,0,806,1235,1,0,0,0,807,808,5,83, + 0,0,808,809,5,235,0,0,809,812,3,298,149,0,810,811,5,122,0,0,811, + 813,3,270,135,0,812,810,1,0,0,0,812,813,1,0,0,0,813,1235,1,0,0,0, + 814,815,5,110,0,0,815,820,3,296,148,0,816,817,5,3,0,0,817,819,3, + 296,148,0,818,816,1,0,0,0,819,822,1,0,0,0,820,818,1,0,0,0,820,821, + 1,0,0,0,821,823,1,0,0,0,822,820,1,0,0,0,823,824,5,269,0,0,824,829, + 3,292,146,0,825,826,5,3,0,0,826,828,3,292,146,0,827,825,1,0,0,0, + 828,831,1,0,0,0,829,827,1,0,0,0,829,830,1,0,0,0,830,835,1,0,0,0, + 831,829,1,0,0,0,832,833,5,304,0,0,833,834,5,20,0,0,834,836,5,193, + 0,0,835,832,1,0,0,0,835,836,1,0,0,0,836,840,1,0,0,0,837,838,5,111, + 0,0,838,839,5,36,0,0,839,841,3,290,145,0,840,837,1,0,0,0,840,841, + 1,0,0,0,841,844,1,0,0,0,842,843,5,122,0,0,843,845,3,270,135,0,844, + 842,1,0,0,0,844,845,1,0,0,0,845,1235,1,0,0,0,846,857,5,110,0,0,847, + 852,3,296,148,0,848,849,5,3,0,0,849,851,3,296,148,0,850,848,1,0, + 0,0,851,854,1,0,0,0,852,850,1,0,0,0,852,853,1,0,0,0,853,858,1,0, + 0,0,854,852,1,0,0,0,855,856,5,22,0,0,856,858,5,215,0,0,857,847,1, + 0,0,0,857,855,1,0,0,0,858,859,1,0,0,0,859,860,5,190,0,0,860,861, + 3,254,127,0,861,862,5,269,0,0,862,866,3,292,146,0,863,864,5,304, + 0,0,864,865,5,110,0,0,865,867,5,193,0,0,866,863,1,0,0,0,866,867, + 1,0,0,0,867,1235,1,0,0,0,868,872,5,233,0,0,869,870,5,20,0,0,870, + 871,5,193,0,0,871,873,5,103,0,0,872,869,1,0,0,0,872,873,1,0,0,0, + 873,874,1,0,0,0,874,879,3,296,148,0,875,876,5,3,0,0,876,878,3,296, + 148,0,877,875,1,0,0,0,878,881,1,0,0,0,879,877,1,0,0,0,879,880,1, + 0,0,0,880,882,1,0,0,0,881,879,1,0,0,0,882,883,5,105,0,0,883,888, + 3,292,146,0,884,885,5,3,0,0,885,887,3,292,146,0,886,884,1,0,0,0, + 887,890,1,0,0,0,888,886,1,0,0,0,888,889,1,0,0,0,889,894,1,0,0,0, + 890,888,1,0,0,0,891,892,5,111,0,0,892,893,5,36,0,0,893,895,3,290, + 145,0,894,891,1,0,0,0,894,895,1,0,0,0,895,898,1,0,0,0,896,897,5, + 122,0,0,897,899,3,270,135,0,898,896,1,0,0,0,898,899,1,0,0,0,899, + 1235,1,0,0,0,900,904,5,233,0,0,901,902,5,110,0,0,902,903,5,193,0, + 0,903,905,5,103,0,0,904,901,1,0,0,0,904,905,1,0,0,0,905,916,1,0, + 0,0,906,911,3,296,148,0,907,908,5,3,0,0,908,910,3,296,148,0,909, + 907,1,0,0,0,910,913,1,0,0,0,911,909,1,0,0,0,911,912,1,0,0,0,912, + 917,1,0,0,0,913,911,1,0,0,0,914,915,5,22,0,0,915,917,5,215,0,0,916, + 906,1,0,0,0,916,914,1,0,0,0,917,918,1,0,0,0,918,919,5,190,0,0,919, + 920,3,254,127,0,920,921,5,105,0,0,921,922,3,292,146,0,922,1235,1, + 0,0,0,923,934,5,74,0,0,924,929,3,250,125,0,925,926,5,3,0,0,926,928, + 3,250,125,0,927,925,1,0,0,0,928,931,1,0,0,0,929,927,1,0,0,0,929, + 930,1,0,0,0,930,935,1,0,0,0,931,929,1,0,0,0,932,933,5,22,0,0,933, + 935,5,215,0,0,934,924,1,0,0,0,934,932,1,0,0,0,935,936,1,0,0,0,936, + 937,5,190,0,0,937,938,3,254,127,0,938,939,5,269,0,0,939,940,3,292, + 146,0,940,1235,1,0,0,0,941,942,5,251,0,0,942,946,5,235,0,0,943,947, + 5,22,0,0,944,947,5,180,0,0,945,947,3,298,149,0,946,943,1,0,0,0,946, + 944,1,0,0,0,946,945,1,0,0,0,947,950,1,0,0,0,948,949,5,122,0,0,949, + 951,3,270,135,0,950,948,1,0,0,0,950,951,1,0,0,0,951,1235,1,0,0,0, + 952,953,5,253,0,0,953,956,5,112,0,0,954,955,5,190,0,0,955,957,3, + 254,127,0,956,954,1,0,0,0,956,957,1,0,0,0,957,1235,1,0,0,0,958,970, + 5,95,0,0,959,960,5,1,0,0,960,965,3,214,107,0,961,962,5,3,0,0,962, + 964,3,214,107,0,963,961,1,0,0,0,964,967,1,0,0,0,965,963,1,0,0,0, + 965,966,1,0,0,0,966,968,1,0,0,0,967,965,1,0,0,0,968,969,5,2,0,0, + 969,971,1,0,0,0,970,959,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0, + 972,1235,3,16,8,0,973,974,5,95,0,0,974,976,5,24,0,0,975,977,5,297, + 0,0,976,975,1,0,0,0,976,977,1,0,0,0,977,978,1,0,0,0,978,1235,3,16, + 8,0,979,980,5,253,0,0,980,981,5,53,0,0,981,982,5,260,0,0,982,1235, + 3,258,129,0,983,984,5,253,0,0,984,985,5,53,0,0,985,986,5,243,0,0, + 986,1235,3,266,133,0,987,988,5,253,0,0,988,989,5,53,0,0,989,990, + 5,299,0,0,990,1235,3,262,131,0,991,992,5,253,0,0,992,993,5,53,0, + 0,993,994,5,167,0,0,994,995,5,299,0,0,995,1235,3,262,131,0,996,997, + 5,253,0,0,997,998,5,53,0,0,998,999,5,107,0,0,999,1235,3,274,137, + 0,1000,1001,5,253,0,0,1001,1004,5,261,0,0,1002,1003,7,2,0,0,1003, + 1005,3,266,133,0,1004,1002,1,0,0,0,1004,1005,1,0,0,0,1005,1012,1, + 0,0,0,1006,1007,5,154,0,0,1007,1010,3,170,85,0,1008,1009,5,90,0, + 0,1009,1011,3,170,85,0,1010,1008,1,0,0,0,1010,1011,1,0,0,0,1011, + 1013,1,0,0,0,1012,1006,1,0,0,0,1012,1013,1,0,0,0,1013,1235,1,0,0, + 0,1014,1015,5,253,0,0,1015,1018,5,244,0,0,1016,1017,7,2,0,0,1017, + 1019,3,270,135,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1026,1, + 0,0,0,1020,1021,5,154,0,0,1021,1024,3,170,85,0,1022,1023,5,90,0, + 0,1023,1025,3,170,85,0,1024,1022,1,0,0,0,1024,1025,1,0,0,0,1025, + 1027,1,0,0,0,1026,1020,1,0,0,0,1026,1027,1,0,0,0,1027,1235,1,0,0, + 0,1028,1029,5,253,0,0,1029,1036,5,43,0,0,1030,1031,5,154,0,0,1031, + 1034,3,170,85,0,1032,1033,5,90,0,0,1033,1035,3,170,85,0,1034,1032, + 1,0,0,0,1034,1035,1,0,0,0,1035,1037,1,0,0,0,1036,1030,1,0,0,0,1036, + 1037,1,0,0,0,1037,1235,1,0,0,0,1038,1039,5,253,0,0,1039,1040,5,45, + 0,0,1040,1041,7,2,0,0,1041,1048,3,256,128,0,1042,1043,5,154,0,0, + 1043,1046,3,170,85,0,1044,1045,5,90,0,0,1045,1047,3,170,85,0,1046, + 1044,1,0,0,0,1046,1047,1,0,0,0,1047,1049,1,0,0,0,1048,1042,1,0,0, + 0,1048,1049,1,0,0,0,1049,1235,1,0,0,0,1050,1051,5,253,0,0,1051,1052, + 5,256,0,0,1052,1053,5,103,0,0,1053,1235,3,256,128,0,1054,1055,5, + 253,0,0,1055,1056,5,256,0,0,1056,1057,5,103,0,0,1057,1058,5,1,0, + 0,1058,1059,3,18,9,0,1059,1060,5,2,0,0,1060,1235,1,0,0,0,1061,1063, + 5,253,0,0,1062,1064,5,56,0,0,1063,1062,1,0,0,0,1063,1064,1,0,0,0, + 1064,1065,1,0,0,0,1065,1068,5,236,0,0,1066,1067,7,2,0,0,1067,1069, + 3,270,135,0,1068,1066,1,0,0,0,1068,1069,1,0,0,0,1069,1235,1,0,0, + 0,1070,1071,5,253,0,0,1071,1072,5,235,0,0,1072,1075,5,112,0,0,1073, + 1074,7,2,0,0,1074,1076,3,270,135,0,1075,1073,1,0,0,0,1075,1076,1, + 0,0,0,1076,1235,1,0,0,0,1077,1078,5,76,0,0,1078,1235,3,256,128,0, + 1079,1080,5,75,0,0,1080,1235,3,256,128,0,1081,1082,5,253,0,0,1082, + 1085,5,108,0,0,1083,1084,7,2,0,0,1084,1086,3,266,133,0,1085,1083, + 1,0,0,0,1085,1086,1,0,0,0,1086,1093,1,0,0,0,1087,1088,5,154,0,0, + 1088,1091,3,170,85,0,1089,1090,5,90,0,0,1090,1092,3,170,85,0,1091, + 1089,1,0,0,0,1091,1092,1,0,0,0,1092,1094,1,0,0,0,1093,1087,1,0,0, + 0,1093,1094,1,0,0,0,1094,1235,1,0,0,0,1095,1096,5,253,0,0,1096,1103, + 5,250,0,0,1097,1098,5,154,0,0,1098,1101,3,170,85,0,1099,1100,5,90, + 0,0,1100,1102,3,170,85,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102, + 1104,1,0,0,0,1103,1097,1,0,0,0,1103,1104,1,0,0,0,1104,1235,1,0,0, + 0,1105,1106,5,251,0,0,1106,1107,5,250,0,0,1107,1108,5,31,0,0,1108, + 1235,3,302,151,0,1109,1110,5,227,0,0,1110,1111,5,250,0,0,1111,1235, + 5,31,0,0,1112,1113,5,251,0,0,1113,1114,5,250,0,0,1114,1115,3,284, + 142,0,1115,1116,5,312,0,0,1116,1117,3,138,69,0,1117,1235,1,0,0,0, + 1118,1119,5,227,0,0,1119,1120,5,250,0,0,1120,1235,3,284,142,0,1121, + 1122,5,255,0,0,1122,1131,5,271,0,0,1123,1128,3,216,108,0,1124,1125, + 5,3,0,0,1125,1127,3,216,108,0,1126,1124,1,0,0,0,1127,1130,1,0,0, + 0,1128,1126,1,0,0,0,1128,1129,1,0,0,0,1129,1132,1,0,0,0,1130,1128, + 1,0,0,0,1131,1123,1,0,0,0,1131,1132,1,0,0,0,1132,1235,1,0,0,0,1133, + 1135,5,47,0,0,1134,1136,5,307,0,0,1135,1134,1,0,0,0,1135,1136,1, + 0,0,0,1136,1235,1,0,0,0,1137,1139,5,237,0,0,1138,1140,5,307,0,0, + 1139,1138,1,0,0,0,1139,1140,1,0,0,0,1140,1235,1,0,0,0,1141,1142, + 5,214,0,0,1142,1143,3,298,149,0,1143,1144,5,105,0,0,1144,1145,3, + 16,8,0,1145,1235,1,0,0,0,1146,1147,5,68,0,0,1147,1148,5,214,0,0, + 1148,1235,3,298,149,0,1149,1150,5,93,0,0,1150,1160,3,298,149,0,1151, + 1152,5,290,0,0,1152,1157,3,138,69,0,1153,1154,5,3,0,0,1154,1156, + 3,138,69,0,1155,1153,1,0,0,0,1156,1159,1,0,0,0,1157,1155,1,0,0,0, + 1157,1158,1,0,0,0,1158,1161,1,0,0,0,1159,1157,1,0,0,0,1160,1151, + 1,0,0,0,1160,1161,1,0,0,0,1161,1235,1,0,0,0,1162,1163,5,93,0,0,1163, + 1164,5,121,0,0,1164,1174,3,170,85,0,1165,1166,5,290,0,0,1166,1171, + 3,138,69,0,1167,1168,5,3,0,0,1168,1170,3,138,69,0,1169,1167,1,0, + 0,0,1170,1173,1,0,0,0,1171,1169,1,0,0,0,1171,1172,1,0,0,0,1172,1175, + 1,0,0,0,1173,1171,1,0,0,0,1174,1165,1,0,0,0,1174,1175,1,0,0,0,1175, + 1235,1,0,0,0,1176,1177,5,76,0,0,1177,1178,5,126,0,0,1178,1235,3, + 298,149,0,1179,1180,5,76,0,0,1180,1181,5,198,0,0,1181,1235,3,298, + 149,0,1182,1183,5,251,0,0,1183,1184,5,205,0,0,1184,1235,3,224,112, + 0,1185,1186,5,251,0,0,1186,1187,5,267,0,0,1187,1190,5,311,0,0,1188, + 1191,5,157,0,0,1189,1191,3,138,69,0,1190,1188,1,0,0,0,1190,1189, + 1,0,0,0,1191,1235,1,0,0,0,1192,1193,5,287,0,0,1193,1194,3,258,129, + 0,1194,1195,5,251,0,0,1195,1200,3,212,106,0,1196,1197,5,3,0,0,1197, + 1199,3,212,106,0,1198,1196,1,0,0,0,1199,1202,1,0,0,0,1200,1198,1, + 0,0,0,1200,1201,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1203, + 1205,3,54,27,0,1204,1203,1,0,0,0,1204,1205,1,0,0,0,1205,1235,1,0, + 0,0,1206,1207,5,169,0,0,1207,1208,5,130,0,0,1208,1213,3,258,129, + 0,1209,1211,5,28,0,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212, + 1,0,0,0,1212,1214,3,298,149,0,1213,1210,1,0,0,0,1213,1214,1,0,0, + 0,1214,1215,1,0,0,0,1215,1216,5,290,0,0,1216,1217,3,74,37,0,1217, + 1218,5,190,0,0,1218,1220,3,138,69,0,1219,1221,3,196,98,0,1220,1219, + 1,0,0,0,1221,1222,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223, + 1235,1,0,0,0,1224,1225,5,253,0,0,1225,1226,5,46,0,0,1226,1227,5, + 190,0,0,1227,1228,5,260,0,0,1228,1235,3,258,129,0,1229,1230,5,253, + 0,0,1230,1231,5,46,0,0,1231,1232,5,190,0,0,1232,1233,5,44,0,0,1233, + 1235,3,278,139,0,1234,339,1,0,0,0,1234,340,1,0,0,0,1234,342,1,0, + 0,0,1234,364,1,0,0,0,1234,374,1,0,0,0,1234,390,1,0,0,0,1234,400, + 1,0,0,0,1234,407,1,0,0,0,1234,414,1,0,0,0,1234,452,1,0,0,0,1234, + 482,1,0,0,0,1234,489,1,0,0,0,1234,497,1,0,0,0,1234,503,1,0,0,0,1234, + 506,1,0,0,0,1234,515,1,0,0,0,1234,524,1,0,0,0,1234,533,1,0,0,0,1234, + 544,1,0,0,0,1234,560,1,0,0,0,1234,577,1,0,0,0,1234,592,1,0,0,0,1234, + 607,1,0,0,0,1234,621,1,0,0,0,1234,628,1,0,0,0,1234,635,1,0,0,0,1234, + 657,1,0,0,0,1234,663,1,0,0,0,1234,692,1,0,0,0,1234,714,1,0,0,0,1234, + 718,1,0,0,0,1234,726,1,0,0,0,1234,738,1,0,0,0,1234,746,1,0,0,0,1234, + 753,1,0,0,0,1234,760,1,0,0,0,1234,767,1,0,0,0,1234,782,1,0,0,0,1234, + 788,1,0,0,0,1234,795,1,0,0,0,1234,807,1,0,0,0,1234,814,1,0,0,0,1234, + 846,1,0,0,0,1234,868,1,0,0,0,1234,900,1,0,0,0,1234,923,1,0,0,0,1234, + 941,1,0,0,0,1234,952,1,0,0,0,1234,958,1,0,0,0,1234,973,1,0,0,0,1234, + 979,1,0,0,0,1234,983,1,0,0,0,1234,987,1,0,0,0,1234,991,1,0,0,0,1234, + 996,1,0,0,0,1234,1000,1,0,0,0,1234,1014,1,0,0,0,1234,1028,1,0,0, + 0,1234,1038,1,0,0,0,1234,1050,1,0,0,0,1234,1054,1,0,0,0,1234,1061, + 1,0,0,0,1234,1070,1,0,0,0,1234,1077,1,0,0,0,1234,1079,1,0,0,0,1234, + 1081,1,0,0,0,1234,1095,1,0,0,0,1234,1105,1,0,0,0,1234,1109,1,0,0, + 0,1234,1112,1,0,0,0,1234,1118,1,0,0,0,1234,1121,1,0,0,0,1234,1133, + 1,0,0,0,1234,1137,1,0,0,0,1234,1141,1,0,0,0,1234,1146,1,0,0,0,1234, + 1149,1,0,0,0,1234,1162,1,0,0,0,1234,1176,1,0,0,0,1234,1179,1,0,0, + 0,1234,1182,1,0,0,0,1234,1185,1,0,0,0,1234,1192,1,0,0,0,1234,1206, + 1,0,0,0,1234,1224,1,0,0,0,1234,1229,1,0,0,0,1235,17,1,0,0,0,1236, + 1238,3,20,10,0,1237,1236,1,0,0,0,1237,1238,1,0,0,0,1238,1239,1,0, + 0,0,1239,1240,3,22,11,0,1240,19,1,0,0,0,1241,1242,5,304,0,0,1242, + 1247,3,226,113,0,1243,1244,5,3,0,0,1244,1246,3,226,113,0,1245,1243, + 1,0,0,0,1246,1249,1,0,0,0,1247,1245,1,0,0,0,1247,1248,1,0,0,0,1248, + 21,1,0,0,0,1249,1247,1,0,0,0,1250,1252,3,24,12,0,1251,1250,1,0,0, + 0,1251,1252,1,0,0,0,1252,1253,1,0,0,0,1253,1254,3,40,20,0,1254,23, + 1,0,0,0,1255,1257,5,304,0,0,1256,1258,5,221,0,0,1257,1256,1,0,0, + 0,1257,1258,1,0,0,0,1258,1259,1,0,0,0,1259,1264,3,68,34,0,1260,1261, + 5,3,0,0,1261,1263,3,68,34,0,1262,1260,1,0,0,0,1263,1266,1,0,0,0, + 1264,1262,1,0,0,0,1264,1265,1,0,0,0,1265,25,1,0,0,0,1266,1264,1, + 0,0,0,1267,1270,3,28,14,0,1268,1270,3,30,15,0,1269,1267,1,0,0,0, + 1269,1268,1,0,0,0,1270,27,1,0,0,0,1271,1272,3,282,141,0,1272,1275, + 3,186,93,0,1273,1274,5,182,0,0,1274,1276,5,183,0,0,1275,1273,1,0, + 0,0,1275,1276,1,0,0,0,1276,1279,1,0,0,0,1277,1278,5,46,0,0,1278, + 1280,3,170,85,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,1283,1, + 0,0,0,1281,1282,5,304,0,0,1282,1284,3,32,16,0,1283,1281,1,0,0,0, + 1283,1284,1,0,0,0,1284,29,1,0,0,0,1285,1286,5,154,0,0,1286,1289, + 3,258,129,0,1287,1288,7,3,0,0,1288,1290,5,216,0,0,1289,1287,1,0, + 0,0,1289,1290,1,0,0,0,1290,31,1,0,0,0,1291,1292,5,1,0,0,1292,1293, + 3,34,17,0,1293,1294,5,2,0,0,1294,33,1,0,0,0,1295,1300,3,36,18,0, + 1296,1297,5,3,0,0,1297,1299,3,36,18,0,1298,1296,1,0,0,0,1299,1302, + 1,0,0,0,1300,1298,1,0,0,0,1300,1301,1,0,0,0,1301,35,1,0,0,0,1302, + 1300,1,0,0,0,1303,1304,3,298,149,0,1304,1305,5,312,0,0,1305,1306, + 3,38,19,0,1306,37,1,0,0,0,1307,1310,5,70,0,0,1308,1310,3,138,69, + 0,1309,1307,1,0,0,0,1309,1308,1,0,0,0,1310,39,1,0,0,0,1311,1322, + 3,46,23,0,1312,1313,5,195,0,0,1313,1314,5,36,0,0,1314,1319,3,50, + 25,0,1315,1316,5,3,0,0,1316,1318,3,50,25,0,1317,1315,1,0,0,0,1318, + 1321,1,0,0,0,1319,1317,1,0,0,0,1319,1320,1,0,0,0,1320,1323,1,0,0, + 0,1321,1319,1,0,0,0,1322,1312,1,0,0,0,1322,1323,1,0,0,0,1323,1329, + 1,0,0,0,1324,1325,5,188,0,0,1325,1327,3,44,22,0,1326,1328,7,4,0, + 0,1327,1326,1,0,0,0,1327,1328,1,0,0,0,1328,1330,1,0,0,0,1329,1324, + 1,0,0,0,1329,1330,1,0,0,0,1330,1344,1,0,0,0,1331,1332,5,155,0,0, + 1332,1345,3,42,21,0,1333,1334,5,98,0,0,1334,1336,7,5,0,0,1335,1337, + 3,44,22,0,1336,1335,1,0,0,0,1336,1337,1,0,0,0,1337,1338,1,0,0,0, + 1338,1342,7,4,0,0,1339,1343,5,192,0,0,1340,1341,5,304,0,0,1341,1343, + 5,266,0,0,1342,1339,1,0,0,0,1342,1340,1,0,0,0,1343,1345,1,0,0,0, + 1344,1331,1,0,0,0,1344,1333,1,0,0,0,1344,1345,1,0,0,0,1345,41,1, + 0,0,0,1346,1349,5,22,0,0,1347,1349,3,44,22,0,1348,1346,1,0,0,0,1348, + 1347,1,0,0,0,1349,43,1,0,0,0,1350,1351,7,6,0,0,1351,45,1,0,0,0,1352, + 1353,6,23,-1,0,1353,1354,3,48,24,0,1354,1369,1,0,0,0,1355,1356,10, + 2,0,0,1356,1358,5,128,0,0,1357,1359,3,70,35,0,1358,1357,1,0,0,0, + 1358,1359,1,0,0,0,1359,1360,1,0,0,0,1360,1368,3,46,23,3,1361,1362, + 10,1,0,0,1362,1364,7,7,0,0,1363,1365,3,70,35,0,1364,1363,1,0,0,0, + 1364,1365,1,0,0,0,1365,1366,1,0,0,0,1366,1368,3,46,23,2,1367,1355, + 1,0,0,0,1367,1361,1,0,0,0,1368,1371,1,0,0,0,1369,1367,1,0,0,0,1369, + 1370,1,0,0,0,1370,47,1,0,0,0,1371,1369,1,0,0,0,1372,1389,3,52,26, + 0,1373,1374,5,260,0,0,1374,1389,3,258,129,0,1375,1376,5,296,0,0, + 1376,1381,3,138,69,0,1377,1378,5,3,0,0,1378,1380,3,138,69,0,1379, + 1377,1,0,0,0,1380,1383,1,0,0,0,1381,1379,1,0,0,0,1381,1382,1,0,0, + 0,1382,1389,1,0,0,0,1383,1381,1,0,0,0,1384,1385,5,1,0,0,1385,1386, + 3,40,20,0,1386,1387,5,2,0,0,1387,1389,1,0,0,0,1388,1372,1,0,0,0, + 1388,1373,1,0,0,0,1388,1375,1,0,0,0,1388,1384,1,0,0,0,1389,49,1, + 0,0,0,1390,1393,3,278,139,0,1391,1393,3,138,69,0,1392,1390,1,0,0, + 0,1392,1391,1,0,0,0,1393,1395,1,0,0,0,1394,1396,7,8,0,0,1395,1394, + 1,0,0,0,1395,1396,1,0,0,0,1396,1399,1,0,0,0,1397,1398,5,185,0,0, + 1398,1400,7,9,0,0,1399,1397,1,0,0,0,1399,1400,1,0,0,0,1400,51,1, + 0,0,0,1401,1403,5,248,0,0,1402,1404,3,70,35,0,1403,1402,1,0,0,0, + 1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1410,3,72,36,0,1406,1407, + 5,3,0,0,1407,1409,3,72,36,0,1408,1406,1,0,0,0,1409,1412,1,0,0,0, + 1410,1408,1,0,0,0,1410,1411,1,0,0,0,1411,1422,1,0,0,0,1412,1410, + 1,0,0,0,1413,1414,5,105,0,0,1414,1419,3,74,37,0,1415,1416,5,3,0, + 0,1416,1418,3,74,37,0,1417,1415,1,0,0,0,1418,1421,1,0,0,0,1419,1417, + 1,0,0,0,1419,1420,1,0,0,0,1420,1423,1,0,0,0,1421,1419,1,0,0,0,1422, + 1413,1,0,0,0,1422,1423,1,0,0,0,1423,1425,1,0,0,0,1424,1426,3,54, + 27,0,1425,1424,1,0,0,0,1425,1426,1,0,0,0,1426,1430,1,0,0,0,1427, + 1428,5,114,0,0,1428,1429,5,36,0,0,1429,1431,3,56,28,0,1430,1427, + 1,0,0,0,1430,1431,1,0,0,0,1431,1434,1,0,0,0,1432,1433,5,117,0,0, + 1433,1435,3,140,70,0,1434,1432,1,0,0,0,1434,1435,1,0,0,0,1435,1445, + 1,0,0,0,1436,1437,5,303,0,0,1437,1442,3,64,32,0,1438,1439,5,3,0, + 0,1439,1441,3,64,32,0,1440,1438,1,0,0,0,1441,1444,1,0,0,0,1442,1440, + 1,0,0,0,1442,1443,1,0,0,0,1443,1446,1,0,0,0,1444,1442,1,0,0,0,1445, + 1436,1,0,0,0,1445,1446,1,0,0,0,1446,53,1,0,0,0,1447,1448,5,301,0, + 0,1448,1449,3,140,70,0,1449,55,1,0,0,0,1450,1452,3,70,35,0,1451, + 1450,1,0,0,0,1451,1452,1,0,0,0,1452,1453,1,0,0,0,1453,1458,3,58, + 29,0,1454,1455,5,3,0,0,1455,1457,3,58,29,0,1456,1454,1,0,0,0,1457, + 1460,1,0,0,0,1458,1456,1,0,0,0,1458,1459,1,0,0,0,1459,57,1,0,0,0, + 1460,1458,1,0,0,0,1461,1502,3,60,30,0,1462,1463,5,238,0,0,1463,1472, + 5,1,0,0,1464,1469,3,60,30,0,1465,1466,5,3,0,0,1466,1468,3,60,30, + 0,1467,1465,1,0,0,0,1468,1471,1,0,0,0,1469,1467,1,0,0,0,1469,1470, + 1,0,0,0,1470,1473,1,0,0,0,1471,1469,1,0,0,0,1472,1464,1,0,0,0,1472, + 1473,1,0,0,0,1473,1474,1,0,0,0,1474,1502,5,2,0,0,1475,1476,5,55, + 0,0,1476,1485,5,1,0,0,1477,1482,3,60,30,0,1478,1479,5,3,0,0,1479, + 1481,3,60,30,0,1480,1478,1,0,0,0,1481,1484,1,0,0,0,1482,1480,1,0, + 0,0,1482,1483,1,0,0,0,1483,1486,1,0,0,0,1484,1482,1,0,0,0,1485,1477, + 1,0,0,0,1485,1486,1,0,0,0,1486,1487,1,0,0,0,1487,1502,5,2,0,0,1488, + 1489,5,115,0,0,1489,1490,5,252,0,0,1490,1491,5,1,0,0,1491,1496,3, + 60,30,0,1492,1493,5,3,0,0,1493,1495,3,60,30,0,1494,1492,1,0,0,0, + 1495,1498,1,0,0,0,1496,1494,1,0,0,0,1496,1497,1,0,0,0,1497,1499, + 1,0,0,0,1498,1496,1,0,0,0,1499,1500,5,2,0,0,1500,1502,1,0,0,0,1501, + 1461,1,0,0,0,1501,1462,1,0,0,0,1501,1475,1,0,0,0,1501,1488,1,0,0, + 0,1502,59,1,0,0,0,1503,1512,5,1,0,0,1504,1509,3,62,31,0,1505,1506, + 5,3,0,0,1506,1508,3,62,31,0,1507,1505,1,0,0,0,1508,1511,1,0,0,0, + 1509,1507,1,0,0,0,1509,1510,1,0,0,0,1510,1513,1,0,0,0,1511,1509, + 1,0,0,0,1512,1504,1,0,0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514, + 1517,5,2,0,0,1515,1517,3,62,31,0,1516,1503,1,0,0,0,1516,1515,1,0, + 0,0,1517,61,1,0,0,0,1518,1521,3,278,139,0,1519,1521,3,138,69,0,1520, + 1518,1,0,0,0,1520,1519,1,0,0,0,1521,63,1,0,0,0,1522,1523,3,298,149, + 0,1523,1524,5,28,0,0,1524,1525,5,1,0,0,1525,1526,3,66,33,0,1526, + 1527,5,2,0,0,1527,65,1,0,0,0,1528,1530,3,298,149,0,1529,1528,1,0, + 0,0,1529,1530,1,0,0,0,1530,1541,1,0,0,0,1531,1532,5,201,0,0,1532, + 1533,5,36,0,0,1533,1538,3,138,69,0,1534,1535,5,3,0,0,1535,1537,3, + 138,69,0,1536,1534,1,0,0,0,1537,1540,1,0,0,0,1538,1536,1,0,0,0,1538, + 1539,1,0,0,0,1539,1542,1,0,0,0,1540,1538,1,0,0,0,1541,1531,1,0,0, + 0,1541,1542,1,0,0,0,1542,1553,1,0,0,0,1543,1544,5,195,0,0,1544,1545, + 5,36,0,0,1545,1550,3,50,25,0,1546,1547,5,3,0,0,1547,1549,3,50,25, + 0,1548,1546,1,0,0,0,1549,1552,1,0,0,0,1550,1548,1,0,0,0,1550,1551, + 1,0,0,0,1551,1554,1,0,0,0,1552,1550,1,0,0,0,1553,1543,1,0,0,0,1553, + 1554,1,0,0,0,1554,1556,1,0,0,0,1555,1557,3,200,100,0,1556,1555,1, + 0,0,0,1556,1557,1,0,0,0,1557,67,1,0,0,0,1558,1560,3,298,149,0,1559, + 1561,3,110,55,0,1560,1559,1,0,0,0,1560,1561,1,0,0,0,1561,1562,1, + 0,0,0,1562,1563,5,28,0,0,1563,1564,5,1,0,0,1564,1565,3,22,11,0,1565, + 1566,5,2,0,0,1566,69,1,0,0,0,1567,1568,7,10,0,0,1568,71,1,0,0,0, + 1569,1572,3,278,139,0,1570,1572,3,138,69,0,1571,1569,1,0,0,0,1571, + 1570,1,0,0,0,1572,1577,1,0,0,0,1573,1575,5,28,0,0,1574,1573,1,0, + 0,0,1574,1575,1,0,0,0,1575,1576,1,0,0,0,1576,1578,3,298,149,0,1577, + 1574,1,0,0,0,1577,1578,1,0,0,0,1578,1588,1,0,0,0,1579,1580,3,146, + 73,0,1580,1581,5,4,0,0,1581,1584,5,320,0,0,1582,1583,5,28,0,0,1583, + 1585,3,110,55,0,1584,1582,1,0,0,0,1584,1585,1,0,0,0,1585,1588,1, + 0,0,0,1586,1588,5,320,0,0,1587,1571,1,0,0,0,1587,1579,1,0,0,0,1587, + 1586,1,0,0,0,1588,73,1,0,0,0,1589,1590,6,37,-1,0,1590,1591,3,80, + 40,0,1591,1610,1,0,0,0,1592,1606,10,2,0,0,1593,1594,5,54,0,0,1594, + 1595,5,136,0,0,1595,1607,3,80,40,0,1596,1597,3,76,38,0,1597,1598, + 5,136,0,0,1598,1599,3,74,37,0,1599,1600,3,78,39,0,1600,1607,1,0, + 0,0,1601,1602,5,172,0,0,1602,1603,3,76,38,0,1603,1604,5,136,0,0, + 1604,1605,3,80,40,0,1605,1607,1,0,0,0,1606,1593,1,0,0,0,1606,1596, + 1,0,0,0,1606,1601,1,0,0,0,1607,1609,1,0,0,0,1608,1592,1,0,0,0,1609, + 1612,1,0,0,0,1610,1608,1,0,0,0,1610,1611,1,0,0,0,1611,75,1,0,0,0, + 1612,1610,1,0,0,0,1613,1615,5,125,0,0,1614,1613,1,0,0,0,1614,1615, + 1,0,0,0,1615,1629,1,0,0,0,1616,1618,5,152,0,0,1617,1619,5,197,0, + 0,1618,1617,1,0,0,0,1618,1619,1,0,0,0,1619,1629,1,0,0,0,1620,1622, + 5,234,0,0,1621,1623,5,197,0,0,1622,1621,1,0,0,0,1622,1623,1,0,0, + 0,1623,1629,1,0,0,0,1624,1626,5,106,0,0,1625,1627,5,197,0,0,1626, + 1625,1,0,0,0,1626,1627,1,0,0,0,1627,1629,1,0,0,0,1628,1614,1,0,0, + 0,1628,1616,1,0,0,0,1628,1620,1,0,0,0,1628,1624,1,0,0,0,1629,77, + 1,0,0,0,1630,1631,5,190,0,0,1631,1645,3,140,70,0,1632,1633,5,290, + 0,0,1633,1634,5,1,0,0,1634,1639,3,298,149,0,1635,1636,5,3,0,0,1636, + 1638,3,298,149,0,1637,1635,1,0,0,0,1638,1641,1,0,0,0,1639,1637,1, + 0,0,0,1639,1640,1,0,0,0,1640,1642,1,0,0,0,1641,1639,1,0,0,0,1642, + 1643,5,2,0,0,1643,1645,1,0,0,0,1644,1630,1,0,0,0,1644,1632,1,0,0, + 0,1645,79,1,0,0,0,1646,1653,3,90,45,0,1647,1648,5,262,0,0,1648,1649, + 3,82,41,0,1649,1650,5,1,0,0,1650,1651,3,138,69,0,1651,1652,5,2,0, + 0,1652,1654,1,0,0,0,1653,1647,1,0,0,0,1653,1654,1,0,0,0,1654,81, + 1,0,0,0,1655,1656,7,11,0,0,1656,83,1,0,0,0,1657,1658,7,12,0,0,1658, + 85,1,0,0,0,1659,1666,5,89,0,0,1660,1662,5,274,0,0,1661,1663,3,170, + 85,0,1662,1661,1,0,0,0,1662,1663,1,0,0,0,1663,1664,1,0,0,0,1664, + 1666,3,88,44,0,1665,1659,1,0,0,0,1665,1660,1,0,0,0,1666,87,1,0,0, + 0,1667,1668,5,304,0,0,1668,1672,5,51,0,0,1669,1670,5,306,0,0,1670, + 1672,5,51,0,0,1671,1667,1,0,0,0,1671,1669,1,0,0,0,1672,89,1,0,0, + 0,1673,1756,3,104,52,0,1674,1675,5,166,0,0,1675,1686,5,1,0,0,1676, + 1677,5,201,0,0,1677,1678,5,36,0,0,1678,1683,3,138,69,0,1679,1680, + 5,3,0,0,1680,1682,3,138,69,0,1681,1679,1,0,0,0,1682,1685,1,0,0,0, + 1683,1681,1,0,0,0,1683,1684,1,0,0,0,1684,1687,1,0,0,0,1685,1683, + 1,0,0,0,1686,1676,1,0,0,0,1686,1687,1,0,0,0,1687,1698,1,0,0,0,1688, + 1689,5,195,0,0,1689,1690,5,36,0,0,1690,1695,3,50,25,0,1691,1692, + 5,3,0,0,1692,1694,3,50,25,0,1693,1691,1,0,0,0,1694,1697,1,0,0,0, + 1695,1693,1,0,0,0,1695,1696,1,0,0,0,1696,1699,1,0,0,0,1697,1695, + 1,0,0,0,1698,1688,1,0,0,0,1698,1699,1,0,0,0,1699,1709,1,0,0,0,1700, + 1701,5,168,0,0,1701,1706,3,92,46,0,1702,1703,5,3,0,0,1703,1705,3, + 92,46,0,1704,1702,1,0,0,0,1705,1708,1,0,0,0,1706,1704,1,0,0,0,1706, + 1707,1,0,0,0,1707,1710,1,0,0,0,1708,1706,1,0,0,0,1709,1700,1,0,0, + 0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713,3,94,47,0,1712,1711, + 1,0,0,0,1712,1713,1,0,0,0,1713,1717,1,0,0,0,1714,1715,5,21,0,0,1715, + 1716,5,163,0,0,1716,1718,3,98,49,0,1717,1714,1,0,0,0,1717,1718,1, + 0,0,0,1718,1720,1,0,0,0,1719,1721,7,13,0,0,1720,1719,1,0,0,0,1720, + 1721,1,0,0,0,1721,1722,1,0,0,0,1722,1723,5,206,0,0,1723,1724,5,1, + 0,0,1724,1725,3,206,103,0,1725,1735,5,2,0,0,1726,1727,5,257,0,0, + 1727,1732,3,100,50,0,1728,1729,5,3,0,0,1729,1731,3,100,50,0,1730, + 1728,1,0,0,0,1731,1734,1,0,0,0,1732,1730,1,0,0,0,1732,1733,1,0,0, + 0,1733,1736,1,0,0,0,1734,1732,1,0,0,0,1735,1726,1,0,0,0,1735,1736, + 1,0,0,0,1736,1737,1,0,0,0,1737,1738,5,71,0,0,1738,1743,3,102,51, + 0,1739,1740,5,3,0,0,1740,1742,3,102,51,0,1741,1739,1,0,0,0,1742, + 1745,1,0,0,0,1743,1741,1,0,0,0,1743,1744,1,0,0,0,1744,1746,1,0,0, + 0,1745,1743,1,0,0,0,1746,1754,5,2,0,0,1747,1749,5,28,0,0,1748,1747, + 1,0,0,0,1748,1749,1,0,0,0,1749,1750,1,0,0,0,1750,1752,3,298,149, + 0,1751,1753,3,110,55,0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753, + 1755,1,0,0,0,1754,1748,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0, + 0,1756,1674,1,0,0,0,1756,1757,1,0,0,0,1757,91,1,0,0,0,1758,1759, + 3,138,69,0,1759,1760,5,28,0,0,1760,1761,3,298,149,0,1761,93,1,0, + 0,0,1762,1763,5,191,0,0,1763,1764,5,239,0,0,1764,1765,5,207,0,0, + 1765,1774,5,163,0,0,1766,1767,5,22,0,0,1767,1768,5,240,0,0,1768, + 1769,5,207,0,0,1769,1771,5,163,0,0,1770,1772,3,96,48,0,1771,1770, + 1,0,0,0,1771,1772,1,0,0,0,1772,1774,1,0,0,0,1773,1762,1,0,0,0,1773, + 1766,1,0,0,0,1774,95,1,0,0,0,1775,1776,5,253,0,0,1776,1777,5,85, + 0,0,1777,1785,5,165,0,0,1778,1779,5,189,0,0,1779,1780,5,85,0,0,1780, + 1785,5,165,0,0,1781,1782,5,304,0,0,1782,1783,5,284,0,0,1783,1785, + 5,240,0,0,1784,1775,1,0,0,0,1784,1778,1,0,0,0,1784,1781,1,0,0,0, + 1785,97,1,0,0,0,1786,1787,5,5,0,0,1787,1788,5,269,0,0,1788,1789, + 5,174,0,0,1789,1806,5,239,0,0,1790,1791,5,5,0,0,1791,1792,5,204, + 0,0,1792,1793,5,148,0,0,1793,1806,5,239,0,0,1794,1795,5,5,0,0,1795, + 1796,5,269,0,0,1796,1797,5,101,0,0,1797,1806,3,298,149,0,1798,1799, + 5,5,0,0,1799,1800,5,269,0,0,1800,1801,5,148,0,0,1801,1806,3,298, + 149,0,1802,1803,5,5,0,0,1803,1804,5,269,0,0,1804,1806,3,298,149, + 0,1805,1786,1,0,0,0,1805,1790,1,0,0,0,1805,1794,1,0,0,0,1805,1798, + 1,0,0,0,1805,1802,1,0,0,0,1806,99,1,0,0,0,1807,1808,3,298,149,0, + 1808,1809,5,312,0,0,1809,1810,5,1,0,0,1810,1815,3,298,149,0,1811, + 1812,5,3,0,0,1812,1814,3,298,149,0,1813,1811,1,0,0,0,1814,1817,1, + 0,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816,1818,1,0,0,0,1817, + 1815,1,0,0,0,1818,1819,5,2,0,0,1819,101,1,0,0,0,1820,1821,3,298, + 149,0,1821,1822,5,28,0,0,1822,1823,3,138,69,0,1823,103,1,0,0,0,1824, + 1832,3,112,56,0,1825,1827,5,28,0,0,1826,1825,1,0,0,0,1826,1827,1, + 0,0,0,1827,1828,1,0,0,0,1828,1830,3,298,149,0,1829,1831,3,110,55, + 0,1830,1829,1,0,0,0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1826, + 1,0,0,0,1832,1833,1,0,0,0,1833,105,1,0,0,0,1834,1835,5,1,0,0,1835, + 1840,3,282,141,0,1836,1837,5,3,0,0,1837,1839,3,282,141,0,1838,1836, + 1,0,0,0,1839,1842,1,0,0,0,1840,1838,1,0,0,0,1840,1841,1,0,0,0,1841, + 1843,1,0,0,0,1842,1840,1,0,0,0,1843,1844,5,2,0,0,1844,107,1,0,0, + 0,1845,1846,5,1,0,0,1846,1851,3,278,139,0,1847,1848,5,3,0,0,1848, + 1850,3,278,139,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851,1849,1, + 0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0,0,1854, + 1855,5,2,0,0,1855,109,1,0,0,0,1856,1857,5,1,0,0,1857,1862,3,298, + 149,0,1858,1859,5,3,0,0,1859,1861,3,298,149,0,1860,1858,1,0,0,0, + 1861,1864,1,0,0,0,1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1865, + 1,0,0,0,1864,1862,1,0,0,0,1865,1866,5,2,0,0,1866,111,1,0,0,0,1867, + 1869,3,256,128,0,1868,1870,3,286,143,0,1869,1868,1,0,0,0,1869,1870, + 1,0,0,0,1870,1939,1,0,0,0,1871,1872,5,1,0,0,1872,1873,3,22,11,0, + 1873,1874,5,2,0,0,1874,1939,1,0,0,0,1875,1876,5,285,0,0,1876,1877, + 5,1,0,0,1877,1882,3,138,69,0,1878,1879,5,3,0,0,1879,1881,3,138,69, + 0,1880,1878,1,0,0,0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1882,1883, + 1,0,0,0,1883,1885,1,0,0,0,1884,1882,1,0,0,0,1885,1888,5,2,0,0,1886, + 1887,5,304,0,0,1887,1889,5,196,0,0,1888,1886,1,0,0,0,1888,1889,1, + 0,0,0,1889,1939,1,0,0,0,1890,1891,5,149,0,0,1891,1892,5,1,0,0,1892, + 1893,3,22,11,0,1893,1894,5,2,0,0,1894,1939,1,0,0,0,1895,1896,5,260, + 0,0,1896,1897,5,1,0,0,1897,1898,3,124,62,0,1898,1899,5,2,0,0,1899, + 1939,1,0,0,0,1900,1901,5,1,0,0,1901,1902,3,74,37,0,1902,1903,5,2, + 0,0,1903,1939,1,0,0,0,1904,1905,5,142,0,0,1905,1906,5,1,0,0,1906, + 1907,3,148,74,0,1907,1908,5,45,0,0,1908,1909,5,1,0,0,1909,1914,3, + 114,57,0,1910,1911,5,3,0,0,1911,1913,3,114,57,0,1912,1910,1,0,0, + 0,1913,1916,1,0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1917, + 1,0,0,0,1916,1914,1,0,0,0,1917,1929,5,2,0,0,1918,1919,5,210,0,0, + 1919,1920,5,1,0,0,1920,1921,3,116,58,0,1921,1922,5,2,0,0,1922,1930, + 1,0,0,0,1923,1924,5,210,0,0,1924,1925,5,70,0,0,1925,1926,5,1,0,0, + 1926,1927,3,122,61,0,1927,1928,5,2,0,0,1928,1930,1,0,0,0,1929,1918, + 1,0,0,0,1929,1923,1,0,0,0,1929,1930,1,0,0,0,1930,1934,1,0,0,0,1931, + 1932,7,14,0,0,1932,1933,5,190,0,0,1933,1935,5,89,0,0,1934,1931,1, + 0,0,0,1934,1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,2,0,0,1937, + 1939,1,0,0,0,1938,1867,1,0,0,0,1938,1871,1,0,0,0,1938,1875,1,0,0, + 0,1938,1890,1,0,0,0,1938,1895,1,0,0,0,1938,1900,1,0,0,0,1938,1904, + 1,0,0,0,1939,113,1,0,0,0,1940,1941,3,298,149,0,1941,1942,5,103,0, + 0,1942,1943,5,196,0,0,1943,2018,1,0,0,0,1944,1945,3,298,149,0,1945, + 1948,3,186,93,0,1946,1947,5,205,0,0,1947,1949,3,170,85,0,1948,1946, + 1,0,0,0,1948,1949,1,0,0,0,1949,1954,1,0,0,0,1950,1951,3,158,79,0, + 1951,1952,5,190,0,0,1952,1953,5,85,0,0,1953,1955,1,0,0,0,1954,1950, + 1,0,0,0,1954,1955,1,0,0,0,1955,1960,1,0,0,0,1956,1957,3,158,79,0, + 1957,1958,5,190,0,0,1958,1959,5,89,0,0,1959,1961,1,0,0,0,1960,1956, + 1,0,0,0,1960,1961,1,0,0,0,1961,2018,1,0,0,0,1962,1963,3,298,149, + 0,1963,1964,3,186,93,0,1964,1965,5,104,0,0,1965,1968,3,152,76,0, + 1966,1967,5,205,0,0,1967,1969,3,170,85,0,1968,1966,1,0,0,0,1968, + 1969,1,0,0,0,1969,1973,1,0,0,0,1970,1971,3,160,80,0,1971,1972,5, + 308,0,0,1972,1974,1,0,0,0,1973,1970,1,0,0,0,1973,1974,1,0,0,0,1974, + 1982,1,0,0,0,1975,1976,7,15,0,0,1976,1980,5,218,0,0,1977,1978,5, + 190,0,0,1978,1979,5,242,0,0,1979,1981,5,264,0,0,1980,1977,1,0,0, + 0,1980,1981,1,0,0,0,1981,1983,1,0,0,0,1982,1975,1,0,0,0,1982,1983, + 1,0,0,0,1983,1988,1,0,0,0,1984,1985,3,162,81,0,1985,1986,5,190,0, + 0,1986,1987,5,85,0,0,1987,1989,1,0,0,0,1988,1984,1,0,0,0,1988,1989, + 1,0,0,0,1989,1994,1,0,0,0,1990,1991,3,162,81,0,1991,1992,5,190,0, + 0,1992,1993,5,89,0,0,1993,1995,1,0,0,0,1994,1990,1,0,0,0,1994,1995, + 1,0,0,0,1995,2018,1,0,0,0,1996,1998,5,173,0,0,1997,1999,5,205,0, + 0,1998,1997,1,0,0,0,1998,1999,1,0,0,0,1999,2000,1,0,0,0,2000,2003, + 3,170,85,0,2001,2002,5,28,0,0,2002,2004,3,298,149,0,2003,2001,1, + 0,0,0,2003,2004,1,0,0,0,2004,2005,1,0,0,0,2005,2006,5,45,0,0,2006, + 2007,5,1,0,0,2007,2012,3,114,57,0,2008,2009,5,3,0,0,2009,2011,3, + 114,57,0,2010,2008,1,0,0,0,2011,2014,1,0,0,0,2012,2010,1,0,0,0,2012, + 2013,1,0,0,0,2013,2015,1,0,0,0,2014,2012,1,0,0,0,2015,2016,5,2,0, + 0,2016,2018,1,0,0,0,2017,1940,1,0,0,0,2017,1944,1,0,0,0,2017,1962, + 1,0,0,0,2017,1996,1,0,0,0,2018,115,1,0,0,0,2019,2045,3,118,59,0, + 2020,2021,3,118,59,0,2021,2022,7,16,0,0,2022,2023,3,120,60,0,2023, + 2045,1,0,0,0,2024,2025,3,120,60,0,2025,2026,5,281,0,0,2026,2031, + 3,120,60,0,2027,2028,5,281,0,0,2028,2030,3,120,60,0,2029,2027,1, + 0,0,0,2030,2033,1,0,0,0,2031,2029,1,0,0,0,2031,2032,1,0,0,0,2032, + 2045,1,0,0,0,2033,2031,1,0,0,0,2034,2035,3,120,60,0,2035,2036,5, + 54,0,0,2036,2041,3,120,60,0,2037,2038,5,54,0,0,2038,2040,3,120,60, + 0,2039,2037,1,0,0,0,2040,2043,1,0,0,0,2041,2039,1,0,0,0,2041,2042, + 1,0,0,0,2042,2045,1,0,0,0,2043,2041,1,0,0,0,2044,2019,1,0,0,0,2044, + 2020,1,0,0,0,2044,2024,1,0,0,0,2044,2034,1,0,0,0,2045,117,1,0,0, + 0,2046,2047,3,298,149,0,2047,119,1,0,0,0,2048,2054,3,118,59,0,2049, + 2050,5,1,0,0,2050,2051,3,116,58,0,2051,2052,5,2,0,0,2052,2054,1, + 0,0,0,2053,2048,1,0,0,0,2053,2049,1,0,0,0,2054,121,1,0,0,0,2055, + 2058,7,16,0,0,2056,2057,5,3,0,0,2057,2059,7,17,0,0,2058,2056,1,0, + 0,0,2058,2059,1,0,0,0,2059,2066,1,0,0,0,2060,2063,7,17,0,0,2061, + 2062,5,3,0,0,2062,2064,7,16,0,0,2063,2061,1,0,0,0,2063,2064,1,0, + 0,0,2064,2066,1,0,0,0,2065,2055,1,0,0,0,2065,2060,1,0,0,0,2066,123, + 1,0,0,0,2067,2068,3,274,137,0,2068,2077,5,1,0,0,2069,2074,3,126, + 63,0,2070,2071,5,3,0,0,2071,2073,3,126,63,0,2072,2070,1,0,0,0,2073, + 2076,1,0,0,0,2074,2072,1,0,0,0,2074,2075,1,0,0,0,2075,2078,1,0,0, + 0,2076,2074,1,0,0,0,2077,2069,1,0,0,0,2077,2078,1,0,0,0,2078,2088, + 1,0,0,0,2079,2080,5,52,0,0,2080,2085,3,136,68,0,2081,2082,5,3,0, + 0,2082,2084,3,136,68,0,2083,2081,1,0,0,0,2084,2087,1,0,0,0,2085, + 2083,1,0,0,0,2085,2086,1,0,0,0,2086,2089,1,0,0,0,2087,2085,1,0,0, + 0,2088,2079,1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090,2091, + 5,2,0,0,2091,125,1,0,0,0,2092,2093,3,298,149,0,2093,2094,5,6,0,0, + 2094,2096,1,0,0,0,2095,2092,1,0,0,0,2095,2096,1,0,0,0,2096,2100, + 1,0,0,0,2097,2101,3,128,64,0,2098,2101,3,132,66,0,2099,2101,3,138, + 69,0,2100,2097,1,0,0,0,2100,2098,1,0,0,0,2100,2099,1,0,0,0,2101, + 127,1,0,0,0,2102,2120,3,130,65,0,2103,2104,5,201,0,0,2104,2118,5, + 36,0,0,2105,2114,5,1,0,0,2106,2111,3,138,69,0,2107,2108,5,3,0,0, + 2108,2110,3,138,69,0,2109,2107,1,0,0,0,2110,2113,1,0,0,0,2111,2109, + 1,0,0,0,2111,2112,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0,2114, + 2106,1,0,0,0,2114,2115,1,0,0,0,2115,2116,1,0,0,0,2116,2119,5,2,0, + 0,2117,2119,3,138,69,0,2118,2105,1,0,0,0,2118,2117,1,0,0,0,2119, + 2121,1,0,0,0,2120,2103,1,0,0,0,2120,2121,1,0,0,0,2121,2128,1,0,0, + 0,2122,2123,5,217,0,0,2123,2124,5,300,0,0,2124,2129,5,85,0,0,2125, + 2126,5,144,0,0,2126,2127,5,300,0,0,2127,2129,5,85,0,0,2128,2122, + 1,0,0,0,2128,2125,1,0,0,0,2128,2129,1,0,0,0,2129,2146,1,0,0,0,2130, + 2131,5,195,0,0,2131,2144,5,36,0,0,2132,2133,5,1,0,0,2133,2138,3, + 50,25,0,2134,2135,5,3,0,0,2135,2137,3,50,25,0,2136,2134,1,0,0,0, + 2137,2140,1,0,0,0,2138,2136,1,0,0,0,2138,2139,1,0,0,0,2139,2141, + 1,0,0,0,2140,2138,1,0,0,0,2141,2142,5,2,0,0,2142,2145,1,0,0,0,2143, + 2145,3,50,25,0,2144,2132,1,0,0,0,2144,2143,1,0,0,0,2145,2147,1,0, + 0,0,2146,2130,1,0,0,0,2146,2147,1,0,0,0,2147,129,1,0,0,0,2148,2149, + 5,260,0,0,2149,2150,5,1,0,0,2150,2151,3,258,129,0,2151,2159,5,2, + 0,0,2152,2154,5,28,0,0,2153,2152,1,0,0,0,2153,2154,1,0,0,0,2154, + 2155,1,0,0,0,2155,2157,3,298,149,0,2156,2158,3,110,55,0,2157,2156, + 1,0,0,0,2157,2158,1,0,0,0,2158,2160,1,0,0,0,2159,2153,1,0,0,0,2159, + 2160,1,0,0,0,2160,2175,1,0,0,0,2161,2162,5,260,0,0,2162,2163,5,1, + 0,0,2163,2164,3,22,11,0,2164,2172,5,2,0,0,2165,2167,5,28,0,0,2166, + 2165,1,0,0,0,2166,2167,1,0,0,0,2167,2168,1,0,0,0,2168,2170,3,298, + 149,0,2169,2171,3,110,55,0,2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171, + 2173,1,0,0,0,2172,2166,1,0,0,0,2172,2173,1,0,0,0,2173,2175,1,0,0, + 0,2174,2148,1,0,0,0,2174,2161,1,0,0,0,2175,131,1,0,0,0,2176,2177, + 5,77,0,0,2177,2178,5,1,0,0,2178,2183,3,134,67,0,2179,2180,5,3,0, + 0,2180,2182,3,134,67,0,2181,2179,1,0,0,0,2182,2185,1,0,0,0,2183, + 2181,1,0,0,0,2183,2184,1,0,0,0,2184,2186,1,0,0,0,2185,2183,1,0,0, + 0,2186,2187,5,2,0,0,2187,2195,1,0,0,0,2188,2189,5,41,0,0,2189,2190, + 5,1,0,0,2190,2191,5,183,0,0,2191,2192,5,28,0,0,2192,2193,5,77,0, + 0,2193,2195,5,2,0,0,2194,2176,1,0,0,0,2194,2188,1,0,0,0,2195,133, + 1,0,0,0,2196,2198,3,298,149,0,2197,2199,3,186,93,0,2198,2197,1,0, + 0,0,2198,2199,1,0,0,0,2199,135,1,0,0,0,2200,2201,5,1,0,0,2201,2202, + 3,284,142,0,2202,2203,5,3,0,0,2203,2208,3,284,142,0,2204,2205,5, + 3,0,0,2205,2207,3,284,142,0,2206,2204,1,0,0,0,2207,2210,1,0,0,0, + 2208,2206,1,0,0,0,2208,2209,1,0,0,0,2209,2211,1,0,0,0,2210,2208, + 1,0,0,0,2211,2212,5,2,0,0,2212,137,1,0,0,0,2213,2214,3,140,70,0, + 2214,139,1,0,0,0,2215,2216,6,70,-1,0,2216,2218,3,144,72,0,2217,2219, + 3,142,71,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2223,1,0,0,0, + 2220,2221,5,182,0,0,2221,2223,3,140,70,3,2222,2215,1,0,0,0,2222, + 2220,1,0,0,0,2223,2232,1,0,0,0,2224,2225,10,2,0,0,2225,2226,5,25, + 0,0,2226,2231,3,140,70,3,2227,2228,10,1,0,0,2228,2229,5,194,0,0, + 2229,2231,3,140,70,2,2230,2224,1,0,0,0,2230,2227,1,0,0,0,2231,2234, + 1,0,0,0,2232,2230,1,0,0,0,2232,2233,1,0,0,0,2233,141,1,0,0,0,2234, + 2232,1,0,0,0,2235,2236,3,174,87,0,2236,2237,3,144,72,0,2237,2297, + 1,0,0,0,2238,2239,3,174,87,0,2239,2240,3,176,88,0,2240,2241,5,1, + 0,0,2241,2242,3,22,11,0,2242,2243,5,2,0,0,2243,2297,1,0,0,0,2244, + 2246,5,182,0,0,2245,2244,1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0, + 0,0,2247,2248,5,34,0,0,2248,2249,3,144,72,0,2249,2250,5,25,0,0,2250, + 2251,3,144,72,0,2251,2297,1,0,0,0,2252,2254,5,182,0,0,2253,2252, + 1,0,0,0,2253,2254,1,0,0,0,2254,2255,1,0,0,0,2255,2256,5,122,0,0, + 2256,2257,5,1,0,0,2257,2262,3,138,69,0,2258,2259,5,3,0,0,2259,2261, + 3,138,69,0,2260,2258,1,0,0,0,2261,2264,1,0,0,0,2262,2260,1,0,0,0, + 2262,2263,1,0,0,0,2263,2265,1,0,0,0,2264,2262,1,0,0,0,2265,2266, + 5,2,0,0,2266,2297,1,0,0,0,2267,2269,5,182,0,0,2268,2267,1,0,0,0, + 2268,2269,1,0,0,0,2269,2270,1,0,0,0,2270,2271,5,122,0,0,2271,2272, + 5,1,0,0,2272,2273,3,22,11,0,2273,2274,5,2,0,0,2274,2297,1,0,0,0, + 2275,2277,5,182,0,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277,2278, + 1,0,0,0,2278,2279,5,154,0,0,2279,2282,3,144,72,0,2280,2281,5,90, + 0,0,2281,2283,3,144,72,0,2282,2280,1,0,0,0,2282,2283,1,0,0,0,2283, + 2297,1,0,0,0,2284,2286,5,133,0,0,2285,2287,5,182,0,0,2286,2285,1, + 0,0,0,2286,2287,1,0,0,0,2287,2288,1,0,0,0,2288,2297,5,183,0,0,2289, + 2291,5,133,0,0,2290,2292,5,182,0,0,2291,2290,1,0,0,0,2291,2292,1, + 0,0,0,2292,2293,1,0,0,0,2293,2294,5,79,0,0,2294,2295,5,105,0,0,2295, + 2297,3,144,72,0,2296,2235,1,0,0,0,2296,2238,1,0,0,0,2296,2245,1, + 0,0,0,2296,2253,1,0,0,0,2296,2268,1,0,0,0,2296,2276,1,0,0,0,2296, + 2284,1,0,0,0,2296,2289,1,0,0,0,2297,143,1,0,0,0,2298,2299,6,72,-1, + 0,2299,2303,3,146,73,0,2300,2301,7,18,0,0,2301,2303,3,144,72,4,2302, + 2298,1,0,0,0,2302,2300,1,0,0,0,2303,2318,1,0,0,0,2304,2305,10,3, + 0,0,2305,2306,7,19,0,0,2306,2317,3,144,72,4,2307,2308,10,2,0,0,2308, + 2309,7,18,0,0,2309,2317,3,144,72,3,2310,2311,10,1,0,0,2311,2312, + 5,323,0,0,2312,2317,3,144,72,2,2313,2314,10,5,0,0,2314,2315,5,30, + 0,0,2315,2317,3,172,86,0,2316,2304,1,0,0,0,2316,2307,1,0,0,0,2316, + 2310,1,0,0,0,2316,2313,1,0,0,0,2317,2320,1,0,0,0,2318,2316,1,0,0, + 0,2318,2319,1,0,0,0,2319,145,1,0,0,0,2320,2318,1,0,0,0,2321,2322, + 6,73,-1,0,2322,2775,5,183,0,0,2323,2775,3,180,90,0,2324,2325,3,298, + 149,0,2325,2326,3,170,85,0,2326,2775,1,0,0,0,2327,2328,5,82,0,0, + 2328,2329,5,213,0,0,2329,2775,3,170,85,0,2330,2775,3,300,150,0,2331, + 2775,3,178,89,0,2332,2775,3,170,85,0,2333,2775,5,328,0,0,2334,2775, + 5,324,0,0,2335,2336,5,211,0,0,2336,2337,5,1,0,0,2337,2338,3,144, + 72,0,2338,2339,5,122,0,0,2339,2340,3,144,72,0,2340,2341,5,2,0,0, + 2341,2775,1,0,0,0,2342,2343,5,1,0,0,2343,2346,3,138,69,0,2344,2345, + 5,3,0,0,2345,2347,3,138,69,0,2346,2344,1,0,0,0,2347,2348,1,0,0,0, + 2348,2346,1,0,0,0,2348,2349,1,0,0,0,2349,2350,1,0,0,0,2350,2351, + 5,2,0,0,2351,2775,1,0,0,0,2352,2353,5,239,0,0,2353,2354,5,1,0,0, + 2354,2359,3,138,69,0,2355,2356,5,3,0,0,2356,2358,3,138,69,0,2357, + 2355,1,0,0,0,2358,2361,1,0,0,0,2359,2357,1,0,0,0,2359,2360,1,0,0, + 0,2360,2362,1,0,0,0,2361,2359,1,0,0,0,2362,2363,5,2,0,0,2363,2775, + 1,0,0,0,2364,2365,5,156,0,0,2365,2367,5,1,0,0,2366,2368,3,70,35, + 0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2369,1,0,0,0,2369,2372, + 3,138,69,0,2370,2371,5,3,0,0,2371,2373,3,170,85,0,2372,2370,1,0, + 0,0,2372,2373,1,0,0,0,2373,2377,1,0,0,0,2374,2375,5,190,0,0,2375, + 2376,5,200,0,0,2376,2378,3,86,43,0,2377,2374,1,0,0,0,2377,2378,1, + 0,0,0,2378,2379,1,0,0,0,2379,2380,5,2,0,0,2380,2381,5,305,0,0,2381, + 2382,5,114,0,0,2382,2383,5,1,0,0,2383,2384,5,195,0,0,2384,2385,5, + 36,0,0,2385,2390,3,50,25,0,2386,2387,5,3,0,0,2387,2389,3,50,25,0, + 2388,2386,1,0,0,0,2389,2392,1,0,0,0,2390,2388,1,0,0,0,2390,2391, + 1,0,0,0,2391,2393,1,0,0,0,2392,2390,1,0,0,0,2393,2394,5,2,0,0,2394, + 2396,1,0,0,0,2395,2397,3,194,97,0,2396,2395,1,0,0,0,2396,2397,1, + 0,0,0,2397,2775,1,0,0,0,2398,2400,3,166,83,0,2399,2398,1,0,0,0,2399, + 2400,1,0,0,0,2400,2401,1,0,0,0,2401,2402,3,274,137,0,2402,2406,5, + 1,0,0,2403,2404,3,298,149,0,2404,2405,5,4,0,0,2405,2407,1,0,0,0, + 2406,2403,1,0,0,0,2406,2407,1,0,0,0,2407,2408,1,0,0,0,2408,2409, + 5,320,0,0,2409,2411,5,2,0,0,2410,2412,3,194,97,0,2411,2410,1,0,0, + 0,2411,2412,1,0,0,0,2412,2414,1,0,0,0,2413,2415,3,198,99,0,2414, + 2413,1,0,0,0,2414,2415,1,0,0,0,2415,2775,1,0,0,0,2416,2418,3,166, + 83,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2419,1,0,0,0,2419, + 2420,3,274,137,0,2420,2432,5,1,0,0,2421,2423,3,70,35,0,2422,2421, + 1,0,0,0,2422,2423,1,0,0,0,2423,2424,1,0,0,0,2424,2429,3,138,69,0, + 2425,2426,5,3,0,0,2426,2428,3,138,69,0,2427,2425,1,0,0,0,2428,2431, + 1,0,0,0,2429,2427,1,0,0,0,2429,2430,1,0,0,0,2430,2433,1,0,0,0,2431, + 2429,1,0,0,0,2432,2422,1,0,0,0,2432,2433,1,0,0,0,2433,2444,1,0,0, + 0,2434,2435,5,195,0,0,2435,2436,5,36,0,0,2436,2441,3,50,25,0,2437, + 2438,5,3,0,0,2438,2440,3,50,25,0,2439,2437,1,0,0,0,2440,2443,1,0, + 0,0,2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2445,1,0,0,0,2443,2441, + 1,0,0,0,2444,2434,1,0,0,0,2444,2445,1,0,0,0,2445,2446,1,0,0,0,2446, + 2448,5,2,0,0,2447,2449,3,194,97,0,2448,2447,1,0,0,0,2448,2449,1, + 0,0,0,2449,2454,1,0,0,0,2450,2452,3,168,84,0,2451,2450,1,0,0,0,2451, + 2452,1,0,0,0,2452,2453,1,0,0,0,2453,2455,3,198,99,0,2454,2451,1, + 0,0,0,2454,2455,1,0,0,0,2455,2775,1,0,0,0,2456,2457,3,298,149,0, + 2457,2458,3,198,99,0,2458,2775,1,0,0,0,2459,2460,3,298,149,0,2460, + 2461,5,7,0,0,2461,2462,3,138,69,0,2462,2775,1,0,0,0,2463,2472,5, + 1,0,0,2464,2469,3,298,149,0,2465,2466,5,3,0,0,2466,2468,3,298,149, + 0,2467,2465,1,0,0,0,2468,2471,1,0,0,0,2469,2467,1,0,0,0,2469,2470, + 1,0,0,0,2470,2473,1,0,0,0,2471,2469,1,0,0,0,2472,2464,1,0,0,0,2472, + 2473,1,0,0,0,2473,2474,1,0,0,0,2474,2475,5,2,0,0,2475,2476,5,7,0, + 0,2476,2775,3,138,69,0,2477,2478,5,1,0,0,2478,2479,3,22,11,0,2479, + 2480,5,2,0,0,2480,2775,1,0,0,0,2481,2482,5,94,0,0,2482,2483,5,1, + 0,0,2483,2484,3,22,11,0,2484,2485,5,2,0,0,2485,2775,1,0,0,0,2486, + 2487,5,40,0,0,2487,2489,3,138,69,0,2488,2490,3,192,96,0,2489,2488, + 1,0,0,0,2490,2491,1,0,0,0,2491,2489,1,0,0,0,2491,2492,1,0,0,0,2492, + 2495,1,0,0,0,2493,2494,5,84,0,0,2494,2496,3,138,69,0,2495,2493,1, + 0,0,0,2495,2496,1,0,0,0,2496,2497,1,0,0,0,2497,2498,5,88,0,0,2498, + 2775,1,0,0,0,2499,2501,5,40,0,0,2500,2502,3,192,96,0,2501,2500,1, + 0,0,0,2502,2503,1,0,0,0,2503,2501,1,0,0,0,2503,2504,1,0,0,0,2504, + 2507,1,0,0,0,2505,2506,5,84,0,0,2506,2508,3,138,69,0,2507,2505,1, + 0,0,0,2507,2508,1,0,0,0,2508,2509,1,0,0,0,2509,2510,5,88,0,0,2510, + 2775,1,0,0,0,2511,2512,5,41,0,0,2512,2513,5,1,0,0,2513,2514,3,138, + 69,0,2514,2515,5,28,0,0,2515,2516,3,186,93,0,2516,2517,5,2,0,0,2517, + 2775,1,0,0,0,2518,2519,5,275,0,0,2519,2520,5,1,0,0,2520,2521,3,138, + 69,0,2521,2522,5,28,0,0,2522,2523,3,186,93,0,2523,2524,5,2,0,0,2524, + 2775,1,0,0,0,2525,2526,5,27,0,0,2526,2535,5,8,0,0,2527,2532,3,138, + 69,0,2528,2529,5,3,0,0,2529,2531,3,138,69,0,2530,2528,1,0,0,0,2531, + 2534,1,0,0,0,2532,2530,1,0,0,0,2532,2533,1,0,0,0,2533,2536,1,0,0, + 0,2534,2532,1,0,0,0,2535,2527,1,0,0,0,2535,2536,1,0,0,0,2536,2537, + 1,0,0,0,2537,2775,5,9,0,0,2538,2775,3,280,140,0,2539,2775,5,58,0, + 0,2540,2544,5,62,0,0,2541,2542,5,1,0,0,2542,2543,5,329,0,0,2543, + 2545,5,2,0,0,2544,2541,1,0,0,0,2544,2545,1,0,0,0,2545,2775,1,0,0, + 0,2546,2550,5,63,0,0,2547,2548,5,1,0,0,2548,2549,5,329,0,0,2549, + 2551,5,2,0,0,2550,2547,1,0,0,0,2550,2551,1,0,0,0,2551,2775,1,0,0, + 0,2552,2556,5,158,0,0,2553,2554,5,1,0,0,2554,2555,5,329,0,0,2555, + 2557,5,2,0,0,2556,2553,1,0,0,0,2556,2557,1,0,0,0,2557,2775,1,0,0, + 0,2558,2562,5,159,0,0,2559,2560,5,1,0,0,2560,2561,5,329,0,0,2561, + 2563,5,2,0,0,2562,2559,1,0,0,0,2562,2563,1,0,0,0,2563,2775,1,0,0, + 0,2564,2775,5,64,0,0,2565,2775,5,57,0,0,2566,2775,5,61,0,0,2567, + 2775,5,59,0,0,2568,2569,5,272,0,0,2569,2577,5,1,0,0,2570,2572,3, + 84,42,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0,0,2573, + 2575,3,144,72,0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575,2576,1, + 0,0,0,2576,2578,5,105,0,0,2577,2571,1,0,0,0,2577,2578,1,0,0,0,2578, + 2579,1,0,0,0,2579,2580,3,144,72,0,2580,2581,5,2,0,0,2581,2775,1, + 0,0,0,2582,2583,5,272,0,0,2583,2584,5,1,0,0,2584,2585,3,144,72,0, + 2585,2586,5,3,0,0,2586,2587,3,144,72,0,2587,2588,5,2,0,0,2588,2775, + 1,0,0,0,2589,2590,5,258,0,0,2590,2591,5,1,0,0,2591,2592,3,144,72, + 0,2592,2593,5,105,0,0,2593,2596,3,144,72,0,2594,2595,5,103,0,0,2595, + 2597,3,144,72,0,2596,2594,1,0,0,0,2596,2597,1,0,0,0,2597,2598,1, + 0,0,0,2598,2599,5,2,0,0,2599,2775,1,0,0,0,2600,2601,5,181,0,0,2601, + 2602,5,1,0,0,2602,2605,3,144,72,0,2603,2604,5,3,0,0,2604,2606,3, + 184,92,0,2605,2603,1,0,0,0,2605,2606,1,0,0,0,2606,2607,1,0,0,0,2607, + 2608,5,2,0,0,2608,2775,1,0,0,0,2609,2610,5,96,0,0,2610,2611,5,1, + 0,0,2611,2612,3,298,149,0,2612,2613,5,105,0,0,2613,2614,3,144,72, + 0,2614,2615,5,2,0,0,2615,2775,1,0,0,0,2616,2617,5,1,0,0,2617,2618, + 3,138,69,0,2618,2619,5,2,0,0,2619,2775,1,0,0,0,2620,2621,5,115,0, + 0,2621,2630,5,1,0,0,2622,2627,3,284,142,0,2623,2624,5,3,0,0,2624, + 2626,3,284,142,0,2625,2623,1,0,0,0,2626,2629,1,0,0,0,2627,2625,1, + 0,0,0,2627,2628,1,0,0,0,2628,2631,1,0,0,0,2629,2627,1,0,0,0,2630, + 2622,1,0,0,0,2630,2631,1,0,0,0,2631,2632,1,0,0,0,2632,2775,5,2,0, + 0,2633,2634,5,139,0,0,2634,2635,5,1,0,0,2635,2640,3,148,74,0,2636, + 2637,3,156,78,0,2637,2638,5,190,0,0,2638,2639,5,89,0,0,2639,2641, + 1,0,0,0,2640,2636,1,0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642, + 2643,5,2,0,0,2643,2775,1,0,0,0,2644,2645,5,143,0,0,2645,2646,5,1, + 0,0,2646,2649,3,148,74,0,2647,2648,5,231,0,0,2648,2650,3,186,93, + 0,2649,2647,1,0,0,0,2649,2650,1,0,0,0,2650,2655,1,0,0,0,2651,2652, + 3,158,79,0,2652,2653,5,190,0,0,2653,2654,5,85,0,0,2654,2656,1,0, + 0,0,2655,2651,1,0,0,0,2655,2656,1,0,0,0,2656,2661,1,0,0,0,2657,2658, + 3,158,79,0,2658,2659,5,190,0,0,2659,2660,5,89,0,0,2660,2662,1,0, + 0,0,2661,2657,1,0,0,0,2661,2662,1,0,0,0,2662,2663,1,0,0,0,2663,2664, + 5,2,0,0,2664,2775,1,0,0,0,2665,2666,5,141,0,0,2666,2667,5,1,0,0, + 2667,2674,3,148,74,0,2668,2669,5,231,0,0,2669,2672,3,186,93,0,2670, + 2671,5,104,0,0,2671,2673,3,152,76,0,2672,2670,1,0,0,0,2672,2673, + 1,0,0,0,2673,2675,1,0,0,0,2674,2668,1,0,0,0,2674,2675,1,0,0,0,2675, + 2679,1,0,0,0,2676,2677,3,160,80,0,2677,2678,5,308,0,0,2678,2680, + 1,0,0,0,2679,2676,1,0,0,0,2679,2680,1,0,0,0,2680,2688,1,0,0,0,2681, + 2682,7,15,0,0,2682,2686,5,218,0,0,2683,2684,5,190,0,0,2684,2685, + 5,242,0,0,2685,2687,5,264,0,0,2686,2683,1,0,0,0,2686,2687,1,0,0, + 0,2687,2689,1,0,0,0,2688,2681,1,0,0,0,2688,2689,1,0,0,0,2689,2694, + 1,0,0,0,2690,2691,3,162,81,0,2691,2692,5,190,0,0,2692,2693,5,85, + 0,0,2693,2695,1,0,0,0,2694,2690,1,0,0,0,2694,2695,1,0,0,0,2695,2700, + 1,0,0,0,2696,2697,3,162,81,0,2697,2698,5,190,0,0,2698,2699,5,89, + 0,0,2699,2701,1,0,0,0,2700,2696,1,0,0,0,2700,2701,1,0,0,0,2701,2702, + 1,0,0,0,2702,2703,5,2,0,0,2703,2775,1,0,0,0,2704,2705,5,140,0,0, + 2705,2734,5,1,0,0,2706,2711,3,164,82,0,2707,2708,5,3,0,0,2708,2710, + 3,164,82,0,2709,2707,1,0,0,0,2710,2713,1,0,0,0,2711,2709,1,0,0,0, + 2711,2712,1,0,0,0,2712,2720,1,0,0,0,2713,2711,1,0,0,0,2714,2715, + 5,183,0,0,2715,2716,5,190,0,0,2716,2721,5,183,0,0,2717,2718,5,18, + 0,0,2718,2719,5,190,0,0,2719,2721,5,183,0,0,2720,2714,1,0,0,0,2720, + 2717,1,0,0,0,2720,2721,1,0,0,0,2721,2732,1,0,0,0,2722,2723,5,304, + 0,0,2723,2725,5,282,0,0,2724,2726,5,146,0,0,2725,2724,1,0,0,0,2725, + 2726,1,0,0,0,2726,2733,1,0,0,0,2727,2728,5,306,0,0,2728,2730,5,282, + 0,0,2729,2731,5,146,0,0,2730,2729,1,0,0,0,2730,2731,1,0,0,0,2731, + 2733,1,0,0,0,2732,2722,1,0,0,0,2732,2727,1,0,0,0,2732,2733,1,0,0, + 0,2733,2735,1,0,0,0,2734,2706,1,0,0,0,2734,2735,1,0,0,0,2735,2742, + 1,0,0,0,2736,2737,5,231,0,0,2737,2740,3,186,93,0,2738,2739,5,104, + 0,0,2739,2741,3,152,76,0,2740,2738,1,0,0,0,2740,2741,1,0,0,0,2741, + 2743,1,0,0,0,2742,2736,1,0,0,0,2742,2743,1,0,0,0,2743,2744,1,0,0, + 0,2744,2775,5,2,0,0,2745,2746,5,138,0,0,2746,2763,5,1,0,0,2747,2752, + 3,150,75,0,2748,2749,5,3,0,0,2749,2751,3,150,75,0,2750,2748,1,0, + 0,0,2751,2754,1,0,0,0,2752,2750,1,0,0,0,2752,2753,1,0,0,0,2753,2761, + 1,0,0,0,2754,2752,1,0,0,0,2755,2756,5,183,0,0,2756,2757,5,190,0, + 0,2757,2762,5,183,0,0,2758,2759,5,18,0,0,2759,2760,5,190,0,0,2760, + 2762,5,183,0,0,2761,2755,1,0,0,0,2761,2758,1,0,0,0,2761,2762,1,0, + 0,0,2762,2764,1,0,0,0,2763,2747,1,0,0,0,2763,2764,1,0,0,0,2764,2771, + 1,0,0,0,2765,2766,5,231,0,0,2766,2769,3,186,93,0,2767,2768,5,104, + 0,0,2768,2770,3,152,76,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770, + 2772,1,0,0,0,2771,2765,1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0, + 0,2773,2775,5,2,0,0,2774,2321,1,0,0,0,2774,2323,1,0,0,0,2774,2324, + 1,0,0,0,2774,2327,1,0,0,0,2774,2330,1,0,0,0,2774,2331,1,0,0,0,2774, + 2332,1,0,0,0,2774,2333,1,0,0,0,2774,2334,1,0,0,0,2774,2335,1,0,0, + 0,2774,2342,1,0,0,0,2774,2352,1,0,0,0,2774,2364,1,0,0,0,2774,2399, + 1,0,0,0,2774,2417,1,0,0,0,2774,2456,1,0,0,0,2774,2459,1,0,0,0,2774, + 2463,1,0,0,0,2774,2477,1,0,0,0,2774,2481,1,0,0,0,2774,2486,1,0,0, + 0,2774,2499,1,0,0,0,2774,2511,1,0,0,0,2774,2518,1,0,0,0,2774,2525, + 1,0,0,0,2774,2538,1,0,0,0,2774,2539,1,0,0,0,2774,2540,1,0,0,0,2774, + 2546,1,0,0,0,2774,2552,1,0,0,0,2774,2558,1,0,0,0,2774,2564,1,0,0, + 0,2774,2565,1,0,0,0,2774,2566,1,0,0,0,2774,2567,1,0,0,0,2774,2568, + 1,0,0,0,2774,2582,1,0,0,0,2774,2589,1,0,0,0,2774,2600,1,0,0,0,2774, + 2609,1,0,0,0,2774,2616,1,0,0,0,2774,2620,1,0,0,0,2774,2633,1,0,0, + 0,2774,2644,1,0,0,0,2774,2665,1,0,0,0,2774,2704,1,0,0,0,2774,2745, + 1,0,0,0,2775,2786,1,0,0,0,2776,2777,10,24,0,0,2777,2778,5,8,0,0, + 2778,2779,3,144,72,0,2779,2780,5,9,0,0,2780,2785,1,0,0,0,2781,2782, + 10,22,0,0,2782,2783,5,4,0,0,2783,2785,3,298,149,0,2784,2776,1,0, + 0,0,2784,2781,1,0,0,0,2785,2788,1,0,0,0,2786,2784,1,0,0,0,2786,2787, + 1,0,0,0,2787,147,1,0,0,0,2788,2786,1,0,0,0,2789,2790,3,150,75,0, + 2790,2791,5,3,0,0,2791,2794,3,170,85,0,2792,2793,5,28,0,0,2793,2795, + 3,298,149,0,2794,2792,1,0,0,0,2794,2795,1,0,0,0,2795,2805,1,0,0, + 0,2796,2797,5,203,0,0,2797,2802,3,154,77,0,2798,2799,5,3,0,0,2799, + 2801,3,154,77,0,2800,2798,1,0,0,0,2801,2804,1,0,0,0,2802,2800,1, + 0,0,0,2802,2803,1,0,0,0,2803,2806,1,0,0,0,2804,2802,1,0,0,0,2805, + 2796,1,0,0,0,2805,2806,1,0,0,0,2806,149,1,0,0,0,2807,2810,3,138, + 69,0,2808,2809,5,104,0,0,2809,2811,3,152,76,0,2810,2808,1,0,0,0, + 2810,2811,1,0,0,0,2811,151,1,0,0,0,2812,2815,5,137,0,0,2813,2814, + 5,87,0,0,2814,2816,7,20,0,0,2815,2813,1,0,0,0,2815,2816,1,0,0,0, + 2816,153,1,0,0,0,2817,2818,3,150,75,0,2818,2819,5,28,0,0,2819,2820, + 3,298,149,0,2820,155,1,0,0,0,2821,2822,7,21,0,0,2822,157,1,0,0,0, + 2823,2828,5,89,0,0,2824,2828,5,183,0,0,2825,2826,5,70,0,0,2826,2828, + 3,138,69,0,2827,2823,1,0,0,0,2827,2824,1,0,0,0,2827,2825,1,0,0,0, + 2828,159,1,0,0,0,2829,2831,5,306,0,0,2830,2832,5,27,0,0,2831,2830, + 1,0,0,0,2831,2832,1,0,0,0,2832,2841,1,0,0,0,2833,2835,5,304,0,0, + 2834,2836,7,22,0,0,2835,2834,1,0,0,0,2835,2836,1,0,0,0,2836,2838, + 1,0,0,0,2837,2839,5,27,0,0,2838,2837,1,0,0,0,2838,2839,1,0,0,0,2839, + 2841,1,0,0,0,2840,2829,1,0,0,0,2840,2833,1,0,0,0,2841,161,1,0,0, + 0,2842,2849,5,89,0,0,2843,2849,5,183,0,0,2844,2845,5,85,0,0,2845, + 2849,5,27,0,0,2846,2847,5,85,0,0,2847,2849,5,186,0,0,2848,2842,1, + 0,0,0,2848,2843,1,0,0,0,2848,2844,1,0,0,0,2848,2846,1,0,0,0,2849, + 163,1,0,0,0,2850,2852,5,145,0,0,2851,2850,1,0,0,0,2851,2852,1,0, + 0,0,2852,2853,1,0,0,0,2853,2854,3,138,69,0,2854,2855,5,295,0,0,2855, + 2856,3,150,75,0,2856,2862,1,0,0,0,2857,2858,3,138,69,0,2858,2859, + 5,10,0,0,2859,2860,3,150,75,0,2860,2862,1,0,0,0,2861,2851,1,0,0, + 0,2861,2857,1,0,0,0,2862,165,1,0,0,0,2863,2864,7,23,0,0,2864,167, + 1,0,0,0,2865,2866,5,120,0,0,2866,2870,5,185,0,0,2867,2868,5,228, + 0,0,2868,2870,5,185,0,0,2869,2865,1,0,0,0,2869,2867,1,0,0,0,2870, + 169,1,0,0,0,2871,2878,5,326,0,0,2872,2875,5,327,0,0,2873,2874,5, + 277,0,0,2874,2876,5,326,0,0,2875,2873,1,0,0,0,2875,2876,1,0,0,0, + 2876,2878,1,0,0,0,2877,2871,1,0,0,0,2877,2872,1,0,0,0,2878,171,1, + 0,0,0,2879,2880,5,267,0,0,2880,2881,5,311,0,0,2881,2886,3,180,90, + 0,2882,2883,5,267,0,0,2883,2884,5,311,0,0,2884,2886,3,170,85,0,2885, + 2879,1,0,0,0,2885,2882,1,0,0,0,2886,173,1,0,0,0,2887,2888,7,24,0, + 0,2888,175,1,0,0,0,2889,2890,7,25,0,0,2890,177,1,0,0,0,2891,2892, + 7,26,0,0,2892,179,1,0,0,0,2893,2895,5,129,0,0,2894,2896,7,18,0,0, + 2895,2894,1,0,0,0,2895,2896,1,0,0,0,2896,2897,1,0,0,0,2897,2898, + 3,170,85,0,2898,2901,3,182,91,0,2899,2900,5,269,0,0,2900,2902,3, + 182,91,0,2901,2899,1,0,0,0,2901,2902,1,0,0,0,2902,181,1,0,0,0,2903, + 2904,7,27,0,0,2904,183,1,0,0,0,2905,2906,7,28,0,0,2906,185,1,0,0, + 0,2907,2908,6,93,-1,0,2908,2909,5,239,0,0,2909,2910,5,1,0,0,2910, + 2915,3,188,94,0,2911,2912,5,3,0,0,2912,2914,3,188,94,0,2913,2911, + 1,0,0,0,2914,2917,1,0,0,0,2915,2913,1,0,0,0,2915,2916,1,0,0,0,2916, + 2918,1,0,0,0,2917,2915,1,0,0,0,2918,2919,5,2,0,0,2919,2999,1,0,0, + 0,2920,2921,5,129,0,0,2921,2924,3,182,91,0,2922,2923,5,269,0,0,2923, + 2925,3,182,91,0,2924,2922,1,0,0,0,2924,2925,1,0,0,0,2925,2999,1, + 0,0,0,2926,2931,5,268,0,0,2927,2928,5,1,0,0,2928,2929,3,190,95,0, + 2929,2930,5,2,0,0,2930,2932,1,0,0,0,2931,2927,1,0,0,0,2931,2932, + 1,0,0,0,2932,2936,1,0,0,0,2933,2934,5,306,0,0,2934,2935,5,267,0, + 0,2935,2937,5,311,0,0,2936,2933,1,0,0,0,2936,2937,1,0,0,0,2937,2999, + 1,0,0,0,2938,2943,5,268,0,0,2939,2940,5,1,0,0,2940,2941,3,190,95, + 0,2941,2942,5,2,0,0,2942,2944,1,0,0,0,2943,2939,1,0,0,0,2943,2944, + 1,0,0,0,2944,2945,1,0,0,0,2945,2946,5,304,0,0,2946,2947,5,267,0, + 0,2947,2999,5,311,0,0,2948,2953,5,267,0,0,2949,2950,5,1,0,0,2950, + 2951,3,190,95,0,2951,2952,5,2,0,0,2952,2954,1,0,0,0,2953,2949,1, + 0,0,0,2953,2954,1,0,0,0,2954,2958,1,0,0,0,2955,2956,5,306,0,0,2956, + 2957,5,267,0,0,2957,2959,5,311,0,0,2958,2955,1,0,0,0,2958,2959,1, + 0,0,0,2959,2999,1,0,0,0,2960,2965,5,267,0,0,2961,2962,5,1,0,0,2962, + 2963,3,190,95,0,2963,2964,5,2,0,0,2964,2966,1,0,0,0,2965,2961,1, + 0,0,0,2965,2966,1,0,0,0,2966,2967,1,0,0,0,2967,2968,5,304,0,0,2968, + 2969,5,267,0,0,2969,2999,5,311,0,0,2970,2971,5,82,0,0,2971,2999, + 5,213,0,0,2972,2973,5,27,0,0,2973,2974,5,314,0,0,2974,2975,3,186, + 93,0,2975,2976,5,316,0,0,2976,2999,1,0,0,0,2977,2978,5,162,0,0,2978, + 2979,5,314,0,0,2979,2980,3,186,93,0,2980,2981,5,3,0,0,2981,2982, + 3,186,93,0,2982,2983,5,316,0,0,2983,2999,1,0,0,0,2984,2996,3,298, + 149,0,2985,2986,5,1,0,0,2986,2991,3,190,95,0,2987,2988,5,3,0,0,2988, + 2990,3,190,95,0,2989,2987,1,0,0,0,2990,2993,1,0,0,0,2991,2989,1, + 0,0,0,2991,2992,1,0,0,0,2992,2994,1,0,0,0,2993,2991,1,0,0,0,2994, + 2995,5,2,0,0,2995,2997,1,0,0,0,2996,2985,1,0,0,0,2996,2997,1,0,0, + 0,2997,2999,1,0,0,0,2998,2907,1,0,0,0,2998,2920,1,0,0,0,2998,2926, + 1,0,0,0,2998,2938,1,0,0,0,2998,2948,1,0,0,0,2998,2960,1,0,0,0,2998, + 2970,1,0,0,0,2998,2972,1,0,0,0,2998,2977,1,0,0,0,2998,2984,1,0,0, + 0,2999,3009,1,0,0,0,3000,3001,10,2,0,0,3001,3005,5,27,0,0,3002,3003, + 5,8,0,0,3003,3004,5,329,0,0,3004,3006,5,9,0,0,3005,3002,1,0,0,0, + 3005,3006,1,0,0,0,3006,3008,1,0,0,0,3007,3000,1,0,0,0,3008,3011, + 1,0,0,0,3009,3007,1,0,0,0,3009,3010,1,0,0,0,3010,187,1,0,0,0,3011, + 3009,1,0,0,0,3012,3017,3,186,93,0,3013,3014,3,298,149,0,3014,3015, + 3,186,93,0,3015,3017,1,0,0,0,3016,3012,1,0,0,0,3016,3013,1,0,0,0, + 3017,189,1,0,0,0,3018,3021,5,329,0,0,3019,3021,3,186,93,0,3020,3018, + 1,0,0,0,3020,3019,1,0,0,0,3021,191,1,0,0,0,3022,3023,5,300,0,0,3023, + 3024,3,138,69,0,3024,3025,5,265,0,0,3025,3026,3,138,69,0,3026,193, + 1,0,0,0,3027,3028,5,99,0,0,3028,3029,5,1,0,0,3029,3030,3,54,27,0, + 3030,3031,5,2,0,0,3031,195,1,0,0,0,3032,3033,5,300,0,0,3033,3036, + 5,164,0,0,3034,3035,5,25,0,0,3035,3037,3,138,69,0,3036,3034,1,0, + 0,0,3036,3037,1,0,0,0,3037,3038,1,0,0,0,3038,3039,5,265,0,0,3039, + 3040,5,287,0,0,3040,3041,5,251,0,0,3041,3042,3,298,149,0,3042,3043, + 5,312,0,0,3043,3051,3,138,69,0,3044,3045,5,3,0,0,3045,3046,3,298, + 149,0,3046,3047,5,312,0,0,3047,3048,3,138,69,0,3048,3050,1,0,0,0, + 3049,3044,1,0,0,0,3050,3053,1,0,0,0,3051,3049,1,0,0,0,3051,3052, + 1,0,0,0,3052,3097,1,0,0,0,3053,3051,1,0,0,0,3054,3055,5,300,0,0, + 3055,3058,5,164,0,0,3056,3057,5,25,0,0,3057,3059,3,138,69,0,3058, + 3056,1,0,0,0,3058,3059,1,0,0,0,3059,3060,1,0,0,0,3060,3061,5,265, + 0,0,3061,3097,5,73,0,0,3062,3063,5,300,0,0,3063,3064,5,182,0,0,3064, + 3067,5,164,0,0,3065,3066,5,25,0,0,3066,3068,3,138,69,0,3067,3065, + 1,0,0,0,3067,3068,1,0,0,0,3068,3069,1,0,0,0,3069,3070,5,265,0,0, + 3070,3082,5,127,0,0,3071,3072,5,1,0,0,3072,3077,3,298,149,0,3073, + 3074,5,3,0,0,3074,3076,3,298,149,0,3075,3073,1,0,0,0,3076,3079,1, + 0,0,0,3077,3075,1,0,0,0,3077,3078,1,0,0,0,3078,3080,1,0,0,0,3079, + 3077,1,0,0,0,3080,3081,5,2,0,0,3081,3083,1,0,0,0,3082,3071,1,0,0, + 0,3082,3083,1,0,0,0,3083,3084,1,0,0,0,3084,3085,5,296,0,0,3085,3086, + 5,1,0,0,3086,3091,3,138,69,0,3087,3088,5,3,0,0,3088,3090,3,138,69, + 0,3089,3087,1,0,0,0,3090,3093,1,0,0,0,3091,3089,1,0,0,0,3091,3092, + 1,0,0,0,3092,3094,1,0,0,0,3093,3091,1,0,0,0,3094,3095,5,2,0,0,3095, + 3097,1,0,0,0,3096,3032,1,0,0,0,3096,3054,1,0,0,0,3096,3062,1,0,0, + 0,3097,197,1,0,0,0,3098,3104,5,199,0,0,3099,3105,3,298,149,0,3100, + 3101,5,1,0,0,3101,3102,3,66,33,0,3102,3103,5,2,0,0,3103,3105,1,0, + 0,0,3104,3099,1,0,0,0,3104,3100,1,0,0,0,3105,199,1,0,0,0,3106,3107, + 5,168,0,0,3107,3112,3,92,46,0,3108,3109,5,3,0,0,3109,3111,3,92,46, + 0,3110,3108,1,0,0,0,3111,3114,1,0,0,0,3112,3110,1,0,0,0,3112,3113, + 1,0,0,0,3113,3116,1,0,0,0,3114,3112,1,0,0,0,3115,3106,1,0,0,0,3115, + 3116,1,0,0,0,3116,3117,1,0,0,0,3117,3121,3,202,101,0,3118,3119,5, + 21,0,0,3119,3120,5,163,0,0,3120,3122,3,98,49,0,3121,3118,1,0,0,0, + 3121,3122,1,0,0,0,3122,3124,1,0,0,0,3123,3125,7,13,0,0,3124,3123, + 1,0,0,0,3124,3125,1,0,0,0,3125,3131,1,0,0,0,3126,3127,5,206,0,0, + 3127,3128,5,1,0,0,3128,3129,3,206,103,0,3129,3130,5,2,0,0,3130,3132, + 1,0,0,0,3131,3126,1,0,0,0,3131,3132,1,0,0,0,3132,3142,1,0,0,0,3133, + 3134,5,257,0,0,3134,3139,3,100,50,0,3135,3136,5,3,0,0,3136,3138, + 3,100,50,0,3137,3135,1,0,0,0,3138,3141,1,0,0,0,3139,3137,1,0,0,0, + 3139,3140,1,0,0,0,3140,3143,1,0,0,0,3141,3139,1,0,0,0,3142,3133, + 1,0,0,0,3142,3143,1,0,0,0,3143,3153,1,0,0,0,3144,3145,5,71,0,0,3145, + 3150,3,102,51,0,3146,3147,5,3,0,0,3147,3149,3,102,51,0,3148,3146, + 1,0,0,0,3149,3152,1,0,0,0,3150,3148,1,0,0,0,3150,3151,1,0,0,0,3151, + 3154,1,0,0,0,3152,3150,1,0,0,0,3153,3144,1,0,0,0,3153,3154,1,0,0, + 0,3154,201,1,0,0,0,3155,3156,5,219,0,0,3156,3180,3,204,102,0,3157, + 3158,5,240,0,0,3158,3180,3,204,102,0,3159,3160,5,116,0,0,3160,3180, + 3,204,102,0,3161,3162,5,219,0,0,3162,3163,5,34,0,0,3163,3164,3,204, + 102,0,3164,3165,5,25,0,0,3165,3166,3,204,102,0,3166,3180,1,0,0,0, + 3167,3168,5,240,0,0,3168,3169,5,34,0,0,3169,3170,3,204,102,0,3170, + 3171,5,25,0,0,3171,3172,3,204,102,0,3172,3180,1,0,0,0,3173,3174, + 5,116,0,0,3174,3175,5,34,0,0,3175,3176,3,204,102,0,3176,3177,5,25, + 0,0,3177,3178,3,204,102,0,3178,3180,1,0,0,0,3179,3155,1,0,0,0,3179, + 3157,1,0,0,0,3179,3159,1,0,0,0,3179,3161,1,0,0,0,3179,3167,1,0,0, + 0,3179,3173,1,0,0,0,3180,203,1,0,0,0,3181,3182,5,278,0,0,3182,3191, + 5,212,0,0,3183,3184,5,278,0,0,3184,3191,5,102,0,0,3185,3186,5,56, + 0,0,3186,3191,5,239,0,0,3187,3188,3,138,69,0,3188,3189,7,29,0,0, + 3189,3191,1,0,0,0,3190,3181,1,0,0,0,3190,3183,1,0,0,0,3190,3185, + 1,0,0,0,3190,3187,1,0,0,0,3191,205,1,0,0,0,3192,3193,6,103,-1,0, + 3193,3195,3,208,104,0,3194,3196,3,210,105,0,3195,3194,1,0,0,0,3195, + 3196,1,0,0,0,3196,3204,1,0,0,0,3197,3198,10,2,0,0,3198,3203,3,206, + 103,3,3199,3200,10,1,0,0,3200,3201,5,11,0,0,3201,3203,3,206,103, + 2,3202,3197,1,0,0,0,3202,3199,1,0,0,0,3203,3206,1,0,0,0,3204,3202, + 1,0,0,0,3204,3205,1,0,0,0,3205,207,1,0,0,0,3206,3204,1,0,0,0,3207, + 3233,3,298,149,0,3208,3209,5,1,0,0,3209,3233,5,2,0,0,3210,3211,5, + 209,0,0,3211,3212,5,1,0,0,3212,3217,3,206,103,0,3213,3214,5,3,0, + 0,3214,3216,3,206,103,0,3215,3213,1,0,0,0,3216,3219,1,0,0,0,3217, + 3215,1,0,0,0,3217,3218,1,0,0,0,3218,3220,1,0,0,0,3219,3217,1,0,0, + 0,3220,3221,5,2,0,0,3221,3233,1,0,0,0,3222,3223,5,1,0,0,3223,3224, + 3,206,103,0,3224,3225,5,2,0,0,3225,3233,1,0,0,0,3226,3233,5,12,0, + 0,3227,3233,5,13,0,0,3228,3229,5,14,0,0,3229,3230,3,206,103,0,3230, + 3231,5,15,0,0,3231,3233,1,0,0,0,3232,3207,1,0,0,0,3232,3208,1,0, + 0,0,3232,3210,1,0,0,0,3232,3222,1,0,0,0,3232,3226,1,0,0,0,3232,3227, + 1,0,0,0,3232,3228,1,0,0,0,3233,209,1,0,0,0,3234,3236,5,320,0,0,3235, + 3237,5,324,0,0,3236,3235,1,0,0,0,3236,3237,1,0,0,0,3237,3265,1,0, + 0,0,3238,3240,5,318,0,0,3239,3241,5,324,0,0,3240,3239,1,0,0,0,3240, + 3241,1,0,0,0,3241,3265,1,0,0,0,3242,3244,5,324,0,0,3243,3245,5,324, + 0,0,3244,3243,1,0,0,0,3244,3245,1,0,0,0,3245,3265,1,0,0,0,3246,3247, + 5,16,0,0,3247,3248,5,329,0,0,3248,3250,5,17,0,0,3249,3251,5,324, + 0,0,3250,3249,1,0,0,0,3250,3251,1,0,0,0,3251,3265,1,0,0,0,3252,3254, + 5,16,0,0,3253,3255,5,329,0,0,3254,3253,1,0,0,0,3254,3255,1,0,0,0, + 3255,3256,1,0,0,0,3256,3258,5,3,0,0,3257,3259,5,329,0,0,3258,3257, + 1,0,0,0,3258,3259,1,0,0,0,3259,3260,1,0,0,0,3260,3262,5,17,0,0,3261, + 3263,5,324,0,0,3262,3261,1,0,0,0,3262,3263,1,0,0,0,3263,3265,1,0, + 0,0,3264,3234,1,0,0,0,3264,3238,1,0,0,0,3264,3242,1,0,0,0,3264,3246, + 1,0,0,0,3264,3252,1,0,0,0,3265,211,1,0,0,0,3266,3267,3,298,149,0, + 3267,3268,5,312,0,0,3268,3269,3,138,69,0,3269,213,1,0,0,0,3270,3271, + 5,104,0,0,3271,3275,7,30,0,0,3272,3273,5,276,0,0,3273,3275,7,31, + 0,0,3274,3270,1,0,0,0,3274,3272,1,0,0,0,3275,215,1,0,0,0,3276,3277, + 5,134,0,0,3277,3278,5,153,0,0,3278,3282,3,218,109,0,3279,3280,5, + 220,0,0,3280,3282,7,32,0,0,3281,3276,1,0,0,0,3281,3279,1,0,0,0,3282, + 217,1,0,0,0,3283,3284,5,220,0,0,3284,3291,5,279,0,0,3285,3286,5, + 220,0,0,3286,3291,5,48,0,0,3287,3288,5,225,0,0,3288,3291,5,220,0, + 0,3289,3291,5,249,0,0,3290,3283,1,0,0,0,3290,3285,1,0,0,0,3290,3287, + 1,0,0,0,3290,3289,1,0,0,0,3291,219,1,0,0,0,3292,3298,3,138,69,0, + 3293,3294,3,298,149,0,3294,3295,5,6,0,0,3295,3296,3,138,69,0,3296, + 3298,1,0,0,0,3297,3292,1,0,0,0,3297,3293,1,0,0,0,3298,221,1,0,0, + 0,3299,3300,3,298,149,0,3300,3301,5,4,0,0,3301,3302,3,298,149,0, + 3302,3305,1,0,0,0,3303,3305,3,298,149,0,3304,3299,1,0,0,0,3304,3303, + 1,0,0,0,3305,223,1,0,0,0,3306,3311,3,222,111,0,3307,3308,5,3,0,0, + 3308,3310,3,222,111,0,3309,3307,1,0,0,0,3310,3313,1,0,0,0,3311,3309, + 1,0,0,0,3311,3312,1,0,0,0,3312,225,1,0,0,0,3313,3311,1,0,0,0,3314, + 3315,5,107,0,0,3315,3316,3,228,114,0,3316,3320,3,234,117,0,3317, + 3319,3,236,118,0,3318,3317,1,0,0,0,3319,3322,1,0,0,0,3320,3318,1, + 0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0,0,3322,3320,1,0,0,0,3323, + 3324,3,238,119,0,3324,227,1,0,0,0,3325,3326,3,276,138,0,3326,3335, + 5,1,0,0,3327,3332,3,232,116,0,3328,3329,5,3,0,0,3329,3331,3,232, + 116,0,3330,3328,1,0,0,0,3331,3334,1,0,0,0,3332,3330,1,0,0,0,3332, + 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3332,1,0,0,0,3335,3327,1,0,0, + 0,3335,3336,1,0,0,0,3336,3337,1,0,0,0,3337,3338,5,2,0,0,3338,229, + 1,0,0,0,3339,3340,3,274,137,0,3340,3349,5,1,0,0,3341,3346,3,232, + 116,0,3342,3343,5,3,0,0,3343,3345,3,232,116,0,3344,3342,1,0,0,0, + 3345,3348,1,0,0,0,3346,3344,1,0,0,0,3346,3347,1,0,0,0,3347,3350, + 1,0,0,0,3348,3346,1,0,0,0,3349,3341,1,0,0,0,3349,3350,1,0,0,0,3350, + 3351,1,0,0,0,3351,3352,5,2,0,0,3352,231,1,0,0,0,3353,3355,3,298, + 149,0,3354,3353,1,0,0,0,3354,3355,1,0,0,0,3355,3356,1,0,0,0,3356, + 3357,3,186,93,0,3357,233,1,0,0,0,3358,3359,5,232,0,0,3359,3360,3, + 186,93,0,3360,235,1,0,0,0,3361,3362,5,147,0,0,3362,3381,3,298,149, + 0,3363,3365,5,182,0,0,3364,3363,1,0,0,0,3364,3365,1,0,0,0,3365,3366, + 1,0,0,0,3366,3381,5,78,0,0,3367,3368,5,232,0,0,3368,3369,5,183,0, + 0,3369,3370,5,190,0,0,3370,3371,5,183,0,0,3371,3381,5,126,0,0,3372, + 3373,5,38,0,0,3373,3374,5,190,0,0,3374,3375,5,183,0,0,3375,3381, + 5,126,0,0,3376,3377,5,246,0,0,3377,3381,7,1,0,0,3378,3379,5,46,0, + 0,3379,3381,3,170,85,0,3380,3361,1,0,0,0,3380,3364,1,0,0,0,3380, + 3367,1,0,0,0,3380,3372,1,0,0,0,3380,3376,1,0,0,0,3380,3378,1,0,0, + 0,3381,237,1,0,0,0,3382,3383,5,230,0,0,3383,3482,3,144,72,0,3384, + 3385,5,251,0,0,3385,3386,3,298,149,0,3386,3387,5,312,0,0,3387,3388, + 3,138,69,0,3388,3482,1,0,0,0,3389,3390,5,40,0,0,3390,3392,3,138, + 69,0,3391,3393,3,240,120,0,3392,3391,1,0,0,0,3393,3394,1,0,0,0,3394, + 3392,1,0,0,0,3394,3395,1,0,0,0,3395,3397,1,0,0,0,3396,3398,3,244, + 122,0,3397,3396,1,0,0,0,3397,3398,1,0,0,0,3398,3399,1,0,0,0,3399, + 3400,5,88,0,0,3400,3401,5,40,0,0,3401,3482,1,0,0,0,3402,3404,5,40, + 0,0,3403,3405,3,240,120,0,3404,3403,1,0,0,0,3405,3406,1,0,0,0,3406, + 3404,1,0,0,0,3406,3407,1,0,0,0,3407,3409,1,0,0,0,3408,3410,3,244, + 122,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,3411,1,0,0,0,3411, + 3412,5,88,0,0,3412,3413,5,40,0,0,3413,3482,1,0,0,0,3414,3415,5,119, + 0,0,3415,3416,3,138,69,0,3416,3417,5,265,0,0,3417,3421,3,248,124, + 0,3418,3420,3,242,121,0,3419,3418,1,0,0,0,3420,3423,1,0,0,0,3421, + 3419,1,0,0,0,3421,3422,1,0,0,0,3422,3425,1,0,0,0,3423,3421,1,0,0, + 0,3424,3426,3,244,122,0,3425,3424,1,0,0,0,3425,3426,1,0,0,0,3426, + 3427,1,0,0,0,3427,3428,5,88,0,0,3428,3429,5,119,0,0,3429,3482,1, + 0,0,0,3430,3431,5,135,0,0,3431,3482,3,298,149,0,3432,3433,5,151, + 0,0,3433,3482,3,298,149,0,3434,3440,5,32,0,0,3435,3436,3,246,123, + 0,3436,3437,5,325,0,0,3437,3439,1,0,0,0,3438,3435,1,0,0,0,3439,3442, + 1,0,0,0,3440,3438,1,0,0,0,3440,3441,1,0,0,0,3441,3444,1,0,0,0,3442, + 3440,1,0,0,0,3443,3445,3,248,124,0,3444,3443,1,0,0,0,3444,3445,1, + 0,0,0,3445,3446,1,0,0,0,3446,3482,5,88,0,0,3447,3448,3,298,149,0, + 3448,3449,5,10,0,0,3449,3451,1,0,0,0,3450,3447,1,0,0,0,3450,3451, + 1,0,0,0,3451,3452,1,0,0,0,3452,3453,5,161,0,0,3453,3454,3,248,124, + 0,3454,3455,5,88,0,0,3455,3456,5,161,0,0,3456,3482,1,0,0,0,3457, + 3458,3,298,149,0,3458,3459,5,10,0,0,3459,3461,1,0,0,0,3460,3457, + 1,0,0,0,3460,3461,1,0,0,0,3461,3462,1,0,0,0,3462,3463,5,302,0,0, + 3463,3464,3,138,69,0,3464,3465,5,81,0,0,3465,3466,3,248,124,0,3466, + 3467,5,88,0,0,3467,3468,5,302,0,0,3468,3482,1,0,0,0,3469,3470,3, + 298,149,0,3470,3471,5,10,0,0,3471,3473,1,0,0,0,3472,3469,1,0,0,0, + 3472,3473,1,0,0,0,3473,3474,1,0,0,0,3474,3475,5,224,0,0,3475,3476, + 3,248,124,0,3476,3477,5,286,0,0,3477,3478,3,138,69,0,3478,3479,5, + 88,0,0,3479,3480,5,224,0,0,3480,3482,1,0,0,0,3481,3382,1,0,0,0,3481, + 3384,1,0,0,0,3481,3389,1,0,0,0,3481,3402,1,0,0,0,3481,3414,1,0,0, + 0,3481,3430,1,0,0,0,3481,3432,1,0,0,0,3481,3434,1,0,0,0,3481,3450, + 1,0,0,0,3481,3460,1,0,0,0,3481,3472,1,0,0,0,3482,239,1,0,0,0,3483, + 3484,5,300,0,0,3484,3485,3,138,69,0,3485,3486,5,265,0,0,3486,3487, + 3,248,124,0,3487,241,1,0,0,0,3488,3489,5,86,0,0,3489,3490,3,138, + 69,0,3490,3491,5,265,0,0,3491,3492,3,248,124,0,3492,243,1,0,0,0, + 3493,3494,5,84,0,0,3494,3495,3,248,124,0,3495,245,1,0,0,0,3496,3497, + 5,69,0,0,3497,3502,3,298,149,0,3498,3499,5,3,0,0,3499,3501,3,298, + 149,0,3500,3498,1,0,0,0,3501,3504,1,0,0,0,3502,3500,1,0,0,0,3502, + 3503,1,0,0,0,3503,3505,1,0,0,0,3504,3502,1,0,0,0,3505,3508,3,186, + 93,0,3506,3507,5,70,0,0,3507,3509,3,144,72,0,3508,3506,1,0,0,0,3508, + 3509,1,0,0,0,3509,247,1,0,0,0,3510,3511,3,238,119,0,3511,3512,5, + 325,0,0,3512,3514,1,0,0,0,3513,3510,1,0,0,0,3514,3515,1,0,0,0,3515, + 3513,1,0,0,0,3515,3516,1,0,0,0,3516,249,1,0,0,0,3517,3524,5,53,0, + 0,3518,3524,5,248,0,0,3519,3524,5,73,0,0,3520,3524,5,127,0,0,3521, + 3524,5,287,0,0,3522,3524,3,298,149,0,3523,3517,1,0,0,0,3523,3518, + 1,0,0,0,3523,3519,1,0,0,0,3523,3520,1,0,0,0,3523,3521,1,0,0,0,3523, + 3522,1,0,0,0,3524,251,1,0,0,0,3525,3529,5,260,0,0,3526,3529,5,243, + 0,0,3527,3529,3,298,149,0,3528,3525,1,0,0,0,3528,3526,1,0,0,0,3528, + 3527,1,0,0,0,3529,253,1,0,0,0,3530,3532,3,252,126,0,3531,3530,1, + 0,0,0,3531,3532,1,0,0,0,3532,3533,1,0,0,0,3533,3534,3,284,142,0, + 3534,255,1,0,0,0,3535,3538,3,258,129,0,3536,3538,3,262,131,0,3537, + 3535,1,0,0,0,3537,3536,1,0,0,0,3538,257,1,0,0,0,3539,3551,3,298, + 149,0,3540,3541,3,298,149,0,3541,3542,5,4,0,0,3542,3543,3,298,149, + 0,3543,3551,1,0,0,0,3544,3545,3,298,149,0,3545,3546,5,4,0,0,3546, + 3547,3,298,149,0,3547,3548,5,4,0,0,3548,3549,3,298,149,0,3549,3551, + 1,0,0,0,3550,3539,1,0,0,0,3550,3540,1,0,0,0,3550,3544,1,0,0,0,3551, + 259,1,0,0,0,3552,3564,3,298,149,0,3553,3554,3,298,149,0,3554,3555, + 5,4,0,0,3555,3556,3,298,149,0,3556,3564,1,0,0,0,3557,3558,3,298, + 149,0,3558,3559,5,4,0,0,3559,3560,3,298,149,0,3560,3561,5,4,0,0, + 3561,3562,3,298,149,0,3562,3564,1,0,0,0,3563,3552,1,0,0,0,3563,3553, + 1,0,0,0,3563,3557,1,0,0,0,3564,261,1,0,0,0,3565,3577,3,298,149,0, + 3566,3567,3,298,149,0,3567,3568,5,4,0,0,3568,3569,3,298,149,0,3569, + 3577,1,0,0,0,3570,3571,3,298,149,0,3571,3572,5,4,0,0,3572,3573,3, + 298,149,0,3573,3574,5,4,0,0,3574,3575,3,298,149,0,3575,3577,1,0, + 0,0,3576,3565,1,0,0,0,3576,3566,1,0,0,0,3576,3570,1,0,0,0,3577,263, + 1,0,0,0,3578,3590,3,298,149,0,3579,3580,3,298,149,0,3580,3581,5, + 4,0,0,3581,3582,3,298,149,0,3582,3590,1,0,0,0,3583,3584,3,298,149, + 0,3584,3585,5,4,0,0,3585,3586,3,298,149,0,3586,3587,5,4,0,0,3587, + 3588,3,298,149,0,3588,3590,1,0,0,0,3589,3578,1,0,0,0,3589,3579,1, + 0,0,0,3589,3583,1,0,0,0,3590,265,1,0,0,0,3591,3597,3,298,149,0,3592, + 3593,3,298,149,0,3593,3594,5,4,0,0,3594,3595,3,298,149,0,3595,3597, + 1,0,0,0,3596,3591,1,0,0,0,3596,3592,1,0,0,0,3597,267,1,0,0,0,3598, + 3604,3,298,149,0,3599,3600,3,298,149,0,3600,3601,5,4,0,0,3601,3602, + 3,298,149,0,3602,3604,1,0,0,0,3603,3598,1,0,0,0,3603,3599,1,0,0, + 0,3604,269,1,0,0,0,3605,3606,3,298,149,0,3606,271,1,0,0,0,3607,3608, + 3,298,149,0,3608,273,1,0,0,0,3609,3610,3,284,142,0,3610,275,1,0, + 0,0,3611,3612,3,284,142,0,3612,277,1,0,0,0,3613,3616,3,284,142,0, + 3614,3616,4,139,14,0,3615,3613,1,0,0,0,3615,3614,1,0,0,0,3616,279, + 1,0,0,0,3617,3618,3,284,142,0,3618,281,1,0,0,0,3619,3620,3,298,149, + 0,3620,283,1,0,0,0,3621,3626,3,298,149,0,3622,3623,5,4,0,0,3623, + 3625,3,298,149,0,3624,3622,1,0,0,0,3625,3628,1,0,0,0,3626,3624,1, + 0,0,0,3626,3627,1,0,0,0,3627,285,1,0,0,0,3628,3626,1,0,0,0,3629, + 3630,5,103,0,0,3630,3631,3,288,144,0,3631,3632,5,28,0,0,3632,3633, + 5,187,0,0,3633,3634,3,144,72,0,3634,287,1,0,0,0,3635,3636,7,33,0, + 0,3636,289,1,0,0,0,3637,3641,3,292,146,0,3638,3641,5,64,0,0,3639, + 3641,5,60,0,0,3640,3637,1,0,0,0,3640,3638,1,0,0,0,3640,3639,1,0, + 0,0,3641,291,1,0,0,0,3642,3648,3,298,149,0,3643,3644,5,289,0,0,3644, + 3648,3,298,149,0,3645,3646,5,235,0,0,3646,3648,3,298,149,0,3647, + 3642,1,0,0,0,3647,3643,1,0,0,0,3647,3645,1,0,0,0,3648,293,1,0,0, + 0,3649,3654,3,298,149,0,3650,3651,5,3,0,0,3651,3653,3,298,149,0, + 3652,3650,1,0,0,0,3653,3656,1,0,0,0,3654,3652,1,0,0,0,3654,3655, + 1,0,0,0,3655,295,1,0,0,0,3656,3654,1,0,0,0,3657,3665,5,53,0,0,3658, + 3665,5,248,0,0,3659,3665,5,73,0,0,3660,3665,5,127,0,0,3661,3665, + 5,287,0,0,3662,3665,5,93,0,0,3663,3665,3,298,149,0,3664,3657,1,0, + 0,0,3664,3658,1,0,0,0,3664,3659,1,0,0,0,3664,3660,1,0,0,0,3664,3661, + 1,0,0,0,3664,3662,1,0,0,0,3664,3663,1,0,0,0,3665,297,1,0,0,0,3666, + 3672,5,332,0,0,3667,3672,5,334,0,0,3668,3672,3,304,152,0,3669,3672, + 5,335,0,0,3670,3672,5,333,0,0,3671,3666,1,0,0,0,3671,3667,1,0,0, + 0,3671,3668,1,0,0,0,3671,3669,1,0,0,0,3671,3670,1,0,0,0,3672,299, + 1,0,0,0,3673,3675,5,319,0,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0, + 3675,3676,1,0,0,0,3676,3686,5,330,0,0,3677,3679,5,319,0,0,3678,3677, + 1,0,0,0,3678,3679,1,0,0,0,3679,3680,1,0,0,0,3680,3686,5,331,0,0, + 3681,3683,5,319,0,0,3682,3681,1,0,0,0,3682,3683,1,0,0,0,3683,3684, + 1,0,0,0,3684,3686,5,329,0,0,3685,3674,1,0,0,0,3685,3678,1,0,0,0, + 3685,3682,1,0,0,0,3686,301,1,0,0,0,3687,3690,3,298,149,0,3688,3690, + 3,170,85,0,3689,3687,1,0,0,0,3689,3688,1,0,0,0,3690,303,1,0,0,0, + 3691,3692,7,34,0,0,3692,305,1,0,0,0,480,309,318,322,326,330,334, + 347,354,358,362,368,372,379,384,388,394,398,417,423,427,431,435, + 443,447,450,455,461,470,476,480,486,493,501,513,522,531,537,548, + 556,564,571,581,588,596,611,646,649,652,655,661,666,673,679,683, + 687,695,701,705,709,723,731,750,775,778,785,792,801,805,812,820, + 829,835,840,844,852,857,866,872,879,888,894,898,904,911,916,929, + 934,946,950,956,965,970,976,1004,1010,1012,1018,1024,1026,1034,1036, + 1046,1048,1063,1068,1075,1085,1091,1093,1101,1103,1128,1131,1135, + 1139,1157,1160,1171,1174,1190,1200,1204,1210,1213,1222,1234,1237, + 1247,1251,1257,1264,1269,1275,1279,1283,1289,1300,1309,1319,1322, + 1327,1329,1336,1342,1344,1348,1358,1364,1367,1369,1381,1388,1392, + 1395,1399,1403,1410,1419,1422,1425,1430,1434,1442,1445,1451,1458, + 1469,1472,1482,1485,1496,1501,1509,1512,1516,1520,1529,1538,1541, + 1550,1553,1556,1560,1571,1574,1577,1584,1587,1606,1610,1614,1618, + 1622,1626,1628,1639,1644,1653,1662,1665,1671,1683,1686,1695,1698, + 1706,1709,1712,1717,1720,1732,1735,1743,1748,1752,1754,1756,1771, + 1773,1784,1805,1815,1826,1830,1832,1840,1851,1862,1869,1882,1888, + 1914,1929,1934,1938,1948,1954,1960,1968,1973,1980,1982,1988,1994, + 1998,2003,2012,2017,2031,2041,2044,2053,2058,2063,2065,2074,2077, + 2085,2088,2095,2100,2111,2114,2118,2120,2128,2138,2144,2146,2153, + 2157,2159,2166,2170,2172,2174,2183,2194,2198,2208,2218,2222,2230, + 2232,2245,2253,2262,2268,2276,2282,2286,2291,2296,2302,2316,2318, + 2348,2359,2367,2372,2377,2390,2396,2399,2406,2411,2414,2417,2422, + 2429,2432,2441,2444,2448,2451,2454,2469,2472,2491,2495,2503,2507, + 2532,2535,2544,2550,2556,2562,2571,2574,2577,2596,2605,2627,2630, + 2640,2649,2655,2661,2672,2674,2679,2686,2688,2694,2700,2711,2720, + 2725,2730,2732,2734,2740,2742,2752,2761,2763,2769,2771,2774,2784, + 2786,2794,2802,2805,2810,2815,2827,2831,2835,2838,2840,2848,2851, + 2861,2869,2875,2877,2885,2895,2901,2915,2924,2931,2936,2943,2953, + 2958,2965,2991,2996,2998,3005,3009,3016,3020,3036,3051,3058,3067, + 3077,3082,3091,3096,3104,3112,3115,3121,3124,3131,3139,3142,3150, + 3153,3179,3190,3195,3202,3204,3217,3232,3236,3240,3244,3250,3254, + 3258,3262,3264,3274,3281,3290,3297,3304,3311,3320,3332,3335,3346, + 3349,3354,3364,3380,3394,3397,3406,3409,3421,3425,3440,3444,3450, + 3460,3472,3481,3502,3508,3515,3523,3528,3531,3537,3550,3563,3576, + 3589,3596,3603,3615,3626,3640,3647,3654,3664,3671,3674,3678,3682, + 3685,3689 ]; private static __ATN: antlr.ATN; @@ -20950,7 +20994,6 @@ export class DropFunctionContext extends StatementContext { } } export class UpdateContext extends StatementContext { - public _where?: BooleanExpressionContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -20973,11 +21016,8 @@ export class UpdateContext extends StatementContext { return this.getRuleContext(i, UpdateAssignmentContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterUpdate) { @@ -21000,7 +21040,6 @@ export class UpdateContext extends StatementContext { export class TableExecuteContext extends StatementContext { public _tableName?: TableRefContext; public _procedureName?: FunctionNameContext; - public _where?: BooleanExpressionContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -21020,11 +21059,8 @@ export class TableExecuteContext extends StatementContext { public functionName(): FunctionNameContext { return this.getRuleContext(0, FunctionNameContext)!; } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public callArgument(): CallArgumentContext[]; public callArgument(i: number): CallArgumentContext | null; @@ -21067,11 +21103,8 @@ export class DeleteContext extends StatementContext { public tableRef(): TableRefContext { return this.getRuleContext(0, TableRefContext)!; } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterDelete) { @@ -23145,7 +23178,6 @@ export class SortItemContext extends antlr.ParserRuleContext { export class QuerySpecificationContext extends antlr.ParserRuleContext { - public _where?: BooleanExpressionContext; public _having?: BooleanExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23177,8 +23209,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public KW_GROUP(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_GROUP, 0); @@ -23204,14 +23236,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, WindowDefinitionContext); } - public booleanExpression(): BooleanExpressionContext[]; - public booleanExpression(i: number): BooleanExpressionContext | null; - public booleanExpression(i?: number): BooleanExpressionContext[] | BooleanExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(BooleanExpressionContext); - } - - return this.getRuleContext(i, BooleanExpressionContext); + public booleanExpression(): BooleanExpressionContext | null { + return this.getRuleContext(0, BooleanExpressionContext); } public override get ruleIndex(): number { return TrinoSqlParser.RULE_querySpecification; @@ -23236,6 +23262,40 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { } +export class WhereClauseContext extends antlr.ParserRuleContext { + public _where?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_WHERE(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.KW_WHERE, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_whereClause; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterWhereClause) { + listener.enterWhereClause(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitWhereClause) { + listener.exitWhereClause(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitWhereClause) { + return visitor.visitWhereClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27170,8 +27230,8 @@ export class ColumnReferenceContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterColumnReference) { @@ -29342,11 +29402,8 @@ export class FilterContext extends antlr.ParserRuleContext { public KW_FILTER(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.KW_FILTER, 0)!; } - public KW_WHERE(): antlr.TerminalNode { - return this.getToken(TrinoSqlParser.KW_WHERE, 0)!; - } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; } public override get ruleIndex(): number { return TrinoSqlParser.RULE_filter; @@ -32412,6 +32469,36 @@ export class ColumnRefContext extends antlr.ParserRuleContext { } +export class ColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_columnName; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterColumnName) { + listener.enterColumnName(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitColumnName) { + listener.exitColumnName(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitColumnName) { + return visitor.visitColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/trino/TrinoSqlVisitor.ts b/src/lib/trino/TrinoSqlVisitor.ts index d7645f05..5140e87a 100644 --- a/src/lib/trino/TrinoSqlVisitor.ts +++ b/src/lib/trino/TrinoSqlVisitor.ts @@ -123,6 +123,7 @@ import { InlineTableContext } from "./TrinoSqlParser.js"; import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; +import { WhereClauseContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; @@ -355,6 +356,7 @@ import { CatalogNameCreateContext } from "./TrinoSqlParser.js"; import { FunctionNameContext } from "./TrinoSqlParser.js"; import { FunctionNameCreateContext } from "./TrinoSqlParser.js"; import { ColumnRefContext } from "./TrinoSqlParser.js"; +import { ColumnNameContext } from "./TrinoSqlParser.js"; import { ColumnNameCreateContext } from "./TrinoSqlParser.js"; import { QualifiedNameContext } from "./TrinoSqlParser.js"; import { QueryPeriodContext } from "./TrinoSqlParser.js"; @@ -1170,6 +1172,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitQuerySpecification?: (ctx: QuerySpecificationContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.whereClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWhereClause?: (ctx: WhereClauseContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -2708,6 +2716,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitColumnRef?: (ctx: ColumnRefContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.columnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnName?: (ctx: ColumnNameContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/parser/trino/index.ts b/src/parser/trino/index.ts index cf1f9db4..9acc5097 100644 --- a/src/parser/trino/index.ts +++ b/src/parser/trino/index.ts @@ -45,6 +45,7 @@ export class TrinoSQL extends BasicSQL b + +SELECT product_id, SUM(amount) AS total_sales FROM sales HAVING SUM(amount) > 1000; \ No newline at end of file diff --git a/test/parser/trino/suggestion/syntaxSuggestion.test.ts b/test/parser/trino/suggestion/syntaxSuggestion.test.ts index 74bbd084..ec41bd53 100644 --- a/test/parser/trino/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/trino/suggestion/syntaxSuggestion.test.ts @@ -419,4 +419,54 @@ describe('Trino SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); }); + + test('GroupBy expression column', () => { + const pos: CaretPosition = { + lineNumber: 47, + column: 44, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['sum', '(']); + }); + + test('where expression column', () => { + const pos: CaretPosition = { + lineNumber: 49, + column: 42, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['b']); + }); + + test('having expression column', () => { + const pos: CaretPosition = { + lineNumber: 51, + column: 75, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).toBeUndefined(); + }); }); From 4d9ce06471f39fc196eccbd13180e68ee2c2a381 Mon Sep 17 00:00:00 2001 From: LuckyFBB <976060700@qq.com> Date: Fri, 11 Oct 2024 22:04:32 +0800 Subject: [PATCH 2/3] feat(trino): add havingClause/partitionBy for expression column --- src/grammar/trino/TrinoSql.g4 | 51 +- src/lib/trino/TrinoSql.interp | 4 +- src/lib/trino/TrinoSqlListener.ts | 22 + src/lib/trino/TrinoSqlParser.ts | 8639 +++++++++-------- src/lib/trino/TrinoSqlVisitor.ts | 14 + src/parser/trino/index.ts | 4 +- src/parser/trino/trinoErrorListener.ts | 4 +- test/parser/trino/errorListener.test.ts | 19 + .../suggestion/fixtures/syntaxSuggestion.sql | 6 +- .../trino/suggestion/syntaxSuggestion.test.ts | 41 +- 10 files changed, 4486 insertions(+), 4318 deletions(-) diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index 10c0e66d..8309e19e 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -2,19 +2,22 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. */ /** - * This file is an adaptation of trino's trino/core/trino-parser/src/main/antlr4/io/trino/sql/parser/SqlBase.g4 grammar. - * Reference: https://github.com/trinodb/trino/blob/385/core/trino-parser/src/main/antlr4/io/trino/sql/parser/SqlBase.g4 + * This file is an adaptation of trino's + * trino/core/trino-parser/src/main/antlr4/io/trino/sql/parser/SqlBase.g4 grammar. Reference: + * https://github.com/trinodb/trino/blob/385/core/trino-parser/src/main/antlr4/io/trino/sql/parser/SqlBase.g4 * current version 450 */ @@ -282,19 +285,25 @@ sortItem querySpecification : KW_SELECT setQuantifier? selectItem (',' selectItem)* (KW_FROM relation (',' relation)*)? ( whereClause - )? (KW_GROUP KW_BY groupBy)? (KW_HAVING having=booleanExpression)? ( - KW_WINDOW windowDefinition (',' windowDefinition)* - )? + )? (KW_GROUP KW_BY groupBy)? (havingClause)? (KW_WINDOW windowDefinition (',' windowDefinition)*)? ; whereClause : KW_WHERE where=booleanExpression ; +havingClause + : KW_HAVING having=booleanExpression + ; + groupBy : setQuantifier? groupingElement (',' groupingElement)* ; +partitionBy + : expression (',' expression)* + ; + groupingElement : groupingSet # singleGroupingSet | KW_ROLLUP '(' (groupingSet (',' groupingSet)*)? ')' # rollup @@ -317,9 +326,9 @@ windowDefinition ; windowSpecification - : (existingWindowName=identifier)? ( - KW_PARTITION KW_BY partition+=expression (',' partition+=expression)* - )? (KW_ORDER KW_BY sortItem (',' sortItem)*)? windowFrame? + : (existingWindowName=identifier)? (KW_PARTITION KW_BY partitionBy)? ( + KW_ORDER KW_BY sortItem (',' sortItem)* + )? windowFrame? ; namedQuery @@ -385,11 +394,11 @@ listaggCountIndication patternRecognition : aliasedRelation ( - KW_MATCH_RECOGNIZE '(' ( - KW_PARTITION KW_BY partition+=expression (',' partition+=expression)* - )? (KW_ORDER KW_BY sortItem (',' sortItem)*)? ( - KW_MEASURES measureDefinition (',' measureDefinition)* - )? rowsPerMatch? (KW_AFTER KW_MATCH skipTo)? (KW_INITIAL | KW_SEEK)? KW_PATTERN '(' rowPattern ')' ( + KW_MATCH_RECOGNIZE '(' (KW_PARTITION KW_BY partitionBy)? ( + KW_ORDER KW_BY sortItem (',' sortItem)* + )? (KW_MEASURES measureDefinition (',' measureDefinition)*)? rowsPerMatch? ( + KW_AFTER KW_MATCH skipTo + )? (KW_INITIAL | KW_SEEK)? KW_PATTERN '(' rowPattern ')' ( KW_SUBSET subsetDefinition (',' subsetDefinition)* )? KW_DEFINE variableDefinition (',' variableDefinition)* ')' (KW_AS? identifier columnAliases?)? )? @@ -504,7 +513,7 @@ tableFunctionArgument ; tableArgument - : tableArgumentRelation (KW_PARTITION KW_BY ('(' (expression (',' expression)*)? ')' | expression))? ( + : tableArgumentRelation (KW_PARTITION KW_BY ('(' partitionBy? ')' | expression))? ( KW_PRUNE KW_WHEN KW_EMPTY | KW_KEEP KW_WHEN KW_EMPTY )? (KW_ORDER KW_BY ('(' sortItem (',' sortItem)* ')' | sortItem))? diff --git a/src/lib/trino/TrinoSql.interp b/src/lib/trino/TrinoSql.interp index 8a5a8f9d..46d75028 100644 --- a/src/lib/trino/TrinoSql.interp +++ b/src/lib/trino/TrinoSql.interp @@ -713,7 +713,9 @@ queryPrimary sortItem querySpecification whereClause +havingClause groupBy +partitionBy groupingElement groupingSet groupingTerm @@ -841,4 +843,4 @@ nonReserved atn: -[4, 1, 340, 3694, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 1, 0, 5, 0, 308, 8, 0, 10, 0, 12, 0, 311, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 319, 8, 2, 1, 3, 1, 3, 3, 3, 323, 8, 3, 1, 4, 1, 4, 3, 4, 327, 8, 4, 1, 5, 1, 5, 3, 5, 331, 8, 5, 1, 6, 1, 6, 3, 6, 335, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 348, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 355, 8, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 3, 8, 363, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 3, 8, 373, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 380, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 395, 8, 8, 1, 8, 1, 8, 3, 8, 399, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 418, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 424, 8, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 3, 8, 436, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 3, 8, 451, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 456, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 462, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 469, 8, 8, 10, 8, 12, 8, 472, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 477, 8, 8, 1, 8, 1, 8, 3, 8, 481, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 487, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 494, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 502, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 514, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 523, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 532, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 538, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 549, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 557, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 565, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 572, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 582, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 589, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 597, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 612, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 645, 8, 8, 10, 8, 12, 8, 648, 9, 8, 3, 8, 650, 8, 8, 1, 8, 3, 8, 653, 8, 8, 1, 8, 3, 8, 656, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 662, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 667, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 674, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 680, 8, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 3, 8, 688, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 696, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 702, 8, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 3, 8, 710, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 724, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 732, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 751, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 774, 8, 8, 10, 8, 12, 8, 777, 9, 8, 3, 8, 779, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 786, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 793, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 802, 8, 8, 1, 8, 1, 8, 3, 8, 806, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 813, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 819, 8, 8, 10, 8, 12, 8, 822, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 828, 8, 8, 10, 8, 12, 8, 831, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 836, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 841, 8, 8, 1, 8, 1, 8, 3, 8, 845, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 851, 8, 8, 10, 8, 12, 8, 854, 9, 8, 1, 8, 1, 8, 3, 8, 858, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 873, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 878, 8, 8, 10, 8, 12, 8, 881, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 887, 8, 8, 10, 8, 12, 8, 890, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 895, 8, 8, 1, 8, 1, 8, 3, 8, 899, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 905, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 910, 8, 8, 10, 8, 12, 8, 913, 9, 8, 1, 8, 1, 8, 3, 8, 917, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 928, 8, 8, 10, 8, 12, 8, 931, 9, 8, 1, 8, 1, 8, 3, 8, 935, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 947, 8, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 957, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 964, 8, 8, 10, 8, 12, 8, 967, 9, 8, 1, 8, 1, 8, 3, 8, 971, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 977, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1005, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1011, 8, 8, 3, 8, 1013, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1019, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1025, 8, 8, 3, 8, 1027, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1035, 8, 8, 3, 8, 1037, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1047, 8, 8, 3, 8, 1049, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1064, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1069, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1076, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1086, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1092, 8, 8, 3, 8, 1094, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1102, 8, 8, 3, 8, 1104, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1127, 8, 8, 10, 8, 12, 8, 1130, 9, 8, 3, 8, 1132, 8, 8, 1, 8, 1, 8, 3, 8, 1136, 8, 8, 1, 8, 1, 8, 3, 8, 1140, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1156, 8, 8, 10, 8, 12, 8, 1159, 9, 8, 3, 8, 1161, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1170, 8, 8, 10, 8, 12, 8, 1173, 9, 8, 3, 8, 1175, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1191, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1199, 8, 8, 10, 8, 12, 8, 1202, 9, 8, 1, 8, 3, 8, 1205, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1211, 8, 8, 1, 8, 3, 8, 1214, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1221, 8, 8, 11, 8, 12, 8, 1222, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1235, 8, 8, 1, 9, 3, 9, 1238, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1246, 8, 10, 10, 10, 12, 10, 1249, 9, 10, 1, 11, 3, 11, 1252, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1258, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1263, 8, 12, 10, 12, 12, 12, 1266, 9, 12, 1, 13, 1, 13, 3, 13, 1270, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1276, 8, 14, 1, 14, 1, 14, 3, 14, 1280, 8, 14, 1, 14, 1, 14, 3, 14, 1284, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1290, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1299, 8, 17, 10, 17, 12, 17, 1302, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1310, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1318, 8, 20, 10, 20, 12, 20, 1321, 9, 20, 3, 20, 1323, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1328, 8, 20, 3, 20, 1330, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1337, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1343, 8, 20, 3, 20, 1345, 8, 20, 1, 21, 1, 21, 3, 21, 1349, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1359, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1365, 8, 23, 1, 23, 5, 23, 1368, 8, 23, 10, 23, 12, 23, 1371, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1380, 8, 24, 10, 24, 12, 24, 1383, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1389, 8, 24, 1, 25, 1, 25, 3, 25, 1393, 8, 25, 1, 25, 3, 25, 1396, 8, 25, 1, 25, 1, 25, 3, 25, 1400, 8, 25, 1, 26, 1, 26, 3, 26, 1404, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1409, 8, 26, 10, 26, 12, 26, 1412, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1418, 8, 26, 10, 26, 12, 26, 1421, 9, 26, 3, 26, 1423, 8, 26, 1, 26, 3, 26, 1426, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1431, 8, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1441, 8, 26, 10, 26, 12, 26, 1444, 9, 26, 3, 26, 1446, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 1452, 8, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1457, 8, 28, 10, 28, 12, 28, 1460, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1468, 8, 29, 10, 29, 12, 29, 1471, 9, 29, 3, 29, 1473, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1481, 8, 29, 10, 29, 12, 29, 1484, 9, 29, 3, 29, 1486, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1495, 8, 29, 10, 29, 12, 29, 1498, 9, 29, 1, 29, 1, 29, 3, 29, 1502, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1508, 8, 30, 10, 30, 12, 30, 1511, 9, 30, 3, 30, 1513, 8, 30, 1, 30, 1, 30, 3, 30, 1517, 8, 30, 1, 31, 1, 31, 3, 31, 1521, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 3, 33, 1530, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1537, 8, 33, 10, 33, 12, 33, 1540, 9, 33, 3, 33, 1542, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1549, 8, 33, 10, 33, 12, 33, 1552, 9, 33, 3, 33, 1554, 8, 33, 1, 33, 3, 33, 1557, 8, 33, 1, 34, 1, 34, 3, 34, 1561, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1572, 8, 36, 1, 36, 3, 36, 1575, 8, 36, 1, 36, 3, 36, 1578, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1585, 8, 36, 1, 36, 3, 36, 1588, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1607, 8, 37, 5, 37, 1609, 8, 37, 10, 37, 12, 37, 1612, 9, 37, 1, 38, 3, 38, 1615, 8, 38, 1, 38, 1, 38, 3, 38, 1619, 8, 38, 1, 38, 1, 38, 3, 38, 1623, 8, 38, 1, 38, 1, 38, 3, 38, 1627, 8, 38, 3, 38, 1629, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1638, 8, 39, 10, 39, 12, 39, 1641, 9, 39, 1, 39, 1, 39, 3, 39, 1645, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1654, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 3, 43, 1663, 8, 43, 1, 43, 3, 43, 1666, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1672, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1682, 8, 45, 10, 45, 12, 45, 1685, 9, 45, 3, 45, 1687, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1694, 8, 45, 10, 45, 12, 45, 1697, 9, 45, 3, 45, 1699, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1705, 8, 45, 10, 45, 12, 45, 1708, 9, 45, 3, 45, 1710, 8, 45, 1, 45, 3, 45, 1713, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1718, 8, 45, 1, 45, 3, 45, 1721, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1731, 8, 45, 10, 45, 12, 45, 1734, 9, 45, 3, 45, 1736, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1742, 8, 45, 10, 45, 12, 45, 1745, 9, 45, 1, 45, 1, 45, 3, 45, 1749, 8, 45, 1, 45, 1, 45, 3, 45, 1753, 8, 45, 3, 45, 1755, 8, 45, 3, 45, 1757, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1772, 8, 47, 3, 47, 1774, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1785, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1806, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1814, 8, 50, 10, 50, 12, 50, 1817, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 1827, 8, 52, 1, 52, 1, 52, 3, 52, 1831, 8, 52, 3, 52, 1833, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1839, 8, 53, 10, 53, 12, 53, 1842, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1850, 8, 54, 10, 54, 12, 54, 1853, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1861, 8, 55, 10, 55, 12, 55, 1864, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 3, 56, 1870, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1881, 8, 56, 10, 56, 12, 56, 1884, 9, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1889, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1913, 8, 56, 10, 56, 12, 56, 1916, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1930, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1935, 8, 56, 1, 56, 1, 56, 3, 56, 1939, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1949, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1955, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1961, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1969, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1974, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1981, 8, 57, 3, 57, 1983, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1989, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1995, 8, 57, 1, 57, 1, 57, 3, 57, 1999, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2004, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2011, 8, 57, 10, 57, 12, 57, 2014, 9, 57, 1, 57, 1, 57, 3, 57, 2018, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2030, 8, 58, 10, 58, 12, 58, 2033, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2040, 8, 58, 10, 58, 12, 58, 2043, 9, 58, 3, 58, 2045, 8, 58, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2054, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 2059, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2064, 8, 61, 3, 61, 2066, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2073, 8, 62, 10, 62, 12, 62, 2076, 9, 62, 3, 62, 2078, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2084, 8, 62, 10, 62, 12, 62, 2087, 9, 62, 3, 62, 2089, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2096, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2101, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2110, 8, 64, 10, 64, 12, 64, 2113, 9, 64, 3, 64, 2115, 8, 64, 1, 64, 1, 64, 3, 64, 2119, 8, 64, 3, 64, 2121, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2129, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2137, 8, 64, 10, 64, 12, 64, 2140, 9, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2145, 8, 64, 3, 64, 2147, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2154, 8, 65, 1, 65, 1, 65, 3, 65, 2158, 8, 65, 3, 65, 2160, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2167, 8, 65, 1, 65, 1, 65, 3, 65, 2171, 8, 65, 3, 65, 2173, 8, 65, 3, 65, 2175, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2182, 8, 66, 10, 66, 12, 66, 2185, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2195, 8, 66, 1, 67, 1, 67, 3, 67, 2199, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2207, 8, 68, 10, 68, 12, 68, 2210, 9, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2219, 8, 70, 1, 70, 1, 70, 3, 70, 2223, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2231, 8, 70, 10, 70, 12, 70, 2234, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2246, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2254, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2261, 8, 71, 10, 71, 12, 71, 2264, 9, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2269, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2277, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2283, 8, 71, 1, 71, 1, 71, 3, 71, 2287, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2292, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2297, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2303, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2317, 8, 72, 10, 72, 12, 72, 2320, 9, 72, 1, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 4, 73, 2347, 8, 73, 11, 73, 12, 73, 2348, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2358, 8, 73, 10, 73, 12, 73, 2361, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2368, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2373, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2378, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2389, 8, 73, 10, 73, 12, 73, 2392, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2397, 8, 73, 1, 73, 3, 73, 2400, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2407, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2412, 8, 73, 1, 73, 3, 73, 2415, 8, 73, 1, 73, 3, 73, 2418, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2423, 8, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2428, 8, 73, 10, 73, 12, 73, 2431, 9, 73, 3, 73, 2433, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2440, 8, 73, 10, 73, 12, 73, 2443, 9, 73, 3, 73, 2445, 8, 73, 1, 73, 1, 73, 3, 73, 2449, 8, 73, 1, 73, 3, 73, 2452, 8, 73, 1, 73, 3, 73, 2455, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2468, 8, 73, 10, 73, 12, 73, 2471, 9, 73, 3, 73, 2473, 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, 1, 73, 1, 73, 1, 73, 4, 73, 2490, 8, 73, 11, 73, 12, 73, 2491, 1, 73, 1, 73, 3, 73, 2496, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 4, 73, 2502, 8, 73, 11, 73, 12, 73, 2503, 1, 73, 1, 73, 3, 73, 2508, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2531, 8, 73, 10, 73, 12, 73, 2534, 9, 73, 3, 73, 2536, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2545, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2551, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2557, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2563, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2572, 8, 73, 1, 73, 3, 73, 2575, 8, 73, 1, 73, 3, 73, 2578, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2597, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2606, 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, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2626, 8, 73, 10, 73, 12, 73, 2629, 9, 73, 3, 73, 2631, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2641, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2650, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2656, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2662, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2673, 8, 73, 3, 73, 2675, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2680, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2687, 8, 73, 3, 73, 2689, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2695, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2701, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2710, 8, 73, 10, 73, 12, 73, 2713, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2721, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2726, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2731, 8, 73, 3, 73, 2733, 8, 73, 3, 73, 2735, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2741, 8, 73, 3, 73, 2743, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2751, 8, 73, 10, 73, 12, 73, 2754, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2762, 8, 73, 3, 73, 2764, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2770, 8, 73, 3, 73, 2772, 8, 73, 1, 73, 3, 73, 2775, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2785, 8, 73, 10, 73, 12, 73, 2788, 9, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2795, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2801, 8, 74, 10, 74, 12, 74, 2804, 9, 74, 3, 74, 2806, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2811, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2816, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2828, 8, 79, 1, 80, 1, 80, 3, 80, 2832, 8, 80, 1, 80, 1, 80, 3, 80, 2836, 8, 80, 1, 80, 3, 80, 2839, 8, 80, 3, 80, 2841, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2849, 8, 81, 1, 82, 3, 82, 2852, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2862, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2870, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2876, 8, 85, 3, 85, 2878, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2886, 8, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2896, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2902, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 2914, 8, 93, 10, 93, 12, 93, 2917, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2925, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2932, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2937, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2944, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2954, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2959, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2966, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 2990, 8, 93, 10, 93, 12, 93, 2993, 9, 93, 1, 93, 1, 93, 3, 93, 2997, 8, 93, 3, 93, 2999, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3006, 8, 93, 5, 93, 3008, 8, 93, 10, 93, 12, 93, 3011, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3017, 8, 94, 1, 95, 1, 95, 3, 95, 3021, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3037, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3050, 8, 98, 10, 98, 12, 98, 3053, 9, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3059, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3068, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3076, 8, 98, 10, 98, 12, 98, 3079, 9, 98, 1, 98, 1, 98, 3, 98, 3083, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3090, 8, 98, 10, 98, 12, 98, 3093, 9, 98, 1, 98, 1, 98, 3, 98, 3097, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3105, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3111, 8, 100, 10, 100, 12, 100, 3114, 9, 100, 3, 100, 3116, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3122, 8, 100, 1, 100, 3, 100, 3125, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3132, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3138, 8, 100, 10, 100, 12, 100, 3141, 9, 100, 3, 100, 3143, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3149, 8, 100, 10, 100, 12, 100, 3152, 9, 100, 3, 100, 3154, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3180, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3191, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3196, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3203, 8, 103, 10, 103, 12, 103, 3206, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 3216, 8, 104, 10, 104, 12, 104, 3219, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3233, 8, 104, 1, 105, 1, 105, 3, 105, 3237, 8, 105, 1, 105, 1, 105, 3, 105, 3241, 8, 105, 1, 105, 1, 105, 3, 105, 3245, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3251, 8, 105, 1, 105, 1, 105, 3, 105, 3255, 8, 105, 1, 105, 1, 105, 3, 105, 3259, 8, 105, 1, 105, 1, 105, 3, 105, 3263, 8, 105, 3, 105, 3265, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3275, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3282, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3291, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3298, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3305, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3310, 8, 112, 10, 112, 12, 112, 3313, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3319, 8, 113, 10, 113, 12, 113, 3322, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3331, 8, 114, 10, 114, 12, 114, 3334, 9, 114, 3, 114, 3336, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3345, 8, 115, 10, 115, 12, 115, 3348, 9, 115, 3, 115, 3350, 8, 115, 1, 115, 1, 115, 1, 116, 3, 116, 3355, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 3, 118, 3365, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3381, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 4, 119, 3393, 8, 119, 11, 119, 12, 119, 3394, 1, 119, 3, 119, 3398, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 4, 119, 3405, 8, 119, 11, 119, 12, 119, 3406, 1, 119, 3, 119, 3410, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3420, 8, 119, 10, 119, 12, 119, 3423, 9, 119, 1, 119, 3, 119, 3426, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3439, 8, 119, 10, 119, 12, 119, 3442, 9, 119, 1, 119, 3, 119, 3445, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3451, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3461, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3473, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3482, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3501, 8, 123, 10, 123, 12, 123, 3504, 9, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3509, 8, 123, 1, 124, 1, 124, 1, 124, 4, 124, 3514, 8, 124, 11, 124, 12, 124, 3515, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3524, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 3529, 8, 126, 1, 127, 3, 127, 3532, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3538, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3551, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3564, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3577, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3590, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3597, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3604, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 3616, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 5, 142, 3625, 8, 142, 10, 142, 12, 142, 3628, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 3, 145, 3641, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3648, 8, 146, 1, 147, 1, 147, 1, 147, 5, 147, 3653, 8, 147, 10, 147, 12, 147, 3656, 9, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3665, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3672, 8, 149, 1, 150, 3, 150, 3675, 8, 150, 1, 150, 1, 150, 3, 150, 3679, 8, 150, 1, 150, 1, 150, 3, 150, 3683, 8, 150, 1, 150, 3, 150, 3686, 8, 150, 1, 151, 1, 151, 3, 151, 3690, 8, 151, 1, 152, 1, 152, 1, 152, 0, 7, 46, 74, 140, 144, 146, 186, 206, 153, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 0, 35, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4247, 0, 309, 1, 0, 0, 0, 2, 314, 1, 0, 0, 0, 4, 316, 1, 0, 0, 0, 6, 320, 1, 0, 0, 0, 8, 324, 1, 0, 0, 0, 10, 328, 1, 0, 0, 0, 12, 332, 1, 0, 0, 0, 14, 336, 1, 0, 0, 0, 16, 1234, 1, 0, 0, 0, 18, 1237, 1, 0, 0, 0, 20, 1241, 1, 0, 0, 0, 22, 1251, 1, 0, 0, 0, 24, 1255, 1, 0, 0, 0, 26, 1269, 1, 0, 0, 0, 28, 1271, 1, 0, 0, 0, 30, 1285, 1, 0, 0, 0, 32, 1291, 1, 0, 0, 0, 34, 1295, 1, 0, 0, 0, 36, 1303, 1, 0, 0, 0, 38, 1309, 1, 0, 0, 0, 40, 1311, 1, 0, 0, 0, 42, 1348, 1, 0, 0, 0, 44, 1350, 1, 0, 0, 0, 46, 1352, 1, 0, 0, 0, 48, 1388, 1, 0, 0, 0, 50, 1392, 1, 0, 0, 0, 52, 1401, 1, 0, 0, 0, 54, 1447, 1, 0, 0, 0, 56, 1451, 1, 0, 0, 0, 58, 1501, 1, 0, 0, 0, 60, 1516, 1, 0, 0, 0, 62, 1520, 1, 0, 0, 0, 64, 1522, 1, 0, 0, 0, 66, 1529, 1, 0, 0, 0, 68, 1558, 1, 0, 0, 0, 70, 1567, 1, 0, 0, 0, 72, 1587, 1, 0, 0, 0, 74, 1589, 1, 0, 0, 0, 76, 1628, 1, 0, 0, 0, 78, 1644, 1, 0, 0, 0, 80, 1646, 1, 0, 0, 0, 82, 1655, 1, 0, 0, 0, 84, 1657, 1, 0, 0, 0, 86, 1665, 1, 0, 0, 0, 88, 1671, 1, 0, 0, 0, 90, 1673, 1, 0, 0, 0, 92, 1758, 1, 0, 0, 0, 94, 1773, 1, 0, 0, 0, 96, 1784, 1, 0, 0, 0, 98, 1805, 1, 0, 0, 0, 100, 1807, 1, 0, 0, 0, 102, 1820, 1, 0, 0, 0, 104, 1824, 1, 0, 0, 0, 106, 1834, 1, 0, 0, 0, 108, 1845, 1, 0, 0, 0, 110, 1856, 1, 0, 0, 0, 112, 1938, 1, 0, 0, 0, 114, 2017, 1, 0, 0, 0, 116, 2044, 1, 0, 0, 0, 118, 2046, 1, 0, 0, 0, 120, 2053, 1, 0, 0, 0, 122, 2065, 1, 0, 0, 0, 124, 2067, 1, 0, 0, 0, 126, 2095, 1, 0, 0, 0, 128, 2102, 1, 0, 0, 0, 130, 2174, 1, 0, 0, 0, 132, 2194, 1, 0, 0, 0, 134, 2196, 1, 0, 0, 0, 136, 2200, 1, 0, 0, 0, 138, 2213, 1, 0, 0, 0, 140, 2222, 1, 0, 0, 0, 142, 2296, 1, 0, 0, 0, 144, 2302, 1, 0, 0, 0, 146, 2774, 1, 0, 0, 0, 148, 2789, 1, 0, 0, 0, 150, 2807, 1, 0, 0, 0, 152, 2812, 1, 0, 0, 0, 154, 2817, 1, 0, 0, 0, 156, 2821, 1, 0, 0, 0, 158, 2827, 1, 0, 0, 0, 160, 2840, 1, 0, 0, 0, 162, 2848, 1, 0, 0, 0, 164, 2861, 1, 0, 0, 0, 166, 2863, 1, 0, 0, 0, 168, 2869, 1, 0, 0, 0, 170, 2877, 1, 0, 0, 0, 172, 2885, 1, 0, 0, 0, 174, 2887, 1, 0, 0, 0, 176, 2889, 1, 0, 0, 0, 178, 2891, 1, 0, 0, 0, 180, 2893, 1, 0, 0, 0, 182, 2903, 1, 0, 0, 0, 184, 2905, 1, 0, 0, 0, 186, 2998, 1, 0, 0, 0, 188, 3016, 1, 0, 0, 0, 190, 3020, 1, 0, 0, 0, 192, 3022, 1, 0, 0, 0, 194, 3027, 1, 0, 0, 0, 196, 3096, 1, 0, 0, 0, 198, 3098, 1, 0, 0, 0, 200, 3115, 1, 0, 0, 0, 202, 3179, 1, 0, 0, 0, 204, 3190, 1, 0, 0, 0, 206, 3192, 1, 0, 0, 0, 208, 3232, 1, 0, 0, 0, 210, 3264, 1, 0, 0, 0, 212, 3266, 1, 0, 0, 0, 214, 3274, 1, 0, 0, 0, 216, 3281, 1, 0, 0, 0, 218, 3290, 1, 0, 0, 0, 220, 3297, 1, 0, 0, 0, 222, 3304, 1, 0, 0, 0, 224, 3306, 1, 0, 0, 0, 226, 3314, 1, 0, 0, 0, 228, 3325, 1, 0, 0, 0, 230, 3339, 1, 0, 0, 0, 232, 3354, 1, 0, 0, 0, 234, 3358, 1, 0, 0, 0, 236, 3380, 1, 0, 0, 0, 238, 3481, 1, 0, 0, 0, 240, 3483, 1, 0, 0, 0, 242, 3488, 1, 0, 0, 0, 244, 3493, 1, 0, 0, 0, 246, 3496, 1, 0, 0, 0, 248, 3513, 1, 0, 0, 0, 250, 3523, 1, 0, 0, 0, 252, 3528, 1, 0, 0, 0, 254, 3531, 1, 0, 0, 0, 256, 3537, 1, 0, 0, 0, 258, 3550, 1, 0, 0, 0, 260, 3563, 1, 0, 0, 0, 262, 3576, 1, 0, 0, 0, 264, 3589, 1, 0, 0, 0, 266, 3596, 1, 0, 0, 0, 268, 3603, 1, 0, 0, 0, 270, 3605, 1, 0, 0, 0, 272, 3607, 1, 0, 0, 0, 274, 3609, 1, 0, 0, 0, 276, 3611, 1, 0, 0, 0, 278, 3615, 1, 0, 0, 0, 280, 3617, 1, 0, 0, 0, 282, 3619, 1, 0, 0, 0, 284, 3621, 1, 0, 0, 0, 286, 3629, 1, 0, 0, 0, 288, 3635, 1, 0, 0, 0, 290, 3640, 1, 0, 0, 0, 292, 3647, 1, 0, 0, 0, 294, 3649, 1, 0, 0, 0, 296, 3664, 1, 0, 0, 0, 298, 3671, 1, 0, 0, 0, 300, 3685, 1, 0, 0, 0, 302, 3689, 1, 0, 0, 0, 304, 3691, 1, 0, 0, 0, 306, 308, 3, 2, 1, 0, 307, 306, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 312, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 5, 0, 0, 1, 313, 1, 1, 0, 0, 0, 314, 315, 3, 4, 2, 0, 315, 3, 1, 0, 0, 0, 316, 318, 3, 16, 8, 0, 317, 319, 5, 325, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 5, 1, 0, 0, 0, 320, 322, 3, 138, 69, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 7, 1, 0, 0, 0, 324, 326, 3, 224, 112, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 9, 1, 0, 0, 0, 328, 330, 3, 186, 93, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 11, 1, 0, 0, 0, 332, 334, 3, 206, 103, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 13, 1, 0, 0, 0, 336, 337, 3, 226, 113, 0, 337, 338, 5, 0, 0, 1, 338, 15, 1, 0, 0, 0, 339, 1235, 3, 18, 9, 0, 340, 341, 5, 288, 0, 0, 341, 1235, 3, 266, 133, 0, 342, 343, 5, 53, 0, 0, 343, 347, 5, 42, 0, 0, 344, 345, 5, 119, 0, 0, 345, 346, 5, 182, 0, 0, 346, 348, 5, 94, 0, 0, 347, 344, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 350, 3, 272, 136, 0, 350, 351, 5, 290, 0, 0, 351, 354, 3, 298, 149, 0, 352, 353, 5, 46, 0, 0, 353, 355, 3, 170, 85, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 31, 0, 0, 357, 359, 3, 292, 146, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 304, 0, 0, 361, 363, 3, 32, 16, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 1235, 1, 0, 0, 0, 364, 365, 5, 83, 0, 0, 365, 368, 5, 42, 0, 0, 366, 367, 5, 119, 0, 0, 367, 369, 5, 94, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 3, 270, 135, 0, 371, 373, 7, 0, 0, 0, 372, 371, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 1235, 1, 0, 0, 0, 374, 375, 5, 53, 0, 0, 375, 379, 5, 243, 0, 0, 376, 377, 5, 119, 0, 0, 377, 378, 5, 182, 0, 0, 378, 380, 5, 94, 0, 0, 379, 376, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 3, 268, 134, 0, 382, 383, 5, 31, 0, 0, 383, 385, 3, 292, 146, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 1, 0, 0, 0, 386, 387, 5, 304, 0, 0, 387, 389, 3, 32, 16, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 1235, 1, 0, 0, 0, 390, 391, 5, 83, 0, 0, 391, 394, 5, 243, 0, 0, 392, 393, 5, 119, 0, 0, 393, 395, 5, 94, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 3, 266, 133, 0, 397, 399, 7, 0, 0, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 1235, 1, 0, 0, 0, 400, 401, 5, 23, 0, 0, 401, 402, 5, 243, 0, 0, 402, 403, 3, 266, 133, 0, 403, 404, 5, 223, 0, 0, 404, 405, 5, 269, 0, 0, 405, 406, 3, 268, 134, 0, 406, 1235, 1, 0, 0, 0, 407, 408, 5, 23, 0, 0, 408, 409, 5, 243, 0, 0, 409, 410, 3, 266, 133, 0, 410, 411, 5, 251, 0, 0, 411, 412, 5, 31, 0, 0, 412, 413, 3, 292, 146, 0, 413, 1235, 1, 0, 0, 0, 414, 417, 5, 53, 0, 0, 415, 416, 5, 194, 0, 0, 416, 418, 5, 226, 0, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 423, 5, 260, 0, 0, 420, 421, 5, 119, 0, 0, 421, 422, 5, 182, 0, 0, 422, 424, 5, 94, 0, 0, 423, 420, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 3, 260, 130, 0, 426, 428, 3, 106, 53, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 430, 5, 46, 0, 0, 430, 432, 3, 170, 85, 0, 431, 429, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 434, 5, 304, 0, 0, 434, 436, 3, 32, 16, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 443, 5, 28, 0, 0, 438, 444, 3, 18, 9, 0, 439, 440, 5, 1, 0, 0, 440, 441, 3, 18, 9, 0, 441, 442, 5, 2, 0, 0, 442, 444, 1, 0, 0, 0, 443, 438, 1, 0, 0, 0, 443, 439, 1, 0, 0, 0, 444, 450, 1, 0, 0, 0, 445, 447, 5, 304, 0, 0, 446, 448, 5, 179, 0, 0, 447, 446, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 451, 5, 65, 0, 0, 450, 445, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 1235, 1, 0, 0, 0, 452, 455, 5, 53, 0, 0, 453, 454, 5, 194, 0, 0, 454, 456, 5, 226, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 461, 5, 260, 0, 0, 458, 459, 5, 119, 0, 0, 459, 460, 5, 182, 0, 0, 460, 462, 5, 94, 0, 0, 461, 458, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 3, 260, 130, 0, 464, 465, 5, 1, 0, 0, 465, 470, 3, 26, 13, 0, 466, 467, 5, 3, 0, 0, 467, 469, 3, 26, 13, 0, 468, 466, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 473, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 476, 5, 2, 0, 0, 474, 475, 5, 46, 0, 0, 475, 477, 3, 170, 85, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 479, 5, 304, 0, 0, 479, 481, 3, 32, 16, 0, 480, 478, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 1235, 1, 0, 0, 0, 482, 483, 5, 83, 0, 0, 483, 486, 5, 260, 0, 0, 484, 485, 5, 119, 0, 0, 485, 487, 5, 94, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 1235, 3, 258, 129, 0, 489, 490, 5, 127, 0, 0, 490, 491, 5, 130, 0, 0, 491, 493, 3, 258, 129, 0, 492, 494, 3, 108, 54, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 3, 18, 9, 0, 496, 1235, 1, 0, 0, 0, 497, 498, 5, 73, 0, 0, 498, 499, 5, 105, 0, 0, 499, 501, 3, 258, 129, 0, 500, 502, 3, 54, 27, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 1235, 1, 0, 0, 0, 503, 504, 5, 274, 0, 0, 504, 505, 5, 260, 0, 0, 505, 1235, 3, 258, 129, 0, 506, 507, 5, 46, 0, 0, 507, 508, 5, 190, 0, 0, 508, 509, 5, 260, 0, 0, 509, 510, 3, 258, 129, 0, 510, 513, 5, 133, 0, 0, 511, 514, 3, 170, 85, 0, 512, 514, 5, 183, 0, 0, 513, 511, 1, 0, 0, 0, 513, 512, 1, 0, 0, 0, 514, 1235, 1, 0, 0, 0, 515, 516, 5, 46, 0, 0, 516, 517, 5, 190, 0, 0, 517, 518, 5, 299, 0, 0, 518, 519, 3, 262, 131, 0, 519, 522, 5, 133, 0, 0, 520, 523, 3, 170, 85, 0, 521, 523, 5, 183, 0, 0, 522, 520, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 1235, 1, 0, 0, 0, 524, 525, 5, 46, 0, 0, 525, 526, 5, 190, 0, 0, 526, 527, 5, 44, 0, 0, 527, 528, 3, 278, 139, 0, 528, 531, 5, 133, 0, 0, 529, 532, 3, 170, 85, 0, 530, 532, 5, 183, 0, 0, 531, 529, 1, 0, 0, 0, 531, 530, 1, 0, 0, 0, 532, 1235, 1, 0, 0, 0, 533, 534, 5, 23, 0, 0, 534, 537, 5, 260, 0, 0, 535, 536, 5, 119, 0, 0, 536, 538, 5, 94, 0, 0, 537, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 3, 258, 129, 0, 540, 541, 5, 223, 0, 0, 541, 542, 5, 269, 0, 0, 542, 543, 3, 260, 130, 0, 543, 1235, 1, 0, 0, 0, 544, 545, 5, 23, 0, 0, 545, 548, 5, 260, 0, 0, 546, 547, 5, 119, 0, 0, 547, 549, 5, 94, 0, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 3, 258, 129, 0, 551, 552, 5, 19, 0, 0, 552, 556, 5, 44, 0, 0, 553, 554, 5, 119, 0, 0, 554, 555, 5, 182, 0, 0, 555, 557, 5, 94, 0, 0, 556, 553, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 3, 28, 14, 0, 559, 1235, 1, 0, 0, 0, 560, 561, 5, 23, 0, 0, 561, 564, 5, 260, 0, 0, 562, 563, 5, 119, 0, 0, 563, 565, 5, 94, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 3, 258, 129, 0, 567, 568, 5, 223, 0, 0, 568, 571, 5, 44, 0, 0, 569, 570, 5, 119, 0, 0, 570, 572, 5, 94, 0, 0, 571, 569, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 3, 278, 139, 0, 574, 575, 5, 269, 0, 0, 575, 576, 3, 282, 141, 0, 576, 1235, 1, 0, 0, 0, 577, 578, 5, 23, 0, 0, 578, 581, 5, 260, 0, 0, 579, 580, 5, 119, 0, 0, 580, 582, 5, 94, 0, 0, 581, 579, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 584, 3, 258, 129, 0, 584, 585, 5, 83, 0, 0, 585, 588, 5, 44, 0, 0, 586, 587, 5, 119, 0, 0, 587, 589, 5, 94, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 3, 278, 139, 0, 591, 1235, 1, 0, 0, 0, 592, 593, 5, 23, 0, 0, 593, 596, 5, 260, 0, 0, 594, 595, 5, 119, 0, 0, 595, 597, 5, 94, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 3, 258, 129, 0, 599, 600, 5, 23, 0, 0, 600, 601, 5, 44, 0, 0, 601, 602, 3, 278, 139, 0, 602, 603, 5, 251, 0, 0, 603, 604, 5, 65, 0, 0, 604, 605, 5, 276, 0, 0, 605, 606, 3, 186, 93, 0, 606, 1235, 1, 0, 0, 0, 607, 608, 5, 23, 0, 0, 608, 611, 5, 260, 0, 0, 609, 610, 5, 119, 0, 0, 610, 612, 5, 94, 0, 0, 611, 609, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 3, 258, 129, 0, 614, 615, 5, 23, 0, 0, 615, 616, 5, 44, 0, 0, 616, 617, 3, 278, 139, 0, 617, 618, 5, 83, 0, 0, 618, 619, 5, 182, 0, 0, 619, 620, 5, 183, 0, 0, 620, 1235, 1, 0, 0, 0, 621, 622, 5, 23, 0, 0, 622, 623, 5, 260, 0, 0, 623, 624, 3, 258, 129, 0, 624, 625, 5, 251, 0, 0, 625, 626, 5, 31, 0, 0, 626, 627, 3, 292, 146, 0, 627, 1235, 1, 0, 0, 0, 628, 629, 5, 23, 0, 0, 629, 630, 5, 260, 0, 0, 630, 631, 3, 258, 129, 0, 631, 632, 5, 251, 0, 0, 632, 633, 5, 216, 0, 0, 633, 634, 3, 34, 17, 0, 634, 1235, 1, 0, 0, 0, 635, 636, 5, 23, 0, 0, 636, 637, 5, 260, 0, 0, 637, 638, 3, 258, 129, 0, 638, 639, 5, 93, 0, 0, 639, 652, 3, 274, 137, 0, 640, 649, 5, 1, 0, 0, 641, 646, 3, 220, 110, 0, 642, 643, 5, 3, 0, 0, 643, 645, 3, 220, 110, 0, 644, 642, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 649, 641, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 653, 5, 2, 0, 0, 652, 640, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 656, 3, 54, 27, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 1235, 1, 0, 0, 0, 657, 658, 5, 24, 0, 0, 658, 661, 3, 258, 129, 0, 659, 660, 5, 304, 0, 0, 660, 662, 3, 32, 16, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 1235, 1, 0, 0, 0, 663, 666, 5, 53, 0, 0, 664, 665, 5, 194, 0, 0, 665, 667, 5, 226, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 5, 167, 0, 0, 669, 673, 5, 299, 0, 0, 670, 671, 5, 119, 0, 0, 671, 672, 5, 182, 0, 0, 672, 674, 5, 94, 0, 0, 673, 670, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 679, 3, 264, 132, 0, 676, 677, 5, 109, 0, 0, 677, 678, 5, 208, 0, 0, 678, 680, 3, 180, 90, 0, 679, 676, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 682, 5, 46, 0, 0, 682, 684, 3, 170, 85, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 304, 0, 0, 686, 688, 3, 32, 16, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 5, 28, 0, 0, 690, 691, 3, 18, 9, 0, 691, 1235, 1, 0, 0, 0, 692, 695, 5, 53, 0, 0, 693, 694, 5, 194, 0, 0, 694, 696, 5, 226, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 299, 0, 0, 698, 701, 3, 264, 132, 0, 699, 700, 5, 46, 0, 0, 700, 702, 3, 170, 85, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 705, 1, 0, 0, 0, 703, 704, 5, 246, 0, 0, 704, 706, 7, 1, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 5, 304, 0, 0, 708, 710, 3, 32, 16, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 28, 0, 0, 712, 713, 3, 18, 9, 0, 713, 1235, 1, 0, 0, 0, 714, 715, 5, 222, 0, 0, 715, 716, 5, 167, 0, 0, 716, 717, 5, 299, 0, 0, 717, 1235, 3, 262, 131, 0, 718, 719, 5, 83, 0, 0, 719, 720, 5, 167, 0, 0, 720, 723, 5, 299, 0, 0, 721, 722, 5, 119, 0, 0, 722, 724, 5, 94, 0, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 1235, 3, 262, 131, 0, 726, 727, 5, 23, 0, 0, 727, 728, 5, 167, 0, 0, 728, 731, 5, 299, 0, 0, 729, 730, 5, 119, 0, 0, 730, 732, 5, 94, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 3, 262, 131, 0, 734, 735, 5, 223, 0, 0, 735, 736, 5, 269, 0, 0, 736, 737, 3, 264, 132, 0, 737, 1235, 1, 0, 0, 0, 738, 739, 5, 23, 0, 0, 739, 740, 5, 167, 0, 0, 740, 741, 5, 299, 0, 0, 741, 742, 3, 262, 131, 0, 742, 743, 5, 251, 0, 0, 743, 744, 5, 216, 0, 0, 744, 745, 3, 34, 17, 0, 745, 1235, 1, 0, 0, 0, 746, 747, 5, 83, 0, 0, 747, 750, 5, 299, 0, 0, 748, 749, 5, 119, 0, 0, 749, 751, 5, 94, 0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 1235, 3, 262, 131, 0, 753, 754, 5, 23, 0, 0, 754, 755, 5, 299, 0, 0, 755, 756, 3, 262, 131, 0, 756, 757, 5, 223, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 264, 132, 0, 759, 1235, 1, 0, 0, 0, 760, 761, 5, 23, 0, 0, 761, 762, 5, 299, 0, 0, 762, 763, 3, 262, 131, 0, 763, 764, 5, 251, 0, 0, 764, 765, 5, 31, 0, 0, 765, 766, 3, 292, 146, 0, 766, 1235, 1, 0, 0, 0, 767, 768, 5, 37, 0, 0, 768, 769, 3, 274, 137, 0, 769, 778, 5, 1, 0, 0, 770, 775, 3, 220, 110, 0, 771, 772, 5, 3, 0, 0, 772, 774, 3, 220, 110, 0, 773, 771, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 770, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 5, 2, 0, 0, 781, 1235, 1, 0, 0, 0, 782, 785, 5, 53, 0, 0, 783, 784, 5, 194, 0, 0, 784, 786, 5, 226, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 1235, 3, 226, 113, 0, 788, 789, 5, 83, 0, 0, 789, 792, 5, 107, 0, 0, 790, 791, 5, 119, 0, 0, 791, 793, 5, 94, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 1235, 3, 230, 115, 0, 795, 796, 5, 53, 0, 0, 796, 797, 5, 235, 0, 0, 797, 801, 3, 298, 149, 0, 798, 799, 5, 304, 0, 0, 799, 800, 5, 20, 0, 0, 800, 802, 3, 290, 145, 0, 801, 798, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 804, 5, 122, 0, 0, 804, 806, 3, 270, 135, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 1235, 1, 0, 0, 0, 807, 808, 5, 83, 0, 0, 808, 809, 5, 235, 0, 0, 809, 812, 3, 298, 149, 0, 810, 811, 5, 122, 0, 0, 811, 813, 3, 270, 135, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 1235, 1, 0, 0, 0, 814, 815, 5, 110, 0, 0, 815, 820, 3, 296, 148, 0, 816, 817, 5, 3, 0, 0, 817, 819, 3, 296, 148, 0, 818, 816, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 824, 5, 269, 0, 0, 824, 829, 3, 292, 146, 0, 825, 826, 5, 3, 0, 0, 826, 828, 3, 292, 146, 0, 827, 825, 1, 0, 0, 0, 828, 831, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 835, 1, 0, 0, 0, 831, 829, 1, 0, 0, 0, 832, 833, 5, 304, 0, 0, 833, 834, 5, 20, 0, 0, 834, 836, 5, 193, 0, 0, 835, 832, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 840, 1, 0, 0, 0, 837, 838, 5, 111, 0, 0, 838, 839, 5, 36, 0, 0, 839, 841, 3, 290, 145, 0, 840, 837, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 843, 5, 122, 0, 0, 843, 845, 3, 270, 135, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 1235, 1, 0, 0, 0, 846, 857, 5, 110, 0, 0, 847, 852, 3, 296, 148, 0, 848, 849, 5, 3, 0, 0, 849, 851, 3, 296, 148, 0, 850, 848, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 858, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 855, 856, 5, 22, 0, 0, 856, 858, 5, 215, 0, 0, 857, 847, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 190, 0, 0, 860, 861, 3, 254, 127, 0, 861, 862, 5, 269, 0, 0, 862, 866, 3, 292, 146, 0, 863, 864, 5, 304, 0, 0, 864, 865, 5, 110, 0, 0, 865, 867, 5, 193, 0, 0, 866, 863, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 1235, 1, 0, 0, 0, 868, 872, 5, 233, 0, 0, 869, 870, 5, 20, 0, 0, 870, 871, 5, 193, 0, 0, 871, 873, 5, 103, 0, 0, 872, 869, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 879, 3, 296, 148, 0, 875, 876, 5, 3, 0, 0, 876, 878, 3, 296, 148, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 105, 0, 0, 883, 888, 3, 292, 146, 0, 884, 885, 5, 3, 0, 0, 885, 887, 3, 292, 146, 0, 886, 884, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 894, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 891, 892, 5, 111, 0, 0, 892, 893, 5, 36, 0, 0, 893, 895, 3, 290, 145, 0, 894, 891, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 897, 5, 122, 0, 0, 897, 899, 3, 270, 135, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 1235, 1, 0, 0, 0, 900, 904, 5, 233, 0, 0, 901, 902, 5, 110, 0, 0, 902, 903, 5, 193, 0, 0, 903, 905, 5, 103, 0, 0, 904, 901, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 916, 1, 0, 0, 0, 906, 911, 3, 296, 148, 0, 907, 908, 5, 3, 0, 0, 908, 910, 3, 296, 148, 0, 909, 907, 1, 0, 0, 0, 910, 913, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 917, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 914, 915, 5, 22, 0, 0, 915, 917, 5, 215, 0, 0, 916, 906, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 5, 190, 0, 0, 919, 920, 3, 254, 127, 0, 920, 921, 5, 105, 0, 0, 921, 922, 3, 292, 146, 0, 922, 1235, 1, 0, 0, 0, 923, 934, 5, 74, 0, 0, 924, 929, 3, 250, 125, 0, 925, 926, 5, 3, 0, 0, 926, 928, 3, 250, 125, 0, 927, 925, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 935, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 5, 22, 0, 0, 933, 935, 5, 215, 0, 0, 934, 924, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 5, 190, 0, 0, 937, 938, 3, 254, 127, 0, 938, 939, 5, 269, 0, 0, 939, 940, 3, 292, 146, 0, 940, 1235, 1, 0, 0, 0, 941, 942, 5, 251, 0, 0, 942, 946, 5, 235, 0, 0, 943, 947, 5, 22, 0, 0, 944, 947, 5, 180, 0, 0, 945, 947, 3, 298, 149, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 950, 1, 0, 0, 0, 948, 949, 5, 122, 0, 0, 949, 951, 3, 270, 135, 0, 950, 948, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 1235, 1, 0, 0, 0, 952, 953, 5, 253, 0, 0, 953, 956, 5, 112, 0, 0, 954, 955, 5, 190, 0, 0, 955, 957, 3, 254, 127, 0, 956, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 1235, 1, 0, 0, 0, 958, 970, 5, 95, 0, 0, 959, 960, 5, 1, 0, 0, 960, 965, 3, 214, 107, 0, 961, 962, 5, 3, 0, 0, 962, 964, 3, 214, 107, 0, 963, 961, 1, 0, 0, 0, 964, 967, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 968, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 968, 969, 5, 2, 0, 0, 969, 971, 1, 0, 0, 0, 970, 959, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 1235, 3, 16, 8, 0, 973, 974, 5, 95, 0, 0, 974, 976, 5, 24, 0, 0, 975, 977, 5, 297, 0, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 1235, 3, 16, 8, 0, 979, 980, 5, 253, 0, 0, 980, 981, 5, 53, 0, 0, 981, 982, 5, 260, 0, 0, 982, 1235, 3, 258, 129, 0, 983, 984, 5, 253, 0, 0, 984, 985, 5, 53, 0, 0, 985, 986, 5, 243, 0, 0, 986, 1235, 3, 266, 133, 0, 987, 988, 5, 253, 0, 0, 988, 989, 5, 53, 0, 0, 989, 990, 5, 299, 0, 0, 990, 1235, 3, 262, 131, 0, 991, 992, 5, 253, 0, 0, 992, 993, 5, 53, 0, 0, 993, 994, 5, 167, 0, 0, 994, 995, 5, 299, 0, 0, 995, 1235, 3, 262, 131, 0, 996, 997, 5, 253, 0, 0, 997, 998, 5, 53, 0, 0, 998, 999, 5, 107, 0, 0, 999, 1235, 3, 274, 137, 0, 1000, 1001, 5, 253, 0, 0, 1001, 1004, 5, 261, 0, 0, 1002, 1003, 7, 2, 0, 0, 1003, 1005, 3, 266, 133, 0, 1004, 1002, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1012, 1, 0, 0, 0, 1006, 1007, 5, 154, 0, 0, 1007, 1010, 3, 170, 85, 0, 1008, 1009, 5, 90, 0, 0, 1009, 1011, 3, 170, 85, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1235, 1, 0, 0, 0, 1014, 1015, 5, 253, 0, 0, 1015, 1018, 5, 244, 0, 0, 1016, 1017, 7, 2, 0, 0, 1017, 1019, 3, 270, 135, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1026, 1, 0, 0, 0, 1020, 1021, 5, 154, 0, 0, 1021, 1024, 3, 170, 85, 0, 1022, 1023, 5, 90, 0, 0, 1023, 1025, 3, 170, 85, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 1, 0, 0, 0, 1026, 1020, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1235, 1, 0, 0, 0, 1028, 1029, 5, 253, 0, 0, 1029, 1036, 5, 43, 0, 0, 1030, 1031, 5, 154, 0, 0, 1031, 1034, 3, 170, 85, 0, 1032, 1033, 5, 90, 0, 0, 1033, 1035, 3, 170, 85, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1030, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1235, 1, 0, 0, 0, 1038, 1039, 5, 253, 0, 0, 1039, 1040, 5, 45, 0, 0, 1040, 1041, 7, 2, 0, 0, 1041, 1048, 3, 256, 128, 0, 1042, 1043, 5, 154, 0, 0, 1043, 1046, 3, 170, 85, 0, 1044, 1045, 5, 90, 0, 0, 1045, 1047, 3, 170, 85, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1049, 1, 0, 0, 0, 1048, 1042, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1235, 1, 0, 0, 0, 1050, 1051, 5, 253, 0, 0, 1051, 1052, 5, 256, 0, 0, 1052, 1053, 5, 103, 0, 0, 1053, 1235, 3, 256, 128, 0, 1054, 1055, 5, 253, 0, 0, 1055, 1056, 5, 256, 0, 0, 1056, 1057, 5, 103, 0, 0, 1057, 1058, 5, 1, 0, 0, 1058, 1059, 3, 18, 9, 0, 1059, 1060, 5, 2, 0, 0, 1060, 1235, 1, 0, 0, 0, 1061, 1063, 5, 253, 0, 0, 1062, 1064, 5, 56, 0, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1068, 5, 236, 0, 0, 1066, 1067, 7, 2, 0, 0, 1067, 1069, 3, 270, 135, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1235, 1, 0, 0, 0, 1070, 1071, 5, 253, 0, 0, 1071, 1072, 5, 235, 0, 0, 1072, 1075, 5, 112, 0, 0, 1073, 1074, 7, 2, 0, 0, 1074, 1076, 3, 270, 135, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1235, 1, 0, 0, 0, 1077, 1078, 5, 76, 0, 0, 1078, 1235, 3, 256, 128, 0, 1079, 1080, 5, 75, 0, 0, 1080, 1235, 3, 256, 128, 0, 1081, 1082, 5, 253, 0, 0, 1082, 1085, 5, 108, 0, 0, 1083, 1084, 7, 2, 0, 0, 1084, 1086, 3, 266, 133, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1093, 1, 0, 0, 0, 1087, 1088, 5, 154, 0, 0, 1088, 1091, 3, 170, 85, 0, 1089, 1090, 5, 90, 0, 0, 1090, 1092, 3, 170, 85, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 1, 0, 0, 0, 1093, 1087, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1235, 1, 0, 0, 0, 1095, 1096, 5, 253, 0, 0, 1096, 1103, 5, 250, 0, 0, 1097, 1098, 5, 154, 0, 0, 1098, 1101, 3, 170, 85, 0, 1099, 1100, 5, 90, 0, 0, 1100, 1102, 3, 170, 85, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1097, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1235, 1, 0, 0, 0, 1105, 1106, 5, 251, 0, 0, 1106, 1107, 5, 250, 0, 0, 1107, 1108, 5, 31, 0, 0, 1108, 1235, 3, 302, 151, 0, 1109, 1110, 5, 227, 0, 0, 1110, 1111, 5, 250, 0, 0, 1111, 1235, 5, 31, 0, 0, 1112, 1113, 5, 251, 0, 0, 1113, 1114, 5, 250, 0, 0, 1114, 1115, 3, 284, 142, 0, 1115, 1116, 5, 312, 0, 0, 1116, 1117, 3, 138, 69, 0, 1117, 1235, 1, 0, 0, 0, 1118, 1119, 5, 227, 0, 0, 1119, 1120, 5, 250, 0, 0, 1120, 1235, 3, 284, 142, 0, 1121, 1122, 5, 255, 0, 0, 1122, 1131, 5, 271, 0, 0, 1123, 1128, 3, 216, 108, 0, 1124, 1125, 5, 3, 0, 0, 1125, 1127, 3, 216, 108, 0, 1126, 1124, 1, 0, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1132, 1, 0, 0, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1123, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1235, 1, 0, 0, 0, 1133, 1135, 5, 47, 0, 0, 1134, 1136, 5, 307, 0, 0, 1135, 1134, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1235, 1, 0, 0, 0, 1137, 1139, 5, 237, 0, 0, 1138, 1140, 5, 307, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1235, 1, 0, 0, 0, 1141, 1142, 5, 214, 0, 0, 1142, 1143, 3, 298, 149, 0, 1143, 1144, 5, 105, 0, 0, 1144, 1145, 3, 16, 8, 0, 1145, 1235, 1, 0, 0, 0, 1146, 1147, 5, 68, 0, 0, 1147, 1148, 5, 214, 0, 0, 1148, 1235, 3, 298, 149, 0, 1149, 1150, 5, 93, 0, 0, 1150, 1160, 3, 298, 149, 0, 1151, 1152, 5, 290, 0, 0, 1152, 1157, 3, 138, 69, 0, 1153, 1154, 5, 3, 0, 0, 1154, 1156, 3, 138, 69, 0, 1155, 1153, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1161, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1151, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1235, 1, 0, 0, 0, 1162, 1163, 5, 93, 0, 0, 1163, 1164, 5, 121, 0, 0, 1164, 1174, 3, 170, 85, 0, 1165, 1166, 5, 290, 0, 0, 1166, 1171, 3, 138, 69, 0, 1167, 1168, 5, 3, 0, 0, 1168, 1170, 3, 138, 69, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1173, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1165, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1235, 1, 0, 0, 0, 1176, 1177, 5, 76, 0, 0, 1177, 1178, 5, 126, 0, 0, 1178, 1235, 3, 298, 149, 0, 1179, 1180, 5, 76, 0, 0, 1180, 1181, 5, 198, 0, 0, 1181, 1235, 3, 298, 149, 0, 1182, 1183, 5, 251, 0, 0, 1183, 1184, 5, 205, 0, 0, 1184, 1235, 3, 224, 112, 0, 1185, 1186, 5, 251, 0, 0, 1186, 1187, 5, 267, 0, 0, 1187, 1190, 5, 311, 0, 0, 1188, 1191, 5, 157, 0, 0, 1189, 1191, 3, 138, 69, 0, 1190, 1188, 1, 0, 0, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1235, 1, 0, 0, 0, 1192, 1193, 5, 287, 0, 0, 1193, 1194, 3, 258, 129, 0, 1194, 1195, 5, 251, 0, 0, 1195, 1200, 3, 212, 106, 0, 1196, 1197, 5, 3, 0, 0, 1197, 1199, 3, 212, 106, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1205, 3, 54, 27, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1235, 1, 0, 0, 0, 1206, 1207, 5, 169, 0, 0, 1207, 1208, 5, 130, 0, 0, 1208, 1213, 3, 258, 129, 0, 1209, 1211, 5, 28, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1214, 3, 298, 149, 0, 1213, 1210, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 5, 290, 0, 0, 1216, 1217, 3, 74, 37, 0, 1217, 1218, 5, 190, 0, 0, 1218, 1220, 3, 138, 69, 0, 1219, 1221, 3, 196, 98, 0, 1220, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1235, 1, 0, 0, 0, 1224, 1225, 5, 253, 0, 0, 1225, 1226, 5, 46, 0, 0, 1226, 1227, 5, 190, 0, 0, 1227, 1228, 5, 260, 0, 0, 1228, 1235, 3, 258, 129, 0, 1229, 1230, 5, 253, 0, 0, 1230, 1231, 5, 46, 0, 0, 1231, 1232, 5, 190, 0, 0, 1232, 1233, 5, 44, 0, 0, 1233, 1235, 3, 278, 139, 0, 1234, 339, 1, 0, 0, 0, 1234, 340, 1, 0, 0, 0, 1234, 342, 1, 0, 0, 0, 1234, 364, 1, 0, 0, 0, 1234, 374, 1, 0, 0, 0, 1234, 390, 1, 0, 0, 0, 1234, 400, 1, 0, 0, 0, 1234, 407, 1, 0, 0, 0, 1234, 414, 1, 0, 0, 0, 1234, 452, 1, 0, 0, 0, 1234, 482, 1, 0, 0, 0, 1234, 489, 1, 0, 0, 0, 1234, 497, 1, 0, 0, 0, 1234, 503, 1, 0, 0, 0, 1234, 506, 1, 0, 0, 0, 1234, 515, 1, 0, 0, 0, 1234, 524, 1, 0, 0, 0, 1234, 533, 1, 0, 0, 0, 1234, 544, 1, 0, 0, 0, 1234, 560, 1, 0, 0, 0, 1234, 577, 1, 0, 0, 0, 1234, 592, 1, 0, 0, 0, 1234, 607, 1, 0, 0, 0, 1234, 621, 1, 0, 0, 0, 1234, 628, 1, 0, 0, 0, 1234, 635, 1, 0, 0, 0, 1234, 657, 1, 0, 0, 0, 1234, 663, 1, 0, 0, 0, 1234, 692, 1, 0, 0, 0, 1234, 714, 1, 0, 0, 0, 1234, 718, 1, 0, 0, 0, 1234, 726, 1, 0, 0, 0, 1234, 738, 1, 0, 0, 0, 1234, 746, 1, 0, 0, 0, 1234, 753, 1, 0, 0, 0, 1234, 760, 1, 0, 0, 0, 1234, 767, 1, 0, 0, 0, 1234, 782, 1, 0, 0, 0, 1234, 788, 1, 0, 0, 0, 1234, 795, 1, 0, 0, 0, 1234, 807, 1, 0, 0, 0, 1234, 814, 1, 0, 0, 0, 1234, 846, 1, 0, 0, 0, 1234, 868, 1, 0, 0, 0, 1234, 900, 1, 0, 0, 0, 1234, 923, 1, 0, 0, 0, 1234, 941, 1, 0, 0, 0, 1234, 952, 1, 0, 0, 0, 1234, 958, 1, 0, 0, 0, 1234, 973, 1, 0, 0, 0, 1234, 979, 1, 0, 0, 0, 1234, 983, 1, 0, 0, 0, 1234, 987, 1, 0, 0, 0, 1234, 991, 1, 0, 0, 0, 1234, 996, 1, 0, 0, 0, 1234, 1000, 1, 0, 0, 0, 1234, 1014, 1, 0, 0, 0, 1234, 1028, 1, 0, 0, 0, 1234, 1038, 1, 0, 0, 0, 1234, 1050, 1, 0, 0, 0, 1234, 1054, 1, 0, 0, 0, 1234, 1061, 1, 0, 0, 0, 1234, 1070, 1, 0, 0, 0, 1234, 1077, 1, 0, 0, 0, 1234, 1079, 1, 0, 0, 0, 1234, 1081, 1, 0, 0, 0, 1234, 1095, 1, 0, 0, 0, 1234, 1105, 1, 0, 0, 0, 1234, 1109, 1, 0, 0, 0, 1234, 1112, 1, 0, 0, 0, 1234, 1118, 1, 0, 0, 0, 1234, 1121, 1, 0, 0, 0, 1234, 1133, 1, 0, 0, 0, 1234, 1137, 1, 0, 0, 0, 1234, 1141, 1, 0, 0, 0, 1234, 1146, 1, 0, 0, 0, 1234, 1149, 1, 0, 0, 0, 1234, 1162, 1, 0, 0, 0, 1234, 1176, 1, 0, 0, 0, 1234, 1179, 1, 0, 0, 0, 1234, 1182, 1, 0, 0, 0, 1234, 1185, 1, 0, 0, 0, 1234, 1192, 1, 0, 0, 0, 1234, 1206, 1, 0, 0, 0, 1234, 1224, 1, 0, 0, 0, 1234, 1229, 1, 0, 0, 0, 1235, 17, 1, 0, 0, 0, 1236, 1238, 3, 20, 10, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1240, 3, 22, 11, 0, 1240, 19, 1, 0, 0, 0, 1241, 1242, 5, 304, 0, 0, 1242, 1247, 3, 226, 113, 0, 1243, 1244, 5, 3, 0, 0, 1244, 1246, 3, 226, 113, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1249, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 21, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1252, 3, 24, 12, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1254, 3, 40, 20, 0, 1254, 23, 1, 0, 0, 0, 1255, 1257, 5, 304, 0, 0, 1256, 1258, 5, 221, 0, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1264, 3, 68, 34, 0, 1260, 1261, 5, 3, 0, 0, 1261, 1263, 3, 68, 34, 0, 1262, 1260, 1, 0, 0, 0, 1263, 1266, 1, 0, 0, 0, 1264, 1262, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 25, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1270, 3, 28, 14, 0, 1268, 1270, 3, 30, 15, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 27, 1, 0, 0, 0, 1271, 1272, 3, 282, 141, 0, 1272, 1275, 3, 186, 93, 0, 1273, 1274, 5, 182, 0, 0, 1274, 1276, 5, 183, 0, 0, 1275, 1273, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 5, 46, 0, 0, 1278, 1280, 3, 170, 85, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 5, 304, 0, 0, 1282, 1284, 3, 32, 16, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 29, 1, 0, 0, 0, 1285, 1286, 5, 154, 0, 0, 1286, 1289, 3, 258, 129, 0, 1287, 1288, 7, 3, 0, 0, 1288, 1290, 5, 216, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 31, 1, 0, 0, 0, 1291, 1292, 5, 1, 0, 0, 1292, 1293, 3, 34, 17, 0, 1293, 1294, 5, 2, 0, 0, 1294, 33, 1, 0, 0, 0, 1295, 1300, 3, 36, 18, 0, 1296, 1297, 5, 3, 0, 0, 1297, 1299, 3, 36, 18, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 35, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1304, 3, 298, 149, 0, 1304, 1305, 5, 312, 0, 0, 1305, 1306, 3, 38, 19, 0, 1306, 37, 1, 0, 0, 0, 1307, 1310, 5, 70, 0, 0, 1308, 1310, 3, 138, 69, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1308, 1, 0, 0, 0, 1310, 39, 1, 0, 0, 0, 1311, 1322, 3, 46, 23, 0, 1312, 1313, 5, 195, 0, 0, 1313, 1314, 5, 36, 0, 0, 1314, 1319, 3, 50, 25, 0, 1315, 1316, 5, 3, 0, 0, 1316, 1318, 3, 50, 25, 0, 1317, 1315, 1, 0, 0, 0, 1318, 1321, 1, 0, 0, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1323, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1312, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1329, 1, 0, 0, 0, 1324, 1325, 5, 188, 0, 0, 1325, 1327, 3, 44, 22, 0, 1326, 1328, 7, 4, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1324, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1344, 1, 0, 0, 0, 1331, 1332, 5, 155, 0, 0, 1332, 1345, 3, 42, 21, 0, 1333, 1334, 5, 98, 0, 0, 1334, 1336, 7, 5, 0, 0, 1335, 1337, 3, 44, 22, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1342, 7, 4, 0, 0, 1339, 1343, 5, 192, 0, 0, 1340, 1341, 5, 304, 0, 0, 1341, 1343, 5, 266, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1331, 1, 0, 0, 0, 1344, 1333, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 41, 1, 0, 0, 0, 1346, 1349, 5, 22, 0, 0, 1347, 1349, 3, 44, 22, 0, 1348, 1346, 1, 0, 0, 0, 1348, 1347, 1, 0, 0, 0, 1349, 43, 1, 0, 0, 0, 1350, 1351, 7, 6, 0, 0, 1351, 45, 1, 0, 0, 0, 1352, 1353, 6, 23, -1, 0, 1353, 1354, 3, 48, 24, 0, 1354, 1369, 1, 0, 0, 0, 1355, 1356, 10, 2, 0, 0, 1356, 1358, 5, 128, 0, 0, 1357, 1359, 3, 70, 35, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1368, 3, 46, 23, 3, 1361, 1362, 10, 1, 0, 0, 1362, 1364, 7, 7, 0, 0, 1363, 1365, 3, 70, 35, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1368, 3, 46, 23, 2, 1367, 1355, 1, 0, 0, 0, 1367, 1361, 1, 0, 0, 0, 1368, 1371, 1, 0, 0, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 47, 1, 0, 0, 0, 1371, 1369, 1, 0, 0, 0, 1372, 1389, 3, 52, 26, 0, 1373, 1374, 5, 260, 0, 0, 1374, 1389, 3, 258, 129, 0, 1375, 1376, 5, 296, 0, 0, 1376, 1381, 3, 138, 69, 0, 1377, 1378, 5, 3, 0, 0, 1378, 1380, 3, 138, 69, 0, 1379, 1377, 1, 0, 0, 0, 1380, 1383, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1389, 1, 0, 0, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1385, 5, 1, 0, 0, 1385, 1386, 3, 40, 20, 0, 1386, 1387, 5, 2, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1372, 1, 0, 0, 0, 1388, 1373, 1, 0, 0, 0, 1388, 1375, 1, 0, 0, 0, 1388, 1384, 1, 0, 0, 0, 1389, 49, 1, 0, 0, 0, 1390, 1393, 3, 278, 139, 0, 1391, 1393, 3, 138, 69, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1391, 1, 0, 0, 0, 1393, 1395, 1, 0, 0, 0, 1394, 1396, 7, 8, 0, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1398, 5, 185, 0, 0, 1398, 1400, 7, 9, 0, 0, 1399, 1397, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 51, 1, 0, 0, 0, 1401, 1403, 5, 248, 0, 0, 1402, 1404, 3, 70, 35, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1410, 3, 72, 36, 0, 1406, 1407, 5, 3, 0, 0, 1407, 1409, 3, 72, 36, 0, 1408, 1406, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1422, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1414, 5, 105, 0, 0, 1414, 1419, 3, 74, 37, 0, 1415, 1416, 5, 3, 0, 0, 1416, 1418, 3, 74, 37, 0, 1417, 1415, 1, 0, 0, 0, 1418, 1421, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1423, 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1413, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1425, 1, 0, 0, 0, 1424, 1426, 3, 54, 27, 0, 1425, 1424, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1430, 1, 0, 0, 0, 1427, 1428, 5, 114, 0, 0, 1428, 1429, 5, 36, 0, 0, 1429, 1431, 3, 56, 28, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1434, 1, 0, 0, 0, 1432, 1433, 5, 117, 0, 0, 1433, 1435, 3, 140, 70, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1445, 1, 0, 0, 0, 1436, 1437, 5, 303, 0, 0, 1437, 1442, 3, 64, 32, 0, 1438, 1439, 5, 3, 0, 0, 1439, 1441, 3, 64, 32, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1444, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1436, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 53, 1, 0, 0, 0, 1447, 1448, 5, 301, 0, 0, 1448, 1449, 3, 140, 70, 0, 1449, 55, 1, 0, 0, 0, 1450, 1452, 3, 70, 35, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1458, 3, 58, 29, 0, 1454, 1455, 5, 3, 0, 0, 1455, 1457, 3, 58, 29, 0, 1456, 1454, 1, 0, 0, 0, 1457, 1460, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 57, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1461, 1502, 3, 60, 30, 0, 1462, 1463, 5, 238, 0, 0, 1463, 1472, 5, 1, 0, 0, 1464, 1469, 3, 60, 30, 0, 1465, 1466, 5, 3, 0, 0, 1466, 1468, 3, 60, 30, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1471, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1473, 1, 0, 0, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1464, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1502, 5, 2, 0, 0, 1475, 1476, 5, 55, 0, 0, 1476, 1485, 5, 1, 0, 0, 1477, 1482, 3, 60, 30, 0, 1478, 1479, 5, 3, 0, 0, 1479, 1481, 3, 60, 30, 0, 1480, 1478, 1, 0, 0, 0, 1481, 1484, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1486, 1, 0, 0, 0, 1484, 1482, 1, 0, 0, 0, 1485, 1477, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1502, 5, 2, 0, 0, 1488, 1489, 5, 115, 0, 0, 1489, 1490, 5, 252, 0, 0, 1490, 1491, 5, 1, 0, 0, 1491, 1496, 3, 60, 30, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 60, 30, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1500, 5, 2, 0, 0, 1500, 1502, 1, 0, 0, 0, 1501, 1461, 1, 0, 0, 0, 1501, 1462, 1, 0, 0, 0, 1501, 1475, 1, 0, 0, 0, 1501, 1488, 1, 0, 0, 0, 1502, 59, 1, 0, 0, 0, 1503, 1512, 5, 1, 0, 0, 1504, 1509, 3, 62, 31, 0, 1505, 1506, 5, 3, 0, 0, 1506, 1508, 3, 62, 31, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1513, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1504, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1517, 5, 2, 0, 0, 1515, 1517, 3, 62, 31, 0, 1516, 1503, 1, 0, 0, 0, 1516, 1515, 1, 0, 0, 0, 1517, 61, 1, 0, 0, 0, 1518, 1521, 3, 278, 139, 0, 1519, 1521, 3, 138, 69, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1519, 1, 0, 0, 0, 1521, 63, 1, 0, 0, 0, 1522, 1523, 3, 298, 149, 0, 1523, 1524, 5, 28, 0, 0, 1524, 1525, 5, 1, 0, 0, 1525, 1526, 3, 66, 33, 0, 1526, 1527, 5, 2, 0, 0, 1527, 65, 1, 0, 0, 0, 1528, 1530, 3, 298, 149, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1541, 1, 0, 0, 0, 1531, 1532, 5, 201, 0, 0, 1532, 1533, 5, 36, 0, 0, 1533, 1538, 3, 138, 69, 0, 1534, 1535, 5, 3, 0, 0, 1535, 1537, 3, 138, 69, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1538, 1, 0, 0, 0, 1541, 1531, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1553, 1, 0, 0, 0, 1543, 1544, 5, 195, 0, 0, 1544, 1545, 5, 36, 0, 0, 1545, 1550, 3, 50, 25, 0, 1546, 1547, 5, 3, 0, 0, 1547, 1549, 3, 50, 25, 0, 1548, 1546, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1543, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1556, 1, 0, 0, 0, 1555, 1557, 3, 200, 100, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 67, 1, 0, 0, 0, 1558, 1560, 3, 298, 149, 0, 1559, 1561, 3, 110, 55, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 5, 28, 0, 0, 1563, 1564, 5, 1, 0, 0, 1564, 1565, 3, 22, 11, 0, 1565, 1566, 5, 2, 0, 0, 1566, 69, 1, 0, 0, 0, 1567, 1568, 7, 10, 0, 0, 1568, 71, 1, 0, 0, 0, 1569, 1572, 3, 278, 139, 0, 1570, 1572, 3, 138, 69, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1570, 1, 0, 0, 0, 1572, 1577, 1, 0, 0, 0, 1573, 1575, 5, 28, 0, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 3, 298, 149, 0, 1577, 1574, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1588, 1, 0, 0, 0, 1579, 1580, 3, 146, 73, 0, 1580, 1581, 5, 4, 0, 0, 1581, 1584, 5, 320, 0, 0, 1582, 1583, 5, 28, 0, 0, 1583, 1585, 3, 110, 55, 0, 1584, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1588, 1, 0, 0, 0, 1586, 1588, 5, 320, 0, 0, 1587, 1571, 1, 0, 0, 0, 1587, 1579, 1, 0, 0, 0, 1587, 1586, 1, 0, 0, 0, 1588, 73, 1, 0, 0, 0, 1589, 1590, 6, 37, -1, 0, 1590, 1591, 3, 80, 40, 0, 1591, 1610, 1, 0, 0, 0, 1592, 1606, 10, 2, 0, 0, 1593, 1594, 5, 54, 0, 0, 1594, 1595, 5, 136, 0, 0, 1595, 1607, 3, 80, 40, 0, 1596, 1597, 3, 76, 38, 0, 1597, 1598, 5, 136, 0, 0, 1598, 1599, 3, 74, 37, 0, 1599, 1600, 3, 78, 39, 0, 1600, 1607, 1, 0, 0, 0, 1601, 1602, 5, 172, 0, 0, 1602, 1603, 3, 76, 38, 0, 1603, 1604, 5, 136, 0, 0, 1604, 1605, 3, 80, 40, 0, 1605, 1607, 1, 0, 0, 0, 1606, 1593, 1, 0, 0, 0, 1606, 1596, 1, 0, 0, 0, 1606, 1601, 1, 0, 0, 0, 1607, 1609, 1, 0, 0, 0, 1608, 1592, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 75, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1615, 5, 125, 0, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1629, 1, 0, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 197, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1629, 1, 0, 0, 0, 1620, 1622, 5, 234, 0, 0, 1621, 1623, 5, 197, 0, 0, 1622, 1621, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1629, 1, 0, 0, 0, 1624, 1626, 5, 106, 0, 0, 1625, 1627, 5, 197, 0, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1614, 1, 0, 0, 0, 1628, 1616, 1, 0, 0, 0, 1628, 1620, 1, 0, 0, 0, 1628, 1624, 1, 0, 0, 0, 1629, 77, 1, 0, 0, 0, 1630, 1631, 5, 190, 0, 0, 1631, 1645, 3, 140, 70, 0, 1632, 1633, 5, 290, 0, 0, 1633, 1634, 5, 1, 0, 0, 1634, 1639, 3, 298, 149, 0, 1635, 1636, 5, 3, 0, 0, 1636, 1638, 3, 298, 149, 0, 1637, 1635, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1643, 5, 2, 0, 0, 1643, 1645, 1, 0, 0, 0, 1644, 1630, 1, 0, 0, 0, 1644, 1632, 1, 0, 0, 0, 1645, 79, 1, 0, 0, 0, 1646, 1653, 3, 90, 45, 0, 1647, 1648, 5, 262, 0, 0, 1648, 1649, 3, 82, 41, 0, 1649, 1650, 5, 1, 0, 0, 1650, 1651, 3, 138, 69, 0, 1651, 1652, 5, 2, 0, 0, 1652, 1654, 1, 0, 0, 0, 1653, 1647, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 81, 1, 0, 0, 0, 1655, 1656, 7, 11, 0, 0, 1656, 83, 1, 0, 0, 0, 1657, 1658, 7, 12, 0, 0, 1658, 85, 1, 0, 0, 0, 1659, 1666, 5, 89, 0, 0, 1660, 1662, 5, 274, 0, 0, 1661, 1663, 3, 170, 85, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 3, 88, 44, 0, 1665, 1659, 1, 0, 0, 0, 1665, 1660, 1, 0, 0, 0, 1666, 87, 1, 0, 0, 0, 1667, 1668, 5, 304, 0, 0, 1668, 1672, 5, 51, 0, 0, 1669, 1670, 5, 306, 0, 0, 1670, 1672, 5, 51, 0, 0, 1671, 1667, 1, 0, 0, 0, 1671, 1669, 1, 0, 0, 0, 1672, 89, 1, 0, 0, 0, 1673, 1756, 3, 104, 52, 0, 1674, 1675, 5, 166, 0, 0, 1675, 1686, 5, 1, 0, 0, 1676, 1677, 5, 201, 0, 0, 1677, 1678, 5, 36, 0, 0, 1678, 1683, 3, 138, 69, 0, 1679, 1680, 5, 3, 0, 0, 1680, 1682, 3, 138, 69, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1687, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1686, 1676, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1698, 1, 0, 0, 0, 1688, 1689, 5, 195, 0, 0, 1689, 1690, 5, 36, 0, 0, 1690, 1695, 3, 50, 25, 0, 1691, 1692, 5, 3, 0, 0, 1692, 1694, 3, 50, 25, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1688, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1709, 1, 0, 0, 0, 1700, 1701, 5, 168, 0, 0, 1701, 1706, 3, 92, 46, 0, 1702, 1703, 5, 3, 0, 0, 1703, 1705, 3, 92, 46, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1700, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 94, 47, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1717, 1, 0, 0, 0, 1714, 1715, 5, 21, 0, 0, 1715, 1716, 5, 163, 0, 0, 1716, 1718, 3, 98, 49, 0, 1717, 1714, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1721, 7, 13, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 206, 0, 0, 1723, 1724, 5, 1, 0, 0, 1724, 1725, 3, 206, 103, 0, 1725, 1735, 5, 2, 0, 0, 1726, 1727, 5, 257, 0, 0, 1727, 1732, 3, 100, 50, 0, 1728, 1729, 5, 3, 0, 0, 1729, 1731, 3, 100, 50, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 5, 71, 0, 0, 1738, 1743, 3, 102, 51, 0, 1739, 1740, 5, 3, 0, 0, 1740, 1742, 3, 102, 51, 0, 1741, 1739, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1754, 5, 2, 0, 0, 1747, 1749, 5, 28, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 3, 298, 149, 0, 1751, 1753, 3, 110, 55, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1674, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 91, 1, 0, 0, 0, 1758, 1759, 3, 138, 69, 0, 1759, 1760, 5, 28, 0, 0, 1760, 1761, 3, 298, 149, 0, 1761, 93, 1, 0, 0, 0, 1762, 1763, 5, 191, 0, 0, 1763, 1764, 5, 239, 0, 0, 1764, 1765, 5, 207, 0, 0, 1765, 1774, 5, 163, 0, 0, 1766, 1767, 5, 22, 0, 0, 1767, 1768, 5, 240, 0, 0, 1768, 1769, 5, 207, 0, 0, 1769, 1771, 5, 163, 0, 0, 1770, 1772, 3, 96, 48, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1762, 1, 0, 0, 0, 1773, 1766, 1, 0, 0, 0, 1774, 95, 1, 0, 0, 0, 1775, 1776, 5, 253, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1785, 5, 165, 0, 0, 1778, 1779, 5, 189, 0, 0, 1779, 1780, 5, 85, 0, 0, 1780, 1785, 5, 165, 0, 0, 1781, 1782, 5, 304, 0, 0, 1782, 1783, 5, 284, 0, 0, 1783, 1785, 5, 240, 0, 0, 1784, 1775, 1, 0, 0, 0, 1784, 1778, 1, 0, 0, 0, 1784, 1781, 1, 0, 0, 0, 1785, 97, 1, 0, 0, 0, 1786, 1787, 5, 5, 0, 0, 1787, 1788, 5, 269, 0, 0, 1788, 1789, 5, 174, 0, 0, 1789, 1806, 5, 239, 0, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1792, 5, 204, 0, 0, 1792, 1793, 5, 148, 0, 0, 1793, 1806, 5, 239, 0, 0, 1794, 1795, 5, 5, 0, 0, 1795, 1796, 5, 269, 0, 0, 1796, 1797, 5, 101, 0, 0, 1797, 1806, 3, 298, 149, 0, 1798, 1799, 5, 5, 0, 0, 1799, 1800, 5, 269, 0, 0, 1800, 1801, 5, 148, 0, 0, 1801, 1806, 3, 298, 149, 0, 1802, 1803, 5, 5, 0, 0, 1803, 1804, 5, 269, 0, 0, 1804, 1806, 3, 298, 149, 0, 1805, 1786, 1, 0, 0, 0, 1805, 1790, 1, 0, 0, 0, 1805, 1794, 1, 0, 0, 0, 1805, 1798, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 99, 1, 0, 0, 0, 1807, 1808, 3, 298, 149, 0, 1808, 1809, 5, 312, 0, 0, 1809, 1810, 5, 1, 0, 0, 1810, 1815, 3, 298, 149, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1814, 3, 298, 149, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 2, 0, 0, 1819, 101, 1, 0, 0, 0, 1820, 1821, 3, 298, 149, 0, 1821, 1822, 5, 28, 0, 0, 1822, 1823, 3, 138, 69, 0, 1823, 103, 1, 0, 0, 0, 1824, 1832, 3, 112, 56, 0, 1825, 1827, 5, 28, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 3, 298, 149, 0, 1829, 1831, 3, 110, 55, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 105, 1, 0, 0, 0, 1834, 1835, 5, 1, 0, 0, 1835, 1840, 3, 282, 141, 0, 1836, 1837, 5, 3, 0, 0, 1837, 1839, 3, 282, 141, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 2, 0, 0, 1844, 107, 1, 0, 0, 0, 1845, 1846, 5, 1, 0, 0, 1846, 1851, 3, 278, 139, 0, 1847, 1848, 5, 3, 0, 0, 1848, 1850, 3, 278, 139, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 2, 0, 0, 1855, 109, 1, 0, 0, 0, 1856, 1857, 5, 1, 0, 0, 1857, 1862, 3, 298, 149, 0, 1858, 1859, 5, 3, 0, 0, 1859, 1861, 3, 298, 149, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1864, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1866, 5, 2, 0, 0, 1866, 111, 1, 0, 0, 0, 1867, 1869, 3, 256, 128, 0, 1868, 1870, 3, 286, 143, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1939, 1, 0, 0, 0, 1871, 1872, 5, 1, 0, 0, 1872, 1873, 3, 22, 11, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1939, 1, 0, 0, 0, 1875, 1876, 5, 285, 0, 0, 1876, 1877, 5, 1, 0, 0, 1877, 1882, 3, 138, 69, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 138, 69, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 5, 2, 0, 0, 1886, 1887, 5, 304, 0, 0, 1887, 1889, 5, 196, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1939, 1, 0, 0, 0, 1890, 1891, 5, 149, 0, 0, 1891, 1892, 5, 1, 0, 0, 1892, 1893, 3, 22, 11, 0, 1893, 1894, 5, 2, 0, 0, 1894, 1939, 1, 0, 0, 0, 1895, 1896, 5, 260, 0, 0, 1896, 1897, 5, 1, 0, 0, 1897, 1898, 3, 124, 62, 0, 1898, 1899, 5, 2, 0, 0, 1899, 1939, 1, 0, 0, 0, 1900, 1901, 5, 1, 0, 0, 1901, 1902, 3, 74, 37, 0, 1902, 1903, 5, 2, 0, 0, 1903, 1939, 1, 0, 0, 0, 1904, 1905, 5, 142, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1907, 3, 148, 74, 0, 1907, 1908, 5, 45, 0, 0, 1908, 1909, 5, 1, 0, 0, 1909, 1914, 3, 114, 57, 0, 1910, 1911, 5, 3, 0, 0, 1911, 1913, 3, 114, 57, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1917, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1917, 1929, 5, 2, 0, 0, 1918, 1919, 5, 210, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 116, 58, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1930, 1, 0, 0, 0, 1923, 1924, 5, 210, 0, 0, 1924, 1925, 5, 70, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 122, 61, 0, 1927, 1928, 5, 2, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1918, 1, 0, 0, 0, 1929, 1923, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1934, 1, 0, 0, 0, 1931, 1932, 7, 14, 0, 0, 1932, 1933, 5, 190, 0, 0, 1933, 1935, 5, 89, 0, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 2, 0, 0, 1937, 1939, 1, 0, 0, 0, 1938, 1867, 1, 0, 0, 0, 1938, 1871, 1, 0, 0, 0, 1938, 1875, 1, 0, 0, 0, 1938, 1890, 1, 0, 0, 0, 1938, 1895, 1, 0, 0, 0, 1938, 1900, 1, 0, 0, 0, 1938, 1904, 1, 0, 0, 0, 1939, 113, 1, 0, 0, 0, 1940, 1941, 3, 298, 149, 0, 1941, 1942, 5, 103, 0, 0, 1942, 1943, 5, 196, 0, 0, 1943, 2018, 1, 0, 0, 0, 1944, 1945, 3, 298, 149, 0, 1945, 1948, 3, 186, 93, 0, 1946, 1947, 5, 205, 0, 0, 1947, 1949, 3, 170, 85, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1954, 1, 0, 0, 0, 1950, 1951, 3, 158, 79, 0, 1951, 1952, 5, 190, 0, 0, 1952, 1953, 5, 85, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1950, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1960, 1, 0, 0, 0, 1956, 1957, 3, 158, 79, 0, 1957, 1958, 5, 190, 0, 0, 1958, 1959, 5, 89, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1956, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2018, 1, 0, 0, 0, 1962, 1963, 3, 298, 149, 0, 1963, 1964, 3, 186, 93, 0, 1964, 1965, 5, 104, 0, 0, 1965, 1968, 3, 152, 76, 0, 1966, 1967, 5, 205, 0, 0, 1967, 1969, 3, 170, 85, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1973, 1, 0, 0, 0, 1970, 1971, 3, 160, 80, 0, 1971, 1972, 5, 308, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1970, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1982, 1, 0, 0, 0, 1975, 1976, 7, 15, 0, 0, 1976, 1980, 5, 218, 0, 0, 1977, 1978, 5, 190, 0, 0, 1978, 1979, 5, 242, 0, 0, 1979, 1981, 5, 264, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1975, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1988, 1, 0, 0, 0, 1984, 1985, 3, 162, 81, 0, 1985, 1986, 5, 190, 0, 0, 1986, 1987, 5, 85, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1984, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1994, 1, 0, 0, 0, 1990, 1991, 3, 162, 81, 0, 1991, 1992, 5, 190, 0, 0, 1992, 1993, 5, 89, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1990, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2018, 1, 0, 0, 0, 1996, 1998, 5, 173, 0, 0, 1997, 1999, 5, 205, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 3, 170, 85, 0, 2001, 2002, 5, 28, 0, 0, 2002, 2004, 3, 298, 149, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 5, 45, 0, 0, 2006, 2007, 5, 1, 0, 0, 2007, 2012, 3, 114, 57, 0, 2008, 2009, 5, 3, 0, 0, 2009, 2011, 3, 114, 57, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2014, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2016, 5, 2, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 1940, 1, 0, 0, 0, 2017, 1944, 1, 0, 0, 0, 2017, 1962, 1, 0, 0, 0, 2017, 1996, 1, 0, 0, 0, 2018, 115, 1, 0, 0, 0, 2019, 2045, 3, 118, 59, 0, 2020, 2021, 3, 118, 59, 0, 2021, 2022, 7, 16, 0, 0, 2022, 2023, 3, 120, 60, 0, 2023, 2045, 1, 0, 0, 0, 2024, 2025, 3, 120, 60, 0, 2025, 2026, 5, 281, 0, 0, 2026, 2031, 3, 120, 60, 0, 2027, 2028, 5, 281, 0, 0, 2028, 2030, 3, 120, 60, 0, 2029, 2027, 1, 0, 0, 0, 2030, 2033, 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2045, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2035, 3, 120, 60, 0, 2035, 2036, 5, 54, 0, 0, 2036, 2041, 3, 120, 60, 0, 2037, 2038, 5, 54, 0, 0, 2038, 2040, 3, 120, 60, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2043, 1, 0, 0, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2045, 1, 0, 0, 0, 2043, 2041, 1, 0, 0, 0, 2044, 2019, 1, 0, 0, 0, 2044, 2020, 1, 0, 0, 0, 2044, 2024, 1, 0, 0, 0, 2044, 2034, 1, 0, 0, 0, 2045, 117, 1, 0, 0, 0, 2046, 2047, 3, 298, 149, 0, 2047, 119, 1, 0, 0, 0, 2048, 2054, 3, 118, 59, 0, 2049, 2050, 5, 1, 0, 0, 2050, 2051, 3, 116, 58, 0, 2051, 2052, 5, 2, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 2048, 1, 0, 0, 0, 2053, 2049, 1, 0, 0, 0, 2054, 121, 1, 0, 0, 0, 2055, 2058, 7, 16, 0, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 7, 17, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2066, 1, 0, 0, 0, 2060, 2063, 7, 17, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 7, 16, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2055, 1, 0, 0, 0, 2065, 2060, 1, 0, 0, 0, 2066, 123, 1, 0, 0, 0, 2067, 2068, 3, 274, 137, 0, 2068, 2077, 5, 1, 0, 0, 2069, 2074, 3, 126, 63, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 3, 126, 63, 0, 2072, 2070, 1, 0, 0, 0, 2073, 2076, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2077, 2069, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2088, 1, 0, 0, 0, 2079, 2080, 5, 52, 0, 0, 2080, 2085, 3, 136, 68, 0, 2081, 2082, 5, 3, 0, 0, 2082, 2084, 3, 136, 68, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2079, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 5, 2, 0, 0, 2091, 125, 1, 0, 0, 0, 2092, 2093, 3, 298, 149, 0, 2093, 2094, 5, 6, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2092, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2100, 1, 0, 0, 0, 2097, 2101, 3, 128, 64, 0, 2098, 2101, 3, 132, 66, 0, 2099, 2101, 3, 138, 69, 0, 2100, 2097, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 127, 1, 0, 0, 0, 2102, 2120, 3, 130, 65, 0, 2103, 2104, 5, 201, 0, 0, 2104, 2118, 5, 36, 0, 0, 2105, 2114, 5, 1, 0, 0, 2106, 2111, 3, 138, 69, 0, 2107, 2108, 5, 3, 0, 0, 2108, 2110, 3, 138, 69, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2106, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2119, 5, 2, 0, 0, 2117, 2119, 3, 138, 69, 0, 2118, 2105, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2103, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2128, 1, 0, 0, 0, 2122, 2123, 5, 217, 0, 0, 2123, 2124, 5, 300, 0, 0, 2124, 2129, 5, 85, 0, 0, 2125, 2126, 5, 144, 0, 0, 2126, 2127, 5, 300, 0, 0, 2127, 2129, 5, 85, 0, 0, 2128, 2122, 1, 0, 0, 0, 2128, 2125, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2146, 1, 0, 0, 0, 2130, 2131, 5, 195, 0, 0, 2131, 2144, 5, 36, 0, 0, 2132, 2133, 5, 1, 0, 0, 2133, 2138, 3, 50, 25, 0, 2134, 2135, 5, 3, 0, 0, 2135, 2137, 3, 50, 25, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2140, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2142, 5, 2, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2145, 3, 50, 25, 0, 2144, 2132, 1, 0, 0, 0, 2144, 2143, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2130, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 129, 1, 0, 0, 0, 2148, 2149, 5, 260, 0, 0, 2149, 2150, 5, 1, 0, 0, 2150, 2151, 3, 258, 129, 0, 2151, 2159, 5, 2, 0, 0, 2152, 2154, 5, 28, 0, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 3, 298, 149, 0, 2156, 2158, 3, 110, 55, 0, 2157, 2156, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2153, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2175, 1, 0, 0, 0, 2161, 2162, 5, 260, 0, 0, 2162, 2163, 5, 1, 0, 0, 2163, 2164, 3, 22, 11, 0, 2164, 2172, 5, 2, 0, 0, 2165, 2167, 5, 28, 0, 0, 2166, 2165, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 3, 298, 149, 0, 2169, 2171, 3, 110, 55, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2166, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2148, 1, 0, 0, 0, 2174, 2161, 1, 0, 0, 0, 2175, 131, 1, 0, 0, 0, 2176, 2177, 5, 77, 0, 0, 2177, 2178, 5, 1, 0, 0, 2178, 2183, 3, 134, 67, 0, 2179, 2180, 5, 3, 0, 0, 2180, 2182, 3, 134, 67, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 5, 2, 0, 0, 2187, 2195, 1, 0, 0, 0, 2188, 2189, 5, 41, 0, 0, 2189, 2190, 5, 1, 0, 0, 2190, 2191, 5, 183, 0, 0, 2191, 2192, 5, 28, 0, 0, 2192, 2193, 5, 77, 0, 0, 2193, 2195, 5, 2, 0, 0, 2194, 2176, 1, 0, 0, 0, 2194, 2188, 1, 0, 0, 0, 2195, 133, 1, 0, 0, 0, 2196, 2198, 3, 298, 149, 0, 2197, 2199, 3, 186, 93, 0, 2198, 2197, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 135, 1, 0, 0, 0, 2200, 2201, 5, 1, 0, 0, 2201, 2202, 3, 284, 142, 0, 2202, 2203, 5, 3, 0, 0, 2203, 2208, 3, 284, 142, 0, 2204, 2205, 5, 3, 0, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2204, 1, 0, 0, 0, 2207, 2210, 1, 0, 0, 0, 2208, 2206, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2211, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2211, 2212, 5, 2, 0, 0, 2212, 137, 1, 0, 0, 0, 2213, 2214, 3, 140, 70, 0, 2214, 139, 1, 0, 0, 0, 2215, 2216, 6, 70, -1, 0, 2216, 2218, 3, 144, 72, 0, 2217, 2219, 3, 142, 71, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2223, 1, 0, 0, 0, 2220, 2221, 5, 182, 0, 0, 2221, 2223, 3, 140, 70, 3, 2222, 2215, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2223, 2232, 1, 0, 0, 0, 2224, 2225, 10, 2, 0, 0, 2225, 2226, 5, 25, 0, 0, 2226, 2231, 3, 140, 70, 3, 2227, 2228, 10, 1, 0, 0, 2228, 2229, 5, 194, 0, 0, 2229, 2231, 3, 140, 70, 2, 2230, 2224, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 2234, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 141, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 3, 174, 87, 0, 2236, 2237, 3, 144, 72, 0, 2237, 2297, 1, 0, 0, 0, 2238, 2239, 3, 174, 87, 0, 2239, 2240, 3, 176, 88, 0, 2240, 2241, 5, 1, 0, 0, 2241, 2242, 3, 22, 11, 0, 2242, 2243, 5, 2, 0, 0, 2243, 2297, 1, 0, 0, 0, 2244, 2246, 5, 182, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 5, 34, 0, 0, 2248, 2249, 3, 144, 72, 0, 2249, 2250, 5, 25, 0, 0, 2250, 2251, 3, 144, 72, 0, 2251, 2297, 1, 0, 0, 0, 2252, 2254, 5, 182, 0, 0, 2253, 2252, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2256, 5, 122, 0, 0, 2256, 2257, 5, 1, 0, 0, 2257, 2262, 3, 138, 69, 0, 2258, 2259, 5, 3, 0, 0, 2259, 2261, 3, 138, 69, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2265, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2297, 1, 0, 0, 0, 2267, 2269, 5, 182, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 5, 122, 0, 0, 2271, 2272, 5, 1, 0, 0, 2272, 2273, 3, 22, 11, 0, 2273, 2274, 5, 2, 0, 0, 2274, 2297, 1, 0, 0, 0, 2275, 2277, 5, 182, 0, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2279, 5, 154, 0, 0, 2279, 2282, 3, 144, 72, 0, 2280, 2281, 5, 90, 0, 0, 2281, 2283, 3, 144, 72, 0, 2282, 2280, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2297, 1, 0, 0, 0, 2284, 2286, 5, 133, 0, 0, 2285, 2287, 5, 182, 0, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2297, 5, 183, 0, 0, 2289, 2291, 5, 133, 0, 0, 2290, 2292, 5, 182, 0, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2294, 5, 79, 0, 0, 2294, 2295, 5, 105, 0, 0, 2295, 2297, 3, 144, 72, 0, 2296, 2235, 1, 0, 0, 0, 2296, 2238, 1, 0, 0, 0, 2296, 2245, 1, 0, 0, 0, 2296, 2253, 1, 0, 0, 0, 2296, 2268, 1, 0, 0, 0, 2296, 2276, 1, 0, 0, 0, 2296, 2284, 1, 0, 0, 0, 2296, 2289, 1, 0, 0, 0, 2297, 143, 1, 0, 0, 0, 2298, 2299, 6, 72, -1, 0, 2299, 2303, 3, 146, 73, 0, 2300, 2301, 7, 18, 0, 0, 2301, 2303, 3, 144, 72, 4, 2302, 2298, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2318, 1, 0, 0, 0, 2304, 2305, 10, 3, 0, 0, 2305, 2306, 7, 19, 0, 0, 2306, 2317, 3, 144, 72, 4, 2307, 2308, 10, 2, 0, 0, 2308, 2309, 7, 18, 0, 0, 2309, 2317, 3, 144, 72, 3, 2310, 2311, 10, 1, 0, 0, 2311, 2312, 5, 323, 0, 0, 2312, 2317, 3, 144, 72, 2, 2313, 2314, 10, 5, 0, 0, 2314, 2315, 5, 30, 0, 0, 2315, 2317, 3, 172, 86, 0, 2316, 2304, 1, 0, 0, 0, 2316, 2307, 1, 0, 0, 0, 2316, 2310, 1, 0, 0, 0, 2316, 2313, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 145, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2322, 6, 73, -1, 0, 2322, 2775, 5, 183, 0, 0, 2323, 2775, 3, 180, 90, 0, 2324, 2325, 3, 298, 149, 0, 2325, 2326, 3, 170, 85, 0, 2326, 2775, 1, 0, 0, 0, 2327, 2328, 5, 82, 0, 0, 2328, 2329, 5, 213, 0, 0, 2329, 2775, 3, 170, 85, 0, 2330, 2775, 3, 300, 150, 0, 2331, 2775, 3, 178, 89, 0, 2332, 2775, 3, 170, 85, 0, 2333, 2775, 5, 328, 0, 0, 2334, 2775, 5, 324, 0, 0, 2335, 2336, 5, 211, 0, 0, 2336, 2337, 5, 1, 0, 0, 2337, 2338, 3, 144, 72, 0, 2338, 2339, 5, 122, 0, 0, 2339, 2340, 3, 144, 72, 0, 2340, 2341, 5, 2, 0, 0, 2341, 2775, 1, 0, 0, 0, 2342, 2343, 5, 1, 0, 0, 2343, 2346, 3, 138, 69, 0, 2344, 2345, 5, 3, 0, 0, 2345, 2347, 3, 138, 69, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 5, 2, 0, 0, 2351, 2775, 1, 0, 0, 0, 2352, 2353, 5, 239, 0, 0, 2353, 2354, 5, 1, 0, 0, 2354, 2359, 3, 138, 69, 0, 2355, 2356, 5, 3, 0, 0, 2356, 2358, 3, 138, 69, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2361, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2362, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2363, 5, 2, 0, 0, 2363, 2775, 1, 0, 0, 0, 2364, 2365, 5, 156, 0, 0, 2365, 2367, 5, 1, 0, 0, 2366, 2368, 3, 70, 35, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2372, 3, 138, 69, 0, 2370, 2371, 5, 3, 0, 0, 2371, 2373, 3, 170, 85, 0, 2372, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2377, 1, 0, 0, 0, 2374, 2375, 5, 190, 0, 0, 2375, 2376, 5, 200, 0, 0, 2376, 2378, 3, 86, 43, 0, 2377, 2374, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2380, 5, 2, 0, 0, 2380, 2381, 5, 305, 0, 0, 2381, 2382, 5, 114, 0, 0, 2382, 2383, 5, 1, 0, 0, 2383, 2384, 5, 195, 0, 0, 2384, 2385, 5, 36, 0, 0, 2385, 2390, 3, 50, 25, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 3, 50, 25, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 2, 0, 0, 2394, 2396, 1, 0, 0, 0, 2395, 2397, 3, 194, 97, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2775, 1, 0, 0, 0, 2398, 2400, 3, 166, 83, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 3, 274, 137, 0, 2402, 2406, 5, 1, 0, 0, 2403, 2404, 3, 298, 149, 0, 2404, 2405, 5, 4, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2403, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2409, 5, 320, 0, 0, 2409, 2411, 5, 2, 0, 0, 2410, 2412, 3, 194, 97, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2415, 3, 198, 99, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2775, 1, 0, 0, 0, 2416, 2418, 3, 166, 83, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2420, 3, 274, 137, 0, 2420, 2432, 5, 1, 0, 0, 2421, 2423, 3, 70, 35, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2429, 3, 138, 69, 0, 2425, 2426, 5, 3, 0, 0, 2426, 2428, 3, 138, 69, 0, 2427, 2425, 1, 0, 0, 0, 2428, 2431, 1, 0, 0, 0, 2429, 2427, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2422, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2444, 1, 0, 0, 0, 2434, 2435, 5, 195, 0, 0, 2435, 2436, 5, 36, 0, 0, 2436, 2441, 3, 50, 25, 0, 2437, 2438, 5, 3, 0, 0, 2438, 2440, 3, 50, 25, 0, 2439, 2437, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2434, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 5, 2, 0, 0, 2447, 2449, 3, 194, 97, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2454, 1, 0, 0, 0, 2450, 2452, 3, 168, 84, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 3, 198, 99, 0, 2454, 2451, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2775, 1, 0, 0, 0, 2456, 2457, 3, 298, 149, 0, 2457, 2458, 3, 198, 99, 0, 2458, 2775, 1, 0, 0, 0, 2459, 2460, 3, 298, 149, 0, 2460, 2461, 5, 7, 0, 0, 2461, 2462, 3, 138, 69, 0, 2462, 2775, 1, 0, 0, 0, 2463, 2472, 5, 1, 0, 0, 2464, 2469, 3, 298, 149, 0, 2465, 2466, 5, 3, 0, 0, 2466, 2468, 3, 298, 149, 0, 2467, 2465, 1, 0, 0, 0, 2468, 2471, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2473, 1, 0, 0, 0, 2471, 2469, 1, 0, 0, 0, 2472, 2464, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 5, 2, 0, 0, 2475, 2476, 5, 7, 0, 0, 2476, 2775, 3, 138, 69, 0, 2477, 2478, 5, 1, 0, 0, 2478, 2479, 3, 22, 11, 0, 2479, 2480, 5, 2, 0, 0, 2480, 2775, 1, 0, 0, 0, 2481, 2482, 5, 94, 0, 0, 2482, 2483, 5, 1, 0, 0, 2483, 2484, 3, 22, 11, 0, 2484, 2485, 5, 2, 0, 0, 2485, 2775, 1, 0, 0, 0, 2486, 2487, 5, 40, 0, 0, 2487, 2489, 3, 138, 69, 0, 2488, 2490, 3, 192, 96, 0, 2489, 2488, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2494, 5, 84, 0, 0, 2494, 2496, 3, 138, 69, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 5, 88, 0, 0, 2498, 2775, 1, 0, 0, 0, 2499, 2501, 5, 40, 0, 0, 2500, 2502, 3, 192, 96, 0, 2501, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2507, 1, 0, 0, 0, 2505, 2506, 5, 84, 0, 0, 2506, 2508, 3, 138, 69, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2510, 5, 88, 0, 0, 2510, 2775, 1, 0, 0, 0, 2511, 2512, 5, 41, 0, 0, 2512, 2513, 5, 1, 0, 0, 2513, 2514, 3, 138, 69, 0, 2514, 2515, 5, 28, 0, 0, 2515, 2516, 3, 186, 93, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2775, 1, 0, 0, 0, 2518, 2519, 5, 275, 0, 0, 2519, 2520, 5, 1, 0, 0, 2520, 2521, 3, 138, 69, 0, 2521, 2522, 5, 28, 0, 0, 2522, 2523, 3, 186, 93, 0, 2523, 2524, 5, 2, 0, 0, 2524, 2775, 1, 0, 0, 0, 2525, 2526, 5, 27, 0, 0, 2526, 2535, 5, 8, 0, 0, 2527, 2532, 3, 138, 69, 0, 2528, 2529, 5, 3, 0, 0, 2529, 2531, 3, 138, 69, 0, 2530, 2528, 1, 0, 0, 0, 2531, 2534, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2536, 1, 0, 0, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2527, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2775, 5, 9, 0, 0, 2538, 2775, 3, 280, 140, 0, 2539, 2775, 5, 58, 0, 0, 2540, 2544, 5, 62, 0, 0, 2541, 2542, 5, 1, 0, 0, 2542, 2543, 5, 329, 0, 0, 2543, 2545, 5, 2, 0, 0, 2544, 2541, 1, 0, 0, 0, 2544, 2545, 1, 0, 0, 0, 2545, 2775, 1, 0, 0, 0, 2546, 2550, 5, 63, 0, 0, 2547, 2548, 5, 1, 0, 0, 2548, 2549, 5, 329, 0, 0, 2549, 2551, 5, 2, 0, 0, 2550, 2547, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2775, 1, 0, 0, 0, 2552, 2556, 5, 158, 0, 0, 2553, 2554, 5, 1, 0, 0, 2554, 2555, 5, 329, 0, 0, 2555, 2557, 5, 2, 0, 0, 2556, 2553, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2775, 1, 0, 0, 0, 2558, 2562, 5, 159, 0, 0, 2559, 2560, 5, 1, 0, 0, 2560, 2561, 5, 329, 0, 0, 2561, 2563, 5, 2, 0, 0, 2562, 2559, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2775, 1, 0, 0, 0, 2564, 2775, 5, 64, 0, 0, 2565, 2775, 5, 57, 0, 0, 2566, 2775, 5, 61, 0, 0, 2567, 2775, 5, 59, 0, 0, 2568, 2569, 5, 272, 0, 0, 2569, 2577, 5, 1, 0, 0, 2570, 2572, 3, 84, 42, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 144, 72, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2578, 5, 105, 0, 0, 2577, 2571, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2580, 3, 144, 72, 0, 2580, 2581, 5, 2, 0, 0, 2581, 2775, 1, 0, 0, 0, 2582, 2583, 5, 272, 0, 0, 2583, 2584, 5, 1, 0, 0, 2584, 2585, 3, 144, 72, 0, 2585, 2586, 5, 3, 0, 0, 2586, 2587, 3, 144, 72, 0, 2587, 2588, 5, 2, 0, 0, 2588, 2775, 1, 0, 0, 0, 2589, 2590, 5, 258, 0, 0, 2590, 2591, 5, 1, 0, 0, 2591, 2592, 3, 144, 72, 0, 2592, 2593, 5, 105, 0, 0, 2593, 2596, 3, 144, 72, 0, 2594, 2595, 5, 103, 0, 0, 2595, 2597, 3, 144, 72, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 5, 2, 0, 0, 2599, 2775, 1, 0, 0, 0, 2600, 2601, 5, 181, 0, 0, 2601, 2602, 5, 1, 0, 0, 2602, 2605, 3, 144, 72, 0, 2603, 2604, 5, 3, 0, 0, 2604, 2606, 3, 184, 92, 0, 2605, 2603, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2775, 1, 0, 0, 0, 2609, 2610, 5, 96, 0, 0, 2610, 2611, 5, 1, 0, 0, 2611, 2612, 3, 298, 149, 0, 2612, 2613, 5, 105, 0, 0, 2613, 2614, 3, 144, 72, 0, 2614, 2615, 5, 2, 0, 0, 2615, 2775, 1, 0, 0, 0, 2616, 2617, 5, 1, 0, 0, 2617, 2618, 3, 138, 69, 0, 2618, 2619, 5, 2, 0, 0, 2619, 2775, 1, 0, 0, 0, 2620, 2621, 5, 115, 0, 0, 2621, 2630, 5, 1, 0, 0, 2622, 2627, 3, 284, 142, 0, 2623, 2624, 5, 3, 0, 0, 2624, 2626, 3, 284, 142, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2631, 1, 0, 0, 0, 2629, 2627, 1, 0, 0, 0, 2630, 2622, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2775, 5, 2, 0, 0, 2633, 2634, 5, 139, 0, 0, 2634, 2635, 5, 1, 0, 0, 2635, 2640, 3, 148, 74, 0, 2636, 2637, 3, 156, 78, 0, 2637, 2638, 5, 190, 0, 0, 2638, 2639, 5, 89, 0, 0, 2639, 2641, 1, 0, 0, 0, 2640, 2636, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 5, 2, 0, 0, 2643, 2775, 1, 0, 0, 0, 2644, 2645, 5, 143, 0, 0, 2645, 2646, 5, 1, 0, 0, 2646, 2649, 3, 148, 74, 0, 2647, 2648, 5, 231, 0, 0, 2648, 2650, 3, 186, 93, 0, 2649, 2647, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2655, 1, 0, 0, 0, 2651, 2652, 3, 158, 79, 0, 2652, 2653, 5, 190, 0, 0, 2653, 2654, 5, 85, 0, 0, 2654, 2656, 1, 0, 0, 0, 2655, 2651, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2661, 1, 0, 0, 0, 2657, 2658, 3, 158, 79, 0, 2658, 2659, 5, 190, 0, 0, 2659, 2660, 5, 89, 0, 0, 2660, 2662, 1, 0, 0, 0, 2661, 2657, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 5, 2, 0, 0, 2664, 2775, 1, 0, 0, 0, 2665, 2666, 5, 141, 0, 0, 2666, 2667, 5, 1, 0, 0, 2667, 2674, 3, 148, 74, 0, 2668, 2669, 5, 231, 0, 0, 2669, 2672, 3, 186, 93, 0, 2670, 2671, 5, 104, 0, 0, 2671, 2673, 3, 152, 76, 0, 2672, 2670, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2668, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2679, 1, 0, 0, 0, 2676, 2677, 3, 160, 80, 0, 2677, 2678, 5, 308, 0, 0, 2678, 2680, 1, 0, 0, 0, 2679, 2676, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2688, 1, 0, 0, 0, 2681, 2682, 7, 15, 0, 0, 2682, 2686, 5, 218, 0, 0, 2683, 2684, 5, 190, 0, 0, 2684, 2685, 5, 242, 0, 0, 2685, 2687, 5, 264, 0, 0, 2686, 2683, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2689, 1, 0, 0, 0, 2688, 2681, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2694, 1, 0, 0, 0, 2690, 2691, 3, 162, 81, 0, 2691, 2692, 5, 190, 0, 0, 2692, 2693, 5, 85, 0, 0, 2693, 2695, 1, 0, 0, 0, 2694, 2690, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2700, 1, 0, 0, 0, 2696, 2697, 3, 162, 81, 0, 2697, 2698, 5, 190, 0, 0, 2698, 2699, 5, 89, 0, 0, 2699, 2701, 1, 0, 0, 0, 2700, 2696, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2703, 5, 2, 0, 0, 2703, 2775, 1, 0, 0, 0, 2704, 2705, 5, 140, 0, 0, 2705, 2734, 5, 1, 0, 0, 2706, 2711, 3, 164, 82, 0, 2707, 2708, 5, 3, 0, 0, 2708, 2710, 3, 164, 82, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2713, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2720, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2714, 2715, 5, 183, 0, 0, 2715, 2716, 5, 190, 0, 0, 2716, 2721, 5, 183, 0, 0, 2717, 2718, 5, 18, 0, 0, 2718, 2719, 5, 190, 0, 0, 2719, 2721, 5, 183, 0, 0, 2720, 2714, 1, 0, 0, 0, 2720, 2717, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2732, 1, 0, 0, 0, 2722, 2723, 5, 304, 0, 0, 2723, 2725, 5, 282, 0, 0, 2724, 2726, 5, 146, 0, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2733, 1, 0, 0, 0, 2727, 2728, 5, 306, 0, 0, 2728, 2730, 5, 282, 0, 0, 2729, 2731, 5, 146, 0, 0, 2730, 2729, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2733, 1, 0, 0, 0, 2732, 2722, 1, 0, 0, 0, 2732, 2727, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2735, 1, 0, 0, 0, 2734, 2706, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2742, 1, 0, 0, 0, 2736, 2737, 5, 231, 0, 0, 2737, 2740, 3, 186, 93, 0, 2738, 2739, 5, 104, 0, 0, 2739, 2741, 3, 152, 76, 0, 2740, 2738, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2743, 1, 0, 0, 0, 2742, 2736, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2775, 5, 2, 0, 0, 2745, 2746, 5, 138, 0, 0, 2746, 2763, 5, 1, 0, 0, 2747, 2752, 3, 150, 75, 0, 2748, 2749, 5, 3, 0, 0, 2749, 2751, 3, 150, 75, 0, 2750, 2748, 1, 0, 0, 0, 2751, 2754, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2761, 1, 0, 0, 0, 2754, 2752, 1, 0, 0, 0, 2755, 2756, 5, 183, 0, 0, 2756, 2757, 5, 190, 0, 0, 2757, 2762, 5, 183, 0, 0, 2758, 2759, 5, 18, 0, 0, 2759, 2760, 5, 190, 0, 0, 2760, 2762, 5, 183, 0, 0, 2761, 2755, 1, 0, 0, 0, 2761, 2758, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2764, 1, 0, 0, 0, 2763, 2747, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2771, 1, 0, 0, 0, 2765, 2766, 5, 231, 0, 0, 2766, 2769, 3, 186, 93, 0, 2767, 2768, 5, 104, 0, 0, 2768, 2770, 3, 152, 76, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2765, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 5, 2, 0, 0, 2774, 2321, 1, 0, 0, 0, 2774, 2323, 1, 0, 0, 0, 2774, 2324, 1, 0, 0, 0, 2774, 2327, 1, 0, 0, 0, 2774, 2330, 1, 0, 0, 0, 2774, 2331, 1, 0, 0, 0, 2774, 2332, 1, 0, 0, 0, 2774, 2333, 1, 0, 0, 0, 2774, 2334, 1, 0, 0, 0, 2774, 2335, 1, 0, 0, 0, 2774, 2342, 1, 0, 0, 0, 2774, 2352, 1, 0, 0, 0, 2774, 2364, 1, 0, 0, 0, 2774, 2399, 1, 0, 0, 0, 2774, 2417, 1, 0, 0, 0, 2774, 2456, 1, 0, 0, 0, 2774, 2459, 1, 0, 0, 0, 2774, 2463, 1, 0, 0, 0, 2774, 2477, 1, 0, 0, 0, 2774, 2481, 1, 0, 0, 0, 2774, 2486, 1, 0, 0, 0, 2774, 2499, 1, 0, 0, 0, 2774, 2511, 1, 0, 0, 0, 2774, 2518, 1, 0, 0, 0, 2774, 2525, 1, 0, 0, 0, 2774, 2538, 1, 0, 0, 0, 2774, 2539, 1, 0, 0, 0, 2774, 2540, 1, 0, 0, 0, 2774, 2546, 1, 0, 0, 0, 2774, 2552, 1, 0, 0, 0, 2774, 2558, 1, 0, 0, 0, 2774, 2564, 1, 0, 0, 0, 2774, 2565, 1, 0, 0, 0, 2774, 2566, 1, 0, 0, 0, 2774, 2567, 1, 0, 0, 0, 2774, 2568, 1, 0, 0, 0, 2774, 2582, 1, 0, 0, 0, 2774, 2589, 1, 0, 0, 0, 2774, 2600, 1, 0, 0, 0, 2774, 2609, 1, 0, 0, 0, 2774, 2616, 1, 0, 0, 0, 2774, 2620, 1, 0, 0, 0, 2774, 2633, 1, 0, 0, 0, 2774, 2644, 1, 0, 0, 0, 2774, 2665, 1, 0, 0, 0, 2774, 2704, 1, 0, 0, 0, 2774, 2745, 1, 0, 0, 0, 2775, 2786, 1, 0, 0, 0, 2776, 2777, 10, 24, 0, 0, 2777, 2778, 5, 8, 0, 0, 2778, 2779, 3, 144, 72, 0, 2779, 2780, 5, 9, 0, 0, 2780, 2785, 1, 0, 0, 0, 2781, 2782, 10, 22, 0, 0, 2782, 2783, 5, 4, 0, 0, 2783, 2785, 3, 298, 149, 0, 2784, 2776, 1, 0, 0, 0, 2784, 2781, 1, 0, 0, 0, 2785, 2788, 1, 0, 0, 0, 2786, 2784, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 147, 1, 0, 0, 0, 2788, 2786, 1, 0, 0, 0, 2789, 2790, 3, 150, 75, 0, 2790, 2791, 5, 3, 0, 0, 2791, 2794, 3, 170, 85, 0, 2792, 2793, 5, 28, 0, 0, 2793, 2795, 3, 298, 149, 0, 2794, 2792, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2805, 1, 0, 0, 0, 2796, 2797, 5, 203, 0, 0, 2797, 2802, 3, 154, 77, 0, 2798, 2799, 5, 3, 0, 0, 2799, 2801, 3, 154, 77, 0, 2800, 2798, 1, 0, 0, 0, 2801, 2804, 1, 0, 0, 0, 2802, 2800, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2806, 1, 0, 0, 0, 2804, 2802, 1, 0, 0, 0, 2805, 2796, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 149, 1, 0, 0, 0, 2807, 2810, 3, 138, 69, 0, 2808, 2809, 5, 104, 0, 0, 2809, 2811, 3, 152, 76, 0, 2810, 2808, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 151, 1, 0, 0, 0, 2812, 2815, 5, 137, 0, 0, 2813, 2814, 5, 87, 0, 0, 2814, 2816, 7, 20, 0, 0, 2815, 2813, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 153, 1, 0, 0, 0, 2817, 2818, 3, 150, 75, 0, 2818, 2819, 5, 28, 0, 0, 2819, 2820, 3, 298, 149, 0, 2820, 155, 1, 0, 0, 0, 2821, 2822, 7, 21, 0, 0, 2822, 157, 1, 0, 0, 0, 2823, 2828, 5, 89, 0, 0, 2824, 2828, 5, 183, 0, 0, 2825, 2826, 5, 70, 0, 0, 2826, 2828, 3, 138, 69, 0, 2827, 2823, 1, 0, 0, 0, 2827, 2824, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 159, 1, 0, 0, 0, 2829, 2831, 5, 306, 0, 0, 2830, 2832, 5, 27, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2841, 1, 0, 0, 0, 2833, 2835, 5, 304, 0, 0, 2834, 2836, 7, 22, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2839, 5, 27, 0, 0, 2838, 2837, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2841, 1, 0, 0, 0, 2840, 2829, 1, 0, 0, 0, 2840, 2833, 1, 0, 0, 0, 2841, 161, 1, 0, 0, 0, 2842, 2849, 5, 89, 0, 0, 2843, 2849, 5, 183, 0, 0, 2844, 2845, 5, 85, 0, 0, 2845, 2849, 5, 27, 0, 0, 2846, 2847, 5, 85, 0, 0, 2847, 2849, 5, 186, 0, 0, 2848, 2842, 1, 0, 0, 0, 2848, 2843, 1, 0, 0, 0, 2848, 2844, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2849, 163, 1, 0, 0, 0, 2850, 2852, 5, 145, 0, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2854, 3, 138, 69, 0, 2854, 2855, 5, 295, 0, 0, 2855, 2856, 3, 150, 75, 0, 2856, 2862, 1, 0, 0, 0, 2857, 2858, 3, 138, 69, 0, 2858, 2859, 5, 10, 0, 0, 2859, 2860, 3, 150, 75, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2851, 1, 0, 0, 0, 2861, 2857, 1, 0, 0, 0, 2862, 165, 1, 0, 0, 0, 2863, 2864, 7, 23, 0, 0, 2864, 167, 1, 0, 0, 0, 2865, 2866, 5, 120, 0, 0, 2866, 2870, 5, 185, 0, 0, 2867, 2868, 5, 228, 0, 0, 2868, 2870, 5, 185, 0, 0, 2869, 2865, 1, 0, 0, 0, 2869, 2867, 1, 0, 0, 0, 2870, 169, 1, 0, 0, 0, 2871, 2878, 5, 326, 0, 0, 2872, 2875, 5, 327, 0, 0, 2873, 2874, 5, 277, 0, 0, 2874, 2876, 5, 326, 0, 0, 2875, 2873, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2878, 1, 0, 0, 0, 2877, 2871, 1, 0, 0, 0, 2877, 2872, 1, 0, 0, 0, 2878, 171, 1, 0, 0, 0, 2879, 2880, 5, 267, 0, 0, 2880, 2881, 5, 311, 0, 0, 2881, 2886, 3, 180, 90, 0, 2882, 2883, 5, 267, 0, 0, 2883, 2884, 5, 311, 0, 0, 2884, 2886, 3, 170, 85, 0, 2885, 2879, 1, 0, 0, 0, 2885, 2882, 1, 0, 0, 0, 2886, 173, 1, 0, 0, 0, 2887, 2888, 7, 24, 0, 0, 2888, 175, 1, 0, 0, 0, 2889, 2890, 7, 25, 0, 0, 2890, 177, 1, 0, 0, 0, 2891, 2892, 7, 26, 0, 0, 2892, 179, 1, 0, 0, 0, 2893, 2895, 5, 129, 0, 0, 2894, 2896, 7, 18, 0, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2898, 3, 170, 85, 0, 2898, 2901, 3, 182, 91, 0, 2899, 2900, 5, 269, 0, 0, 2900, 2902, 3, 182, 91, 0, 2901, 2899, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 181, 1, 0, 0, 0, 2903, 2904, 7, 27, 0, 0, 2904, 183, 1, 0, 0, 0, 2905, 2906, 7, 28, 0, 0, 2906, 185, 1, 0, 0, 0, 2907, 2908, 6, 93, -1, 0, 2908, 2909, 5, 239, 0, 0, 2909, 2910, 5, 1, 0, 0, 2910, 2915, 3, 188, 94, 0, 2911, 2912, 5, 3, 0, 0, 2912, 2914, 3, 188, 94, 0, 2913, 2911, 1, 0, 0, 0, 2914, 2917, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2918, 1, 0, 0, 0, 2917, 2915, 1, 0, 0, 0, 2918, 2919, 5, 2, 0, 0, 2919, 2999, 1, 0, 0, 0, 2920, 2921, 5, 129, 0, 0, 2921, 2924, 3, 182, 91, 0, 2922, 2923, 5, 269, 0, 0, 2923, 2925, 3, 182, 91, 0, 2924, 2922, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2999, 1, 0, 0, 0, 2926, 2931, 5, 268, 0, 0, 2927, 2928, 5, 1, 0, 0, 2928, 2929, 3, 190, 95, 0, 2929, 2930, 5, 2, 0, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2927, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2936, 1, 0, 0, 0, 2933, 2934, 5, 306, 0, 0, 2934, 2935, 5, 267, 0, 0, 2935, 2937, 5, 311, 0, 0, 2936, 2933, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2999, 1, 0, 0, 0, 2938, 2943, 5, 268, 0, 0, 2939, 2940, 5, 1, 0, 0, 2940, 2941, 3, 190, 95, 0, 2941, 2942, 5, 2, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2939, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2946, 5, 304, 0, 0, 2946, 2947, 5, 267, 0, 0, 2947, 2999, 5, 311, 0, 0, 2948, 2953, 5, 267, 0, 0, 2949, 2950, 5, 1, 0, 0, 2950, 2951, 3, 190, 95, 0, 2951, 2952, 5, 2, 0, 0, 2952, 2954, 1, 0, 0, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2958, 1, 0, 0, 0, 2955, 2956, 5, 306, 0, 0, 2956, 2957, 5, 267, 0, 0, 2957, 2959, 5, 311, 0, 0, 2958, 2955, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2999, 1, 0, 0, 0, 2960, 2965, 5, 267, 0, 0, 2961, 2962, 5, 1, 0, 0, 2962, 2963, 3, 190, 95, 0, 2963, 2964, 5, 2, 0, 0, 2964, 2966, 1, 0, 0, 0, 2965, 2961, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2968, 5, 304, 0, 0, 2968, 2969, 5, 267, 0, 0, 2969, 2999, 5, 311, 0, 0, 2970, 2971, 5, 82, 0, 0, 2971, 2999, 5, 213, 0, 0, 2972, 2973, 5, 27, 0, 0, 2973, 2974, 5, 314, 0, 0, 2974, 2975, 3, 186, 93, 0, 2975, 2976, 5, 316, 0, 0, 2976, 2999, 1, 0, 0, 0, 2977, 2978, 5, 162, 0, 0, 2978, 2979, 5, 314, 0, 0, 2979, 2980, 3, 186, 93, 0, 2980, 2981, 5, 3, 0, 0, 2981, 2982, 3, 186, 93, 0, 2982, 2983, 5, 316, 0, 0, 2983, 2999, 1, 0, 0, 0, 2984, 2996, 3, 298, 149, 0, 2985, 2986, 5, 1, 0, 0, 2986, 2991, 3, 190, 95, 0, 2987, 2988, 5, 3, 0, 0, 2988, 2990, 3, 190, 95, 0, 2989, 2987, 1, 0, 0, 0, 2990, 2993, 1, 0, 0, 0, 2991, 2989, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2991, 1, 0, 0, 0, 2994, 2995, 5, 2, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2985, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2999, 1, 0, 0, 0, 2998, 2907, 1, 0, 0, 0, 2998, 2920, 1, 0, 0, 0, 2998, 2926, 1, 0, 0, 0, 2998, 2938, 1, 0, 0, 0, 2998, 2948, 1, 0, 0, 0, 2998, 2960, 1, 0, 0, 0, 2998, 2970, 1, 0, 0, 0, 2998, 2972, 1, 0, 0, 0, 2998, 2977, 1, 0, 0, 0, 2998, 2984, 1, 0, 0, 0, 2999, 3009, 1, 0, 0, 0, 3000, 3001, 10, 2, 0, 0, 3001, 3005, 5, 27, 0, 0, 3002, 3003, 5, 8, 0, 0, 3003, 3004, 5, 329, 0, 0, 3004, 3006, 5, 9, 0, 0, 3005, 3002, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3008, 1, 0, 0, 0, 3007, 3000, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 187, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3012, 3017, 3, 186, 93, 0, 3013, 3014, 3, 298, 149, 0, 3014, 3015, 3, 186, 93, 0, 3015, 3017, 1, 0, 0, 0, 3016, 3012, 1, 0, 0, 0, 3016, 3013, 1, 0, 0, 0, 3017, 189, 1, 0, 0, 0, 3018, 3021, 5, 329, 0, 0, 3019, 3021, 3, 186, 93, 0, 3020, 3018, 1, 0, 0, 0, 3020, 3019, 1, 0, 0, 0, 3021, 191, 1, 0, 0, 0, 3022, 3023, 5, 300, 0, 0, 3023, 3024, 3, 138, 69, 0, 3024, 3025, 5, 265, 0, 0, 3025, 3026, 3, 138, 69, 0, 3026, 193, 1, 0, 0, 0, 3027, 3028, 5, 99, 0, 0, 3028, 3029, 5, 1, 0, 0, 3029, 3030, 3, 54, 27, 0, 3030, 3031, 5, 2, 0, 0, 3031, 195, 1, 0, 0, 0, 3032, 3033, 5, 300, 0, 0, 3033, 3036, 5, 164, 0, 0, 3034, 3035, 5, 25, 0, 0, 3035, 3037, 3, 138, 69, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3039, 5, 265, 0, 0, 3039, 3040, 5, 287, 0, 0, 3040, 3041, 5, 251, 0, 0, 3041, 3042, 3, 298, 149, 0, 3042, 3043, 5, 312, 0, 0, 3043, 3051, 3, 138, 69, 0, 3044, 3045, 5, 3, 0, 0, 3045, 3046, 3, 298, 149, 0, 3046, 3047, 5, 312, 0, 0, 3047, 3048, 3, 138, 69, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3044, 1, 0, 0, 0, 3050, 3053, 1, 0, 0, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3097, 1, 0, 0, 0, 3053, 3051, 1, 0, 0, 0, 3054, 3055, 5, 300, 0, 0, 3055, 3058, 5, 164, 0, 0, 3056, 3057, 5, 25, 0, 0, 3057, 3059, 3, 138, 69, 0, 3058, 3056, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3061, 5, 265, 0, 0, 3061, 3097, 5, 73, 0, 0, 3062, 3063, 5, 300, 0, 0, 3063, 3064, 5, 182, 0, 0, 3064, 3067, 5, 164, 0, 0, 3065, 3066, 5, 25, 0, 0, 3066, 3068, 3, 138, 69, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 5, 265, 0, 0, 3070, 3082, 5, 127, 0, 0, 3071, 3072, 5, 1, 0, 0, 3072, 3077, 3, 298, 149, 0, 3073, 3074, 5, 3, 0, 0, 3074, 3076, 3, 298, 149, 0, 3075, 3073, 1, 0, 0, 0, 3076, 3079, 1, 0, 0, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3077, 1, 0, 0, 0, 3080, 3081, 5, 2, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3071, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3085, 5, 296, 0, 0, 3085, 3086, 5, 1, 0, 0, 3086, 3091, 3, 138, 69, 0, 3087, 3088, 5, 3, 0, 0, 3088, 3090, 3, 138, 69, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3093, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3094, 1, 0, 0, 0, 3093, 3091, 1, 0, 0, 0, 3094, 3095, 5, 2, 0, 0, 3095, 3097, 1, 0, 0, 0, 3096, 3032, 1, 0, 0, 0, 3096, 3054, 1, 0, 0, 0, 3096, 3062, 1, 0, 0, 0, 3097, 197, 1, 0, 0, 0, 3098, 3104, 5, 199, 0, 0, 3099, 3105, 3, 298, 149, 0, 3100, 3101, 5, 1, 0, 0, 3101, 3102, 3, 66, 33, 0, 3102, 3103, 5, 2, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3099, 1, 0, 0, 0, 3104, 3100, 1, 0, 0, 0, 3105, 199, 1, 0, 0, 0, 3106, 3107, 5, 168, 0, 0, 3107, 3112, 3, 92, 46, 0, 3108, 3109, 5, 3, 0, 0, 3109, 3111, 3, 92, 46, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3116, 1, 0, 0, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3106, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3121, 3, 202, 101, 0, 3118, 3119, 5, 21, 0, 0, 3119, 3120, 5, 163, 0, 0, 3120, 3122, 3, 98, 49, 0, 3121, 3118, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3124, 1, 0, 0, 0, 3123, 3125, 7, 13, 0, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3131, 1, 0, 0, 0, 3126, 3127, 5, 206, 0, 0, 3127, 3128, 5, 1, 0, 0, 3128, 3129, 3, 206, 103, 0, 3129, 3130, 5, 2, 0, 0, 3130, 3132, 1, 0, 0, 0, 3131, 3126, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3142, 1, 0, 0, 0, 3133, 3134, 5, 257, 0, 0, 3134, 3139, 3, 100, 50, 0, 3135, 3136, 5, 3, 0, 0, 3136, 3138, 3, 100, 50, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3141, 1, 0, 0, 0, 3139, 3137, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3143, 1, 0, 0, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3133, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3153, 1, 0, 0, 0, 3144, 3145, 5, 71, 0, 0, 3145, 3150, 3, 102, 51, 0, 3146, 3147, 5, 3, 0, 0, 3147, 3149, 3, 102, 51, 0, 3148, 3146, 1, 0, 0, 0, 3149, 3152, 1, 0, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3154, 1, 0, 0, 0, 3152, 3150, 1, 0, 0, 0, 3153, 3144, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 201, 1, 0, 0, 0, 3155, 3156, 5, 219, 0, 0, 3156, 3180, 3, 204, 102, 0, 3157, 3158, 5, 240, 0, 0, 3158, 3180, 3, 204, 102, 0, 3159, 3160, 5, 116, 0, 0, 3160, 3180, 3, 204, 102, 0, 3161, 3162, 5, 219, 0, 0, 3162, 3163, 5, 34, 0, 0, 3163, 3164, 3, 204, 102, 0, 3164, 3165, 5, 25, 0, 0, 3165, 3166, 3, 204, 102, 0, 3166, 3180, 1, 0, 0, 0, 3167, 3168, 5, 240, 0, 0, 3168, 3169, 5, 34, 0, 0, 3169, 3170, 3, 204, 102, 0, 3170, 3171, 5, 25, 0, 0, 3171, 3172, 3, 204, 102, 0, 3172, 3180, 1, 0, 0, 0, 3173, 3174, 5, 116, 0, 0, 3174, 3175, 5, 34, 0, 0, 3175, 3176, 3, 204, 102, 0, 3176, 3177, 5, 25, 0, 0, 3177, 3178, 3, 204, 102, 0, 3178, 3180, 1, 0, 0, 0, 3179, 3155, 1, 0, 0, 0, 3179, 3157, 1, 0, 0, 0, 3179, 3159, 1, 0, 0, 0, 3179, 3161, 1, 0, 0, 0, 3179, 3167, 1, 0, 0, 0, 3179, 3173, 1, 0, 0, 0, 3180, 203, 1, 0, 0, 0, 3181, 3182, 5, 278, 0, 0, 3182, 3191, 5, 212, 0, 0, 3183, 3184, 5, 278, 0, 0, 3184, 3191, 5, 102, 0, 0, 3185, 3186, 5, 56, 0, 0, 3186, 3191, 5, 239, 0, 0, 3187, 3188, 3, 138, 69, 0, 3188, 3189, 7, 29, 0, 0, 3189, 3191, 1, 0, 0, 0, 3190, 3181, 1, 0, 0, 0, 3190, 3183, 1, 0, 0, 0, 3190, 3185, 1, 0, 0, 0, 3190, 3187, 1, 0, 0, 0, 3191, 205, 1, 0, 0, 0, 3192, 3193, 6, 103, -1, 0, 3193, 3195, 3, 208, 104, 0, 3194, 3196, 3, 210, 105, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3204, 1, 0, 0, 0, 3197, 3198, 10, 2, 0, 0, 3198, 3203, 3, 206, 103, 3, 3199, 3200, 10, 1, 0, 0, 3200, 3201, 5, 11, 0, 0, 3201, 3203, 3, 206, 103, 2, 3202, 3197, 1, 0, 0, 0, 3202, 3199, 1, 0, 0, 0, 3203, 3206, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 207, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3207, 3233, 3, 298, 149, 0, 3208, 3209, 5, 1, 0, 0, 3209, 3233, 5, 2, 0, 0, 3210, 3211, 5, 209, 0, 0, 3211, 3212, 5, 1, 0, 0, 3212, 3217, 3, 206, 103, 0, 3213, 3214, 5, 3, 0, 0, 3214, 3216, 3, 206, 103, 0, 3215, 3213, 1, 0, 0, 0, 3216, 3219, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3220, 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3221, 5, 2, 0, 0, 3221, 3233, 1, 0, 0, 0, 3222, 3223, 5, 1, 0, 0, 3223, 3224, 3, 206, 103, 0, 3224, 3225, 5, 2, 0, 0, 3225, 3233, 1, 0, 0, 0, 3226, 3233, 5, 12, 0, 0, 3227, 3233, 5, 13, 0, 0, 3228, 3229, 5, 14, 0, 0, 3229, 3230, 3, 206, 103, 0, 3230, 3231, 5, 15, 0, 0, 3231, 3233, 1, 0, 0, 0, 3232, 3207, 1, 0, 0, 0, 3232, 3208, 1, 0, 0, 0, 3232, 3210, 1, 0, 0, 0, 3232, 3222, 1, 0, 0, 0, 3232, 3226, 1, 0, 0, 0, 3232, 3227, 1, 0, 0, 0, 3232, 3228, 1, 0, 0, 0, 3233, 209, 1, 0, 0, 0, 3234, 3236, 5, 320, 0, 0, 3235, 3237, 5, 324, 0, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3265, 1, 0, 0, 0, 3238, 3240, 5, 318, 0, 0, 3239, 3241, 5, 324, 0, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3265, 1, 0, 0, 0, 3242, 3244, 5, 324, 0, 0, 3243, 3245, 5, 324, 0, 0, 3244, 3243, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3265, 1, 0, 0, 0, 3246, 3247, 5, 16, 0, 0, 3247, 3248, 5, 329, 0, 0, 3248, 3250, 5, 17, 0, 0, 3249, 3251, 5, 324, 0, 0, 3250, 3249, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3265, 1, 0, 0, 0, 3252, 3254, 5, 16, 0, 0, 3253, 3255, 5, 329, 0, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 5, 3, 0, 0, 3257, 3259, 5, 329, 0, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 5, 17, 0, 0, 3261, 3263, 5, 324, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3234, 1, 0, 0, 0, 3264, 3238, 1, 0, 0, 0, 3264, 3242, 1, 0, 0, 0, 3264, 3246, 1, 0, 0, 0, 3264, 3252, 1, 0, 0, 0, 3265, 211, 1, 0, 0, 0, 3266, 3267, 3, 298, 149, 0, 3267, 3268, 5, 312, 0, 0, 3268, 3269, 3, 138, 69, 0, 3269, 213, 1, 0, 0, 0, 3270, 3271, 5, 104, 0, 0, 3271, 3275, 7, 30, 0, 0, 3272, 3273, 5, 276, 0, 0, 3273, 3275, 7, 31, 0, 0, 3274, 3270, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3275, 215, 1, 0, 0, 0, 3276, 3277, 5, 134, 0, 0, 3277, 3278, 5, 153, 0, 0, 3278, 3282, 3, 218, 109, 0, 3279, 3280, 5, 220, 0, 0, 3280, 3282, 7, 32, 0, 0, 3281, 3276, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 217, 1, 0, 0, 0, 3283, 3284, 5, 220, 0, 0, 3284, 3291, 5, 279, 0, 0, 3285, 3286, 5, 220, 0, 0, 3286, 3291, 5, 48, 0, 0, 3287, 3288, 5, 225, 0, 0, 3288, 3291, 5, 220, 0, 0, 3289, 3291, 5, 249, 0, 0, 3290, 3283, 1, 0, 0, 0, 3290, 3285, 1, 0, 0, 0, 3290, 3287, 1, 0, 0, 0, 3290, 3289, 1, 0, 0, 0, 3291, 219, 1, 0, 0, 0, 3292, 3298, 3, 138, 69, 0, 3293, 3294, 3, 298, 149, 0, 3294, 3295, 5, 6, 0, 0, 3295, 3296, 3, 138, 69, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3292, 1, 0, 0, 0, 3297, 3293, 1, 0, 0, 0, 3298, 221, 1, 0, 0, 0, 3299, 3300, 3, 298, 149, 0, 3300, 3301, 5, 4, 0, 0, 3301, 3302, 3, 298, 149, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3305, 3, 298, 149, 0, 3304, 3299, 1, 0, 0, 0, 3304, 3303, 1, 0, 0, 0, 3305, 223, 1, 0, 0, 0, 3306, 3311, 3, 222, 111, 0, 3307, 3308, 5, 3, 0, 0, 3308, 3310, 3, 222, 111, 0, 3309, 3307, 1, 0, 0, 0, 3310, 3313, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 225, 1, 0, 0, 0, 3313, 3311, 1, 0, 0, 0, 3314, 3315, 5, 107, 0, 0, 3315, 3316, 3, 228, 114, 0, 3316, 3320, 3, 234, 117, 0, 3317, 3319, 3, 236, 118, 0, 3318, 3317, 1, 0, 0, 0, 3319, 3322, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3324, 3, 238, 119, 0, 3324, 227, 1, 0, 0, 0, 3325, 3326, 3, 276, 138, 0, 3326, 3335, 5, 1, 0, 0, 3327, 3332, 3, 232, 116, 0, 3328, 3329, 5, 3, 0, 0, 3329, 3331, 3, 232, 116, 0, 3330, 3328, 1, 0, 0, 0, 3331, 3334, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, 0, 3335, 3327, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 5, 2, 0, 0, 3338, 229, 1, 0, 0, 0, 3339, 3340, 3, 274, 137, 0, 3340, 3349, 5, 1, 0, 0, 3341, 3346, 3, 232, 116, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3345, 3, 232, 116, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3348, 1, 0, 0, 0, 3346, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 1, 0, 0, 0, 3348, 3346, 1, 0, 0, 0, 3349, 3341, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3352, 5, 2, 0, 0, 3352, 231, 1, 0, 0, 0, 3353, 3355, 3, 298, 149, 0, 3354, 3353, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 3, 186, 93, 0, 3357, 233, 1, 0, 0, 0, 3358, 3359, 5, 232, 0, 0, 3359, 3360, 3, 186, 93, 0, 3360, 235, 1, 0, 0, 0, 3361, 3362, 5, 147, 0, 0, 3362, 3381, 3, 298, 149, 0, 3363, 3365, 5, 182, 0, 0, 3364, 3363, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3381, 5, 78, 0, 0, 3367, 3368, 5, 232, 0, 0, 3368, 3369, 5, 183, 0, 0, 3369, 3370, 5, 190, 0, 0, 3370, 3371, 5, 183, 0, 0, 3371, 3381, 5, 126, 0, 0, 3372, 3373, 5, 38, 0, 0, 3373, 3374, 5, 190, 0, 0, 3374, 3375, 5, 183, 0, 0, 3375, 3381, 5, 126, 0, 0, 3376, 3377, 5, 246, 0, 0, 3377, 3381, 7, 1, 0, 0, 3378, 3379, 5, 46, 0, 0, 3379, 3381, 3, 170, 85, 0, 3380, 3361, 1, 0, 0, 0, 3380, 3364, 1, 0, 0, 0, 3380, 3367, 1, 0, 0, 0, 3380, 3372, 1, 0, 0, 0, 3380, 3376, 1, 0, 0, 0, 3380, 3378, 1, 0, 0, 0, 3381, 237, 1, 0, 0, 0, 3382, 3383, 5, 230, 0, 0, 3383, 3482, 3, 144, 72, 0, 3384, 3385, 5, 251, 0, 0, 3385, 3386, 3, 298, 149, 0, 3386, 3387, 5, 312, 0, 0, 3387, 3388, 3, 138, 69, 0, 3388, 3482, 1, 0, 0, 0, 3389, 3390, 5, 40, 0, 0, 3390, 3392, 3, 138, 69, 0, 3391, 3393, 3, 240, 120, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3397, 1, 0, 0, 0, 3396, 3398, 3, 244, 122, 0, 3397, 3396, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 5, 88, 0, 0, 3400, 3401, 5, 40, 0, 0, 3401, 3482, 1, 0, 0, 0, 3402, 3404, 5, 40, 0, 0, 3403, 3405, 3, 240, 120, 0, 3404, 3403, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3404, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 244, 122, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 88, 0, 0, 3412, 3413, 5, 40, 0, 0, 3413, 3482, 1, 0, 0, 0, 3414, 3415, 5, 119, 0, 0, 3415, 3416, 3, 138, 69, 0, 3416, 3417, 5, 265, 0, 0, 3417, 3421, 3, 248, 124, 0, 3418, 3420, 3, 242, 121, 0, 3419, 3418, 1, 0, 0, 0, 3420, 3423, 1, 0, 0, 0, 3421, 3419, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3424, 3426, 3, 244, 122, 0, 3425, 3424, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3428, 5, 88, 0, 0, 3428, 3429, 5, 119, 0, 0, 3429, 3482, 1, 0, 0, 0, 3430, 3431, 5, 135, 0, 0, 3431, 3482, 3, 298, 149, 0, 3432, 3433, 5, 151, 0, 0, 3433, 3482, 3, 298, 149, 0, 3434, 3440, 5, 32, 0, 0, 3435, 3436, 3, 246, 123, 0, 3436, 3437, 5, 325, 0, 0, 3437, 3439, 1, 0, 0, 0, 3438, 3435, 1, 0, 0, 0, 3439, 3442, 1, 0, 0, 0, 3440, 3438, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3444, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3443, 3445, 3, 248, 124, 0, 3444, 3443, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3482, 5, 88, 0, 0, 3447, 3448, 3, 298, 149, 0, 3448, 3449, 5, 10, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3447, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3453, 5, 161, 0, 0, 3453, 3454, 3, 248, 124, 0, 3454, 3455, 5, 88, 0, 0, 3455, 3456, 5, 161, 0, 0, 3456, 3482, 1, 0, 0, 0, 3457, 3458, 3, 298, 149, 0, 3458, 3459, 5, 10, 0, 0, 3459, 3461, 1, 0, 0, 0, 3460, 3457, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 5, 302, 0, 0, 3463, 3464, 3, 138, 69, 0, 3464, 3465, 5, 81, 0, 0, 3465, 3466, 3, 248, 124, 0, 3466, 3467, 5, 88, 0, 0, 3467, 3468, 5, 302, 0, 0, 3468, 3482, 1, 0, 0, 0, 3469, 3470, 3, 298, 149, 0, 3470, 3471, 5, 10, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3469, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3475, 5, 224, 0, 0, 3475, 3476, 3, 248, 124, 0, 3476, 3477, 5, 286, 0, 0, 3477, 3478, 3, 138, 69, 0, 3478, 3479, 5, 88, 0, 0, 3479, 3480, 5, 224, 0, 0, 3480, 3482, 1, 0, 0, 0, 3481, 3382, 1, 0, 0, 0, 3481, 3384, 1, 0, 0, 0, 3481, 3389, 1, 0, 0, 0, 3481, 3402, 1, 0, 0, 0, 3481, 3414, 1, 0, 0, 0, 3481, 3430, 1, 0, 0, 0, 3481, 3432, 1, 0, 0, 0, 3481, 3434, 1, 0, 0, 0, 3481, 3450, 1, 0, 0, 0, 3481, 3460, 1, 0, 0, 0, 3481, 3472, 1, 0, 0, 0, 3482, 239, 1, 0, 0, 0, 3483, 3484, 5, 300, 0, 0, 3484, 3485, 3, 138, 69, 0, 3485, 3486, 5, 265, 0, 0, 3486, 3487, 3, 248, 124, 0, 3487, 241, 1, 0, 0, 0, 3488, 3489, 5, 86, 0, 0, 3489, 3490, 3, 138, 69, 0, 3490, 3491, 5, 265, 0, 0, 3491, 3492, 3, 248, 124, 0, 3492, 243, 1, 0, 0, 0, 3493, 3494, 5, 84, 0, 0, 3494, 3495, 3, 248, 124, 0, 3495, 245, 1, 0, 0, 0, 3496, 3497, 5, 69, 0, 0, 3497, 3502, 3, 298, 149, 0, 3498, 3499, 5, 3, 0, 0, 3499, 3501, 3, 298, 149, 0, 3500, 3498, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3508, 3, 186, 93, 0, 3506, 3507, 5, 70, 0, 0, 3507, 3509, 3, 144, 72, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 247, 1, 0, 0, 0, 3510, 3511, 3, 238, 119, 0, 3511, 3512, 5, 325, 0, 0, 3512, 3514, 1, 0, 0, 0, 3513, 3510, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 249, 1, 0, 0, 0, 3517, 3524, 5, 53, 0, 0, 3518, 3524, 5, 248, 0, 0, 3519, 3524, 5, 73, 0, 0, 3520, 3524, 5, 127, 0, 0, 3521, 3524, 5, 287, 0, 0, 3522, 3524, 3, 298, 149, 0, 3523, 3517, 1, 0, 0, 0, 3523, 3518, 1, 0, 0, 0, 3523, 3519, 1, 0, 0, 0, 3523, 3520, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3522, 1, 0, 0, 0, 3524, 251, 1, 0, 0, 0, 3525, 3529, 5, 260, 0, 0, 3526, 3529, 5, 243, 0, 0, 3527, 3529, 3, 298, 149, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 253, 1, 0, 0, 0, 3530, 3532, 3, 252, 126, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3534, 3, 284, 142, 0, 3534, 255, 1, 0, 0, 0, 3535, 3538, 3, 258, 129, 0, 3536, 3538, 3, 262, 131, 0, 3537, 3535, 1, 0, 0, 0, 3537, 3536, 1, 0, 0, 0, 3538, 257, 1, 0, 0, 0, 3539, 3551, 3, 298, 149, 0, 3540, 3541, 3, 298, 149, 0, 3541, 3542, 5, 4, 0, 0, 3542, 3543, 3, 298, 149, 0, 3543, 3551, 1, 0, 0, 0, 3544, 3545, 3, 298, 149, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3547, 3, 298, 149, 0, 3547, 3548, 5, 4, 0, 0, 3548, 3549, 3, 298, 149, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3539, 1, 0, 0, 0, 3550, 3540, 1, 0, 0, 0, 3550, 3544, 1, 0, 0, 0, 3551, 259, 1, 0, 0, 0, 3552, 3564, 3, 298, 149, 0, 3553, 3554, 3, 298, 149, 0, 3554, 3555, 5, 4, 0, 0, 3555, 3556, 3, 298, 149, 0, 3556, 3564, 1, 0, 0, 0, 3557, 3558, 3, 298, 149, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3560, 3, 298, 149, 0, 3560, 3561, 5, 4, 0, 0, 3561, 3562, 3, 298, 149, 0, 3562, 3564, 1, 0, 0, 0, 3563, 3552, 1, 0, 0, 0, 3563, 3553, 1, 0, 0, 0, 3563, 3557, 1, 0, 0, 0, 3564, 261, 1, 0, 0, 0, 3565, 3577, 3, 298, 149, 0, 3566, 3567, 3, 298, 149, 0, 3567, 3568, 5, 4, 0, 0, 3568, 3569, 3, 298, 149, 0, 3569, 3577, 1, 0, 0, 0, 3570, 3571, 3, 298, 149, 0, 3571, 3572, 5, 4, 0, 0, 3572, 3573, 3, 298, 149, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3575, 3, 298, 149, 0, 3575, 3577, 1, 0, 0, 0, 3576, 3565, 1, 0, 0, 0, 3576, 3566, 1, 0, 0, 0, 3576, 3570, 1, 0, 0, 0, 3577, 263, 1, 0, 0, 0, 3578, 3590, 3, 298, 149, 0, 3579, 3580, 3, 298, 149, 0, 3580, 3581, 5, 4, 0, 0, 3581, 3582, 3, 298, 149, 0, 3582, 3590, 1, 0, 0, 0, 3583, 3584, 3, 298, 149, 0, 3584, 3585, 5, 4, 0, 0, 3585, 3586, 3, 298, 149, 0, 3586, 3587, 5, 4, 0, 0, 3587, 3588, 3, 298, 149, 0, 3588, 3590, 1, 0, 0, 0, 3589, 3578, 1, 0, 0, 0, 3589, 3579, 1, 0, 0, 0, 3589, 3583, 1, 0, 0, 0, 3590, 265, 1, 0, 0, 0, 3591, 3597, 3, 298, 149, 0, 3592, 3593, 3, 298, 149, 0, 3593, 3594, 5, 4, 0, 0, 3594, 3595, 3, 298, 149, 0, 3595, 3597, 1, 0, 0, 0, 3596, 3591, 1, 0, 0, 0, 3596, 3592, 1, 0, 0, 0, 3597, 267, 1, 0, 0, 0, 3598, 3604, 3, 298, 149, 0, 3599, 3600, 3, 298, 149, 0, 3600, 3601, 5, 4, 0, 0, 3601, 3602, 3, 298, 149, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3598, 1, 0, 0, 0, 3603, 3599, 1, 0, 0, 0, 3604, 269, 1, 0, 0, 0, 3605, 3606, 3, 298, 149, 0, 3606, 271, 1, 0, 0, 0, 3607, 3608, 3, 298, 149, 0, 3608, 273, 1, 0, 0, 0, 3609, 3610, 3, 284, 142, 0, 3610, 275, 1, 0, 0, 0, 3611, 3612, 3, 284, 142, 0, 3612, 277, 1, 0, 0, 0, 3613, 3616, 3, 284, 142, 0, 3614, 3616, 4, 139, 14, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3614, 1, 0, 0, 0, 3616, 279, 1, 0, 0, 0, 3617, 3618, 3, 284, 142, 0, 3618, 281, 1, 0, 0, 0, 3619, 3620, 3, 298, 149, 0, 3620, 283, 1, 0, 0, 0, 3621, 3626, 3, 298, 149, 0, 3622, 3623, 5, 4, 0, 0, 3623, 3625, 3, 298, 149, 0, 3624, 3622, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3624, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 285, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3629, 3630, 5, 103, 0, 0, 3630, 3631, 3, 288, 144, 0, 3631, 3632, 5, 28, 0, 0, 3632, 3633, 5, 187, 0, 0, 3633, 3634, 3, 144, 72, 0, 3634, 287, 1, 0, 0, 0, 3635, 3636, 7, 33, 0, 0, 3636, 289, 1, 0, 0, 0, 3637, 3641, 3, 292, 146, 0, 3638, 3641, 5, 64, 0, 0, 3639, 3641, 5, 60, 0, 0, 3640, 3637, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 291, 1, 0, 0, 0, 3642, 3648, 3, 298, 149, 0, 3643, 3644, 5, 289, 0, 0, 3644, 3648, 3, 298, 149, 0, 3645, 3646, 5, 235, 0, 0, 3646, 3648, 3, 298, 149, 0, 3647, 3642, 1, 0, 0, 0, 3647, 3643, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3648, 293, 1, 0, 0, 0, 3649, 3654, 3, 298, 149, 0, 3650, 3651, 5, 3, 0, 0, 3651, 3653, 3, 298, 149, 0, 3652, 3650, 1, 0, 0, 0, 3653, 3656, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 295, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 3665, 5, 53, 0, 0, 3658, 3665, 5, 248, 0, 0, 3659, 3665, 5, 73, 0, 0, 3660, 3665, 5, 127, 0, 0, 3661, 3665, 5, 287, 0, 0, 3662, 3665, 5, 93, 0, 0, 3663, 3665, 3, 298, 149, 0, 3664, 3657, 1, 0, 0, 0, 3664, 3658, 1, 0, 0, 0, 3664, 3659, 1, 0, 0, 0, 3664, 3660, 1, 0, 0, 0, 3664, 3661, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 297, 1, 0, 0, 0, 3666, 3672, 5, 332, 0, 0, 3667, 3672, 5, 334, 0, 0, 3668, 3672, 3, 304, 152, 0, 3669, 3672, 5, 335, 0, 0, 3670, 3672, 5, 333, 0, 0, 3671, 3666, 1, 0, 0, 0, 3671, 3667, 1, 0, 0, 0, 3671, 3668, 1, 0, 0, 0, 3671, 3669, 1, 0, 0, 0, 3671, 3670, 1, 0, 0, 0, 3672, 299, 1, 0, 0, 0, 3673, 3675, 5, 319, 0, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3686, 5, 330, 0, 0, 3677, 3679, 5, 319, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3686, 5, 331, 0, 0, 3681, 3683, 5, 319, 0, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3686, 5, 329, 0, 0, 3685, 3674, 1, 0, 0, 0, 3685, 3678, 1, 0, 0, 0, 3685, 3682, 1, 0, 0, 0, 3686, 301, 1, 0, 0, 0, 3687, 3690, 3, 298, 149, 0, 3688, 3690, 3, 170, 85, 0, 3689, 3687, 1, 0, 0, 0, 3689, 3688, 1, 0, 0, 0, 3690, 303, 1, 0, 0, 0, 3691, 3692, 7, 34, 0, 0, 3692, 305, 1, 0, 0, 0, 480, 309, 318, 322, 326, 330, 334, 347, 354, 358, 362, 368, 372, 379, 384, 388, 394, 398, 417, 423, 427, 431, 435, 443, 447, 450, 455, 461, 470, 476, 480, 486, 493, 501, 513, 522, 531, 537, 548, 556, 564, 571, 581, 588, 596, 611, 646, 649, 652, 655, 661, 666, 673, 679, 683, 687, 695, 701, 705, 709, 723, 731, 750, 775, 778, 785, 792, 801, 805, 812, 820, 829, 835, 840, 844, 852, 857, 866, 872, 879, 888, 894, 898, 904, 911, 916, 929, 934, 946, 950, 956, 965, 970, 976, 1004, 1010, 1012, 1018, 1024, 1026, 1034, 1036, 1046, 1048, 1063, 1068, 1075, 1085, 1091, 1093, 1101, 1103, 1128, 1131, 1135, 1139, 1157, 1160, 1171, 1174, 1190, 1200, 1204, 1210, 1213, 1222, 1234, 1237, 1247, 1251, 1257, 1264, 1269, 1275, 1279, 1283, 1289, 1300, 1309, 1319, 1322, 1327, 1329, 1336, 1342, 1344, 1348, 1358, 1364, 1367, 1369, 1381, 1388, 1392, 1395, 1399, 1403, 1410, 1419, 1422, 1425, 1430, 1434, 1442, 1445, 1451, 1458, 1469, 1472, 1482, 1485, 1496, 1501, 1509, 1512, 1516, 1520, 1529, 1538, 1541, 1550, 1553, 1556, 1560, 1571, 1574, 1577, 1584, 1587, 1606, 1610, 1614, 1618, 1622, 1626, 1628, 1639, 1644, 1653, 1662, 1665, 1671, 1683, 1686, 1695, 1698, 1706, 1709, 1712, 1717, 1720, 1732, 1735, 1743, 1748, 1752, 1754, 1756, 1771, 1773, 1784, 1805, 1815, 1826, 1830, 1832, 1840, 1851, 1862, 1869, 1882, 1888, 1914, 1929, 1934, 1938, 1948, 1954, 1960, 1968, 1973, 1980, 1982, 1988, 1994, 1998, 2003, 2012, 2017, 2031, 2041, 2044, 2053, 2058, 2063, 2065, 2074, 2077, 2085, 2088, 2095, 2100, 2111, 2114, 2118, 2120, 2128, 2138, 2144, 2146, 2153, 2157, 2159, 2166, 2170, 2172, 2174, 2183, 2194, 2198, 2208, 2218, 2222, 2230, 2232, 2245, 2253, 2262, 2268, 2276, 2282, 2286, 2291, 2296, 2302, 2316, 2318, 2348, 2359, 2367, 2372, 2377, 2390, 2396, 2399, 2406, 2411, 2414, 2417, 2422, 2429, 2432, 2441, 2444, 2448, 2451, 2454, 2469, 2472, 2491, 2495, 2503, 2507, 2532, 2535, 2544, 2550, 2556, 2562, 2571, 2574, 2577, 2596, 2605, 2627, 2630, 2640, 2649, 2655, 2661, 2672, 2674, 2679, 2686, 2688, 2694, 2700, 2711, 2720, 2725, 2730, 2732, 2734, 2740, 2742, 2752, 2761, 2763, 2769, 2771, 2774, 2784, 2786, 2794, 2802, 2805, 2810, 2815, 2827, 2831, 2835, 2838, 2840, 2848, 2851, 2861, 2869, 2875, 2877, 2885, 2895, 2901, 2915, 2924, 2931, 2936, 2943, 2953, 2958, 2965, 2991, 2996, 2998, 3005, 3009, 3016, 3020, 3036, 3051, 3058, 3067, 3077, 3082, 3091, 3096, 3104, 3112, 3115, 3121, 3124, 3131, 3139, 3142, 3150, 3153, 3179, 3190, 3195, 3202, 3204, 3217, 3232, 3236, 3240, 3244, 3250, 3254, 3258, 3262, 3264, 3274, 3281, 3290, 3297, 3304, 3311, 3320, 3332, 3335, 3346, 3349, 3354, 3364, 3380, 3394, 3397, 3406, 3409, 3421, 3425, 3440, 3444, 3450, 3460, 3472, 3481, 3502, 3508, 3515, 3523, 3528, 3531, 3537, 3550, 3563, 3576, 3589, 3596, 3603, 3615, 3626, 3640, 3647, 3654, 3664, 3671, 3674, 3678, 3682, 3685, 3689] \ No newline at end of file +[4, 1, 340, 3687, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 1, 0, 5, 0, 312, 8, 0, 10, 0, 12, 0, 315, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 323, 8, 2, 1, 3, 1, 3, 3, 3, 327, 8, 3, 1, 4, 1, 4, 3, 4, 331, 8, 4, 1, 5, 1, 5, 3, 5, 335, 8, 5, 1, 6, 1, 6, 3, 6, 339, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 352, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 3, 8, 363, 8, 8, 1, 8, 1, 8, 3, 8, 367, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 373, 8, 8, 1, 8, 1, 8, 3, 8, 377, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 384, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 3, 8, 393, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 399, 8, 8, 1, 8, 1, 8, 3, 8, 403, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 422, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 3, 8, 436, 8, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 3, 8, 455, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 460, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 466, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 473, 8, 8, 10, 8, 12, 8, 476, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 481, 8, 8, 1, 8, 1, 8, 3, 8, 485, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 491, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 498, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 506, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 527, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 536, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 553, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 561, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 569, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 576, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 586, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 593, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 601, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 616, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 649, 8, 8, 10, 8, 12, 8, 652, 9, 8, 3, 8, 654, 8, 8, 1, 8, 3, 8, 657, 8, 8, 1, 8, 3, 8, 660, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 666, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 671, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 3, 8, 688, 8, 8, 1, 8, 1, 8, 3, 8, 692, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 3, 8, 710, 8, 8, 1, 8, 1, 8, 3, 8, 714, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 728, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 736, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 755, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 778, 8, 8, 10, 8, 12, 8, 781, 9, 8, 3, 8, 783, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 790, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 797, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 806, 8, 8, 1, 8, 1, 8, 3, 8, 810, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 817, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 823, 8, 8, 10, 8, 12, 8, 826, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 832, 8, 8, 10, 8, 12, 8, 835, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 840, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 845, 8, 8, 1, 8, 1, 8, 3, 8, 849, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 855, 8, 8, 10, 8, 12, 8, 858, 9, 8, 1, 8, 1, 8, 3, 8, 862, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 871, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 877, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 882, 8, 8, 10, 8, 12, 8, 885, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 891, 8, 8, 10, 8, 12, 8, 894, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 899, 8, 8, 1, 8, 1, 8, 3, 8, 903, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 909, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 914, 8, 8, 10, 8, 12, 8, 917, 9, 8, 1, 8, 1, 8, 3, 8, 921, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 932, 8, 8, 10, 8, 12, 8, 935, 9, 8, 1, 8, 1, 8, 3, 8, 939, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 961, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 968, 8, 8, 10, 8, 12, 8, 971, 9, 8, 1, 8, 1, 8, 3, 8, 975, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 981, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1009, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1015, 8, 8, 3, 8, 1017, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1023, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1029, 8, 8, 3, 8, 1031, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1039, 8, 8, 3, 8, 1041, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1051, 8, 8, 3, 8, 1053, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1068, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1073, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1080, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1090, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1096, 8, 8, 3, 8, 1098, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1106, 8, 8, 3, 8, 1108, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1131, 8, 8, 10, 8, 12, 8, 1134, 9, 8, 3, 8, 1136, 8, 8, 1, 8, 1, 8, 3, 8, 1140, 8, 8, 1, 8, 1, 8, 3, 8, 1144, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1160, 8, 8, 10, 8, 12, 8, 1163, 9, 8, 3, 8, 1165, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1174, 8, 8, 10, 8, 12, 8, 1177, 9, 8, 3, 8, 1179, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1195, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1203, 8, 8, 10, 8, 12, 8, 1206, 9, 8, 1, 8, 3, 8, 1209, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1215, 8, 8, 1, 8, 3, 8, 1218, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1225, 8, 8, 11, 8, 12, 8, 1226, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1239, 8, 8, 1, 9, 3, 9, 1242, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1250, 8, 10, 10, 10, 12, 10, 1253, 9, 10, 1, 11, 3, 11, 1256, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1262, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1267, 8, 12, 10, 12, 12, 12, 1270, 9, 12, 1, 13, 1, 13, 3, 13, 1274, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1280, 8, 14, 1, 14, 1, 14, 3, 14, 1284, 8, 14, 1, 14, 1, 14, 3, 14, 1288, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1294, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1303, 8, 17, 10, 17, 12, 17, 1306, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1314, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1322, 8, 20, 10, 20, 12, 20, 1325, 9, 20, 3, 20, 1327, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1332, 8, 20, 3, 20, 1334, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1341, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1347, 8, 20, 3, 20, 1349, 8, 20, 1, 21, 1, 21, 3, 21, 1353, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1363, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1369, 8, 23, 1, 23, 5, 23, 1372, 8, 23, 10, 23, 12, 23, 1375, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1384, 8, 24, 10, 24, 12, 24, 1387, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1393, 8, 24, 1, 25, 1, 25, 3, 25, 1397, 8, 25, 1, 25, 3, 25, 1400, 8, 25, 1, 25, 1, 25, 3, 25, 1404, 8, 25, 1, 26, 1, 26, 3, 26, 1408, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1413, 8, 26, 10, 26, 12, 26, 1416, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1422, 8, 26, 10, 26, 12, 26, 1425, 9, 26, 3, 26, 1427, 8, 26, 1, 26, 3, 26, 1430, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 3, 26, 1438, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1444, 8, 26, 10, 26, 12, 26, 1447, 9, 26, 3, 26, 1449, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 3, 29, 1458, 8, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1463, 8, 29, 10, 29, 12, 29, 1466, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1471, 8, 30, 10, 30, 12, 30, 1474, 9, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1482, 8, 31, 10, 31, 12, 31, 1485, 9, 31, 3, 31, 1487, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1495, 8, 31, 10, 31, 12, 31, 1498, 9, 31, 3, 31, 1500, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1509, 8, 31, 10, 31, 12, 31, 1512, 9, 31, 1, 31, 1, 31, 3, 31, 1516, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1522, 8, 32, 10, 32, 12, 32, 1525, 9, 32, 3, 32, 1527, 8, 32, 1, 32, 1, 32, 3, 32, 1531, 8, 32, 1, 33, 1, 33, 3, 33, 1535, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 3, 35, 1544, 8, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1549, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 1556, 8, 35, 10, 35, 12, 35, 1559, 9, 35, 3, 35, 1561, 8, 35, 1, 35, 3, 35, 1564, 8, 35, 1, 36, 1, 36, 3, 36, 1568, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1579, 8, 38, 1, 38, 3, 38, 1582, 8, 38, 1, 38, 3, 38, 1585, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1592, 8, 38, 1, 38, 3, 38, 1595, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1614, 8, 39, 5, 39, 1616, 8, 39, 10, 39, 12, 39, 1619, 9, 39, 1, 40, 3, 40, 1622, 8, 40, 1, 40, 1, 40, 3, 40, 1626, 8, 40, 1, 40, 1, 40, 3, 40, 1630, 8, 40, 1, 40, 1, 40, 3, 40, 1634, 8, 40, 3, 40, 1636, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1645, 8, 41, 10, 41, 12, 41, 1648, 9, 41, 1, 41, 1, 41, 3, 41, 1652, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1661, 8, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1670, 8, 45, 1, 45, 3, 45, 1673, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1679, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1687, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1694, 8, 47, 10, 47, 12, 47, 1697, 9, 47, 3, 47, 1699, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1705, 8, 47, 10, 47, 12, 47, 1708, 9, 47, 3, 47, 1710, 8, 47, 1, 47, 3, 47, 1713, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1718, 8, 47, 1, 47, 3, 47, 1721, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1731, 8, 47, 10, 47, 12, 47, 1734, 9, 47, 3, 47, 1736, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1742, 8, 47, 10, 47, 12, 47, 1745, 9, 47, 1, 47, 1, 47, 3, 47, 1749, 8, 47, 1, 47, 1, 47, 3, 47, 1753, 8, 47, 3, 47, 1755, 8, 47, 3, 47, 1757, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1772, 8, 49, 3, 49, 1774, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1785, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1806, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1814, 8, 52, 10, 52, 12, 52, 1817, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 1827, 8, 54, 1, 54, 1, 54, 3, 54, 1831, 8, 54, 3, 54, 1833, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1839, 8, 55, 10, 55, 12, 55, 1842, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1850, 8, 56, 10, 56, 12, 56, 1853, 9, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1861, 8, 57, 10, 57, 12, 57, 1864, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1870, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1881, 8, 58, 10, 58, 12, 58, 1884, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1889, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1913, 8, 58, 10, 58, 12, 58, 1916, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1930, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1935, 8, 58, 1, 58, 1, 58, 3, 58, 1939, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1949, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1955, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1961, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1969, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1974, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1981, 8, 59, 3, 59, 1983, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1989, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1995, 8, 59, 1, 59, 1, 59, 3, 59, 1999, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2004, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2011, 8, 59, 10, 59, 12, 59, 2014, 9, 59, 1, 59, 1, 59, 3, 59, 2018, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2030, 8, 60, 10, 60, 12, 60, 2033, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2040, 8, 60, 10, 60, 12, 60, 2043, 9, 60, 3, 60, 2045, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2054, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2059, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2064, 8, 63, 3, 63, 2066, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2073, 8, 64, 10, 64, 12, 64, 2076, 9, 64, 3, 64, 2078, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2084, 8, 64, 10, 64, 12, 64, 2087, 9, 64, 3, 64, 2089, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2096, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2101, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2108, 8, 66, 1, 66, 1, 66, 3, 66, 2112, 8, 66, 3, 66, 2114, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2122, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2130, 8, 66, 10, 66, 12, 66, 2133, 9, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2138, 8, 66, 3, 66, 2140, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2147, 8, 67, 1, 67, 1, 67, 3, 67, 2151, 8, 67, 3, 67, 2153, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2160, 8, 67, 1, 67, 1, 67, 3, 67, 2164, 8, 67, 3, 67, 2166, 8, 67, 3, 67, 2168, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2175, 8, 68, 10, 68, 12, 68, 2178, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2188, 8, 68, 1, 69, 1, 69, 3, 69, 2192, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2200, 8, 70, 10, 70, 12, 70, 2203, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2212, 8, 72, 1, 72, 1, 72, 3, 72, 2216, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2224, 8, 72, 10, 72, 12, 72, 2227, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2239, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2247, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2254, 8, 73, 10, 73, 12, 73, 2257, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2262, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2270, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2276, 8, 73, 1, 73, 1, 73, 3, 73, 2280, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2285, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2290, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2296, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2310, 8, 74, 10, 74, 12, 74, 2313, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2340, 8, 75, 11, 75, 12, 75, 2341, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2351, 8, 75, 10, 75, 12, 75, 2354, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2361, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2366, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2371, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2382, 8, 75, 10, 75, 12, 75, 2385, 9, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2390, 8, 75, 1, 75, 3, 75, 2393, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2400, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2405, 8, 75, 1, 75, 3, 75, 2408, 8, 75, 1, 75, 3, 75, 2411, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2416, 8, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2421, 8, 75, 10, 75, 12, 75, 2424, 9, 75, 3, 75, 2426, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2433, 8, 75, 10, 75, 12, 75, 2436, 9, 75, 3, 75, 2438, 8, 75, 1, 75, 1, 75, 3, 75, 2442, 8, 75, 1, 75, 3, 75, 2445, 8, 75, 1, 75, 3, 75, 2448, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2461, 8, 75, 10, 75, 12, 75, 2464, 9, 75, 3, 75, 2466, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2483, 8, 75, 11, 75, 12, 75, 2484, 1, 75, 1, 75, 3, 75, 2489, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2495, 8, 75, 11, 75, 12, 75, 2496, 1, 75, 1, 75, 3, 75, 2501, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2524, 8, 75, 10, 75, 12, 75, 2527, 9, 75, 3, 75, 2529, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2538, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2544, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2550, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2556, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2565, 8, 75, 1, 75, 3, 75, 2568, 8, 75, 1, 75, 3, 75, 2571, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2590, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2599, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2619, 8, 75, 10, 75, 12, 75, 2622, 9, 75, 3, 75, 2624, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2634, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2643, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2649, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2655, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2666, 8, 75, 3, 75, 2668, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2673, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2680, 8, 75, 3, 75, 2682, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2688, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2694, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2703, 8, 75, 10, 75, 12, 75, 2706, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2714, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2719, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2724, 8, 75, 3, 75, 2726, 8, 75, 3, 75, 2728, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2734, 8, 75, 3, 75, 2736, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2744, 8, 75, 10, 75, 12, 75, 2747, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2755, 8, 75, 3, 75, 2757, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2763, 8, 75, 3, 75, 2765, 8, 75, 1, 75, 3, 75, 2768, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2778, 8, 75, 10, 75, 12, 75, 2781, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2788, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2794, 8, 76, 10, 76, 12, 76, 2797, 9, 76, 3, 76, 2799, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2804, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2809, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2821, 8, 81, 1, 82, 1, 82, 3, 82, 2825, 8, 82, 1, 82, 1, 82, 3, 82, 2829, 8, 82, 1, 82, 3, 82, 2832, 8, 82, 3, 82, 2834, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2842, 8, 83, 1, 84, 3, 84, 2845, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2855, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2863, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2869, 8, 87, 3, 87, 2871, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2879, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2889, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2895, 8, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 2907, 8, 95, 10, 95, 12, 95, 2910, 9, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2918, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2925, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2930, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2937, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2947, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2952, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2959, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 2983, 8, 95, 10, 95, 12, 95, 2986, 9, 95, 1, 95, 1, 95, 3, 95, 2990, 8, 95, 3, 95, 2992, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2999, 8, 95, 5, 95, 3001, 8, 95, 10, 95, 12, 95, 3004, 9, 95, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3010, 8, 96, 1, 97, 1, 97, 3, 97, 3014, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3030, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3043, 8, 100, 10, 100, 12, 100, 3046, 9, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3052, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3061, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3069, 8, 100, 10, 100, 12, 100, 3072, 9, 100, 1, 100, 1, 100, 3, 100, 3076, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3083, 8, 100, 10, 100, 12, 100, 3086, 9, 100, 1, 100, 1, 100, 3, 100, 3090, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3098, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3104, 8, 102, 10, 102, 12, 102, 3107, 9, 102, 3, 102, 3109, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3115, 8, 102, 1, 102, 3, 102, 3118, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3125, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3131, 8, 102, 10, 102, 12, 102, 3134, 9, 102, 3, 102, 3136, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3142, 8, 102, 10, 102, 12, 102, 3145, 9, 102, 3, 102, 3147, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3173, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3184, 8, 104, 1, 105, 1, 105, 1, 105, 3, 105, 3189, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 3196, 8, 105, 10, 105, 12, 105, 3199, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3209, 8, 106, 10, 106, 12, 106, 3212, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3226, 8, 106, 1, 107, 1, 107, 3, 107, 3230, 8, 107, 1, 107, 1, 107, 3, 107, 3234, 8, 107, 1, 107, 1, 107, 3, 107, 3238, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3244, 8, 107, 1, 107, 1, 107, 3, 107, 3248, 8, 107, 1, 107, 1, 107, 3, 107, 3252, 8, 107, 1, 107, 1, 107, 3, 107, 3256, 8, 107, 3, 107, 3258, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3268, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3275, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3284, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3291, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3298, 8, 113, 1, 114, 1, 114, 1, 114, 5, 114, 3303, 8, 114, 10, 114, 12, 114, 3306, 9, 114, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3312, 8, 115, 10, 115, 12, 115, 3315, 9, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3324, 8, 116, 10, 116, 12, 116, 3327, 9, 116, 3, 116, 3329, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 3338, 8, 117, 10, 117, 12, 117, 3341, 9, 117, 3, 117, 3343, 8, 117, 1, 117, 1, 117, 1, 118, 3, 118, 3348, 8, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 3, 120, 3358, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3374, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 4, 121, 3386, 8, 121, 11, 121, 12, 121, 3387, 1, 121, 3, 121, 3391, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 4, 121, 3398, 8, 121, 11, 121, 12, 121, 3399, 1, 121, 3, 121, 3403, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3413, 8, 121, 10, 121, 12, 121, 3416, 9, 121, 1, 121, 3, 121, 3419, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3432, 8, 121, 10, 121, 12, 121, 3435, 9, 121, 1, 121, 3, 121, 3438, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3444, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3454, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3466, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3475, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3494, 8, 125, 10, 125, 12, 125, 3497, 9, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3502, 8, 125, 1, 126, 1, 126, 1, 126, 4, 126, 3507, 8, 126, 11, 126, 12, 126, 3508, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3517, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3522, 8, 128, 1, 129, 3, 129, 3525, 8, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3531, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3544, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3557, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3570, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3583, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3590, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3597, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 3609, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 5, 144, 3618, 8, 144, 10, 144, 12, 144, 3621, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 3, 147, 3634, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3641, 8, 148, 1, 149, 1, 149, 1, 149, 5, 149, 3646, 8, 149, 10, 149, 12, 149, 3649, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3658, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3665, 8, 151, 1, 152, 3, 152, 3668, 8, 152, 1, 152, 1, 152, 3, 152, 3672, 8, 152, 1, 152, 1, 152, 3, 152, 3676, 8, 152, 1, 152, 3, 152, 3679, 8, 152, 1, 153, 1, 153, 3, 153, 3683, 8, 153, 1, 154, 1, 154, 1, 154, 0, 7, 46, 78, 144, 148, 150, 190, 210, 155, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 0, 35, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4236, 0, 313, 1, 0, 0, 0, 2, 318, 1, 0, 0, 0, 4, 320, 1, 0, 0, 0, 6, 324, 1, 0, 0, 0, 8, 328, 1, 0, 0, 0, 10, 332, 1, 0, 0, 0, 12, 336, 1, 0, 0, 0, 14, 340, 1, 0, 0, 0, 16, 1238, 1, 0, 0, 0, 18, 1241, 1, 0, 0, 0, 20, 1245, 1, 0, 0, 0, 22, 1255, 1, 0, 0, 0, 24, 1259, 1, 0, 0, 0, 26, 1273, 1, 0, 0, 0, 28, 1275, 1, 0, 0, 0, 30, 1289, 1, 0, 0, 0, 32, 1295, 1, 0, 0, 0, 34, 1299, 1, 0, 0, 0, 36, 1307, 1, 0, 0, 0, 38, 1313, 1, 0, 0, 0, 40, 1315, 1, 0, 0, 0, 42, 1352, 1, 0, 0, 0, 44, 1354, 1, 0, 0, 0, 46, 1356, 1, 0, 0, 0, 48, 1392, 1, 0, 0, 0, 50, 1396, 1, 0, 0, 0, 52, 1405, 1, 0, 0, 0, 54, 1450, 1, 0, 0, 0, 56, 1453, 1, 0, 0, 0, 58, 1457, 1, 0, 0, 0, 60, 1467, 1, 0, 0, 0, 62, 1515, 1, 0, 0, 0, 64, 1530, 1, 0, 0, 0, 66, 1534, 1, 0, 0, 0, 68, 1536, 1, 0, 0, 0, 70, 1543, 1, 0, 0, 0, 72, 1565, 1, 0, 0, 0, 74, 1574, 1, 0, 0, 0, 76, 1594, 1, 0, 0, 0, 78, 1596, 1, 0, 0, 0, 80, 1635, 1, 0, 0, 0, 82, 1651, 1, 0, 0, 0, 84, 1653, 1, 0, 0, 0, 86, 1662, 1, 0, 0, 0, 88, 1664, 1, 0, 0, 0, 90, 1672, 1, 0, 0, 0, 92, 1678, 1, 0, 0, 0, 94, 1680, 1, 0, 0, 0, 96, 1758, 1, 0, 0, 0, 98, 1773, 1, 0, 0, 0, 100, 1784, 1, 0, 0, 0, 102, 1805, 1, 0, 0, 0, 104, 1807, 1, 0, 0, 0, 106, 1820, 1, 0, 0, 0, 108, 1824, 1, 0, 0, 0, 110, 1834, 1, 0, 0, 0, 112, 1845, 1, 0, 0, 0, 114, 1856, 1, 0, 0, 0, 116, 1938, 1, 0, 0, 0, 118, 2017, 1, 0, 0, 0, 120, 2044, 1, 0, 0, 0, 122, 2046, 1, 0, 0, 0, 124, 2053, 1, 0, 0, 0, 126, 2065, 1, 0, 0, 0, 128, 2067, 1, 0, 0, 0, 130, 2095, 1, 0, 0, 0, 132, 2102, 1, 0, 0, 0, 134, 2167, 1, 0, 0, 0, 136, 2187, 1, 0, 0, 0, 138, 2189, 1, 0, 0, 0, 140, 2193, 1, 0, 0, 0, 142, 2206, 1, 0, 0, 0, 144, 2215, 1, 0, 0, 0, 146, 2289, 1, 0, 0, 0, 148, 2295, 1, 0, 0, 0, 150, 2767, 1, 0, 0, 0, 152, 2782, 1, 0, 0, 0, 154, 2800, 1, 0, 0, 0, 156, 2805, 1, 0, 0, 0, 158, 2810, 1, 0, 0, 0, 160, 2814, 1, 0, 0, 0, 162, 2820, 1, 0, 0, 0, 164, 2833, 1, 0, 0, 0, 166, 2841, 1, 0, 0, 0, 168, 2854, 1, 0, 0, 0, 170, 2856, 1, 0, 0, 0, 172, 2862, 1, 0, 0, 0, 174, 2870, 1, 0, 0, 0, 176, 2878, 1, 0, 0, 0, 178, 2880, 1, 0, 0, 0, 180, 2882, 1, 0, 0, 0, 182, 2884, 1, 0, 0, 0, 184, 2886, 1, 0, 0, 0, 186, 2896, 1, 0, 0, 0, 188, 2898, 1, 0, 0, 0, 190, 2991, 1, 0, 0, 0, 192, 3009, 1, 0, 0, 0, 194, 3013, 1, 0, 0, 0, 196, 3015, 1, 0, 0, 0, 198, 3020, 1, 0, 0, 0, 200, 3089, 1, 0, 0, 0, 202, 3091, 1, 0, 0, 0, 204, 3108, 1, 0, 0, 0, 206, 3172, 1, 0, 0, 0, 208, 3183, 1, 0, 0, 0, 210, 3185, 1, 0, 0, 0, 212, 3225, 1, 0, 0, 0, 214, 3257, 1, 0, 0, 0, 216, 3259, 1, 0, 0, 0, 218, 3267, 1, 0, 0, 0, 220, 3274, 1, 0, 0, 0, 222, 3283, 1, 0, 0, 0, 224, 3290, 1, 0, 0, 0, 226, 3297, 1, 0, 0, 0, 228, 3299, 1, 0, 0, 0, 230, 3307, 1, 0, 0, 0, 232, 3318, 1, 0, 0, 0, 234, 3332, 1, 0, 0, 0, 236, 3347, 1, 0, 0, 0, 238, 3351, 1, 0, 0, 0, 240, 3373, 1, 0, 0, 0, 242, 3474, 1, 0, 0, 0, 244, 3476, 1, 0, 0, 0, 246, 3481, 1, 0, 0, 0, 248, 3486, 1, 0, 0, 0, 250, 3489, 1, 0, 0, 0, 252, 3506, 1, 0, 0, 0, 254, 3516, 1, 0, 0, 0, 256, 3521, 1, 0, 0, 0, 258, 3524, 1, 0, 0, 0, 260, 3530, 1, 0, 0, 0, 262, 3543, 1, 0, 0, 0, 264, 3556, 1, 0, 0, 0, 266, 3569, 1, 0, 0, 0, 268, 3582, 1, 0, 0, 0, 270, 3589, 1, 0, 0, 0, 272, 3596, 1, 0, 0, 0, 274, 3598, 1, 0, 0, 0, 276, 3600, 1, 0, 0, 0, 278, 3602, 1, 0, 0, 0, 280, 3604, 1, 0, 0, 0, 282, 3608, 1, 0, 0, 0, 284, 3610, 1, 0, 0, 0, 286, 3612, 1, 0, 0, 0, 288, 3614, 1, 0, 0, 0, 290, 3622, 1, 0, 0, 0, 292, 3628, 1, 0, 0, 0, 294, 3633, 1, 0, 0, 0, 296, 3640, 1, 0, 0, 0, 298, 3642, 1, 0, 0, 0, 300, 3657, 1, 0, 0, 0, 302, 3664, 1, 0, 0, 0, 304, 3678, 1, 0, 0, 0, 306, 3682, 1, 0, 0, 0, 308, 3684, 1, 0, 0, 0, 310, 312, 3, 2, 1, 0, 311, 310, 1, 0, 0, 0, 312, 315, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 316, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 316, 317, 5, 0, 0, 1, 317, 1, 1, 0, 0, 0, 318, 319, 3, 4, 2, 0, 319, 3, 1, 0, 0, 0, 320, 322, 3, 16, 8, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 5, 1, 0, 0, 0, 324, 326, 3, 142, 71, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 7, 1, 0, 0, 0, 328, 330, 3, 228, 114, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 9, 1, 0, 0, 0, 332, 334, 3, 190, 95, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 11, 1, 0, 0, 0, 336, 338, 3, 210, 105, 0, 337, 339, 5, 325, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 13, 1, 0, 0, 0, 340, 341, 3, 230, 115, 0, 341, 342, 5, 0, 0, 1, 342, 15, 1, 0, 0, 0, 343, 1239, 3, 18, 9, 0, 344, 345, 5, 288, 0, 0, 345, 1239, 3, 270, 135, 0, 346, 347, 5, 53, 0, 0, 347, 351, 5, 42, 0, 0, 348, 349, 5, 119, 0, 0, 349, 350, 5, 182, 0, 0, 350, 352, 5, 94, 0, 0, 351, 348, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 3, 276, 138, 0, 354, 355, 5, 290, 0, 0, 355, 358, 3, 302, 151, 0, 356, 357, 5, 46, 0, 0, 357, 359, 3, 174, 87, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 31, 0, 0, 361, 363, 3, 296, 148, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 365, 5, 304, 0, 0, 365, 367, 3, 32, 16, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 1239, 1, 0, 0, 0, 368, 369, 5, 83, 0, 0, 369, 372, 5, 42, 0, 0, 370, 371, 5, 119, 0, 0, 371, 373, 5, 94, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 3, 274, 137, 0, 375, 377, 7, 0, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 1239, 1, 0, 0, 0, 378, 379, 5, 53, 0, 0, 379, 383, 5, 243, 0, 0, 380, 381, 5, 119, 0, 0, 381, 382, 5, 182, 0, 0, 382, 384, 5, 94, 0, 0, 383, 380, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 3, 272, 136, 0, 386, 387, 5, 31, 0, 0, 387, 389, 3, 296, 148, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 391, 5, 304, 0, 0, 391, 393, 3, 32, 16, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 1239, 1, 0, 0, 0, 394, 395, 5, 83, 0, 0, 395, 398, 5, 243, 0, 0, 396, 397, 5, 119, 0, 0, 397, 399, 5, 94, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 402, 3, 270, 135, 0, 401, 403, 7, 0, 0, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 1239, 1, 0, 0, 0, 404, 405, 5, 23, 0, 0, 405, 406, 5, 243, 0, 0, 406, 407, 3, 270, 135, 0, 407, 408, 5, 223, 0, 0, 408, 409, 5, 269, 0, 0, 409, 410, 3, 272, 136, 0, 410, 1239, 1, 0, 0, 0, 411, 412, 5, 23, 0, 0, 412, 413, 5, 243, 0, 0, 413, 414, 3, 270, 135, 0, 414, 415, 5, 251, 0, 0, 415, 416, 5, 31, 0, 0, 416, 417, 3, 296, 148, 0, 417, 1239, 1, 0, 0, 0, 418, 421, 5, 53, 0, 0, 419, 420, 5, 194, 0, 0, 420, 422, 5, 226, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 427, 5, 260, 0, 0, 424, 425, 5, 119, 0, 0, 425, 426, 5, 182, 0, 0, 426, 428, 5, 94, 0, 0, 427, 424, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 431, 3, 264, 132, 0, 430, 432, 3, 110, 55, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 434, 5, 46, 0, 0, 434, 436, 3, 174, 87, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 304, 0, 0, 438, 440, 3, 32, 16, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 447, 5, 28, 0, 0, 442, 448, 3, 18, 9, 0, 443, 444, 5, 1, 0, 0, 444, 445, 3, 18, 9, 0, 445, 446, 5, 2, 0, 0, 446, 448, 1, 0, 0, 0, 447, 442, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 448, 454, 1, 0, 0, 0, 449, 451, 5, 304, 0, 0, 450, 452, 5, 179, 0, 0, 451, 450, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 455, 5, 65, 0, 0, 454, 449, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 1239, 1, 0, 0, 0, 456, 459, 5, 53, 0, 0, 457, 458, 5, 194, 0, 0, 458, 460, 5, 226, 0, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 465, 5, 260, 0, 0, 462, 463, 5, 119, 0, 0, 463, 464, 5, 182, 0, 0, 464, 466, 5, 94, 0, 0, 465, 462, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 3, 264, 132, 0, 468, 469, 5, 1, 0, 0, 469, 474, 3, 26, 13, 0, 470, 471, 5, 3, 0, 0, 471, 473, 3, 26, 13, 0, 472, 470, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 480, 5, 2, 0, 0, 478, 479, 5, 46, 0, 0, 479, 481, 3, 174, 87, 0, 480, 478, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 483, 5, 304, 0, 0, 483, 485, 3, 32, 16, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 1239, 1, 0, 0, 0, 486, 487, 5, 83, 0, 0, 487, 490, 5, 260, 0, 0, 488, 489, 5, 119, 0, 0, 489, 491, 5, 94, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 1239, 3, 262, 131, 0, 493, 494, 5, 127, 0, 0, 494, 495, 5, 130, 0, 0, 495, 497, 3, 262, 131, 0, 496, 498, 3, 112, 56, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 3, 18, 9, 0, 500, 1239, 1, 0, 0, 0, 501, 502, 5, 73, 0, 0, 502, 503, 5, 105, 0, 0, 503, 505, 3, 262, 131, 0, 504, 506, 3, 54, 27, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 1239, 1, 0, 0, 0, 507, 508, 5, 274, 0, 0, 508, 509, 5, 260, 0, 0, 509, 1239, 3, 262, 131, 0, 510, 511, 5, 46, 0, 0, 511, 512, 5, 190, 0, 0, 512, 513, 5, 260, 0, 0, 513, 514, 3, 262, 131, 0, 514, 517, 5, 133, 0, 0, 515, 518, 3, 174, 87, 0, 516, 518, 5, 183, 0, 0, 517, 515, 1, 0, 0, 0, 517, 516, 1, 0, 0, 0, 518, 1239, 1, 0, 0, 0, 519, 520, 5, 46, 0, 0, 520, 521, 5, 190, 0, 0, 521, 522, 5, 299, 0, 0, 522, 523, 3, 266, 133, 0, 523, 526, 5, 133, 0, 0, 524, 527, 3, 174, 87, 0, 525, 527, 5, 183, 0, 0, 526, 524, 1, 0, 0, 0, 526, 525, 1, 0, 0, 0, 527, 1239, 1, 0, 0, 0, 528, 529, 5, 46, 0, 0, 529, 530, 5, 190, 0, 0, 530, 531, 5, 44, 0, 0, 531, 532, 3, 282, 141, 0, 532, 535, 5, 133, 0, 0, 533, 536, 3, 174, 87, 0, 534, 536, 5, 183, 0, 0, 535, 533, 1, 0, 0, 0, 535, 534, 1, 0, 0, 0, 536, 1239, 1, 0, 0, 0, 537, 538, 5, 23, 0, 0, 538, 541, 5, 260, 0, 0, 539, 540, 5, 119, 0, 0, 540, 542, 5, 94, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 3, 262, 131, 0, 544, 545, 5, 223, 0, 0, 545, 546, 5, 269, 0, 0, 546, 547, 3, 264, 132, 0, 547, 1239, 1, 0, 0, 0, 548, 549, 5, 23, 0, 0, 549, 552, 5, 260, 0, 0, 550, 551, 5, 119, 0, 0, 551, 553, 5, 94, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 3, 262, 131, 0, 555, 556, 5, 19, 0, 0, 556, 560, 5, 44, 0, 0, 557, 558, 5, 119, 0, 0, 558, 559, 5, 182, 0, 0, 559, 561, 5, 94, 0, 0, 560, 557, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 3, 28, 14, 0, 563, 1239, 1, 0, 0, 0, 564, 565, 5, 23, 0, 0, 565, 568, 5, 260, 0, 0, 566, 567, 5, 119, 0, 0, 567, 569, 5, 94, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 3, 262, 131, 0, 571, 572, 5, 223, 0, 0, 572, 575, 5, 44, 0, 0, 573, 574, 5, 119, 0, 0, 574, 576, 5, 94, 0, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 3, 282, 141, 0, 578, 579, 5, 269, 0, 0, 579, 580, 3, 286, 143, 0, 580, 1239, 1, 0, 0, 0, 581, 582, 5, 23, 0, 0, 582, 585, 5, 260, 0, 0, 583, 584, 5, 119, 0, 0, 584, 586, 5, 94, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 3, 262, 131, 0, 588, 589, 5, 83, 0, 0, 589, 592, 5, 44, 0, 0, 590, 591, 5, 119, 0, 0, 591, 593, 5, 94, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 3, 282, 141, 0, 595, 1239, 1, 0, 0, 0, 596, 597, 5, 23, 0, 0, 597, 600, 5, 260, 0, 0, 598, 599, 5, 119, 0, 0, 599, 601, 5, 94, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 3, 262, 131, 0, 603, 604, 5, 23, 0, 0, 604, 605, 5, 44, 0, 0, 605, 606, 3, 282, 141, 0, 606, 607, 5, 251, 0, 0, 607, 608, 5, 65, 0, 0, 608, 609, 5, 276, 0, 0, 609, 610, 3, 190, 95, 0, 610, 1239, 1, 0, 0, 0, 611, 612, 5, 23, 0, 0, 612, 615, 5, 260, 0, 0, 613, 614, 5, 119, 0, 0, 614, 616, 5, 94, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 3, 262, 131, 0, 618, 619, 5, 23, 0, 0, 619, 620, 5, 44, 0, 0, 620, 621, 3, 282, 141, 0, 621, 622, 5, 83, 0, 0, 622, 623, 5, 182, 0, 0, 623, 624, 5, 183, 0, 0, 624, 1239, 1, 0, 0, 0, 625, 626, 5, 23, 0, 0, 626, 627, 5, 260, 0, 0, 627, 628, 3, 262, 131, 0, 628, 629, 5, 251, 0, 0, 629, 630, 5, 31, 0, 0, 630, 631, 3, 296, 148, 0, 631, 1239, 1, 0, 0, 0, 632, 633, 5, 23, 0, 0, 633, 634, 5, 260, 0, 0, 634, 635, 3, 262, 131, 0, 635, 636, 5, 251, 0, 0, 636, 637, 5, 216, 0, 0, 637, 638, 3, 34, 17, 0, 638, 1239, 1, 0, 0, 0, 639, 640, 5, 23, 0, 0, 640, 641, 5, 260, 0, 0, 641, 642, 3, 262, 131, 0, 642, 643, 5, 93, 0, 0, 643, 656, 3, 278, 139, 0, 644, 653, 5, 1, 0, 0, 645, 650, 3, 224, 112, 0, 646, 647, 5, 3, 0, 0, 647, 649, 3, 224, 112, 0, 648, 646, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 645, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 657, 5, 2, 0, 0, 656, 644, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 1, 0, 0, 0, 658, 660, 3, 54, 27, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 1239, 1, 0, 0, 0, 661, 662, 5, 24, 0, 0, 662, 665, 3, 262, 131, 0, 663, 664, 5, 304, 0, 0, 664, 666, 3, 32, 16, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1239, 1, 0, 0, 0, 667, 670, 5, 53, 0, 0, 668, 669, 5, 194, 0, 0, 669, 671, 5, 226, 0, 0, 670, 668, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 167, 0, 0, 673, 677, 5, 299, 0, 0, 674, 675, 5, 119, 0, 0, 675, 676, 5, 182, 0, 0, 676, 678, 5, 94, 0, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 683, 3, 268, 134, 0, 680, 681, 5, 109, 0, 0, 681, 682, 5, 208, 0, 0, 682, 684, 3, 184, 92, 0, 683, 680, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 46, 0, 0, 686, 688, 3, 174, 87, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 690, 5, 304, 0, 0, 690, 692, 3, 32, 16, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 5, 28, 0, 0, 694, 695, 3, 18, 9, 0, 695, 1239, 1, 0, 0, 0, 696, 699, 5, 53, 0, 0, 697, 698, 5, 194, 0, 0, 698, 700, 5, 226, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 299, 0, 0, 702, 705, 3, 268, 134, 0, 703, 704, 5, 46, 0, 0, 704, 706, 3, 174, 87, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 5, 246, 0, 0, 708, 710, 7, 1, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 713, 1, 0, 0, 0, 711, 712, 5, 304, 0, 0, 712, 714, 3, 32, 16, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 28, 0, 0, 716, 717, 3, 18, 9, 0, 717, 1239, 1, 0, 0, 0, 718, 719, 5, 222, 0, 0, 719, 720, 5, 167, 0, 0, 720, 721, 5, 299, 0, 0, 721, 1239, 3, 266, 133, 0, 722, 723, 5, 83, 0, 0, 723, 724, 5, 167, 0, 0, 724, 727, 5, 299, 0, 0, 725, 726, 5, 119, 0, 0, 726, 728, 5, 94, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 1239, 3, 266, 133, 0, 730, 731, 5, 23, 0, 0, 731, 732, 5, 167, 0, 0, 732, 735, 5, 299, 0, 0, 733, 734, 5, 119, 0, 0, 734, 736, 5, 94, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 3, 266, 133, 0, 738, 739, 5, 223, 0, 0, 739, 740, 5, 269, 0, 0, 740, 741, 3, 268, 134, 0, 741, 1239, 1, 0, 0, 0, 742, 743, 5, 23, 0, 0, 743, 744, 5, 167, 0, 0, 744, 745, 5, 299, 0, 0, 745, 746, 3, 266, 133, 0, 746, 747, 5, 251, 0, 0, 747, 748, 5, 216, 0, 0, 748, 749, 3, 34, 17, 0, 749, 1239, 1, 0, 0, 0, 750, 751, 5, 83, 0, 0, 751, 754, 5, 299, 0, 0, 752, 753, 5, 119, 0, 0, 753, 755, 5, 94, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 1239, 3, 266, 133, 0, 757, 758, 5, 23, 0, 0, 758, 759, 5, 299, 0, 0, 759, 760, 3, 266, 133, 0, 760, 761, 5, 223, 0, 0, 761, 762, 5, 269, 0, 0, 762, 763, 3, 268, 134, 0, 763, 1239, 1, 0, 0, 0, 764, 765, 5, 23, 0, 0, 765, 766, 5, 299, 0, 0, 766, 767, 3, 266, 133, 0, 767, 768, 5, 251, 0, 0, 768, 769, 5, 31, 0, 0, 769, 770, 3, 296, 148, 0, 770, 1239, 1, 0, 0, 0, 771, 772, 5, 37, 0, 0, 772, 773, 3, 278, 139, 0, 773, 782, 5, 1, 0, 0, 774, 779, 3, 224, 112, 0, 775, 776, 5, 3, 0, 0, 776, 778, 3, 224, 112, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 783, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 2, 0, 0, 785, 1239, 1, 0, 0, 0, 786, 789, 5, 53, 0, 0, 787, 788, 5, 194, 0, 0, 788, 790, 5, 226, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 1239, 3, 230, 115, 0, 792, 793, 5, 83, 0, 0, 793, 796, 5, 107, 0, 0, 794, 795, 5, 119, 0, 0, 795, 797, 5, 94, 0, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 1239, 3, 234, 117, 0, 799, 800, 5, 53, 0, 0, 800, 801, 5, 235, 0, 0, 801, 805, 3, 302, 151, 0, 802, 803, 5, 304, 0, 0, 803, 804, 5, 20, 0, 0, 804, 806, 3, 294, 147, 0, 805, 802, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 809, 1, 0, 0, 0, 807, 808, 5, 122, 0, 0, 808, 810, 3, 274, 137, 0, 809, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 1239, 1, 0, 0, 0, 811, 812, 5, 83, 0, 0, 812, 813, 5, 235, 0, 0, 813, 816, 3, 302, 151, 0, 814, 815, 5, 122, 0, 0, 815, 817, 3, 274, 137, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 1239, 1, 0, 0, 0, 818, 819, 5, 110, 0, 0, 819, 824, 3, 300, 150, 0, 820, 821, 5, 3, 0, 0, 821, 823, 3, 300, 150, 0, 822, 820, 1, 0, 0, 0, 823, 826, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 827, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 828, 5, 269, 0, 0, 828, 833, 3, 296, 148, 0, 829, 830, 5, 3, 0, 0, 830, 832, 3, 296, 148, 0, 831, 829, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 839, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 837, 5, 304, 0, 0, 837, 838, 5, 20, 0, 0, 838, 840, 5, 193, 0, 0, 839, 836, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 844, 1, 0, 0, 0, 841, 842, 5, 111, 0, 0, 842, 843, 5, 36, 0, 0, 843, 845, 3, 294, 147, 0, 844, 841, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 847, 5, 122, 0, 0, 847, 849, 3, 274, 137, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 1239, 1, 0, 0, 0, 850, 861, 5, 110, 0, 0, 851, 856, 3, 300, 150, 0, 852, 853, 5, 3, 0, 0, 853, 855, 3, 300, 150, 0, 854, 852, 1, 0, 0, 0, 855, 858, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 862, 1, 0, 0, 0, 858, 856, 1, 0, 0, 0, 859, 860, 5, 22, 0, 0, 860, 862, 5, 215, 0, 0, 861, 851, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 190, 0, 0, 864, 865, 3, 258, 129, 0, 865, 866, 5, 269, 0, 0, 866, 870, 3, 296, 148, 0, 867, 868, 5, 304, 0, 0, 868, 869, 5, 110, 0, 0, 869, 871, 5, 193, 0, 0, 870, 867, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 1239, 1, 0, 0, 0, 872, 876, 5, 233, 0, 0, 873, 874, 5, 20, 0, 0, 874, 875, 5, 193, 0, 0, 875, 877, 5, 103, 0, 0, 876, 873, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 883, 3, 300, 150, 0, 879, 880, 5, 3, 0, 0, 880, 882, 3, 300, 150, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 105, 0, 0, 887, 892, 3, 296, 148, 0, 888, 889, 5, 3, 0, 0, 889, 891, 3, 296, 148, 0, 890, 888, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 898, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 896, 5, 111, 0, 0, 896, 897, 5, 36, 0, 0, 897, 899, 3, 294, 147, 0, 898, 895, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 902, 1, 0, 0, 0, 900, 901, 5, 122, 0, 0, 901, 903, 3, 274, 137, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 1239, 1, 0, 0, 0, 904, 908, 5, 233, 0, 0, 905, 906, 5, 110, 0, 0, 906, 907, 5, 193, 0, 0, 907, 909, 5, 103, 0, 0, 908, 905, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 920, 1, 0, 0, 0, 910, 915, 3, 300, 150, 0, 911, 912, 5, 3, 0, 0, 912, 914, 3, 300, 150, 0, 913, 911, 1, 0, 0, 0, 914, 917, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 921, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 22, 0, 0, 919, 921, 5, 215, 0, 0, 920, 910, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 5, 190, 0, 0, 923, 924, 3, 258, 129, 0, 924, 925, 5, 105, 0, 0, 925, 926, 3, 296, 148, 0, 926, 1239, 1, 0, 0, 0, 927, 938, 5, 74, 0, 0, 928, 933, 3, 254, 127, 0, 929, 930, 5, 3, 0, 0, 930, 932, 3, 254, 127, 0, 931, 929, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 939, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 22, 0, 0, 937, 939, 5, 215, 0, 0, 938, 928, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 5, 190, 0, 0, 941, 942, 3, 258, 129, 0, 942, 943, 5, 269, 0, 0, 943, 944, 3, 296, 148, 0, 944, 1239, 1, 0, 0, 0, 945, 946, 5, 251, 0, 0, 946, 950, 5, 235, 0, 0, 947, 951, 5, 22, 0, 0, 948, 951, 5, 180, 0, 0, 949, 951, 3, 302, 151, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 954, 1, 0, 0, 0, 952, 953, 5, 122, 0, 0, 953, 955, 3, 274, 137, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1239, 1, 0, 0, 0, 956, 957, 5, 253, 0, 0, 957, 960, 5, 112, 0, 0, 958, 959, 5, 190, 0, 0, 959, 961, 3, 258, 129, 0, 960, 958, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 1239, 1, 0, 0, 0, 962, 974, 5, 95, 0, 0, 963, 964, 5, 1, 0, 0, 964, 969, 3, 218, 109, 0, 965, 966, 5, 3, 0, 0, 966, 968, 3, 218, 109, 0, 967, 965, 1, 0, 0, 0, 968, 971, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 972, 973, 5, 2, 0, 0, 973, 975, 1, 0, 0, 0, 974, 963, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1239, 3, 16, 8, 0, 977, 978, 5, 95, 0, 0, 978, 980, 5, 24, 0, 0, 979, 981, 5, 297, 0, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1239, 3, 16, 8, 0, 983, 984, 5, 253, 0, 0, 984, 985, 5, 53, 0, 0, 985, 986, 5, 260, 0, 0, 986, 1239, 3, 262, 131, 0, 987, 988, 5, 253, 0, 0, 988, 989, 5, 53, 0, 0, 989, 990, 5, 243, 0, 0, 990, 1239, 3, 270, 135, 0, 991, 992, 5, 253, 0, 0, 992, 993, 5, 53, 0, 0, 993, 994, 5, 299, 0, 0, 994, 1239, 3, 266, 133, 0, 995, 996, 5, 253, 0, 0, 996, 997, 5, 53, 0, 0, 997, 998, 5, 167, 0, 0, 998, 999, 5, 299, 0, 0, 999, 1239, 3, 266, 133, 0, 1000, 1001, 5, 253, 0, 0, 1001, 1002, 5, 53, 0, 0, 1002, 1003, 5, 107, 0, 0, 1003, 1239, 3, 278, 139, 0, 1004, 1005, 5, 253, 0, 0, 1005, 1008, 5, 261, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 270, 135, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1016, 1, 0, 0, 0, 1010, 1011, 5, 154, 0, 0, 1011, 1014, 3, 174, 87, 0, 1012, 1013, 5, 90, 0, 0, 1013, 1015, 3, 174, 87, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 1, 0, 0, 0, 1016, 1010, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1239, 1, 0, 0, 0, 1018, 1019, 5, 253, 0, 0, 1019, 1022, 5, 244, 0, 0, 1020, 1021, 7, 2, 0, 0, 1021, 1023, 3, 274, 137, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1030, 1, 0, 0, 0, 1024, 1025, 5, 154, 0, 0, 1025, 1028, 3, 174, 87, 0, 1026, 1027, 5, 90, 0, 0, 1027, 1029, 3, 174, 87, 0, 1028, 1026, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1031, 1, 0, 0, 0, 1030, 1024, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1239, 1, 0, 0, 0, 1032, 1033, 5, 253, 0, 0, 1033, 1040, 5, 43, 0, 0, 1034, 1035, 5, 154, 0, 0, 1035, 1038, 3, 174, 87, 0, 1036, 1037, 5, 90, 0, 0, 1037, 1039, 3, 174, 87, 0, 1038, 1036, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1041, 1, 0, 0, 0, 1040, 1034, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1239, 1, 0, 0, 0, 1042, 1043, 5, 253, 0, 0, 1043, 1044, 5, 45, 0, 0, 1044, 1045, 7, 2, 0, 0, 1045, 1052, 3, 260, 130, 0, 1046, 1047, 5, 154, 0, 0, 1047, 1050, 3, 174, 87, 0, 1048, 1049, 5, 90, 0, 0, 1049, 1051, 3, 174, 87, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1046, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1239, 1, 0, 0, 0, 1054, 1055, 5, 253, 0, 0, 1055, 1056, 5, 256, 0, 0, 1056, 1057, 5, 103, 0, 0, 1057, 1239, 3, 260, 130, 0, 1058, 1059, 5, 253, 0, 0, 1059, 1060, 5, 256, 0, 0, 1060, 1061, 5, 103, 0, 0, 1061, 1062, 5, 1, 0, 0, 1062, 1063, 3, 18, 9, 0, 1063, 1064, 5, 2, 0, 0, 1064, 1239, 1, 0, 0, 0, 1065, 1067, 5, 253, 0, 0, 1066, 1068, 5, 56, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1072, 5, 236, 0, 0, 1070, 1071, 7, 2, 0, 0, 1071, 1073, 3, 274, 137, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1239, 1, 0, 0, 0, 1074, 1075, 5, 253, 0, 0, 1075, 1076, 5, 235, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1078, 7, 2, 0, 0, 1078, 1080, 3, 274, 137, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1239, 1, 0, 0, 0, 1081, 1082, 5, 76, 0, 0, 1082, 1239, 3, 260, 130, 0, 1083, 1084, 5, 75, 0, 0, 1084, 1239, 3, 260, 130, 0, 1085, 1086, 5, 253, 0, 0, 1086, 1089, 5, 108, 0, 0, 1087, 1088, 7, 2, 0, 0, 1088, 1090, 3, 270, 135, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1097, 1, 0, 0, 0, 1091, 1092, 5, 154, 0, 0, 1092, 1095, 3, 174, 87, 0, 1093, 1094, 5, 90, 0, 0, 1094, 1096, 3, 174, 87, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1091, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1239, 1, 0, 0, 0, 1099, 1100, 5, 253, 0, 0, 1100, 1107, 5, 250, 0, 0, 1101, 1102, 5, 154, 0, 0, 1102, 1105, 3, 174, 87, 0, 1103, 1104, 5, 90, 0, 0, 1104, 1106, 3, 174, 87, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1101, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1239, 1, 0, 0, 0, 1109, 1110, 5, 251, 0, 0, 1110, 1111, 5, 250, 0, 0, 1111, 1112, 5, 31, 0, 0, 1112, 1239, 3, 306, 153, 0, 1113, 1114, 5, 227, 0, 0, 1114, 1115, 5, 250, 0, 0, 1115, 1239, 5, 31, 0, 0, 1116, 1117, 5, 251, 0, 0, 1117, 1118, 5, 250, 0, 0, 1118, 1119, 3, 288, 144, 0, 1119, 1120, 5, 312, 0, 0, 1120, 1121, 3, 142, 71, 0, 1121, 1239, 1, 0, 0, 0, 1122, 1123, 5, 227, 0, 0, 1123, 1124, 5, 250, 0, 0, 1124, 1239, 3, 288, 144, 0, 1125, 1126, 5, 255, 0, 0, 1126, 1135, 5, 271, 0, 0, 1127, 1132, 3, 220, 110, 0, 1128, 1129, 5, 3, 0, 0, 1129, 1131, 3, 220, 110, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1134, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1127, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1239, 1, 0, 0, 0, 1137, 1139, 5, 47, 0, 0, 1138, 1140, 5, 307, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1239, 1, 0, 0, 0, 1141, 1143, 5, 237, 0, 0, 1142, 1144, 5, 307, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1239, 1, 0, 0, 0, 1145, 1146, 5, 214, 0, 0, 1146, 1147, 3, 302, 151, 0, 1147, 1148, 5, 105, 0, 0, 1148, 1149, 3, 16, 8, 0, 1149, 1239, 1, 0, 0, 0, 1150, 1151, 5, 68, 0, 0, 1151, 1152, 5, 214, 0, 0, 1152, 1239, 3, 302, 151, 0, 1153, 1154, 5, 93, 0, 0, 1154, 1164, 3, 302, 151, 0, 1155, 1156, 5, 290, 0, 0, 1156, 1161, 3, 142, 71, 0, 1157, 1158, 5, 3, 0, 0, 1158, 1160, 3, 142, 71, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1165, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1155, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1239, 1, 0, 0, 0, 1166, 1167, 5, 93, 0, 0, 1167, 1168, 5, 121, 0, 0, 1168, 1178, 3, 174, 87, 0, 1169, 1170, 5, 290, 0, 0, 1170, 1175, 3, 142, 71, 0, 1171, 1172, 5, 3, 0, 0, 1172, 1174, 3, 142, 71, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1239, 1, 0, 0, 0, 1180, 1181, 5, 76, 0, 0, 1181, 1182, 5, 126, 0, 0, 1182, 1239, 3, 302, 151, 0, 1183, 1184, 5, 76, 0, 0, 1184, 1185, 5, 198, 0, 0, 1185, 1239, 3, 302, 151, 0, 1186, 1187, 5, 251, 0, 0, 1187, 1188, 5, 205, 0, 0, 1188, 1239, 3, 228, 114, 0, 1189, 1190, 5, 251, 0, 0, 1190, 1191, 5, 267, 0, 0, 1191, 1194, 5, 311, 0, 0, 1192, 1195, 5, 157, 0, 0, 1193, 1195, 3, 142, 71, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1193, 1, 0, 0, 0, 1195, 1239, 1, 0, 0, 0, 1196, 1197, 5, 287, 0, 0, 1197, 1198, 3, 262, 131, 0, 1198, 1199, 5, 251, 0, 0, 1199, 1204, 3, 216, 108, 0, 1200, 1201, 5, 3, 0, 0, 1201, 1203, 3, 216, 108, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1208, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1209, 3, 54, 27, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1239, 1, 0, 0, 0, 1210, 1211, 5, 169, 0, 0, 1211, 1212, 5, 130, 0, 0, 1212, 1217, 3, 262, 131, 0, 1213, 1215, 5, 28, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1218, 3, 302, 151, 0, 1217, 1214, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 5, 290, 0, 0, 1220, 1221, 3, 78, 39, 0, 1221, 1222, 5, 190, 0, 0, 1222, 1224, 3, 142, 71, 0, 1223, 1225, 3, 200, 100, 0, 1224, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1239, 1, 0, 0, 0, 1228, 1229, 5, 253, 0, 0, 1229, 1230, 5, 46, 0, 0, 1230, 1231, 5, 190, 0, 0, 1231, 1232, 5, 260, 0, 0, 1232, 1239, 3, 262, 131, 0, 1233, 1234, 5, 253, 0, 0, 1234, 1235, 5, 46, 0, 0, 1235, 1236, 5, 190, 0, 0, 1236, 1237, 5, 44, 0, 0, 1237, 1239, 3, 282, 141, 0, 1238, 343, 1, 0, 0, 0, 1238, 344, 1, 0, 0, 0, 1238, 346, 1, 0, 0, 0, 1238, 368, 1, 0, 0, 0, 1238, 378, 1, 0, 0, 0, 1238, 394, 1, 0, 0, 0, 1238, 404, 1, 0, 0, 0, 1238, 411, 1, 0, 0, 0, 1238, 418, 1, 0, 0, 0, 1238, 456, 1, 0, 0, 0, 1238, 486, 1, 0, 0, 0, 1238, 493, 1, 0, 0, 0, 1238, 501, 1, 0, 0, 0, 1238, 507, 1, 0, 0, 0, 1238, 510, 1, 0, 0, 0, 1238, 519, 1, 0, 0, 0, 1238, 528, 1, 0, 0, 0, 1238, 537, 1, 0, 0, 0, 1238, 548, 1, 0, 0, 0, 1238, 564, 1, 0, 0, 0, 1238, 581, 1, 0, 0, 0, 1238, 596, 1, 0, 0, 0, 1238, 611, 1, 0, 0, 0, 1238, 625, 1, 0, 0, 0, 1238, 632, 1, 0, 0, 0, 1238, 639, 1, 0, 0, 0, 1238, 661, 1, 0, 0, 0, 1238, 667, 1, 0, 0, 0, 1238, 696, 1, 0, 0, 0, 1238, 718, 1, 0, 0, 0, 1238, 722, 1, 0, 0, 0, 1238, 730, 1, 0, 0, 0, 1238, 742, 1, 0, 0, 0, 1238, 750, 1, 0, 0, 0, 1238, 757, 1, 0, 0, 0, 1238, 764, 1, 0, 0, 0, 1238, 771, 1, 0, 0, 0, 1238, 786, 1, 0, 0, 0, 1238, 792, 1, 0, 0, 0, 1238, 799, 1, 0, 0, 0, 1238, 811, 1, 0, 0, 0, 1238, 818, 1, 0, 0, 0, 1238, 850, 1, 0, 0, 0, 1238, 872, 1, 0, 0, 0, 1238, 904, 1, 0, 0, 0, 1238, 927, 1, 0, 0, 0, 1238, 945, 1, 0, 0, 0, 1238, 956, 1, 0, 0, 0, 1238, 962, 1, 0, 0, 0, 1238, 977, 1, 0, 0, 0, 1238, 983, 1, 0, 0, 0, 1238, 987, 1, 0, 0, 0, 1238, 991, 1, 0, 0, 0, 1238, 995, 1, 0, 0, 0, 1238, 1000, 1, 0, 0, 0, 1238, 1004, 1, 0, 0, 0, 1238, 1018, 1, 0, 0, 0, 1238, 1032, 1, 0, 0, 0, 1238, 1042, 1, 0, 0, 0, 1238, 1054, 1, 0, 0, 0, 1238, 1058, 1, 0, 0, 0, 1238, 1065, 1, 0, 0, 0, 1238, 1074, 1, 0, 0, 0, 1238, 1081, 1, 0, 0, 0, 1238, 1083, 1, 0, 0, 0, 1238, 1085, 1, 0, 0, 0, 1238, 1099, 1, 0, 0, 0, 1238, 1109, 1, 0, 0, 0, 1238, 1113, 1, 0, 0, 0, 1238, 1116, 1, 0, 0, 0, 1238, 1122, 1, 0, 0, 0, 1238, 1125, 1, 0, 0, 0, 1238, 1137, 1, 0, 0, 0, 1238, 1141, 1, 0, 0, 0, 1238, 1145, 1, 0, 0, 0, 1238, 1150, 1, 0, 0, 0, 1238, 1153, 1, 0, 0, 0, 1238, 1166, 1, 0, 0, 0, 1238, 1180, 1, 0, 0, 0, 1238, 1183, 1, 0, 0, 0, 1238, 1186, 1, 0, 0, 0, 1238, 1189, 1, 0, 0, 0, 1238, 1196, 1, 0, 0, 0, 1238, 1210, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1233, 1, 0, 0, 0, 1239, 17, 1, 0, 0, 0, 1240, 1242, 3, 20, 10, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 3, 22, 11, 0, 1244, 19, 1, 0, 0, 0, 1245, 1246, 5, 304, 0, 0, 1246, 1251, 3, 230, 115, 0, 1247, 1248, 5, 3, 0, 0, 1248, 1250, 3, 230, 115, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 21, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1256, 3, 24, 12, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 3, 40, 20, 0, 1258, 23, 1, 0, 0, 0, 1259, 1261, 5, 304, 0, 0, 1260, 1262, 5, 221, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1268, 3, 72, 36, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1267, 3, 72, 36, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 25, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1274, 3, 28, 14, 0, 1272, 1274, 3, 30, 15, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 27, 1, 0, 0, 0, 1275, 1276, 3, 286, 143, 0, 1276, 1279, 3, 190, 95, 0, 1277, 1278, 5, 182, 0, 0, 1278, 1280, 5, 183, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 5, 46, 0, 0, 1282, 1284, 3, 174, 87, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1286, 5, 304, 0, 0, 1286, 1288, 3, 32, 16, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 29, 1, 0, 0, 0, 1289, 1290, 5, 154, 0, 0, 1290, 1293, 3, 262, 131, 0, 1291, 1292, 7, 3, 0, 0, 1292, 1294, 5, 216, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 31, 1, 0, 0, 0, 1295, 1296, 5, 1, 0, 0, 1296, 1297, 3, 34, 17, 0, 1297, 1298, 5, 2, 0, 0, 1298, 33, 1, 0, 0, 0, 1299, 1304, 3, 36, 18, 0, 1300, 1301, 5, 3, 0, 0, 1301, 1303, 3, 36, 18, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1306, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 35, 1, 0, 0, 0, 1306, 1304, 1, 0, 0, 0, 1307, 1308, 3, 302, 151, 0, 1308, 1309, 5, 312, 0, 0, 1309, 1310, 3, 38, 19, 0, 1310, 37, 1, 0, 0, 0, 1311, 1314, 5, 70, 0, 0, 1312, 1314, 3, 142, 71, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1312, 1, 0, 0, 0, 1314, 39, 1, 0, 0, 0, 1315, 1326, 3, 46, 23, 0, 1316, 1317, 5, 195, 0, 0, 1317, 1318, 5, 36, 0, 0, 1318, 1323, 3, 50, 25, 0, 1319, 1320, 5, 3, 0, 0, 1320, 1322, 3, 50, 25, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1325, 1, 0, 0, 0, 1323, 1321, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1327, 1, 0, 0, 0, 1325, 1323, 1, 0, 0, 0, 1326, 1316, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1333, 1, 0, 0, 0, 1328, 1329, 5, 188, 0, 0, 1329, 1331, 3, 44, 22, 0, 1330, 1332, 7, 4, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1328, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1348, 1, 0, 0, 0, 1335, 1336, 5, 155, 0, 0, 1336, 1349, 3, 42, 21, 0, 1337, 1338, 5, 98, 0, 0, 1338, 1340, 7, 5, 0, 0, 1339, 1341, 3, 44, 22, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1346, 7, 4, 0, 0, 1343, 1347, 5, 192, 0, 0, 1344, 1345, 5, 304, 0, 0, 1345, 1347, 5, 266, 0, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1335, 1, 0, 0, 0, 1348, 1337, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 41, 1, 0, 0, 0, 1350, 1353, 5, 22, 0, 0, 1351, 1353, 3, 44, 22, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 43, 1, 0, 0, 0, 1354, 1355, 7, 6, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1357, 6, 23, -1, 0, 1357, 1358, 3, 48, 24, 0, 1358, 1373, 1, 0, 0, 0, 1359, 1360, 10, 2, 0, 0, 1360, 1362, 5, 128, 0, 0, 1361, 1363, 3, 74, 37, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1372, 3, 46, 23, 3, 1365, 1366, 10, 1, 0, 0, 1366, 1368, 7, 7, 0, 0, 1367, 1369, 3, 74, 37, 0, 1368, 1367, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 3, 46, 23, 2, 1371, 1359, 1, 0, 0, 0, 1371, 1365, 1, 0, 0, 0, 1372, 1375, 1, 0, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 47, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1376, 1393, 3, 52, 26, 0, 1377, 1378, 5, 260, 0, 0, 1378, 1393, 3, 262, 131, 0, 1379, 1380, 5, 296, 0, 0, 1380, 1385, 3, 142, 71, 0, 1381, 1382, 5, 3, 0, 0, 1382, 1384, 3, 142, 71, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1387, 1, 0, 0, 0, 1385, 1383, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1393, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1389, 5, 1, 0, 0, 1389, 1390, 3, 40, 20, 0, 1390, 1391, 5, 2, 0, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1376, 1, 0, 0, 0, 1392, 1377, 1, 0, 0, 0, 1392, 1379, 1, 0, 0, 0, 1392, 1388, 1, 0, 0, 0, 1393, 49, 1, 0, 0, 0, 1394, 1397, 3, 282, 141, 0, 1395, 1397, 3, 142, 71, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1395, 1, 0, 0, 0, 1397, 1399, 1, 0, 0, 0, 1398, 1400, 7, 8, 0, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1403, 1, 0, 0, 0, 1401, 1402, 5, 185, 0, 0, 1402, 1404, 7, 9, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 51, 1, 0, 0, 0, 1405, 1407, 5, 248, 0, 0, 1406, 1408, 3, 74, 37, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1414, 3, 76, 38, 0, 1410, 1411, 5, 3, 0, 0, 1411, 1413, 3, 76, 38, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1416, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1426, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1418, 5, 105, 0, 0, 1418, 1423, 3, 78, 39, 0, 1419, 1420, 5, 3, 0, 0, 1420, 1422, 3, 78, 39, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1417, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1429, 1, 0, 0, 0, 1428, 1430, 3, 54, 27, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1434, 1, 0, 0, 0, 1431, 1432, 5, 114, 0, 0, 1432, 1433, 5, 36, 0, 0, 1433, 1435, 3, 58, 29, 0, 1434, 1431, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1438, 3, 56, 28, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1448, 1, 0, 0, 0, 1439, 1440, 5, 303, 0, 0, 1440, 1445, 3, 68, 34, 0, 1441, 1442, 5, 3, 0, 0, 1442, 1444, 3, 68, 34, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1447, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1439, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 53, 1, 0, 0, 0, 1450, 1451, 5, 301, 0, 0, 1451, 1452, 3, 144, 72, 0, 1452, 55, 1, 0, 0, 0, 1453, 1454, 5, 117, 0, 0, 1454, 1455, 3, 144, 72, 0, 1455, 57, 1, 0, 0, 0, 1456, 1458, 3, 74, 37, 0, 1457, 1456, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1464, 3, 62, 31, 0, 1460, 1461, 5, 3, 0, 0, 1461, 1463, 3, 62, 31, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 59, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1472, 3, 142, 71, 0, 1468, 1469, 5, 3, 0, 0, 1469, 1471, 3, 142, 71, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 61, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1516, 3, 64, 32, 0, 1476, 1477, 5, 238, 0, 0, 1477, 1486, 5, 1, 0, 0, 1478, 1483, 3, 64, 32, 0, 1479, 1480, 5, 3, 0, 0, 1480, 1482, 3, 64, 32, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1478, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1516, 5, 2, 0, 0, 1489, 1490, 5, 55, 0, 0, 1490, 1499, 5, 1, 0, 0, 1491, 1496, 3, 64, 32, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 64, 32, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1491, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1516, 5, 2, 0, 0, 1502, 1503, 5, 115, 0, 0, 1503, 1504, 5, 252, 0, 0, 1504, 1505, 5, 1, 0, 0, 1505, 1510, 3, 64, 32, 0, 1506, 1507, 5, 3, 0, 0, 1507, 1509, 3, 64, 32, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1512, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1514, 5, 2, 0, 0, 1514, 1516, 1, 0, 0, 0, 1515, 1475, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1489, 1, 0, 0, 0, 1515, 1502, 1, 0, 0, 0, 1516, 63, 1, 0, 0, 0, 1517, 1526, 5, 1, 0, 0, 1518, 1523, 3, 66, 33, 0, 1519, 1520, 5, 3, 0, 0, 1520, 1522, 3, 66, 33, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1527, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1518, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1531, 5, 2, 0, 0, 1529, 1531, 3, 66, 33, 0, 1530, 1517, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 65, 1, 0, 0, 0, 1532, 1535, 3, 282, 141, 0, 1533, 1535, 3, 142, 71, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1533, 1, 0, 0, 0, 1535, 67, 1, 0, 0, 0, 1536, 1537, 3, 302, 151, 0, 1537, 1538, 5, 28, 0, 0, 1538, 1539, 5, 1, 0, 0, 1539, 1540, 3, 70, 35, 0, 1540, 1541, 5, 2, 0, 0, 1541, 69, 1, 0, 0, 0, 1542, 1544, 3, 302, 151, 0, 1543, 1542, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1548, 1, 0, 0, 0, 1545, 1546, 5, 201, 0, 0, 1546, 1547, 5, 36, 0, 0, 1547, 1549, 3, 60, 30, 0, 1548, 1545, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1560, 1, 0, 0, 0, 1550, 1551, 5, 195, 0, 0, 1551, 1552, 5, 36, 0, 0, 1552, 1557, 3, 50, 25, 0, 1553, 1554, 5, 3, 0, 0, 1554, 1556, 3, 50, 25, 0, 1555, 1553, 1, 0, 0, 0, 1556, 1559, 1, 0, 0, 0, 1557, 1555, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1560, 1550, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1563, 1, 0, 0, 0, 1562, 1564, 3, 204, 102, 0, 1563, 1562, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 71, 1, 0, 0, 0, 1565, 1567, 3, 302, 151, 0, 1566, 1568, 3, 114, 57, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 28, 0, 0, 1570, 1571, 5, 1, 0, 0, 1571, 1572, 3, 22, 11, 0, 1572, 1573, 5, 2, 0, 0, 1573, 73, 1, 0, 0, 0, 1574, 1575, 7, 10, 0, 0, 1575, 75, 1, 0, 0, 0, 1576, 1579, 3, 282, 141, 0, 1577, 1579, 3, 142, 71, 0, 1578, 1576, 1, 0, 0, 0, 1578, 1577, 1, 0, 0, 0, 1579, 1584, 1, 0, 0, 0, 1580, 1582, 5, 28, 0, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 3, 302, 151, 0, 1584, 1581, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1595, 1, 0, 0, 0, 1586, 1587, 3, 150, 75, 0, 1587, 1588, 5, 4, 0, 0, 1588, 1591, 5, 320, 0, 0, 1589, 1590, 5, 28, 0, 0, 1590, 1592, 3, 114, 57, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1595, 5, 320, 0, 0, 1594, 1578, 1, 0, 0, 0, 1594, 1586, 1, 0, 0, 0, 1594, 1593, 1, 0, 0, 0, 1595, 77, 1, 0, 0, 0, 1596, 1597, 6, 39, -1, 0, 1597, 1598, 3, 84, 42, 0, 1598, 1617, 1, 0, 0, 0, 1599, 1613, 10, 2, 0, 0, 1600, 1601, 5, 54, 0, 0, 1601, 1602, 5, 136, 0, 0, 1602, 1614, 3, 84, 42, 0, 1603, 1604, 3, 80, 40, 0, 1604, 1605, 5, 136, 0, 0, 1605, 1606, 3, 78, 39, 0, 1606, 1607, 3, 82, 41, 0, 1607, 1614, 1, 0, 0, 0, 1608, 1609, 5, 172, 0, 0, 1609, 1610, 3, 80, 40, 0, 1610, 1611, 5, 136, 0, 0, 1611, 1612, 3, 84, 42, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1600, 1, 0, 0, 0, 1613, 1603, 1, 0, 0, 0, 1613, 1608, 1, 0, 0, 0, 1614, 1616, 1, 0, 0, 0, 1615, 1599, 1, 0, 0, 0, 1616, 1619, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 79, 1, 0, 0, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1622, 5, 125, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1636, 1, 0, 0, 0, 1623, 1625, 5, 152, 0, 0, 1624, 1626, 5, 197, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1636, 1, 0, 0, 0, 1627, 1629, 5, 234, 0, 0, 1628, 1630, 5, 197, 0, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1636, 1, 0, 0, 0, 1631, 1633, 5, 106, 0, 0, 1632, 1634, 5, 197, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1623, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 81, 1, 0, 0, 0, 1637, 1638, 5, 190, 0, 0, 1638, 1652, 3, 144, 72, 0, 1639, 1640, 5, 290, 0, 0, 1640, 1641, 5, 1, 0, 0, 1641, 1646, 3, 302, 151, 0, 1642, 1643, 5, 3, 0, 0, 1643, 1645, 3, 302, 151, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1648, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1650, 5, 2, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1651, 1639, 1, 0, 0, 0, 1652, 83, 1, 0, 0, 0, 1653, 1660, 3, 94, 47, 0, 1654, 1655, 5, 262, 0, 0, 1655, 1656, 3, 86, 43, 0, 1656, 1657, 5, 1, 0, 0, 1657, 1658, 3, 142, 71, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1661, 1, 0, 0, 0, 1660, 1654, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 85, 1, 0, 0, 0, 1662, 1663, 7, 11, 0, 0, 1663, 87, 1, 0, 0, 0, 1664, 1665, 7, 12, 0, 0, 1665, 89, 1, 0, 0, 0, 1666, 1673, 5, 89, 0, 0, 1667, 1669, 5, 274, 0, 0, 1668, 1670, 3, 174, 87, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 3, 92, 46, 0, 1672, 1666, 1, 0, 0, 0, 1672, 1667, 1, 0, 0, 0, 1673, 91, 1, 0, 0, 0, 1674, 1675, 5, 304, 0, 0, 1675, 1679, 5, 51, 0, 0, 1676, 1677, 5, 306, 0, 0, 1677, 1679, 5, 51, 0, 0, 1678, 1674, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 93, 1, 0, 0, 0, 1680, 1756, 3, 108, 54, 0, 1681, 1682, 5, 166, 0, 0, 1682, 1686, 5, 1, 0, 0, 1683, 1684, 5, 201, 0, 0, 1684, 1685, 5, 36, 0, 0, 1685, 1687, 3, 60, 30, 0, 1686, 1683, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1698, 1, 0, 0, 0, 1688, 1689, 5, 195, 0, 0, 1689, 1690, 5, 36, 0, 0, 1690, 1695, 3, 50, 25, 0, 1691, 1692, 5, 3, 0, 0, 1692, 1694, 3, 50, 25, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1688, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1709, 1, 0, 0, 0, 1700, 1701, 5, 168, 0, 0, 1701, 1706, 3, 96, 48, 0, 1702, 1703, 5, 3, 0, 0, 1703, 1705, 3, 96, 48, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1700, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 98, 49, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1717, 1, 0, 0, 0, 1714, 1715, 5, 21, 0, 0, 1715, 1716, 5, 163, 0, 0, 1716, 1718, 3, 102, 51, 0, 1717, 1714, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1721, 7, 13, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 206, 0, 0, 1723, 1724, 5, 1, 0, 0, 1724, 1725, 3, 210, 105, 0, 1725, 1735, 5, 2, 0, 0, 1726, 1727, 5, 257, 0, 0, 1727, 1732, 3, 104, 52, 0, 1728, 1729, 5, 3, 0, 0, 1729, 1731, 3, 104, 52, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 5, 71, 0, 0, 1738, 1743, 3, 106, 53, 0, 1739, 1740, 5, 3, 0, 0, 1740, 1742, 3, 106, 53, 0, 1741, 1739, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1754, 5, 2, 0, 0, 1747, 1749, 5, 28, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 3, 302, 151, 0, 1751, 1753, 3, 114, 57, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1681, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 95, 1, 0, 0, 0, 1758, 1759, 3, 142, 71, 0, 1759, 1760, 5, 28, 0, 0, 1760, 1761, 3, 302, 151, 0, 1761, 97, 1, 0, 0, 0, 1762, 1763, 5, 191, 0, 0, 1763, 1764, 5, 239, 0, 0, 1764, 1765, 5, 207, 0, 0, 1765, 1774, 5, 163, 0, 0, 1766, 1767, 5, 22, 0, 0, 1767, 1768, 5, 240, 0, 0, 1768, 1769, 5, 207, 0, 0, 1769, 1771, 5, 163, 0, 0, 1770, 1772, 3, 100, 50, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1762, 1, 0, 0, 0, 1773, 1766, 1, 0, 0, 0, 1774, 99, 1, 0, 0, 0, 1775, 1776, 5, 253, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1785, 5, 165, 0, 0, 1778, 1779, 5, 189, 0, 0, 1779, 1780, 5, 85, 0, 0, 1780, 1785, 5, 165, 0, 0, 1781, 1782, 5, 304, 0, 0, 1782, 1783, 5, 284, 0, 0, 1783, 1785, 5, 240, 0, 0, 1784, 1775, 1, 0, 0, 0, 1784, 1778, 1, 0, 0, 0, 1784, 1781, 1, 0, 0, 0, 1785, 101, 1, 0, 0, 0, 1786, 1787, 5, 5, 0, 0, 1787, 1788, 5, 269, 0, 0, 1788, 1789, 5, 174, 0, 0, 1789, 1806, 5, 239, 0, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1792, 5, 204, 0, 0, 1792, 1793, 5, 148, 0, 0, 1793, 1806, 5, 239, 0, 0, 1794, 1795, 5, 5, 0, 0, 1795, 1796, 5, 269, 0, 0, 1796, 1797, 5, 101, 0, 0, 1797, 1806, 3, 302, 151, 0, 1798, 1799, 5, 5, 0, 0, 1799, 1800, 5, 269, 0, 0, 1800, 1801, 5, 148, 0, 0, 1801, 1806, 3, 302, 151, 0, 1802, 1803, 5, 5, 0, 0, 1803, 1804, 5, 269, 0, 0, 1804, 1806, 3, 302, 151, 0, 1805, 1786, 1, 0, 0, 0, 1805, 1790, 1, 0, 0, 0, 1805, 1794, 1, 0, 0, 0, 1805, 1798, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 103, 1, 0, 0, 0, 1807, 1808, 3, 302, 151, 0, 1808, 1809, 5, 312, 0, 0, 1809, 1810, 5, 1, 0, 0, 1810, 1815, 3, 302, 151, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1814, 3, 302, 151, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 2, 0, 0, 1819, 105, 1, 0, 0, 0, 1820, 1821, 3, 302, 151, 0, 1821, 1822, 5, 28, 0, 0, 1822, 1823, 3, 142, 71, 0, 1823, 107, 1, 0, 0, 0, 1824, 1832, 3, 116, 58, 0, 1825, 1827, 5, 28, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 3, 302, 151, 0, 1829, 1831, 3, 114, 57, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 109, 1, 0, 0, 0, 1834, 1835, 5, 1, 0, 0, 1835, 1840, 3, 286, 143, 0, 1836, 1837, 5, 3, 0, 0, 1837, 1839, 3, 286, 143, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 2, 0, 0, 1844, 111, 1, 0, 0, 0, 1845, 1846, 5, 1, 0, 0, 1846, 1851, 3, 282, 141, 0, 1847, 1848, 5, 3, 0, 0, 1848, 1850, 3, 282, 141, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 2, 0, 0, 1855, 113, 1, 0, 0, 0, 1856, 1857, 5, 1, 0, 0, 1857, 1862, 3, 302, 151, 0, 1858, 1859, 5, 3, 0, 0, 1859, 1861, 3, 302, 151, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1864, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1866, 5, 2, 0, 0, 1866, 115, 1, 0, 0, 0, 1867, 1869, 3, 260, 130, 0, 1868, 1870, 3, 290, 145, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1939, 1, 0, 0, 0, 1871, 1872, 5, 1, 0, 0, 1872, 1873, 3, 22, 11, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1939, 1, 0, 0, 0, 1875, 1876, 5, 285, 0, 0, 1876, 1877, 5, 1, 0, 0, 1877, 1882, 3, 142, 71, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 142, 71, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 5, 2, 0, 0, 1886, 1887, 5, 304, 0, 0, 1887, 1889, 5, 196, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1939, 1, 0, 0, 0, 1890, 1891, 5, 149, 0, 0, 1891, 1892, 5, 1, 0, 0, 1892, 1893, 3, 22, 11, 0, 1893, 1894, 5, 2, 0, 0, 1894, 1939, 1, 0, 0, 0, 1895, 1896, 5, 260, 0, 0, 1896, 1897, 5, 1, 0, 0, 1897, 1898, 3, 128, 64, 0, 1898, 1899, 5, 2, 0, 0, 1899, 1939, 1, 0, 0, 0, 1900, 1901, 5, 1, 0, 0, 1901, 1902, 3, 78, 39, 0, 1902, 1903, 5, 2, 0, 0, 1903, 1939, 1, 0, 0, 0, 1904, 1905, 5, 142, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1907, 3, 152, 76, 0, 1907, 1908, 5, 45, 0, 0, 1908, 1909, 5, 1, 0, 0, 1909, 1914, 3, 118, 59, 0, 1910, 1911, 5, 3, 0, 0, 1911, 1913, 3, 118, 59, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1917, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1917, 1929, 5, 2, 0, 0, 1918, 1919, 5, 210, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 120, 60, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1930, 1, 0, 0, 0, 1923, 1924, 5, 210, 0, 0, 1924, 1925, 5, 70, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 126, 63, 0, 1927, 1928, 5, 2, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1918, 1, 0, 0, 0, 1929, 1923, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1934, 1, 0, 0, 0, 1931, 1932, 7, 14, 0, 0, 1932, 1933, 5, 190, 0, 0, 1933, 1935, 5, 89, 0, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 2, 0, 0, 1937, 1939, 1, 0, 0, 0, 1938, 1867, 1, 0, 0, 0, 1938, 1871, 1, 0, 0, 0, 1938, 1875, 1, 0, 0, 0, 1938, 1890, 1, 0, 0, 0, 1938, 1895, 1, 0, 0, 0, 1938, 1900, 1, 0, 0, 0, 1938, 1904, 1, 0, 0, 0, 1939, 117, 1, 0, 0, 0, 1940, 1941, 3, 302, 151, 0, 1941, 1942, 5, 103, 0, 0, 1942, 1943, 5, 196, 0, 0, 1943, 2018, 1, 0, 0, 0, 1944, 1945, 3, 302, 151, 0, 1945, 1948, 3, 190, 95, 0, 1946, 1947, 5, 205, 0, 0, 1947, 1949, 3, 174, 87, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1954, 1, 0, 0, 0, 1950, 1951, 3, 162, 81, 0, 1951, 1952, 5, 190, 0, 0, 1952, 1953, 5, 85, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1950, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1960, 1, 0, 0, 0, 1956, 1957, 3, 162, 81, 0, 1957, 1958, 5, 190, 0, 0, 1958, 1959, 5, 89, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1956, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2018, 1, 0, 0, 0, 1962, 1963, 3, 302, 151, 0, 1963, 1964, 3, 190, 95, 0, 1964, 1965, 5, 104, 0, 0, 1965, 1968, 3, 156, 78, 0, 1966, 1967, 5, 205, 0, 0, 1967, 1969, 3, 174, 87, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1973, 1, 0, 0, 0, 1970, 1971, 3, 164, 82, 0, 1971, 1972, 5, 308, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1970, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1982, 1, 0, 0, 0, 1975, 1976, 7, 15, 0, 0, 1976, 1980, 5, 218, 0, 0, 1977, 1978, 5, 190, 0, 0, 1978, 1979, 5, 242, 0, 0, 1979, 1981, 5, 264, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1975, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1988, 1, 0, 0, 0, 1984, 1985, 3, 166, 83, 0, 1985, 1986, 5, 190, 0, 0, 1986, 1987, 5, 85, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1984, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1994, 1, 0, 0, 0, 1990, 1991, 3, 166, 83, 0, 1991, 1992, 5, 190, 0, 0, 1992, 1993, 5, 89, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1990, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2018, 1, 0, 0, 0, 1996, 1998, 5, 173, 0, 0, 1997, 1999, 5, 205, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 3, 174, 87, 0, 2001, 2002, 5, 28, 0, 0, 2002, 2004, 3, 302, 151, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 5, 45, 0, 0, 2006, 2007, 5, 1, 0, 0, 2007, 2012, 3, 118, 59, 0, 2008, 2009, 5, 3, 0, 0, 2009, 2011, 3, 118, 59, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2014, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2016, 5, 2, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 1940, 1, 0, 0, 0, 2017, 1944, 1, 0, 0, 0, 2017, 1962, 1, 0, 0, 0, 2017, 1996, 1, 0, 0, 0, 2018, 119, 1, 0, 0, 0, 2019, 2045, 3, 122, 61, 0, 2020, 2021, 3, 122, 61, 0, 2021, 2022, 7, 16, 0, 0, 2022, 2023, 3, 124, 62, 0, 2023, 2045, 1, 0, 0, 0, 2024, 2025, 3, 124, 62, 0, 2025, 2026, 5, 281, 0, 0, 2026, 2031, 3, 124, 62, 0, 2027, 2028, 5, 281, 0, 0, 2028, 2030, 3, 124, 62, 0, 2029, 2027, 1, 0, 0, 0, 2030, 2033, 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2045, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2035, 3, 124, 62, 0, 2035, 2036, 5, 54, 0, 0, 2036, 2041, 3, 124, 62, 0, 2037, 2038, 5, 54, 0, 0, 2038, 2040, 3, 124, 62, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2043, 1, 0, 0, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2045, 1, 0, 0, 0, 2043, 2041, 1, 0, 0, 0, 2044, 2019, 1, 0, 0, 0, 2044, 2020, 1, 0, 0, 0, 2044, 2024, 1, 0, 0, 0, 2044, 2034, 1, 0, 0, 0, 2045, 121, 1, 0, 0, 0, 2046, 2047, 3, 302, 151, 0, 2047, 123, 1, 0, 0, 0, 2048, 2054, 3, 122, 61, 0, 2049, 2050, 5, 1, 0, 0, 2050, 2051, 3, 120, 60, 0, 2051, 2052, 5, 2, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 2048, 1, 0, 0, 0, 2053, 2049, 1, 0, 0, 0, 2054, 125, 1, 0, 0, 0, 2055, 2058, 7, 16, 0, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 7, 17, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2066, 1, 0, 0, 0, 2060, 2063, 7, 17, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 7, 16, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2055, 1, 0, 0, 0, 2065, 2060, 1, 0, 0, 0, 2066, 127, 1, 0, 0, 0, 2067, 2068, 3, 278, 139, 0, 2068, 2077, 5, 1, 0, 0, 2069, 2074, 3, 130, 65, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 3, 130, 65, 0, 2072, 2070, 1, 0, 0, 0, 2073, 2076, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2077, 2069, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2088, 1, 0, 0, 0, 2079, 2080, 5, 52, 0, 0, 2080, 2085, 3, 140, 70, 0, 2081, 2082, 5, 3, 0, 0, 2082, 2084, 3, 140, 70, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2079, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 5, 2, 0, 0, 2091, 129, 1, 0, 0, 0, 2092, 2093, 3, 302, 151, 0, 2093, 2094, 5, 6, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2092, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2100, 1, 0, 0, 0, 2097, 2101, 3, 132, 66, 0, 2098, 2101, 3, 136, 68, 0, 2099, 2101, 3, 142, 71, 0, 2100, 2097, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 131, 1, 0, 0, 0, 2102, 2113, 3, 134, 67, 0, 2103, 2104, 5, 201, 0, 0, 2104, 2111, 5, 36, 0, 0, 2105, 2107, 5, 1, 0, 0, 2106, 2108, 3, 60, 30, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 5, 2, 0, 0, 2110, 2112, 3, 142, 71, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2103, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2121, 1, 0, 0, 0, 2115, 2116, 5, 217, 0, 0, 2116, 2117, 5, 300, 0, 0, 2117, 2122, 5, 85, 0, 0, 2118, 2119, 5, 144, 0, 0, 2119, 2120, 5, 300, 0, 0, 2120, 2122, 5, 85, 0, 0, 2121, 2115, 1, 0, 0, 0, 2121, 2118, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2139, 1, 0, 0, 0, 2123, 2124, 5, 195, 0, 0, 2124, 2137, 5, 36, 0, 0, 2125, 2126, 5, 1, 0, 0, 2126, 2131, 3, 50, 25, 0, 2127, 2128, 5, 3, 0, 0, 2128, 2130, 3, 50, 25, 0, 2129, 2127, 1, 0, 0, 0, 2130, 2133, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2135, 5, 2, 0, 0, 2135, 2138, 1, 0, 0, 0, 2136, 2138, 3, 50, 25, 0, 2137, 2125, 1, 0, 0, 0, 2137, 2136, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2123, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 133, 1, 0, 0, 0, 2141, 2142, 5, 260, 0, 0, 2142, 2143, 5, 1, 0, 0, 2143, 2144, 3, 262, 131, 0, 2144, 2152, 5, 2, 0, 0, 2145, 2147, 5, 28, 0, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 302, 151, 0, 2149, 2151, 3, 114, 57, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 1, 0, 0, 0, 2152, 2146, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2168, 1, 0, 0, 0, 2154, 2155, 5, 260, 0, 0, 2155, 2156, 5, 1, 0, 0, 2156, 2157, 3, 22, 11, 0, 2157, 2165, 5, 2, 0, 0, 2158, 2160, 5, 28, 0, 0, 2159, 2158, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 3, 302, 151, 0, 2162, 2164, 3, 114, 57, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2159, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2141, 1, 0, 0, 0, 2167, 2154, 1, 0, 0, 0, 2168, 135, 1, 0, 0, 0, 2169, 2170, 5, 77, 0, 0, 2170, 2171, 5, 1, 0, 0, 2171, 2176, 3, 138, 69, 0, 2172, 2173, 5, 3, 0, 0, 2173, 2175, 3, 138, 69, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2180, 5, 2, 0, 0, 2180, 2188, 1, 0, 0, 0, 2181, 2182, 5, 41, 0, 0, 2182, 2183, 5, 1, 0, 0, 2183, 2184, 5, 183, 0, 0, 2184, 2185, 5, 28, 0, 0, 2185, 2186, 5, 77, 0, 0, 2186, 2188, 5, 2, 0, 0, 2187, 2169, 1, 0, 0, 0, 2187, 2181, 1, 0, 0, 0, 2188, 137, 1, 0, 0, 0, 2189, 2191, 3, 302, 151, 0, 2190, 2192, 3, 190, 95, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 139, 1, 0, 0, 0, 2193, 2194, 5, 1, 0, 0, 2194, 2195, 3, 288, 144, 0, 2195, 2196, 5, 3, 0, 0, 2196, 2201, 3, 288, 144, 0, 2197, 2198, 5, 3, 0, 0, 2198, 2200, 3, 288, 144, 0, 2199, 2197, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2204, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 2, 0, 0, 2205, 141, 1, 0, 0, 0, 2206, 2207, 3, 144, 72, 0, 2207, 143, 1, 0, 0, 0, 2208, 2209, 6, 72, -1, 0, 2209, 2211, 3, 148, 74, 0, 2210, 2212, 3, 146, 73, 0, 2211, 2210, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2216, 1, 0, 0, 0, 2213, 2214, 5, 182, 0, 0, 2214, 2216, 3, 144, 72, 3, 2215, 2208, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2225, 1, 0, 0, 0, 2217, 2218, 10, 2, 0, 0, 2218, 2219, 5, 25, 0, 0, 2219, 2224, 3, 144, 72, 3, 2220, 2221, 10, 1, 0, 0, 2221, 2222, 5, 194, 0, 0, 2222, 2224, 3, 144, 72, 2, 2223, 2217, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 145, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2229, 3, 178, 89, 0, 2229, 2230, 3, 148, 74, 0, 2230, 2290, 1, 0, 0, 0, 2231, 2232, 3, 178, 89, 0, 2232, 2233, 3, 180, 90, 0, 2233, 2234, 5, 1, 0, 0, 2234, 2235, 3, 22, 11, 0, 2235, 2236, 5, 2, 0, 0, 2236, 2290, 1, 0, 0, 0, 2237, 2239, 5, 182, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 5, 34, 0, 0, 2241, 2242, 3, 148, 74, 0, 2242, 2243, 5, 25, 0, 0, 2243, 2244, 3, 148, 74, 0, 2244, 2290, 1, 0, 0, 0, 2245, 2247, 5, 182, 0, 0, 2246, 2245, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2249, 5, 122, 0, 0, 2249, 2250, 5, 1, 0, 0, 2250, 2255, 3, 142, 71, 0, 2251, 2252, 5, 3, 0, 0, 2252, 2254, 3, 142, 71, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2259, 5, 2, 0, 0, 2259, 2290, 1, 0, 0, 0, 2260, 2262, 5, 182, 0, 0, 2261, 2260, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2264, 5, 122, 0, 0, 2264, 2265, 5, 1, 0, 0, 2265, 2266, 3, 22, 11, 0, 2266, 2267, 5, 2, 0, 0, 2267, 2290, 1, 0, 0, 0, 2268, 2270, 5, 182, 0, 0, 2269, 2268, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 5, 154, 0, 0, 2272, 2275, 3, 148, 74, 0, 2273, 2274, 5, 90, 0, 0, 2274, 2276, 3, 148, 74, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2290, 1, 0, 0, 0, 2277, 2279, 5, 133, 0, 0, 2278, 2280, 5, 182, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2290, 5, 183, 0, 0, 2282, 2284, 5, 133, 0, 0, 2283, 2285, 5, 182, 0, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 5, 79, 0, 0, 2287, 2288, 5, 105, 0, 0, 2288, 2290, 3, 148, 74, 0, 2289, 2228, 1, 0, 0, 0, 2289, 2231, 1, 0, 0, 0, 2289, 2238, 1, 0, 0, 0, 2289, 2246, 1, 0, 0, 0, 2289, 2261, 1, 0, 0, 0, 2289, 2269, 1, 0, 0, 0, 2289, 2277, 1, 0, 0, 0, 2289, 2282, 1, 0, 0, 0, 2290, 147, 1, 0, 0, 0, 2291, 2292, 6, 74, -1, 0, 2292, 2296, 3, 150, 75, 0, 2293, 2294, 7, 18, 0, 0, 2294, 2296, 3, 148, 74, 4, 2295, 2291, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2311, 1, 0, 0, 0, 2297, 2298, 10, 3, 0, 0, 2298, 2299, 7, 19, 0, 0, 2299, 2310, 3, 148, 74, 4, 2300, 2301, 10, 2, 0, 0, 2301, 2302, 7, 18, 0, 0, 2302, 2310, 3, 148, 74, 3, 2303, 2304, 10, 1, 0, 0, 2304, 2305, 5, 323, 0, 0, 2305, 2310, 3, 148, 74, 2, 2306, 2307, 10, 5, 0, 0, 2307, 2308, 5, 30, 0, 0, 2308, 2310, 3, 176, 88, 0, 2309, 2297, 1, 0, 0, 0, 2309, 2300, 1, 0, 0, 0, 2309, 2303, 1, 0, 0, 0, 2309, 2306, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 149, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 6, 75, -1, 0, 2315, 2768, 5, 183, 0, 0, 2316, 2768, 3, 184, 92, 0, 2317, 2318, 3, 302, 151, 0, 2318, 2319, 3, 174, 87, 0, 2319, 2768, 1, 0, 0, 0, 2320, 2321, 5, 82, 0, 0, 2321, 2322, 5, 213, 0, 0, 2322, 2768, 3, 174, 87, 0, 2323, 2768, 3, 304, 152, 0, 2324, 2768, 3, 182, 91, 0, 2325, 2768, 3, 174, 87, 0, 2326, 2768, 5, 328, 0, 0, 2327, 2768, 5, 324, 0, 0, 2328, 2329, 5, 211, 0, 0, 2329, 2330, 5, 1, 0, 0, 2330, 2331, 3, 148, 74, 0, 2331, 2332, 5, 122, 0, 0, 2332, 2333, 3, 148, 74, 0, 2333, 2334, 5, 2, 0, 0, 2334, 2768, 1, 0, 0, 0, 2335, 2336, 5, 1, 0, 0, 2336, 2339, 3, 142, 71, 0, 2337, 2338, 5, 3, 0, 0, 2338, 2340, 3, 142, 71, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 5, 2, 0, 0, 2344, 2768, 1, 0, 0, 0, 2345, 2346, 5, 239, 0, 0, 2346, 2347, 5, 1, 0, 0, 2347, 2352, 3, 142, 71, 0, 2348, 2349, 5, 3, 0, 0, 2349, 2351, 3, 142, 71, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2356, 5, 2, 0, 0, 2356, 2768, 1, 0, 0, 0, 2357, 2358, 5, 156, 0, 0, 2358, 2360, 5, 1, 0, 0, 2359, 2361, 3, 74, 37, 0, 2360, 2359, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2365, 3, 142, 71, 0, 2363, 2364, 5, 3, 0, 0, 2364, 2366, 3, 174, 87, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2370, 1, 0, 0, 0, 2367, 2368, 5, 190, 0, 0, 2368, 2369, 5, 200, 0, 0, 2369, 2371, 3, 90, 45, 0, 2370, 2367, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2373, 5, 2, 0, 0, 2373, 2374, 5, 305, 0, 0, 2374, 2375, 5, 114, 0, 0, 2375, 2376, 5, 1, 0, 0, 2376, 2377, 5, 195, 0, 0, 2377, 2378, 5, 36, 0, 0, 2378, 2383, 3, 50, 25, 0, 2379, 2380, 5, 3, 0, 0, 2380, 2382, 3, 50, 25, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 2, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2390, 3, 198, 99, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2768, 1, 0, 0, 0, 2391, 2393, 3, 170, 85, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 3, 278, 139, 0, 2395, 2399, 5, 1, 0, 0, 2396, 2397, 3, 302, 151, 0, 2397, 2398, 5, 4, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2396, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 5, 320, 0, 0, 2402, 2404, 5, 2, 0, 0, 2403, 2405, 3, 198, 99, 0, 2404, 2403, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2408, 3, 202, 101, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2768, 1, 0, 0, 0, 2409, 2411, 3, 170, 85, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 3, 278, 139, 0, 2413, 2425, 5, 1, 0, 0, 2414, 2416, 3, 74, 37, 0, 2415, 2414, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2422, 3, 142, 71, 0, 2418, 2419, 5, 3, 0, 0, 2419, 2421, 3, 142, 71, 0, 2420, 2418, 1, 0, 0, 0, 2421, 2424, 1, 0, 0, 0, 2422, 2420, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2426, 1, 0, 0, 0, 2424, 2422, 1, 0, 0, 0, 2425, 2415, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2437, 1, 0, 0, 0, 2427, 2428, 5, 195, 0, 0, 2428, 2429, 5, 36, 0, 0, 2429, 2434, 3, 50, 25, 0, 2430, 2431, 5, 3, 0, 0, 2431, 2433, 3, 50, 25, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2427, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 5, 2, 0, 0, 2440, 2442, 3, 198, 99, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2447, 1, 0, 0, 0, 2443, 2445, 3, 172, 86, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 3, 202, 101, 0, 2447, 2444, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2768, 1, 0, 0, 0, 2449, 2450, 3, 302, 151, 0, 2450, 2451, 3, 202, 101, 0, 2451, 2768, 1, 0, 0, 0, 2452, 2453, 3, 302, 151, 0, 2453, 2454, 5, 7, 0, 0, 2454, 2455, 3, 142, 71, 0, 2455, 2768, 1, 0, 0, 0, 2456, 2465, 5, 1, 0, 0, 2457, 2462, 3, 302, 151, 0, 2458, 2459, 5, 3, 0, 0, 2459, 2461, 3, 302, 151, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2457, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2468, 5, 2, 0, 0, 2468, 2469, 5, 7, 0, 0, 2469, 2768, 3, 142, 71, 0, 2470, 2471, 5, 1, 0, 0, 2471, 2472, 3, 22, 11, 0, 2472, 2473, 5, 2, 0, 0, 2473, 2768, 1, 0, 0, 0, 2474, 2475, 5, 94, 0, 0, 2475, 2476, 5, 1, 0, 0, 2476, 2477, 3, 22, 11, 0, 2477, 2478, 5, 2, 0, 0, 2478, 2768, 1, 0, 0, 0, 2479, 2480, 5, 40, 0, 0, 2480, 2482, 3, 142, 71, 0, 2481, 2483, 3, 196, 98, 0, 2482, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2487, 5, 84, 0, 0, 2487, 2489, 3, 142, 71, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 88, 0, 0, 2491, 2768, 1, 0, 0, 0, 2492, 2494, 5, 40, 0, 0, 2493, 2495, 3, 196, 98, 0, 2494, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2500, 1, 0, 0, 0, 2498, 2499, 5, 84, 0, 0, 2499, 2501, 3, 142, 71, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 5, 88, 0, 0, 2503, 2768, 1, 0, 0, 0, 2504, 2505, 5, 41, 0, 0, 2505, 2506, 5, 1, 0, 0, 2506, 2507, 3, 142, 71, 0, 2507, 2508, 5, 28, 0, 0, 2508, 2509, 3, 190, 95, 0, 2509, 2510, 5, 2, 0, 0, 2510, 2768, 1, 0, 0, 0, 2511, 2512, 5, 275, 0, 0, 2512, 2513, 5, 1, 0, 0, 2513, 2514, 3, 142, 71, 0, 2514, 2515, 5, 28, 0, 0, 2515, 2516, 3, 190, 95, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2768, 1, 0, 0, 0, 2518, 2519, 5, 27, 0, 0, 2519, 2528, 5, 8, 0, 0, 2520, 2525, 3, 142, 71, 0, 2521, 2522, 5, 3, 0, 0, 2522, 2524, 3, 142, 71, 0, 2523, 2521, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 2529, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2520, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2768, 5, 9, 0, 0, 2531, 2768, 3, 284, 142, 0, 2532, 2768, 5, 58, 0, 0, 2533, 2537, 5, 62, 0, 0, 2534, 2535, 5, 1, 0, 0, 2535, 2536, 5, 329, 0, 0, 2536, 2538, 5, 2, 0, 0, 2537, 2534, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2768, 1, 0, 0, 0, 2539, 2543, 5, 63, 0, 0, 2540, 2541, 5, 1, 0, 0, 2541, 2542, 5, 329, 0, 0, 2542, 2544, 5, 2, 0, 0, 2543, 2540, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2768, 1, 0, 0, 0, 2545, 2549, 5, 158, 0, 0, 2546, 2547, 5, 1, 0, 0, 2547, 2548, 5, 329, 0, 0, 2548, 2550, 5, 2, 0, 0, 2549, 2546, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2768, 1, 0, 0, 0, 2551, 2555, 5, 159, 0, 0, 2552, 2553, 5, 1, 0, 0, 2553, 2554, 5, 329, 0, 0, 2554, 2556, 5, 2, 0, 0, 2555, 2552, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2768, 1, 0, 0, 0, 2557, 2768, 5, 64, 0, 0, 2558, 2768, 5, 57, 0, 0, 2559, 2768, 5, 61, 0, 0, 2560, 2768, 5, 59, 0, 0, 2561, 2562, 5, 272, 0, 0, 2562, 2570, 5, 1, 0, 0, 2563, 2565, 3, 88, 44, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 148, 74, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 5, 105, 0, 0, 2570, 2564, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 3, 148, 74, 0, 2573, 2574, 5, 2, 0, 0, 2574, 2768, 1, 0, 0, 0, 2575, 2576, 5, 272, 0, 0, 2576, 2577, 5, 1, 0, 0, 2577, 2578, 3, 148, 74, 0, 2578, 2579, 5, 3, 0, 0, 2579, 2580, 3, 148, 74, 0, 2580, 2581, 5, 2, 0, 0, 2581, 2768, 1, 0, 0, 0, 2582, 2583, 5, 258, 0, 0, 2583, 2584, 5, 1, 0, 0, 2584, 2585, 3, 148, 74, 0, 2585, 2586, 5, 105, 0, 0, 2586, 2589, 3, 148, 74, 0, 2587, 2588, 5, 103, 0, 0, 2588, 2590, 3, 148, 74, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 5, 2, 0, 0, 2592, 2768, 1, 0, 0, 0, 2593, 2594, 5, 181, 0, 0, 2594, 2595, 5, 1, 0, 0, 2595, 2598, 3, 148, 74, 0, 2596, 2597, 5, 3, 0, 0, 2597, 2599, 3, 188, 94, 0, 2598, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 2, 0, 0, 2601, 2768, 1, 0, 0, 0, 2602, 2603, 5, 96, 0, 0, 2603, 2604, 5, 1, 0, 0, 2604, 2605, 3, 302, 151, 0, 2605, 2606, 5, 105, 0, 0, 2606, 2607, 3, 148, 74, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2768, 1, 0, 0, 0, 2609, 2610, 5, 1, 0, 0, 2610, 2611, 3, 142, 71, 0, 2611, 2612, 5, 2, 0, 0, 2612, 2768, 1, 0, 0, 0, 2613, 2614, 5, 115, 0, 0, 2614, 2623, 5, 1, 0, 0, 2615, 2620, 3, 288, 144, 0, 2616, 2617, 5, 3, 0, 0, 2617, 2619, 3, 288, 144, 0, 2618, 2616, 1, 0, 0, 0, 2619, 2622, 1, 0, 0, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2624, 1, 0, 0, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2615, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2768, 5, 2, 0, 0, 2626, 2627, 5, 139, 0, 0, 2627, 2628, 5, 1, 0, 0, 2628, 2633, 3, 152, 76, 0, 2629, 2630, 3, 160, 80, 0, 2630, 2631, 5, 190, 0, 0, 2631, 2632, 5, 89, 0, 0, 2632, 2634, 1, 0, 0, 0, 2633, 2629, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2768, 1, 0, 0, 0, 2637, 2638, 5, 143, 0, 0, 2638, 2639, 5, 1, 0, 0, 2639, 2642, 3, 152, 76, 0, 2640, 2641, 5, 231, 0, 0, 2641, 2643, 3, 190, 95, 0, 2642, 2640, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2648, 1, 0, 0, 0, 2644, 2645, 3, 162, 81, 0, 2645, 2646, 5, 190, 0, 0, 2646, 2647, 5, 85, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2644, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2654, 1, 0, 0, 0, 2650, 2651, 3, 162, 81, 0, 2651, 2652, 5, 190, 0, 0, 2652, 2653, 5, 89, 0, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2650, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 5, 2, 0, 0, 2657, 2768, 1, 0, 0, 0, 2658, 2659, 5, 141, 0, 0, 2659, 2660, 5, 1, 0, 0, 2660, 2667, 3, 152, 76, 0, 2661, 2662, 5, 231, 0, 0, 2662, 2665, 3, 190, 95, 0, 2663, 2664, 5, 104, 0, 0, 2664, 2666, 3, 156, 78, 0, 2665, 2663, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2661, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2672, 1, 0, 0, 0, 2669, 2670, 3, 164, 82, 0, 2670, 2671, 5, 308, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2669, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2681, 1, 0, 0, 0, 2674, 2675, 7, 15, 0, 0, 2675, 2679, 5, 218, 0, 0, 2676, 2677, 5, 190, 0, 0, 2677, 2678, 5, 242, 0, 0, 2678, 2680, 5, 264, 0, 0, 2679, 2676, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2674, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2687, 1, 0, 0, 0, 2683, 2684, 3, 166, 83, 0, 2684, 2685, 5, 190, 0, 0, 2685, 2686, 5, 85, 0, 0, 2686, 2688, 1, 0, 0, 0, 2687, 2683, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2693, 1, 0, 0, 0, 2689, 2690, 3, 166, 83, 0, 2690, 2691, 5, 190, 0, 0, 2691, 2692, 5, 89, 0, 0, 2692, 2694, 1, 0, 0, 0, 2693, 2689, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 5, 2, 0, 0, 2696, 2768, 1, 0, 0, 0, 2697, 2698, 5, 140, 0, 0, 2698, 2727, 5, 1, 0, 0, 2699, 2704, 3, 168, 84, 0, 2700, 2701, 5, 3, 0, 0, 2701, 2703, 3, 168, 84, 0, 2702, 2700, 1, 0, 0, 0, 2703, 2706, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2713, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2708, 5, 183, 0, 0, 2708, 2709, 5, 190, 0, 0, 2709, 2714, 5, 183, 0, 0, 2710, 2711, 5, 18, 0, 0, 2711, 2712, 5, 190, 0, 0, 2712, 2714, 5, 183, 0, 0, 2713, 2707, 1, 0, 0, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2725, 1, 0, 0, 0, 2715, 2716, 5, 304, 0, 0, 2716, 2718, 5, 282, 0, 0, 2717, 2719, 5, 146, 0, 0, 2718, 2717, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2726, 1, 0, 0, 0, 2720, 2721, 5, 306, 0, 0, 2721, 2723, 5, 282, 0, 0, 2722, 2724, 5, 146, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2720, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2699, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2735, 1, 0, 0, 0, 2729, 2730, 5, 231, 0, 0, 2730, 2733, 3, 190, 95, 0, 2731, 2732, 5, 104, 0, 0, 2732, 2734, 3, 156, 78, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2729, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2768, 5, 2, 0, 0, 2738, 2739, 5, 138, 0, 0, 2739, 2756, 5, 1, 0, 0, 2740, 2745, 3, 154, 77, 0, 2741, 2742, 5, 3, 0, 0, 2742, 2744, 3, 154, 77, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2754, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2749, 5, 183, 0, 0, 2749, 2750, 5, 190, 0, 0, 2750, 2755, 5, 183, 0, 0, 2751, 2752, 5, 18, 0, 0, 2752, 2753, 5, 190, 0, 0, 2753, 2755, 5, 183, 0, 0, 2754, 2748, 1, 0, 0, 0, 2754, 2751, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2740, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2764, 1, 0, 0, 0, 2758, 2759, 5, 231, 0, 0, 2759, 2762, 3, 190, 95, 0, 2760, 2761, 5, 104, 0, 0, 2761, 2763, 3, 156, 78, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2765, 1, 0, 0, 0, 2764, 2758, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 5, 2, 0, 0, 2767, 2314, 1, 0, 0, 0, 2767, 2316, 1, 0, 0, 0, 2767, 2317, 1, 0, 0, 0, 2767, 2320, 1, 0, 0, 0, 2767, 2323, 1, 0, 0, 0, 2767, 2324, 1, 0, 0, 0, 2767, 2325, 1, 0, 0, 0, 2767, 2326, 1, 0, 0, 0, 2767, 2327, 1, 0, 0, 0, 2767, 2328, 1, 0, 0, 0, 2767, 2335, 1, 0, 0, 0, 2767, 2345, 1, 0, 0, 0, 2767, 2357, 1, 0, 0, 0, 2767, 2392, 1, 0, 0, 0, 2767, 2410, 1, 0, 0, 0, 2767, 2449, 1, 0, 0, 0, 2767, 2452, 1, 0, 0, 0, 2767, 2456, 1, 0, 0, 0, 2767, 2470, 1, 0, 0, 0, 2767, 2474, 1, 0, 0, 0, 2767, 2479, 1, 0, 0, 0, 2767, 2492, 1, 0, 0, 0, 2767, 2504, 1, 0, 0, 0, 2767, 2511, 1, 0, 0, 0, 2767, 2518, 1, 0, 0, 0, 2767, 2531, 1, 0, 0, 0, 2767, 2532, 1, 0, 0, 0, 2767, 2533, 1, 0, 0, 0, 2767, 2539, 1, 0, 0, 0, 2767, 2545, 1, 0, 0, 0, 2767, 2551, 1, 0, 0, 0, 2767, 2557, 1, 0, 0, 0, 2767, 2558, 1, 0, 0, 0, 2767, 2559, 1, 0, 0, 0, 2767, 2560, 1, 0, 0, 0, 2767, 2561, 1, 0, 0, 0, 2767, 2575, 1, 0, 0, 0, 2767, 2582, 1, 0, 0, 0, 2767, 2593, 1, 0, 0, 0, 2767, 2602, 1, 0, 0, 0, 2767, 2609, 1, 0, 0, 0, 2767, 2613, 1, 0, 0, 0, 2767, 2626, 1, 0, 0, 0, 2767, 2637, 1, 0, 0, 0, 2767, 2658, 1, 0, 0, 0, 2767, 2697, 1, 0, 0, 0, 2767, 2738, 1, 0, 0, 0, 2768, 2779, 1, 0, 0, 0, 2769, 2770, 10, 24, 0, 0, 2770, 2771, 5, 8, 0, 0, 2771, 2772, 3, 148, 74, 0, 2772, 2773, 5, 9, 0, 0, 2773, 2778, 1, 0, 0, 0, 2774, 2775, 10, 22, 0, 0, 2775, 2776, 5, 4, 0, 0, 2776, 2778, 3, 302, 151, 0, 2777, 2769, 1, 0, 0, 0, 2777, 2774, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 151, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2783, 3, 154, 77, 0, 2783, 2784, 5, 3, 0, 0, 2784, 2787, 3, 174, 87, 0, 2785, 2786, 5, 28, 0, 0, 2786, 2788, 3, 302, 151, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2798, 1, 0, 0, 0, 2789, 2790, 5, 203, 0, 0, 2790, 2795, 3, 158, 79, 0, 2791, 2792, 5, 3, 0, 0, 2792, 2794, 3, 158, 79, 0, 2793, 2791, 1, 0, 0, 0, 2794, 2797, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2799, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2789, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 153, 1, 0, 0, 0, 2800, 2803, 3, 142, 71, 0, 2801, 2802, 5, 104, 0, 0, 2802, 2804, 3, 156, 78, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 155, 1, 0, 0, 0, 2805, 2808, 5, 137, 0, 0, 2806, 2807, 5, 87, 0, 0, 2807, 2809, 7, 20, 0, 0, 2808, 2806, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 157, 1, 0, 0, 0, 2810, 2811, 3, 154, 77, 0, 2811, 2812, 5, 28, 0, 0, 2812, 2813, 3, 302, 151, 0, 2813, 159, 1, 0, 0, 0, 2814, 2815, 7, 21, 0, 0, 2815, 161, 1, 0, 0, 0, 2816, 2821, 5, 89, 0, 0, 2817, 2821, 5, 183, 0, 0, 2818, 2819, 5, 70, 0, 0, 2819, 2821, 3, 142, 71, 0, 2820, 2816, 1, 0, 0, 0, 2820, 2817, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2821, 163, 1, 0, 0, 0, 2822, 2824, 5, 306, 0, 0, 2823, 2825, 5, 27, 0, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2834, 1, 0, 0, 0, 2826, 2828, 5, 304, 0, 0, 2827, 2829, 7, 22, 0, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2832, 5, 27, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2834, 1, 0, 0, 0, 2833, 2822, 1, 0, 0, 0, 2833, 2826, 1, 0, 0, 0, 2834, 165, 1, 0, 0, 0, 2835, 2842, 5, 89, 0, 0, 2836, 2842, 5, 183, 0, 0, 2837, 2838, 5, 85, 0, 0, 2838, 2842, 5, 27, 0, 0, 2839, 2840, 5, 85, 0, 0, 2840, 2842, 5, 186, 0, 0, 2841, 2835, 1, 0, 0, 0, 2841, 2836, 1, 0, 0, 0, 2841, 2837, 1, 0, 0, 0, 2841, 2839, 1, 0, 0, 0, 2842, 167, 1, 0, 0, 0, 2843, 2845, 5, 145, 0, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 3, 142, 71, 0, 2847, 2848, 5, 295, 0, 0, 2848, 2849, 3, 154, 77, 0, 2849, 2855, 1, 0, 0, 0, 2850, 2851, 3, 142, 71, 0, 2851, 2852, 5, 10, 0, 0, 2852, 2853, 3, 154, 77, 0, 2853, 2855, 1, 0, 0, 0, 2854, 2844, 1, 0, 0, 0, 2854, 2850, 1, 0, 0, 0, 2855, 169, 1, 0, 0, 0, 2856, 2857, 7, 23, 0, 0, 2857, 171, 1, 0, 0, 0, 2858, 2859, 5, 120, 0, 0, 2859, 2863, 5, 185, 0, 0, 2860, 2861, 5, 228, 0, 0, 2861, 2863, 5, 185, 0, 0, 2862, 2858, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 173, 1, 0, 0, 0, 2864, 2871, 5, 326, 0, 0, 2865, 2868, 5, 327, 0, 0, 2866, 2867, 5, 277, 0, 0, 2867, 2869, 5, 326, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2864, 1, 0, 0, 0, 2870, 2865, 1, 0, 0, 0, 2871, 175, 1, 0, 0, 0, 2872, 2873, 5, 267, 0, 0, 2873, 2874, 5, 311, 0, 0, 2874, 2879, 3, 184, 92, 0, 2875, 2876, 5, 267, 0, 0, 2876, 2877, 5, 311, 0, 0, 2877, 2879, 3, 174, 87, 0, 2878, 2872, 1, 0, 0, 0, 2878, 2875, 1, 0, 0, 0, 2879, 177, 1, 0, 0, 0, 2880, 2881, 7, 24, 0, 0, 2881, 179, 1, 0, 0, 0, 2882, 2883, 7, 25, 0, 0, 2883, 181, 1, 0, 0, 0, 2884, 2885, 7, 26, 0, 0, 2885, 183, 1, 0, 0, 0, 2886, 2888, 5, 129, 0, 0, 2887, 2889, 7, 18, 0, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 3, 174, 87, 0, 2891, 2894, 3, 186, 93, 0, 2892, 2893, 5, 269, 0, 0, 2893, 2895, 3, 186, 93, 0, 2894, 2892, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 185, 1, 0, 0, 0, 2896, 2897, 7, 27, 0, 0, 2897, 187, 1, 0, 0, 0, 2898, 2899, 7, 28, 0, 0, 2899, 189, 1, 0, 0, 0, 2900, 2901, 6, 95, -1, 0, 2901, 2902, 5, 239, 0, 0, 2902, 2903, 5, 1, 0, 0, 2903, 2908, 3, 192, 96, 0, 2904, 2905, 5, 3, 0, 0, 2905, 2907, 3, 192, 96, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 2, 0, 0, 2912, 2992, 1, 0, 0, 0, 2913, 2914, 5, 129, 0, 0, 2914, 2917, 3, 186, 93, 0, 2915, 2916, 5, 269, 0, 0, 2916, 2918, 3, 186, 93, 0, 2917, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2992, 1, 0, 0, 0, 2919, 2924, 5, 268, 0, 0, 2920, 2921, 5, 1, 0, 0, 2921, 2922, 3, 194, 97, 0, 2922, 2923, 5, 2, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2920, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2929, 1, 0, 0, 0, 2926, 2927, 5, 306, 0, 0, 2927, 2928, 5, 267, 0, 0, 2928, 2930, 5, 311, 0, 0, 2929, 2926, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2992, 1, 0, 0, 0, 2931, 2936, 5, 268, 0, 0, 2932, 2933, 5, 1, 0, 0, 2933, 2934, 3, 194, 97, 0, 2934, 2935, 5, 2, 0, 0, 2935, 2937, 1, 0, 0, 0, 2936, 2932, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2938, 1, 0, 0, 0, 2938, 2939, 5, 304, 0, 0, 2939, 2940, 5, 267, 0, 0, 2940, 2992, 5, 311, 0, 0, 2941, 2946, 5, 267, 0, 0, 2942, 2943, 5, 1, 0, 0, 2943, 2944, 3, 194, 97, 0, 2944, 2945, 5, 2, 0, 0, 2945, 2947, 1, 0, 0, 0, 2946, 2942, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2951, 1, 0, 0, 0, 2948, 2949, 5, 306, 0, 0, 2949, 2950, 5, 267, 0, 0, 2950, 2952, 5, 311, 0, 0, 2951, 2948, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2992, 1, 0, 0, 0, 2953, 2958, 5, 267, 0, 0, 2954, 2955, 5, 1, 0, 0, 2955, 2956, 3, 194, 97, 0, 2956, 2957, 5, 2, 0, 0, 2957, 2959, 1, 0, 0, 0, 2958, 2954, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2961, 5, 304, 0, 0, 2961, 2962, 5, 267, 0, 0, 2962, 2992, 5, 311, 0, 0, 2963, 2964, 5, 82, 0, 0, 2964, 2992, 5, 213, 0, 0, 2965, 2966, 5, 27, 0, 0, 2966, 2967, 5, 314, 0, 0, 2967, 2968, 3, 190, 95, 0, 2968, 2969, 5, 316, 0, 0, 2969, 2992, 1, 0, 0, 0, 2970, 2971, 5, 162, 0, 0, 2971, 2972, 5, 314, 0, 0, 2972, 2973, 3, 190, 95, 0, 2973, 2974, 5, 3, 0, 0, 2974, 2975, 3, 190, 95, 0, 2975, 2976, 5, 316, 0, 0, 2976, 2992, 1, 0, 0, 0, 2977, 2989, 3, 302, 151, 0, 2978, 2979, 5, 1, 0, 0, 2979, 2984, 3, 194, 97, 0, 2980, 2981, 5, 3, 0, 0, 2981, 2983, 3, 194, 97, 0, 2982, 2980, 1, 0, 0, 0, 2983, 2986, 1, 0, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2987, 1, 0, 0, 0, 2986, 2984, 1, 0, 0, 0, 2987, 2988, 5, 2, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2978, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2992, 1, 0, 0, 0, 2991, 2900, 1, 0, 0, 0, 2991, 2913, 1, 0, 0, 0, 2991, 2919, 1, 0, 0, 0, 2991, 2931, 1, 0, 0, 0, 2991, 2941, 1, 0, 0, 0, 2991, 2953, 1, 0, 0, 0, 2991, 2963, 1, 0, 0, 0, 2991, 2965, 1, 0, 0, 0, 2991, 2970, 1, 0, 0, 0, 2991, 2977, 1, 0, 0, 0, 2992, 3002, 1, 0, 0, 0, 2993, 2994, 10, 2, 0, 0, 2994, 2998, 5, 27, 0, 0, 2995, 2996, 5, 8, 0, 0, 2996, 2997, 5, 329, 0, 0, 2997, 2999, 5, 9, 0, 0, 2998, 2995, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3001, 1, 0, 0, 0, 3000, 2993, 1, 0, 0, 0, 3001, 3004, 1, 0, 0, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 191, 1, 0, 0, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3010, 3, 190, 95, 0, 3006, 3007, 3, 302, 151, 0, 3007, 3008, 3, 190, 95, 0, 3008, 3010, 1, 0, 0, 0, 3009, 3005, 1, 0, 0, 0, 3009, 3006, 1, 0, 0, 0, 3010, 193, 1, 0, 0, 0, 3011, 3014, 5, 329, 0, 0, 3012, 3014, 3, 190, 95, 0, 3013, 3011, 1, 0, 0, 0, 3013, 3012, 1, 0, 0, 0, 3014, 195, 1, 0, 0, 0, 3015, 3016, 5, 300, 0, 0, 3016, 3017, 3, 142, 71, 0, 3017, 3018, 5, 265, 0, 0, 3018, 3019, 3, 142, 71, 0, 3019, 197, 1, 0, 0, 0, 3020, 3021, 5, 99, 0, 0, 3021, 3022, 5, 1, 0, 0, 3022, 3023, 3, 54, 27, 0, 3023, 3024, 5, 2, 0, 0, 3024, 199, 1, 0, 0, 0, 3025, 3026, 5, 300, 0, 0, 3026, 3029, 5, 164, 0, 0, 3027, 3028, 5, 25, 0, 0, 3028, 3030, 3, 142, 71, 0, 3029, 3027, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3032, 5, 265, 0, 0, 3032, 3033, 5, 287, 0, 0, 3033, 3034, 5, 251, 0, 0, 3034, 3035, 3, 302, 151, 0, 3035, 3036, 5, 312, 0, 0, 3036, 3044, 3, 142, 71, 0, 3037, 3038, 5, 3, 0, 0, 3038, 3039, 3, 302, 151, 0, 3039, 3040, 5, 312, 0, 0, 3040, 3041, 3, 142, 71, 0, 3041, 3043, 1, 0, 0, 0, 3042, 3037, 1, 0, 0, 0, 3043, 3046, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3090, 1, 0, 0, 0, 3046, 3044, 1, 0, 0, 0, 3047, 3048, 5, 300, 0, 0, 3048, 3051, 5, 164, 0, 0, 3049, 3050, 5, 25, 0, 0, 3050, 3052, 3, 142, 71, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3054, 5, 265, 0, 0, 3054, 3090, 5, 73, 0, 0, 3055, 3056, 5, 300, 0, 0, 3056, 3057, 5, 182, 0, 0, 3057, 3060, 5, 164, 0, 0, 3058, 3059, 5, 25, 0, 0, 3059, 3061, 3, 142, 71, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 265, 0, 0, 3063, 3075, 5, 127, 0, 0, 3064, 3065, 5, 1, 0, 0, 3065, 3070, 3, 302, 151, 0, 3066, 3067, 5, 3, 0, 0, 3067, 3069, 3, 302, 151, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3073, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 5, 2, 0, 0, 3074, 3076, 1, 0, 0, 0, 3075, 3064, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3078, 5, 296, 0, 0, 3078, 3079, 5, 1, 0, 0, 3079, 3084, 3, 142, 71, 0, 3080, 3081, 5, 3, 0, 0, 3081, 3083, 3, 142, 71, 0, 3082, 3080, 1, 0, 0, 0, 3083, 3086, 1, 0, 0, 0, 3084, 3082, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3087, 1, 0, 0, 0, 3086, 3084, 1, 0, 0, 0, 3087, 3088, 5, 2, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3025, 1, 0, 0, 0, 3089, 3047, 1, 0, 0, 0, 3089, 3055, 1, 0, 0, 0, 3090, 201, 1, 0, 0, 0, 3091, 3097, 5, 199, 0, 0, 3092, 3098, 3, 302, 151, 0, 3093, 3094, 5, 1, 0, 0, 3094, 3095, 3, 70, 35, 0, 3095, 3096, 5, 2, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3092, 1, 0, 0, 0, 3097, 3093, 1, 0, 0, 0, 3098, 203, 1, 0, 0, 0, 3099, 3100, 5, 168, 0, 0, 3100, 3105, 3, 96, 48, 0, 3101, 3102, 5, 3, 0, 0, 3102, 3104, 3, 96, 48, 0, 3103, 3101, 1, 0, 0, 0, 3104, 3107, 1, 0, 0, 0, 3105, 3103, 1, 0, 0, 0, 3105, 3106, 1, 0, 0, 0, 3106, 3109, 1, 0, 0, 0, 3107, 3105, 1, 0, 0, 0, 3108, 3099, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3114, 3, 206, 103, 0, 3111, 3112, 5, 21, 0, 0, 3112, 3113, 5, 163, 0, 0, 3113, 3115, 3, 102, 51, 0, 3114, 3111, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3117, 1, 0, 0, 0, 3116, 3118, 7, 13, 0, 0, 3117, 3116, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3124, 1, 0, 0, 0, 3119, 3120, 5, 206, 0, 0, 3120, 3121, 5, 1, 0, 0, 3121, 3122, 3, 210, 105, 0, 3122, 3123, 5, 2, 0, 0, 3123, 3125, 1, 0, 0, 0, 3124, 3119, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3135, 1, 0, 0, 0, 3126, 3127, 5, 257, 0, 0, 3127, 3132, 3, 104, 52, 0, 3128, 3129, 5, 3, 0, 0, 3129, 3131, 3, 104, 52, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3134, 1, 0, 0, 0, 3132, 3130, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3136, 1, 0, 0, 0, 3134, 3132, 1, 0, 0, 0, 3135, 3126, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3146, 1, 0, 0, 0, 3137, 3138, 5, 71, 0, 0, 3138, 3143, 3, 106, 53, 0, 3139, 3140, 5, 3, 0, 0, 3140, 3142, 3, 106, 53, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3145, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3137, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 205, 1, 0, 0, 0, 3148, 3149, 5, 219, 0, 0, 3149, 3173, 3, 208, 104, 0, 3150, 3151, 5, 240, 0, 0, 3151, 3173, 3, 208, 104, 0, 3152, 3153, 5, 116, 0, 0, 3153, 3173, 3, 208, 104, 0, 3154, 3155, 5, 219, 0, 0, 3155, 3156, 5, 34, 0, 0, 3156, 3157, 3, 208, 104, 0, 3157, 3158, 5, 25, 0, 0, 3158, 3159, 3, 208, 104, 0, 3159, 3173, 1, 0, 0, 0, 3160, 3161, 5, 240, 0, 0, 3161, 3162, 5, 34, 0, 0, 3162, 3163, 3, 208, 104, 0, 3163, 3164, 5, 25, 0, 0, 3164, 3165, 3, 208, 104, 0, 3165, 3173, 1, 0, 0, 0, 3166, 3167, 5, 116, 0, 0, 3167, 3168, 5, 34, 0, 0, 3168, 3169, 3, 208, 104, 0, 3169, 3170, 5, 25, 0, 0, 3170, 3171, 3, 208, 104, 0, 3171, 3173, 1, 0, 0, 0, 3172, 3148, 1, 0, 0, 0, 3172, 3150, 1, 0, 0, 0, 3172, 3152, 1, 0, 0, 0, 3172, 3154, 1, 0, 0, 0, 3172, 3160, 1, 0, 0, 0, 3172, 3166, 1, 0, 0, 0, 3173, 207, 1, 0, 0, 0, 3174, 3175, 5, 278, 0, 0, 3175, 3184, 5, 212, 0, 0, 3176, 3177, 5, 278, 0, 0, 3177, 3184, 5, 102, 0, 0, 3178, 3179, 5, 56, 0, 0, 3179, 3184, 5, 239, 0, 0, 3180, 3181, 3, 142, 71, 0, 3181, 3182, 7, 29, 0, 0, 3182, 3184, 1, 0, 0, 0, 3183, 3174, 1, 0, 0, 0, 3183, 3176, 1, 0, 0, 0, 3183, 3178, 1, 0, 0, 0, 3183, 3180, 1, 0, 0, 0, 3184, 209, 1, 0, 0, 0, 3185, 3186, 6, 105, -1, 0, 3186, 3188, 3, 212, 106, 0, 3187, 3189, 3, 214, 107, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3197, 1, 0, 0, 0, 3190, 3191, 10, 2, 0, 0, 3191, 3196, 3, 210, 105, 3, 3192, 3193, 10, 1, 0, 0, 3193, 3194, 5, 11, 0, 0, 3194, 3196, 3, 210, 105, 2, 3195, 3190, 1, 0, 0, 0, 3195, 3192, 1, 0, 0, 0, 3196, 3199, 1, 0, 0, 0, 3197, 3195, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 211, 1, 0, 0, 0, 3199, 3197, 1, 0, 0, 0, 3200, 3226, 3, 302, 151, 0, 3201, 3202, 5, 1, 0, 0, 3202, 3226, 5, 2, 0, 0, 3203, 3204, 5, 209, 0, 0, 3204, 3205, 5, 1, 0, 0, 3205, 3210, 3, 210, 105, 0, 3206, 3207, 5, 3, 0, 0, 3207, 3209, 3, 210, 105, 0, 3208, 3206, 1, 0, 0, 0, 3209, 3212, 1, 0, 0, 0, 3210, 3208, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3210, 1, 0, 0, 0, 3213, 3214, 5, 2, 0, 0, 3214, 3226, 1, 0, 0, 0, 3215, 3216, 5, 1, 0, 0, 3216, 3217, 3, 210, 105, 0, 3217, 3218, 5, 2, 0, 0, 3218, 3226, 1, 0, 0, 0, 3219, 3226, 5, 12, 0, 0, 3220, 3226, 5, 13, 0, 0, 3221, 3222, 5, 14, 0, 0, 3222, 3223, 3, 210, 105, 0, 3223, 3224, 5, 15, 0, 0, 3224, 3226, 1, 0, 0, 0, 3225, 3200, 1, 0, 0, 0, 3225, 3201, 1, 0, 0, 0, 3225, 3203, 1, 0, 0, 0, 3225, 3215, 1, 0, 0, 0, 3225, 3219, 1, 0, 0, 0, 3225, 3220, 1, 0, 0, 0, 3225, 3221, 1, 0, 0, 0, 3226, 213, 1, 0, 0, 0, 3227, 3229, 5, 320, 0, 0, 3228, 3230, 5, 324, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3258, 1, 0, 0, 0, 3231, 3233, 5, 318, 0, 0, 3232, 3234, 5, 324, 0, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3258, 1, 0, 0, 0, 3235, 3237, 5, 324, 0, 0, 3236, 3238, 5, 324, 0, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3258, 1, 0, 0, 0, 3239, 3240, 5, 16, 0, 0, 3240, 3241, 5, 329, 0, 0, 3241, 3243, 5, 17, 0, 0, 3242, 3244, 5, 324, 0, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3258, 1, 0, 0, 0, 3245, 3247, 5, 16, 0, 0, 3246, 3248, 5, 329, 0, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3251, 5, 3, 0, 0, 3250, 3252, 5, 329, 0, 0, 3251, 3250, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 5, 17, 0, 0, 3254, 3256, 5, 324, 0, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3227, 1, 0, 0, 0, 3257, 3231, 1, 0, 0, 0, 3257, 3235, 1, 0, 0, 0, 3257, 3239, 1, 0, 0, 0, 3257, 3245, 1, 0, 0, 0, 3258, 215, 1, 0, 0, 0, 3259, 3260, 3, 302, 151, 0, 3260, 3261, 5, 312, 0, 0, 3261, 3262, 3, 142, 71, 0, 3262, 217, 1, 0, 0, 0, 3263, 3264, 5, 104, 0, 0, 3264, 3268, 7, 30, 0, 0, 3265, 3266, 5, 276, 0, 0, 3266, 3268, 7, 31, 0, 0, 3267, 3263, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3268, 219, 1, 0, 0, 0, 3269, 3270, 5, 134, 0, 0, 3270, 3271, 5, 153, 0, 0, 3271, 3275, 3, 222, 111, 0, 3272, 3273, 5, 220, 0, 0, 3273, 3275, 7, 32, 0, 0, 3274, 3269, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3275, 221, 1, 0, 0, 0, 3276, 3277, 5, 220, 0, 0, 3277, 3284, 5, 279, 0, 0, 3278, 3279, 5, 220, 0, 0, 3279, 3284, 5, 48, 0, 0, 3280, 3281, 5, 225, 0, 0, 3281, 3284, 5, 220, 0, 0, 3282, 3284, 5, 249, 0, 0, 3283, 3276, 1, 0, 0, 0, 3283, 3278, 1, 0, 0, 0, 3283, 3280, 1, 0, 0, 0, 3283, 3282, 1, 0, 0, 0, 3284, 223, 1, 0, 0, 0, 3285, 3291, 3, 142, 71, 0, 3286, 3287, 3, 302, 151, 0, 3287, 3288, 5, 6, 0, 0, 3288, 3289, 3, 142, 71, 0, 3289, 3291, 1, 0, 0, 0, 3290, 3285, 1, 0, 0, 0, 3290, 3286, 1, 0, 0, 0, 3291, 225, 1, 0, 0, 0, 3292, 3293, 3, 302, 151, 0, 3293, 3294, 5, 4, 0, 0, 3294, 3295, 3, 302, 151, 0, 3295, 3298, 1, 0, 0, 0, 3296, 3298, 3, 302, 151, 0, 3297, 3292, 1, 0, 0, 0, 3297, 3296, 1, 0, 0, 0, 3298, 227, 1, 0, 0, 0, 3299, 3304, 3, 226, 113, 0, 3300, 3301, 5, 3, 0, 0, 3301, 3303, 3, 226, 113, 0, 3302, 3300, 1, 0, 0, 0, 3303, 3306, 1, 0, 0, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 229, 1, 0, 0, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3308, 5, 107, 0, 0, 3308, 3309, 3, 232, 116, 0, 3309, 3313, 3, 238, 119, 0, 3310, 3312, 3, 240, 120, 0, 3311, 3310, 1, 0, 0, 0, 3312, 3315, 1, 0, 0, 0, 3313, 3311, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, 3316, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3316, 3317, 3, 242, 121, 0, 3317, 231, 1, 0, 0, 0, 3318, 3319, 3, 280, 140, 0, 3319, 3328, 5, 1, 0, 0, 3320, 3325, 3, 236, 118, 0, 3321, 3322, 5, 3, 0, 0, 3322, 3324, 3, 236, 118, 0, 3323, 3321, 1, 0, 0, 0, 3324, 3327, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3329, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 3320, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3331, 5, 2, 0, 0, 3331, 233, 1, 0, 0, 0, 3332, 3333, 3, 278, 139, 0, 3333, 3342, 5, 1, 0, 0, 3334, 3339, 3, 236, 118, 0, 3335, 3336, 5, 3, 0, 0, 3336, 3338, 3, 236, 118, 0, 3337, 3335, 1, 0, 0, 0, 3338, 3341, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3339, 3340, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3342, 3334, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 5, 2, 0, 0, 3345, 235, 1, 0, 0, 0, 3346, 3348, 3, 302, 151, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3350, 3, 190, 95, 0, 3350, 237, 1, 0, 0, 0, 3351, 3352, 5, 232, 0, 0, 3352, 3353, 3, 190, 95, 0, 3353, 239, 1, 0, 0, 0, 3354, 3355, 5, 147, 0, 0, 3355, 3374, 3, 302, 151, 0, 3356, 3358, 5, 182, 0, 0, 3357, 3356, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3374, 5, 78, 0, 0, 3360, 3361, 5, 232, 0, 0, 3361, 3362, 5, 183, 0, 0, 3362, 3363, 5, 190, 0, 0, 3363, 3364, 5, 183, 0, 0, 3364, 3374, 5, 126, 0, 0, 3365, 3366, 5, 38, 0, 0, 3366, 3367, 5, 190, 0, 0, 3367, 3368, 5, 183, 0, 0, 3368, 3374, 5, 126, 0, 0, 3369, 3370, 5, 246, 0, 0, 3370, 3374, 7, 1, 0, 0, 3371, 3372, 5, 46, 0, 0, 3372, 3374, 3, 174, 87, 0, 3373, 3354, 1, 0, 0, 0, 3373, 3357, 1, 0, 0, 0, 3373, 3360, 1, 0, 0, 0, 3373, 3365, 1, 0, 0, 0, 3373, 3369, 1, 0, 0, 0, 3373, 3371, 1, 0, 0, 0, 3374, 241, 1, 0, 0, 0, 3375, 3376, 5, 230, 0, 0, 3376, 3475, 3, 148, 74, 0, 3377, 3378, 5, 251, 0, 0, 3378, 3379, 3, 302, 151, 0, 3379, 3380, 5, 312, 0, 0, 3380, 3381, 3, 142, 71, 0, 3381, 3475, 1, 0, 0, 0, 3382, 3383, 5, 40, 0, 0, 3383, 3385, 3, 142, 71, 0, 3384, 3386, 3, 244, 122, 0, 3385, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3390, 1, 0, 0, 0, 3389, 3391, 3, 248, 124, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3393, 5, 88, 0, 0, 3393, 3394, 5, 40, 0, 0, 3394, 3475, 1, 0, 0, 0, 3395, 3397, 5, 40, 0, 0, 3396, 3398, 3, 244, 122, 0, 3397, 3396, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3397, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3402, 1, 0, 0, 0, 3401, 3403, 3, 248, 124, 0, 3402, 3401, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3405, 5, 88, 0, 0, 3405, 3406, 5, 40, 0, 0, 3406, 3475, 1, 0, 0, 0, 3407, 3408, 5, 119, 0, 0, 3408, 3409, 3, 142, 71, 0, 3409, 3410, 5, 265, 0, 0, 3410, 3414, 3, 252, 126, 0, 3411, 3413, 3, 246, 123, 0, 3412, 3411, 1, 0, 0, 0, 3413, 3416, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3417, 3419, 3, 248, 124, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3421, 5, 88, 0, 0, 3421, 3422, 5, 119, 0, 0, 3422, 3475, 1, 0, 0, 0, 3423, 3424, 5, 135, 0, 0, 3424, 3475, 3, 302, 151, 0, 3425, 3426, 5, 151, 0, 0, 3426, 3475, 3, 302, 151, 0, 3427, 3433, 5, 32, 0, 0, 3428, 3429, 3, 250, 125, 0, 3429, 3430, 5, 325, 0, 0, 3430, 3432, 1, 0, 0, 0, 3431, 3428, 1, 0, 0, 0, 3432, 3435, 1, 0, 0, 0, 3433, 3431, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3437, 1, 0, 0, 0, 3435, 3433, 1, 0, 0, 0, 3436, 3438, 3, 252, 126, 0, 3437, 3436, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3475, 5, 88, 0, 0, 3440, 3441, 3, 302, 151, 0, 3441, 3442, 5, 10, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3440, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3446, 5, 161, 0, 0, 3446, 3447, 3, 252, 126, 0, 3447, 3448, 5, 88, 0, 0, 3448, 3449, 5, 161, 0, 0, 3449, 3475, 1, 0, 0, 0, 3450, 3451, 3, 302, 151, 0, 3451, 3452, 5, 10, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3450, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3456, 5, 302, 0, 0, 3456, 3457, 3, 142, 71, 0, 3457, 3458, 5, 81, 0, 0, 3458, 3459, 3, 252, 126, 0, 3459, 3460, 5, 88, 0, 0, 3460, 3461, 5, 302, 0, 0, 3461, 3475, 1, 0, 0, 0, 3462, 3463, 3, 302, 151, 0, 3463, 3464, 5, 10, 0, 0, 3464, 3466, 1, 0, 0, 0, 3465, 3462, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3468, 5, 224, 0, 0, 3468, 3469, 3, 252, 126, 0, 3469, 3470, 5, 286, 0, 0, 3470, 3471, 3, 142, 71, 0, 3471, 3472, 5, 88, 0, 0, 3472, 3473, 5, 224, 0, 0, 3473, 3475, 1, 0, 0, 0, 3474, 3375, 1, 0, 0, 0, 3474, 3377, 1, 0, 0, 0, 3474, 3382, 1, 0, 0, 0, 3474, 3395, 1, 0, 0, 0, 3474, 3407, 1, 0, 0, 0, 3474, 3423, 1, 0, 0, 0, 3474, 3425, 1, 0, 0, 0, 3474, 3427, 1, 0, 0, 0, 3474, 3443, 1, 0, 0, 0, 3474, 3453, 1, 0, 0, 0, 3474, 3465, 1, 0, 0, 0, 3475, 243, 1, 0, 0, 0, 3476, 3477, 5, 300, 0, 0, 3477, 3478, 3, 142, 71, 0, 3478, 3479, 5, 265, 0, 0, 3479, 3480, 3, 252, 126, 0, 3480, 245, 1, 0, 0, 0, 3481, 3482, 5, 86, 0, 0, 3482, 3483, 3, 142, 71, 0, 3483, 3484, 5, 265, 0, 0, 3484, 3485, 3, 252, 126, 0, 3485, 247, 1, 0, 0, 0, 3486, 3487, 5, 84, 0, 0, 3487, 3488, 3, 252, 126, 0, 3488, 249, 1, 0, 0, 0, 3489, 3490, 5, 69, 0, 0, 3490, 3495, 3, 302, 151, 0, 3491, 3492, 5, 3, 0, 0, 3492, 3494, 3, 302, 151, 0, 3493, 3491, 1, 0, 0, 0, 3494, 3497, 1, 0, 0, 0, 3495, 3493, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3498, 1, 0, 0, 0, 3497, 3495, 1, 0, 0, 0, 3498, 3501, 3, 190, 95, 0, 3499, 3500, 5, 70, 0, 0, 3500, 3502, 3, 148, 74, 0, 3501, 3499, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 251, 1, 0, 0, 0, 3503, 3504, 3, 242, 121, 0, 3504, 3505, 5, 325, 0, 0, 3505, 3507, 1, 0, 0, 0, 3506, 3503, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 253, 1, 0, 0, 0, 3510, 3517, 5, 53, 0, 0, 3511, 3517, 5, 248, 0, 0, 3512, 3517, 5, 73, 0, 0, 3513, 3517, 5, 127, 0, 0, 3514, 3517, 5, 287, 0, 0, 3515, 3517, 3, 302, 151, 0, 3516, 3510, 1, 0, 0, 0, 3516, 3511, 1, 0, 0, 0, 3516, 3512, 1, 0, 0, 0, 3516, 3513, 1, 0, 0, 0, 3516, 3514, 1, 0, 0, 0, 3516, 3515, 1, 0, 0, 0, 3517, 255, 1, 0, 0, 0, 3518, 3522, 5, 260, 0, 0, 3519, 3522, 5, 243, 0, 0, 3520, 3522, 3, 302, 151, 0, 3521, 3518, 1, 0, 0, 0, 3521, 3519, 1, 0, 0, 0, 3521, 3520, 1, 0, 0, 0, 3522, 257, 1, 0, 0, 0, 3523, 3525, 3, 256, 128, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3527, 3, 288, 144, 0, 3527, 259, 1, 0, 0, 0, 3528, 3531, 3, 262, 131, 0, 3529, 3531, 3, 266, 133, 0, 3530, 3528, 1, 0, 0, 0, 3530, 3529, 1, 0, 0, 0, 3531, 261, 1, 0, 0, 0, 3532, 3544, 3, 302, 151, 0, 3533, 3534, 3, 302, 151, 0, 3534, 3535, 5, 4, 0, 0, 3535, 3536, 3, 302, 151, 0, 3536, 3544, 1, 0, 0, 0, 3537, 3538, 3, 302, 151, 0, 3538, 3539, 5, 4, 0, 0, 3539, 3540, 3, 302, 151, 0, 3540, 3541, 5, 4, 0, 0, 3541, 3542, 3, 302, 151, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3532, 1, 0, 0, 0, 3543, 3533, 1, 0, 0, 0, 3543, 3537, 1, 0, 0, 0, 3544, 263, 1, 0, 0, 0, 3545, 3557, 3, 302, 151, 0, 3546, 3547, 3, 302, 151, 0, 3547, 3548, 5, 4, 0, 0, 3548, 3549, 3, 302, 151, 0, 3549, 3557, 1, 0, 0, 0, 3550, 3551, 3, 302, 151, 0, 3551, 3552, 5, 4, 0, 0, 3552, 3553, 3, 302, 151, 0, 3553, 3554, 5, 4, 0, 0, 3554, 3555, 3, 302, 151, 0, 3555, 3557, 1, 0, 0, 0, 3556, 3545, 1, 0, 0, 0, 3556, 3546, 1, 0, 0, 0, 3556, 3550, 1, 0, 0, 0, 3557, 265, 1, 0, 0, 0, 3558, 3570, 3, 302, 151, 0, 3559, 3560, 3, 302, 151, 0, 3560, 3561, 5, 4, 0, 0, 3561, 3562, 3, 302, 151, 0, 3562, 3570, 1, 0, 0, 0, 3563, 3564, 3, 302, 151, 0, 3564, 3565, 5, 4, 0, 0, 3565, 3566, 3, 302, 151, 0, 3566, 3567, 5, 4, 0, 0, 3567, 3568, 3, 302, 151, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3558, 1, 0, 0, 0, 3569, 3559, 1, 0, 0, 0, 3569, 3563, 1, 0, 0, 0, 3570, 267, 1, 0, 0, 0, 3571, 3583, 3, 302, 151, 0, 3572, 3573, 3, 302, 151, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3575, 3, 302, 151, 0, 3575, 3583, 1, 0, 0, 0, 3576, 3577, 3, 302, 151, 0, 3577, 3578, 5, 4, 0, 0, 3578, 3579, 3, 302, 151, 0, 3579, 3580, 5, 4, 0, 0, 3580, 3581, 3, 302, 151, 0, 3581, 3583, 1, 0, 0, 0, 3582, 3571, 1, 0, 0, 0, 3582, 3572, 1, 0, 0, 0, 3582, 3576, 1, 0, 0, 0, 3583, 269, 1, 0, 0, 0, 3584, 3590, 3, 302, 151, 0, 3585, 3586, 3, 302, 151, 0, 3586, 3587, 5, 4, 0, 0, 3587, 3588, 3, 302, 151, 0, 3588, 3590, 1, 0, 0, 0, 3589, 3584, 1, 0, 0, 0, 3589, 3585, 1, 0, 0, 0, 3590, 271, 1, 0, 0, 0, 3591, 3597, 3, 302, 151, 0, 3592, 3593, 3, 302, 151, 0, 3593, 3594, 5, 4, 0, 0, 3594, 3595, 3, 302, 151, 0, 3595, 3597, 1, 0, 0, 0, 3596, 3591, 1, 0, 0, 0, 3596, 3592, 1, 0, 0, 0, 3597, 273, 1, 0, 0, 0, 3598, 3599, 3, 302, 151, 0, 3599, 275, 1, 0, 0, 0, 3600, 3601, 3, 302, 151, 0, 3601, 277, 1, 0, 0, 0, 3602, 3603, 3, 288, 144, 0, 3603, 279, 1, 0, 0, 0, 3604, 3605, 3, 288, 144, 0, 3605, 281, 1, 0, 0, 0, 3606, 3609, 3, 288, 144, 0, 3607, 3609, 4, 141, 14, 0, 3608, 3606, 1, 0, 0, 0, 3608, 3607, 1, 0, 0, 0, 3609, 283, 1, 0, 0, 0, 3610, 3611, 3, 288, 144, 0, 3611, 285, 1, 0, 0, 0, 3612, 3613, 3, 302, 151, 0, 3613, 287, 1, 0, 0, 0, 3614, 3619, 3, 302, 151, 0, 3615, 3616, 5, 4, 0, 0, 3616, 3618, 3, 302, 151, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 289, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3623, 5, 103, 0, 0, 3623, 3624, 3, 292, 146, 0, 3624, 3625, 5, 28, 0, 0, 3625, 3626, 5, 187, 0, 0, 3626, 3627, 3, 148, 74, 0, 3627, 291, 1, 0, 0, 0, 3628, 3629, 7, 33, 0, 0, 3629, 293, 1, 0, 0, 0, 3630, 3634, 3, 296, 148, 0, 3631, 3634, 5, 64, 0, 0, 3632, 3634, 5, 60, 0, 0, 3633, 3630, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3632, 1, 0, 0, 0, 3634, 295, 1, 0, 0, 0, 3635, 3641, 3, 302, 151, 0, 3636, 3637, 5, 289, 0, 0, 3637, 3641, 3, 302, 151, 0, 3638, 3639, 5, 235, 0, 0, 3639, 3641, 3, 302, 151, 0, 3640, 3635, 1, 0, 0, 0, 3640, 3636, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3641, 297, 1, 0, 0, 0, 3642, 3647, 3, 302, 151, 0, 3643, 3644, 5, 3, 0, 0, 3644, 3646, 3, 302, 151, 0, 3645, 3643, 1, 0, 0, 0, 3646, 3649, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 299, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3658, 5, 53, 0, 0, 3651, 3658, 5, 248, 0, 0, 3652, 3658, 5, 73, 0, 0, 3653, 3658, 5, 127, 0, 0, 3654, 3658, 5, 287, 0, 0, 3655, 3658, 5, 93, 0, 0, 3656, 3658, 3, 302, 151, 0, 3657, 3650, 1, 0, 0, 0, 3657, 3651, 1, 0, 0, 0, 3657, 3652, 1, 0, 0, 0, 3657, 3653, 1, 0, 0, 0, 3657, 3654, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3656, 1, 0, 0, 0, 3658, 301, 1, 0, 0, 0, 3659, 3665, 5, 332, 0, 0, 3660, 3665, 5, 334, 0, 0, 3661, 3665, 3, 308, 154, 0, 3662, 3665, 5, 335, 0, 0, 3663, 3665, 5, 333, 0, 0, 3664, 3659, 1, 0, 0, 0, 3664, 3660, 1, 0, 0, 0, 3664, 3661, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 303, 1, 0, 0, 0, 3666, 3668, 5, 319, 0, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3679, 5, 330, 0, 0, 3670, 3672, 5, 319, 0, 0, 3671, 3670, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3679, 5, 331, 0, 0, 3674, 3676, 5, 319, 0, 0, 3675, 3674, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3679, 5, 329, 0, 0, 3678, 3667, 1, 0, 0, 0, 3678, 3671, 1, 0, 0, 0, 3678, 3675, 1, 0, 0, 0, 3679, 305, 1, 0, 0, 0, 3680, 3683, 3, 302, 151, 0, 3681, 3683, 3, 174, 87, 0, 3682, 3680, 1, 0, 0, 0, 3682, 3681, 1, 0, 0, 0, 3683, 307, 1, 0, 0, 0, 3684, 3685, 7, 34, 0, 0, 3685, 309, 1, 0, 0, 0, 478, 313, 322, 326, 330, 334, 338, 351, 358, 362, 366, 372, 376, 383, 388, 392, 398, 402, 421, 427, 431, 435, 439, 447, 451, 454, 459, 465, 474, 480, 484, 490, 497, 505, 517, 526, 535, 541, 552, 560, 568, 575, 585, 592, 600, 615, 650, 653, 656, 659, 665, 670, 677, 683, 687, 691, 699, 705, 709, 713, 727, 735, 754, 779, 782, 789, 796, 805, 809, 816, 824, 833, 839, 844, 848, 856, 861, 870, 876, 883, 892, 898, 902, 908, 915, 920, 933, 938, 950, 954, 960, 969, 974, 980, 1008, 1014, 1016, 1022, 1028, 1030, 1038, 1040, 1050, 1052, 1067, 1072, 1079, 1089, 1095, 1097, 1105, 1107, 1132, 1135, 1139, 1143, 1161, 1164, 1175, 1178, 1194, 1204, 1208, 1214, 1217, 1226, 1238, 1241, 1251, 1255, 1261, 1268, 1273, 1279, 1283, 1287, 1293, 1304, 1313, 1323, 1326, 1331, 1333, 1340, 1346, 1348, 1352, 1362, 1368, 1371, 1373, 1385, 1392, 1396, 1399, 1403, 1407, 1414, 1423, 1426, 1429, 1434, 1437, 1445, 1448, 1457, 1464, 1472, 1483, 1486, 1496, 1499, 1510, 1515, 1523, 1526, 1530, 1534, 1543, 1548, 1557, 1560, 1563, 1567, 1578, 1581, 1584, 1591, 1594, 1613, 1617, 1621, 1625, 1629, 1633, 1635, 1646, 1651, 1660, 1669, 1672, 1678, 1686, 1695, 1698, 1706, 1709, 1712, 1717, 1720, 1732, 1735, 1743, 1748, 1752, 1754, 1756, 1771, 1773, 1784, 1805, 1815, 1826, 1830, 1832, 1840, 1851, 1862, 1869, 1882, 1888, 1914, 1929, 1934, 1938, 1948, 1954, 1960, 1968, 1973, 1980, 1982, 1988, 1994, 1998, 2003, 2012, 2017, 2031, 2041, 2044, 2053, 2058, 2063, 2065, 2074, 2077, 2085, 2088, 2095, 2100, 2107, 2111, 2113, 2121, 2131, 2137, 2139, 2146, 2150, 2152, 2159, 2163, 2165, 2167, 2176, 2187, 2191, 2201, 2211, 2215, 2223, 2225, 2238, 2246, 2255, 2261, 2269, 2275, 2279, 2284, 2289, 2295, 2309, 2311, 2341, 2352, 2360, 2365, 2370, 2383, 2389, 2392, 2399, 2404, 2407, 2410, 2415, 2422, 2425, 2434, 2437, 2441, 2444, 2447, 2462, 2465, 2484, 2488, 2496, 2500, 2525, 2528, 2537, 2543, 2549, 2555, 2564, 2567, 2570, 2589, 2598, 2620, 2623, 2633, 2642, 2648, 2654, 2665, 2667, 2672, 2679, 2681, 2687, 2693, 2704, 2713, 2718, 2723, 2725, 2727, 2733, 2735, 2745, 2754, 2756, 2762, 2764, 2767, 2777, 2779, 2787, 2795, 2798, 2803, 2808, 2820, 2824, 2828, 2831, 2833, 2841, 2844, 2854, 2862, 2868, 2870, 2878, 2888, 2894, 2908, 2917, 2924, 2929, 2936, 2946, 2951, 2958, 2984, 2989, 2991, 2998, 3002, 3009, 3013, 3029, 3044, 3051, 3060, 3070, 3075, 3084, 3089, 3097, 3105, 3108, 3114, 3117, 3124, 3132, 3135, 3143, 3146, 3172, 3183, 3188, 3195, 3197, 3210, 3225, 3229, 3233, 3237, 3243, 3247, 3251, 3255, 3257, 3267, 3274, 3283, 3290, 3297, 3304, 3313, 3325, 3328, 3339, 3342, 3347, 3357, 3373, 3387, 3390, 3399, 3402, 3414, 3418, 3433, 3437, 3443, 3453, 3465, 3474, 3495, 3501, 3508, 3516, 3521, 3524, 3530, 3543, 3556, 3569, 3582, 3589, 3596, 3608, 3619, 3633, 3640, 3647, 3657, 3664, 3667, 3671, 3675, 3678, 3682] \ No newline at end of file diff --git a/src/lib/trino/TrinoSqlListener.ts b/src/lib/trino/TrinoSqlListener.ts index c4d5725c..0ecb2891 100644 --- a/src/lib/trino/TrinoSqlListener.ts +++ b/src/lib/trino/TrinoSqlListener.ts @@ -124,7 +124,9 @@ import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; import { WhereClauseContext } from "./TrinoSqlParser.js"; +import { HavingClauseContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; +import { PartitionByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; import { CubeContext } from "./TrinoSqlParser.js"; @@ -1732,6 +1734,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.havingClause`. + * @param ctx the parse tree + */ + enterHavingClause?: (ctx: HavingClauseContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.havingClause`. + * @param ctx the parse tree + */ + exitHavingClause?: (ctx: HavingClauseContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -1742,6 +1754,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitGroupBy?: (ctx: GroupByContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.partitionBy`. + * @param ctx the parse tree + */ + enterPartitionBy?: (ctx: PartitionByContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.partitionBy`. + * @param ctx the parse tree + */ + exitPartitionBy?: (ctx: PartitionByContext) => void; /** * Enter a parse tree produced by the `singleGroupingSet` * labeled alternative in `TrinoSqlParser.groupingElement`. diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index 644467c5..de49e1eb 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -385,131 +385,133 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly RULE_sortItem = 25; public static readonly RULE_querySpecification = 26; public static readonly RULE_whereClause = 27; - public static readonly RULE_groupBy = 28; - public static readonly RULE_groupingElement = 29; - public static readonly RULE_groupingSet = 30; - public static readonly RULE_groupingTerm = 31; - public static readonly RULE_windowDefinition = 32; - public static readonly RULE_windowSpecification = 33; - public static readonly RULE_namedQuery = 34; - public static readonly RULE_setQuantifier = 35; - public static readonly RULE_selectItem = 36; - public static readonly RULE_relation = 37; - public static readonly RULE_joinType = 38; - public static readonly RULE_joinCriteria = 39; - public static readonly RULE_sampledRelation = 40; - public static readonly RULE_sampleType = 41; - public static readonly RULE_trimsSpecification = 42; - public static readonly RULE_listAggOverflowBehavior = 43; - public static readonly RULE_listaggCountIndication = 44; - public static readonly RULE_patternRecognition = 45; - public static readonly RULE_measureDefinition = 46; - public static readonly RULE_rowsPerMatch = 47; - public static readonly RULE_emptyMatchHandling = 48; - public static readonly RULE_skipTo = 49; - public static readonly RULE_subsetDefinition = 50; - public static readonly RULE_variableDefinition = 51; - public static readonly RULE_aliasedRelation = 52; - public static readonly RULE_columnListCreate = 53; - public static readonly RULE_columnList = 54; - public static readonly RULE_columnAliases = 55; - public static readonly RULE_relationPrimary = 56; - public static readonly RULE_jsonTableColumn = 57; - public static readonly RULE_jsonTableSpecificPlan = 58; - public static readonly RULE_jsonTablePathName = 59; - public static readonly RULE_planPrimary = 60; - public static readonly RULE_jsonTableDefaultPlan = 61; - public static readonly RULE_tableFunctionCall = 62; - public static readonly RULE_tableFunctionArgument = 63; - public static readonly RULE_tableArgument = 64; - public static readonly RULE_tableArgumentRelation = 65; - public static readonly RULE_descriptorArgument = 66; - public static readonly RULE_descriptorField = 67; - public static readonly RULE_copartitionTables = 68; - public static readonly RULE_expression = 69; - public static readonly RULE_booleanExpression = 70; - public static readonly RULE_predicate = 71; - public static readonly RULE_valueExpression = 72; - public static readonly RULE_primaryExpression = 73; - public static readonly RULE_jsonPathInvocation = 74; - public static readonly RULE_jsonValueExpression = 75; - public static readonly RULE_jsonRepresentation = 76; - public static readonly RULE_jsonArgument = 77; - public static readonly RULE_jsonExistsErrorBehavior = 78; - public static readonly RULE_jsonValueBehavior = 79; - public static readonly RULE_jsonQueryWrapperBehavior = 80; - public static readonly RULE_jsonQueryBehavior = 81; - public static readonly RULE_jsonObjectMember = 82; - public static readonly RULE_processingMode = 83; - public static readonly RULE_nullTreatment = 84; - public static readonly RULE_string = 85; - public static readonly RULE_timeZoneSpecifier = 86; - public static readonly RULE_comparisonOperator = 87; - public static readonly RULE_comparisonQuantifier = 88; - public static readonly RULE_booleanValue = 89; - public static readonly RULE_interval = 90; - public static readonly RULE_intervalField = 91; - public static readonly RULE_normalForm = 92; - public static readonly RULE_type = 93; - public static readonly RULE_rowField = 94; - public static readonly RULE_typeParameter = 95; - public static readonly RULE_whenClause = 96; - public static readonly RULE_filter = 97; - public static readonly RULE_mergeCase = 98; - public static readonly RULE_over = 99; - public static readonly RULE_windowFrame = 100; - public static readonly RULE_frameExtent = 101; - public static readonly RULE_frameBound = 102; - public static readonly RULE_rowPattern = 103; - public static readonly RULE_patternPrimary = 104; - public static readonly RULE_patternQuantifier = 105; - public static readonly RULE_updateAssignment = 106; - public static readonly RULE_explainOption = 107; - public static readonly RULE_transactionMode = 108; - public static readonly RULE_levelOfIsolation = 109; - public static readonly RULE_callArgument = 110; - public static readonly RULE_pathElement = 111; - public static readonly RULE_pathSpecification = 112; - public static readonly RULE_functionSpecification = 113; - public static readonly RULE_functionDeclaration = 114; - public static readonly RULE_functionSignature = 115; - public static readonly RULE_parameterDeclaration = 116; - public static readonly RULE_returnsClause = 117; - public static readonly RULE_routineCharacteristic = 118; - public static readonly RULE_controlStatement = 119; - public static readonly RULE_caseStatementWhenClause = 120; - public static readonly RULE_elseIfClause = 121; - public static readonly RULE_elseClause = 122; - public static readonly RULE_variableDeclaration = 123; - public static readonly RULE_sqlStatementList = 124; - public static readonly RULE_privilege = 125; - public static readonly RULE_entityKind = 126; - public static readonly RULE_grantObject = 127; - public static readonly RULE_tableOrViewName = 128; - public static readonly RULE_tableRef = 129; - public static readonly RULE_tableNameCreate = 130; - public static readonly RULE_viewRef = 131; - public static readonly RULE_viewNameCreate = 132; - public static readonly RULE_schemaRef = 133; - public static readonly RULE_schemaNameCreate = 134; - public static readonly RULE_catalogRef = 135; - public static readonly RULE_catalogNameCreate = 136; - public static readonly RULE_functionName = 137; - public static readonly RULE_functionNameCreate = 138; - public static readonly RULE_columnRef = 139; - public static readonly RULE_columnName = 140; - public static readonly RULE_columnNameCreate = 141; - public static readonly RULE_qualifiedName = 142; - public static readonly RULE_queryPeriod = 143; - public static readonly RULE_rangeType = 144; - public static readonly RULE_grantor = 145; - public static readonly RULE_principal = 146; - public static readonly RULE_roles = 147; - public static readonly RULE_privilegeOrRole = 148; - public static readonly RULE_identifier = 149; - public static readonly RULE_number = 150; - public static readonly RULE_authorizationUser = 151; - public static readonly RULE_nonReserved = 152; + public static readonly RULE_havingClause = 28; + public static readonly RULE_groupBy = 29; + public static readonly RULE_partitionBy = 30; + public static readonly RULE_groupingElement = 31; + public static readonly RULE_groupingSet = 32; + public static readonly RULE_groupingTerm = 33; + public static readonly RULE_windowDefinition = 34; + public static readonly RULE_windowSpecification = 35; + public static readonly RULE_namedQuery = 36; + public static readonly RULE_setQuantifier = 37; + public static readonly RULE_selectItem = 38; + public static readonly RULE_relation = 39; + public static readonly RULE_joinType = 40; + public static readonly RULE_joinCriteria = 41; + public static readonly RULE_sampledRelation = 42; + public static readonly RULE_sampleType = 43; + public static readonly RULE_trimsSpecification = 44; + public static readonly RULE_listAggOverflowBehavior = 45; + public static readonly RULE_listaggCountIndication = 46; + public static readonly RULE_patternRecognition = 47; + public static readonly RULE_measureDefinition = 48; + public static readonly RULE_rowsPerMatch = 49; + public static readonly RULE_emptyMatchHandling = 50; + public static readonly RULE_skipTo = 51; + public static readonly RULE_subsetDefinition = 52; + public static readonly RULE_variableDefinition = 53; + public static readonly RULE_aliasedRelation = 54; + public static readonly RULE_columnListCreate = 55; + public static readonly RULE_columnList = 56; + public static readonly RULE_columnAliases = 57; + public static readonly RULE_relationPrimary = 58; + public static readonly RULE_jsonTableColumn = 59; + public static readonly RULE_jsonTableSpecificPlan = 60; + public static readonly RULE_jsonTablePathName = 61; + public static readonly RULE_planPrimary = 62; + public static readonly RULE_jsonTableDefaultPlan = 63; + public static readonly RULE_tableFunctionCall = 64; + public static readonly RULE_tableFunctionArgument = 65; + public static readonly RULE_tableArgument = 66; + public static readonly RULE_tableArgumentRelation = 67; + public static readonly RULE_descriptorArgument = 68; + public static readonly RULE_descriptorField = 69; + public static readonly RULE_copartitionTables = 70; + public static readonly RULE_expression = 71; + public static readonly RULE_booleanExpression = 72; + public static readonly RULE_predicate = 73; + public static readonly RULE_valueExpression = 74; + public static readonly RULE_primaryExpression = 75; + public static readonly RULE_jsonPathInvocation = 76; + public static readonly RULE_jsonValueExpression = 77; + public static readonly RULE_jsonRepresentation = 78; + public static readonly RULE_jsonArgument = 79; + public static readonly RULE_jsonExistsErrorBehavior = 80; + public static readonly RULE_jsonValueBehavior = 81; + public static readonly RULE_jsonQueryWrapperBehavior = 82; + public static readonly RULE_jsonQueryBehavior = 83; + public static readonly RULE_jsonObjectMember = 84; + public static readonly RULE_processingMode = 85; + public static readonly RULE_nullTreatment = 86; + public static readonly RULE_string = 87; + public static readonly RULE_timeZoneSpecifier = 88; + public static readonly RULE_comparisonOperator = 89; + public static readonly RULE_comparisonQuantifier = 90; + public static readonly RULE_booleanValue = 91; + public static readonly RULE_interval = 92; + public static readonly RULE_intervalField = 93; + public static readonly RULE_normalForm = 94; + public static readonly RULE_type = 95; + public static readonly RULE_rowField = 96; + public static readonly RULE_typeParameter = 97; + public static readonly RULE_whenClause = 98; + public static readonly RULE_filter = 99; + public static readonly RULE_mergeCase = 100; + public static readonly RULE_over = 101; + public static readonly RULE_windowFrame = 102; + public static readonly RULE_frameExtent = 103; + public static readonly RULE_frameBound = 104; + public static readonly RULE_rowPattern = 105; + public static readonly RULE_patternPrimary = 106; + public static readonly RULE_patternQuantifier = 107; + public static readonly RULE_updateAssignment = 108; + public static readonly RULE_explainOption = 109; + public static readonly RULE_transactionMode = 110; + public static readonly RULE_levelOfIsolation = 111; + public static readonly RULE_callArgument = 112; + public static readonly RULE_pathElement = 113; + public static readonly RULE_pathSpecification = 114; + public static readonly RULE_functionSpecification = 115; + public static readonly RULE_functionDeclaration = 116; + public static readonly RULE_functionSignature = 117; + public static readonly RULE_parameterDeclaration = 118; + public static readonly RULE_returnsClause = 119; + public static readonly RULE_routineCharacteristic = 120; + public static readonly RULE_controlStatement = 121; + public static readonly RULE_caseStatementWhenClause = 122; + public static readonly RULE_elseIfClause = 123; + public static readonly RULE_elseClause = 124; + public static readonly RULE_variableDeclaration = 125; + public static readonly RULE_sqlStatementList = 126; + public static readonly RULE_privilege = 127; + public static readonly RULE_entityKind = 128; + public static readonly RULE_grantObject = 129; + public static readonly RULE_tableOrViewName = 130; + public static readonly RULE_tableRef = 131; + public static readonly RULE_tableNameCreate = 132; + public static readonly RULE_viewRef = 133; + public static readonly RULE_viewNameCreate = 134; + public static readonly RULE_schemaRef = 135; + public static readonly RULE_schemaNameCreate = 136; + public static readonly RULE_catalogRef = 137; + public static readonly RULE_catalogNameCreate = 138; + public static readonly RULE_functionName = 139; + public static readonly RULE_functionNameCreate = 140; + public static readonly RULE_columnRef = 141; + public static readonly RULE_columnName = 142; + public static readonly RULE_columnNameCreate = 143; + public static readonly RULE_qualifiedName = 144; + public static readonly RULE_queryPeriod = 145; + public static readonly RULE_rangeType = 146; + public static readonly RULE_grantor = 147; + public static readonly RULE_principal = 148; + public static readonly RULE_roles = 149; + public static readonly RULE_privilegeOrRole = 150; + public static readonly RULE_identifier = 151; + public static readonly RULE_number = 152; + public static readonly RULE_authorizationUser = 153; + public static readonly RULE_nonReserved = 154; public static readonly literalNames = [ null, "'('", "')'", "','", "'.'", "'SKIP'", "'=>'", "'->'", "'['", @@ -641,36 +643,37 @@ export class TrinoSqlParser extends SQLParserBase { "query", "with", "tableElement", "columnDefinition", "likeClause", "properties", "propertyAssignments", "property", "propertyValue", "queryNoWith", "limitRowCount", "rowCount", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "whereClause", "groupBy", "groupingElement", - "groupingSet", "groupingTerm", "windowDefinition", "windowSpecification", - "namedQuery", "setQuantifier", "selectItem", "relation", "joinType", - "joinCriteria", "sampledRelation", "sampleType", "trimsSpecification", - "listAggOverflowBehavior", "listaggCountIndication", "patternRecognition", - "measureDefinition", "rowsPerMatch", "emptyMatchHandling", "skipTo", - "subsetDefinition", "variableDefinition", "aliasedRelation", "columnListCreate", - "columnList", "columnAliases", "relationPrimary", "jsonTableColumn", - "jsonTableSpecificPlan", "jsonTablePathName", "planPrimary", "jsonTableDefaultPlan", - "tableFunctionCall", "tableFunctionArgument", "tableArgument", "tableArgumentRelation", - "descriptorArgument", "descriptorField", "copartitionTables", "expression", - "booleanExpression", "predicate", "valueExpression", "primaryExpression", - "jsonPathInvocation", "jsonValueExpression", "jsonRepresentation", - "jsonArgument", "jsonExistsErrorBehavior", "jsonValueBehavior", - "jsonQueryWrapperBehavior", "jsonQueryBehavior", "jsonObjectMember", - "processingMode", "nullTreatment", "string", "timeZoneSpecifier", - "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", - "intervalField", "normalForm", "type", "rowField", "typeParameter", - "whenClause", "filter", "mergeCase", "over", "windowFrame", "frameExtent", - "frameBound", "rowPattern", "patternPrimary", "patternQuantifier", - "updateAssignment", "explainOption", "transactionMode", "levelOfIsolation", - "callArgument", "pathElement", "pathSpecification", "functionSpecification", - "functionDeclaration", "functionSignature", "parameterDeclaration", - "returnsClause", "routineCharacteristic", "controlStatement", "caseStatementWhenClause", - "elseIfClause", "elseClause", "variableDeclaration", "sqlStatementList", - "privilege", "entityKind", "grantObject", "tableOrViewName", "tableRef", - "tableNameCreate", "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", - "catalogRef", "catalogNameCreate", "functionName", "functionNameCreate", - "columnRef", "columnName", "columnNameCreate", "qualifiedName", - "queryPeriod", "rangeType", "grantor", "principal", "roles", "privilegeOrRole", + "sortItem", "querySpecification", "whereClause", "havingClause", + "groupBy", "partitionBy", "groupingElement", "groupingSet", "groupingTerm", + "windowDefinition", "windowSpecification", "namedQuery", "setQuantifier", + "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", + "sampleType", "trimsSpecification", "listAggOverflowBehavior", "listaggCountIndication", + "patternRecognition", "measureDefinition", "rowsPerMatch", "emptyMatchHandling", + "skipTo", "subsetDefinition", "variableDefinition", "aliasedRelation", + "columnListCreate", "columnList", "columnAliases", "relationPrimary", + "jsonTableColumn", "jsonTableSpecificPlan", "jsonTablePathName", + "planPrimary", "jsonTableDefaultPlan", "tableFunctionCall", "tableFunctionArgument", + "tableArgument", "tableArgumentRelation", "descriptorArgument", + "descriptorField", "copartitionTables", "expression", "booleanExpression", + "predicate", "valueExpression", "primaryExpression", "jsonPathInvocation", + "jsonValueExpression", "jsonRepresentation", "jsonArgument", "jsonExistsErrorBehavior", + "jsonValueBehavior", "jsonQueryWrapperBehavior", "jsonQueryBehavior", + "jsonObjectMember", "processingMode", "nullTreatment", "string", + "timeZoneSpecifier", "comparisonOperator", "comparisonQuantifier", + "booleanValue", "interval", "intervalField", "normalForm", "type", + "rowField", "typeParameter", "whenClause", "filter", "mergeCase", + "over", "windowFrame", "frameExtent", "frameBound", "rowPattern", + "patternPrimary", "patternQuantifier", "updateAssignment", "explainOption", + "transactionMode", "levelOfIsolation", "callArgument", "pathElement", + "pathSpecification", "functionSpecification", "functionDeclaration", + "functionSignature", "parameterDeclaration", "returnsClause", "routineCharacteristic", + "controlStatement", "caseStatementWhenClause", "elseIfClause", "elseClause", + "variableDeclaration", "sqlStatementList", "privilege", "entityKind", + "grantObject", "tableOrViewName", "tableRef", "tableNameCreate", + "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", "catalogRef", + "catalogNameCreate", "functionName", "functionNameCreate", "columnRef", + "columnName", "columnNameCreate", "qualifiedName", "queryPeriod", + "rangeType", "grantor", "principal", "roles", "privilegeOrRole", "identifier", "number", "authorizationUser", "nonReserved", ]; @@ -695,21 +698,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 309; + this.state = 313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 25165826) !== 0) || ((((_la - 37)) & ~0x1F) === 0 && ((1 << (_la - 37)) & 2147550721) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 5243919) !== 0) || _la === 110 || _la === 127 || _la === 169 || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 8921345) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 67113129) !== 0) || ((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131587) !== 0)) { { { - this.state = 306; + this.state = 310; this.statements(); } } - this.state = 311; + this.state = 315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 312; + this.state = 316; this.match(TrinoSqlParser.EOF); } } @@ -733,7 +736,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 314; + this.state = 318; this.singleStatement(); } } @@ -758,14 +761,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 316; + this.state = 320; this.statement(); - this.state = 318; + this.state = 322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 317; + this.state = 321; this.match(TrinoSqlParser.SEMICOLON); } } @@ -793,14 +796,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 320; + this.state = 324; this.expression(); - this.state = 322; + this.state = 326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 321; + this.state = 325; this.match(TrinoSqlParser.SEMICOLON); } } @@ -828,14 +831,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 324; + this.state = 328; this.pathSpecification(); - this.state = 326; + this.state = 330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 325; + this.state = 329; this.match(TrinoSqlParser.SEMICOLON); } } @@ -863,14 +866,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 328; + this.state = 332; this.type_(0); - this.state = 330; + this.state = 334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 329; + this.state = 333; this.match(TrinoSqlParser.SEMICOLON); } } @@ -898,14 +901,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 332; + this.state = 336; this.rowPattern(0); - this.state = 334; + this.state = 338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 333; + this.state = 337; this.match(TrinoSqlParser.SEMICOLON); } } @@ -932,9 +935,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 336; + this.state = 340; this.functionSpecification(); - this.state = 337; + this.state = 341; this.match(TrinoSqlParser.EOF); } } @@ -957,14 +960,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 16, TrinoSqlParser.RULE_statement); let _la: number; try { - this.state = 1234; + this.state = 1238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 339; + this.state = 343; this.rootQuery(); } break; @@ -972,9 +975,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UseContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 340; + this.state = 344; this.match(TrinoSqlParser.KW_USE); - this.state = 341; + this.state = 345; this.schemaRef(); } break; @@ -982,62 +985,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateCatalogContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 342; + this.state = 346; this.match(TrinoSqlParser.KW_CREATE); - this.state = 343; - this.match(TrinoSqlParser.KW_CATALOG); this.state = 347; + this.match(TrinoSqlParser.KW_CATALOG); + this.state = 351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: { - this.state = 344; + this.state = 348; this.match(TrinoSqlParser.KW_IF); - this.state = 345; + this.state = 349; this.match(TrinoSqlParser.KW_NOT); - this.state = 346; + this.state = 350; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 349; + this.state = 353; (localContext as CreateCatalogContext)._catalog = this.catalogNameCreate(); - this.state = 350; + this.state = 354; this.match(TrinoSqlParser.KW_USING); - this.state = 351; + this.state = 355; (localContext as CreateCatalogContext)._connectorName = this.identifier(); - this.state = 354; + this.state = 358; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 352; + this.state = 356; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 353; + this.state = 357; this.string_(); } break; } - this.state = 358; + this.state = 362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 356; + this.state = 360; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 357; + this.state = 361; this.principal(); } } - this.state = 362; + this.state = 366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 360; + this.state = 364; this.match(TrinoSqlParser.KW_WITH); - this.state = 361; + this.state = 365; this.properties(); } break; @@ -1048,30 +1051,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 364; + this.state = 368; this.match(TrinoSqlParser.KW_DROP); - this.state = 365; + this.state = 369; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 368; + this.state = 372; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 366; + this.state = 370; this.match(TrinoSqlParser.KW_IF); - this.state = 367; + this.state = 371; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 370; + this.state = 374; (localContext as DropCatalogContext)._catalog = this.catalogRef(); - this.state = 372; + this.state = 376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 371; + this.state = 375; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1089,46 +1092,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateSchemaContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 374; + this.state = 378; this.match(TrinoSqlParser.KW_CREATE); - this.state = 375; - this.match(TrinoSqlParser.KW_SCHEMA); this.state = 379; + this.match(TrinoSqlParser.KW_SCHEMA); + this.state = 383; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 376; + this.state = 380; this.match(TrinoSqlParser.KW_IF); - this.state = 377; + this.state = 381; this.match(TrinoSqlParser.KW_NOT); - this.state = 378; + this.state = 382; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 381; + this.state = 385; this.schemaNameCreate(); - this.state = 384; + this.state = 388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 382; + this.state = 386; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 383; + this.state = 387; this.principal(); } } - this.state = 388; + this.state = 392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 386; + this.state = 390; this.match(TrinoSqlParser.KW_WITH); - this.state = 387; + this.state = 391; this.properties(); } break; @@ -1139,30 +1142,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropSchemaContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 390; + this.state = 394; this.match(TrinoSqlParser.KW_DROP); - this.state = 391; + this.state = 395; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 394; + this.state = 398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 392; + this.state = 396; this.match(TrinoSqlParser.KW_IF); - this.state = 393; + this.state = 397; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 396; + this.state = 400; this.schemaRef(); - this.state = 398; + this.state = 402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 397; + this.state = 401; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1180,17 +1183,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameSchemaContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 400; + this.state = 404; this.match(TrinoSqlParser.KW_ALTER); - this.state = 401; + this.state = 405; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 402; + this.state = 406; this.schemaRef(); - this.state = 403; + this.state = 407; this.match(TrinoSqlParser.KW_RENAME); - this.state = 404; + this.state = 408; this.match(TrinoSqlParser.KW_TO); - this.state = 405; + this.state = 409; this.schemaNameCreate(); } break; @@ -1198,17 +1201,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSchemaAuthorizationContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 407; + this.state = 411; this.match(TrinoSqlParser.KW_ALTER); - this.state = 408; + this.state = 412; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 409; + this.state = 413; this.schemaRef(); - this.state = 410; + this.state = 414; this.match(TrinoSqlParser.KW_SET); - this.state = 411; + this.state = 415; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 412; + this.state = 416; this.principal(); } break; @@ -1216,112 +1219,112 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableAsSelectContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 414; + this.state = 418; this.match(TrinoSqlParser.KW_CREATE); - this.state = 417; + this.state = 421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 415; + this.state = 419; this.match(TrinoSqlParser.KW_OR); - this.state = 416; + this.state = 420; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 419; - this.match(TrinoSqlParser.KW_TABLE); this.state = 423; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 427; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 420; + this.state = 424; this.match(TrinoSqlParser.KW_IF); - this.state = 421; + this.state = 425; this.match(TrinoSqlParser.KW_NOT); - this.state = 422; + this.state = 426; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 425; + this.state = 429; this.tableNameCreate(); - this.state = 427; + this.state = 431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 426; + this.state = 430; this.columnListCreate(); } } - this.state = 431; + this.state = 435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 429; + this.state = 433; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 430; + this.state = 434; (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } - this.state = 435; + this.state = 439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 433; + this.state = 437; this.match(TrinoSqlParser.KW_WITH); - this.state = 434; + this.state = 438; this.properties(); } } - this.state = 437; + this.state = 441; this.match(TrinoSqlParser.KW_AS); - this.state = 443; + this.state = 447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 438; + this.state = 442; this.rootQuery(); } break; case 2: { - this.state = 439; + this.state = 443; this.match(TrinoSqlParser.T__0); - this.state = 440; + this.state = 444; this.rootQuery(); - this.state = 441; + this.state = 445; this.match(TrinoSqlParser.T__1); } break; } - this.state = 450; + this.state = 454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 445; + this.state = 449; this.match(TrinoSqlParser.KW_WITH); - this.state = 447; + this.state = 451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 179) { { - this.state = 446; + this.state = 450; this.match(TrinoSqlParser.KW_NO); } } - this.state = 449; + this.state = 453; this.match(TrinoSqlParser.KW_DATA); } break; @@ -1332,80 +1335,80 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 452; + this.state = 456; this.match(TrinoSqlParser.KW_CREATE); - this.state = 455; + this.state = 459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 453; + this.state = 457; this.match(TrinoSqlParser.KW_OR); - this.state = 454; + this.state = 458; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 457; - this.match(TrinoSqlParser.KW_TABLE); this.state = 461; + this.match(TrinoSqlParser.KW_TABLE); + this.state = 465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 458; + this.state = 462; this.match(TrinoSqlParser.KW_IF); - this.state = 459; + this.state = 463; this.match(TrinoSqlParser.KW_NOT); - this.state = 460; + this.state = 464; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 463; + this.state = 467; this.tableNameCreate(); - this.state = 464; + this.state = 468; this.match(TrinoSqlParser.T__0); - this.state = 465; + this.state = 469; this.tableElement(); - this.state = 470; + this.state = 474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 466; + this.state = 470; this.match(TrinoSqlParser.T__2); - this.state = 467; + this.state = 471; this.tableElement(); } } - this.state = 472; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 473; + this.state = 477; this.match(TrinoSqlParser.T__1); - this.state = 476; + this.state = 480; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 474; + this.state = 478; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 475; + this.state = 479; (localContext as CreateTableContext)._comment = this.string_(); } break; } - this.state = 480; + this.state = 484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 478; + this.state = 482; this.match(TrinoSqlParser.KW_WITH); - this.state = 479; + this.state = 483; this.properties(); } break; @@ -1416,23 +1419,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 482; + this.state = 486; this.match(TrinoSqlParser.KW_DROP); - this.state = 483; + this.state = 487; this.match(TrinoSqlParser.KW_TABLE); - this.state = 486; + this.state = 490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 484; + this.state = 488; this.match(TrinoSqlParser.KW_IF); - this.state = 485; + this.state = 489; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 488; + this.state = 492; this.tableRef(); } break; @@ -1440,23 +1443,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InsertIntoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 489; + this.state = 493; this.match(TrinoSqlParser.KW_INSERT); - this.state = 490; + this.state = 494; this.match(TrinoSqlParser.KW_INTO); - this.state = 491; + this.state = 495; this.tableRef(); - this.state = 493; + this.state = 497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: { - this.state = 492; + this.state = 496; this.columnList(); } break; } - this.state = 495; + this.state = 499; this.rootQuery(); } break; @@ -1464,18 +1467,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeleteContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 497; + this.state = 501; this.match(TrinoSqlParser.KW_DELETE); - this.state = 498; + this.state = 502; this.match(TrinoSqlParser.KW_FROM); - this.state = 499; + this.state = 503; this.tableRef(); - this.state = 501; + this.state = 505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 500; + this.state = 504; this.whereClause(); } } @@ -1486,11 +1489,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 503; + this.state = 507; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 504; + this.state = 508; this.match(TrinoSqlParser.KW_TABLE); - this.state = 505; + this.state = 509; this.tableRef(); } break; @@ -1498,29 +1501,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 506; + this.state = 510; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 507; + this.state = 511; this.match(TrinoSqlParser.KW_ON); - this.state = 508; + this.state = 512; this.match(TrinoSqlParser.KW_TABLE); - this.state = 509; + this.state = 513; this.tableRef(); - this.state = 510; + this.state = 514; this.match(TrinoSqlParser.KW_IS); - this.state = 513; + this.state = 517; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 511; + this.state = 515; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 512; + this.state = 516; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1533,29 +1536,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentViewContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 515; + this.state = 519; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 516; + this.state = 520; this.match(TrinoSqlParser.KW_ON); - this.state = 517; + this.state = 521; this.match(TrinoSqlParser.KW_VIEW); - this.state = 518; + this.state = 522; this.viewRef(); - this.state = 519; + this.state = 523; this.match(TrinoSqlParser.KW_IS); - this.state = 522; + this.state = 526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 520; + this.state = 524; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 521; + this.state = 525; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1568,29 +1571,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 524; + this.state = 528; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 525; + this.state = 529; this.match(TrinoSqlParser.KW_ON); - this.state = 526; + this.state = 530; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 527; + this.state = 531; this.columnRef(); - this.state = 528; + this.state = 532; this.match(TrinoSqlParser.KW_IS); - this.state = 531; + this.state = 535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 529; + this.state = 533; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 530; + this.state = 534; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1603,29 +1606,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 533; + this.state = 537; this.match(TrinoSqlParser.KW_ALTER); - this.state = 534; + this.state = 538; this.match(TrinoSqlParser.KW_TABLE); - this.state = 537; + this.state = 541; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 535; + this.state = 539; this.match(TrinoSqlParser.KW_IF); - this.state = 536; + this.state = 540; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 539; + this.state = 543; (localContext as RenameTableContext)._from_ = this.tableRef(); - this.state = 540; + this.state = 544; this.match(TrinoSqlParser.KW_RENAME); - this.state = 541; + this.state = 545; this.match(TrinoSqlParser.KW_TO); - this.state = 542; + this.state = 546; (localContext as RenameTableContext)._to = this.tableNameCreate(); } break; @@ -1633,43 +1636,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AddColumnContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 544; + this.state = 548; this.match(TrinoSqlParser.KW_ALTER); - this.state = 545; + this.state = 549; this.match(TrinoSqlParser.KW_TABLE); - this.state = 548; + this.state = 552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 546; + this.state = 550; this.match(TrinoSqlParser.KW_IF); - this.state = 547; + this.state = 551; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 550; + this.state = 554; (localContext as AddColumnContext)._tableName = this.tableRef(); - this.state = 551; + this.state = 555; this.match(TrinoSqlParser.KW_ADD); - this.state = 552; - this.match(TrinoSqlParser.KW_COLUMN); this.state = 556; + this.match(TrinoSqlParser.KW_COLUMN); + this.state = 560; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 553; + this.state = 557; this.match(TrinoSqlParser.KW_IF); - this.state = 554; + this.state = 558; this.match(TrinoSqlParser.KW_NOT); - this.state = 555; + this.state = 559; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 558; + this.state = 562; (localContext as AddColumnContext)._column = this.columnDefinition(); } break; @@ -1677,45 +1680,45 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 560; + this.state = 564; this.match(TrinoSqlParser.KW_ALTER); - this.state = 561; + this.state = 565; this.match(TrinoSqlParser.KW_TABLE); - this.state = 564; + this.state = 568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 562; + this.state = 566; this.match(TrinoSqlParser.KW_IF); - this.state = 563; + this.state = 567; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 566; + this.state = 570; (localContext as RenameColumnContext)._tableName = this.tableRef(); - this.state = 567; + this.state = 571; this.match(TrinoSqlParser.KW_RENAME); - this.state = 568; + this.state = 572; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 571; + this.state = 575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 569; + this.state = 573; this.match(TrinoSqlParser.KW_IF); - this.state = 570; + this.state = 574; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 573; + this.state = 577; (localContext as RenameColumnContext)._from_ = this.columnRef(); - this.state = 574; + this.state = 578; this.match(TrinoSqlParser.KW_TO); - this.state = 575; + this.state = 579; (localContext as RenameColumnContext)._to = this.columnNameCreate(); } break; @@ -1723,41 +1726,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropColumnContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 577; + this.state = 581; this.match(TrinoSqlParser.KW_ALTER); - this.state = 578; + this.state = 582; this.match(TrinoSqlParser.KW_TABLE); - this.state = 581; + this.state = 585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 579; + this.state = 583; this.match(TrinoSqlParser.KW_IF); - this.state = 580; + this.state = 584; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 583; + this.state = 587; (localContext as DropColumnContext)._tableName = this.tableRef(); - this.state = 584; + this.state = 588; this.match(TrinoSqlParser.KW_DROP); - this.state = 585; + this.state = 589; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 588; + this.state = 592; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 586; + this.state = 590; this.match(TrinoSqlParser.KW_IF); - this.state = 587; + this.state = 591; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 590; + this.state = 594; (localContext as DropColumnContext)._column = this.columnRef(); } break; @@ -1765,37 +1768,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetColumnTypeContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 592; + this.state = 596; this.match(TrinoSqlParser.KW_ALTER); - this.state = 593; + this.state = 597; this.match(TrinoSqlParser.KW_TABLE); - this.state = 596; + this.state = 600; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 594; + this.state = 598; this.match(TrinoSqlParser.KW_IF); - this.state = 595; + this.state = 599; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 598; + this.state = 602; (localContext as SetColumnTypeContext)._tableName = this.tableRef(); - this.state = 599; + this.state = 603; this.match(TrinoSqlParser.KW_ALTER); - this.state = 600; + this.state = 604; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 601; + this.state = 605; (localContext as SetColumnTypeContext)._column = this.columnRef(); - this.state = 602; + this.state = 606; this.match(TrinoSqlParser.KW_SET); - this.state = 603; + this.state = 607; this.match(TrinoSqlParser.KW_DATA); - this.state = 604; + this.state = 608; this.match(TrinoSqlParser.KW_TYPE); - this.state = 605; + this.state = 609; this.type_(0); } break; @@ -1803,35 +1806,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropNotNullConstraintContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 607; + this.state = 611; this.match(TrinoSqlParser.KW_ALTER); - this.state = 608; + this.state = 612; this.match(TrinoSqlParser.KW_TABLE); - this.state = 611; + this.state = 615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 609; + this.state = 613; this.match(TrinoSqlParser.KW_IF); - this.state = 610; + this.state = 614; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 613; + this.state = 617; (localContext as DropNotNullConstraintContext)._tableName = this.tableRef(); - this.state = 614; + this.state = 618; this.match(TrinoSqlParser.KW_ALTER); - this.state = 615; + this.state = 619; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 616; + this.state = 620; (localContext as DropNotNullConstraintContext)._column = this.columnRef(); - this.state = 617; + this.state = 621; this.match(TrinoSqlParser.KW_DROP); - this.state = 618; + this.state = 622; this.match(TrinoSqlParser.KW_NOT); - this.state = 619; + this.state = 623; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1839,17 +1842,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTableAuthorizationContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 621; + this.state = 625; this.match(TrinoSqlParser.KW_ALTER); - this.state = 622; + this.state = 626; this.match(TrinoSqlParser.KW_TABLE); - this.state = 623; + this.state = 627; (localContext as SetTableAuthorizationContext)._tableName = this.tableRef(); - this.state = 624; + this.state = 628; this.match(TrinoSqlParser.KW_SET); - this.state = 625; + this.state = 629; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 626; + this.state = 630; this.principal(); } break; @@ -1857,17 +1860,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 628; + this.state = 632; this.match(TrinoSqlParser.KW_ALTER); - this.state = 629; + this.state = 633; this.match(TrinoSqlParser.KW_TABLE); - this.state = 630; + this.state = 634; (localContext as SetTablePropertiesContext)._tableName = this.tableRef(); - this.state = 631; + this.state = 635; this.match(TrinoSqlParser.KW_SET); - this.state = 632; + this.state = 636; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 633; + this.state = 637; this.propertyAssignments(); } break; @@ -1875,60 +1878,60 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableExecuteContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 635; + this.state = 639; this.match(TrinoSqlParser.KW_ALTER); - this.state = 636; + this.state = 640; this.match(TrinoSqlParser.KW_TABLE); - this.state = 637; + this.state = 641; (localContext as TableExecuteContext)._tableName = this.tableRef(); - this.state = 638; + this.state = 642; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 639; + this.state = 643; (localContext as TableExecuteContext)._procedureName = this.functionName(); - this.state = 652; + this.state = 656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 640; + this.state = 644; this.match(TrinoSqlParser.T__0); - this.state = 649; + this.state = 653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 641; + this.state = 645; this.callArgument(); - this.state = 646; + this.state = 650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 642; + this.state = 646; this.match(TrinoSqlParser.T__2); - this.state = 643; + this.state = 647; this.callArgument(); } } - this.state = 648; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 651; + this.state = 655; this.match(TrinoSqlParser.T__1); } break; } - this.state = 655; + this.state = 659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 654; + this.state = 658; this.whereClause(); } } @@ -1939,18 +1942,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 657; + this.state = 661; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 658; + this.state = 662; this.tableRef(); - this.state = 661; + this.state = 665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 659; + this.state = 663; this.match(TrinoSqlParser.KW_WITH); - this.state = 660; + this.state = 664; this.properties(); } break; @@ -1961,81 +1964,81 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 663; + this.state = 667; this.match(TrinoSqlParser.KW_CREATE); - this.state = 666; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 664; + this.state = 668; this.match(TrinoSqlParser.KW_OR); - this.state = 665; + this.state = 669; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 668; + this.state = 672; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 669; - this.match(TrinoSqlParser.KW_VIEW); this.state = 673; + this.match(TrinoSqlParser.KW_VIEW); + this.state = 677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 670; + this.state = 674; this.match(TrinoSqlParser.KW_IF); - this.state = 671; + this.state = 675; this.match(TrinoSqlParser.KW_NOT); - this.state = 672; + this.state = 676; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 675; - this.viewNameCreate(); this.state = 679; + this.viewNameCreate(); + this.state = 683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 676; + this.state = 680; this.match(TrinoSqlParser.KW_GRACE); - this.state = 677; + this.state = 681; this.match(TrinoSqlParser.KW_PERIOD); - this.state = 678; + this.state = 682; this.interval(); } } - this.state = 683; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 681; + this.state = 685; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 682; + this.state = 686; (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } - this.state = 687; + this.state = 691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 685; + this.state = 689; this.match(TrinoSqlParser.KW_WITH); - this.state = 686; + this.state = 690; this.properties(); } } - this.state = 689; + this.state = 693; this.match(TrinoSqlParser.KW_AS); - this.state = 690; + this.state = 694; this.rootQuery(); } break; @@ -2043,44 +2046,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 692; + this.state = 696; this.match(TrinoSqlParser.KW_CREATE); - this.state = 695; + this.state = 699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 693; + this.state = 697; this.match(TrinoSqlParser.KW_OR); - this.state = 694; + this.state = 698; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 697; + this.state = 701; this.match(TrinoSqlParser.KW_VIEW); - this.state = 698; + this.state = 702; this.viewNameCreate(); - this.state = 701; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 699; + this.state = 703; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 700; + this.state = 704; (localContext as CreateViewContext)._comment = this.string_(); } } - this.state = 705; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 703; + this.state = 707; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 704; + this.state = 708; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -2092,21 +2095,21 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 709; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 707; + this.state = 711; this.match(TrinoSqlParser.KW_WITH); - this.state = 708; + this.state = 712; this.properties(); } } - this.state = 711; + this.state = 715; this.match(TrinoSqlParser.KW_AS); - this.state = 712; + this.state = 716; this.rootQuery(); } break; @@ -2114,13 +2117,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 714; + this.state = 718; this.match(TrinoSqlParser.KW_REFRESH); - this.state = 715; + this.state = 719; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 716; + this.state = 720; this.match(TrinoSqlParser.KW_VIEW); - this.state = 717; + this.state = 721; this.viewRef(); } break; @@ -2128,25 +2131,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 718; + this.state = 722; this.match(TrinoSqlParser.KW_DROP); - this.state = 719; + this.state = 723; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 720; + this.state = 724; this.match(TrinoSqlParser.KW_VIEW); - this.state = 723; + this.state = 727; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 721; + this.state = 725; this.match(TrinoSqlParser.KW_IF); - this.state = 722; + this.state = 726; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 725; + this.state = 729; this.viewRef(); } break; @@ -2154,31 +2157,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 726; + this.state = 730; this.match(TrinoSqlParser.KW_ALTER); - this.state = 727; + this.state = 731; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 728; + this.state = 732; this.match(TrinoSqlParser.KW_VIEW); - this.state = 731; + this.state = 735; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 729; + this.state = 733; this.match(TrinoSqlParser.KW_IF); - this.state = 730; + this.state = 734; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 733; + this.state = 737; (localContext as RenameMaterializedViewContext)._from_ = this.viewRef(); - this.state = 734; + this.state = 738; this.match(TrinoSqlParser.KW_RENAME); - this.state = 735; + this.state = 739; this.match(TrinoSqlParser.KW_TO); - this.state = 736; + this.state = 740; (localContext as RenameMaterializedViewContext)._to = this.viewNameCreate(); } break; @@ -2186,19 +2189,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 738; + this.state = 742; this.match(TrinoSqlParser.KW_ALTER); - this.state = 739; + this.state = 743; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 740; + this.state = 744; this.match(TrinoSqlParser.KW_VIEW); - this.state = 741; + this.state = 745; this.viewRef(); - this.state = 742; + this.state = 746; this.match(TrinoSqlParser.KW_SET); - this.state = 743; + this.state = 747; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 744; + this.state = 748; this.propertyAssignments(); } break; @@ -2206,23 +2209,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 746; + this.state = 750; this.match(TrinoSqlParser.KW_DROP); - this.state = 747; + this.state = 751; this.match(TrinoSqlParser.KW_VIEW); - this.state = 750; + this.state = 754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 748; + this.state = 752; this.match(TrinoSqlParser.KW_IF); - this.state = 749; + this.state = 753; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 752; + this.state = 756; this.viewRef(); } break; @@ -2230,17 +2233,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameViewContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 753; + this.state = 757; this.match(TrinoSqlParser.KW_ALTER); - this.state = 754; + this.state = 758; this.match(TrinoSqlParser.KW_VIEW); - this.state = 755; + this.state = 759; (localContext as RenameViewContext)._from_ = this.viewRef(); - this.state = 756; + this.state = 760; this.match(TrinoSqlParser.KW_RENAME); - this.state = 757; + this.state = 761; this.match(TrinoSqlParser.KW_TO); - this.state = 758; + this.state = 762; (localContext as RenameViewContext)._to = this.viewNameCreate(); } break; @@ -2248,17 +2251,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetViewAuthorizationContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 760; + this.state = 764; this.match(TrinoSqlParser.KW_ALTER); - this.state = 761; + this.state = 765; this.match(TrinoSqlParser.KW_VIEW); - this.state = 762; + this.state = 766; (localContext as SetViewAuthorizationContext)._from_ = this.viewRef(); - this.state = 763; + this.state = 767; this.match(TrinoSqlParser.KW_SET); - this.state = 764; + this.state = 768; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 765; + this.state = 769; this.principal(); } break; @@ -2266,39 +2269,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CallContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 767; + this.state = 771; this.match(TrinoSqlParser.KW_CALL); - this.state = 768; + this.state = 772; this.functionName(); - this.state = 769; + this.state = 773; this.match(TrinoSqlParser.T__0); - this.state = 778; + this.state = 782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 770; + this.state = 774; this.callArgument(); - this.state = 775; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 771; + this.state = 775; this.match(TrinoSqlParser.T__2); - this.state = 772; + this.state = 776; this.callArgument(); } } - this.state = 777; + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 780; + this.state = 784; this.match(TrinoSqlParser.T__1); } break; @@ -2306,21 +2309,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 782; + this.state = 786; this.match(TrinoSqlParser.KW_CREATE); - this.state = 785; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 783; + this.state = 787; this.match(TrinoSqlParser.KW_OR); - this.state = 784; + this.state = 788; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 787; + this.state = 791; this.functionSpecification(); } break; @@ -2328,23 +2331,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 788; + this.state = 792; this.match(TrinoSqlParser.KW_DROP); - this.state = 789; + this.state = 793; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 792; + this.state = 796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 790; + this.state = 794; this.match(TrinoSqlParser.KW_IF); - this.state = 791; + this.state = 795; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 794; + this.state = 798; this.functionSignature(); } break; @@ -2352,34 +2355,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateRoleContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 795; + this.state = 799; this.match(TrinoSqlParser.KW_CREATE); - this.state = 796; + this.state = 800; this.match(TrinoSqlParser.KW_ROLE); - this.state = 797; - (localContext as CreateRoleContext)._name = this.identifier(); this.state = 801; + (localContext as CreateRoleContext)._name = this.identifier(); + this.state = 805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 798; + this.state = 802; this.match(TrinoSqlParser.KW_WITH); - this.state = 799; + this.state = 803; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 800; + this.state = 804; this.grantor(); } break; } - this.state = 805; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 803; + this.state = 807; this.match(TrinoSqlParser.KW_IN); - this.state = 804; + this.state = 808; (localContext as CreateRoleContext)._catalog = this.catalogRef(); } } @@ -2390,20 +2393,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropRoleContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 807; + this.state = 811; this.match(TrinoSqlParser.KW_DROP); - this.state = 808; + this.state = 812; this.match(TrinoSqlParser.KW_ROLE); - this.state = 809; + this.state = 813; (localContext as DropRoleContext)._name = this.identifier(); - this.state = 812; + this.state = 816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 810; + this.state = 814; this.match(TrinoSqlParser.KW_IN); - this.state = 811; + this.state = 815; (localContext as DropRoleContext)._catalog = this.catalogRef(); } } @@ -2414,82 +2417,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantRolesContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 814; + this.state = 818; this.match(TrinoSqlParser.KW_GRANT); - this.state = 815; + this.state = 819; this.privilegeOrRole(); - this.state = 820; + this.state = 824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 816; + this.state = 820; this.match(TrinoSqlParser.T__2); - this.state = 817; + this.state = 821; this.privilegeOrRole(); } } - this.state = 822; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 823; + this.state = 827; this.match(TrinoSqlParser.KW_TO); - this.state = 824; + this.state = 828; this.principal(); - this.state = 829; + this.state = 833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 825; + this.state = 829; this.match(TrinoSqlParser.T__2); - this.state = 826; + this.state = 830; this.principal(); } } - this.state = 831; + this.state = 835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 835; + this.state = 839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 832; + this.state = 836; this.match(TrinoSqlParser.KW_WITH); - this.state = 833; + this.state = 837; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 834; + this.state = 838; this.match(TrinoSqlParser.KW_OPTION); } break; } - this.state = 840; + this.state = 844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 837; + this.state = 841; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 838; + this.state = 842; this.match(TrinoSqlParser.KW_BY); - this.state = 839; + this.state = 843; this.grantor(); } } - this.state = 844; + this.state = 848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 842; + this.state = 846; this.match(TrinoSqlParser.KW_IN); - this.state = 843; + this.state = 847; (localContext as GrantRolesContext)._catalog = this.catalogRef(); } } @@ -2500,29 +2503,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantPrivilegesContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 846; + this.state = 850; this.match(TrinoSqlParser.KW_GRANT); - this.state = 857; + this.state = 861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { { - this.state = 847; + this.state = 851; this.privilegeOrRole(); - this.state = 852; + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 848; + this.state = 852; this.match(TrinoSqlParser.T__2); - this.state = 849; + this.state = 853; this.privilegeOrRole(); } } - this.state = 854; + this.state = 858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2531,31 +2534,31 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 855; + this.state = 859; this.match(TrinoSqlParser.KW_ALL); - this.state = 856; + this.state = 860; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 859; + this.state = 863; this.match(TrinoSqlParser.KW_ON); - this.state = 860; + this.state = 864; this.grantObject(); - this.state = 861; + this.state = 865; this.match(TrinoSqlParser.KW_TO); - this.state = 862; - this.principal(); this.state = 866; + this.principal(); + this.state = 870; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 863; + this.state = 867; this.match(TrinoSqlParser.KW_WITH); - this.state = 864; + this.state = 868; this.match(TrinoSqlParser.KW_GRANT); - this.state = 865; + this.state = 869; this.match(TrinoSqlParser.KW_OPTION); } break; @@ -2566,82 +2569,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokeRolesContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 868; - this.match(TrinoSqlParser.KW_REVOKE); this.state = 872; + this.match(TrinoSqlParser.KW_REVOKE); + this.state = 876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 869; + this.state = 873; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 870; + this.state = 874; this.match(TrinoSqlParser.KW_OPTION); - this.state = 871; + this.state = 875; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 874; + this.state = 878; this.privilegeOrRole(); - this.state = 879; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 875; + this.state = 879; this.match(TrinoSqlParser.T__2); - this.state = 876; + this.state = 880; this.privilegeOrRole(); } } - this.state = 881; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 882; + this.state = 886; this.match(TrinoSqlParser.KW_FROM); - this.state = 883; + this.state = 887; this.principal(); - this.state = 888; + this.state = 892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 884; + this.state = 888; this.match(TrinoSqlParser.T__2); - this.state = 885; + this.state = 889; this.principal(); } } - this.state = 890; + this.state = 894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 894; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 891; + this.state = 895; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 892; + this.state = 896; this.match(TrinoSqlParser.KW_BY); - this.state = 893; + this.state = 897; this.grantor(); } } - this.state = 898; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 896; + this.state = 900; this.match(TrinoSqlParser.KW_IN); - this.state = 897; + this.state = 901; (localContext as RevokeRolesContext)._catalog = this.catalogRef(); } } @@ -2652,43 +2655,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokePrivilegesContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 900; - this.match(TrinoSqlParser.KW_REVOKE); this.state = 904; + this.match(TrinoSqlParser.KW_REVOKE); + this.state = 908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 901; + this.state = 905; this.match(TrinoSqlParser.KW_GRANT); - this.state = 902; + this.state = 906; this.match(TrinoSqlParser.KW_OPTION); - this.state = 903; + this.state = 907; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 916; + this.state = 920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { { - this.state = 906; + this.state = 910; this.privilegeOrRole(); - this.state = 911; + this.state = 915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 907; + this.state = 911; this.match(TrinoSqlParser.T__2); - this.state = 908; + this.state = 912; this.privilegeOrRole(); } } - this.state = 913; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2697,20 +2700,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 914; + this.state = 918; this.match(TrinoSqlParser.KW_ALL); - this.state = 915; + this.state = 919; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 918; + this.state = 922; this.match(TrinoSqlParser.KW_ON); - this.state = 919; + this.state = 923; this.grantObject(); - this.state = 920; + this.state = 924; this.match(TrinoSqlParser.KW_FROM); - this.state = 921; + this.state = 925; (localContext as RevokePrivilegesContext)._grantee = this.principal(); } break; @@ -2718,28 +2721,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DenyContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 923; + this.state = 927; this.match(TrinoSqlParser.KW_DENY); - this.state = 934; + this.state = 938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 924; + this.state = 928; this.privilege(); - this.state = 929; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 925; + this.state = 929; this.match(TrinoSqlParser.T__2); - this.state = 926; + this.state = 930; this.privilege(); } } - this.state = 931; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2747,20 +2750,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 932; + this.state = 936; this.match(TrinoSqlParser.KW_ALL); - this.state = 933; + this.state = 937; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 936; + this.state = 940; this.match(TrinoSqlParser.KW_ON); - this.state = 937; + this.state = 941; this.grantObject(); - this.state = 938; + this.state = 942; this.match(TrinoSqlParser.KW_TO); - this.state = 939; + this.state = 943; (localContext as DenyContext)._grantee = this.principal(); } break; @@ -2768,40 +2771,40 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetRoleContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 941; + this.state = 945; this.match(TrinoSqlParser.KW_SET); - this.state = 942; - this.match(TrinoSqlParser.KW_ROLE); this.state = 946; + this.match(TrinoSqlParser.KW_ROLE); + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 943; + this.state = 947; this.match(TrinoSqlParser.KW_ALL); } break; case 2: { - this.state = 944; + this.state = 948; this.match(TrinoSqlParser.KW_NONE); } break; case 3: { - this.state = 945; + this.state = 949; (localContext as SetRoleContext)._role = this.identifier(); } break; } - this.state = 950; + this.state = 954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 948; + this.state = 952; this.match(TrinoSqlParser.KW_IN); - this.state = 949; + this.state = 953; (localContext as SetRoleContext)._catalog = this.catalogRef(); } } @@ -2812,18 +2815,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 952; + this.state = 956; this.match(TrinoSqlParser.KW_SHOW); - this.state = 953; + this.state = 957; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 956; + this.state = 960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 954; + this.state = 958; this.match(TrinoSqlParser.KW_ON); - this.state = 955; + this.state = 959; this.grantObject(); } } @@ -2834,39 +2837,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 958; + this.state = 962; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 970; + this.state = 974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 959; + this.state = 963; this.match(TrinoSqlParser.T__0); - this.state = 960; + this.state = 964; this.explainOption(); - this.state = 965; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 961; + this.state = 965; this.match(TrinoSqlParser.T__2); - this.state = 962; + this.state = 966; this.explainOption(); } } - this.state = 967; + this.state = 971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 968; + this.state = 972; this.match(TrinoSqlParser.T__1); } break; } - this.state = 972; + this.state = 976; this.statement(); } break; @@ -2874,21 +2877,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainAnalyzeContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 973; + this.state = 977; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 974; + this.state = 978; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 976; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 975; + this.state = 979; this.match(TrinoSqlParser.KW_VERBOSE); } } - this.state = 978; + this.state = 982; this.statement(); } break; @@ -2896,13 +2899,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 979; + this.state = 983; this.match(TrinoSqlParser.KW_SHOW); - this.state = 980; + this.state = 984; this.match(TrinoSqlParser.KW_CREATE); - this.state = 981; + this.state = 985; this.match(TrinoSqlParser.KW_TABLE); - this.state = 982; + this.state = 986; this.tableRef(); } break; @@ -2910,13 +2913,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateSchemaContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 983; + this.state = 987; this.match(TrinoSqlParser.KW_SHOW); - this.state = 984; + this.state = 988; this.match(TrinoSqlParser.KW_CREATE); - this.state = 985; + this.state = 989; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 986; + this.state = 990; this.schemaRef(); } break; @@ -2924,13 +2927,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 987; + this.state = 991; this.match(TrinoSqlParser.KW_SHOW); - this.state = 988; + this.state = 992; this.match(TrinoSqlParser.KW_CREATE); - this.state = 989; + this.state = 993; this.match(TrinoSqlParser.KW_VIEW); - this.state = 990; + this.state = 994; this.viewRef(); } break; @@ -2938,15 +2941,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 991; + this.state = 995; this.match(TrinoSqlParser.KW_SHOW); - this.state = 992; + this.state = 996; this.match(TrinoSqlParser.KW_CREATE); - this.state = 993; + this.state = 997; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 994; + this.state = 998; this.match(TrinoSqlParser.KW_VIEW); - this.state = 995; + this.state = 999; this.viewRef(); } break; @@ -2954,13 +2957,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 996; + this.state = 1000; this.match(TrinoSqlParser.KW_SHOW); - this.state = 997; + this.state = 1001; this.match(TrinoSqlParser.KW_CREATE); - this.state = 998; + this.state = 1002; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 999; + this.state = 1003; this.functionName(); } break; @@ -2968,16 +2971,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1000; + this.state = 1004; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1001; + this.state = 1005; this.match(TrinoSqlParser.KW_TABLES); - this.state = 1004; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1002; + this.state = 1006; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -2986,28 +2989,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1003; + this.state = 1007; this.schemaRef(); } } - this.state = 1012; + this.state = 1016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1006; + this.state = 1010; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1007; + this.state = 1011; (localContext as ShowTablesContext)._pattern = this.string_(); - this.state = 1010; + this.state = 1014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1008; + this.state = 1012; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1009; + this.state = 1013; (localContext as ShowTablesContext)._escape = this.string_(); } } @@ -3021,16 +3024,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSchemasContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1014; + this.state = 1018; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1015; + this.state = 1019; this.match(TrinoSqlParser.KW_SCHEMAS); - this.state = 1018; + this.state = 1022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1016; + this.state = 1020; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3039,28 +3042,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1017; + this.state = 1021; this.catalogRef(); } } - this.state = 1026; + this.state = 1030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1020; + this.state = 1024; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1021; + this.state = 1025; (localContext as ShowSchemasContext)._pattern = this.string_(); - this.state = 1024; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1022; + this.state = 1026; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1023; + this.state = 1027; (localContext as ShowSchemasContext)._escape = this.string_(); } } @@ -3074,27 +3077,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1028; + this.state = 1032; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1029; + this.state = 1033; this.match(TrinoSqlParser.KW_CATALOGS); - this.state = 1036; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1030; + this.state = 1034; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1031; + this.state = 1035; (localContext as ShowCatalogsContext)._pattern = this.string_(); - this.state = 1034; + this.state = 1038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1032; + this.state = 1036; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1033; + this.state = 1037; (localContext as ShowCatalogsContext)._escape = this.string_(); } } @@ -3108,11 +3111,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1038; + this.state = 1042; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1039; + this.state = 1043; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1040; + this.state = 1044; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3121,25 +3124,25 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1041; + this.state = 1045; this.tableOrViewName(); - this.state = 1048; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1042; + this.state = 1046; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1043; + this.state = 1047; (localContext as ShowColumnsContext)._pattern = this.string_(); - this.state = 1046; + this.state = 1050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1044; + this.state = 1048; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1045; + this.state = 1049; (localContext as ShowColumnsContext)._escape = this.string_(); } } @@ -3153,13 +3156,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1050; + this.state = 1054; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1051; + this.state = 1055; this.match(TrinoSqlParser.KW_STATS); - this.state = 1052; + this.state = 1056; this.match(TrinoSqlParser.KW_FOR); - this.state = 1053; + this.state = 1057; this.tableOrViewName(); } break; @@ -3167,17 +3170,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsForQueryContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1054; + this.state = 1058; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1055; + this.state = 1059; this.match(TrinoSqlParser.KW_STATS); - this.state = 1056; + this.state = 1060; this.match(TrinoSqlParser.KW_FOR); - this.state = 1057; + this.state = 1061; this.match(TrinoSqlParser.T__0); - this.state = 1058; + this.state = 1062; this.rootQuery(); - this.state = 1059; + this.state = 1063; this.match(TrinoSqlParser.T__1); } break; @@ -3185,26 +3188,26 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRolesContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1061; + this.state = 1065; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1063; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 56) { { - this.state = 1062; + this.state = 1066; this.match(TrinoSqlParser.KW_CURRENT); } } - this.state = 1065; + this.state = 1069; this.match(TrinoSqlParser.KW_ROLES); - this.state = 1068; + this.state = 1072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1066; + this.state = 1070; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3213,7 +3216,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1067; + this.state = 1071; this.catalogRef(); } } @@ -3224,18 +3227,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRoleGrantsContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1070; + this.state = 1074; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1071; + this.state = 1075; this.match(TrinoSqlParser.KW_ROLE); - this.state = 1072; + this.state = 1076; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 1075; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1073; + this.state = 1077; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3244,7 +3247,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1074; + this.state = 1078; this.catalogRef(); } } @@ -3255,9 +3258,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1077; + this.state = 1081; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1078; + this.state = 1082; this.tableOrViewName(); } break; @@ -3265,9 +3268,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1079; + this.state = 1083; this.match(TrinoSqlParser.KW_DESC); - this.state = 1080; + this.state = 1084; this.tableOrViewName(); } break; @@ -3275,16 +3278,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1081; + this.state = 1085; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1082; + this.state = 1086; this.match(TrinoSqlParser.KW_FUNCTIONS); - this.state = 1085; + this.state = 1089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1083; + this.state = 1087; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3293,28 +3296,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1084; + this.state = 1088; this.schemaRef(); } } - this.state = 1093; + this.state = 1097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1087; + this.state = 1091; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1088; + this.state = 1092; (localContext as ShowFunctionsContext)._pattern = this.string_(); - this.state = 1091; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1089; + this.state = 1093; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1090; + this.state = 1094; (localContext as ShowFunctionsContext)._escape = this.string_(); } } @@ -3328,27 +3331,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSessionContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1095; + this.state = 1099; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1096; + this.state = 1100; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1103; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1097; + this.state = 1101; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1098; + this.state = 1102; (localContext as ShowSessionContext)._pattern = this.string_(); - this.state = 1101; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1099; + this.state = 1103; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1100; + this.state = 1104; (localContext as ShowSessionContext)._escape = this.string_(); } } @@ -3362,13 +3365,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1105; + this.state = 1109; this.match(TrinoSqlParser.KW_SET); - this.state = 1106; + this.state = 1110; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1107; + this.state = 1111; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 1108; + this.state = 1112; this.authorizationUser(); } break; @@ -3376,11 +3379,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1109; + this.state = 1113; this.match(TrinoSqlParser.KW_RESET); - this.state = 1110; + this.state = 1114; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1111; + this.state = 1115; this.match(TrinoSqlParser.KW_AUTHORIZATION); } break; @@ -3388,15 +3391,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1112; + this.state = 1116; this.match(TrinoSqlParser.KW_SET); - this.state = 1113; + this.state = 1117; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1114; + this.state = 1118; this.qualifiedName(); - this.state = 1115; + this.state = 1119; this.match(TrinoSqlParser.EQ); - this.state = 1116; + this.state = 1120; this.expression(); } break; @@ -3404,11 +3407,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1118; + this.state = 1122; this.match(TrinoSqlParser.KW_RESET); - this.state = 1119; + this.state = 1123; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1120; + this.state = 1124; this.qualifiedName(); } break; @@ -3416,30 +3419,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StartTransactionContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1121; + this.state = 1125; this.match(TrinoSqlParser.KW_START); - this.state = 1122; + this.state = 1126; this.match(TrinoSqlParser.KW_TRANSACTION); - this.state = 1131; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 220) { { - this.state = 1123; + this.state = 1127; this.transactionMode(); - this.state = 1128; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1124; + this.state = 1128; this.match(TrinoSqlParser.T__2); - this.state = 1125; + this.state = 1129; this.transactionMode(); } } - this.state = 1130; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3452,14 +3455,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommitContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1133; + this.state = 1137; this.match(TrinoSqlParser.KW_COMMIT); - this.state = 1135; + this.state = 1139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1134; + this.state = 1138; this.match(TrinoSqlParser.KW_WORK); } } @@ -3470,14 +3473,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollbackContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1137; + this.state = 1141; this.match(TrinoSqlParser.KW_ROLLBACK); - this.state = 1139; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1138; + this.state = 1142; this.match(TrinoSqlParser.KW_WORK); } } @@ -3488,13 +3491,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PrepareContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1141; + this.state = 1145; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1142; + this.state = 1146; this.identifier(); - this.state = 1143; + this.state = 1147; this.match(TrinoSqlParser.KW_FROM); - this.state = 1144; + this.state = 1148; this.statement(); } break; @@ -3502,11 +3505,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeallocateContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1146; + this.state = 1150; this.match(TrinoSqlParser.KW_DEALLOCATE); - this.state = 1147; + this.state = 1151; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1148; + this.state = 1152; this.identifier(); } break; @@ -3514,32 +3517,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1149; + this.state = 1153; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1150; + this.state = 1154; this.identifier(); - this.state = 1160; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1151; + this.state = 1155; this.match(TrinoSqlParser.KW_USING); - this.state = 1152; + this.state = 1156; this.expression(); - this.state = 1157; + this.state = 1161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1153; + this.state = 1157; this.match(TrinoSqlParser.T__2); - this.state = 1154; + this.state = 1158; this.expression(); } } - this.state = 1159; + this.state = 1163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3552,34 +3555,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteImmediateContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1162; + this.state = 1166; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1163; + this.state = 1167; this.match(TrinoSqlParser.KW_IMMEDIATE); - this.state = 1164; + this.state = 1168; this.string_(); - this.state = 1174; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1165; + this.state = 1169; this.match(TrinoSqlParser.KW_USING); - this.state = 1166; + this.state = 1170; this.expression(); - this.state = 1171; + this.state = 1175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1167; + this.state = 1171; this.match(TrinoSqlParser.T__2); - this.state = 1168; + this.state = 1172; this.expression(); } } - this.state = 1173; + this.state = 1177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3592,11 +3595,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeInputContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1176; + this.state = 1180; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1177; + this.state = 1181; this.match(TrinoSqlParser.KW_INPUT); - this.state = 1178; + this.state = 1182; this.identifier(); } break; @@ -3604,11 +3607,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeOutputContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1179; + this.state = 1183; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1180; + this.state = 1184; this.match(TrinoSqlParser.KW_OUTPUT); - this.state = 1181; + this.state = 1185; this.identifier(); } break; @@ -3616,11 +3619,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetPathContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1182; + this.state = 1186; this.match(TrinoSqlParser.KW_SET); - this.state = 1183; + this.state = 1187; this.match(TrinoSqlParser.KW_PATH); - this.state = 1184; + this.state = 1188; this.pathSpecification(); } break; @@ -3628,24 +3631,24 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1185; + this.state = 1189; this.match(TrinoSqlParser.KW_SET); - this.state = 1186; + this.state = 1190; this.match(TrinoSqlParser.KW_TIME); - this.state = 1187; + this.state = 1191; this.match(TrinoSqlParser.KW_ZONE); - this.state = 1190; + this.state = 1194; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1188; + this.state = 1192; this.match(TrinoSqlParser.KW_LOCAL); } break; case 2: { - this.state = 1189; + this.state = 1193; this.expression(); } break; @@ -3656,36 +3659,36 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UpdateContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1192; + this.state = 1196; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 1193; + this.state = 1197; this.tableRef(); - this.state = 1194; + this.state = 1198; this.match(TrinoSqlParser.KW_SET); - this.state = 1195; + this.state = 1199; this.updateAssignment(); - this.state = 1200; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1196; + this.state = 1200; this.match(TrinoSqlParser.T__2); - this.state = 1197; + this.state = 1201; this.updateAssignment(); } } - this.state = 1202; + this.state = 1206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1204; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 1203; + this.state = 1207; this.whereClause(); } } @@ -3696,51 +3699,51 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1206; + this.state = 1210; this.match(TrinoSqlParser.KW_MERGE); - this.state = 1207; + this.state = 1211; this.match(TrinoSqlParser.KW_INTO); - this.state = 1208; + this.state = 1212; this.tableRef(); - this.state = 1213; + this.state = 1217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282056543) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 1210; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1209; + this.state = 1213; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1212; + this.state = 1216; this.identifier(); } } - this.state = 1215; + this.state = 1219; this.match(TrinoSqlParser.KW_USING); - this.state = 1216; + this.state = 1220; this.relation(0); - this.state = 1217; + this.state = 1221; this.match(TrinoSqlParser.KW_ON); - this.state = 1218; + this.state = 1222; this.expression(); - this.state = 1220; + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1219; + this.state = 1223; this.mergeCase(); } } - this.state = 1222; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); @@ -3750,15 +3753,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTableCommentContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1224; + this.state = 1228; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1225; + this.state = 1229; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1226; + this.state = 1230; this.match(TrinoSqlParser.KW_ON); - this.state = 1227; + this.state = 1231; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1228; + this.state = 1232; this.tableRef(); } break; @@ -3766,15 +3769,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnCommentContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1229; + this.state = 1233; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1230; + this.state = 1234; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1231; + this.state = 1235; this.match(TrinoSqlParser.KW_ON); - this.state = 1232; + this.state = 1236; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 1233; + this.state = 1237; this.columnRef(); } break; @@ -3800,17 +3803,17 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1237; + this.state = 1241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1236; + this.state = 1240; this.withFunction(); } break; } - this.state = 1239; + this.state = 1243; this.query(); } } @@ -3835,23 +3838,23 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1241; + this.state = 1245; this.match(TrinoSqlParser.KW_WITH); - this.state = 1242; + this.state = 1246; this.functionSpecification(); - this.state = 1247; + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1243; + this.state = 1247; this.match(TrinoSqlParser.T__2); - this.state = 1244; + this.state = 1248; this.functionSpecification(); } } - this.state = 1249; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3879,17 +3882,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1251; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 1250; + this.state = 1254; this.with_(); } } - this.state = 1253; + this.state = 1257; this.queryNoWith(); } } @@ -3914,33 +3917,33 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1255; + this.state = 1259; this.match(TrinoSqlParser.KW_WITH); - this.state = 1257; + this.state = 1261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 221) { { - this.state = 1256; + this.state = 1260; this.match(TrinoSqlParser.KW_RECURSIVE); } } - this.state = 1259; + this.state = 1263; this.namedQuery(); - this.state = 1264; + this.state = 1268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1260; + this.state = 1264; this.match(TrinoSqlParser.T__2); - this.state = 1261; + this.state = 1265; this.namedQuery(); } } - this.state = 1266; + this.state = 1270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3964,7 +3967,7 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new TableElementContext(this.context, this.state); this.enterRule(localContext, 26, TrinoSqlParser.RULE_tableElement); try { - this.state = 1269; + this.state = 1273; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -4186,14 +4189,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1267; + this.state = 1271; this.columnDefinition(); } break; case TrinoSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1268; + this.state = 1272; this.likeClause(); } break; @@ -4222,42 +4225,42 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1275; this.columnNameCreate(); - this.state = 1272; + this.state = 1276; localContext._colType = this.type_(0); - this.state = 1275; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 1273; + this.state = 1277; this.match(TrinoSqlParser.KW_NOT); - this.state = 1274; + this.state = 1278; this.match(TrinoSqlParser.KW_NULL); } } - this.state = 1279; + this.state = 1283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1277; + this.state = 1281; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1278; + this.state = 1282; localContext._comment = this.string_(); } break; } - this.state = 1283; + this.state = 1287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1281; + this.state = 1285; this.match(TrinoSqlParser.KW_WITH); - this.state = 1282; + this.state = 1286; this.properties(); } break; @@ -4285,16 +4288,16 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1285; + this.state = 1289; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1286; + this.state = 1290; this.tableRef(); - this.state = 1289; + this.state = 1293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92 || _la === 123) { { - this.state = 1287; + this.state = 1291; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 123)) { @@ -4304,7 +4307,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1288; + this.state = 1292; this.match(TrinoSqlParser.KW_PROPERTIES); } } @@ -4331,11 +4334,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1291; + this.state = 1295; this.match(TrinoSqlParser.T__0); - this.state = 1292; + this.state = 1296; this.propertyAssignments(); - this.state = 1293; + this.state = 1297; this.match(TrinoSqlParser.T__1); } } @@ -4360,21 +4363,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1295; + this.state = 1299; this.property(); - this.state = 1300; + this.state = 1304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1296; + this.state = 1300; this.match(TrinoSqlParser.T__2); - this.state = 1297; + this.state = 1301; this.property(); } } - this.state = 1302; + this.state = 1306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4400,11 +4403,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1303; + this.state = 1307; this.identifier(); - this.state = 1304; + this.state = 1308; this.match(TrinoSqlParser.EQ); - this.state = 1305; + this.state = 1309; this.propertyValue(); } } @@ -4426,14 +4429,14 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 38, TrinoSqlParser.RULE_propertyValue); try { - this.state = 1309; + this.state = 1313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: localContext = new DefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1307; + this.state = 1311; this.match(TrinoSqlParser.KW_DEFAULT); } break; @@ -4441,7 +4444,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NonDefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1308; + this.state = 1312; this.expression(); } break; @@ -4468,53 +4471,53 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1311; + this.state = 1315; this.queryTerm(0); - this.state = 1322; + this.state = 1326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1312; + this.state = 1316; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1313; + this.state = 1317; this.match(TrinoSqlParser.KW_BY); - this.state = 1314; + this.state = 1318; this.sortItem(); - this.state = 1319; + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1315; + this.state = 1319; this.match(TrinoSqlParser.T__2); - this.state = 1316; + this.state = 1320; this.sortItem(); } } - this.state = 1321; + this.state = 1325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1329; + this.state = 1333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1324; + this.state = 1328; this.match(TrinoSqlParser.KW_OFFSET); - this.state = 1325; + this.state = 1329; localContext._offset = this.rowCount(); - this.state = 1327; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 239 || _la === 240) { { - this.state = 1326; + this.state = 1330; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4529,15 +4532,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1344; + this.state = 1348; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LIMIT: { { - this.state = 1331; + this.state = 1335; this.match(TrinoSqlParser.KW_LIMIT); - this.state = 1332; + this.state = 1336; localContext._limit = this.limitRowCount(); } } @@ -4545,9 +4548,9 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FETCH: { { - this.state = 1333; + this.state = 1337; this.match(TrinoSqlParser.KW_FETCH); - this.state = 1334; + this.state = 1338; _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 174)) { this.errorHandler.recoverInline(this); @@ -4556,17 +4559,17 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1336; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 324 || _la === 329) { { - this.state = 1335; + this.state = 1339; localContext._fetchFirst = this.rowCount(); } } - this.state = 1338; + this.state = 1342; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4575,20 +4578,20 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1342; + this.state = 1346; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONLY: { - this.state = 1339; + this.state = 1343; this.match(TrinoSqlParser.KW_ONLY); } break; case TrinoSqlParser.KW_WITH: { - this.state = 1340; + this.state = 1344; this.match(TrinoSqlParser.KW_WITH); - this.state = 1341; + this.state = 1345; this.match(TrinoSqlParser.KW_TIES); } break; @@ -4658,13 +4661,13 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new LimitRowCountContext(this.context, this.state); this.enterRule(localContext, 42, TrinoSqlParser.RULE_limitRowCount); try { - this.state = 1348; + this.state = 1352; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1346; + this.state = 1350; this.match(TrinoSqlParser.KW_ALL); } break; @@ -4672,7 +4675,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1347; + this.state = 1351; this.rowCount(); } break; @@ -4701,7 +4704,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1350; + this.state = 1354; _la = this.tokenStream.LA(1); if(!(_la === 324 || _la === 329)) { this.errorHandler.recoverInline(this); @@ -4750,11 +4753,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1353; + this.state = 1357; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1369; + this.state = 1373; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -4764,7 +4767,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1367; + this.state = 1371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: @@ -4772,23 +4775,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1355; + this.state = 1359; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1356; + this.state = 1360; (localContext as SetOperationContext)._operator = this.match(TrinoSqlParser.KW_INTERSECT); - this.state = 1358; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1357; + this.state = 1361; this.setQuantifier(); } } - this.state = 1360; + this.state = 1364; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -4797,11 +4800,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1361; + this.state = 1365; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1362; + this.state = 1366; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 281)) { @@ -4811,24 +4814,24 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1364; + this.state = 1368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1363; + this.state = 1367; this.setQuantifier(); } } - this.state = 1366; + this.state = 1370; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1371; + this.state = 1375; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -4853,14 +4856,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 48, TrinoSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1388; + this.state = 1392; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1372; + this.state = 1376; this.querySpecification(); } break; @@ -4868,9 +4871,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1373; + this.state = 1377; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1374; + this.state = 1378; this.tableRef(); } break; @@ -4878,25 +4881,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1375; + this.state = 1379; this.match(TrinoSqlParser.KW_VALUES); - this.state = 1376; + this.state = 1380; this.expression(); - this.state = 1381; + this.state = 1385; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1377; + this.state = 1381; this.match(TrinoSqlParser.T__2); - this.state = 1378; + this.state = 1382; this.expression(); } } } - this.state = 1383; + this.state = 1387; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4906,11 +4909,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1384; + this.state = 1388; this.match(TrinoSqlParser.T__0); - this.state = 1385; + this.state = 1389; this.queryNoWith(); - this.state = 1386; + this.state = 1390; this.match(TrinoSqlParser.T__1); } break; @@ -4939,28 +4942,28 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1390; + this.state = 1394; this.columnRef(); } break; case 2: { - this.state = 1391; + this.state = 1395; this.expression(); } break; } - this.state = 1395; + this.state = 1399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1394; + this.state = 1398; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 29 || _la === 75)) { @@ -4973,14 +4976,14 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 1399; + this.state = 1403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1397; + this.state = 1401; this.match(TrinoSqlParser.KW_NULLS); - this.state = 1398; + this.state = 1402; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 148)) { @@ -5016,128 +5019,126 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1401; + this.state = 1405; this.match(TrinoSqlParser.KW_SELECT); - this.state = 1403; + this.state = 1407; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1402; + this.state = 1406; this.setQuantifier(); } break; } - this.state = 1405; + this.state = 1409; this.selectItem(); - this.state = 1410; + this.state = 1414; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1406; + this.state = 1410; this.match(TrinoSqlParser.T__2); - this.state = 1407; + this.state = 1411; this.selectItem(); } } } - this.state = 1412; + this.state = 1416; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } - this.state = 1422; + this.state = 1426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1413; + this.state = 1417; this.match(TrinoSqlParser.KW_FROM); - this.state = 1414; + this.state = 1418; this.relation(0); - this.state = 1419; + this.state = 1423; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1415; + this.state = 1419; this.match(TrinoSqlParser.T__2); - this.state = 1416; + this.state = 1420; this.relation(0); } } } - this.state = 1421; + this.state = 1425; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); } } break; } - this.state = 1425; + this.state = 1429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1424; + this.state = 1428; this.whereClause(); } break; } - this.state = 1430; + this.state = 1434; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1427; + this.state = 1431; this.match(TrinoSqlParser.KW_GROUP); - this.state = 1428; + this.state = 1432; this.match(TrinoSqlParser.KW_BY); - this.state = 1429; + this.state = 1433; this.groupBy(); } break; } - this.state = 1434; + this.state = 1437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1432; - this.match(TrinoSqlParser.KW_HAVING); - this.state = 1433; - localContext._having = this.booleanExpression(0); + this.state = 1436; + this.havingClause(); } break; } - this.state = 1445; + this.state = 1448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: { - this.state = 1436; + this.state = 1439; this.match(TrinoSqlParser.KW_WINDOW); - this.state = 1437; + this.state = 1440; this.windowDefinition(); - this.state = 1442; + this.state = 1445; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1438; + this.state = 1441; this.match(TrinoSqlParser.T__2); - this.state = 1439; + this.state = 1442; this.windowDefinition(); } } } - this.state = 1444; + this.state = 1447; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); } @@ -5166,9 +5167,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1447; + this.state = 1450; this.match(TrinoSqlParser.KW_WHERE); - this.state = 1448; + this.state = 1451; localContext._where = this.booleanExpression(0); } } @@ -5186,40 +5187,66 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 56, TrinoSqlParser.RULE_havingClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1453; + this.match(TrinoSqlParser.KW_HAVING); + this.state = 1454; + localContext._having = this.booleanExpression(0); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 56, TrinoSqlParser.RULE_groupBy); + this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1450; + this.state = 1456; this.setQuantifier(); } break; } - this.state = 1453; + this.state = 1459; this.groupingElement(); - this.state = 1458; + this.state = 1464; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1454; + this.state = 1460; this.match(TrinoSqlParser.T__2); - this.state = 1455; + this.state = 1461; this.groupingElement(); } } } - this.state = 1460; + this.state = 1466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } @@ -5239,19 +5266,60 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public partitionBy(): PartitionByContext { + let localContext = new PartitionByContext(this.context, this.state); + this.enterRule(localContext, 60, TrinoSqlParser.RULE_partitionBy); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1467; + this.expression(); + this.state = 1472; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 3) { + { + { + this.state = 1468; + this.match(TrinoSqlParser.T__2); + this.state = 1469; + this.expression(); + } + } + this.state = 1474; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupingElement); + this.enterRule(localContext, 62, TrinoSqlParser.RULE_groupingElement); let _la: number; try { - this.state = 1501; + this.state = 1515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1475; this.groupingSet(); } break; @@ -5259,37 +5327,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollupContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1462; + this.state = 1476; this.match(TrinoSqlParser.KW_ROLLUP); - this.state = 1463; + this.state = 1477; this.match(TrinoSqlParser.T__0); - this.state = 1472; + this.state = 1486; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1464; + this.state = 1478; this.groupingSet(); - this.state = 1469; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1465; + this.state = 1479; this.match(TrinoSqlParser.T__2); - this.state = 1466; + this.state = 1480; this.groupingSet(); } } - this.state = 1471; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1474; + this.state = 1488; this.match(TrinoSqlParser.T__1); } break; @@ -5297,37 +5365,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CubeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1475; + this.state = 1489; this.match(TrinoSqlParser.KW_CUBE); - this.state = 1476; + this.state = 1490; this.match(TrinoSqlParser.T__0); - this.state = 1485; + this.state = 1499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1477; + this.state = 1491; this.groupingSet(); - this.state = 1482; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1478; + this.state = 1492; this.match(TrinoSqlParser.T__2); - this.state = 1479; + this.state = 1493; this.groupingSet(); } } - this.state = 1484; + this.state = 1498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1487; + this.state = 1501; this.match(TrinoSqlParser.T__1); } break; @@ -5335,31 +5403,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MultipleGroupingSetsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1488; + this.state = 1502; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 1489; + this.state = 1503; this.match(TrinoSqlParser.KW_SETS); - this.state = 1490; + this.state = 1504; this.match(TrinoSqlParser.T__0); - this.state = 1491; + this.state = 1505; this.groupingSet(); - this.state = 1496; + this.state = 1510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1492; + this.state = 1506; this.match(TrinoSqlParser.T__2); - this.state = 1493; + this.state = 1507; this.groupingSet(); } } - this.state = 1498; + this.state = 1512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1499; + this.state = 1513; this.match(TrinoSqlParser.T__1); } break; @@ -5381,51 +5449,51 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupingSet); + this.enterRule(localContext, 64, TrinoSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1516; + this.state = 1530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1503; + this.state = 1517; this.match(TrinoSqlParser.T__0); - this.state = 1512; + this.state = 1526; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 1504; + this.state = 1518; this.groupingTerm(); - this.state = 1509; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1505; + this.state = 1519; this.match(TrinoSqlParser.T__2); - this.state = 1506; + this.state = 1520; this.groupingTerm(); } } - this.state = 1511; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1514; + this.state = 1528; this.match(TrinoSqlParser.T__1); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1515; + this.state = 1529; this.groupingTerm(); } break; @@ -5447,22 +5515,22 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingTerm(): GroupingTermContext { let localContext = new GroupingTermContext(this.context, this.state); - this.enterRule(localContext, 62, TrinoSqlParser.RULE_groupingTerm); + this.enterRule(localContext, 66, TrinoSqlParser.RULE_groupingTerm); try { - this.state = 1520; + this.state = 1534; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1532; this.columnRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1519; + this.state = 1533; this.expression(); } break; @@ -5484,19 +5552,19 @@ export class TrinoSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 64, TrinoSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 68, TrinoSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1522; + this.state = 1536; localContext._name = this.identifier(); - this.state = 1523; + this.state = 1537; this.match(TrinoSqlParser.KW_AS); - this.state = 1524; + this.state = 1538; this.match(TrinoSqlParser.T__0); - this.state = 1525; + this.state = 1539; this.windowSpecification(); - this.state = 1526; + this.state = 1540; this.match(TrinoSqlParser.T__1); } } @@ -5516,89 +5584,71 @@ export class TrinoSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 66, TrinoSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 70, TrinoSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1528; + this.state = 1542; localContext._existingWindowName = this.identifier(); } break; } - this.state = 1541; + this.state = 1548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1531; + this.state = 1545; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1532; + this.state = 1546; this.match(TrinoSqlParser.KW_BY); - this.state = 1533; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - this.state = 1538; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 3) { - { - { - this.state = 1534; - this.match(TrinoSqlParser.T__2); - this.state = 1535; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - } - } - this.state = 1540; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 1547; + this.partitionBy(); } } - this.state = 1553; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1543; + this.state = 1550; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1544; + this.state = 1551; this.match(TrinoSqlParser.KW_BY); - this.state = 1545; + this.state = 1552; this.sortItem(); - this.state = 1550; + this.state = 1557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1546; + this.state = 1553; this.match(TrinoSqlParser.T__2); - this.state = 1547; + this.state = 1554; this.sortItem(); } } - this.state = 1552; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1556; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116 || _la === 168 || _la === 219 || _la === 240) { { - this.state = 1555; + this.state = 1562; this.windowFrame(); } } @@ -5621,30 +5671,30 @@ export class TrinoSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 68, TrinoSqlParser.RULE_namedQuery); + this.enterRule(localContext, 72, TrinoSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1558; + this.state = 1565; localContext._name = this.identifier(); - this.state = 1560; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 1559; + this.state = 1566; this.columnAliases(); } } - this.state = 1562; + this.state = 1569; this.match(TrinoSqlParser.KW_AS); - this.state = 1563; + this.state = 1570; this.match(TrinoSqlParser.T__0); - this.state = 1564; + this.state = 1571; this.query(); - this.state = 1565; + this.state = 1572; this.match(TrinoSqlParser.T__1); } } @@ -5664,12 +5714,12 @@ export class TrinoSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 70, TrinoSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 74, TrinoSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1567; + this.state = 1574; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 79)) { this.errorHandler.recoverInline(this); @@ -5696,48 +5746,48 @@ export class TrinoSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 72, TrinoSqlParser.RULE_selectItem); + this.enterRule(localContext, 76, TrinoSqlParser.RULE_selectItem); let _la: number; try { - this.state = 1587; + this.state = 1594; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1571; + this.state = 1578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1569; + this.state = 1576; this.columnRef(); } break; case 2: { - this.state = 1570; + this.state = 1577; this.expression(); } break; } - this.state = 1577; + this.state = 1584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1574; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1573; + this.state = 1580; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1576; + this.state = 1583; (localContext as SelectSingleContext)._alias = this.identifier(); } break; @@ -5748,20 +5798,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1579; + this.state = 1586; this.primaryExpression(0); - this.state = 1580; + this.state = 1587; this.match(TrinoSqlParser.T__3); - this.state = 1581; + this.state = 1588; this.match(TrinoSqlParser.ASTERISK); - this.state = 1584; + this.state = 1591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1582; + this.state = 1589; this.match(TrinoSqlParser.KW_AS); - this.state = 1583; + this.state = 1590; this.columnAliases(); } break; @@ -5772,7 +5822,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1586; + this.state = 1593; this.match(TrinoSqlParser.ASTERISK); } break; @@ -5804,8 +5854,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 74; - this.enterRecursionRule(localContext, 74, TrinoSqlParser.RULE_relation, _p); + let _startState = 78; + this.enterRecursionRule(localContext, 78, TrinoSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5815,11 +5865,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1590; + this.state = 1597; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1610; + this.state = 1617; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5833,20 +5883,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_relation); - this.state = 1592; + this.state = 1599; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1606; + this.state = 1613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_CROSS: { - this.state = 1593; + this.state = 1600; this.match(TrinoSqlParser.KW_CROSS); - this.state = 1594; + this.state = 1601; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1595; + this.state = 1602; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5856,25 +5906,25 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: case TrinoSqlParser.KW_RIGHT: { - this.state = 1596; + this.state = 1603; this.joinType(); - this.state = 1597; + this.state = 1604; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1598; + this.state = 1605; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 1599; + this.state = 1606; this.joinCriteria(); } break; case TrinoSqlParser.KW_NATURAL: { - this.state = 1601; + this.state = 1608; this.match(TrinoSqlParser.KW_NATURAL); - this.state = 1602; + this.state = 1609; this.joinType(); - this.state = 1603; + this.state = 1610; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1604; + this.state = 1611; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5884,7 +5934,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 1612; + this.state = 1619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); } @@ -5906,22 +5956,22 @@ export class TrinoSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 76, TrinoSqlParser.RULE_joinType); + this.enterRule(localContext, 80, TrinoSqlParser.RULE_joinType); let _la: number; try { - this.state = 1628; + this.state = 1635; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 1614; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 1613; + this.state = 1620; this.match(TrinoSqlParser.KW_INNER); } } @@ -5931,14 +5981,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: this.enterOuterAlt(localContext, 2); { - this.state = 1616; + this.state = 1623; this.match(TrinoSqlParser.KW_LEFT); - this.state = 1618; + this.state = 1625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1617; + this.state = 1624; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5948,14 +5998,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 3); { - this.state = 1620; + this.state = 1627; this.match(TrinoSqlParser.KW_RIGHT); - this.state = 1622; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1621; + this.state = 1628; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5965,14 +6015,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FULL: this.enterOuterAlt(localContext, 4); { - this.state = 1624; + this.state = 1631; this.match(TrinoSqlParser.KW_FULL); - this.state = 1626; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1625; + this.state = 1632; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5999,47 +6049,47 @@ export class TrinoSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 78, TrinoSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 82, TrinoSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 1644; + this.state = 1651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1630; + this.state = 1637; this.match(TrinoSqlParser.KW_ON); - this.state = 1631; + this.state = 1638; this.booleanExpression(0); } break; case TrinoSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1632; + this.state = 1639; this.match(TrinoSqlParser.KW_USING); - this.state = 1633; + this.state = 1640; this.match(TrinoSqlParser.T__0); - this.state = 1634; + this.state = 1641; this.identifier(); - this.state = 1639; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1635; + this.state = 1642; this.match(TrinoSqlParser.T__2); - this.state = 1636; + this.state = 1643; this.identifier(); } } - this.state = 1641; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1642; + this.state = 1649; this.match(TrinoSqlParser.T__1); } break; @@ -6063,26 +6113,26 @@ export class TrinoSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 80, TrinoSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 84, TrinoSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 1646; - this.patternRecognition(); this.state = 1653; + this.patternRecognition(); + this.state = 1660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: { - this.state = 1647; + this.state = 1654; this.match(TrinoSqlParser.KW_TABLESAMPLE); - this.state = 1648; + this.state = 1655; this.sampleType(); - this.state = 1649; + this.state = 1656; this.match(TrinoSqlParser.T__0); - this.state = 1650; + this.state = 1657; localContext._percentage = this.expression(); - this.state = 1651; + this.state = 1658; this.match(TrinoSqlParser.T__1); } break; @@ -6105,12 +6155,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 82, TrinoSqlParser.RULE_sampleType); + this.enterRule(localContext, 86, TrinoSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1655; + this.state = 1662; _la = this.tokenStream.LA(1); if(!(_la === 33 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -6137,12 +6187,12 @@ export class TrinoSqlParser extends SQLParserBase { } public trimsSpecification(): TrimsSpecificationContext { let localContext = new TrimsSpecificationContext(this.context, this.state); - this.enterRule(localContext, 84, TrinoSqlParser.RULE_trimsSpecification); + this.enterRule(localContext, 88, TrinoSqlParser.RULE_trimsSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1664; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 150 || _la === 270)) { this.errorHandler.recoverInline(this); @@ -6169,35 +6219,35 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggOverflowBehavior(): ListAggOverflowBehaviorContext { let localContext = new ListAggOverflowBehaviorContext(this.context, this.state); - this.enterRule(localContext, 86, TrinoSqlParser.RULE_listAggOverflowBehavior); + this.enterRule(localContext, 90, TrinoSqlParser.RULE_listAggOverflowBehavior); let _la: number; try { - this.state = 1665; + this.state = 1672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 1659; + this.state = 1666; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 2); { - this.state = 1660; + this.state = 1667; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 1662; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326 || _la === 327) { { - this.state = 1661; + this.state = 1668; this.string_(); } } - this.state = 1664; + this.state = 1671; this.listaggCountIndication(); } break; @@ -6221,26 +6271,26 @@ export class TrinoSqlParser extends SQLParserBase { } public listaggCountIndication(): ListaggCountIndicationContext { let localContext = new ListaggCountIndicationContext(this.context, this.state); - this.enterRule(localContext, 88, TrinoSqlParser.RULE_listaggCountIndication); + this.enterRule(localContext, 92, TrinoSqlParser.RULE_listaggCountIndication); try { - this.state = 1671; + this.state = 1678; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1667; + this.state = 1674; this.match(TrinoSqlParser.KW_WITH); - this.state = 1668; + this.state = 1675; this.match(TrinoSqlParser.KW_COUNT); } break; case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 1669; + this.state = 1676; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 1670; + this.state = 1677; this.match(TrinoSqlParser.KW_COUNT); } break; @@ -6264,51 +6314,33 @@ export class TrinoSqlParser extends SQLParserBase { } public patternRecognition(): PatternRecognitionContext { let localContext = new PatternRecognitionContext(this.context, this.state); - this.enterRule(localContext, 90, TrinoSqlParser.RULE_patternRecognition); + this.enterRule(localContext, 94, TrinoSqlParser.RULE_patternRecognition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1673; + this.state = 1680; this.aliasedRelation(); this.state = 1756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1674; + this.state = 1681; this.match(TrinoSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1675; + this.state = 1682; this.match(TrinoSqlParser.T__0); this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1676; + this.state = 1683; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1677; + this.state = 1684; this.match(TrinoSqlParser.KW_BY); - this.state = 1678; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - this.state = 1683; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 3) { - { - { - this.state = 1679; - this.match(TrinoSqlParser.T__2); - this.state = 1680; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - } - } - this.state = 1685; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 1685; + this.partitionBy(); } } @@ -6471,7 +6503,7 @@ export class TrinoSqlParser extends SQLParserBase { this.match(TrinoSqlParser.T__1); this.state = 1754; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { this.state = 1748; @@ -6488,7 +6520,7 @@ export class TrinoSqlParser extends SQLParserBase { this.identifier(); this.state = 1752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { this.state = 1751; @@ -6520,7 +6552,7 @@ export class TrinoSqlParser extends SQLParserBase { } public measureDefinition(): MeasureDefinitionContext { let localContext = new MeasureDefinitionContext(this.context, this.state); - this.enterRule(localContext, 92, TrinoSqlParser.RULE_measureDefinition); + this.enterRule(localContext, 96, TrinoSqlParser.RULE_measureDefinition); try { this.enterOuterAlt(localContext, 1); { @@ -6548,7 +6580,7 @@ export class TrinoSqlParser extends SQLParserBase { } public rowsPerMatch(): RowsPerMatchContext { let localContext = new RowsPerMatchContext(this.context, this.state); - this.enterRule(localContext, 94, TrinoSqlParser.RULE_rowsPerMatch); + this.enterRule(localContext, 98, TrinoSqlParser.RULE_rowsPerMatch); let _la: number; try { this.state = 1773; @@ -6610,7 +6642,7 @@ export class TrinoSqlParser extends SQLParserBase { } public emptyMatchHandling(): EmptyMatchHandlingContext { let localContext = new EmptyMatchHandlingContext(this.context, this.state); - this.enterRule(localContext, 96, TrinoSqlParser.RULE_emptyMatchHandling); + this.enterRule(localContext, 100, TrinoSqlParser.RULE_emptyMatchHandling); try { this.state = 1784; this.errorHandler.sync(this); @@ -6668,11 +6700,11 @@ export class TrinoSqlParser extends SQLParserBase { } public skipTo(): SkipToContext { let localContext = new SkipToContext(this.context, this.state); - this.enterRule(localContext, 98, TrinoSqlParser.RULE_skipTo); + this.enterRule(localContext, 102, TrinoSqlParser.RULE_skipTo); try { this.state = 1805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -6754,7 +6786,7 @@ export class TrinoSqlParser extends SQLParserBase { } public subsetDefinition(): SubsetDefinitionContext { let localContext = new SubsetDefinitionContext(this.context, this.state); - this.enterRule(localContext, 100, TrinoSqlParser.RULE_subsetDefinition); + this.enterRule(localContext, 104, TrinoSqlParser.RULE_subsetDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6805,7 +6837,7 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDefinition(): VariableDefinitionContext { let localContext = new VariableDefinitionContext(this.context, this.state); - this.enterRule(localContext, 102, TrinoSqlParser.RULE_variableDefinition); + this.enterRule(localContext, 106, TrinoSqlParser.RULE_variableDefinition); try { this.enterOuterAlt(localContext, 1); { @@ -6833,7 +6865,7 @@ export class TrinoSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 104, TrinoSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 108, TrinoSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6842,7 +6874,7 @@ export class TrinoSqlParser extends SQLParserBase { this.relationPrimary(); this.state = 1832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { this.state = 1826; @@ -6859,7 +6891,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext._alias = this.identifier(); this.state = 1830; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { this.state = 1829; @@ -6888,7 +6920,7 @@ export class TrinoSqlParser extends SQLParserBase { } public columnListCreate(): ColumnListCreateContext { let localContext = new ColumnListCreateContext(this.context, this.state); - this.enterRule(localContext, 106, TrinoSqlParser.RULE_columnListCreate); + this.enterRule(localContext, 110, TrinoSqlParser.RULE_columnListCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6933,7 +6965,7 @@ export class TrinoSqlParser extends SQLParserBase { } public columnList(): ColumnListContext { let localContext = new ColumnListContext(this.context, this.state); - this.enterRule(localContext, 108, TrinoSqlParser.RULE_columnList); + this.enterRule(localContext, 112, TrinoSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6978,7 +7010,7 @@ export class TrinoSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 110, TrinoSqlParser.RULE_columnAliases); + this.enterRule(localContext, 114, TrinoSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -7023,12 +7055,12 @@ export class TrinoSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 112, TrinoSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 116, TrinoSqlParser.RULE_relationPrimary); let _la: number; try { this.state = 1938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); @@ -7037,7 +7069,7 @@ export class TrinoSqlParser extends SQLParserBase { this.tableOrViewName(); this.state = 1869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { this.state = 1868; @@ -7089,7 +7121,7 @@ export class TrinoSqlParser extends SQLParserBase { this.match(TrinoSqlParser.T__1); this.state = 1888; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { this.state = 1886; @@ -7177,7 +7209,7 @@ export class TrinoSqlParser extends SQLParserBase { this.match(TrinoSqlParser.T__1); this.state = 1929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { this.state = 1918; @@ -7248,12 +7280,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableColumn(): JsonTableColumnContext { let localContext = new JsonTableColumnContext(this.context, this.state); - this.enterRule(localContext, 114, TrinoSqlParser.RULE_jsonTableColumn); + this.enterRule(localContext, 118, TrinoSqlParser.RULE_jsonTableColumn); let _la: number; try { this.state = 2017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: localContext = new OrdinalityColumnContext(localContext); this.enterOuterAlt(localContext, 1); @@ -7288,7 +7320,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 1954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { this.state = 1950; @@ -7387,7 +7419,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 1988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { this.state = 1984; @@ -7489,12 +7521,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableSpecificPlan(): JsonTableSpecificPlanContext { let localContext = new JsonTableSpecificPlanContext(this.context, this.state); - this.enterRule(localContext, 116, TrinoSqlParser.RULE_jsonTableSpecificPlan); + this.enterRule(localContext, 120, TrinoSqlParser.RULE_jsonTableSpecificPlan); let _la: number; try { this.state = 2044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: localContext = new LeafPlanContext(localContext); this.enterOuterAlt(localContext, 1); @@ -7596,7 +7628,7 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTablePathName(): JsonTablePathNameContext { let localContext = new JsonTablePathNameContext(this.context, this.state); - this.enterRule(localContext, 118, TrinoSqlParser.RULE_jsonTablePathName); + this.enterRule(localContext, 122, TrinoSqlParser.RULE_jsonTablePathName); try { this.enterOuterAlt(localContext, 1); { @@ -7620,7 +7652,7 @@ export class TrinoSqlParser extends SQLParserBase { } public planPrimary(): PlanPrimaryContext { let localContext = new PlanPrimaryContext(this.context, this.state); - this.enterRule(localContext, 120, TrinoSqlParser.RULE_planPrimary); + this.enterRule(localContext, 124, TrinoSqlParser.RULE_planPrimary); try { this.state = 2053; this.errorHandler.sync(this); @@ -7879,7 +7911,7 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableDefaultPlan(): JsonTableDefaultPlanContext { let localContext = new JsonTableDefaultPlanContext(this.context, this.state); - this.enterRule(localContext, 122, TrinoSqlParser.RULE_jsonTableDefaultPlan); + this.enterRule(localContext, 126, TrinoSqlParser.RULE_jsonTableDefaultPlan); let _la: number; try { this.state = 2065; @@ -7973,7 +8005,7 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionCall(): TableFunctionCallContext { let localContext = new TableFunctionCallContext(this.context, this.state); - this.enterRule(localContext, 124, TrinoSqlParser.RULE_tableFunctionCall); + this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableFunctionCall); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -7984,7 +8016,7 @@ export class TrinoSqlParser extends SQLParserBase { this.match(TrinoSqlParser.T__0); this.state = 2077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { this.state = 2069; @@ -8056,13 +8088,13 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionArgument(): TableFunctionArgumentContext { let localContext = new TableFunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 126, TrinoSqlParser.RULE_tableFunctionArgument); + this.enterRule(localContext, 130, TrinoSqlParser.RULE_tableFunctionArgument); try { this.enterOuterAlt(localContext, 1); { this.state = 2095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { this.state = 2092; @@ -8074,7 +8106,7 @@ export class TrinoSqlParser extends SQLParserBase { } this.state = 2100; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { this.state = 2097; @@ -8112,14 +8144,14 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgument(): TableArgumentContext { let localContext = new TableArgumentContext(this.context, this.state); - this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableArgument); + this.enterRule(localContext, 132, TrinoSqlParser.RULE_tableArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 2102; this.tableArgumentRelation(); - this.state = 2120; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { @@ -8128,46 +8160,30 @@ export class TrinoSqlParser extends SQLParserBase { this.match(TrinoSqlParser.KW_PARTITION); this.state = 2104; this.match(TrinoSqlParser.KW_BY); - this.state = 2118; + this.state = 2111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { this.state = 2105; this.match(TrinoSqlParser.T__0); - this.state = 2114; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { this.state = 2106; - this.expression(); - this.state = 2111; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 3) { - { - { - this.state = 2107; - this.match(TrinoSqlParser.T__2); - this.state = 2108; - this.expression(); - } - } - this.state = 2113; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.partitionBy(); } } - this.state = 2116; + this.state = 2109; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2117; + this.state = 2110; this.expression(); } break; @@ -8175,26 +8191,26 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2128; + this.state = 2121; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_PRUNE: { - this.state = 2122; + this.state = 2115; this.match(TrinoSqlParser.KW_PRUNE); - this.state = 2123; + this.state = 2116; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2124; + this.state = 2117; this.match(TrinoSqlParser.KW_EMPTY); } break; case TrinoSqlParser.KW_KEEP: { - this.state = 2125; + this.state = 2118; this.match(TrinoSqlParser.KW_KEEP); - this.state = 2126; + this.state = 2119; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2127; + this.state = 2120; this.match(TrinoSqlParser.KW_EMPTY); } break; @@ -8206,47 +8222,47 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2146; + this.state = 2139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2130; + this.state = 2123; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2131; + this.state = 2124; this.match(TrinoSqlParser.KW_BY); - this.state = 2144; + this.state = 2137; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2132; + this.state = 2125; this.match(TrinoSqlParser.T__0); - this.state = 2133; + this.state = 2126; this.sortItem(); - this.state = 2138; + this.state = 2131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2134; + this.state = 2127; this.match(TrinoSqlParser.T__2); - this.state = 2135; + this.state = 2128; this.sortItem(); } } - this.state = 2140; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2141; + this.state = 2134; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2143; + this.state = 2136; this.sortItem(); } break; @@ -8272,47 +8288,47 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgumentRelation(): TableArgumentRelationContext { let localContext = new TableArgumentRelationContext(this.context, this.state); - this.enterRule(localContext, 130, TrinoSqlParser.RULE_tableArgumentRelation); + this.enterRule(localContext, 134, TrinoSqlParser.RULE_tableArgumentRelation); let _la: number; try { - this.state = 2174; + this.state = 2167; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: localContext = new TableArgumentTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2141; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2149; + this.state = 2142; this.match(TrinoSqlParser.T__0); - this.state = 2150; + this.state = 2143; this.tableRef(); - this.state = 2151; + this.state = 2144; this.match(TrinoSqlParser.T__1); - this.state = 2159; + this.state = 2152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2153; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2152; + this.state = 2145; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2155; + this.state = 2148; this.identifier(); - this.state = 2157; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2156; + this.state = 2149; this.columnAliases(); } } @@ -8326,37 +8342,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableArgumentQueryContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2154; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2162; + this.state = 2155; this.match(TrinoSqlParser.T__0); - this.state = 2163; + this.state = 2156; this.query(); - this.state = 2164; + this.state = 2157; this.match(TrinoSqlParser.T__1); - this.state = 2172; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2166; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2165; + this.state = 2158; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2168; + this.state = 2161; this.identifier(); - this.state = 2170; + this.state = 2163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2169; + this.state = 2162; this.columnAliases(); } } @@ -8384,55 +8400,55 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorArgument(): DescriptorArgumentContext { let localContext = new DescriptorArgumentContext(this.context, this.state); - this.enterRule(localContext, 132, TrinoSqlParser.RULE_descriptorArgument); + this.enterRule(localContext, 136, TrinoSqlParser.RULE_descriptorArgument); let _la: number; try { - this.state = 2194; + this.state = 2187; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_DESCRIPTOR: this.enterOuterAlt(localContext, 1); { - this.state = 2176; + this.state = 2169; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2177; + this.state = 2170; this.match(TrinoSqlParser.T__0); - this.state = 2178; + this.state = 2171; this.descriptorField(); - this.state = 2183; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2179; + this.state = 2172; this.match(TrinoSqlParser.T__2); - this.state = 2180; + this.state = 2173; this.descriptorField(); } } - this.state = 2185; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2186; + this.state = 2179; this.match(TrinoSqlParser.T__1); } break; case TrinoSqlParser.KW_CAST: this.enterOuterAlt(localContext, 2); { - this.state = 2188; + this.state = 2181; this.match(TrinoSqlParser.KW_CAST); - this.state = 2189; + this.state = 2182; this.match(TrinoSqlParser.T__0); - this.state = 2190; + this.state = 2183; this.match(TrinoSqlParser.KW_NULL); - this.state = 2191; + this.state = 2184; this.match(TrinoSqlParser.KW_AS); - this.state = 2192; + this.state = 2185; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2193; + this.state = 2186; this.match(TrinoSqlParser.T__1); } break; @@ -8456,19 +8472,19 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorField(): DescriptorFieldContext { let localContext = new DescriptorFieldContext(this.context, this.state); - this.enterRule(localContext, 134, TrinoSqlParser.RULE_descriptorField); + this.enterRule(localContext, 138, TrinoSqlParser.RULE_descriptorField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2189; this.identifier(); - this.state = 2198; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2197; + this.state = 2190; this.type_(0); } } @@ -8491,36 +8507,36 @@ export class TrinoSqlParser extends SQLParserBase { } public copartitionTables(): CopartitionTablesContext { let localContext = new CopartitionTablesContext(this.context, this.state); - this.enterRule(localContext, 136, TrinoSqlParser.RULE_copartitionTables); + this.enterRule(localContext, 140, TrinoSqlParser.RULE_copartitionTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2200; + this.state = 2193; this.match(TrinoSqlParser.T__0); - this.state = 2201; + this.state = 2194; this.qualifiedName(); - this.state = 2202; + this.state = 2195; this.match(TrinoSqlParser.T__2); - this.state = 2203; + this.state = 2196; this.qualifiedName(); - this.state = 2208; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2204; + this.state = 2197; this.match(TrinoSqlParser.T__2); - this.state = 2205; + this.state = 2198; this.qualifiedName(); } } - this.state = 2210; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2211; + this.state = 2204; this.match(TrinoSqlParser.T__1); } } @@ -8540,11 +8556,11 @@ export class TrinoSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 138, TrinoSqlParser.RULE_expression); + this.enterRule(localContext, 142, TrinoSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2206; this.booleanExpression(0); } } @@ -8574,13 +8590,13 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 140; - this.enterRecursionRule(localContext, 140, TrinoSqlParser.RULE_booleanExpression, _p); + let _startState = 144; + this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2222; + this.state = 2215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: @@ -8840,14 +8856,14 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2216; + this.state = 2209; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2218; + this.state = 2211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2217; + this.state = 2210; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -8859,9 +8875,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2220; + this.state = 2213; this.match(TrinoSqlParser.KW_NOT); - this.state = 2221; + this.state = 2214; this.booleanExpression(3); } break; @@ -8869,9 +8885,9 @@ export class TrinoSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2232; + this.state = 2225; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8879,20 +8895,20 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2230; + this.state = 2223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { localContext = new AndContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2224; + this.state = 2217; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2225; + this.state = 2218; this.match(TrinoSqlParser.KW_AND); - this.state = 2226; + this.state = 2219; this.booleanExpression(3); } break; @@ -8900,22 +8916,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new OrContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2227; + this.state = 2220; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2228; + this.state = 2221; this.match(TrinoSqlParser.KW_OR); - this.state = 2229; + this.state = 2222; this.booleanExpression(2); } break; } } } - this.state = 2234; + this.state = 2227; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); } } } @@ -8935,19 +8951,19 @@ export class TrinoSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 142, TrinoSqlParser.RULE_predicate); + this.enterRule(localContext, 146, TrinoSqlParser.RULE_predicate); let _la: number; try { - this.state = 2296; + this.state = 2289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2235; + this.state = 2228; this.comparisonOperator(); - this.state = 2236; + this.state = 2229; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -8955,15 +8971,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2238; + this.state = 2231; this.comparisonOperator(); - this.state = 2239; + this.state = 2232; this.comparisonQuantifier(); - this.state = 2240; + this.state = 2233; this.match(TrinoSqlParser.T__0); - this.state = 2241; + this.state = 2234; this.query(); - this.state = 2242; + this.state = 2235; this.match(TrinoSqlParser.T__1); } break; @@ -8971,23 +8987,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2245; + this.state = 2238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2244; + this.state = 2237; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2247; + this.state = 2240; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 2248; + this.state = 2241; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2249; + this.state = 2242; this.match(TrinoSqlParser.KW_AND); - this.state = 2250; + this.state = 2243; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -8995,39 +9011,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2253; + this.state = 2246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2252; + this.state = 2245; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2255; + this.state = 2248; this.match(TrinoSqlParser.KW_IN); - this.state = 2256; + this.state = 2249; this.match(TrinoSqlParser.T__0); - this.state = 2257; + this.state = 2250; this.expression(); - this.state = 2262; + this.state = 2255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2258; + this.state = 2251; this.match(TrinoSqlParser.T__2); - this.state = 2259; + this.state = 2252; this.expression(); } } - this.state = 2264; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2265; + this.state = 2258; this.match(TrinoSqlParser.T__1); } break; @@ -9035,23 +9051,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2268; + this.state = 2261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2267; + this.state = 2260; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2270; + this.state = 2263; this.match(TrinoSqlParser.KW_IN); - this.state = 2271; + this.state = 2264; this.match(TrinoSqlParser.T__0); - this.state = 2272; + this.state = 2265; this.query(); - this.state = 2273; + this.state = 2266; this.match(TrinoSqlParser.T__1); } break; @@ -9059,28 +9075,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2276; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2275; + this.state = 2268; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2278; + this.state = 2271; this.match(TrinoSqlParser.KW_LIKE); - this.state = 2279; + this.state = 2272; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2282; + this.state = 2275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: { - this.state = 2280; + this.state = 2273; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 2281; + this.state = 2274; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -9091,19 +9107,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2284; + this.state = 2277; this.match(TrinoSqlParser.KW_IS); - this.state = 2286; + this.state = 2279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2285; + this.state = 2278; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2288; + this.state = 2281; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9111,23 +9127,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2289; + this.state = 2282; this.match(TrinoSqlParser.KW_IS); - this.state = 2291; + this.state = 2284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2290; + this.state = 2283; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2293; + this.state = 2286; this.match(TrinoSqlParser.KW_DISTINCT); - this.state = 2294; + this.state = 2287; this.match(TrinoSqlParser.KW_FROM); - this.state = 2295; + this.state = 2288; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -9159,23 +9175,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 144; - this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_valueExpression, _p); + let _startState = 148; + this.enterRecursionRule(localContext, 148, TrinoSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2299; + this.state = 2292; this.primaryExpression(0); } break; @@ -9184,7 +9200,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2300; + this.state = 2293; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9194,15 +9210,15 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2301; + this.state = 2294; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2318; + this.state = 2311; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9210,19 +9226,19 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2316; + this.state = 2309; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2304; + this.state = 2297; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2305; + this.state = 2298; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 7) !== 0))) { @@ -9232,7 +9248,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2306; + this.state = 2299; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9241,11 +9257,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2307; + this.state = 2300; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2308; + this.state = 2301; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9255,7 +9271,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2309; + this.state = 2302; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9264,13 +9280,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2310; + this.state = 2303; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2311; + this.state = 2304; this.match(TrinoSqlParser.CONCAT); - this.state = 2312; + this.state = 2305; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -9278,22 +9294,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2313; + this.state = 2306; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2314; + this.state = 2307; this.match(TrinoSqlParser.KW_AT); - this.state = 2315; + this.state = 2308; this.timeZoneSpecifier(); } break; } } } - this.state = 2320; + this.state = 2313; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } } } @@ -9323,23 +9339,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 146; - this.enterRecursionRule(localContext, 146, TrinoSqlParser.RULE_primaryExpression, _p); + let _startState = 150; + this.enterRecursionRule(localContext, 150, TrinoSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2774; + this.state = 2767; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2322; + this.state = 2315; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9348,7 +9364,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2323; + this.state = 2316; this.interval(); } break; @@ -9357,9 +9373,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2324; + this.state = 2317; this.identifier(); - this.state = 2325; + this.state = 2318; this.string_(); } break; @@ -9368,11 +9384,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2320; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2328; + this.state = 2321; this.match(TrinoSqlParser.KW_PRECISION); - this.state = 2329; + this.state = 2322; this.string_(); } break; @@ -9381,7 +9397,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2330; + this.state = 2323; this.number_(); } break; @@ -9390,7 +9406,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2331; + this.state = 2324; this.booleanValue(); } break; @@ -9399,7 +9415,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2332; + this.state = 2325; this.string_(); } break; @@ -9408,7 +9424,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2333; + this.state = 2326; this.match(TrinoSqlParser.BINARY_LITERAL); } break; @@ -9417,7 +9433,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2334; + this.state = 2327; this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -9426,17 +9442,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2335; + this.state = 2328; this.match(TrinoSqlParser.KW_POSITION); - this.state = 2336; + this.state = 2329; this.match(TrinoSqlParser.T__0); - this.state = 2337; + this.state = 2330; this.valueExpression(0); - this.state = 2338; + this.state = 2331; this.match(TrinoSqlParser.KW_IN); - this.state = 2339; + this.state = 2332; this.valueExpression(0); - this.state = 2340; + this.state = 2333; this.match(TrinoSqlParser.T__1); } break; @@ -9445,27 +9461,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2342; + this.state = 2335; this.match(TrinoSqlParser.T__0); - this.state = 2343; + this.state = 2336; this.expression(); - this.state = 2346; + this.state = 2339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2344; + this.state = 2337; this.match(TrinoSqlParser.T__2); - this.state = 2345; + this.state = 2338; this.expression(); } } - this.state = 2348; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 3); - this.state = 2350; + this.state = 2343; this.match(TrinoSqlParser.T__1); } break; @@ -9474,29 +9490,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2352; + this.state = 2345; this.match(TrinoSqlParser.KW_ROW); - this.state = 2353; + this.state = 2346; this.match(TrinoSqlParser.T__0); - this.state = 2354; + this.state = 2347; this.expression(); - this.state = 2359; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2355; + this.state = 2348; this.match(TrinoSqlParser.T__2); - this.state = 2356; + this.state = 2349; this.expression(); } } - this.state = 2361; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2362; + this.state = 2355; this.match(TrinoSqlParser.T__1); } break; @@ -9505,88 +9521,88 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ListaggContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2364; + this.state = 2357; (localContext as ListaggContext)._name = this.match(TrinoSqlParser.KW_LISTAGG); - this.state = 2365; + this.state = 2358; this.match(TrinoSqlParser.T__0); - this.state = 2367; + this.state = 2360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2366; + this.state = 2359; this.setQuantifier(); } break; } - this.state = 2369; + this.state = 2362; this.expression(); - this.state = 2372; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2370; + this.state = 2363; this.match(TrinoSqlParser.T__2); - this.state = 2371; + this.state = 2364; this.string_(); } } - this.state = 2377; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2374; + this.state = 2367; this.match(TrinoSqlParser.KW_ON); - this.state = 2375; + this.state = 2368; this.match(TrinoSqlParser.KW_OVERFLOW); - this.state = 2376; + this.state = 2369; this.listAggOverflowBehavior(); } } - this.state = 2379; + this.state = 2372; this.match(TrinoSqlParser.T__1); { - this.state = 2380; + this.state = 2373; this.match(TrinoSqlParser.KW_WITHIN); - this.state = 2381; + this.state = 2374; this.match(TrinoSqlParser.KW_GROUP); - this.state = 2382; + this.state = 2375; this.match(TrinoSqlParser.T__0); - this.state = 2383; + this.state = 2376; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2384; + this.state = 2377; this.match(TrinoSqlParser.KW_BY); - this.state = 2385; + this.state = 2378; this.sortItem(); - this.state = 2390; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2386; + this.state = 2379; this.match(TrinoSqlParser.T__2); - this.state = 2387; + this.state = 2380; this.sortItem(); } } - this.state = 2392; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2393; + this.state = 2386; this.match(TrinoSqlParser.T__1); } - this.state = 2396; + this.state = 2389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2395; + this.state = 2388; this.filter(); } break; @@ -9598,52 +9614,52 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2399; + this.state = 2392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2398; + this.state = 2391; this.processingMode(); } break; } - this.state = 2401; + this.state = 2394; this.functionName(); - this.state = 2402; + this.state = 2395; this.match(TrinoSqlParser.T__0); - this.state = 2406; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2403; + this.state = 2396; (localContext as FunctionCallContext)._label = this.identifier(); - this.state = 2404; + this.state = 2397; this.match(TrinoSqlParser.T__3); } } - this.state = 2408; + this.state = 2401; this.match(TrinoSqlParser.ASTERISK); - this.state = 2409; + this.state = 2402; this.match(TrinoSqlParser.T__1); - this.state = 2411; + this.state = 2404; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2410; + this.state = 2403; this.filter(); } break; } - this.state = 2414; + this.state = 2407; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2413; + this.state = 2406; this.over(); } break; @@ -9655,114 +9671,114 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2417; + this.state = 2410; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2416; + this.state = 2409; this.processingMode(); } break; } - this.state = 2419; + this.state = 2412; this.functionName(); - this.state = 2420; + this.state = 2413; this.match(TrinoSqlParser.T__0); - this.state = 2432; + this.state = 2425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538415087) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2422; + this.state = 2415; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2421; + this.state = 2414; this.setQuantifier(); } break; } - this.state = 2424; + this.state = 2417; this.expression(); - this.state = 2429; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2425; + this.state = 2418; this.match(TrinoSqlParser.T__2); - this.state = 2426; + this.state = 2419; this.expression(); } } - this.state = 2431; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2444; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2434; + this.state = 2427; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2435; + this.state = 2428; this.match(TrinoSqlParser.KW_BY); - this.state = 2436; + this.state = 2429; this.sortItem(); - this.state = 2441; + this.state = 2434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2437; + this.state = 2430; this.match(TrinoSqlParser.T__2); - this.state = 2438; + this.state = 2431; this.sortItem(); } } - this.state = 2443; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2446; + this.state = 2439; this.match(TrinoSqlParser.T__1); - this.state = 2448; + this.state = 2441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2447; + this.state = 2440; this.filter(); } break; } - this.state = 2454; + this.state = 2447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2451; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120 || _la === 228) { { - this.state = 2450; + this.state = 2443; this.nullTreatment(); } } - this.state = 2453; + this.state = 2446; this.over(); } break; @@ -9774,9 +9790,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MeasureContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2456; + this.state = 2449; this.identifier(); - this.state = 2457; + this.state = 2450; this.over(); } break; @@ -9785,11 +9801,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2459; + this.state = 2452; this.identifier(); - this.state = 2460; + this.state = 2453; this.match(TrinoSqlParser.T__6); - this.state = 2461; + this.state = 2454; this.expression(); } break; @@ -9798,39 +9814,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2463; + this.state = 2456; this.match(TrinoSqlParser.T__0); - this.state = 2472; + this.state = 2465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2464; + this.state = 2457; this.identifier(); - this.state = 2469; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2465; + this.state = 2458; this.match(TrinoSqlParser.T__2); - this.state = 2466; + this.state = 2459; this.identifier(); } } - this.state = 2471; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2474; + this.state = 2467; this.match(TrinoSqlParser.T__1); - this.state = 2475; + this.state = 2468; this.match(TrinoSqlParser.T__6); - this.state = 2476; + this.state = 2469; this.expression(); } break; @@ -9839,11 +9855,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2477; + this.state = 2470; this.match(TrinoSqlParser.T__0); - this.state = 2478; + this.state = 2471; this.query(); - this.state = 2479; + this.state = 2472; this.match(TrinoSqlParser.T__1); } break; @@ -9852,13 +9868,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2481; + this.state = 2474; this.match(TrinoSqlParser.KW_EXISTS); - this.state = 2482; + this.state = 2475; this.match(TrinoSqlParser.T__0); - this.state = 2483; + this.state = 2476; this.query(); - this.state = 2484; + this.state = 2477; this.match(TrinoSqlParser.T__1); } break; @@ -9867,37 +9883,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2486; + this.state = 2479; this.match(TrinoSqlParser.KW_CASE); - this.state = 2487; + this.state = 2480; (localContext as SimpleCaseContext)._operand = this.expression(); - this.state = 2489; + this.state = 2482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2488; + this.state = 2481; this.whenClause(); } } - this.state = 2491; + this.state = 2484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2495; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2493; + this.state = 2486; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2494; + this.state = 2487; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2497; + this.state = 2490; this.match(TrinoSqlParser.KW_END); } break; @@ -9906,35 +9922,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2499; + this.state = 2492; this.match(TrinoSqlParser.KW_CASE); - this.state = 2501; + this.state = 2494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2500; + this.state = 2493; this.whenClause(); } } - this.state = 2503; + this.state = 2496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2507; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2505; + this.state = 2498; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2506; + this.state = 2499; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2509; + this.state = 2502; this.match(TrinoSqlParser.KW_END); } break; @@ -9943,17 +9959,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2511; + this.state = 2504; this.match(TrinoSqlParser.KW_CAST); - this.state = 2512; + this.state = 2505; this.match(TrinoSqlParser.T__0); - this.state = 2513; + this.state = 2506; this.expression(); - this.state = 2514; + this.state = 2507; this.match(TrinoSqlParser.KW_AS); - this.state = 2515; + this.state = 2508; this.type_(0); - this.state = 2516; + this.state = 2509; this.match(TrinoSqlParser.T__1); } break; @@ -9962,17 +9978,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2518; + this.state = 2511; this.match(TrinoSqlParser.KW_TRY_CAST); - this.state = 2519; + this.state = 2512; this.match(TrinoSqlParser.T__0); - this.state = 2520; + this.state = 2513; this.expression(); - this.state = 2521; + this.state = 2514; this.match(TrinoSqlParser.KW_AS); - this.state = 2522; + this.state = 2515; this.type_(0); - this.state = 2523; + this.state = 2516; this.match(TrinoSqlParser.T__1); } break; @@ -9981,37 +9997,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2525; + this.state = 2518; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2526; + this.state = 2519; this.match(TrinoSqlParser.T__7); - this.state = 2535; + this.state = 2528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2527; + this.state = 2520; this.expression(); - this.state = 2532; + this.state = 2525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2528; + this.state = 2521; this.match(TrinoSqlParser.T__2); - this.state = 2529; + this.state = 2522; this.expression(); } } - this.state = 2534; + this.state = 2527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2537; + this.state = 2530; this.match(TrinoSqlParser.T__8); } break; @@ -10020,7 +10036,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2538; + this.state = 2531; this.columnName(); } break; @@ -10029,7 +10045,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentDateContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2539; + this.state = 2532; (localContext as CurrentDateContext)._name = this.match(TrinoSqlParser.KW_CURRENT_DATE); } break; @@ -10038,18 +10054,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2540; + this.state = 2533; (localContext as CurrentTimeContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIME); - this.state = 2544; + this.state = 2537; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 2541; + this.state = 2534; this.match(TrinoSqlParser.T__0); - this.state = 2542; + this.state = 2535; (localContext as CurrentTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2543; + this.state = 2536; this.match(TrinoSqlParser.T__1); } break; @@ -10061,18 +10077,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2546; + this.state = 2539; (localContext as CurrentTimestampContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2550; + this.state = 2543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2547; + this.state = 2540; this.match(TrinoSqlParser.T__0); - this.state = 2548; + this.state = 2541; (localContext as CurrentTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2549; + this.state = 2542; this.match(TrinoSqlParser.T__1); } break; @@ -10084,18 +10100,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2552; + this.state = 2545; (localContext as LocalTimeContext)._name = this.match(TrinoSqlParser.KW_LOCALTIME); - this.state = 2556; + this.state = 2549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2553; + this.state = 2546; this.match(TrinoSqlParser.T__0); - this.state = 2554; + this.state = 2547; (localContext as LocalTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2555; + this.state = 2548; this.match(TrinoSqlParser.T__1); } break; @@ -10107,18 +10123,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2558; + this.state = 2551; (localContext as LocalTimestampContext)._name = this.match(TrinoSqlParser.KW_LOCALTIMESTAMP); - this.state = 2562; + this.state = 2555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2559; + this.state = 2552; this.match(TrinoSqlParser.T__0); - this.state = 2560; + this.state = 2553; (localContext as LocalTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2561; + this.state = 2554; this.match(TrinoSqlParser.T__1); } break; @@ -10130,7 +10146,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2564; + this.state = 2557; (localContext as CurrentUserContext)._name = this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -10139,7 +10155,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentCatalogContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2565; + this.state = 2558; (localContext as CurrentCatalogContext)._name = this.match(TrinoSqlParser.KW_CURRENT_CATALOG); } break; @@ -10148,7 +10164,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentSchemaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2566; + this.state = 2559; (localContext as CurrentSchemaContext)._name = this.match(TrinoSqlParser.KW_CURRENT_SCHEMA); } break; @@ -10157,7 +10173,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2567; + this.state = 2560; (localContext as CurrentPathContext)._name = this.match(TrinoSqlParser.KW_CURRENT_PATH); } break; @@ -10166,43 +10182,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2568; + this.state = 2561; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2569; + this.state = 2562; this.match(TrinoSqlParser.T__0); - this.state = 2577; + this.state = 2570; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2571; + this.state = 2564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2570; + this.state = 2563; this.trimsSpecification(); } break; } - this.state = 2574; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3755997183) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2573; + this.state = 2566; (localContext as TrimContext)._trimChar = this.valueExpression(0); } } - this.state = 2576; + this.state = 2569; this.match(TrinoSqlParser.KW_FROM); } break; } - this.state = 2579; + this.state = 2572; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2580; + this.state = 2573; this.match(TrinoSqlParser.T__1); } break; @@ -10211,17 +10227,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2582; + this.state = 2575; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2583; + this.state = 2576; this.match(TrinoSqlParser.T__0); - this.state = 2584; + this.state = 2577; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2585; + this.state = 2578; this.match(TrinoSqlParser.T__2); - this.state = 2586; + this.state = 2579; (localContext as TrimContext)._trimChar = this.valueExpression(0); - this.state = 2587; + this.state = 2580; this.match(TrinoSqlParser.T__1); } break; @@ -10230,29 +10246,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2589; + this.state = 2582; this.match(TrinoSqlParser.KW_SUBSTRING); - this.state = 2590; + this.state = 2583; this.match(TrinoSqlParser.T__0); - this.state = 2591; + this.state = 2584; this.valueExpression(0); - this.state = 2592; + this.state = 2585; this.match(TrinoSqlParser.KW_FROM); - this.state = 2593; + this.state = 2586; this.valueExpression(0); - this.state = 2596; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2594; + this.state = 2587; this.match(TrinoSqlParser.KW_FOR); - this.state = 2595; + this.state = 2588; this.valueExpression(0); } } - this.state = 2598; + this.state = 2591; this.match(TrinoSqlParser.T__1); } break; @@ -10261,25 +10277,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2600; + this.state = 2593; this.match(TrinoSqlParser.KW_NORMALIZE); - this.state = 2601; + this.state = 2594; this.match(TrinoSqlParser.T__0); - this.state = 2602; + this.state = 2595; this.valueExpression(0); - this.state = 2605; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2603; + this.state = 2596; this.match(TrinoSqlParser.T__2); - this.state = 2604; + this.state = 2597; this.normalForm(); } } - this.state = 2607; + this.state = 2600; this.match(TrinoSqlParser.T__1); } break; @@ -10288,17 +10304,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2609; + this.state = 2602; this.match(TrinoSqlParser.KW_EXTRACT); - this.state = 2610; + this.state = 2603; this.match(TrinoSqlParser.T__0); - this.state = 2611; + this.state = 2604; this.identifier(); - this.state = 2612; + this.state = 2605; this.match(TrinoSqlParser.KW_FROM); - this.state = 2613; + this.state = 2606; this.valueExpression(0); - this.state = 2614; + this.state = 2607; this.match(TrinoSqlParser.T__1); } break; @@ -10307,11 +10323,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2616; + this.state = 2609; this.match(TrinoSqlParser.T__0); - this.state = 2617; + this.state = 2610; this.expression(); - this.state = 2618; + this.state = 2611; this.match(TrinoSqlParser.T__1); } break; @@ -10320,37 +10336,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2620; + this.state = 2613; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 2621; + this.state = 2614; this.match(TrinoSqlParser.T__0); - this.state = 2630; + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2622; + this.state = 2615; this.qualifiedName(); - this.state = 2627; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2623; + this.state = 2616; this.match(TrinoSqlParser.T__2); - this.state = 2624; + this.state = 2617; this.qualifiedName(); } } - this.state = 2629; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2632; + this.state = 2625; this.match(TrinoSqlParser.T__1); } break; @@ -10359,27 +10375,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2633; + this.state = 2626; this.match(TrinoSqlParser.KW_JSON_EXISTS); - this.state = 2634; + this.state = 2627; this.match(TrinoSqlParser.T__0); - this.state = 2635; + this.state = 2628; this.jsonPathInvocation(); - this.state = 2640; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 89 || _la === 97 || _la === 273 || _la === 283) { { - this.state = 2636; + this.state = 2629; this.jsonExistsErrorBehavior(); - this.state = 2637; + this.state = 2630; this.match(TrinoSqlParser.KW_ON); - this.state = 2638; + this.state = 2631; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2642; + this.state = 2635; this.match(TrinoSqlParser.T__1); } break; @@ -10388,53 +10404,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonValueContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2644; + this.state = 2637; this.match(TrinoSqlParser.KW_JSON_VALUE); - this.state = 2645; + this.state = 2638; this.match(TrinoSqlParser.T__0); - this.state = 2646; + this.state = 2639; this.jsonPathInvocation(); - this.state = 2649; + this.state = 2642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2647; + this.state = 2640; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2648; + this.state = 2641; this.type_(0); } } - this.state = 2655; + this.state = 2648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2651; + this.state = 2644; (localContext as JsonValueContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 2652; + this.state = 2645; this.match(TrinoSqlParser.KW_ON); - this.state = 2653; + this.state = 2646; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2661; + this.state = 2654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 2657; + this.state = 2650; (localContext as JsonValueContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 2658; + this.state = 2651; this.match(TrinoSqlParser.KW_ON); - this.state = 2659; + this.state = 2652; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2663; + this.state = 2656; this.match(TrinoSqlParser.T__1); } break; @@ -10443,29 +10459,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonQueryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2665; + this.state = 2658; this.match(TrinoSqlParser.KW_JSON_QUERY); - this.state = 2666; + this.state = 2659; this.match(TrinoSqlParser.T__0); - this.state = 2667; + this.state = 2660; this.jsonPathInvocation(); - this.state = 2674; + this.state = 2667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2668; + this.state = 2661; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2669; + this.state = 2662; this.type_(0); - this.state = 2672; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2670; + this.state = 2663; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2671; + this.state = 2664; this.jsonRepresentation(); } } @@ -10473,24 +10489,24 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2679; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 2676; + this.state = 2669; this.jsonQueryWrapperBehavior(); - this.state = 2677; + this.state = 2670; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2688; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 2681; + this.state = 2674; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -10499,18 +10515,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2682; + this.state = 2675; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2686; + this.state = 2679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2683; + this.state = 2676; this.match(TrinoSqlParser.KW_ON); - this.state = 2684; + this.state = 2677; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2685; + this.state = 2678; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -10518,35 +10534,35 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2694; + this.state = 2687; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: { - this.state = 2690; + this.state = 2683; (localContext as JsonQueryContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2691; + this.state = 2684; this.match(TrinoSqlParser.KW_ON); - this.state = 2692; + this.state = 2685; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2700; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 2696; + this.state = 2689; (localContext as JsonQueryContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2697; + this.state = 2690; this.match(TrinoSqlParser.KW_ON); - this.state = 2698; + this.state = 2691; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2702; + this.state = 2695; this.match(TrinoSqlParser.T__1); } break; @@ -10555,53 +10571,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonObjectContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2704; + this.state = 2697; this.match(TrinoSqlParser.KW_JSON_OBJECT); - this.state = 2705; + this.state = 2698; this.match(TrinoSqlParser.T__0); - this.state = 2734; + this.state = 2727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: { - this.state = 2706; + this.state = 2699; this.jsonObjectMember(); - this.state = 2711; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2707; + this.state = 2700; this.match(TrinoSqlParser.T__2); - this.state = 2708; + this.state = 2701; this.jsonObjectMember(); } } - this.state = 2713; + this.state = 2706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2720; + this.state = 2713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2714; + this.state = 2707; this.match(TrinoSqlParser.KW_NULL); - this.state = 2715; + this.state = 2708; this.match(TrinoSqlParser.KW_ON); - this.state = 2716; + this.state = 2709; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2717; + this.state = 2710; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2718; + this.state = 2711; this.match(TrinoSqlParser.KW_ON); - this.state = 2719; + this.state = 2712; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10613,21 +10629,21 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2732; + this.state = 2725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: { - this.state = 2722; + this.state = 2715; this.match(TrinoSqlParser.KW_WITH); - this.state = 2723; + this.state = 2716; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2725; + this.state = 2718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2724; + this.state = 2717; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10636,16 +10652,16 @@ export class TrinoSqlParser extends SQLParserBase { break; case TrinoSqlParser.KW_WITHOUT: { - this.state = 2727; + this.state = 2720; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2728; + this.state = 2721; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2730; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2729; + this.state = 2722; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10661,23 +10677,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2742; + this.state = 2735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2736; + this.state = 2729; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2737; + this.state = 2730; this.type_(0); - this.state = 2740; + this.state = 2733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2738; + this.state = 2731; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2739; + this.state = 2732; this.jsonRepresentation(); } } @@ -10685,7 +10701,7 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2744; + this.state = 2737; this.match(TrinoSqlParser.T__1); } break; @@ -10694,53 +10710,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonArrayContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2745; + this.state = 2738; this.match(TrinoSqlParser.KW_JSON_ARRAY); - this.state = 2746; + this.state = 2739; this.match(TrinoSqlParser.T__0); - this.state = 2763; + this.state = 2756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2747; + this.state = 2740; this.jsonValueExpression(); - this.state = 2752; + this.state = 2745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2748; + this.state = 2741; this.match(TrinoSqlParser.T__2); - this.state = 2749; + this.state = 2742; this.jsonValueExpression(); } } - this.state = 2754; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2761; + this.state = 2754; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2755; + this.state = 2748; this.match(TrinoSqlParser.KW_NULL); - this.state = 2756; + this.state = 2749; this.match(TrinoSqlParser.KW_ON); - this.state = 2757; + this.state = 2750; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2758; + this.state = 2751; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2759; + this.state = 2752; this.match(TrinoSqlParser.KW_ON); - this.state = 2760; + this.state = 2753; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10753,23 +10769,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2771; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2765; + this.state = 2758; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2766; + this.state = 2759; this.type_(0); - this.state = 2769; + this.state = 2762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2767; + this.state = 2760; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2768; + this.state = 2761; this.jsonRepresentation(); } } @@ -10777,15 +10793,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2773; + this.state = 2766; this.match(TrinoSqlParser.T__1); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2786; + this.state = 2779; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10793,23 +10809,23 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2784; + this.state = 2777; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2776; + this.state = 2769; if (!(this.precpred(this.context, 24))) { throw this.createFailedPredicateException("this.precpred(this.context, 24)"); } - this.state = 2777; + this.state = 2770; this.match(TrinoSqlParser.T__7); - this.state = 2778; + this.state = 2771; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2779; + this.state = 2772; this.match(TrinoSqlParser.T__8); } break; @@ -10818,22 +10834,22 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2781; + this.state = 2774; if (!(this.precpred(this.context, 22))) { throw this.createFailedPredicateException("this.precpred(this.context, 22)"); } - this.state = 2782; + this.state = 2775; this.match(TrinoSqlParser.T__3); - this.state = 2783; + this.state = 2776; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2788; + this.state = 2781; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); } } } @@ -10853,51 +10869,51 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonPathInvocation(): JsonPathInvocationContext { let localContext = new JsonPathInvocationContext(this.context, this.state); - this.enterRule(localContext, 148, TrinoSqlParser.RULE_jsonPathInvocation); + this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonPathInvocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2789; + this.state = 2782; this.jsonValueExpression(); - this.state = 2790; + this.state = 2783; this.match(TrinoSqlParser.T__2); - this.state = 2791; + this.state = 2784; localContext._path = this.string_(); - this.state = 2794; + this.state = 2787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2792; + this.state = 2785; this.match(TrinoSqlParser.KW_AS); - this.state = 2793; + this.state = 2786; localContext._pathName = this.identifier(); } } - this.state = 2805; + this.state = 2798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2796; + this.state = 2789; this.match(TrinoSqlParser.KW_PASSING); - this.state = 2797; + this.state = 2790; this.jsonArgument(); - this.state = 2802; + this.state = 2795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2798; + this.state = 2791; this.match(TrinoSqlParser.T__2); - this.state = 2799; + this.state = 2792; this.jsonArgument(); } } - this.state = 2804; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10922,21 +10938,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueExpression(): JsonValueExpressionContext { let localContext = new JsonValueExpressionContext(this.context, this.state); - this.enterRule(localContext, 150, TrinoSqlParser.RULE_jsonValueExpression); + this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonValueExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2807; + this.state = 2800; this.expression(); - this.state = 2810; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2808; + this.state = 2801; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2809; + this.state = 2802; this.jsonRepresentation(); } } @@ -10959,21 +10975,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonRepresentation(): JsonRepresentationContext { let localContext = new JsonRepresentationContext(this.context, this.state); - this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonRepresentation); + this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonRepresentation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2812; + this.state = 2805; this.match(TrinoSqlParser.KW_JSON); - this.state = 2815; + this.state = 2808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 2813; + this.state = 2806; this.match(TrinoSqlParser.KW_ENCODING); - this.state = 2814; + this.state = 2807; _la = this.tokenStream.LA(1); if(!(((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -11003,15 +11019,15 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonArgument(): JsonArgumentContext { let localContext = new JsonArgumentContext(this.context, this.state); - this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonArgument); + this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2817; + this.state = 2810; this.jsonValueExpression(); - this.state = 2818; + this.state = 2811; this.match(TrinoSqlParser.KW_AS); - this.state = 2819; + this.state = 2812; this.identifier(); } } @@ -11031,12 +11047,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonExistsErrorBehavior(): JsonExistsErrorBehaviorContext { let localContext = new JsonExistsErrorBehaviorContext(this.context, this.state); - this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonExistsErrorBehavior); + this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonExistsErrorBehavior); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2821; + this.state = 2814; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 97 || _la === 273 || _la === 283)) { this.errorHandler.recoverInline(this); @@ -11063,31 +11079,31 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueBehavior(): JsonValueBehaviorContext { let localContext = new JsonValueBehaviorContext(this.context, this.state); - this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonValueBehavior); + this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonValueBehavior); try { - this.state = 2827; + this.state = 2820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 2823; + this.state = 2816; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 2824; + this.state = 2817; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2825; + this.state = 2818; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 2826; + this.state = 2819; this.expression(); } break; @@ -11111,23 +11127,23 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryWrapperBehavior(): JsonQueryWrapperBehaviorContext { let localContext = new JsonQueryWrapperBehaviorContext(this.context, this.state); - this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); + this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); let _la: number; try { - this.state = 2840; + this.state = 2833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 1); { - this.state = 2829; + this.state = 2822; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2831; + this.state = 2824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2830; + this.state = 2823; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11137,14 +11153,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 2833; + this.state = 2826; this.match(TrinoSqlParser.KW_WITH); - this.state = 2835; + this.state = 2828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 49 || _la === 280) { { - this.state = 2834; + this.state = 2827; _la = this.tokenStream.LA(1); if(!(_la === 49 || _la === 280)) { this.errorHandler.recoverInline(this); @@ -11156,12 +11172,12 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2838; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2837; + this.state = 2830; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11188,40 +11204,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryBehavior(): JsonQueryBehaviorContext { let localContext = new JsonQueryBehaviorContext(this.context, this.state); - this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonQueryBehavior); + this.enterRule(localContext, 166, TrinoSqlParser.RULE_jsonQueryBehavior); try { - this.state = 2848; + this.state = 2841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2842; + this.state = 2835; this.match(TrinoSqlParser.KW_ERROR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2843; + this.state = 2836; this.match(TrinoSqlParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2844; + this.state = 2837; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2845; + this.state = 2838; this.match(TrinoSqlParser.KW_ARRAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2846; + this.state = 2839; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2847; + this.state = 2840; this.match(TrinoSqlParser.KW_OBJECT); } break; @@ -11243,40 +11259,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonObjectMember(): JsonObjectMemberContext { let localContext = new JsonObjectMemberContext(this.context, this.state); - this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonObjectMember); + this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonObjectMember); try { - this.state = 2861; + this.state = 2854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2851; + this.state = 2844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 2850; + this.state = 2843; this.match(TrinoSqlParser.KW_KEY); } break; } - this.state = 2853; + this.state = 2846; this.expression(); - this.state = 2854; + this.state = 2847; this.match(TrinoSqlParser.KW_VALUE); - this.state = 2855; + this.state = 2848; this.jsonValueExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2857; + this.state = 2850; this.expression(); - this.state = 2858; + this.state = 2851; this.match(TrinoSqlParser.T__9); - this.state = 2859; + this.state = 2852; this.jsonValueExpression(); } break; @@ -11298,12 +11314,12 @@ export class TrinoSqlParser extends SQLParserBase { } public processingMode(): ProcessingModeContext { let localContext = new ProcessingModeContext(this.context, this.state); - this.enterRule(localContext, 166, TrinoSqlParser.RULE_processingMode); + this.enterRule(localContext, 170, TrinoSqlParser.RULE_processingMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2863; + this.state = 2856; _la = this.tokenStream.LA(1); if(!(_la === 100 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -11330,26 +11346,26 @@ export class TrinoSqlParser extends SQLParserBase { } public nullTreatment(): NullTreatmentContext { let localContext = new NullTreatmentContext(this.context, this.state); - this.enterRule(localContext, 168, TrinoSqlParser.RULE_nullTreatment); + this.enterRule(localContext, 172, TrinoSqlParser.RULE_nullTreatment); try { - this.state = 2869; + this.state = 2862; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 1); { - this.state = 2865; + this.state = 2858; this.match(TrinoSqlParser.KW_IGNORE); - this.state = 2866; + this.state = 2859; this.match(TrinoSqlParser.KW_NULLS); } break; case TrinoSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 2); { - this.state = 2867; + this.state = 2860; this.match(TrinoSqlParser.KW_RESPECT); - this.state = 2868; + this.state = 2861; this.match(TrinoSqlParser.KW_NULLS); } break; @@ -11373,16 +11389,16 @@ export class TrinoSqlParser extends SQLParserBase { } public string_(): StringContext { let localContext = new StringContext(this.context, this.state); - this.enterRule(localContext, 170, TrinoSqlParser.RULE_string); + this.enterRule(localContext, 174, TrinoSqlParser.RULE_string); try { - this.state = 2877; + this.state = 2870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2871; + this.state = 2864; this.match(TrinoSqlParser.STRING); } break; @@ -11390,16 +11406,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2872; + this.state = 2865; this.match(TrinoSqlParser.UNICODE_STRING); - this.state = 2875; + this.state = 2868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2873; + this.state = 2866; this.match(TrinoSqlParser.KW_UESCAPE); - this.state = 2874; + this.state = 2867; this.match(TrinoSqlParser.STRING); } break; @@ -11426,20 +11442,20 @@ export class TrinoSqlParser extends SQLParserBase { } public timeZoneSpecifier(): TimeZoneSpecifierContext { let localContext = new TimeZoneSpecifierContext(this.context, this.state); - this.enterRule(localContext, 172, TrinoSqlParser.RULE_timeZoneSpecifier); + this.enterRule(localContext, 176, TrinoSqlParser.RULE_timeZoneSpecifier); try { - this.state = 2885; + this.state = 2878; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: localContext = new TimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2879; + this.state = 2872; this.match(TrinoSqlParser.KW_TIME); - this.state = 2880; + this.state = 2873; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2881; + this.state = 2874; this.interval(); } break; @@ -11447,11 +11463,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeZoneStringContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2882; + this.state = 2875; this.match(TrinoSqlParser.KW_TIME); - this.state = 2883; + this.state = 2876; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2884; + this.state = 2877; this.string_(); } break; @@ -11473,12 +11489,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 174, TrinoSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 178, TrinoSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2887; + this.state = 2880; _la = this.tokenStream.LA(1); if(!(((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11505,12 +11521,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 176, TrinoSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 180, TrinoSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2889; + this.state = 2882; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 26 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11537,12 +11553,12 @@ export class TrinoSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 178, TrinoSqlParser.RULE_booleanValue); + this.enterRule(localContext, 182, TrinoSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2891; + this.state = 2884; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 273)) { this.errorHandler.recoverInline(this); @@ -11569,19 +11585,19 @@ export class TrinoSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 180, TrinoSqlParser.RULE_interval); + this.enterRule(localContext, 184, TrinoSqlParser.RULE_interval); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2893; + this.state = 2886; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2895; + this.state = 2888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 318 || _la === 319) { { - this.state = 2894; + this.state = 2887; localContext._sign = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -11594,18 +11610,18 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2897; + this.state = 2890; this.string_(); - this.state = 2898; + this.state = 2891; localContext._from_ = this.intervalField(); - this.state = 2901; + this.state = 2894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2899; + this.state = 2892; this.match(TrinoSqlParser.KW_TO); - this.state = 2900; + this.state = 2893; localContext._to = this.intervalField(); } break; @@ -11628,12 +11644,12 @@ export class TrinoSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 182, TrinoSqlParser.RULE_intervalField); + this.enterRule(localContext, 186, TrinoSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2903; + this.state = 2896; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 118 || _la === 170 || _la === 171 || _la === 245 || _la === 310)) { this.errorHandler.recoverInline(this); @@ -11660,12 +11676,12 @@ export class TrinoSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 184, TrinoSqlParser.RULE_normalForm); + this.enterRule(localContext, 188, TrinoSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2905; + this.state = 2898; _la = this.tokenStream.LA(1); if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11702,45 +11718,45 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 186; - this.enterRecursionRule(localContext, 186, TrinoSqlParser.RULE_type, _p); + let _startState = 190; + this.enterRecursionRule(localContext, 190, TrinoSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2998; + this.state = 2991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { localContext = new RowTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2908; + this.state = 2901; this.match(TrinoSqlParser.KW_ROW); - this.state = 2909; + this.state = 2902; this.match(TrinoSqlParser.T__0); - this.state = 2910; + this.state = 2903; this.rowField(); - this.state = 2915; + this.state = 2908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2911; + this.state = 2904; this.match(TrinoSqlParser.T__2); - this.state = 2912; + this.state = 2905; this.rowField(); } } - this.state = 2917; + this.state = 2910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2918; + this.state = 2911; this.match(TrinoSqlParser.T__1); } break; @@ -11749,18 +11765,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2920; + this.state = 2913; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2921; + this.state = 2914; (localContext as IntervalTypeContext)._from_ = this.intervalField(); - this.state = 2924; + this.state = 2917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2922; + this.state = 2915; this.match(TrinoSqlParser.KW_TO); - this.state = 2923; + this.state = 2916; (localContext as IntervalTypeContext)._to = this.intervalField(); } break; @@ -11772,32 +11788,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2926; + this.state = 2919; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2931; + this.state = 2924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2927; + this.state = 2920; this.match(TrinoSqlParser.T__0); - this.state = 2928; + this.state = 2921; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2929; + this.state = 2922; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2936; + this.state = 2929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2933; + this.state = 2926; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2934; + this.state = 2927; this.match(TrinoSqlParser.KW_TIME); - this.state = 2935; + this.state = 2928; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11809,27 +11825,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2938; + this.state = 2931; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2943; + this.state = 2936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2939; + this.state = 2932; this.match(TrinoSqlParser.T__0); - this.state = 2940; + this.state = 2933; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2941; + this.state = 2934; this.match(TrinoSqlParser.T__1); } } - this.state = 2945; + this.state = 2938; this.match(TrinoSqlParser.KW_WITH); - this.state = 2946; + this.state = 2939; this.match(TrinoSqlParser.KW_TIME); - this.state = 2947; + this.state = 2940; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11838,32 +11854,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2948; + this.state = 2941; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2953; + this.state = 2946; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2949; + this.state = 2942; this.match(TrinoSqlParser.T__0); - this.state = 2950; + this.state = 2943; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2951; + this.state = 2944; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2958; + this.state = 2951; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 2955; + this.state = 2948; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2956; + this.state = 2949; this.match(TrinoSqlParser.KW_TIME); - this.state = 2957; + this.state = 2950; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11875,27 +11891,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2960; + this.state = 2953; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2965; + this.state = 2958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2961; + this.state = 2954; this.match(TrinoSqlParser.T__0); - this.state = 2962; + this.state = 2955; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2963; + this.state = 2956; this.match(TrinoSqlParser.T__1); } } - this.state = 2967; + this.state = 2960; this.match(TrinoSqlParser.KW_WITH); - this.state = 2968; + this.state = 2961; this.match(TrinoSqlParser.KW_TIME); - this.state = 2969; + this.state = 2962; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11904,9 +11920,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoublePrecisionTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2970; + this.state = 2963; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2971; + this.state = 2964; this.match(TrinoSqlParser.KW_PRECISION); } break; @@ -11915,13 +11931,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyArrayTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2972; + this.state = 2965; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2973; + this.state = 2966; this.match(TrinoSqlParser.LT); - this.state = 2974; + this.state = 2967; this.type_(0); - this.state = 2975; + this.state = 2968; this.match(TrinoSqlParser.GT); } break; @@ -11930,17 +11946,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyMapTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2977; + this.state = 2970; this.match(TrinoSqlParser.KW_MAP); - this.state = 2978; + this.state = 2971; this.match(TrinoSqlParser.LT); - this.state = 2979; + this.state = 2972; (localContext as LegacyMapTypeContext)._keyType = this.type_(0); - this.state = 2980; + this.state = 2973; this.match(TrinoSqlParser.T__2); - this.state = 2981; + this.state = 2974; (localContext as LegacyMapTypeContext)._valueType = this.type_(0); - this.state = 2982; + this.state = 2975; this.match(TrinoSqlParser.GT); } break; @@ -11949,34 +11965,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GenericTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2984; + this.state = 2977; this.identifier(); - this.state = 2996; + this.state = 2989; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 2985; + this.state = 2978; this.match(TrinoSqlParser.T__0); - this.state = 2986; + this.state = 2979; this.typeParameter(); - this.state = 2991; + this.state = 2984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2987; + this.state = 2980; this.match(TrinoSqlParser.T__2); - this.state = 2988; + this.state = 2981; this.typeParameter(); } } - this.state = 2993; + this.state = 2986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2994; + this.state = 2987; this.match(TrinoSqlParser.T__1); } break; @@ -11985,9 +12001,9 @@ export class TrinoSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3009; + this.state = 3002; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 393, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11998,22 +12014,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new ArrayTypeContext(new TypeContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_type); - this.state = 3000; + this.state = 2993; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3001; + this.state = 2994; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 3005; + this.state = 2998; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 3002; + this.state = 2995; this.match(TrinoSqlParser.T__7); - this.state = 3003; + this.state = 2996; this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3004; + this.state = 2997; this.match(TrinoSqlParser.T__8); } break; @@ -12021,9 +12037,9 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 3011; + this.state = 3004; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 393, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); } } } @@ -12043,24 +12059,24 @@ export class TrinoSqlParser extends SQLParserBase { } public rowField(): RowFieldContext { let localContext = new RowFieldContext(this.context, this.state); - this.enterRule(localContext, 188, TrinoSqlParser.RULE_rowField); + this.enterRule(localContext, 192, TrinoSqlParser.RULE_rowField); try { - this.state = 3016; + this.state = 3009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3012; + this.state = 3005; this.type_(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3013; + this.state = 3006; this.identifier(); - this.state = 3014; + this.state = 3007; this.type_(0); } break; @@ -12082,15 +12098,15 @@ export class TrinoSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 190, TrinoSqlParser.RULE_typeParameter); + this.enterRule(localContext, 194, TrinoSqlParser.RULE_typeParameter); try { - this.state = 3020; + this.state = 3013; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3018; + this.state = 3011; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -12313,7 +12329,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 3019; + this.state = 3012; this.type_(0); } break; @@ -12337,17 +12353,17 @@ export class TrinoSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 192, TrinoSqlParser.RULE_whenClause); + this.enterRule(localContext, 196, TrinoSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3022; + this.state = 3015; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3023; + this.state = 3016; localContext._condition = this.expression(); - this.state = 3024; + this.state = 3017; this.match(TrinoSqlParser.KW_THEN); - this.state = 3025; + this.state = 3018; localContext._result = this.expression(); } } @@ -12367,17 +12383,17 @@ export class TrinoSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 194, TrinoSqlParser.RULE_filter); + this.enterRule(localContext, 198, TrinoSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 3027; + this.state = 3020; this.match(TrinoSqlParser.KW_FILTER); - this.state = 3028; + this.state = 3021; this.match(TrinoSqlParser.T__0); - this.state = 3029; + this.state = 3022; this.whereClause(); - this.state = 3030; + this.state = 3023; this.match(TrinoSqlParser.T__1); } } @@ -12397,65 +12413,65 @@ export class TrinoSqlParser extends SQLParserBase { } public mergeCase(): MergeCaseContext { let localContext = new MergeCaseContext(this.context, this.state); - this.enterRule(localContext, 196, TrinoSqlParser.RULE_mergeCase); + this.enterRule(localContext, 200, TrinoSqlParser.RULE_mergeCase); let _la: number; try { - this.state = 3096; + this.state = 3089; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: localContext = new MergeUpdateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3032; + this.state = 3025; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3033; + this.state = 3026; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3036; + this.state = 3029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3034; + this.state = 3027; this.match(TrinoSqlParser.KW_AND); - this.state = 3035; + this.state = 3028; (localContext as MergeUpdateContext)._condition = this.expression(); } } - this.state = 3038; + this.state = 3031; this.match(TrinoSqlParser.KW_THEN); - this.state = 3039; + this.state = 3032; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 3040; + this.state = 3033; this.match(TrinoSqlParser.KW_SET); - this.state = 3041; + this.state = 3034; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3042; + this.state = 3035; this.match(TrinoSqlParser.EQ); - this.state = 3043; + this.state = 3036; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); - this.state = 3051; + this.state = 3044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3044; + this.state = 3037; this.match(TrinoSqlParser.T__2); - this.state = 3045; + this.state = 3038; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3046; + this.state = 3039; this.match(TrinoSqlParser.EQ); - this.state = 3047; + this.state = 3040; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); } } - this.state = 3053; + this.state = 3046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12465,25 +12481,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeDeleteContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3054; + this.state = 3047; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3055; + this.state = 3048; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3058; + this.state = 3051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3056; + this.state = 3049; this.match(TrinoSqlParser.KW_AND); - this.state = 3057; + this.state = 3050; (localContext as MergeDeleteContext)._condition = this.expression(); } } - this.state = 3060; + this.state = 3053; this.match(TrinoSqlParser.KW_THEN); - this.state = 3061; + this.state = 3054; this.match(TrinoSqlParser.KW_DELETE); } break; @@ -12491,85 +12507,85 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeInsertContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3062; + this.state = 3055; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3063; + this.state = 3056; this.match(TrinoSqlParser.KW_NOT); - this.state = 3064; + this.state = 3057; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3067; + this.state = 3060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3065; + this.state = 3058; this.match(TrinoSqlParser.KW_AND); - this.state = 3066; + this.state = 3059; (localContext as MergeInsertContext)._condition = this.expression(); } } - this.state = 3069; + this.state = 3062; this.match(TrinoSqlParser.KW_THEN); - this.state = 3070; + this.state = 3063; this.match(TrinoSqlParser.KW_INSERT); - this.state = 3082; + this.state = 3075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 3071; + this.state = 3064; this.match(TrinoSqlParser.T__0); - this.state = 3072; + this.state = 3065; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); - this.state = 3077; + this.state = 3070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3073; + this.state = 3066; this.match(TrinoSqlParser.T__2); - this.state = 3074; + this.state = 3067; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); } } - this.state = 3079; + this.state = 3072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3080; + this.state = 3073; this.match(TrinoSqlParser.T__1); } } - this.state = 3084; + this.state = 3077; this.match(TrinoSqlParser.KW_VALUES); - this.state = 3085; + this.state = 3078; this.match(TrinoSqlParser.T__0); - this.state = 3086; + this.state = 3079; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); - this.state = 3091; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3087; + this.state = 3080; this.match(TrinoSqlParser.T__2); - this.state = 3088; + this.state = 3081; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); } } - this.state = 3093; + this.state = 3086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3094; + this.state = 3087; this.match(TrinoSqlParser.T__1); } break; @@ -12591,13 +12607,13 @@ export class TrinoSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 198, TrinoSqlParser.RULE_over); + this.enterRule(localContext, 202, TrinoSqlParser.RULE_over); try { this.enterOuterAlt(localContext, 1); { - this.state = 3098; + this.state = 3091; this.match(TrinoSqlParser.KW_OVER); - this.state = 3104; + this.state = 3097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -12818,17 +12834,17 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.QUOTED_IDENTIFIER: case TrinoSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3099; + this.state = 3092; localContext._windowName = this.identifier(); } break; case TrinoSqlParser.T__0: { - this.state = 3100; + this.state = 3093; this.match(TrinoSqlParser.T__0); - this.state = 3101; + this.state = 3094; this.windowSpecification(); - this.state = 3102; + this.state = 3095; this.match(TrinoSqlParser.T__1); } break; @@ -12853,61 +12869,61 @@ export class TrinoSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 200, TrinoSqlParser.RULE_windowFrame); + this.enterRule(localContext, 204, TrinoSqlParser.RULE_windowFrame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3115; + this.state = 3108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 3106; + this.state = 3099; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 3107; + this.state = 3100; this.measureDefinition(); - this.state = 3112; + this.state = 3105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3108; + this.state = 3101; this.match(TrinoSqlParser.T__2); - this.state = 3109; + this.state = 3102; this.measureDefinition(); } } - this.state = 3114; + this.state = 3107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3117; + this.state = 3110; this.frameExtent(); - this.state = 3121; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 3118; + this.state = 3111; this.match(TrinoSqlParser.KW_AFTER); - this.state = 3119; + this.state = 3112; this.match(TrinoSqlParser.KW_MATCH); - this.state = 3120; + this.state = 3113; this.skipTo(); } } - this.state = 3124; + this.state = 3117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 3123; + this.state = 3116; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -12919,72 +12935,72 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 3131; + this.state = 3124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3126; + this.state = 3119; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 3127; + this.state = 3120; this.match(TrinoSqlParser.T__0); - this.state = 3128; + this.state = 3121; this.rowPattern(0); - this.state = 3129; + this.state = 3122; this.match(TrinoSqlParser.T__1); } } - this.state = 3142; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 3133; + this.state = 3126; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 3134; + this.state = 3127; this.subsetDefinition(); - this.state = 3139; + this.state = 3132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3135; + this.state = 3128; this.match(TrinoSqlParser.T__2); - this.state = 3136; + this.state = 3129; this.subsetDefinition(); } } - this.state = 3141; + this.state = 3134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3153; + this.state = 3146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 3144; + this.state = 3137; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 3145; + this.state = 3138; this.variableDefinition(); - this.state = 3150; + this.state = 3143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3146; + this.state = 3139; this.match(TrinoSqlParser.T__2); - this.state = 3147; + this.state = 3140; this.variableDefinition(); } } - this.state = 3152; + this.state = 3145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13009,80 +13025,80 @@ export class TrinoSqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 202, TrinoSqlParser.RULE_frameExtent); + this.enterRule(localContext, 206, TrinoSqlParser.RULE_frameExtent); try { - this.state = 3179; + this.state = 3172; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3155; + this.state = 3148; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3156; + this.state = 3149; localContext._start = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3157; + this.state = 3150; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3158; + this.state = 3151; localContext._start = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3159; + this.state = 3152; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3160; + this.state = 3153; localContext._start = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3161; + this.state = 3154; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3162; + this.state = 3155; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3163; + this.state = 3156; localContext._start = this.frameBound(); - this.state = 3164; + this.state = 3157; this.match(TrinoSqlParser.KW_AND); - this.state = 3165; + this.state = 3158; localContext._end = this.frameBound(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3167; + this.state = 3160; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3168; + this.state = 3161; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3169; + this.state = 3162; localContext._start = this.frameBound(); - this.state = 3170; + this.state = 3163; this.match(TrinoSqlParser.KW_AND); - this.state = 3171; + this.state = 3164; localContext._end = this.frameBound(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3173; + this.state = 3166; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3174; + this.state = 3167; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3175; + this.state = 3168; localContext._start = this.frameBound(); - this.state = 3176; + this.state = 3169; this.match(TrinoSqlParser.KW_AND); - this.state = 3177; + this.state = 3170; localContext._end = this.frameBound(); } break; @@ -13104,19 +13120,19 @@ export class TrinoSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 204, TrinoSqlParser.RULE_frameBound); + this.enterRule(localContext, 208, TrinoSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3190; + this.state = 3183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3181; + this.state = 3174; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3182; + this.state = 3175; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_PRECEDING); } break; @@ -13124,9 +13140,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3183; + this.state = 3176; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3184; + this.state = 3177; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_FOLLOWING); } break; @@ -13134,9 +13150,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3185; + this.state = 3178; this.match(TrinoSqlParser.KW_CURRENT); - this.state = 3186; + this.state = 3179; this.match(TrinoSqlParser.KW_ROW); } break; @@ -13144,9 +13160,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3187; + this.state = 3180; this.expression(); - this.state = 3188; + this.state = 3181; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 212)) { @@ -13186,8 +13202,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RowPatternContext(this.context, parentState); let previousContext = localContext; - let _startState = 206; - this.enterRecursionRule(localContext, 206, TrinoSqlParser.RULE_rowPattern, _p); + let _startState = 210; + this.enterRecursionRule(localContext, 210, TrinoSqlParser.RULE_rowPattern, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -13197,23 +13213,23 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 3193; + this.state = 3186; this.patternPrimary(); - this.state = 3195; + this.state = 3188; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: { - this.state = 3194; + this.state = 3187; this.patternQuantifier(); } break; } } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3204; + this.state = 3197; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 418, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13221,18 +13237,18 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3202; + this.state = 3195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { localContext = new PatternConcatenationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3197; + this.state = 3190; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3198; + this.state = 3191; this.rowPattern(3); } break; @@ -13240,22 +13256,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new PatternAlternationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3199; + this.state = 3192; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3200; + this.state = 3193; this.match(TrinoSqlParser.T__10); - this.state = 3201; + this.state = 3194; this.rowPattern(2); } break; } } } - this.state = 3206; + this.state = 3199; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 418, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); } } } @@ -13275,17 +13291,17 @@ export class TrinoSqlParser extends SQLParserBase { } public patternPrimary(): PatternPrimaryContext { let localContext = new PatternPrimaryContext(this.context, this.state); - this.enterRule(localContext, 208, TrinoSqlParser.RULE_patternPrimary); + this.enterRule(localContext, 212, TrinoSqlParser.RULE_patternPrimary); let _la: number; try { - this.state = 3232; + this.state = 3225; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: localContext = new PatternVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3207; + this.state = 3200; this.identifier(); } break; @@ -13293,9 +13309,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new EmptyPatternContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3208; + this.state = 3201; this.match(TrinoSqlParser.T__0); - this.state = 3209; + this.state = 3202; this.match(TrinoSqlParser.T__1); } break; @@ -13303,29 +13319,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PatternPermutationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3210; + this.state = 3203; this.match(TrinoSqlParser.KW_PERMUTE); - this.state = 3211; + this.state = 3204; this.match(TrinoSqlParser.T__0); - this.state = 3212; + this.state = 3205; this.rowPattern(0); - this.state = 3217; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3213; + this.state = 3206; this.match(TrinoSqlParser.T__2); - this.state = 3214; + this.state = 3207; this.rowPattern(0); } } - this.state = 3219; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3220; + this.state = 3213; this.match(TrinoSqlParser.T__1); } break; @@ -13333,11 +13349,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupedPatternContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3222; + this.state = 3215; this.match(TrinoSqlParser.T__0); - this.state = 3223; + this.state = 3216; this.rowPattern(0); - this.state = 3224; + this.state = 3217; this.match(TrinoSqlParser.T__1); } break; @@ -13345,7 +13361,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionStartAnchorContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3226; + this.state = 3219; this.match(TrinoSqlParser.T__11); } break; @@ -13353,7 +13369,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionEndAnchorContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3227; + this.state = 3220; this.match(TrinoSqlParser.T__12); } break; @@ -13361,11 +13377,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExcludedPatternContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3228; + this.state = 3221; this.match(TrinoSqlParser.T__13); - this.state = 3229; + this.state = 3222; this.rowPattern(0); - this.state = 3230; + this.state = 3223; this.match(TrinoSqlParser.T__14); } break; @@ -13387,24 +13403,24 @@ export class TrinoSqlParser extends SQLParserBase { } public patternQuantifier(): PatternQuantifierContext { let localContext = new PatternQuantifierContext(this.context, this.state); - this.enterRule(localContext, 210, TrinoSqlParser.RULE_patternQuantifier); + this.enterRule(localContext, 214, TrinoSqlParser.RULE_patternQuantifier); let _la: number; try { - this.state = 3264; + this.state = 3257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: localContext = new ZeroOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3234; + this.state = 3227; this.match(TrinoSqlParser.ASTERISK); - this.state = 3236; + this.state = 3229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3235; + this.state = 3228; (localContext as ZeroOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13415,14 +13431,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new OneOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3238; + this.state = 3231; this.match(TrinoSqlParser.PLUS); - this.state = 3240; + this.state = 3233; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3239; + this.state = 3232; (localContext as OneOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13433,14 +13449,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ZeroOrOneQuantifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3242; + this.state = 3235; this.match(TrinoSqlParser.QUESTION_MARK); - this.state = 3244; + this.state = 3237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3243; + this.state = 3236; (localContext as ZeroOrOneQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13451,18 +13467,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3246; + this.state = 3239; this.match(TrinoSqlParser.T__15); - this.state = 3247; + this.state = 3240; (localContext as RangeQuantifierContext)._exactly = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3248; + this.state = 3241; this.match(TrinoSqlParser.T__16); - this.state = 3250; + this.state = 3243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3249; + this.state = 3242; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13473,38 +13489,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3252; + this.state = 3245; this.match(TrinoSqlParser.T__15); - this.state = 3254; + this.state = 3247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3253; + this.state = 3246; (localContext as RangeQuantifierContext)._atLeast = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3256; + this.state = 3249; this.match(TrinoSqlParser.T__2); - this.state = 3258; + this.state = 3251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3257; + this.state = 3250; (localContext as RangeQuantifierContext)._atMost = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3260; + this.state = 3253; this.match(TrinoSqlParser.T__16); - this.state = 3262; + this.state = 3255; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3261; + this.state = 3254; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13529,15 +13545,15 @@ export class TrinoSqlParser extends SQLParserBase { } public updateAssignment(): UpdateAssignmentContext { let localContext = new UpdateAssignmentContext(this.context, this.state); - this.enterRule(localContext, 212, TrinoSqlParser.RULE_updateAssignment); + this.enterRule(localContext, 216, TrinoSqlParser.RULE_updateAssignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3266; + this.state = 3259; this.identifier(); - this.state = 3267; + this.state = 3260; this.match(TrinoSqlParser.EQ); - this.state = 3268; + this.state = 3261; this.expression(); } } @@ -13557,19 +13573,19 @@ export class TrinoSqlParser extends SQLParserBase { } public explainOption(): ExplainOptionContext { let localContext = new ExplainOptionContext(this.context, this.state); - this.enterRule(localContext, 214, TrinoSqlParser.RULE_explainOption); + this.enterRule(localContext, 218, TrinoSqlParser.RULE_explainOption); let _la: number; try { - this.state = 3274; + this.state = 3267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_FORMAT: localContext = new ExplainFormatContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3270; + this.state = 3263; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 3271; + this.state = 3264; (localContext as ExplainFormatContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 137 || _la === 263)) { @@ -13585,9 +13601,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3272; + this.state = 3265; this.match(TrinoSqlParser.KW_TYPE); - this.state = 3273; + this.state = 3266; (localContext as ExplainTypeContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 132 || _la === 160 || _la === 294)) { @@ -13619,21 +13635,21 @@ export class TrinoSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 216, TrinoSqlParser.RULE_transactionMode); + this.enterRule(localContext, 220, TrinoSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 3281; + this.state = 3274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ISOLATION: localContext = new IsolationLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3276; + this.state = 3269; this.match(TrinoSqlParser.KW_ISOLATION); - this.state = 3277; + this.state = 3270; this.match(TrinoSqlParser.KW_LEVEL); - this.state = 3278; + this.state = 3271; this.levelOfIsolation(); } break; @@ -13641,9 +13657,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TransactionAccessModeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3279; + this.state = 3272; this.match(TrinoSqlParser.KW_READ); - this.state = 3280; + this.state = 3273; (localContext as TransactionAccessModeContext)._accessMode = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 309)) { @@ -13675,18 +13691,18 @@ export class TrinoSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 218, TrinoSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 222, TrinoSqlParser.RULE_levelOfIsolation); try { - this.state = 3290; + this.state = 3283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: localContext = new ReadUncommittedContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3283; + this.state = 3276; this.match(TrinoSqlParser.KW_READ); - this.state = 3284; + this.state = 3277; this.match(TrinoSqlParser.KW_UNCOMMITTED); } break; @@ -13694,9 +13710,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReadCommittedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3285; + this.state = 3278; this.match(TrinoSqlParser.KW_READ); - this.state = 3286; + this.state = 3279; this.match(TrinoSqlParser.KW_COMMITTED); } break; @@ -13704,9 +13720,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatableReadContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3287; + this.state = 3280; this.match(TrinoSqlParser.KW_REPEATABLE); - this.state = 3288; + this.state = 3281; this.match(TrinoSqlParser.KW_READ); } break; @@ -13714,7 +13730,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SerializableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3289; + this.state = 3282; this.match(TrinoSqlParser.KW_SERIALIZABLE); } break; @@ -13736,16 +13752,16 @@ export class TrinoSqlParser extends SQLParserBase { } public callArgument(): CallArgumentContext { let localContext = new CallArgumentContext(this.context, this.state); - this.enterRule(localContext, 220, TrinoSqlParser.RULE_callArgument); + this.enterRule(localContext, 224, TrinoSqlParser.RULE_callArgument); try { - this.state = 3297; + this.state = 3290; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: localContext = new PositionalArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3292; + this.state = 3285; this.expression(); } break; @@ -13753,11 +13769,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NamedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3293; + this.state = 3286; this.identifier(); - this.state = 3294; + this.state = 3287; this.match(TrinoSqlParser.T__5); - this.state = 3295; + this.state = 3288; this.expression(); } break; @@ -13779,20 +13795,20 @@ export class TrinoSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 222, TrinoSqlParser.RULE_pathElement); + this.enterRule(localContext, 226, TrinoSqlParser.RULE_pathElement); try { - this.state = 3304; + this.state = 3297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3299; + this.state = 3292; this.identifier(); - this.state = 3300; + this.state = 3293; this.match(TrinoSqlParser.T__3); - this.state = 3301; + this.state = 3294; this.identifier(); } break; @@ -13800,7 +13816,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3303; + this.state = 3296; this.identifier(); } break; @@ -13822,26 +13838,26 @@ export class TrinoSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 224, TrinoSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 228, TrinoSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3306; + this.state = 3299; this.pathElement(); - this.state = 3311; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3307; + this.state = 3300; this.match(TrinoSqlParser.T__2); - this.state = 3308; + this.state = 3301; this.pathElement(); } } - this.state = 3313; + this.state = 3306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13863,34 +13879,34 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSpecification(): FunctionSpecificationContext { let localContext = new FunctionSpecificationContext(this.context, this.state); - this.enterRule(localContext, 226, TrinoSqlParser.RULE_functionSpecification); + this.enterRule(localContext, 230, TrinoSqlParser.RULE_functionSpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3314; + this.state = 3307; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 3315; + this.state = 3308; this.functionDeclaration(); - this.state = 3316; + this.state = 3309; this.returnsClause(); - this.state = 3320; + this.state = 3313; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3317; + this.state = 3310; this.routineCharacteristic(); } } } - this.state = 3322; + this.state = 3315; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); } - this.state = 3323; + this.state = 3316; this.controlStatement(); } } @@ -13910,42 +13926,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionDeclaration(): FunctionDeclarationContext { let localContext = new FunctionDeclarationContext(this.context, this.state); - this.enterRule(localContext, 228, TrinoSqlParser.RULE_functionDeclaration); + this.enterRule(localContext, 232, TrinoSqlParser.RULE_functionDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3325; + this.state = 3318; this.functionNameCreate(); - this.state = 3326; + this.state = 3319; this.match(TrinoSqlParser.T__0); - this.state = 3335; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3327; + this.state = 3320; this.parameterDeclaration(); - this.state = 3332; + this.state = 3325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3328; + this.state = 3321; this.match(TrinoSqlParser.T__2); - this.state = 3329; + this.state = 3322; this.parameterDeclaration(); } } - this.state = 3334; + this.state = 3327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3337; + this.state = 3330; this.match(TrinoSqlParser.T__1); } } @@ -13965,42 +13981,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSignature(): FunctionSignatureContext { let localContext = new FunctionSignatureContext(this.context, this.state); - this.enterRule(localContext, 230, TrinoSqlParser.RULE_functionSignature); + this.enterRule(localContext, 234, TrinoSqlParser.RULE_functionSignature); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3339; + this.state = 3332; this.functionName(); - this.state = 3340; + this.state = 3333; this.match(TrinoSqlParser.T__0); - this.state = 3349; + this.state = 3342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3341; + this.state = 3334; this.parameterDeclaration(); - this.state = 3346; + this.state = 3339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3342; + this.state = 3335; this.match(TrinoSqlParser.T__2); - this.state = 3343; + this.state = 3336; this.parameterDeclaration(); } } - this.state = 3348; + this.state = 3341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3351; + this.state = 3344; this.match(TrinoSqlParser.T__1); } } @@ -14020,21 +14036,21 @@ export class TrinoSqlParser extends SQLParserBase { } public parameterDeclaration(): ParameterDeclarationContext { let localContext = new ParameterDeclarationContext(this.context, this.state); - this.enterRule(localContext, 232, TrinoSqlParser.RULE_parameterDeclaration); + this.enterRule(localContext, 236, TrinoSqlParser.RULE_parameterDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 3354; + this.state = 3347; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3353; + this.state = 3346; this.identifier(); } break; } - this.state = 3356; + this.state = 3349; this.type_(0); } } @@ -14054,13 +14070,13 @@ export class TrinoSqlParser extends SQLParserBase { } public returnsClause(): ReturnsClauseContext { let localContext = new ReturnsClauseContext(this.context, this.state); - this.enterRule(localContext, 234, TrinoSqlParser.RULE_returnsClause); + this.enterRule(localContext, 238, TrinoSqlParser.RULE_returnsClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3358; + this.state = 3351; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3359; + this.state = 3352; this.type_(0); } } @@ -14080,19 +14096,19 @@ export class TrinoSqlParser extends SQLParserBase { } public routineCharacteristic(): RoutineCharacteristicContext { let localContext = new RoutineCharacteristicContext(this.context, this.state); - this.enterRule(localContext, 236, TrinoSqlParser.RULE_routineCharacteristic); + this.enterRule(localContext, 240, TrinoSqlParser.RULE_routineCharacteristic); let _la: number; try { - this.state = 3380; + this.state = 3373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LANGUAGE: localContext = new LanguageCharacteristicContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3361; + this.state = 3354; this.match(TrinoSqlParser.KW_LANGUAGE); - this.state = 3362; + this.state = 3355; this.identifier(); } break; @@ -14101,17 +14117,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeterministicCharacteristicContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3364; + this.state = 3357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 3363; + this.state = 3356; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 3366; + this.state = 3359; this.match(TrinoSqlParser.KW_DETERMINISTIC); } break; @@ -14119,15 +14135,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReturnsNullOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3367; + this.state = 3360; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3368; + this.state = 3361; this.match(TrinoSqlParser.KW_NULL); - this.state = 3369; + this.state = 3362; this.match(TrinoSqlParser.KW_ON); - this.state = 3370; + this.state = 3363; this.match(TrinoSqlParser.KW_NULL); - this.state = 3371; + this.state = 3364; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14135,13 +14151,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CalledOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3372; + this.state = 3365; this.match(TrinoSqlParser.KW_CALLED); - this.state = 3373; + this.state = 3366; this.match(TrinoSqlParser.KW_ON); - this.state = 3374; + this.state = 3367; this.match(TrinoSqlParser.KW_NULL); - this.state = 3375; + this.state = 3368; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14149,9 +14165,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SecurityCharacteristicContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3376; + this.state = 3369; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 3377; + this.state = 3370; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -14166,9 +14182,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentCharacteristicContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3378; + this.state = 3371; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 3379; + this.state = 3372; this.string_(); } break; @@ -14192,20 +14208,20 @@ export class TrinoSqlParser extends SQLParserBase { } public controlStatement(): ControlStatementContext { let localContext = new ControlStatementContext(this.context, this.state); - this.enterRule(localContext, 238, TrinoSqlParser.RULE_controlStatement); + this.enterRule(localContext, 242, TrinoSqlParser.RULE_controlStatement); let _la: number; try { let alternative: number; - this.state = 3481; + this.state = 3474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: localContext = new ReturnStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3382; + this.state = 3375; this.match(TrinoSqlParser.KW_RETURN); - this.state = 3383; + this.state = 3376; this.valueExpression(0); } break; @@ -14213,13 +14229,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AssignmentStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3384; + this.state = 3377; this.match(TrinoSqlParser.KW_SET); - this.state = 3385; + this.state = 3378; this.identifier(); - this.state = 3386; + this.state = 3379; this.match(TrinoSqlParser.EQ); - this.state = 3387; + this.state = 3380; this.expression(); } break; @@ -14227,37 +14243,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseStatementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3389; + this.state = 3382; this.match(TrinoSqlParser.KW_CASE); - this.state = 3390; + this.state = 3383; this.expression(); - this.state = 3392; + this.state = 3385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3391; + this.state = 3384; this.caseStatementWhenClause(); } } - this.state = 3394; + this.state = 3387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3397; + this.state = 3390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3396; + this.state = 3389; this.elseClause(); } } - this.state = 3399; + this.state = 3392; this.match(TrinoSqlParser.KW_END); - this.state = 3400; + this.state = 3393; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14265,35 +14281,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseStatementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3402; + this.state = 3395; this.match(TrinoSqlParser.KW_CASE); - this.state = 3404; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3403; + this.state = 3396; this.caseStatementWhenClause(); } } - this.state = 3406; + this.state = 3399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3409; + this.state = 3402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3408; + this.state = 3401; this.elseClause(); } } - this.state = 3411; + this.state = 3404; this.match(TrinoSqlParser.KW_END); - this.state = 3412; + this.state = 3405; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14301,41 +14317,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IfStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3414; + this.state = 3407; this.match(TrinoSqlParser.KW_IF); - this.state = 3415; + this.state = 3408; this.expression(); - this.state = 3416; + this.state = 3409; this.match(TrinoSqlParser.KW_THEN); - this.state = 3417; + this.state = 3410; this.sqlStatementList(); - this.state = 3421; + this.state = 3414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 86) { { { - this.state = 3418; + this.state = 3411; this.elseIfClause(); } } - this.state = 3423; + this.state = 3416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3425; + this.state = 3418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3424; + this.state = 3417; this.elseClause(); } } - this.state = 3427; + this.state = 3420; this.match(TrinoSqlParser.KW_END); - this.state = 3428; + this.state = 3421; this.match(TrinoSqlParser.KW_IF); } break; @@ -14343,9 +14359,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IterateStatementContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3430; + this.state = 3423; this.match(TrinoSqlParser.KW_ITERATE); - this.state = 3431; + this.state = 3424; this.identifier(); } break; @@ -14353,9 +14369,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LeaveStatementContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3432; + this.state = 3425; this.match(TrinoSqlParser.KW_LEAVE); - this.state = 3433; + this.state = 3426; this.identifier(); } break; @@ -14363,37 +14379,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CompoundStatementContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3434; + this.state = 3427; this.match(TrinoSqlParser.KW_BEGIN); - this.state = 3440; + this.state = 3433; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3435; + this.state = 3428; this.variableDeclaration(); - this.state = 3436; + this.state = 3429; this.match(TrinoSqlParser.SEMICOLON); } } } - this.state = 3442; + this.state = 3435; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); } - this.state = 3444; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4286249823) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3443; + this.state = 3436; this.sqlStatementList(); } } - this.state = 3446; + this.state = 3439; this.match(TrinoSqlParser.KW_END); } break; @@ -14401,25 +14417,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LoopStatementContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3450; + this.state = 3443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3447; + this.state = 3440; (localContext as LoopStatementContext)._label = this.identifier(); - this.state = 3448; + this.state = 3441; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3452; + this.state = 3445; this.match(TrinoSqlParser.KW_LOOP); - this.state = 3453; + this.state = 3446; this.sqlStatementList(); - this.state = 3454; + this.state = 3447; this.match(TrinoSqlParser.KW_END); - this.state = 3455; + this.state = 3448; this.match(TrinoSqlParser.KW_LOOP); } break; @@ -14427,29 +14443,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new WhileStatementContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3460; + this.state = 3453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3457; + this.state = 3450; (localContext as WhileStatementContext)._label = this.identifier(); - this.state = 3458; + this.state = 3451; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3462; + this.state = 3455; this.match(TrinoSqlParser.KW_WHILE); - this.state = 3463; + this.state = 3456; this.expression(); - this.state = 3464; + this.state = 3457; this.match(TrinoSqlParser.KW_DO); - this.state = 3465; + this.state = 3458; this.sqlStatementList(); - this.state = 3466; + this.state = 3459; this.match(TrinoSqlParser.KW_END); - this.state = 3467; + this.state = 3460; this.match(TrinoSqlParser.KW_WHILE); } break; @@ -14457,29 +14473,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatStatementContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3472; + this.state = 3465; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3469; + this.state = 3462; (localContext as RepeatStatementContext)._label = this.identifier(); - this.state = 3470; + this.state = 3463; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3474; + this.state = 3467; this.match(TrinoSqlParser.KW_REPEAT); - this.state = 3475; + this.state = 3468; this.sqlStatementList(); - this.state = 3476; + this.state = 3469; this.match(TrinoSqlParser.KW_UNTIL); - this.state = 3477; + this.state = 3470; this.expression(); - this.state = 3478; + this.state = 3471; this.match(TrinoSqlParser.KW_END); - this.state = 3479; + this.state = 3472; this.match(TrinoSqlParser.KW_REPEAT); } break; @@ -14501,17 +14517,17 @@ export class TrinoSqlParser extends SQLParserBase { } public caseStatementWhenClause(): CaseStatementWhenClauseContext { let localContext = new CaseStatementWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 240, TrinoSqlParser.RULE_caseStatementWhenClause); + this.enterRule(localContext, 244, TrinoSqlParser.RULE_caseStatementWhenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3483; + this.state = 3476; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3484; + this.state = 3477; this.expression(); - this.state = 3485; + this.state = 3478; this.match(TrinoSqlParser.KW_THEN); - this.state = 3486; + this.state = 3479; this.sqlStatementList(); } } @@ -14531,17 +14547,17 @@ export class TrinoSqlParser extends SQLParserBase { } public elseIfClause(): ElseIfClauseContext { let localContext = new ElseIfClauseContext(this.context, this.state); - this.enterRule(localContext, 242, TrinoSqlParser.RULE_elseIfClause); + this.enterRule(localContext, 246, TrinoSqlParser.RULE_elseIfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3488; + this.state = 3481; this.match(TrinoSqlParser.KW_ELSEIF); - this.state = 3489; + this.state = 3482; this.expression(); - this.state = 3490; + this.state = 3483; this.match(TrinoSqlParser.KW_THEN); - this.state = 3491; + this.state = 3484; this.sqlStatementList(); } } @@ -14561,13 +14577,13 @@ export class TrinoSqlParser extends SQLParserBase { } public elseClause(): ElseClauseContext { let localContext = new ElseClauseContext(this.context, this.state); - this.enterRule(localContext, 244, TrinoSqlParser.RULE_elseClause); + this.enterRule(localContext, 248, TrinoSqlParser.RULE_elseClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3493; + this.state = 3486; this.match(TrinoSqlParser.KW_ELSE); - this.state = 3494; + this.state = 3487; this.sqlStatementList(); } } @@ -14587,41 +14603,41 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDeclaration(): VariableDeclarationContext { let localContext = new VariableDeclarationContext(this.context, this.state); - this.enterRule(localContext, 246, TrinoSqlParser.RULE_variableDeclaration); + this.enterRule(localContext, 250, TrinoSqlParser.RULE_variableDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3496; + this.state = 3489; this.match(TrinoSqlParser.KW_DECLARE); - this.state = 3497; + this.state = 3490; this.identifier(); - this.state = 3502; + this.state = 3495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3498; + this.state = 3491; this.match(TrinoSqlParser.T__2); - this.state = 3499; + this.state = 3492; this.identifier(); } } - this.state = 3504; + this.state = 3497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3505; + this.state = 3498; this.type_(0); - this.state = 3508; + this.state = 3501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70) { { - this.state = 3506; + this.state = 3499; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 3507; + this.state = 3500; this.valueExpression(0); } } @@ -14644,12 +14660,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sqlStatementList(): SqlStatementListContext { let localContext = new SqlStatementListContext(this.context, this.state); - this.enterRule(localContext, 248, TrinoSqlParser.RULE_sqlStatementList); + this.enterRule(localContext, 252, TrinoSqlParser.RULE_sqlStatementList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3513; + this.state = 3506; this.errorHandler.sync(this); alternative = 1; do { @@ -14657,9 +14673,9 @@ export class TrinoSqlParser extends SQLParserBase { case 1: { { - this.state = 3510; + this.state = 3503; this.controlStatement(); - this.state = 3511; + this.state = 3504; this.match(TrinoSqlParser.SEMICOLON); } } @@ -14667,9 +14683,9 @@ export class TrinoSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3515; + this.state = 3508; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -14689,50 +14705,50 @@ export class TrinoSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 250, TrinoSqlParser.RULE_privilege); + this.enterRule(localContext, 254, TrinoSqlParser.RULE_privilege); try { - this.state = 3523; + this.state = 3516; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3510; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3518; + this.state = 3511; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3519; + this.state = 3512; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3520; + this.state = 3513; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3521; + this.state = 3514; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3522; + this.state = 3515; this.identifier(); } break; @@ -14754,29 +14770,29 @@ export class TrinoSqlParser extends SQLParserBase { } public entityKind(): EntityKindContext { let localContext = new EntityKindContext(this.context, this.state); - this.enterRule(localContext, 252, TrinoSqlParser.RULE_entityKind); + this.enterRule(localContext, 256, TrinoSqlParser.RULE_entityKind); try { - this.state = 3528; + this.state = 3521; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3525; + this.state = 3518; this.match(TrinoSqlParser.KW_TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3526; + this.state = 3519; this.match(TrinoSqlParser.KW_SCHEMA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3527; + this.state = 3520; this.identifier(); } break; @@ -14798,21 +14814,21 @@ export class TrinoSqlParser extends SQLParserBase { } public grantObject(): GrantObjectContext { let localContext = new GrantObjectContext(this.context, this.state); - this.enterRule(localContext, 254, TrinoSqlParser.RULE_grantObject); + this.enterRule(localContext, 258, TrinoSqlParser.RULE_grantObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 3531; + this.state = 3524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3530; + this.state = 3523; this.entityKind(); } break; } - this.state = 3533; + this.state = 3526; this.qualifiedName(); } } @@ -14832,22 +14848,22 @@ export class TrinoSqlParser extends SQLParserBase { } public tableOrViewName(): TableOrViewNameContext { let localContext = new TableOrViewNameContext(this.context, this.state); - this.enterRule(localContext, 256, TrinoSqlParser.RULE_tableOrViewName); + this.enterRule(localContext, 260, TrinoSqlParser.RULE_tableOrViewName); try { - this.state = 3537; + this.state = 3530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3535; + this.state = 3528; this.tableRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3536; + this.state = 3529; this.viewRef(); } break; @@ -14869,41 +14885,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableRef(): TableRefContext { let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 258, TrinoSqlParser.RULE_tableRef); + this.enterRule(localContext, 262, TrinoSqlParser.RULE_tableRef); try { - this.state = 3550; + this.state = 3543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3539; + this.state = 3532; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3540; + this.state = 3533; localContext._schema = this.identifier(); - this.state = 3541; + this.state = 3534; this.match(TrinoSqlParser.T__3); - this.state = 3542; + this.state = 3535; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3544; + this.state = 3537; localContext._catalog = this.identifier(); - this.state = 3545; + this.state = 3538; this.match(TrinoSqlParser.T__3); - this.state = 3546; + this.state = 3539; localContext._schema = this.identifier(); - this.state = 3547; + this.state = 3540; this.match(TrinoSqlParser.T__3); - this.state = 3548; + this.state = 3541; localContext._table = this.identifier(); } break; @@ -14925,41 +14941,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 260, TrinoSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 264, TrinoSqlParser.RULE_tableNameCreate); try { - this.state = 3563; + this.state = 3556; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3552; + this.state = 3545; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3553; + this.state = 3546; localContext._schema = this.identifier(); - this.state = 3554; + this.state = 3547; this.match(TrinoSqlParser.T__3); - this.state = 3555; + this.state = 3548; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3557; + this.state = 3550; localContext._catalog = this.identifier(); - this.state = 3558; + this.state = 3551; this.match(TrinoSqlParser.T__3); - this.state = 3559; + this.state = 3552; localContext._schema = this.identifier(); - this.state = 3560; + this.state = 3553; this.match(TrinoSqlParser.T__3); - this.state = 3561; + this.state = 3554; localContext._table = this.identifier(); } break; @@ -14981,41 +14997,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewRef(): ViewRefContext { let localContext = new ViewRefContext(this.context, this.state); - this.enterRule(localContext, 262, TrinoSqlParser.RULE_viewRef); + this.enterRule(localContext, 266, TrinoSqlParser.RULE_viewRef); try { - this.state = 3576; + this.state = 3569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3565; + this.state = 3558; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3566; + this.state = 3559; localContext._schema = this.identifier(); - this.state = 3567; + this.state = 3560; this.match(TrinoSqlParser.T__3); - this.state = 3568; + this.state = 3561; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3570; + this.state = 3563; localContext._catalog = this.identifier(); - this.state = 3571; + this.state = 3564; this.match(TrinoSqlParser.T__3); - this.state = 3572; + this.state = 3565; localContext._schema = this.identifier(); - this.state = 3573; + this.state = 3566; this.match(TrinoSqlParser.T__3); - this.state = 3574; + this.state = 3567; localContext._view = this.identifier(); } break; @@ -15037,41 +15053,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 264, TrinoSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 268, TrinoSqlParser.RULE_viewNameCreate); try { - this.state = 3589; + this.state = 3582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3578; + this.state = 3571; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3579; + this.state = 3572; localContext._schema = this.identifier(); - this.state = 3580; + this.state = 3573; this.match(TrinoSqlParser.T__3); - this.state = 3581; + this.state = 3574; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3583; + this.state = 3576; localContext._catalog = this.identifier(); - this.state = 3584; + this.state = 3577; this.match(TrinoSqlParser.T__3); - this.state = 3585; + this.state = 3578; localContext._schema = this.identifier(); - this.state = 3586; + this.state = 3579; this.match(TrinoSqlParser.T__3); - this.state = 3587; + this.state = 3580; localContext._view = this.identifier(); } break; @@ -15093,26 +15109,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaRef(): SchemaRefContext { let localContext = new SchemaRefContext(this.context, this.state); - this.enterRule(localContext, 266, TrinoSqlParser.RULE_schemaRef); + this.enterRule(localContext, 270, TrinoSqlParser.RULE_schemaRef); try { - this.state = 3596; + this.state = 3589; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3591; + this.state = 3584; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3585; localContext._catalog = this.identifier(); - this.state = 3593; + this.state = 3586; this.match(TrinoSqlParser.T__3); - this.state = 3594; + this.state = 3587; localContext._schema = this.identifier(); } break; @@ -15134,26 +15150,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaNameCreate(): SchemaNameCreateContext { let localContext = new SchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 268, TrinoSqlParser.RULE_schemaNameCreate); + this.enterRule(localContext, 272, TrinoSqlParser.RULE_schemaNameCreate); try { - this.state = 3603; + this.state = 3596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3598; + this.state = 3591; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3599; + this.state = 3592; localContext._catalog = this.identifier(); - this.state = 3600; + this.state = 3593; this.match(TrinoSqlParser.T__3); - this.state = 3601; + this.state = 3594; localContext._schema = this.identifier(); } break; @@ -15175,11 +15191,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogRef(): CatalogRefContext { let localContext = new CatalogRefContext(this.context, this.state); - this.enterRule(localContext, 270, TrinoSqlParser.RULE_catalogRef); + this.enterRule(localContext, 274, TrinoSqlParser.RULE_catalogRef); try { this.enterOuterAlt(localContext, 1); { - this.state = 3605; + this.state = 3598; localContext._catalog = this.identifier(); } } @@ -15199,11 +15215,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogNameCreate(): CatalogNameCreateContext { let localContext = new CatalogNameCreateContext(this.context, this.state); - this.enterRule(localContext, 272, TrinoSqlParser.RULE_catalogNameCreate); + this.enterRule(localContext, 276, TrinoSqlParser.RULE_catalogNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3607; + this.state = 3600; localContext._catalog = this.identifier(); } } @@ -15223,11 +15239,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 274, TrinoSqlParser.RULE_functionName); + this.enterRule(localContext, 278, TrinoSqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3609; + this.state = 3602; this.qualifiedName(); } } @@ -15247,11 +15263,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 276, TrinoSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 280, TrinoSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3611; + this.state = 3604; this.qualifiedName(); } } @@ -15271,22 +15287,22 @@ export class TrinoSqlParser extends SQLParserBase { } public columnRef(): ColumnRefContext { let localContext = new ColumnRefContext(this.context, this.state); - this.enterRule(localContext, 278, TrinoSqlParser.RULE_columnRef); + this.enterRule(localContext, 282, TrinoSqlParser.RULE_columnRef); try { - this.state = 3615; + this.state = 3608; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3606; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3614; + this.state = 3607; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -15310,11 +15326,11 @@ export class TrinoSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 280, TrinoSqlParser.RULE_columnName); + this.enterRule(localContext, 284, TrinoSqlParser.RULE_columnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3617; + this.state = 3610; this.qualifiedName(); } } @@ -15334,11 +15350,11 @@ export class TrinoSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 282, TrinoSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 286, TrinoSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3619; + this.state = 3612; this.identifier(); } } @@ -15358,30 +15374,30 @@ export class TrinoSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 284, TrinoSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 288, TrinoSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3621; + this.state = 3614; this.identifier(); - this.state = 3626; + this.state = 3619; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3622; + this.state = 3615; this.match(TrinoSqlParser.T__3); - this.state = 3623; + this.state = 3616; this.identifier(); } } } - this.state = 3628; + this.state = 3621; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); } } } @@ -15401,19 +15417,19 @@ export class TrinoSqlParser extends SQLParserBase { } public queryPeriod(): QueryPeriodContext { let localContext = new QueryPeriodContext(this.context, this.state); - this.enterRule(localContext, 286, TrinoSqlParser.RULE_queryPeriod); + this.enterRule(localContext, 290, TrinoSqlParser.RULE_queryPeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 3629; + this.state = 3622; this.match(TrinoSqlParser.KW_FOR); - this.state = 3630; + this.state = 3623; this.rangeType(); - this.state = 3631; + this.state = 3624; this.match(TrinoSqlParser.KW_AS); - this.state = 3632; + this.state = 3625; this.match(TrinoSqlParser.KW_OF); - this.state = 3633; + this.state = 3626; localContext._end = this.valueExpression(0); } } @@ -15433,12 +15449,12 @@ export class TrinoSqlParser extends SQLParserBase { } public rangeType(): RangeTypeContext { let localContext = new RangeTypeContext(this.context, this.state); - this.enterRule(localContext, 288, TrinoSqlParser.RULE_rangeType); + this.enterRule(localContext, 292, TrinoSqlParser.RULE_rangeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3628; _la = this.tokenStream.LA(1); if(!(_la === 268 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -15465,9 +15481,9 @@ export class TrinoSqlParser extends SQLParserBase { } public grantor(): GrantorContext { let localContext = new GrantorContext(this.context, this.state); - this.enterRule(localContext, 290, TrinoSqlParser.RULE_grantor); + this.enterRule(localContext, 294, TrinoSqlParser.RULE_grantor); try { - this.state = 3640; + this.state = 3633; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -15690,7 +15706,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3637; + this.state = 3630; this.principal(); } break; @@ -15698,7 +15714,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3638; + this.state = 3631; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -15706,7 +15722,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3639; + this.state = 3632; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -15730,16 +15746,16 @@ export class TrinoSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 292, TrinoSqlParser.RULE_principal); + this.enterRule(localContext, 296, TrinoSqlParser.RULE_principal); try { - this.state = 3647; + this.state = 3640; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3635; this.identifier(); } break; @@ -15747,9 +15763,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3643; + this.state = 3636; this.match(TrinoSqlParser.KW_USER); - this.state = 3644; + this.state = 3637; this.identifier(); } break; @@ -15757,9 +15773,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3645; + this.state = 3638; this.match(TrinoSqlParser.KW_ROLE); - this.state = 3646; + this.state = 3639; this.identifier(); } break; @@ -15781,26 +15797,26 @@ export class TrinoSqlParser extends SQLParserBase { } public roles(): RolesContext { let localContext = new RolesContext(this.context, this.state); - this.enterRule(localContext, 294, TrinoSqlParser.RULE_roles); + this.enterRule(localContext, 298, TrinoSqlParser.RULE_roles); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3649; + this.state = 3642; this.identifier(); - this.state = 3654; + this.state = 3647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3650; + this.state = 3643; this.match(TrinoSqlParser.T__2); - this.state = 3651; + this.state = 3644; this.identifier(); } } - this.state = 3656; + this.state = 3649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15822,57 +15838,57 @@ export class TrinoSqlParser extends SQLParserBase { } public privilegeOrRole(): PrivilegeOrRoleContext { let localContext = new PrivilegeOrRoleContext(this.context, this.state); - this.enterRule(localContext, 296, TrinoSqlParser.RULE_privilegeOrRole); + this.enterRule(localContext, 300, TrinoSqlParser.RULE_privilegeOrRole); try { - this.state = 3664; + this.state = 3657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3657; + this.state = 3650; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3658; + this.state = 3651; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3659; + this.state = 3652; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3660; + this.state = 3653; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3661; + this.state = 3654; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3662; + this.state = 3655; this.match(TrinoSqlParser.KW_EXECUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3663; + this.state = 3656; this.identifier(); } break; @@ -15894,16 +15910,16 @@ export class TrinoSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 298, TrinoSqlParser.RULE_identifier); + this.enterRule(localContext, 302, TrinoSqlParser.RULE_identifier); try { - this.state = 3671; + this.state = 3664; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3666; + this.state = 3659; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -15911,7 +15927,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3667; + this.state = 3660; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -16131,7 +16147,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3668; + this.state = 3661; this.nonReserved(); } break; @@ -16139,7 +16155,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3669; + this.state = 3662; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -16147,7 +16163,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3670; + this.state = 3663; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -16171,27 +16187,27 @@ export class TrinoSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 300, TrinoSqlParser.RULE_number); + this.enterRule(localContext, 304, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 3685; + this.state = 3678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3673; + this.state = 3666; this.match(TrinoSqlParser.MINUS); } } - this.state = 3676; + this.state = 3669; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -16199,17 +16215,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3678; + this.state = 3671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3677; + this.state = 3670; this.match(TrinoSqlParser.MINUS); } } - this.state = 3680; + this.state = 3673; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -16217,17 +16233,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3682; + this.state = 3675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3681; + this.state = 3674; this.match(TrinoSqlParser.MINUS); } } - this.state = 3684; + this.state = 3677; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -16249,9 +16265,9 @@ export class TrinoSqlParser extends SQLParserBase { } public authorizationUser(): AuthorizationUserContext { let localContext = new AuthorizationUserContext(this.context, this.state); - this.enterRule(localContext, 302, TrinoSqlParser.RULE_authorizationUser); + this.enterRule(localContext, 306, TrinoSqlParser.RULE_authorizationUser); try { - this.state = 3689; + this.state = 3682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -16474,7 +16490,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IdentifierUserContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3687; + this.state = 3680; this.identifier(); } break; @@ -16483,7 +16499,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3688; + this.state = 3681; this.string_(); } break; @@ -16507,12 +16523,12 @@ export class TrinoSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 304, TrinoSqlParser.RULE_nonReserved); + this.enterRule(localContext, 308, TrinoSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3691; + this.state = 3684; _la = this.tokenStream.LA(1); if(!(((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0))) { this.errorHandler.recoverInline(this); @@ -16542,19 +16558,19 @@ export class TrinoSqlParser extends SQLParserBase { switch (ruleIndex) { case 23: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 37: + case 39: return this.relation_sempred(localContext as RelationContext, predIndex); - case 70: - return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); case 72: + return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); + case 74: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 73: + case 75: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 93: + case 95: return this.type_sempred(localContext as TypeContext, predIndex); - case 103: + case 105: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); - case 139: + case 141: return this.columnRef_sempred(localContext as ColumnRefContext, predIndex); } return true; @@ -16631,7 +16647,7 @@ export class TrinoSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,340,3694,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,340,3687,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, @@ -16655,1568 +16671,1564 @@ export class TrinoSqlParser extends SQLParserBase { 7,131,2,132,7,132,2,133,7,133,2,134,7,134,2,135,7,135,2,136,7,136, 2,137,7,137,2,138,7,138,2,139,7,139,2,140,7,140,2,141,7,141,2,142, 7,142,2,143,7,143,2,144,7,144,2,145,7,145,2,146,7,146,2,147,7,147, - 2,148,7,148,2,149,7,149,2,150,7,150,2,151,7,151,2,152,7,152,1,0, - 5,0,308,8,0,10,0,12,0,311,9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,319,8, - 2,1,3,1,3,3,3,323,8,3,1,4,1,4,3,4,327,8,4,1,5,1,5,3,5,331,8,5,1, - 6,1,6,3,6,335,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3, - 8,348,8,8,1,8,1,8,1,8,1,8,1,8,3,8,355,8,8,1,8,1,8,3,8,359,8,8,1, - 8,1,8,3,8,363,8,8,1,8,1,8,1,8,1,8,3,8,369,8,8,1,8,1,8,3,8,373,8, - 8,1,8,1,8,1,8,1,8,1,8,3,8,380,8,8,1,8,1,8,1,8,3,8,385,8,8,1,8,1, - 8,3,8,389,8,8,1,8,1,8,1,8,1,8,3,8,395,8,8,1,8,1,8,3,8,399,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,418,8,8,1,8,1,8,1,8,1,8,3,8,424,8,8,1,8,1,8,3,8,428,8,8,1, - 8,1,8,3,8,432,8,8,1,8,1,8,3,8,436,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3, - 8,444,8,8,1,8,1,8,3,8,448,8,8,1,8,3,8,451,8,8,1,8,1,8,1,8,3,8,456, - 8,8,1,8,1,8,1,8,1,8,3,8,462,8,8,1,8,1,8,1,8,1,8,1,8,5,8,469,8,8, - 10,8,12,8,472,9,8,1,8,1,8,1,8,3,8,477,8,8,1,8,1,8,3,8,481,8,8,1, - 8,1,8,1,8,1,8,3,8,487,8,8,1,8,1,8,1,8,1,8,1,8,3,8,494,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,3,8,502,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,514,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,523,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,3,8,532,8,8,1,8,1,8,1,8,1,8,3,8,538,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,549,8,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,557,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,565,8,8,1,8,1,8,1, - 8,1,8,1,8,3,8,572,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,582,8, - 8,1,8,1,8,1,8,1,8,1,8,3,8,589,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,597, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,612, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 5,8,645,8,8,10,8,12,8,648,9,8,3,8,650,8,8,1,8,3,8,653,8,8,1,8,3, - 8,656,8,8,1,8,1,8,1,8,1,8,3,8,662,8,8,1,8,1,8,1,8,3,8,667,8,8,1, - 8,1,8,1,8,1,8,1,8,3,8,674,8,8,1,8,1,8,1,8,1,8,3,8,680,8,8,1,8,1, - 8,3,8,684,8,8,1,8,1,8,3,8,688,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,696, - 8,8,1,8,1,8,1,8,1,8,3,8,702,8,8,1,8,1,8,3,8,706,8,8,1,8,1,8,3,8, - 710,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,724, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,732,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,751,8,8,1,8,1,8, + 2,148,7,148,2,149,7,149,2,150,7,150,2,151,7,151,2,152,7,152,2,153, + 7,153,2,154,7,154,1,0,5,0,312,8,0,10,0,12,0,315,9,0,1,0,1,0,1,1, + 1,1,1,2,1,2,3,2,323,8,2,1,3,1,3,3,3,327,8,3,1,4,1,4,3,4,331,8,4, + 1,5,1,5,3,5,335,8,5,1,6,1,6,3,6,339,8,6,1,7,1,7,1,7,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,352,8,8,1,8,1,8,1,8,1,8,1,8,3,8,359,8,8, + 1,8,1,8,3,8,363,8,8,1,8,1,8,3,8,367,8,8,1,8,1,8,1,8,1,8,3,8,373, + 8,8,1,8,1,8,3,8,377,8,8,1,8,1,8,1,8,1,8,1,8,3,8,384,8,8,1,8,1,8, + 1,8,3,8,389,8,8,1,8,1,8,3,8,393,8,8,1,8,1,8,1,8,1,8,3,8,399,8,8, + 1,8,1,8,3,8,403,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,3,8,422,8,8,1,8,1,8,1,8,1,8,3,8,428,8,8, + 1,8,1,8,3,8,432,8,8,1,8,1,8,3,8,436,8,8,1,8,1,8,3,8,440,8,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,448,8,8,1,8,1,8,3,8,452,8,8,1,8,3,8,455, + 8,8,1,8,1,8,1,8,3,8,460,8,8,1,8,1,8,1,8,1,8,3,8,466,8,8,1,8,1,8, + 1,8,1,8,1,8,5,8,473,8,8,10,8,12,8,476,9,8,1,8,1,8,1,8,3,8,481,8, + 8,1,8,1,8,3,8,485,8,8,1,8,1,8,1,8,1,8,3,8,491,8,8,1,8,1,8,1,8,1, + 8,1,8,3,8,498,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,506,8,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,518,8,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,527,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,536,8,8,1,8,1, + 8,1,8,1,8,3,8,542,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,553, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,561,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 3,8,569,8,8,1,8,1,8,1,8,1,8,1,8,3,8,576,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,3,8,586,8,8,1,8,1,8,1,8,1,8,1,8,3,8,593,8,8,1,8,1,8, + 1,8,1,8,1,8,1,8,3,8,601,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,3,8,616,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,5,8,774,8,8,10,8,12,8,777,9,8,3,8,779,8,8,1,8,1,8,1, - 8,1,8,1,8,3,8,786,8,8,1,8,1,8,1,8,1,8,1,8,3,8,793,8,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,3,8,802,8,8,1,8,1,8,3,8,806,8,8,1,8,1,8,1,8,1, - 8,1,8,3,8,813,8,8,1,8,1,8,1,8,1,8,5,8,819,8,8,10,8,12,8,822,9,8, - 1,8,1,8,1,8,1,8,5,8,828,8,8,10,8,12,8,831,9,8,1,8,1,8,1,8,3,8,836, - 8,8,1,8,1,8,1,8,3,8,841,8,8,1,8,1,8,3,8,845,8,8,1,8,1,8,1,8,1,8, - 5,8,851,8,8,10,8,12,8,854,9,8,1,8,1,8,3,8,858,8,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,867,8,8,1,8,1,8,1,8,1,8,3,8,873,8,8,1,8,1,8,1, - 8,5,8,878,8,8,10,8,12,8,881,9,8,1,8,1,8,1,8,1,8,5,8,887,8,8,10,8, - 12,8,890,9,8,1,8,1,8,1,8,3,8,895,8,8,1,8,1,8,3,8,899,8,8,1,8,1,8, - 1,8,1,8,3,8,905,8,8,1,8,1,8,1,8,5,8,910,8,8,10,8,12,8,913,9,8,1, - 8,1,8,3,8,917,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,928,8, - 8,10,8,12,8,931,9,8,1,8,1,8,3,8,935,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,3,8,947,8,8,1,8,1,8,3,8,951,8,8,1,8,1,8,1,8,1,8, - 3,8,957,8,8,1,8,1,8,1,8,1,8,1,8,5,8,964,8,8,10,8,12,8,967,9,8,1, - 8,1,8,3,8,971,8,8,1,8,1,8,1,8,1,8,3,8,977,8,8,1,8,1,8,1,8,1,8,1, + 1,8,1,8,1,8,1,8,1,8,1,8,5,8,649,8,8,10,8,12,8,652,9,8,3,8,654,8, + 8,1,8,3,8,657,8,8,1,8,3,8,660,8,8,1,8,1,8,1,8,1,8,3,8,666,8,8,1, + 8,1,8,1,8,3,8,671,8,8,1,8,1,8,1,8,1,8,1,8,3,8,678,8,8,1,8,1,8,1, + 8,1,8,3,8,684,8,8,1,8,1,8,3,8,688,8,8,1,8,1,8,3,8,692,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,700,8,8,1,8,1,8,1,8,1,8,3,8,706,8,8,1,8,1, + 8,3,8,710,8,8,1,8,1,8,3,8,714,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,728,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,736,8, 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,3,8,1005,8,8,1,8,1,8,1,8,1,8,3,8,1011,8,8, - 3,8,1013,8,8,1,8,1,8,1,8,1,8,3,8,1019,8,8,1,8,1,8,1,8,1,8,3,8,1025, - 8,8,3,8,1027,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1035,8,8,3,8,1037,8, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1047,8,8,3,8,1049,8,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1064,8,8,1,8, - 1,8,1,8,3,8,1069,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1076,8,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,3,8,1086,8,8,1,8,1,8,1,8,1,8,3,8,1092,8,8, - 3,8,1094,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1102,8,8,3,8,1104,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,5,8,1127,8,8,10,8,12,8,1130,9,8,3,8,1132,8,8,1, - 8,1,8,3,8,1136,8,8,1,8,1,8,3,8,1140,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1156,8,8,10,8,12,8,1159,9,8, - 3,8,1161,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1170,8,8,10,8,12,8, - 1173,9,8,3,8,1175,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,1191,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1199,8,8, - 10,8,12,8,1202,9,8,1,8,3,8,1205,8,8,1,8,1,8,1,8,1,8,3,8,1211,8,8, - 1,8,3,8,1214,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1221,8,8,11,8,12,8,1222, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1235,8,8,1,9,3,9,1238, - 8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10,1246,8,10,10,10,12,10,1249, - 9,10,1,11,3,11,1252,8,11,1,11,1,11,1,12,1,12,3,12,1258,8,12,1,12, - 1,12,1,12,5,12,1263,8,12,10,12,12,12,1266,9,12,1,13,1,13,3,13,1270, - 8,13,1,14,1,14,1,14,1,14,3,14,1276,8,14,1,14,1,14,3,14,1280,8,14, - 1,14,1,14,3,14,1284,8,14,1,15,1,15,1,15,1,15,3,15,1290,8,15,1,16, - 1,16,1,16,1,16,1,17,1,17,1,17,5,17,1299,8,17,10,17,12,17,1302,9, - 17,1,18,1,18,1,18,1,18,1,19,1,19,3,19,1310,8,19,1,20,1,20,1,20,1, - 20,1,20,1,20,5,20,1318,8,20,10,20,12,20,1321,9,20,3,20,1323,8,20, - 1,20,1,20,1,20,3,20,1328,8,20,3,20,1330,8,20,1,20,1,20,1,20,1,20, - 1,20,3,20,1337,8,20,1,20,1,20,1,20,1,20,3,20,1343,8,20,3,20,1345, - 8,20,1,21,1,21,3,21,1349,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23, - 1,23,3,23,1359,8,23,1,23,1,23,1,23,1,23,3,23,1365,8,23,1,23,5,23, - 1368,8,23,10,23,12,23,1371,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1, - 24,5,24,1380,8,24,10,24,12,24,1383,9,24,1,24,1,24,1,24,1,24,3,24, - 1389,8,24,1,25,1,25,3,25,1393,8,25,1,25,3,25,1396,8,25,1,25,1,25, - 3,25,1400,8,25,1,26,1,26,3,26,1404,8,26,1,26,1,26,1,26,5,26,1409, - 8,26,10,26,12,26,1412,9,26,1,26,1,26,1,26,1,26,5,26,1418,8,26,10, - 26,12,26,1421,9,26,3,26,1423,8,26,1,26,3,26,1426,8,26,1,26,1,26, - 1,26,3,26,1431,8,26,1,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,1,26, - 5,26,1441,8,26,10,26,12,26,1444,9,26,3,26,1446,8,26,1,27,1,27,1, - 27,1,28,3,28,1452,8,28,1,28,1,28,1,28,5,28,1457,8,28,10,28,12,28, - 1460,9,28,1,29,1,29,1,29,1,29,1,29,1,29,5,29,1468,8,29,10,29,12, - 29,1471,9,29,3,29,1473,8,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,1481, - 8,29,10,29,12,29,1484,9,29,3,29,1486,8,29,1,29,1,29,1,29,1,29,1, - 29,1,29,1,29,5,29,1495,8,29,10,29,12,29,1498,9,29,1,29,1,29,3,29, - 1502,8,29,1,30,1,30,1,30,1,30,5,30,1508,8,30,10,30,12,30,1511,9, - 30,3,30,1513,8,30,1,30,1,30,3,30,1517,8,30,1,31,1,31,3,31,1521,8, - 31,1,32,1,32,1,32,1,32,1,32,1,32,1,33,3,33,1530,8,33,1,33,1,33,1, - 33,1,33,1,33,5,33,1537,8,33,10,33,12,33,1540,9,33,3,33,1542,8,33, - 1,33,1,33,1,33,1,33,1,33,5,33,1549,8,33,10,33,12,33,1552,9,33,3, - 33,1554,8,33,1,33,3,33,1557,8,33,1,34,1,34,3,34,1561,8,34,1,34,1, - 34,1,34,1,34,1,34,1,35,1,35,1,36,1,36,3,36,1572,8,36,1,36,3,36,1575, - 8,36,1,36,3,36,1578,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1585,8,36, - 1,36,3,36,1588,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,1607,8,37,5,37,1609, - 8,37,10,37,12,37,1612,9,37,1,38,3,38,1615,8,38,1,38,1,38,3,38,1619, - 8,38,1,38,1,38,3,38,1623,8,38,1,38,1,38,3,38,1627,8,38,3,38,1629, - 8,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,5,39,1638,8,39,10,39,12, - 39,1641,9,39,1,39,1,39,3,39,1645,8,39,1,40,1,40,1,40,1,40,1,40,1, - 40,1,40,3,40,1654,8,40,1,41,1,41,1,42,1,42,1,43,1,43,1,43,3,43,1663, - 8,43,1,43,3,43,1666,8,43,1,44,1,44,1,44,1,44,3,44,1672,8,44,1,45, - 1,45,1,45,1,45,1,45,1,45,1,45,1,45,5,45,1682,8,45,10,45,12,45,1685, - 9,45,3,45,1687,8,45,1,45,1,45,1,45,1,45,1,45,5,45,1694,8,45,10,45, - 12,45,1697,9,45,3,45,1699,8,45,1,45,1,45,1,45,1,45,5,45,1705,8,45, - 10,45,12,45,1708,9,45,3,45,1710,8,45,1,45,3,45,1713,8,45,1,45,1, - 45,1,45,3,45,1718,8,45,1,45,3,45,1721,8,45,1,45,1,45,1,45,1,45,1, - 45,1,45,1,45,1,45,5,45,1731,8,45,10,45,12,45,1734,9,45,3,45,1736, - 8,45,1,45,1,45,1,45,1,45,5,45,1742,8,45,10,45,12,45,1745,9,45,1, - 45,1,45,3,45,1749,8,45,1,45,1,45,3,45,1753,8,45,3,45,1755,8,45,3, - 45,1757,8,45,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1, - 47,1,47,1,47,3,47,1772,8,47,3,47,1774,8,47,1,48,1,48,1,48,1,48,1, - 48,1,48,1,48,1,48,1,48,3,48,1785,8,48,1,49,1,49,1,49,1,49,1,49,1, - 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1, - 49,3,49,1806,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5,50,1814,8,50,10, - 50,12,50,1817,9,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,3,52, - 1827,8,52,1,52,1,52,3,52,1831,8,52,3,52,1833,8,52,1,53,1,53,1,53, - 1,53,5,53,1839,8,53,10,53,12,53,1842,9,53,1,53,1,53,1,54,1,54,1, - 54,1,54,5,54,1850,8,54,10,54,12,54,1853,9,54,1,54,1,54,1,55,1,55, - 1,55,1,55,5,55,1861,8,55,10,55,12,55,1864,9,55,1,55,1,55,1,56,1, - 56,3,56,1870,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5, - 56,1881,8,56,10,56,12,56,1884,9,56,1,56,1,56,1,56,3,56,1889,8,56, - 1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,1913,8,56,10,56, - 12,56,1916,9,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,3,56,1930,8,56,1,56,1,56,1,56,3,56,1935,8,56,1,56,1,56, - 3,56,1939,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1949, - 8,57,1,57,1,57,1,57,1,57,3,57,1955,8,57,1,57,1,57,1,57,1,57,3,57, - 1961,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1969,8,57,1,57,1,57, - 1,57,3,57,1974,8,57,1,57,1,57,1,57,1,57,1,57,3,57,1981,8,57,3,57, - 1983,8,57,1,57,1,57,1,57,1,57,3,57,1989,8,57,1,57,1,57,1,57,1,57, - 3,57,1995,8,57,1,57,1,57,3,57,1999,8,57,1,57,1,57,1,57,3,57,2004, - 8,57,1,57,1,57,1,57,1,57,1,57,5,57,2011,8,57,10,57,12,57,2014,9, - 57,1,57,1,57,3,57,2018,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,1,58,5,58,2030,8,58,10,58,12,58,2033,9,58,1,58,1,58,1,58, - 1,58,1,58,5,58,2040,8,58,10,58,12,58,2043,9,58,3,58,2045,8,58,1, - 59,1,59,1,60,1,60,1,60,1,60,1,60,3,60,2054,8,60,1,61,1,61,1,61,3, - 61,2059,8,61,1,61,1,61,1,61,3,61,2064,8,61,3,61,2066,8,61,1,62,1, - 62,1,62,1,62,1,62,5,62,2073,8,62,10,62,12,62,2076,9,62,3,62,2078, - 8,62,1,62,1,62,1,62,1,62,5,62,2084,8,62,10,62,12,62,2087,9,62,3, - 62,2089,8,62,1,62,1,62,1,63,1,63,1,63,3,63,2096,8,63,1,63,1,63,1, - 63,3,63,2101,8,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,2110,8, - 64,10,64,12,64,2113,9,64,3,64,2115,8,64,1,64,1,64,3,64,2119,8,64, - 3,64,2121,8,64,1,64,1,64,1,64,1,64,1,64,1,64,3,64,2129,8,64,1,64, - 1,64,1,64,1,64,1,64,1,64,5,64,2137,8,64,10,64,12,64,2140,9,64,1, - 64,1,64,1,64,3,64,2145,8,64,3,64,2147,8,64,1,65,1,65,1,65,1,65,1, - 65,3,65,2154,8,65,1,65,1,65,3,65,2158,8,65,3,65,2160,8,65,1,65,1, - 65,1,65,1,65,1,65,3,65,2167,8,65,1,65,1,65,3,65,2171,8,65,3,65,2173, - 8,65,3,65,2175,8,65,1,66,1,66,1,66,1,66,1,66,5,66,2182,8,66,10,66, - 12,66,2185,9,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,2195, - 8,66,1,67,1,67,3,67,2199,8,67,1,68,1,68,1,68,1,68,1,68,1,68,5,68, - 2207,8,68,10,68,12,68,2210,9,68,1,68,1,68,1,69,1,69,1,70,1,70,1, - 70,3,70,2219,8,70,1,70,1,70,3,70,2223,8,70,1,70,1,70,1,70,1,70,1, - 70,1,70,5,70,2231,8,70,10,70,12,70,2234,9,70,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,3,71,2246,8,71,1,71,1,71,1,71,1,71, - 1,71,1,71,3,71,2254,8,71,1,71,1,71,1,71,1,71,1,71,5,71,2261,8,71, - 10,71,12,71,2264,9,71,1,71,1,71,1,71,3,71,2269,8,71,1,71,1,71,1, - 71,1,71,1,71,1,71,3,71,2277,8,71,1,71,1,71,1,71,1,71,3,71,2283,8, - 71,1,71,1,71,3,71,2287,8,71,1,71,1,71,1,71,3,71,2292,8,71,1,71,1, - 71,1,71,3,71,2297,8,71,1,72,1,72,1,72,1,72,3,72,2303,8,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2317,8, - 72,10,72,12,72,2320,9,72,1,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,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,4,73,2347,8,73,11,73,12,73,2348,1,73,1,73,1, - 73,1,73,1,73,1,73,1,73,5,73,2358,8,73,10,73,12,73,2361,9,73,1,73, - 1,73,1,73,1,73,1,73,3,73,2368,8,73,1,73,1,73,1,73,3,73,2373,8,73, - 1,73,1,73,1,73,3,73,2378,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,5,73,2389,8,73,10,73,12,73,2392,9,73,1,73,1,73,1,73,3, - 73,2397,8,73,1,73,3,73,2400,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2407, - 8,73,1,73,1,73,1,73,3,73,2412,8,73,1,73,3,73,2415,8,73,1,73,3,73, - 2418,8,73,1,73,1,73,1,73,3,73,2423,8,73,1,73,1,73,1,73,5,73,2428, - 8,73,10,73,12,73,2431,9,73,3,73,2433,8,73,1,73,1,73,1,73,1,73,1, - 73,5,73,2440,8,73,10,73,12,73,2443,9,73,3,73,2445,8,73,1,73,1,73, - 3,73,2449,8,73,1,73,3,73,2452,8,73,1,73,3,73,2455,8,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2468,8,73,10,73, - 12,73,2471,9,73,3,73,2473,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,1,73,1,73,1,73,4,73,2490,8,73,11,73,12, - 73,2491,1,73,1,73,3,73,2496,8,73,1,73,1,73,1,73,1,73,4,73,2502,8, - 73,11,73,12,73,2503,1,73,1,73,3,73,2508,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,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,5,73,2531,8,73,10,73,12,73,2534,9,73,3,73,2536, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2545,8,73,1,73,1,73, - 1,73,1,73,3,73,2551,8,73,1,73,1,73,1,73,1,73,3,73,2557,8,73,1,73, - 1,73,1,73,1,73,3,73,2563,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 3,73,2572,8,73,1,73,3,73,2575,8,73,1,73,3,73,2578,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,1,73,1,73,1,73, - 1,73,1,73,3,73,2597,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 2606,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,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2626,8,73,10,73,12,73,2629, - 9,73,3,73,2631,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 2641,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2650,8,73,1,73, - 1,73,1,73,1,73,3,73,2656,8,73,1,73,1,73,1,73,1,73,3,73,2662,8,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2673,8,73,3,73, - 2675,8,73,1,73,1,73,1,73,3,73,2680,8,73,1,73,1,73,1,73,1,73,1,73, - 3,73,2687,8,73,3,73,2689,8,73,1,73,1,73,1,73,1,73,3,73,2695,8,73, - 1,73,1,73,1,73,1,73,3,73,2701,8,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,5,73,2710,8,73,10,73,12,73,2713,9,73,1,73,1,73,1,73,1,73,1, - 73,1,73,3,73,2721,8,73,1,73,1,73,1,73,3,73,2726,8,73,1,73,1,73,1, - 73,3,73,2731,8,73,3,73,2733,8,73,3,73,2735,8,73,1,73,1,73,1,73,1, - 73,3,73,2741,8,73,3,73,2743,8,73,1,73,1,73,1,73,1,73,1,73,1,73,5, - 73,2751,8,73,10,73,12,73,2754,9,73,1,73,1,73,1,73,1,73,1,73,1,73, - 3,73,2762,8,73,3,73,2764,8,73,1,73,1,73,1,73,1,73,3,73,2770,8,73, - 3,73,2772,8,73,1,73,3,73,2775,8,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,5,73,2785,8,73,10,73,12,73,2788,9,73,1,74,1,74,1,74,1, - 74,1,74,3,74,2795,8,74,1,74,1,74,1,74,1,74,5,74,2801,8,74,10,74, - 12,74,2804,9,74,3,74,2806,8,74,1,75,1,75,1,75,3,75,2811,8,75,1,76, - 1,76,1,76,3,76,2816,8,76,1,77,1,77,1,77,1,77,1,78,1,78,1,79,1,79, - 1,79,1,79,3,79,2828,8,79,1,80,1,80,3,80,2832,8,80,1,80,1,80,3,80, - 2836,8,80,1,80,3,80,2839,8,80,3,80,2841,8,80,1,81,1,81,1,81,1,81, - 1,81,1,81,3,81,2849,8,81,1,82,3,82,2852,8,82,1,82,1,82,1,82,1,82, - 1,82,1,82,1,82,1,82,3,82,2862,8,82,1,83,1,83,1,84,1,84,1,84,1,84, - 3,84,2870,8,84,1,85,1,85,1,85,1,85,3,85,2876,8,85,3,85,2878,8,85, - 1,86,1,86,1,86,1,86,1,86,1,86,3,86,2886,8,86,1,87,1,87,1,88,1,88, - 1,89,1,89,1,90,1,90,3,90,2896,8,90,1,90,1,90,1,90,1,90,3,90,2902, - 8,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,5,93,2914, - 8,93,10,93,12,93,2917,9,93,1,93,1,93,1,93,1,93,1,93,1,93,3,93,2925, - 8,93,1,93,1,93,1,93,1,93,1,93,3,93,2932,8,93,1,93,1,93,1,93,3,93, - 2937,8,93,1,93,1,93,1,93,1,93,1,93,3,93,2944,8,93,1,93,1,93,1,93, - 1,93,1,93,1,93,1,93,1,93,3,93,2954,8,93,1,93,1,93,1,93,3,93,2959, - 8,93,1,93,1,93,1,93,1,93,1,93,3,93,2966,8,93,1,93,1,93,1,93,1,93, - 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93, - 1,93,1,93,1,93,1,93,1,93,5,93,2990,8,93,10,93,12,93,2993,9,93,1, - 93,1,93,3,93,2997,8,93,3,93,2999,8,93,1,93,1,93,1,93,1,93,1,93,3, - 93,3006,8,93,5,93,3008,8,93,10,93,12,93,3011,9,93,1,94,1,94,1,94, - 1,94,3,94,3017,8,94,1,95,1,95,3,95,3021,8,95,1,96,1,96,1,96,1,96, - 1,96,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,3,98,3037,8,98, - 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,5,98,3050, - 8,98,10,98,12,98,3053,9,98,1,98,1,98,1,98,1,98,3,98,3059,8,98,1, - 98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,3068,8,98,1,98,1,98,1,98,1, - 98,1,98,1,98,5,98,3076,8,98,10,98,12,98,3079,9,98,1,98,1,98,3,98, - 3083,8,98,1,98,1,98,1,98,1,98,1,98,5,98,3090,8,98,10,98,12,98,3093, - 9,98,1,98,1,98,3,98,3097,8,98,1,99,1,99,1,99,1,99,1,99,1,99,3,99, - 3105,8,99,1,100,1,100,1,100,1,100,5,100,3111,8,100,10,100,12,100, - 3114,9,100,3,100,3116,8,100,1,100,1,100,1,100,1,100,3,100,3122,8, - 100,1,100,3,100,3125,8,100,1,100,1,100,1,100,1,100,1,100,3,100,3132, - 8,100,1,100,1,100,1,100,1,100,5,100,3138,8,100,10,100,12,100,3141, - 9,100,3,100,3143,8,100,1,100,1,100,1,100,1,100,5,100,3149,8,100, - 10,100,12,100,3152,9,100,3,100,3154,8,100,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3180, - 8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,3,102, - 3191,8,102,1,103,1,103,1,103,3,103,3196,8,103,1,103,1,103,1,103, - 1,103,1,103,5,103,3203,8,103,10,103,12,103,3206,9,103,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,5,104,3216,8,104,10,104,12,104, - 3219,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,3,104,3233,8,104,1,105,1,105,3,105,3237,8,105, - 1,105,1,105,3,105,3241,8,105,1,105,1,105,3,105,3245,8,105,1,105, - 1,105,1,105,1,105,3,105,3251,8,105,1,105,1,105,3,105,3255,8,105, - 1,105,1,105,3,105,3259,8,105,1,105,1,105,3,105,3263,8,105,3,105, - 3265,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,3,107, - 3275,8,107,1,108,1,108,1,108,1,108,1,108,3,108,3282,8,108,1,109, - 1,109,1,109,1,109,1,109,1,109,1,109,3,109,3291,8,109,1,110,1,110, - 1,110,1,110,1,110,3,110,3298,8,110,1,111,1,111,1,111,1,111,1,111, - 3,111,3305,8,111,1,112,1,112,1,112,5,112,3310,8,112,10,112,12,112, - 3313,9,112,1,113,1,113,1,113,1,113,5,113,3319,8,113,10,113,12,113, - 3322,9,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,5,114,3331, - 8,114,10,114,12,114,3334,9,114,3,114,3336,8,114,1,114,1,114,1,115, - 1,115,1,115,1,115,1,115,5,115,3345,8,115,10,115,12,115,3348,9,115, - 3,115,3350,8,115,1,115,1,115,1,116,3,116,3355,8,116,1,116,1,116, - 1,117,1,117,1,117,1,118,1,118,1,118,3,118,3365,8,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,3,118,3381,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,4,119,3393,8,119,11,119,12,119,3394,1,119,3,119, - 3398,8,119,1,119,1,119,1,119,1,119,1,119,4,119,3405,8,119,11,119, - 12,119,3406,1,119,3,119,3410,8,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,5,119,3420,8,119,10,119,12,119,3423,9,119,1,119, - 3,119,3426,8,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,5,119,3439,8,119,10,119,12,119,3442,9,119,1,119, - 3,119,3445,8,119,1,119,1,119,1,119,1,119,3,119,3451,8,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3461,8,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3473, - 8,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3482,8,119, - 1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122, - 1,122,1,122,1,123,1,123,1,123,1,123,5,123,3501,8,123,10,123,12,123, - 3504,9,123,1,123,1,123,1,123,3,123,3509,8,123,1,124,1,124,1,124, - 4,124,3514,8,124,11,124,12,124,3515,1,125,1,125,1,125,1,125,1,125, - 1,125,3,125,3524,8,125,1,126,1,126,1,126,3,126,3529,8,126,1,127, - 3,127,3532,8,127,1,127,1,127,1,128,1,128,3,128,3538,8,128,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129, - 3551,8,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 1,130,1,130,3,130,3564,8,130,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,3,131,3577,8,131,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,3590,8,132, - 1,133,1,133,1,133,1,133,1,133,3,133,3597,8,133,1,134,1,134,1,134, - 1,134,1,134,3,134,3604,8,134,1,135,1,135,1,136,1,136,1,137,1,137, - 1,138,1,138,1,139,1,139,3,139,3616,8,139,1,140,1,140,1,141,1,141, - 1,142,1,142,1,142,5,142,3625,8,142,10,142,12,142,3628,9,142,1,143, - 1,143,1,143,1,143,1,143,1,143,1,144,1,144,1,145,1,145,1,145,3,145, - 3641,8,145,1,146,1,146,1,146,1,146,1,146,3,146,3648,8,146,1,147, - 1,147,1,147,5,147,3653,8,147,10,147,12,147,3656,9,147,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,3,148,3665,8,148,1,149,1,149,1,149, - 1,149,1,149,3,149,3672,8,149,1,150,3,150,3675,8,150,1,150,1,150, - 3,150,3679,8,150,1,150,1,150,3,150,3683,8,150,1,150,3,150,3686,8, - 150,1,151,1,151,3,151,3690,8,151,1,152,1,152,1,152,0,7,46,74,140, - 144,146,186,206,153,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32, - 34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76, - 78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114, - 116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146, - 148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178, - 180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210, - 212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242, - 244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274, - 276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,0,35, - 2,0,39,39,229,229,2,0,72,72,131,131,2,0,105,105,122,122,2,0,92,92, - 123,123,1,0,239,240,2,0,101,101,174,174,2,0,324,324,329,329,2,0, - 91,91,281,281,2,0,29,29,75,75,2,0,101,101,148,148,2,0,22,22,79,79, - 2,0,33,33,259,259,3,0,35,35,150,150,270,270,2,0,124,124,247,247, - 2,0,85,85,89,89,2,0,144,144,189,189,2,0,125,125,197,197,2,0,54,54, - 281,281,1,0,318,319,1,0,320,322,1,0,291,293,4,0,89,89,97,97,273, - 273,283,283,2,0,49,49,280,280,2,0,100,100,241,241,1,0,312,317,3, - 0,22,22,26,26,254,254,2,0,97,97,273,273,5,0,67,67,118,118,170,171, - 245,245,310,310,1,0,175,178,2,0,102,102,212,212,3,0,113,113,137, - 137,263,263,4,0,80,80,132,132,160,160,294,294,2,0,192,192,309,309, - 2,0,268,268,298,298,54,0,18,22,24,24,26,27,29,33,35,35,37,39,42, - 49,51,52,56,56,65,67,69,72,74,75,77,78,80,82,85,87,89,89,92,92,95, - 95,98,102,104,104,107,113,116,116,118,121,123,124,126,126,129,129, - 131,132,134,135,137,137,144,151,153,153,155,155,157,157,160,171, - 173,180,184,189,191,193,196,196,198,213,215,220,222,233,235,237, - 239,247,249,259,261,264,266,271,274,276,278,280,282,284,286,289, - 291,295,297,299,302,303,305,311,4247,0,309,1,0,0,0,2,314,1,0,0,0, - 4,316,1,0,0,0,6,320,1,0,0,0,8,324,1,0,0,0,10,328,1,0,0,0,12,332, - 1,0,0,0,14,336,1,0,0,0,16,1234,1,0,0,0,18,1237,1,0,0,0,20,1241,1, - 0,0,0,22,1251,1,0,0,0,24,1255,1,0,0,0,26,1269,1,0,0,0,28,1271,1, - 0,0,0,30,1285,1,0,0,0,32,1291,1,0,0,0,34,1295,1,0,0,0,36,1303,1, - 0,0,0,38,1309,1,0,0,0,40,1311,1,0,0,0,42,1348,1,0,0,0,44,1350,1, - 0,0,0,46,1352,1,0,0,0,48,1388,1,0,0,0,50,1392,1,0,0,0,52,1401,1, - 0,0,0,54,1447,1,0,0,0,56,1451,1,0,0,0,58,1501,1,0,0,0,60,1516,1, - 0,0,0,62,1520,1,0,0,0,64,1522,1,0,0,0,66,1529,1,0,0,0,68,1558,1, - 0,0,0,70,1567,1,0,0,0,72,1587,1,0,0,0,74,1589,1,0,0,0,76,1628,1, - 0,0,0,78,1644,1,0,0,0,80,1646,1,0,0,0,82,1655,1,0,0,0,84,1657,1, - 0,0,0,86,1665,1,0,0,0,88,1671,1,0,0,0,90,1673,1,0,0,0,92,1758,1, - 0,0,0,94,1773,1,0,0,0,96,1784,1,0,0,0,98,1805,1,0,0,0,100,1807,1, - 0,0,0,102,1820,1,0,0,0,104,1824,1,0,0,0,106,1834,1,0,0,0,108,1845, - 1,0,0,0,110,1856,1,0,0,0,112,1938,1,0,0,0,114,2017,1,0,0,0,116,2044, - 1,0,0,0,118,2046,1,0,0,0,120,2053,1,0,0,0,122,2065,1,0,0,0,124,2067, - 1,0,0,0,126,2095,1,0,0,0,128,2102,1,0,0,0,130,2174,1,0,0,0,132,2194, - 1,0,0,0,134,2196,1,0,0,0,136,2200,1,0,0,0,138,2213,1,0,0,0,140,2222, - 1,0,0,0,142,2296,1,0,0,0,144,2302,1,0,0,0,146,2774,1,0,0,0,148,2789, - 1,0,0,0,150,2807,1,0,0,0,152,2812,1,0,0,0,154,2817,1,0,0,0,156,2821, - 1,0,0,0,158,2827,1,0,0,0,160,2840,1,0,0,0,162,2848,1,0,0,0,164,2861, - 1,0,0,0,166,2863,1,0,0,0,168,2869,1,0,0,0,170,2877,1,0,0,0,172,2885, - 1,0,0,0,174,2887,1,0,0,0,176,2889,1,0,0,0,178,2891,1,0,0,0,180,2893, - 1,0,0,0,182,2903,1,0,0,0,184,2905,1,0,0,0,186,2998,1,0,0,0,188,3016, - 1,0,0,0,190,3020,1,0,0,0,192,3022,1,0,0,0,194,3027,1,0,0,0,196,3096, - 1,0,0,0,198,3098,1,0,0,0,200,3115,1,0,0,0,202,3179,1,0,0,0,204,3190, - 1,0,0,0,206,3192,1,0,0,0,208,3232,1,0,0,0,210,3264,1,0,0,0,212,3266, - 1,0,0,0,214,3274,1,0,0,0,216,3281,1,0,0,0,218,3290,1,0,0,0,220,3297, - 1,0,0,0,222,3304,1,0,0,0,224,3306,1,0,0,0,226,3314,1,0,0,0,228,3325, - 1,0,0,0,230,3339,1,0,0,0,232,3354,1,0,0,0,234,3358,1,0,0,0,236,3380, - 1,0,0,0,238,3481,1,0,0,0,240,3483,1,0,0,0,242,3488,1,0,0,0,244,3493, - 1,0,0,0,246,3496,1,0,0,0,248,3513,1,0,0,0,250,3523,1,0,0,0,252,3528, - 1,0,0,0,254,3531,1,0,0,0,256,3537,1,0,0,0,258,3550,1,0,0,0,260,3563, - 1,0,0,0,262,3576,1,0,0,0,264,3589,1,0,0,0,266,3596,1,0,0,0,268,3603, - 1,0,0,0,270,3605,1,0,0,0,272,3607,1,0,0,0,274,3609,1,0,0,0,276,3611, - 1,0,0,0,278,3615,1,0,0,0,280,3617,1,0,0,0,282,3619,1,0,0,0,284,3621, - 1,0,0,0,286,3629,1,0,0,0,288,3635,1,0,0,0,290,3640,1,0,0,0,292,3647, - 1,0,0,0,294,3649,1,0,0,0,296,3664,1,0,0,0,298,3671,1,0,0,0,300,3685, - 1,0,0,0,302,3689,1,0,0,0,304,3691,1,0,0,0,306,308,3,2,1,0,307,306, - 1,0,0,0,308,311,1,0,0,0,309,307,1,0,0,0,309,310,1,0,0,0,310,312, - 1,0,0,0,311,309,1,0,0,0,312,313,5,0,0,1,313,1,1,0,0,0,314,315,3, - 4,2,0,315,3,1,0,0,0,316,318,3,16,8,0,317,319,5,325,0,0,318,317,1, - 0,0,0,318,319,1,0,0,0,319,5,1,0,0,0,320,322,3,138,69,0,321,323,5, - 325,0,0,322,321,1,0,0,0,322,323,1,0,0,0,323,7,1,0,0,0,324,326,3, - 224,112,0,325,327,5,325,0,0,326,325,1,0,0,0,326,327,1,0,0,0,327, - 9,1,0,0,0,328,330,3,186,93,0,329,331,5,325,0,0,330,329,1,0,0,0,330, - 331,1,0,0,0,331,11,1,0,0,0,332,334,3,206,103,0,333,335,5,325,0,0, - 334,333,1,0,0,0,334,335,1,0,0,0,335,13,1,0,0,0,336,337,3,226,113, - 0,337,338,5,0,0,1,338,15,1,0,0,0,339,1235,3,18,9,0,340,341,5,288, - 0,0,341,1235,3,266,133,0,342,343,5,53,0,0,343,347,5,42,0,0,344,345, - 5,119,0,0,345,346,5,182,0,0,346,348,5,94,0,0,347,344,1,0,0,0,347, - 348,1,0,0,0,348,349,1,0,0,0,349,350,3,272,136,0,350,351,5,290,0, - 0,351,354,3,298,149,0,352,353,5,46,0,0,353,355,3,170,85,0,354,352, - 1,0,0,0,354,355,1,0,0,0,355,358,1,0,0,0,356,357,5,31,0,0,357,359, - 3,292,146,0,358,356,1,0,0,0,358,359,1,0,0,0,359,362,1,0,0,0,360, - 361,5,304,0,0,361,363,3,32,16,0,362,360,1,0,0,0,362,363,1,0,0,0, - 363,1235,1,0,0,0,364,365,5,83,0,0,365,368,5,42,0,0,366,367,5,119, - 0,0,367,369,5,94,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,370,1,0, - 0,0,370,372,3,270,135,0,371,373,7,0,0,0,372,371,1,0,0,0,372,373, - 1,0,0,0,373,1235,1,0,0,0,374,375,5,53,0,0,375,379,5,243,0,0,376, - 377,5,119,0,0,377,378,5,182,0,0,378,380,5,94,0,0,379,376,1,0,0,0, - 379,380,1,0,0,0,380,381,1,0,0,0,381,384,3,268,134,0,382,383,5,31, - 0,0,383,385,3,292,146,0,384,382,1,0,0,0,384,385,1,0,0,0,385,388, - 1,0,0,0,386,387,5,304,0,0,387,389,3,32,16,0,388,386,1,0,0,0,388, - 389,1,0,0,0,389,1235,1,0,0,0,390,391,5,83,0,0,391,394,5,243,0,0, - 392,393,5,119,0,0,393,395,5,94,0,0,394,392,1,0,0,0,394,395,1,0,0, - 0,395,396,1,0,0,0,396,398,3,266,133,0,397,399,7,0,0,0,398,397,1, - 0,0,0,398,399,1,0,0,0,399,1235,1,0,0,0,400,401,5,23,0,0,401,402, - 5,243,0,0,402,403,3,266,133,0,403,404,5,223,0,0,404,405,5,269,0, - 0,405,406,3,268,134,0,406,1235,1,0,0,0,407,408,5,23,0,0,408,409, - 5,243,0,0,409,410,3,266,133,0,410,411,5,251,0,0,411,412,5,31,0,0, - 412,413,3,292,146,0,413,1235,1,0,0,0,414,417,5,53,0,0,415,416,5, - 194,0,0,416,418,5,226,0,0,417,415,1,0,0,0,417,418,1,0,0,0,418,419, - 1,0,0,0,419,423,5,260,0,0,420,421,5,119,0,0,421,422,5,182,0,0,422, - 424,5,94,0,0,423,420,1,0,0,0,423,424,1,0,0,0,424,425,1,0,0,0,425, - 427,3,260,130,0,426,428,3,106,53,0,427,426,1,0,0,0,427,428,1,0,0, - 0,428,431,1,0,0,0,429,430,5,46,0,0,430,432,3,170,85,0,431,429,1, - 0,0,0,431,432,1,0,0,0,432,435,1,0,0,0,433,434,5,304,0,0,434,436, - 3,32,16,0,435,433,1,0,0,0,435,436,1,0,0,0,436,437,1,0,0,0,437,443, - 5,28,0,0,438,444,3,18,9,0,439,440,5,1,0,0,440,441,3,18,9,0,441,442, - 5,2,0,0,442,444,1,0,0,0,443,438,1,0,0,0,443,439,1,0,0,0,444,450, - 1,0,0,0,445,447,5,304,0,0,446,448,5,179,0,0,447,446,1,0,0,0,447, - 448,1,0,0,0,448,449,1,0,0,0,449,451,5,65,0,0,450,445,1,0,0,0,450, - 451,1,0,0,0,451,1235,1,0,0,0,452,455,5,53,0,0,453,454,5,194,0,0, - 454,456,5,226,0,0,455,453,1,0,0,0,455,456,1,0,0,0,456,457,1,0,0, - 0,457,461,5,260,0,0,458,459,5,119,0,0,459,460,5,182,0,0,460,462, - 5,94,0,0,461,458,1,0,0,0,461,462,1,0,0,0,462,463,1,0,0,0,463,464, - 3,260,130,0,464,465,5,1,0,0,465,470,3,26,13,0,466,467,5,3,0,0,467, - 469,3,26,13,0,468,466,1,0,0,0,469,472,1,0,0,0,470,468,1,0,0,0,470, - 471,1,0,0,0,471,473,1,0,0,0,472,470,1,0,0,0,473,476,5,2,0,0,474, - 475,5,46,0,0,475,477,3,170,85,0,476,474,1,0,0,0,476,477,1,0,0,0, - 477,480,1,0,0,0,478,479,5,304,0,0,479,481,3,32,16,0,480,478,1,0, - 0,0,480,481,1,0,0,0,481,1235,1,0,0,0,482,483,5,83,0,0,483,486,5, - 260,0,0,484,485,5,119,0,0,485,487,5,94,0,0,486,484,1,0,0,0,486,487, - 1,0,0,0,487,488,1,0,0,0,488,1235,3,258,129,0,489,490,5,127,0,0,490, - 491,5,130,0,0,491,493,3,258,129,0,492,494,3,108,54,0,493,492,1,0, - 0,0,493,494,1,0,0,0,494,495,1,0,0,0,495,496,3,18,9,0,496,1235,1, - 0,0,0,497,498,5,73,0,0,498,499,5,105,0,0,499,501,3,258,129,0,500, - 502,3,54,27,0,501,500,1,0,0,0,501,502,1,0,0,0,502,1235,1,0,0,0,503, - 504,5,274,0,0,504,505,5,260,0,0,505,1235,3,258,129,0,506,507,5,46, - 0,0,507,508,5,190,0,0,508,509,5,260,0,0,509,510,3,258,129,0,510, - 513,5,133,0,0,511,514,3,170,85,0,512,514,5,183,0,0,513,511,1,0,0, - 0,513,512,1,0,0,0,514,1235,1,0,0,0,515,516,5,46,0,0,516,517,5,190, - 0,0,517,518,5,299,0,0,518,519,3,262,131,0,519,522,5,133,0,0,520, - 523,3,170,85,0,521,523,5,183,0,0,522,520,1,0,0,0,522,521,1,0,0,0, - 523,1235,1,0,0,0,524,525,5,46,0,0,525,526,5,190,0,0,526,527,5,44, - 0,0,527,528,3,278,139,0,528,531,5,133,0,0,529,532,3,170,85,0,530, - 532,5,183,0,0,531,529,1,0,0,0,531,530,1,0,0,0,532,1235,1,0,0,0,533, - 534,5,23,0,0,534,537,5,260,0,0,535,536,5,119,0,0,536,538,5,94,0, - 0,537,535,1,0,0,0,537,538,1,0,0,0,538,539,1,0,0,0,539,540,3,258, - 129,0,540,541,5,223,0,0,541,542,5,269,0,0,542,543,3,260,130,0,543, - 1235,1,0,0,0,544,545,5,23,0,0,545,548,5,260,0,0,546,547,5,119,0, - 0,547,549,5,94,0,0,548,546,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0, - 0,550,551,3,258,129,0,551,552,5,19,0,0,552,556,5,44,0,0,553,554, - 5,119,0,0,554,555,5,182,0,0,555,557,5,94,0,0,556,553,1,0,0,0,556, - 557,1,0,0,0,557,558,1,0,0,0,558,559,3,28,14,0,559,1235,1,0,0,0,560, - 561,5,23,0,0,561,564,5,260,0,0,562,563,5,119,0,0,563,565,5,94,0, - 0,564,562,1,0,0,0,564,565,1,0,0,0,565,566,1,0,0,0,566,567,3,258, - 129,0,567,568,5,223,0,0,568,571,5,44,0,0,569,570,5,119,0,0,570,572, - 5,94,0,0,571,569,1,0,0,0,571,572,1,0,0,0,572,573,1,0,0,0,573,574, - 3,278,139,0,574,575,5,269,0,0,575,576,3,282,141,0,576,1235,1,0,0, - 0,577,578,5,23,0,0,578,581,5,260,0,0,579,580,5,119,0,0,580,582,5, - 94,0,0,581,579,1,0,0,0,581,582,1,0,0,0,582,583,1,0,0,0,583,584,3, - 258,129,0,584,585,5,83,0,0,585,588,5,44,0,0,586,587,5,119,0,0,587, - 589,5,94,0,0,588,586,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590, - 591,3,278,139,0,591,1235,1,0,0,0,592,593,5,23,0,0,593,596,5,260, - 0,0,594,595,5,119,0,0,595,597,5,94,0,0,596,594,1,0,0,0,596,597,1, - 0,0,0,597,598,1,0,0,0,598,599,3,258,129,0,599,600,5,23,0,0,600,601, - 5,44,0,0,601,602,3,278,139,0,602,603,5,251,0,0,603,604,5,65,0,0, - 604,605,5,276,0,0,605,606,3,186,93,0,606,1235,1,0,0,0,607,608,5, - 23,0,0,608,611,5,260,0,0,609,610,5,119,0,0,610,612,5,94,0,0,611, - 609,1,0,0,0,611,612,1,0,0,0,612,613,1,0,0,0,613,614,3,258,129,0, - 614,615,5,23,0,0,615,616,5,44,0,0,616,617,3,278,139,0,617,618,5, - 83,0,0,618,619,5,182,0,0,619,620,5,183,0,0,620,1235,1,0,0,0,621, - 622,5,23,0,0,622,623,5,260,0,0,623,624,3,258,129,0,624,625,5,251, - 0,0,625,626,5,31,0,0,626,627,3,292,146,0,627,1235,1,0,0,0,628,629, - 5,23,0,0,629,630,5,260,0,0,630,631,3,258,129,0,631,632,5,251,0,0, - 632,633,5,216,0,0,633,634,3,34,17,0,634,1235,1,0,0,0,635,636,5,23, - 0,0,636,637,5,260,0,0,637,638,3,258,129,0,638,639,5,93,0,0,639,652, - 3,274,137,0,640,649,5,1,0,0,641,646,3,220,110,0,642,643,5,3,0,0, - 643,645,3,220,110,0,644,642,1,0,0,0,645,648,1,0,0,0,646,644,1,0, - 0,0,646,647,1,0,0,0,647,650,1,0,0,0,648,646,1,0,0,0,649,641,1,0, - 0,0,649,650,1,0,0,0,650,651,1,0,0,0,651,653,5,2,0,0,652,640,1,0, - 0,0,652,653,1,0,0,0,653,655,1,0,0,0,654,656,3,54,27,0,655,654,1, - 0,0,0,655,656,1,0,0,0,656,1235,1,0,0,0,657,658,5,24,0,0,658,661, - 3,258,129,0,659,660,5,304,0,0,660,662,3,32,16,0,661,659,1,0,0,0, - 661,662,1,0,0,0,662,1235,1,0,0,0,663,666,5,53,0,0,664,665,5,194, - 0,0,665,667,5,226,0,0,666,664,1,0,0,0,666,667,1,0,0,0,667,668,1, - 0,0,0,668,669,5,167,0,0,669,673,5,299,0,0,670,671,5,119,0,0,671, - 672,5,182,0,0,672,674,5,94,0,0,673,670,1,0,0,0,673,674,1,0,0,0,674, - 675,1,0,0,0,675,679,3,264,132,0,676,677,5,109,0,0,677,678,5,208, - 0,0,678,680,3,180,90,0,679,676,1,0,0,0,679,680,1,0,0,0,680,683,1, - 0,0,0,681,682,5,46,0,0,682,684,3,170,85,0,683,681,1,0,0,0,683,684, - 1,0,0,0,684,687,1,0,0,0,685,686,5,304,0,0,686,688,3,32,16,0,687, - 685,1,0,0,0,687,688,1,0,0,0,688,689,1,0,0,0,689,690,5,28,0,0,690, - 691,3,18,9,0,691,1235,1,0,0,0,692,695,5,53,0,0,693,694,5,194,0,0, - 694,696,5,226,0,0,695,693,1,0,0,0,695,696,1,0,0,0,696,697,1,0,0, - 0,697,698,5,299,0,0,698,701,3,264,132,0,699,700,5,46,0,0,700,702, - 3,170,85,0,701,699,1,0,0,0,701,702,1,0,0,0,702,705,1,0,0,0,703,704, - 5,246,0,0,704,706,7,1,0,0,705,703,1,0,0,0,705,706,1,0,0,0,706,709, - 1,0,0,0,707,708,5,304,0,0,708,710,3,32,16,0,709,707,1,0,0,0,709, - 710,1,0,0,0,710,711,1,0,0,0,711,712,5,28,0,0,712,713,3,18,9,0,713, - 1235,1,0,0,0,714,715,5,222,0,0,715,716,5,167,0,0,716,717,5,299,0, - 0,717,1235,3,262,131,0,718,719,5,83,0,0,719,720,5,167,0,0,720,723, - 5,299,0,0,721,722,5,119,0,0,722,724,5,94,0,0,723,721,1,0,0,0,723, - 724,1,0,0,0,724,725,1,0,0,0,725,1235,3,262,131,0,726,727,5,23,0, - 0,727,728,5,167,0,0,728,731,5,299,0,0,729,730,5,119,0,0,730,732, - 5,94,0,0,731,729,1,0,0,0,731,732,1,0,0,0,732,733,1,0,0,0,733,734, - 3,262,131,0,734,735,5,223,0,0,735,736,5,269,0,0,736,737,3,264,132, - 0,737,1235,1,0,0,0,738,739,5,23,0,0,739,740,5,167,0,0,740,741,5, - 299,0,0,741,742,3,262,131,0,742,743,5,251,0,0,743,744,5,216,0,0, - 744,745,3,34,17,0,745,1235,1,0,0,0,746,747,5,83,0,0,747,750,5,299, - 0,0,748,749,5,119,0,0,749,751,5,94,0,0,750,748,1,0,0,0,750,751,1, - 0,0,0,751,752,1,0,0,0,752,1235,3,262,131,0,753,754,5,23,0,0,754, - 755,5,299,0,0,755,756,3,262,131,0,756,757,5,223,0,0,757,758,5,269, - 0,0,758,759,3,264,132,0,759,1235,1,0,0,0,760,761,5,23,0,0,761,762, - 5,299,0,0,762,763,3,262,131,0,763,764,5,251,0,0,764,765,5,31,0,0, - 765,766,3,292,146,0,766,1235,1,0,0,0,767,768,5,37,0,0,768,769,3, - 274,137,0,769,778,5,1,0,0,770,775,3,220,110,0,771,772,5,3,0,0,772, - 774,3,220,110,0,773,771,1,0,0,0,774,777,1,0,0,0,775,773,1,0,0,0, - 775,776,1,0,0,0,776,779,1,0,0,0,777,775,1,0,0,0,778,770,1,0,0,0, - 778,779,1,0,0,0,779,780,1,0,0,0,780,781,5,2,0,0,781,1235,1,0,0,0, - 782,785,5,53,0,0,783,784,5,194,0,0,784,786,5,226,0,0,785,783,1,0, - 0,0,785,786,1,0,0,0,786,787,1,0,0,0,787,1235,3,226,113,0,788,789, - 5,83,0,0,789,792,5,107,0,0,790,791,5,119,0,0,791,793,5,94,0,0,792, - 790,1,0,0,0,792,793,1,0,0,0,793,794,1,0,0,0,794,1235,3,230,115,0, - 795,796,5,53,0,0,796,797,5,235,0,0,797,801,3,298,149,0,798,799,5, - 304,0,0,799,800,5,20,0,0,800,802,3,290,145,0,801,798,1,0,0,0,801, - 802,1,0,0,0,802,805,1,0,0,0,803,804,5,122,0,0,804,806,3,270,135, - 0,805,803,1,0,0,0,805,806,1,0,0,0,806,1235,1,0,0,0,807,808,5,83, - 0,0,808,809,5,235,0,0,809,812,3,298,149,0,810,811,5,122,0,0,811, - 813,3,270,135,0,812,810,1,0,0,0,812,813,1,0,0,0,813,1235,1,0,0,0, - 814,815,5,110,0,0,815,820,3,296,148,0,816,817,5,3,0,0,817,819,3, - 296,148,0,818,816,1,0,0,0,819,822,1,0,0,0,820,818,1,0,0,0,820,821, - 1,0,0,0,821,823,1,0,0,0,822,820,1,0,0,0,823,824,5,269,0,0,824,829, - 3,292,146,0,825,826,5,3,0,0,826,828,3,292,146,0,827,825,1,0,0,0, - 828,831,1,0,0,0,829,827,1,0,0,0,829,830,1,0,0,0,830,835,1,0,0,0, - 831,829,1,0,0,0,832,833,5,304,0,0,833,834,5,20,0,0,834,836,5,193, - 0,0,835,832,1,0,0,0,835,836,1,0,0,0,836,840,1,0,0,0,837,838,5,111, - 0,0,838,839,5,36,0,0,839,841,3,290,145,0,840,837,1,0,0,0,840,841, - 1,0,0,0,841,844,1,0,0,0,842,843,5,122,0,0,843,845,3,270,135,0,844, - 842,1,0,0,0,844,845,1,0,0,0,845,1235,1,0,0,0,846,857,5,110,0,0,847, - 852,3,296,148,0,848,849,5,3,0,0,849,851,3,296,148,0,850,848,1,0, - 0,0,851,854,1,0,0,0,852,850,1,0,0,0,852,853,1,0,0,0,853,858,1,0, - 0,0,854,852,1,0,0,0,855,856,5,22,0,0,856,858,5,215,0,0,857,847,1, - 0,0,0,857,855,1,0,0,0,858,859,1,0,0,0,859,860,5,190,0,0,860,861, - 3,254,127,0,861,862,5,269,0,0,862,866,3,292,146,0,863,864,5,304, - 0,0,864,865,5,110,0,0,865,867,5,193,0,0,866,863,1,0,0,0,866,867, - 1,0,0,0,867,1235,1,0,0,0,868,872,5,233,0,0,869,870,5,20,0,0,870, - 871,5,193,0,0,871,873,5,103,0,0,872,869,1,0,0,0,872,873,1,0,0,0, - 873,874,1,0,0,0,874,879,3,296,148,0,875,876,5,3,0,0,876,878,3,296, - 148,0,877,875,1,0,0,0,878,881,1,0,0,0,879,877,1,0,0,0,879,880,1, - 0,0,0,880,882,1,0,0,0,881,879,1,0,0,0,882,883,5,105,0,0,883,888, - 3,292,146,0,884,885,5,3,0,0,885,887,3,292,146,0,886,884,1,0,0,0, - 887,890,1,0,0,0,888,886,1,0,0,0,888,889,1,0,0,0,889,894,1,0,0,0, - 890,888,1,0,0,0,891,892,5,111,0,0,892,893,5,36,0,0,893,895,3,290, - 145,0,894,891,1,0,0,0,894,895,1,0,0,0,895,898,1,0,0,0,896,897,5, - 122,0,0,897,899,3,270,135,0,898,896,1,0,0,0,898,899,1,0,0,0,899, - 1235,1,0,0,0,900,904,5,233,0,0,901,902,5,110,0,0,902,903,5,193,0, - 0,903,905,5,103,0,0,904,901,1,0,0,0,904,905,1,0,0,0,905,916,1,0, - 0,0,906,911,3,296,148,0,907,908,5,3,0,0,908,910,3,296,148,0,909, - 907,1,0,0,0,910,913,1,0,0,0,911,909,1,0,0,0,911,912,1,0,0,0,912, - 917,1,0,0,0,913,911,1,0,0,0,914,915,5,22,0,0,915,917,5,215,0,0,916, - 906,1,0,0,0,916,914,1,0,0,0,917,918,1,0,0,0,918,919,5,190,0,0,919, - 920,3,254,127,0,920,921,5,105,0,0,921,922,3,292,146,0,922,1235,1, - 0,0,0,923,934,5,74,0,0,924,929,3,250,125,0,925,926,5,3,0,0,926,928, - 3,250,125,0,927,925,1,0,0,0,928,931,1,0,0,0,929,927,1,0,0,0,929, - 930,1,0,0,0,930,935,1,0,0,0,931,929,1,0,0,0,932,933,5,22,0,0,933, - 935,5,215,0,0,934,924,1,0,0,0,934,932,1,0,0,0,935,936,1,0,0,0,936, - 937,5,190,0,0,937,938,3,254,127,0,938,939,5,269,0,0,939,940,3,292, - 146,0,940,1235,1,0,0,0,941,942,5,251,0,0,942,946,5,235,0,0,943,947, - 5,22,0,0,944,947,5,180,0,0,945,947,3,298,149,0,946,943,1,0,0,0,946, - 944,1,0,0,0,946,945,1,0,0,0,947,950,1,0,0,0,948,949,5,122,0,0,949, - 951,3,270,135,0,950,948,1,0,0,0,950,951,1,0,0,0,951,1235,1,0,0,0, - 952,953,5,253,0,0,953,956,5,112,0,0,954,955,5,190,0,0,955,957,3, - 254,127,0,956,954,1,0,0,0,956,957,1,0,0,0,957,1235,1,0,0,0,958,970, - 5,95,0,0,959,960,5,1,0,0,960,965,3,214,107,0,961,962,5,3,0,0,962, - 964,3,214,107,0,963,961,1,0,0,0,964,967,1,0,0,0,965,963,1,0,0,0, - 965,966,1,0,0,0,966,968,1,0,0,0,967,965,1,0,0,0,968,969,5,2,0,0, - 969,971,1,0,0,0,970,959,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0, - 972,1235,3,16,8,0,973,974,5,95,0,0,974,976,5,24,0,0,975,977,5,297, - 0,0,976,975,1,0,0,0,976,977,1,0,0,0,977,978,1,0,0,0,978,1235,3,16, - 8,0,979,980,5,253,0,0,980,981,5,53,0,0,981,982,5,260,0,0,982,1235, - 3,258,129,0,983,984,5,253,0,0,984,985,5,53,0,0,985,986,5,243,0,0, - 986,1235,3,266,133,0,987,988,5,253,0,0,988,989,5,53,0,0,989,990, - 5,299,0,0,990,1235,3,262,131,0,991,992,5,253,0,0,992,993,5,53,0, - 0,993,994,5,167,0,0,994,995,5,299,0,0,995,1235,3,262,131,0,996,997, - 5,253,0,0,997,998,5,53,0,0,998,999,5,107,0,0,999,1235,3,274,137, - 0,1000,1001,5,253,0,0,1001,1004,5,261,0,0,1002,1003,7,2,0,0,1003, - 1005,3,266,133,0,1004,1002,1,0,0,0,1004,1005,1,0,0,0,1005,1012,1, - 0,0,0,1006,1007,5,154,0,0,1007,1010,3,170,85,0,1008,1009,5,90,0, - 0,1009,1011,3,170,85,0,1010,1008,1,0,0,0,1010,1011,1,0,0,0,1011, - 1013,1,0,0,0,1012,1006,1,0,0,0,1012,1013,1,0,0,0,1013,1235,1,0,0, - 0,1014,1015,5,253,0,0,1015,1018,5,244,0,0,1016,1017,7,2,0,0,1017, - 1019,3,270,135,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1026,1, - 0,0,0,1020,1021,5,154,0,0,1021,1024,3,170,85,0,1022,1023,5,90,0, - 0,1023,1025,3,170,85,0,1024,1022,1,0,0,0,1024,1025,1,0,0,0,1025, - 1027,1,0,0,0,1026,1020,1,0,0,0,1026,1027,1,0,0,0,1027,1235,1,0,0, - 0,1028,1029,5,253,0,0,1029,1036,5,43,0,0,1030,1031,5,154,0,0,1031, - 1034,3,170,85,0,1032,1033,5,90,0,0,1033,1035,3,170,85,0,1034,1032, - 1,0,0,0,1034,1035,1,0,0,0,1035,1037,1,0,0,0,1036,1030,1,0,0,0,1036, - 1037,1,0,0,0,1037,1235,1,0,0,0,1038,1039,5,253,0,0,1039,1040,5,45, - 0,0,1040,1041,7,2,0,0,1041,1048,3,256,128,0,1042,1043,5,154,0,0, - 1043,1046,3,170,85,0,1044,1045,5,90,0,0,1045,1047,3,170,85,0,1046, - 1044,1,0,0,0,1046,1047,1,0,0,0,1047,1049,1,0,0,0,1048,1042,1,0,0, - 0,1048,1049,1,0,0,0,1049,1235,1,0,0,0,1050,1051,5,253,0,0,1051,1052, - 5,256,0,0,1052,1053,5,103,0,0,1053,1235,3,256,128,0,1054,1055,5, - 253,0,0,1055,1056,5,256,0,0,1056,1057,5,103,0,0,1057,1058,5,1,0, - 0,1058,1059,3,18,9,0,1059,1060,5,2,0,0,1060,1235,1,0,0,0,1061,1063, - 5,253,0,0,1062,1064,5,56,0,0,1063,1062,1,0,0,0,1063,1064,1,0,0,0, - 1064,1065,1,0,0,0,1065,1068,5,236,0,0,1066,1067,7,2,0,0,1067,1069, - 3,270,135,0,1068,1066,1,0,0,0,1068,1069,1,0,0,0,1069,1235,1,0,0, - 0,1070,1071,5,253,0,0,1071,1072,5,235,0,0,1072,1075,5,112,0,0,1073, - 1074,7,2,0,0,1074,1076,3,270,135,0,1075,1073,1,0,0,0,1075,1076,1, - 0,0,0,1076,1235,1,0,0,0,1077,1078,5,76,0,0,1078,1235,3,256,128,0, - 1079,1080,5,75,0,0,1080,1235,3,256,128,0,1081,1082,5,253,0,0,1082, - 1085,5,108,0,0,1083,1084,7,2,0,0,1084,1086,3,266,133,0,1085,1083, - 1,0,0,0,1085,1086,1,0,0,0,1086,1093,1,0,0,0,1087,1088,5,154,0,0, - 1088,1091,3,170,85,0,1089,1090,5,90,0,0,1090,1092,3,170,85,0,1091, - 1089,1,0,0,0,1091,1092,1,0,0,0,1092,1094,1,0,0,0,1093,1087,1,0,0, - 0,1093,1094,1,0,0,0,1094,1235,1,0,0,0,1095,1096,5,253,0,0,1096,1103, - 5,250,0,0,1097,1098,5,154,0,0,1098,1101,3,170,85,0,1099,1100,5,90, - 0,0,1100,1102,3,170,85,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102, - 1104,1,0,0,0,1103,1097,1,0,0,0,1103,1104,1,0,0,0,1104,1235,1,0,0, - 0,1105,1106,5,251,0,0,1106,1107,5,250,0,0,1107,1108,5,31,0,0,1108, - 1235,3,302,151,0,1109,1110,5,227,0,0,1110,1111,5,250,0,0,1111,1235, - 5,31,0,0,1112,1113,5,251,0,0,1113,1114,5,250,0,0,1114,1115,3,284, - 142,0,1115,1116,5,312,0,0,1116,1117,3,138,69,0,1117,1235,1,0,0,0, - 1118,1119,5,227,0,0,1119,1120,5,250,0,0,1120,1235,3,284,142,0,1121, - 1122,5,255,0,0,1122,1131,5,271,0,0,1123,1128,3,216,108,0,1124,1125, - 5,3,0,0,1125,1127,3,216,108,0,1126,1124,1,0,0,0,1127,1130,1,0,0, - 0,1128,1126,1,0,0,0,1128,1129,1,0,0,0,1129,1132,1,0,0,0,1130,1128, - 1,0,0,0,1131,1123,1,0,0,0,1131,1132,1,0,0,0,1132,1235,1,0,0,0,1133, - 1135,5,47,0,0,1134,1136,5,307,0,0,1135,1134,1,0,0,0,1135,1136,1, - 0,0,0,1136,1235,1,0,0,0,1137,1139,5,237,0,0,1138,1140,5,307,0,0, - 1139,1138,1,0,0,0,1139,1140,1,0,0,0,1140,1235,1,0,0,0,1141,1142, - 5,214,0,0,1142,1143,3,298,149,0,1143,1144,5,105,0,0,1144,1145,3, - 16,8,0,1145,1235,1,0,0,0,1146,1147,5,68,0,0,1147,1148,5,214,0,0, - 1148,1235,3,298,149,0,1149,1150,5,93,0,0,1150,1160,3,298,149,0,1151, - 1152,5,290,0,0,1152,1157,3,138,69,0,1153,1154,5,3,0,0,1154,1156, - 3,138,69,0,1155,1153,1,0,0,0,1156,1159,1,0,0,0,1157,1155,1,0,0,0, - 1157,1158,1,0,0,0,1158,1161,1,0,0,0,1159,1157,1,0,0,0,1160,1151, - 1,0,0,0,1160,1161,1,0,0,0,1161,1235,1,0,0,0,1162,1163,5,93,0,0,1163, - 1164,5,121,0,0,1164,1174,3,170,85,0,1165,1166,5,290,0,0,1166,1171, - 3,138,69,0,1167,1168,5,3,0,0,1168,1170,3,138,69,0,1169,1167,1,0, - 0,0,1170,1173,1,0,0,0,1171,1169,1,0,0,0,1171,1172,1,0,0,0,1172,1175, - 1,0,0,0,1173,1171,1,0,0,0,1174,1165,1,0,0,0,1174,1175,1,0,0,0,1175, - 1235,1,0,0,0,1176,1177,5,76,0,0,1177,1178,5,126,0,0,1178,1235,3, - 298,149,0,1179,1180,5,76,0,0,1180,1181,5,198,0,0,1181,1235,3,298, - 149,0,1182,1183,5,251,0,0,1183,1184,5,205,0,0,1184,1235,3,224,112, - 0,1185,1186,5,251,0,0,1186,1187,5,267,0,0,1187,1190,5,311,0,0,1188, - 1191,5,157,0,0,1189,1191,3,138,69,0,1190,1188,1,0,0,0,1190,1189, - 1,0,0,0,1191,1235,1,0,0,0,1192,1193,5,287,0,0,1193,1194,3,258,129, - 0,1194,1195,5,251,0,0,1195,1200,3,212,106,0,1196,1197,5,3,0,0,1197, - 1199,3,212,106,0,1198,1196,1,0,0,0,1199,1202,1,0,0,0,1200,1198,1, - 0,0,0,1200,1201,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1203, - 1205,3,54,27,0,1204,1203,1,0,0,0,1204,1205,1,0,0,0,1205,1235,1,0, - 0,0,1206,1207,5,169,0,0,1207,1208,5,130,0,0,1208,1213,3,258,129, - 0,1209,1211,5,28,0,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212, - 1,0,0,0,1212,1214,3,298,149,0,1213,1210,1,0,0,0,1213,1214,1,0,0, - 0,1214,1215,1,0,0,0,1215,1216,5,290,0,0,1216,1217,3,74,37,0,1217, - 1218,5,190,0,0,1218,1220,3,138,69,0,1219,1221,3,196,98,0,1220,1219, - 1,0,0,0,1221,1222,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223, - 1235,1,0,0,0,1224,1225,5,253,0,0,1225,1226,5,46,0,0,1226,1227,5, - 190,0,0,1227,1228,5,260,0,0,1228,1235,3,258,129,0,1229,1230,5,253, - 0,0,1230,1231,5,46,0,0,1231,1232,5,190,0,0,1232,1233,5,44,0,0,1233, - 1235,3,278,139,0,1234,339,1,0,0,0,1234,340,1,0,0,0,1234,342,1,0, - 0,0,1234,364,1,0,0,0,1234,374,1,0,0,0,1234,390,1,0,0,0,1234,400, - 1,0,0,0,1234,407,1,0,0,0,1234,414,1,0,0,0,1234,452,1,0,0,0,1234, - 482,1,0,0,0,1234,489,1,0,0,0,1234,497,1,0,0,0,1234,503,1,0,0,0,1234, - 506,1,0,0,0,1234,515,1,0,0,0,1234,524,1,0,0,0,1234,533,1,0,0,0,1234, - 544,1,0,0,0,1234,560,1,0,0,0,1234,577,1,0,0,0,1234,592,1,0,0,0,1234, - 607,1,0,0,0,1234,621,1,0,0,0,1234,628,1,0,0,0,1234,635,1,0,0,0,1234, - 657,1,0,0,0,1234,663,1,0,0,0,1234,692,1,0,0,0,1234,714,1,0,0,0,1234, - 718,1,0,0,0,1234,726,1,0,0,0,1234,738,1,0,0,0,1234,746,1,0,0,0,1234, - 753,1,0,0,0,1234,760,1,0,0,0,1234,767,1,0,0,0,1234,782,1,0,0,0,1234, - 788,1,0,0,0,1234,795,1,0,0,0,1234,807,1,0,0,0,1234,814,1,0,0,0,1234, - 846,1,0,0,0,1234,868,1,0,0,0,1234,900,1,0,0,0,1234,923,1,0,0,0,1234, - 941,1,0,0,0,1234,952,1,0,0,0,1234,958,1,0,0,0,1234,973,1,0,0,0,1234, - 979,1,0,0,0,1234,983,1,0,0,0,1234,987,1,0,0,0,1234,991,1,0,0,0,1234, - 996,1,0,0,0,1234,1000,1,0,0,0,1234,1014,1,0,0,0,1234,1028,1,0,0, - 0,1234,1038,1,0,0,0,1234,1050,1,0,0,0,1234,1054,1,0,0,0,1234,1061, - 1,0,0,0,1234,1070,1,0,0,0,1234,1077,1,0,0,0,1234,1079,1,0,0,0,1234, - 1081,1,0,0,0,1234,1095,1,0,0,0,1234,1105,1,0,0,0,1234,1109,1,0,0, - 0,1234,1112,1,0,0,0,1234,1118,1,0,0,0,1234,1121,1,0,0,0,1234,1133, - 1,0,0,0,1234,1137,1,0,0,0,1234,1141,1,0,0,0,1234,1146,1,0,0,0,1234, - 1149,1,0,0,0,1234,1162,1,0,0,0,1234,1176,1,0,0,0,1234,1179,1,0,0, - 0,1234,1182,1,0,0,0,1234,1185,1,0,0,0,1234,1192,1,0,0,0,1234,1206, - 1,0,0,0,1234,1224,1,0,0,0,1234,1229,1,0,0,0,1235,17,1,0,0,0,1236, - 1238,3,20,10,0,1237,1236,1,0,0,0,1237,1238,1,0,0,0,1238,1239,1,0, - 0,0,1239,1240,3,22,11,0,1240,19,1,0,0,0,1241,1242,5,304,0,0,1242, - 1247,3,226,113,0,1243,1244,5,3,0,0,1244,1246,3,226,113,0,1245,1243, - 1,0,0,0,1246,1249,1,0,0,0,1247,1245,1,0,0,0,1247,1248,1,0,0,0,1248, - 21,1,0,0,0,1249,1247,1,0,0,0,1250,1252,3,24,12,0,1251,1250,1,0,0, - 0,1251,1252,1,0,0,0,1252,1253,1,0,0,0,1253,1254,3,40,20,0,1254,23, - 1,0,0,0,1255,1257,5,304,0,0,1256,1258,5,221,0,0,1257,1256,1,0,0, - 0,1257,1258,1,0,0,0,1258,1259,1,0,0,0,1259,1264,3,68,34,0,1260,1261, - 5,3,0,0,1261,1263,3,68,34,0,1262,1260,1,0,0,0,1263,1266,1,0,0,0, - 1264,1262,1,0,0,0,1264,1265,1,0,0,0,1265,25,1,0,0,0,1266,1264,1, - 0,0,0,1267,1270,3,28,14,0,1268,1270,3,30,15,0,1269,1267,1,0,0,0, - 1269,1268,1,0,0,0,1270,27,1,0,0,0,1271,1272,3,282,141,0,1272,1275, - 3,186,93,0,1273,1274,5,182,0,0,1274,1276,5,183,0,0,1275,1273,1,0, - 0,0,1275,1276,1,0,0,0,1276,1279,1,0,0,0,1277,1278,5,46,0,0,1278, - 1280,3,170,85,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,1283,1, - 0,0,0,1281,1282,5,304,0,0,1282,1284,3,32,16,0,1283,1281,1,0,0,0, - 1283,1284,1,0,0,0,1284,29,1,0,0,0,1285,1286,5,154,0,0,1286,1289, - 3,258,129,0,1287,1288,7,3,0,0,1288,1290,5,216,0,0,1289,1287,1,0, - 0,0,1289,1290,1,0,0,0,1290,31,1,0,0,0,1291,1292,5,1,0,0,1292,1293, - 3,34,17,0,1293,1294,5,2,0,0,1294,33,1,0,0,0,1295,1300,3,36,18,0, - 1296,1297,5,3,0,0,1297,1299,3,36,18,0,1298,1296,1,0,0,0,1299,1302, - 1,0,0,0,1300,1298,1,0,0,0,1300,1301,1,0,0,0,1301,35,1,0,0,0,1302, - 1300,1,0,0,0,1303,1304,3,298,149,0,1304,1305,5,312,0,0,1305,1306, - 3,38,19,0,1306,37,1,0,0,0,1307,1310,5,70,0,0,1308,1310,3,138,69, - 0,1309,1307,1,0,0,0,1309,1308,1,0,0,0,1310,39,1,0,0,0,1311,1322, - 3,46,23,0,1312,1313,5,195,0,0,1313,1314,5,36,0,0,1314,1319,3,50, - 25,0,1315,1316,5,3,0,0,1316,1318,3,50,25,0,1317,1315,1,0,0,0,1318, - 1321,1,0,0,0,1319,1317,1,0,0,0,1319,1320,1,0,0,0,1320,1323,1,0,0, - 0,1321,1319,1,0,0,0,1322,1312,1,0,0,0,1322,1323,1,0,0,0,1323,1329, - 1,0,0,0,1324,1325,5,188,0,0,1325,1327,3,44,22,0,1326,1328,7,4,0, - 0,1327,1326,1,0,0,0,1327,1328,1,0,0,0,1328,1330,1,0,0,0,1329,1324, - 1,0,0,0,1329,1330,1,0,0,0,1330,1344,1,0,0,0,1331,1332,5,155,0,0, - 1332,1345,3,42,21,0,1333,1334,5,98,0,0,1334,1336,7,5,0,0,1335,1337, - 3,44,22,0,1336,1335,1,0,0,0,1336,1337,1,0,0,0,1337,1338,1,0,0,0, - 1338,1342,7,4,0,0,1339,1343,5,192,0,0,1340,1341,5,304,0,0,1341,1343, - 5,266,0,0,1342,1339,1,0,0,0,1342,1340,1,0,0,0,1343,1345,1,0,0,0, - 1344,1331,1,0,0,0,1344,1333,1,0,0,0,1344,1345,1,0,0,0,1345,41,1, - 0,0,0,1346,1349,5,22,0,0,1347,1349,3,44,22,0,1348,1346,1,0,0,0,1348, - 1347,1,0,0,0,1349,43,1,0,0,0,1350,1351,7,6,0,0,1351,45,1,0,0,0,1352, - 1353,6,23,-1,0,1353,1354,3,48,24,0,1354,1369,1,0,0,0,1355,1356,10, - 2,0,0,1356,1358,5,128,0,0,1357,1359,3,70,35,0,1358,1357,1,0,0,0, - 1358,1359,1,0,0,0,1359,1360,1,0,0,0,1360,1368,3,46,23,3,1361,1362, - 10,1,0,0,1362,1364,7,7,0,0,1363,1365,3,70,35,0,1364,1363,1,0,0,0, - 1364,1365,1,0,0,0,1365,1366,1,0,0,0,1366,1368,3,46,23,2,1367,1355, - 1,0,0,0,1367,1361,1,0,0,0,1368,1371,1,0,0,0,1369,1367,1,0,0,0,1369, - 1370,1,0,0,0,1370,47,1,0,0,0,1371,1369,1,0,0,0,1372,1389,3,52,26, - 0,1373,1374,5,260,0,0,1374,1389,3,258,129,0,1375,1376,5,296,0,0, - 1376,1381,3,138,69,0,1377,1378,5,3,0,0,1378,1380,3,138,69,0,1379, - 1377,1,0,0,0,1380,1383,1,0,0,0,1381,1379,1,0,0,0,1381,1382,1,0,0, - 0,1382,1389,1,0,0,0,1383,1381,1,0,0,0,1384,1385,5,1,0,0,1385,1386, - 3,40,20,0,1386,1387,5,2,0,0,1387,1389,1,0,0,0,1388,1372,1,0,0,0, - 1388,1373,1,0,0,0,1388,1375,1,0,0,0,1388,1384,1,0,0,0,1389,49,1, - 0,0,0,1390,1393,3,278,139,0,1391,1393,3,138,69,0,1392,1390,1,0,0, - 0,1392,1391,1,0,0,0,1393,1395,1,0,0,0,1394,1396,7,8,0,0,1395,1394, - 1,0,0,0,1395,1396,1,0,0,0,1396,1399,1,0,0,0,1397,1398,5,185,0,0, - 1398,1400,7,9,0,0,1399,1397,1,0,0,0,1399,1400,1,0,0,0,1400,51,1, - 0,0,0,1401,1403,5,248,0,0,1402,1404,3,70,35,0,1403,1402,1,0,0,0, - 1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1410,3,72,36,0,1406,1407, - 5,3,0,0,1407,1409,3,72,36,0,1408,1406,1,0,0,0,1409,1412,1,0,0,0, - 1410,1408,1,0,0,0,1410,1411,1,0,0,0,1411,1422,1,0,0,0,1412,1410, - 1,0,0,0,1413,1414,5,105,0,0,1414,1419,3,74,37,0,1415,1416,5,3,0, - 0,1416,1418,3,74,37,0,1417,1415,1,0,0,0,1418,1421,1,0,0,0,1419,1417, - 1,0,0,0,1419,1420,1,0,0,0,1420,1423,1,0,0,0,1421,1419,1,0,0,0,1422, - 1413,1,0,0,0,1422,1423,1,0,0,0,1423,1425,1,0,0,0,1424,1426,3,54, - 27,0,1425,1424,1,0,0,0,1425,1426,1,0,0,0,1426,1430,1,0,0,0,1427, - 1428,5,114,0,0,1428,1429,5,36,0,0,1429,1431,3,56,28,0,1430,1427, - 1,0,0,0,1430,1431,1,0,0,0,1431,1434,1,0,0,0,1432,1433,5,117,0,0, - 1433,1435,3,140,70,0,1434,1432,1,0,0,0,1434,1435,1,0,0,0,1435,1445, - 1,0,0,0,1436,1437,5,303,0,0,1437,1442,3,64,32,0,1438,1439,5,3,0, - 0,1439,1441,3,64,32,0,1440,1438,1,0,0,0,1441,1444,1,0,0,0,1442,1440, - 1,0,0,0,1442,1443,1,0,0,0,1443,1446,1,0,0,0,1444,1442,1,0,0,0,1445, - 1436,1,0,0,0,1445,1446,1,0,0,0,1446,53,1,0,0,0,1447,1448,5,301,0, - 0,1448,1449,3,140,70,0,1449,55,1,0,0,0,1450,1452,3,70,35,0,1451, - 1450,1,0,0,0,1451,1452,1,0,0,0,1452,1453,1,0,0,0,1453,1458,3,58, - 29,0,1454,1455,5,3,0,0,1455,1457,3,58,29,0,1456,1454,1,0,0,0,1457, - 1460,1,0,0,0,1458,1456,1,0,0,0,1458,1459,1,0,0,0,1459,57,1,0,0,0, - 1460,1458,1,0,0,0,1461,1502,3,60,30,0,1462,1463,5,238,0,0,1463,1472, - 5,1,0,0,1464,1469,3,60,30,0,1465,1466,5,3,0,0,1466,1468,3,60,30, - 0,1467,1465,1,0,0,0,1468,1471,1,0,0,0,1469,1467,1,0,0,0,1469,1470, - 1,0,0,0,1470,1473,1,0,0,0,1471,1469,1,0,0,0,1472,1464,1,0,0,0,1472, - 1473,1,0,0,0,1473,1474,1,0,0,0,1474,1502,5,2,0,0,1475,1476,5,55, - 0,0,1476,1485,5,1,0,0,1477,1482,3,60,30,0,1478,1479,5,3,0,0,1479, - 1481,3,60,30,0,1480,1478,1,0,0,0,1481,1484,1,0,0,0,1482,1480,1,0, - 0,0,1482,1483,1,0,0,0,1483,1486,1,0,0,0,1484,1482,1,0,0,0,1485,1477, - 1,0,0,0,1485,1486,1,0,0,0,1486,1487,1,0,0,0,1487,1502,5,2,0,0,1488, - 1489,5,115,0,0,1489,1490,5,252,0,0,1490,1491,5,1,0,0,1491,1496,3, - 60,30,0,1492,1493,5,3,0,0,1493,1495,3,60,30,0,1494,1492,1,0,0,0, - 1495,1498,1,0,0,0,1496,1494,1,0,0,0,1496,1497,1,0,0,0,1497,1499, - 1,0,0,0,1498,1496,1,0,0,0,1499,1500,5,2,0,0,1500,1502,1,0,0,0,1501, - 1461,1,0,0,0,1501,1462,1,0,0,0,1501,1475,1,0,0,0,1501,1488,1,0,0, - 0,1502,59,1,0,0,0,1503,1512,5,1,0,0,1504,1509,3,62,31,0,1505,1506, - 5,3,0,0,1506,1508,3,62,31,0,1507,1505,1,0,0,0,1508,1511,1,0,0,0, - 1509,1507,1,0,0,0,1509,1510,1,0,0,0,1510,1513,1,0,0,0,1511,1509, - 1,0,0,0,1512,1504,1,0,0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514, - 1517,5,2,0,0,1515,1517,3,62,31,0,1516,1503,1,0,0,0,1516,1515,1,0, - 0,0,1517,61,1,0,0,0,1518,1521,3,278,139,0,1519,1521,3,138,69,0,1520, - 1518,1,0,0,0,1520,1519,1,0,0,0,1521,63,1,0,0,0,1522,1523,3,298,149, - 0,1523,1524,5,28,0,0,1524,1525,5,1,0,0,1525,1526,3,66,33,0,1526, - 1527,5,2,0,0,1527,65,1,0,0,0,1528,1530,3,298,149,0,1529,1528,1,0, - 0,0,1529,1530,1,0,0,0,1530,1541,1,0,0,0,1531,1532,5,201,0,0,1532, - 1533,5,36,0,0,1533,1538,3,138,69,0,1534,1535,5,3,0,0,1535,1537,3, - 138,69,0,1536,1534,1,0,0,0,1537,1540,1,0,0,0,1538,1536,1,0,0,0,1538, - 1539,1,0,0,0,1539,1542,1,0,0,0,1540,1538,1,0,0,0,1541,1531,1,0,0, - 0,1541,1542,1,0,0,0,1542,1553,1,0,0,0,1543,1544,5,195,0,0,1544,1545, - 5,36,0,0,1545,1550,3,50,25,0,1546,1547,5,3,0,0,1547,1549,3,50,25, - 0,1548,1546,1,0,0,0,1549,1552,1,0,0,0,1550,1548,1,0,0,0,1550,1551, - 1,0,0,0,1551,1554,1,0,0,0,1552,1550,1,0,0,0,1553,1543,1,0,0,0,1553, - 1554,1,0,0,0,1554,1556,1,0,0,0,1555,1557,3,200,100,0,1556,1555,1, - 0,0,0,1556,1557,1,0,0,0,1557,67,1,0,0,0,1558,1560,3,298,149,0,1559, - 1561,3,110,55,0,1560,1559,1,0,0,0,1560,1561,1,0,0,0,1561,1562,1, - 0,0,0,1562,1563,5,28,0,0,1563,1564,5,1,0,0,1564,1565,3,22,11,0,1565, - 1566,5,2,0,0,1566,69,1,0,0,0,1567,1568,7,10,0,0,1568,71,1,0,0,0, - 1569,1572,3,278,139,0,1570,1572,3,138,69,0,1571,1569,1,0,0,0,1571, - 1570,1,0,0,0,1572,1577,1,0,0,0,1573,1575,5,28,0,0,1574,1573,1,0, - 0,0,1574,1575,1,0,0,0,1575,1576,1,0,0,0,1576,1578,3,298,149,0,1577, - 1574,1,0,0,0,1577,1578,1,0,0,0,1578,1588,1,0,0,0,1579,1580,3,146, - 73,0,1580,1581,5,4,0,0,1581,1584,5,320,0,0,1582,1583,5,28,0,0,1583, - 1585,3,110,55,0,1584,1582,1,0,0,0,1584,1585,1,0,0,0,1585,1588,1, - 0,0,0,1586,1588,5,320,0,0,1587,1571,1,0,0,0,1587,1579,1,0,0,0,1587, - 1586,1,0,0,0,1588,73,1,0,0,0,1589,1590,6,37,-1,0,1590,1591,3,80, - 40,0,1591,1610,1,0,0,0,1592,1606,10,2,0,0,1593,1594,5,54,0,0,1594, - 1595,5,136,0,0,1595,1607,3,80,40,0,1596,1597,3,76,38,0,1597,1598, - 5,136,0,0,1598,1599,3,74,37,0,1599,1600,3,78,39,0,1600,1607,1,0, - 0,0,1601,1602,5,172,0,0,1602,1603,3,76,38,0,1603,1604,5,136,0,0, - 1604,1605,3,80,40,0,1605,1607,1,0,0,0,1606,1593,1,0,0,0,1606,1596, - 1,0,0,0,1606,1601,1,0,0,0,1607,1609,1,0,0,0,1608,1592,1,0,0,0,1609, - 1612,1,0,0,0,1610,1608,1,0,0,0,1610,1611,1,0,0,0,1611,75,1,0,0,0, - 1612,1610,1,0,0,0,1613,1615,5,125,0,0,1614,1613,1,0,0,0,1614,1615, - 1,0,0,0,1615,1629,1,0,0,0,1616,1618,5,152,0,0,1617,1619,5,197,0, - 0,1618,1617,1,0,0,0,1618,1619,1,0,0,0,1619,1629,1,0,0,0,1620,1622, - 5,234,0,0,1621,1623,5,197,0,0,1622,1621,1,0,0,0,1622,1623,1,0,0, - 0,1623,1629,1,0,0,0,1624,1626,5,106,0,0,1625,1627,5,197,0,0,1626, - 1625,1,0,0,0,1626,1627,1,0,0,0,1627,1629,1,0,0,0,1628,1614,1,0,0, - 0,1628,1616,1,0,0,0,1628,1620,1,0,0,0,1628,1624,1,0,0,0,1629,77, - 1,0,0,0,1630,1631,5,190,0,0,1631,1645,3,140,70,0,1632,1633,5,290, - 0,0,1633,1634,5,1,0,0,1634,1639,3,298,149,0,1635,1636,5,3,0,0,1636, - 1638,3,298,149,0,1637,1635,1,0,0,0,1638,1641,1,0,0,0,1639,1637,1, - 0,0,0,1639,1640,1,0,0,0,1640,1642,1,0,0,0,1641,1639,1,0,0,0,1642, - 1643,5,2,0,0,1643,1645,1,0,0,0,1644,1630,1,0,0,0,1644,1632,1,0,0, - 0,1645,79,1,0,0,0,1646,1653,3,90,45,0,1647,1648,5,262,0,0,1648,1649, - 3,82,41,0,1649,1650,5,1,0,0,1650,1651,3,138,69,0,1651,1652,5,2,0, - 0,1652,1654,1,0,0,0,1653,1647,1,0,0,0,1653,1654,1,0,0,0,1654,81, - 1,0,0,0,1655,1656,7,11,0,0,1656,83,1,0,0,0,1657,1658,7,12,0,0,1658, - 85,1,0,0,0,1659,1666,5,89,0,0,1660,1662,5,274,0,0,1661,1663,3,170, - 85,0,1662,1661,1,0,0,0,1662,1663,1,0,0,0,1663,1664,1,0,0,0,1664, - 1666,3,88,44,0,1665,1659,1,0,0,0,1665,1660,1,0,0,0,1666,87,1,0,0, - 0,1667,1668,5,304,0,0,1668,1672,5,51,0,0,1669,1670,5,306,0,0,1670, - 1672,5,51,0,0,1671,1667,1,0,0,0,1671,1669,1,0,0,0,1672,89,1,0,0, - 0,1673,1756,3,104,52,0,1674,1675,5,166,0,0,1675,1686,5,1,0,0,1676, - 1677,5,201,0,0,1677,1678,5,36,0,0,1678,1683,3,138,69,0,1679,1680, - 5,3,0,0,1680,1682,3,138,69,0,1681,1679,1,0,0,0,1682,1685,1,0,0,0, - 1683,1681,1,0,0,0,1683,1684,1,0,0,0,1684,1687,1,0,0,0,1685,1683, - 1,0,0,0,1686,1676,1,0,0,0,1686,1687,1,0,0,0,1687,1698,1,0,0,0,1688, - 1689,5,195,0,0,1689,1690,5,36,0,0,1690,1695,3,50,25,0,1691,1692, - 5,3,0,0,1692,1694,3,50,25,0,1693,1691,1,0,0,0,1694,1697,1,0,0,0, - 1695,1693,1,0,0,0,1695,1696,1,0,0,0,1696,1699,1,0,0,0,1697,1695, - 1,0,0,0,1698,1688,1,0,0,0,1698,1699,1,0,0,0,1699,1709,1,0,0,0,1700, - 1701,5,168,0,0,1701,1706,3,92,46,0,1702,1703,5,3,0,0,1703,1705,3, - 92,46,0,1704,1702,1,0,0,0,1705,1708,1,0,0,0,1706,1704,1,0,0,0,1706, - 1707,1,0,0,0,1707,1710,1,0,0,0,1708,1706,1,0,0,0,1709,1700,1,0,0, - 0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713,3,94,47,0,1712,1711, - 1,0,0,0,1712,1713,1,0,0,0,1713,1717,1,0,0,0,1714,1715,5,21,0,0,1715, - 1716,5,163,0,0,1716,1718,3,98,49,0,1717,1714,1,0,0,0,1717,1718,1, - 0,0,0,1718,1720,1,0,0,0,1719,1721,7,13,0,0,1720,1719,1,0,0,0,1720, - 1721,1,0,0,0,1721,1722,1,0,0,0,1722,1723,5,206,0,0,1723,1724,5,1, - 0,0,1724,1725,3,206,103,0,1725,1735,5,2,0,0,1726,1727,5,257,0,0, - 1727,1732,3,100,50,0,1728,1729,5,3,0,0,1729,1731,3,100,50,0,1730, - 1728,1,0,0,0,1731,1734,1,0,0,0,1732,1730,1,0,0,0,1732,1733,1,0,0, - 0,1733,1736,1,0,0,0,1734,1732,1,0,0,0,1735,1726,1,0,0,0,1735,1736, - 1,0,0,0,1736,1737,1,0,0,0,1737,1738,5,71,0,0,1738,1743,3,102,51, - 0,1739,1740,5,3,0,0,1740,1742,3,102,51,0,1741,1739,1,0,0,0,1742, - 1745,1,0,0,0,1743,1741,1,0,0,0,1743,1744,1,0,0,0,1744,1746,1,0,0, - 0,1745,1743,1,0,0,0,1746,1754,5,2,0,0,1747,1749,5,28,0,0,1748,1747, - 1,0,0,0,1748,1749,1,0,0,0,1749,1750,1,0,0,0,1750,1752,3,298,149, - 0,1751,1753,3,110,55,0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753, - 1755,1,0,0,0,1754,1748,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0, - 0,1756,1674,1,0,0,0,1756,1757,1,0,0,0,1757,91,1,0,0,0,1758,1759, - 3,138,69,0,1759,1760,5,28,0,0,1760,1761,3,298,149,0,1761,93,1,0, - 0,0,1762,1763,5,191,0,0,1763,1764,5,239,0,0,1764,1765,5,207,0,0, - 1765,1774,5,163,0,0,1766,1767,5,22,0,0,1767,1768,5,240,0,0,1768, - 1769,5,207,0,0,1769,1771,5,163,0,0,1770,1772,3,96,48,0,1771,1770, - 1,0,0,0,1771,1772,1,0,0,0,1772,1774,1,0,0,0,1773,1762,1,0,0,0,1773, - 1766,1,0,0,0,1774,95,1,0,0,0,1775,1776,5,253,0,0,1776,1777,5,85, - 0,0,1777,1785,5,165,0,0,1778,1779,5,189,0,0,1779,1780,5,85,0,0,1780, - 1785,5,165,0,0,1781,1782,5,304,0,0,1782,1783,5,284,0,0,1783,1785, - 5,240,0,0,1784,1775,1,0,0,0,1784,1778,1,0,0,0,1784,1781,1,0,0,0, - 1785,97,1,0,0,0,1786,1787,5,5,0,0,1787,1788,5,269,0,0,1788,1789, - 5,174,0,0,1789,1806,5,239,0,0,1790,1791,5,5,0,0,1791,1792,5,204, - 0,0,1792,1793,5,148,0,0,1793,1806,5,239,0,0,1794,1795,5,5,0,0,1795, - 1796,5,269,0,0,1796,1797,5,101,0,0,1797,1806,3,298,149,0,1798,1799, - 5,5,0,0,1799,1800,5,269,0,0,1800,1801,5,148,0,0,1801,1806,3,298, - 149,0,1802,1803,5,5,0,0,1803,1804,5,269,0,0,1804,1806,3,298,149, - 0,1805,1786,1,0,0,0,1805,1790,1,0,0,0,1805,1794,1,0,0,0,1805,1798, - 1,0,0,0,1805,1802,1,0,0,0,1806,99,1,0,0,0,1807,1808,3,298,149,0, - 1808,1809,5,312,0,0,1809,1810,5,1,0,0,1810,1815,3,298,149,0,1811, - 1812,5,3,0,0,1812,1814,3,298,149,0,1813,1811,1,0,0,0,1814,1817,1, - 0,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816,1818,1,0,0,0,1817, - 1815,1,0,0,0,1818,1819,5,2,0,0,1819,101,1,0,0,0,1820,1821,3,298, - 149,0,1821,1822,5,28,0,0,1822,1823,3,138,69,0,1823,103,1,0,0,0,1824, - 1832,3,112,56,0,1825,1827,5,28,0,0,1826,1825,1,0,0,0,1826,1827,1, - 0,0,0,1827,1828,1,0,0,0,1828,1830,3,298,149,0,1829,1831,3,110,55, - 0,1830,1829,1,0,0,0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1826, - 1,0,0,0,1832,1833,1,0,0,0,1833,105,1,0,0,0,1834,1835,5,1,0,0,1835, - 1840,3,282,141,0,1836,1837,5,3,0,0,1837,1839,3,282,141,0,1838,1836, - 1,0,0,0,1839,1842,1,0,0,0,1840,1838,1,0,0,0,1840,1841,1,0,0,0,1841, - 1843,1,0,0,0,1842,1840,1,0,0,0,1843,1844,5,2,0,0,1844,107,1,0,0, - 0,1845,1846,5,1,0,0,1846,1851,3,278,139,0,1847,1848,5,3,0,0,1848, - 1850,3,278,139,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851,1849,1, - 0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0,0,1854, - 1855,5,2,0,0,1855,109,1,0,0,0,1856,1857,5,1,0,0,1857,1862,3,298, - 149,0,1858,1859,5,3,0,0,1859,1861,3,298,149,0,1860,1858,1,0,0,0, - 1861,1864,1,0,0,0,1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1865, - 1,0,0,0,1864,1862,1,0,0,0,1865,1866,5,2,0,0,1866,111,1,0,0,0,1867, - 1869,3,256,128,0,1868,1870,3,286,143,0,1869,1868,1,0,0,0,1869,1870, - 1,0,0,0,1870,1939,1,0,0,0,1871,1872,5,1,0,0,1872,1873,3,22,11,0, - 1873,1874,5,2,0,0,1874,1939,1,0,0,0,1875,1876,5,285,0,0,1876,1877, - 5,1,0,0,1877,1882,3,138,69,0,1878,1879,5,3,0,0,1879,1881,3,138,69, - 0,1880,1878,1,0,0,0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1882,1883, - 1,0,0,0,1883,1885,1,0,0,0,1884,1882,1,0,0,0,1885,1888,5,2,0,0,1886, - 1887,5,304,0,0,1887,1889,5,196,0,0,1888,1886,1,0,0,0,1888,1889,1, - 0,0,0,1889,1939,1,0,0,0,1890,1891,5,149,0,0,1891,1892,5,1,0,0,1892, - 1893,3,22,11,0,1893,1894,5,2,0,0,1894,1939,1,0,0,0,1895,1896,5,260, - 0,0,1896,1897,5,1,0,0,1897,1898,3,124,62,0,1898,1899,5,2,0,0,1899, - 1939,1,0,0,0,1900,1901,5,1,0,0,1901,1902,3,74,37,0,1902,1903,5,2, - 0,0,1903,1939,1,0,0,0,1904,1905,5,142,0,0,1905,1906,5,1,0,0,1906, - 1907,3,148,74,0,1907,1908,5,45,0,0,1908,1909,5,1,0,0,1909,1914,3, - 114,57,0,1910,1911,5,3,0,0,1911,1913,3,114,57,0,1912,1910,1,0,0, - 0,1913,1916,1,0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1917, - 1,0,0,0,1916,1914,1,0,0,0,1917,1929,5,2,0,0,1918,1919,5,210,0,0, - 1919,1920,5,1,0,0,1920,1921,3,116,58,0,1921,1922,5,2,0,0,1922,1930, - 1,0,0,0,1923,1924,5,210,0,0,1924,1925,5,70,0,0,1925,1926,5,1,0,0, - 1926,1927,3,122,61,0,1927,1928,5,2,0,0,1928,1930,1,0,0,0,1929,1918, - 1,0,0,0,1929,1923,1,0,0,0,1929,1930,1,0,0,0,1930,1934,1,0,0,0,1931, - 1932,7,14,0,0,1932,1933,5,190,0,0,1933,1935,5,89,0,0,1934,1931,1, - 0,0,0,1934,1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,2,0,0,1937, - 1939,1,0,0,0,1938,1867,1,0,0,0,1938,1871,1,0,0,0,1938,1875,1,0,0, - 0,1938,1890,1,0,0,0,1938,1895,1,0,0,0,1938,1900,1,0,0,0,1938,1904, - 1,0,0,0,1939,113,1,0,0,0,1940,1941,3,298,149,0,1941,1942,5,103,0, - 0,1942,1943,5,196,0,0,1943,2018,1,0,0,0,1944,1945,3,298,149,0,1945, - 1948,3,186,93,0,1946,1947,5,205,0,0,1947,1949,3,170,85,0,1948,1946, - 1,0,0,0,1948,1949,1,0,0,0,1949,1954,1,0,0,0,1950,1951,3,158,79,0, - 1951,1952,5,190,0,0,1952,1953,5,85,0,0,1953,1955,1,0,0,0,1954,1950, - 1,0,0,0,1954,1955,1,0,0,0,1955,1960,1,0,0,0,1956,1957,3,158,79,0, - 1957,1958,5,190,0,0,1958,1959,5,89,0,0,1959,1961,1,0,0,0,1960,1956, - 1,0,0,0,1960,1961,1,0,0,0,1961,2018,1,0,0,0,1962,1963,3,298,149, - 0,1963,1964,3,186,93,0,1964,1965,5,104,0,0,1965,1968,3,152,76,0, - 1966,1967,5,205,0,0,1967,1969,3,170,85,0,1968,1966,1,0,0,0,1968, - 1969,1,0,0,0,1969,1973,1,0,0,0,1970,1971,3,160,80,0,1971,1972,5, - 308,0,0,1972,1974,1,0,0,0,1973,1970,1,0,0,0,1973,1974,1,0,0,0,1974, - 1982,1,0,0,0,1975,1976,7,15,0,0,1976,1980,5,218,0,0,1977,1978,5, - 190,0,0,1978,1979,5,242,0,0,1979,1981,5,264,0,0,1980,1977,1,0,0, - 0,1980,1981,1,0,0,0,1981,1983,1,0,0,0,1982,1975,1,0,0,0,1982,1983, - 1,0,0,0,1983,1988,1,0,0,0,1984,1985,3,162,81,0,1985,1986,5,190,0, - 0,1986,1987,5,85,0,0,1987,1989,1,0,0,0,1988,1984,1,0,0,0,1988,1989, - 1,0,0,0,1989,1994,1,0,0,0,1990,1991,3,162,81,0,1991,1992,5,190,0, - 0,1992,1993,5,89,0,0,1993,1995,1,0,0,0,1994,1990,1,0,0,0,1994,1995, - 1,0,0,0,1995,2018,1,0,0,0,1996,1998,5,173,0,0,1997,1999,5,205,0, - 0,1998,1997,1,0,0,0,1998,1999,1,0,0,0,1999,2000,1,0,0,0,2000,2003, - 3,170,85,0,2001,2002,5,28,0,0,2002,2004,3,298,149,0,2003,2001,1, - 0,0,0,2003,2004,1,0,0,0,2004,2005,1,0,0,0,2005,2006,5,45,0,0,2006, - 2007,5,1,0,0,2007,2012,3,114,57,0,2008,2009,5,3,0,0,2009,2011,3, - 114,57,0,2010,2008,1,0,0,0,2011,2014,1,0,0,0,2012,2010,1,0,0,0,2012, - 2013,1,0,0,0,2013,2015,1,0,0,0,2014,2012,1,0,0,0,2015,2016,5,2,0, - 0,2016,2018,1,0,0,0,2017,1940,1,0,0,0,2017,1944,1,0,0,0,2017,1962, - 1,0,0,0,2017,1996,1,0,0,0,2018,115,1,0,0,0,2019,2045,3,118,59,0, - 2020,2021,3,118,59,0,2021,2022,7,16,0,0,2022,2023,3,120,60,0,2023, - 2045,1,0,0,0,2024,2025,3,120,60,0,2025,2026,5,281,0,0,2026,2031, - 3,120,60,0,2027,2028,5,281,0,0,2028,2030,3,120,60,0,2029,2027,1, - 0,0,0,2030,2033,1,0,0,0,2031,2029,1,0,0,0,2031,2032,1,0,0,0,2032, - 2045,1,0,0,0,2033,2031,1,0,0,0,2034,2035,3,120,60,0,2035,2036,5, - 54,0,0,2036,2041,3,120,60,0,2037,2038,5,54,0,0,2038,2040,3,120,60, - 0,2039,2037,1,0,0,0,2040,2043,1,0,0,0,2041,2039,1,0,0,0,2041,2042, - 1,0,0,0,2042,2045,1,0,0,0,2043,2041,1,0,0,0,2044,2019,1,0,0,0,2044, - 2020,1,0,0,0,2044,2024,1,0,0,0,2044,2034,1,0,0,0,2045,117,1,0,0, - 0,2046,2047,3,298,149,0,2047,119,1,0,0,0,2048,2054,3,118,59,0,2049, - 2050,5,1,0,0,2050,2051,3,116,58,0,2051,2052,5,2,0,0,2052,2054,1, - 0,0,0,2053,2048,1,0,0,0,2053,2049,1,0,0,0,2054,121,1,0,0,0,2055, - 2058,7,16,0,0,2056,2057,5,3,0,0,2057,2059,7,17,0,0,2058,2056,1,0, - 0,0,2058,2059,1,0,0,0,2059,2066,1,0,0,0,2060,2063,7,17,0,0,2061, - 2062,5,3,0,0,2062,2064,7,16,0,0,2063,2061,1,0,0,0,2063,2064,1,0, - 0,0,2064,2066,1,0,0,0,2065,2055,1,0,0,0,2065,2060,1,0,0,0,2066,123, - 1,0,0,0,2067,2068,3,274,137,0,2068,2077,5,1,0,0,2069,2074,3,126, - 63,0,2070,2071,5,3,0,0,2071,2073,3,126,63,0,2072,2070,1,0,0,0,2073, - 2076,1,0,0,0,2074,2072,1,0,0,0,2074,2075,1,0,0,0,2075,2078,1,0,0, - 0,2076,2074,1,0,0,0,2077,2069,1,0,0,0,2077,2078,1,0,0,0,2078,2088, - 1,0,0,0,2079,2080,5,52,0,0,2080,2085,3,136,68,0,2081,2082,5,3,0, - 0,2082,2084,3,136,68,0,2083,2081,1,0,0,0,2084,2087,1,0,0,0,2085, - 2083,1,0,0,0,2085,2086,1,0,0,0,2086,2089,1,0,0,0,2087,2085,1,0,0, - 0,2088,2079,1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090,2091, - 5,2,0,0,2091,125,1,0,0,0,2092,2093,3,298,149,0,2093,2094,5,6,0,0, - 2094,2096,1,0,0,0,2095,2092,1,0,0,0,2095,2096,1,0,0,0,2096,2100, - 1,0,0,0,2097,2101,3,128,64,0,2098,2101,3,132,66,0,2099,2101,3,138, - 69,0,2100,2097,1,0,0,0,2100,2098,1,0,0,0,2100,2099,1,0,0,0,2101, - 127,1,0,0,0,2102,2120,3,130,65,0,2103,2104,5,201,0,0,2104,2118,5, - 36,0,0,2105,2114,5,1,0,0,2106,2111,3,138,69,0,2107,2108,5,3,0,0, - 2108,2110,3,138,69,0,2109,2107,1,0,0,0,2110,2113,1,0,0,0,2111,2109, - 1,0,0,0,2111,2112,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0,2114, - 2106,1,0,0,0,2114,2115,1,0,0,0,2115,2116,1,0,0,0,2116,2119,5,2,0, - 0,2117,2119,3,138,69,0,2118,2105,1,0,0,0,2118,2117,1,0,0,0,2119, - 2121,1,0,0,0,2120,2103,1,0,0,0,2120,2121,1,0,0,0,2121,2128,1,0,0, - 0,2122,2123,5,217,0,0,2123,2124,5,300,0,0,2124,2129,5,85,0,0,2125, - 2126,5,144,0,0,2126,2127,5,300,0,0,2127,2129,5,85,0,0,2128,2122, - 1,0,0,0,2128,2125,1,0,0,0,2128,2129,1,0,0,0,2129,2146,1,0,0,0,2130, - 2131,5,195,0,0,2131,2144,5,36,0,0,2132,2133,5,1,0,0,2133,2138,3, - 50,25,0,2134,2135,5,3,0,0,2135,2137,3,50,25,0,2136,2134,1,0,0,0, - 2137,2140,1,0,0,0,2138,2136,1,0,0,0,2138,2139,1,0,0,0,2139,2141, - 1,0,0,0,2140,2138,1,0,0,0,2141,2142,5,2,0,0,2142,2145,1,0,0,0,2143, - 2145,3,50,25,0,2144,2132,1,0,0,0,2144,2143,1,0,0,0,2145,2147,1,0, - 0,0,2146,2130,1,0,0,0,2146,2147,1,0,0,0,2147,129,1,0,0,0,2148,2149, - 5,260,0,0,2149,2150,5,1,0,0,2150,2151,3,258,129,0,2151,2159,5,2, - 0,0,2152,2154,5,28,0,0,2153,2152,1,0,0,0,2153,2154,1,0,0,0,2154, - 2155,1,0,0,0,2155,2157,3,298,149,0,2156,2158,3,110,55,0,2157,2156, - 1,0,0,0,2157,2158,1,0,0,0,2158,2160,1,0,0,0,2159,2153,1,0,0,0,2159, - 2160,1,0,0,0,2160,2175,1,0,0,0,2161,2162,5,260,0,0,2162,2163,5,1, - 0,0,2163,2164,3,22,11,0,2164,2172,5,2,0,0,2165,2167,5,28,0,0,2166, - 2165,1,0,0,0,2166,2167,1,0,0,0,2167,2168,1,0,0,0,2168,2170,3,298, - 149,0,2169,2171,3,110,55,0,2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171, - 2173,1,0,0,0,2172,2166,1,0,0,0,2172,2173,1,0,0,0,2173,2175,1,0,0, - 0,2174,2148,1,0,0,0,2174,2161,1,0,0,0,2175,131,1,0,0,0,2176,2177, - 5,77,0,0,2177,2178,5,1,0,0,2178,2183,3,134,67,0,2179,2180,5,3,0, - 0,2180,2182,3,134,67,0,2181,2179,1,0,0,0,2182,2185,1,0,0,0,2183, - 2181,1,0,0,0,2183,2184,1,0,0,0,2184,2186,1,0,0,0,2185,2183,1,0,0, - 0,2186,2187,5,2,0,0,2187,2195,1,0,0,0,2188,2189,5,41,0,0,2189,2190, - 5,1,0,0,2190,2191,5,183,0,0,2191,2192,5,28,0,0,2192,2193,5,77,0, - 0,2193,2195,5,2,0,0,2194,2176,1,0,0,0,2194,2188,1,0,0,0,2195,133, - 1,0,0,0,2196,2198,3,298,149,0,2197,2199,3,186,93,0,2198,2197,1,0, - 0,0,2198,2199,1,0,0,0,2199,135,1,0,0,0,2200,2201,5,1,0,0,2201,2202, - 3,284,142,0,2202,2203,5,3,0,0,2203,2208,3,284,142,0,2204,2205,5, - 3,0,0,2205,2207,3,284,142,0,2206,2204,1,0,0,0,2207,2210,1,0,0,0, - 2208,2206,1,0,0,0,2208,2209,1,0,0,0,2209,2211,1,0,0,0,2210,2208, - 1,0,0,0,2211,2212,5,2,0,0,2212,137,1,0,0,0,2213,2214,3,140,70,0, - 2214,139,1,0,0,0,2215,2216,6,70,-1,0,2216,2218,3,144,72,0,2217,2219, - 3,142,71,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2223,1,0,0,0, - 2220,2221,5,182,0,0,2221,2223,3,140,70,3,2222,2215,1,0,0,0,2222, - 2220,1,0,0,0,2223,2232,1,0,0,0,2224,2225,10,2,0,0,2225,2226,5,25, - 0,0,2226,2231,3,140,70,3,2227,2228,10,1,0,0,2228,2229,5,194,0,0, - 2229,2231,3,140,70,2,2230,2224,1,0,0,0,2230,2227,1,0,0,0,2231,2234, - 1,0,0,0,2232,2230,1,0,0,0,2232,2233,1,0,0,0,2233,141,1,0,0,0,2234, - 2232,1,0,0,0,2235,2236,3,174,87,0,2236,2237,3,144,72,0,2237,2297, - 1,0,0,0,2238,2239,3,174,87,0,2239,2240,3,176,88,0,2240,2241,5,1, - 0,0,2241,2242,3,22,11,0,2242,2243,5,2,0,0,2243,2297,1,0,0,0,2244, - 2246,5,182,0,0,2245,2244,1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0, - 0,0,2247,2248,5,34,0,0,2248,2249,3,144,72,0,2249,2250,5,25,0,0,2250, - 2251,3,144,72,0,2251,2297,1,0,0,0,2252,2254,5,182,0,0,2253,2252, - 1,0,0,0,2253,2254,1,0,0,0,2254,2255,1,0,0,0,2255,2256,5,122,0,0, - 2256,2257,5,1,0,0,2257,2262,3,138,69,0,2258,2259,5,3,0,0,2259,2261, - 3,138,69,0,2260,2258,1,0,0,0,2261,2264,1,0,0,0,2262,2260,1,0,0,0, - 2262,2263,1,0,0,0,2263,2265,1,0,0,0,2264,2262,1,0,0,0,2265,2266, - 5,2,0,0,2266,2297,1,0,0,0,2267,2269,5,182,0,0,2268,2267,1,0,0,0, - 2268,2269,1,0,0,0,2269,2270,1,0,0,0,2270,2271,5,122,0,0,2271,2272, - 5,1,0,0,2272,2273,3,22,11,0,2273,2274,5,2,0,0,2274,2297,1,0,0,0, - 2275,2277,5,182,0,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277,2278, - 1,0,0,0,2278,2279,5,154,0,0,2279,2282,3,144,72,0,2280,2281,5,90, - 0,0,2281,2283,3,144,72,0,2282,2280,1,0,0,0,2282,2283,1,0,0,0,2283, - 2297,1,0,0,0,2284,2286,5,133,0,0,2285,2287,5,182,0,0,2286,2285,1, - 0,0,0,2286,2287,1,0,0,0,2287,2288,1,0,0,0,2288,2297,5,183,0,0,2289, - 2291,5,133,0,0,2290,2292,5,182,0,0,2291,2290,1,0,0,0,2291,2292,1, - 0,0,0,2292,2293,1,0,0,0,2293,2294,5,79,0,0,2294,2295,5,105,0,0,2295, - 2297,3,144,72,0,2296,2235,1,0,0,0,2296,2238,1,0,0,0,2296,2245,1, - 0,0,0,2296,2253,1,0,0,0,2296,2268,1,0,0,0,2296,2276,1,0,0,0,2296, - 2284,1,0,0,0,2296,2289,1,0,0,0,2297,143,1,0,0,0,2298,2299,6,72,-1, - 0,2299,2303,3,146,73,0,2300,2301,7,18,0,0,2301,2303,3,144,72,4,2302, - 2298,1,0,0,0,2302,2300,1,0,0,0,2303,2318,1,0,0,0,2304,2305,10,3, - 0,0,2305,2306,7,19,0,0,2306,2317,3,144,72,4,2307,2308,10,2,0,0,2308, - 2309,7,18,0,0,2309,2317,3,144,72,3,2310,2311,10,1,0,0,2311,2312, - 5,323,0,0,2312,2317,3,144,72,2,2313,2314,10,5,0,0,2314,2315,5,30, - 0,0,2315,2317,3,172,86,0,2316,2304,1,0,0,0,2316,2307,1,0,0,0,2316, - 2310,1,0,0,0,2316,2313,1,0,0,0,2317,2320,1,0,0,0,2318,2316,1,0,0, - 0,2318,2319,1,0,0,0,2319,145,1,0,0,0,2320,2318,1,0,0,0,2321,2322, - 6,73,-1,0,2322,2775,5,183,0,0,2323,2775,3,180,90,0,2324,2325,3,298, - 149,0,2325,2326,3,170,85,0,2326,2775,1,0,0,0,2327,2328,5,82,0,0, - 2328,2329,5,213,0,0,2329,2775,3,170,85,0,2330,2775,3,300,150,0,2331, - 2775,3,178,89,0,2332,2775,3,170,85,0,2333,2775,5,328,0,0,2334,2775, - 5,324,0,0,2335,2336,5,211,0,0,2336,2337,5,1,0,0,2337,2338,3,144, - 72,0,2338,2339,5,122,0,0,2339,2340,3,144,72,0,2340,2341,5,2,0,0, - 2341,2775,1,0,0,0,2342,2343,5,1,0,0,2343,2346,3,138,69,0,2344,2345, - 5,3,0,0,2345,2347,3,138,69,0,2346,2344,1,0,0,0,2347,2348,1,0,0,0, - 2348,2346,1,0,0,0,2348,2349,1,0,0,0,2349,2350,1,0,0,0,2350,2351, - 5,2,0,0,2351,2775,1,0,0,0,2352,2353,5,239,0,0,2353,2354,5,1,0,0, - 2354,2359,3,138,69,0,2355,2356,5,3,0,0,2356,2358,3,138,69,0,2357, - 2355,1,0,0,0,2358,2361,1,0,0,0,2359,2357,1,0,0,0,2359,2360,1,0,0, - 0,2360,2362,1,0,0,0,2361,2359,1,0,0,0,2362,2363,5,2,0,0,2363,2775, - 1,0,0,0,2364,2365,5,156,0,0,2365,2367,5,1,0,0,2366,2368,3,70,35, - 0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2369,1,0,0,0,2369,2372, - 3,138,69,0,2370,2371,5,3,0,0,2371,2373,3,170,85,0,2372,2370,1,0, - 0,0,2372,2373,1,0,0,0,2373,2377,1,0,0,0,2374,2375,5,190,0,0,2375, - 2376,5,200,0,0,2376,2378,3,86,43,0,2377,2374,1,0,0,0,2377,2378,1, - 0,0,0,2378,2379,1,0,0,0,2379,2380,5,2,0,0,2380,2381,5,305,0,0,2381, - 2382,5,114,0,0,2382,2383,5,1,0,0,2383,2384,5,195,0,0,2384,2385,5, - 36,0,0,2385,2390,3,50,25,0,2386,2387,5,3,0,0,2387,2389,3,50,25,0, - 2388,2386,1,0,0,0,2389,2392,1,0,0,0,2390,2388,1,0,0,0,2390,2391, - 1,0,0,0,2391,2393,1,0,0,0,2392,2390,1,0,0,0,2393,2394,5,2,0,0,2394, - 2396,1,0,0,0,2395,2397,3,194,97,0,2396,2395,1,0,0,0,2396,2397,1, - 0,0,0,2397,2775,1,0,0,0,2398,2400,3,166,83,0,2399,2398,1,0,0,0,2399, - 2400,1,0,0,0,2400,2401,1,0,0,0,2401,2402,3,274,137,0,2402,2406,5, - 1,0,0,2403,2404,3,298,149,0,2404,2405,5,4,0,0,2405,2407,1,0,0,0, - 2406,2403,1,0,0,0,2406,2407,1,0,0,0,2407,2408,1,0,0,0,2408,2409, - 5,320,0,0,2409,2411,5,2,0,0,2410,2412,3,194,97,0,2411,2410,1,0,0, - 0,2411,2412,1,0,0,0,2412,2414,1,0,0,0,2413,2415,3,198,99,0,2414, - 2413,1,0,0,0,2414,2415,1,0,0,0,2415,2775,1,0,0,0,2416,2418,3,166, - 83,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2419,1,0,0,0,2419, - 2420,3,274,137,0,2420,2432,5,1,0,0,2421,2423,3,70,35,0,2422,2421, - 1,0,0,0,2422,2423,1,0,0,0,2423,2424,1,0,0,0,2424,2429,3,138,69,0, - 2425,2426,5,3,0,0,2426,2428,3,138,69,0,2427,2425,1,0,0,0,2428,2431, - 1,0,0,0,2429,2427,1,0,0,0,2429,2430,1,0,0,0,2430,2433,1,0,0,0,2431, - 2429,1,0,0,0,2432,2422,1,0,0,0,2432,2433,1,0,0,0,2433,2444,1,0,0, - 0,2434,2435,5,195,0,0,2435,2436,5,36,0,0,2436,2441,3,50,25,0,2437, - 2438,5,3,0,0,2438,2440,3,50,25,0,2439,2437,1,0,0,0,2440,2443,1,0, - 0,0,2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2445,1,0,0,0,2443,2441, - 1,0,0,0,2444,2434,1,0,0,0,2444,2445,1,0,0,0,2445,2446,1,0,0,0,2446, - 2448,5,2,0,0,2447,2449,3,194,97,0,2448,2447,1,0,0,0,2448,2449,1, - 0,0,0,2449,2454,1,0,0,0,2450,2452,3,168,84,0,2451,2450,1,0,0,0,2451, - 2452,1,0,0,0,2452,2453,1,0,0,0,2453,2455,3,198,99,0,2454,2451,1, - 0,0,0,2454,2455,1,0,0,0,2455,2775,1,0,0,0,2456,2457,3,298,149,0, - 2457,2458,3,198,99,0,2458,2775,1,0,0,0,2459,2460,3,298,149,0,2460, - 2461,5,7,0,0,2461,2462,3,138,69,0,2462,2775,1,0,0,0,2463,2472,5, - 1,0,0,2464,2469,3,298,149,0,2465,2466,5,3,0,0,2466,2468,3,298,149, - 0,2467,2465,1,0,0,0,2468,2471,1,0,0,0,2469,2467,1,0,0,0,2469,2470, - 1,0,0,0,2470,2473,1,0,0,0,2471,2469,1,0,0,0,2472,2464,1,0,0,0,2472, - 2473,1,0,0,0,2473,2474,1,0,0,0,2474,2475,5,2,0,0,2475,2476,5,7,0, - 0,2476,2775,3,138,69,0,2477,2478,5,1,0,0,2478,2479,3,22,11,0,2479, - 2480,5,2,0,0,2480,2775,1,0,0,0,2481,2482,5,94,0,0,2482,2483,5,1, - 0,0,2483,2484,3,22,11,0,2484,2485,5,2,0,0,2485,2775,1,0,0,0,2486, - 2487,5,40,0,0,2487,2489,3,138,69,0,2488,2490,3,192,96,0,2489,2488, - 1,0,0,0,2490,2491,1,0,0,0,2491,2489,1,0,0,0,2491,2492,1,0,0,0,2492, - 2495,1,0,0,0,2493,2494,5,84,0,0,2494,2496,3,138,69,0,2495,2493,1, - 0,0,0,2495,2496,1,0,0,0,2496,2497,1,0,0,0,2497,2498,5,88,0,0,2498, - 2775,1,0,0,0,2499,2501,5,40,0,0,2500,2502,3,192,96,0,2501,2500,1, - 0,0,0,2502,2503,1,0,0,0,2503,2501,1,0,0,0,2503,2504,1,0,0,0,2504, - 2507,1,0,0,0,2505,2506,5,84,0,0,2506,2508,3,138,69,0,2507,2505,1, - 0,0,0,2507,2508,1,0,0,0,2508,2509,1,0,0,0,2509,2510,5,88,0,0,2510, - 2775,1,0,0,0,2511,2512,5,41,0,0,2512,2513,5,1,0,0,2513,2514,3,138, - 69,0,2514,2515,5,28,0,0,2515,2516,3,186,93,0,2516,2517,5,2,0,0,2517, - 2775,1,0,0,0,2518,2519,5,275,0,0,2519,2520,5,1,0,0,2520,2521,3,138, - 69,0,2521,2522,5,28,0,0,2522,2523,3,186,93,0,2523,2524,5,2,0,0,2524, - 2775,1,0,0,0,2525,2526,5,27,0,0,2526,2535,5,8,0,0,2527,2532,3,138, - 69,0,2528,2529,5,3,0,0,2529,2531,3,138,69,0,2530,2528,1,0,0,0,2531, - 2534,1,0,0,0,2532,2530,1,0,0,0,2532,2533,1,0,0,0,2533,2536,1,0,0, - 0,2534,2532,1,0,0,0,2535,2527,1,0,0,0,2535,2536,1,0,0,0,2536,2537, - 1,0,0,0,2537,2775,5,9,0,0,2538,2775,3,280,140,0,2539,2775,5,58,0, - 0,2540,2544,5,62,0,0,2541,2542,5,1,0,0,2542,2543,5,329,0,0,2543, - 2545,5,2,0,0,2544,2541,1,0,0,0,2544,2545,1,0,0,0,2545,2775,1,0,0, - 0,2546,2550,5,63,0,0,2547,2548,5,1,0,0,2548,2549,5,329,0,0,2549, - 2551,5,2,0,0,2550,2547,1,0,0,0,2550,2551,1,0,0,0,2551,2775,1,0,0, - 0,2552,2556,5,158,0,0,2553,2554,5,1,0,0,2554,2555,5,329,0,0,2555, - 2557,5,2,0,0,2556,2553,1,0,0,0,2556,2557,1,0,0,0,2557,2775,1,0,0, - 0,2558,2562,5,159,0,0,2559,2560,5,1,0,0,2560,2561,5,329,0,0,2561, - 2563,5,2,0,0,2562,2559,1,0,0,0,2562,2563,1,0,0,0,2563,2775,1,0,0, - 0,2564,2775,5,64,0,0,2565,2775,5,57,0,0,2566,2775,5,61,0,0,2567, - 2775,5,59,0,0,2568,2569,5,272,0,0,2569,2577,5,1,0,0,2570,2572,3, - 84,42,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0,0,2573, - 2575,3,144,72,0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575,2576,1, - 0,0,0,2576,2578,5,105,0,0,2577,2571,1,0,0,0,2577,2578,1,0,0,0,2578, - 2579,1,0,0,0,2579,2580,3,144,72,0,2580,2581,5,2,0,0,2581,2775,1, - 0,0,0,2582,2583,5,272,0,0,2583,2584,5,1,0,0,2584,2585,3,144,72,0, - 2585,2586,5,3,0,0,2586,2587,3,144,72,0,2587,2588,5,2,0,0,2588,2775, - 1,0,0,0,2589,2590,5,258,0,0,2590,2591,5,1,0,0,2591,2592,3,144,72, - 0,2592,2593,5,105,0,0,2593,2596,3,144,72,0,2594,2595,5,103,0,0,2595, - 2597,3,144,72,0,2596,2594,1,0,0,0,2596,2597,1,0,0,0,2597,2598,1, - 0,0,0,2598,2599,5,2,0,0,2599,2775,1,0,0,0,2600,2601,5,181,0,0,2601, - 2602,5,1,0,0,2602,2605,3,144,72,0,2603,2604,5,3,0,0,2604,2606,3, - 184,92,0,2605,2603,1,0,0,0,2605,2606,1,0,0,0,2606,2607,1,0,0,0,2607, - 2608,5,2,0,0,2608,2775,1,0,0,0,2609,2610,5,96,0,0,2610,2611,5,1, - 0,0,2611,2612,3,298,149,0,2612,2613,5,105,0,0,2613,2614,3,144,72, - 0,2614,2615,5,2,0,0,2615,2775,1,0,0,0,2616,2617,5,1,0,0,2617,2618, - 3,138,69,0,2618,2619,5,2,0,0,2619,2775,1,0,0,0,2620,2621,5,115,0, - 0,2621,2630,5,1,0,0,2622,2627,3,284,142,0,2623,2624,5,3,0,0,2624, - 2626,3,284,142,0,2625,2623,1,0,0,0,2626,2629,1,0,0,0,2627,2625,1, - 0,0,0,2627,2628,1,0,0,0,2628,2631,1,0,0,0,2629,2627,1,0,0,0,2630, - 2622,1,0,0,0,2630,2631,1,0,0,0,2631,2632,1,0,0,0,2632,2775,5,2,0, - 0,2633,2634,5,139,0,0,2634,2635,5,1,0,0,2635,2640,3,148,74,0,2636, - 2637,3,156,78,0,2637,2638,5,190,0,0,2638,2639,5,89,0,0,2639,2641, - 1,0,0,0,2640,2636,1,0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642, - 2643,5,2,0,0,2643,2775,1,0,0,0,2644,2645,5,143,0,0,2645,2646,5,1, - 0,0,2646,2649,3,148,74,0,2647,2648,5,231,0,0,2648,2650,3,186,93, - 0,2649,2647,1,0,0,0,2649,2650,1,0,0,0,2650,2655,1,0,0,0,2651,2652, - 3,158,79,0,2652,2653,5,190,0,0,2653,2654,5,85,0,0,2654,2656,1,0, - 0,0,2655,2651,1,0,0,0,2655,2656,1,0,0,0,2656,2661,1,0,0,0,2657,2658, - 3,158,79,0,2658,2659,5,190,0,0,2659,2660,5,89,0,0,2660,2662,1,0, - 0,0,2661,2657,1,0,0,0,2661,2662,1,0,0,0,2662,2663,1,0,0,0,2663,2664, - 5,2,0,0,2664,2775,1,0,0,0,2665,2666,5,141,0,0,2666,2667,5,1,0,0, - 2667,2674,3,148,74,0,2668,2669,5,231,0,0,2669,2672,3,186,93,0,2670, - 2671,5,104,0,0,2671,2673,3,152,76,0,2672,2670,1,0,0,0,2672,2673, - 1,0,0,0,2673,2675,1,0,0,0,2674,2668,1,0,0,0,2674,2675,1,0,0,0,2675, - 2679,1,0,0,0,2676,2677,3,160,80,0,2677,2678,5,308,0,0,2678,2680, - 1,0,0,0,2679,2676,1,0,0,0,2679,2680,1,0,0,0,2680,2688,1,0,0,0,2681, - 2682,7,15,0,0,2682,2686,5,218,0,0,2683,2684,5,190,0,0,2684,2685, - 5,242,0,0,2685,2687,5,264,0,0,2686,2683,1,0,0,0,2686,2687,1,0,0, - 0,2687,2689,1,0,0,0,2688,2681,1,0,0,0,2688,2689,1,0,0,0,2689,2694, - 1,0,0,0,2690,2691,3,162,81,0,2691,2692,5,190,0,0,2692,2693,5,85, - 0,0,2693,2695,1,0,0,0,2694,2690,1,0,0,0,2694,2695,1,0,0,0,2695,2700, - 1,0,0,0,2696,2697,3,162,81,0,2697,2698,5,190,0,0,2698,2699,5,89, - 0,0,2699,2701,1,0,0,0,2700,2696,1,0,0,0,2700,2701,1,0,0,0,2701,2702, - 1,0,0,0,2702,2703,5,2,0,0,2703,2775,1,0,0,0,2704,2705,5,140,0,0, - 2705,2734,5,1,0,0,2706,2711,3,164,82,0,2707,2708,5,3,0,0,2708,2710, - 3,164,82,0,2709,2707,1,0,0,0,2710,2713,1,0,0,0,2711,2709,1,0,0,0, - 2711,2712,1,0,0,0,2712,2720,1,0,0,0,2713,2711,1,0,0,0,2714,2715, - 5,183,0,0,2715,2716,5,190,0,0,2716,2721,5,183,0,0,2717,2718,5,18, - 0,0,2718,2719,5,190,0,0,2719,2721,5,183,0,0,2720,2714,1,0,0,0,2720, - 2717,1,0,0,0,2720,2721,1,0,0,0,2721,2732,1,0,0,0,2722,2723,5,304, - 0,0,2723,2725,5,282,0,0,2724,2726,5,146,0,0,2725,2724,1,0,0,0,2725, - 2726,1,0,0,0,2726,2733,1,0,0,0,2727,2728,5,306,0,0,2728,2730,5,282, - 0,0,2729,2731,5,146,0,0,2730,2729,1,0,0,0,2730,2731,1,0,0,0,2731, - 2733,1,0,0,0,2732,2722,1,0,0,0,2732,2727,1,0,0,0,2732,2733,1,0,0, - 0,2733,2735,1,0,0,0,2734,2706,1,0,0,0,2734,2735,1,0,0,0,2735,2742, - 1,0,0,0,2736,2737,5,231,0,0,2737,2740,3,186,93,0,2738,2739,5,104, - 0,0,2739,2741,3,152,76,0,2740,2738,1,0,0,0,2740,2741,1,0,0,0,2741, - 2743,1,0,0,0,2742,2736,1,0,0,0,2742,2743,1,0,0,0,2743,2744,1,0,0, - 0,2744,2775,5,2,0,0,2745,2746,5,138,0,0,2746,2763,5,1,0,0,2747,2752, - 3,150,75,0,2748,2749,5,3,0,0,2749,2751,3,150,75,0,2750,2748,1,0, - 0,0,2751,2754,1,0,0,0,2752,2750,1,0,0,0,2752,2753,1,0,0,0,2753,2761, - 1,0,0,0,2754,2752,1,0,0,0,2755,2756,5,183,0,0,2756,2757,5,190,0, - 0,2757,2762,5,183,0,0,2758,2759,5,18,0,0,2759,2760,5,190,0,0,2760, - 2762,5,183,0,0,2761,2755,1,0,0,0,2761,2758,1,0,0,0,2761,2762,1,0, - 0,0,2762,2764,1,0,0,0,2763,2747,1,0,0,0,2763,2764,1,0,0,0,2764,2771, - 1,0,0,0,2765,2766,5,231,0,0,2766,2769,3,186,93,0,2767,2768,5,104, - 0,0,2768,2770,3,152,76,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770, - 2772,1,0,0,0,2771,2765,1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0, - 0,2773,2775,5,2,0,0,2774,2321,1,0,0,0,2774,2323,1,0,0,0,2774,2324, - 1,0,0,0,2774,2327,1,0,0,0,2774,2330,1,0,0,0,2774,2331,1,0,0,0,2774, - 2332,1,0,0,0,2774,2333,1,0,0,0,2774,2334,1,0,0,0,2774,2335,1,0,0, - 0,2774,2342,1,0,0,0,2774,2352,1,0,0,0,2774,2364,1,0,0,0,2774,2399, - 1,0,0,0,2774,2417,1,0,0,0,2774,2456,1,0,0,0,2774,2459,1,0,0,0,2774, - 2463,1,0,0,0,2774,2477,1,0,0,0,2774,2481,1,0,0,0,2774,2486,1,0,0, - 0,2774,2499,1,0,0,0,2774,2511,1,0,0,0,2774,2518,1,0,0,0,2774,2525, - 1,0,0,0,2774,2538,1,0,0,0,2774,2539,1,0,0,0,2774,2540,1,0,0,0,2774, - 2546,1,0,0,0,2774,2552,1,0,0,0,2774,2558,1,0,0,0,2774,2564,1,0,0, - 0,2774,2565,1,0,0,0,2774,2566,1,0,0,0,2774,2567,1,0,0,0,2774,2568, - 1,0,0,0,2774,2582,1,0,0,0,2774,2589,1,0,0,0,2774,2600,1,0,0,0,2774, - 2609,1,0,0,0,2774,2616,1,0,0,0,2774,2620,1,0,0,0,2774,2633,1,0,0, - 0,2774,2644,1,0,0,0,2774,2665,1,0,0,0,2774,2704,1,0,0,0,2774,2745, - 1,0,0,0,2775,2786,1,0,0,0,2776,2777,10,24,0,0,2777,2778,5,8,0,0, - 2778,2779,3,144,72,0,2779,2780,5,9,0,0,2780,2785,1,0,0,0,2781,2782, - 10,22,0,0,2782,2783,5,4,0,0,2783,2785,3,298,149,0,2784,2776,1,0, - 0,0,2784,2781,1,0,0,0,2785,2788,1,0,0,0,2786,2784,1,0,0,0,2786,2787, - 1,0,0,0,2787,147,1,0,0,0,2788,2786,1,0,0,0,2789,2790,3,150,75,0, - 2790,2791,5,3,0,0,2791,2794,3,170,85,0,2792,2793,5,28,0,0,2793,2795, - 3,298,149,0,2794,2792,1,0,0,0,2794,2795,1,0,0,0,2795,2805,1,0,0, - 0,2796,2797,5,203,0,0,2797,2802,3,154,77,0,2798,2799,5,3,0,0,2799, - 2801,3,154,77,0,2800,2798,1,0,0,0,2801,2804,1,0,0,0,2802,2800,1, - 0,0,0,2802,2803,1,0,0,0,2803,2806,1,0,0,0,2804,2802,1,0,0,0,2805, - 2796,1,0,0,0,2805,2806,1,0,0,0,2806,149,1,0,0,0,2807,2810,3,138, - 69,0,2808,2809,5,104,0,0,2809,2811,3,152,76,0,2810,2808,1,0,0,0, - 2810,2811,1,0,0,0,2811,151,1,0,0,0,2812,2815,5,137,0,0,2813,2814, - 5,87,0,0,2814,2816,7,20,0,0,2815,2813,1,0,0,0,2815,2816,1,0,0,0, - 2816,153,1,0,0,0,2817,2818,3,150,75,0,2818,2819,5,28,0,0,2819,2820, - 3,298,149,0,2820,155,1,0,0,0,2821,2822,7,21,0,0,2822,157,1,0,0,0, - 2823,2828,5,89,0,0,2824,2828,5,183,0,0,2825,2826,5,70,0,0,2826,2828, - 3,138,69,0,2827,2823,1,0,0,0,2827,2824,1,0,0,0,2827,2825,1,0,0,0, - 2828,159,1,0,0,0,2829,2831,5,306,0,0,2830,2832,5,27,0,0,2831,2830, - 1,0,0,0,2831,2832,1,0,0,0,2832,2841,1,0,0,0,2833,2835,5,304,0,0, - 2834,2836,7,22,0,0,2835,2834,1,0,0,0,2835,2836,1,0,0,0,2836,2838, - 1,0,0,0,2837,2839,5,27,0,0,2838,2837,1,0,0,0,2838,2839,1,0,0,0,2839, - 2841,1,0,0,0,2840,2829,1,0,0,0,2840,2833,1,0,0,0,2841,161,1,0,0, - 0,2842,2849,5,89,0,0,2843,2849,5,183,0,0,2844,2845,5,85,0,0,2845, - 2849,5,27,0,0,2846,2847,5,85,0,0,2847,2849,5,186,0,0,2848,2842,1, - 0,0,0,2848,2843,1,0,0,0,2848,2844,1,0,0,0,2848,2846,1,0,0,0,2849, - 163,1,0,0,0,2850,2852,5,145,0,0,2851,2850,1,0,0,0,2851,2852,1,0, - 0,0,2852,2853,1,0,0,0,2853,2854,3,138,69,0,2854,2855,5,295,0,0,2855, - 2856,3,150,75,0,2856,2862,1,0,0,0,2857,2858,3,138,69,0,2858,2859, - 5,10,0,0,2859,2860,3,150,75,0,2860,2862,1,0,0,0,2861,2851,1,0,0, - 0,2861,2857,1,0,0,0,2862,165,1,0,0,0,2863,2864,7,23,0,0,2864,167, - 1,0,0,0,2865,2866,5,120,0,0,2866,2870,5,185,0,0,2867,2868,5,228, - 0,0,2868,2870,5,185,0,0,2869,2865,1,0,0,0,2869,2867,1,0,0,0,2870, - 169,1,0,0,0,2871,2878,5,326,0,0,2872,2875,5,327,0,0,2873,2874,5, - 277,0,0,2874,2876,5,326,0,0,2875,2873,1,0,0,0,2875,2876,1,0,0,0, - 2876,2878,1,0,0,0,2877,2871,1,0,0,0,2877,2872,1,0,0,0,2878,171,1, - 0,0,0,2879,2880,5,267,0,0,2880,2881,5,311,0,0,2881,2886,3,180,90, - 0,2882,2883,5,267,0,0,2883,2884,5,311,0,0,2884,2886,3,170,85,0,2885, - 2879,1,0,0,0,2885,2882,1,0,0,0,2886,173,1,0,0,0,2887,2888,7,24,0, - 0,2888,175,1,0,0,0,2889,2890,7,25,0,0,2890,177,1,0,0,0,2891,2892, - 7,26,0,0,2892,179,1,0,0,0,2893,2895,5,129,0,0,2894,2896,7,18,0,0, - 2895,2894,1,0,0,0,2895,2896,1,0,0,0,2896,2897,1,0,0,0,2897,2898, - 3,170,85,0,2898,2901,3,182,91,0,2899,2900,5,269,0,0,2900,2902,3, - 182,91,0,2901,2899,1,0,0,0,2901,2902,1,0,0,0,2902,181,1,0,0,0,2903, - 2904,7,27,0,0,2904,183,1,0,0,0,2905,2906,7,28,0,0,2906,185,1,0,0, - 0,2907,2908,6,93,-1,0,2908,2909,5,239,0,0,2909,2910,5,1,0,0,2910, - 2915,3,188,94,0,2911,2912,5,3,0,0,2912,2914,3,188,94,0,2913,2911, - 1,0,0,0,2914,2917,1,0,0,0,2915,2913,1,0,0,0,2915,2916,1,0,0,0,2916, - 2918,1,0,0,0,2917,2915,1,0,0,0,2918,2919,5,2,0,0,2919,2999,1,0,0, - 0,2920,2921,5,129,0,0,2921,2924,3,182,91,0,2922,2923,5,269,0,0,2923, - 2925,3,182,91,0,2924,2922,1,0,0,0,2924,2925,1,0,0,0,2925,2999,1, - 0,0,0,2926,2931,5,268,0,0,2927,2928,5,1,0,0,2928,2929,3,190,95,0, - 2929,2930,5,2,0,0,2930,2932,1,0,0,0,2931,2927,1,0,0,0,2931,2932, - 1,0,0,0,2932,2936,1,0,0,0,2933,2934,5,306,0,0,2934,2935,5,267,0, - 0,2935,2937,5,311,0,0,2936,2933,1,0,0,0,2936,2937,1,0,0,0,2937,2999, - 1,0,0,0,2938,2943,5,268,0,0,2939,2940,5,1,0,0,2940,2941,3,190,95, - 0,2941,2942,5,2,0,0,2942,2944,1,0,0,0,2943,2939,1,0,0,0,2943,2944, - 1,0,0,0,2944,2945,1,0,0,0,2945,2946,5,304,0,0,2946,2947,5,267,0, - 0,2947,2999,5,311,0,0,2948,2953,5,267,0,0,2949,2950,5,1,0,0,2950, - 2951,3,190,95,0,2951,2952,5,2,0,0,2952,2954,1,0,0,0,2953,2949,1, - 0,0,0,2953,2954,1,0,0,0,2954,2958,1,0,0,0,2955,2956,5,306,0,0,2956, - 2957,5,267,0,0,2957,2959,5,311,0,0,2958,2955,1,0,0,0,2958,2959,1, - 0,0,0,2959,2999,1,0,0,0,2960,2965,5,267,0,0,2961,2962,5,1,0,0,2962, - 2963,3,190,95,0,2963,2964,5,2,0,0,2964,2966,1,0,0,0,2965,2961,1, - 0,0,0,2965,2966,1,0,0,0,2966,2967,1,0,0,0,2967,2968,5,304,0,0,2968, - 2969,5,267,0,0,2969,2999,5,311,0,0,2970,2971,5,82,0,0,2971,2999, - 5,213,0,0,2972,2973,5,27,0,0,2973,2974,5,314,0,0,2974,2975,3,186, - 93,0,2975,2976,5,316,0,0,2976,2999,1,0,0,0,2977,2978,5,162,0,0,2978, - 2979,5,314,0,0,2979,2980,3,186,93,0,2980,2981,5,3,0,0,2981,2982, - 3,186,93,0,2982,2983,5,316,0,0,2983,2999,1,0,0,0,2984,2996,3,298, - 149,0,2985,2986,5,1,0,0,2986,2991,3,190,95,0,2987,2988,5,3,0,0,2988, - 2990,3,190,95,0,2989,2987,1,0,0,0,2990,2993,1,0,0,0,2991,2989,1, - 0,0,0,2991,2992,1,0,0,0,2992,2994,1,0,0,0,2993,2991,1,0,0,0,2994, - 2995,5,2,0,0,2995,2997,1,0,0,0,2996,2985,1,0,0,0,2996,2997,1,0,0, - 0,2997,2999,1,0,0,0,2998,2907,1,0,0,0,2998,2920,1,0,0,0,2998,2926, - 1,0,0,0,2998,2938,1,0,0,0,2998,2948,1,0,0,0,2998,2960,1,0,0,0,2998, - 2970,1,0,0,0,2998,2972,1,0,0,0,2998,2977,1,0,0,0,2998,2984,1,0,0, - 0,2999,3009,1,0,0,0,3000,3001,10,2,0,0,3001,3005,5,27,0,0,3002,3003, - 5,8,0,0,3003,3004,5,329,0,0,3004,3006,5,9,0,0,3005,3002,1,0,0,0, - 3005,3006,1,0,0,0,3006,3008,1,0,0,0,3007,3000,1,0,0,0,3008,3011, - 1,0,0,0,3009,3007,1,0,0,0,3009,3010,1,0,0,0,3010,187,1,0,0,0,3011, - 3009,1,0,0,0,3012,3017,3,186,93,0,3013,3014,3,298,149,0,3014,3015, - 3,186,93,0,3015,3017,1,0,0,0,3016,3012,1,0,0,0,3016,3013,1,0,0,0, - 3017,189,1,0,0,0,3018,3021,5,329,0,0,3019,3021,3,186,93,0,3020,3018, - 1,0,0,0,3020,3019,1,0,0,0,3021,191,1,0,0,0,3022,3023,5,300,0,0,3023, - 3024,3,138,69,0,3024,3025,5,265,0,0,3025,3026,3,138,69,0,3026,193, - 1,0,0,0,3027,3028,5,99,0,0,3028,3029,5,1,0,0,3029,3030,3,54,27,0, - 3030,3031,5,2,0,0,3031,195,1,0,0,0,3032,3033,5,300,0,0,3033,3036, - 5,164,0,0,3034,3035,5,25,0,0,3035,3037,3,138,69,0,3036,3034,1,0, - 0,0,3036,3037,1,0,0,0,3037,3038,1,0,0,0,3038,3039,5,265,0,0,3039, - 3040,5,287,0,0,3040,3041,5,251,0,0,3041,3042,3,298,149,0,3042,3043, - 5,312,0,0,3043,3051,3,138,69,0,3044,3045,5,3,0,0,3045,3046,3,298, - 149,0,3046,3047,5,312,0,0,3047,3048,3,138,69,0,3048,3050,1,0,0,0, - 3049,3044,1,0,0,0,3050,3053,1,0,0,0,3051,3049,1,0,0,0,3051,3052, - 1,0,0,0,3052,3097,1,0,0,0,3053,3051,1,0,0,0,3054,3055,5,300,0,0, - 3055,3058,5,164,0,0,3056,3057,5,25,0,0,3057,3059,3,138,69,0,3058, - 3056,1,0,0,0,3058,3059,1,0,0,0,3059,3060,1,0,0,0,3060,3061,5,265, - 0,0,3061,3097,5,73,0,0,3062,3063,5,300,0,0,3063,3064,5,182,0,0,3064, - 3067,5,164,0,0,3065,3066,5,25,0,0,3066,3068,3,138,69,0,3067,3065, - 1,0,0,0,3067,3068,1,0,0,0,3068,3069,1,0,0,0,3069,3070,5,265,0,0, - 3070,3082,5,127,0,0,3071,3072,5,1,0,0,3072,3077,3,298,149,0,3073, - 3074,5,3,0,0,3074,3076,3,298,149,0,3075,3073,1,0,0,0,3076,3079,1, - 0,0,0,3077,3075,1,0,0,0,3077,3078,1,0,0,0,3078,3080,1,0,0,0,3079, - 3077,1,0,0,0,3080,3081,5,2,0,0,3081,3083,1,0,0,0,3082,3071,1,0,0, - 0,3082,3083,1,0,0,0,3083,3084,1,0,0,0,3084,3085,5,296,0,0,3085,3086, - 5,1,0,0,3086,3091,3,138,69,0,3087,3088,5,3,0,0,3088,3090,3,138,69, - 0,3089,3087,1,0,0,0,3090,3093,1,0,0,0,3091,3089,1,0,0,0,3091,3092, - 1,0,0,0,3092,3094,1,0,0,0,3093,3091,1,0,0,0,3094,3095,5,2,0,0,3095, - 3097,1,0,0,0,3096,3032,1,0,0,0,3096,3054,1,0,0,0,3096,3062,1,0,0, - 0,3097,197,1,0,0,0,3098,3104,5,199,0,0,3099,3105,3,298,149,0,3100, - 3101,5,1,0,0,3101,3102,3,66,33,0,3102,3103,5,2,0,0,3103,3105,1,0, - 0,0,3104,3099,1,0,0,0,3104,3100,1,0,0,0,3105,199,1,0,0,0,3106,3107, - 5,168,0,0,3107,3112,3,92,46,0,3108,3109,5,3,0,0,3109,3111,3,92,46, - 0,3110,3108,1,0,0,0,3111,3114,1,0,0,0,3112,3110,1,0,0,0,3112,3113, - 1,0,0,0,3113,3116,1,0,0,0,3114,3112,1,0,0,0,3115,3106,1,0,0,0,3115, - 3116,1,0,0,0,3116,3117,1,0,0,0,3117,3121,3,202,101,0,3118,3119,5, - 21,0,0,3119,3120,5,163,0,0,3120,3122,3,98,49,0,3121,3118,1,0,0,0, - 3121,3122,1,0,0,0,3122,3124,1,0,0,0,3123,3125,7,13,0,0,3124,3123, - 1,0,0,0,3124,3125,1,0,0,0,3125,3131,1,0,0,0,3126,3127,5,206,0,0, - 3127,3128,5,1,0,0,3128,3129,3,206,103,0,3129,3130,5,2,0,0,3130,3132, - 1,0,0,0,3131,3126,1,0,0,0,3131,3132,1,0,0,0,3132,3142,1,0,0,0,3133, - 3134,5,257,0,0,3134,3139,3,100,50,0,3135,3136,5,3,0,0,3136,3138, - 3,100,50,0,3137,3135,1,0,0,0,3138,3141,1,0,0,0,3139,3137,1,0,0,0, - 3139,3140,1,0,0,0,3140,3143,1,0,0,0,3141,3139,1,0,0,0,3142,3133, - 1,0,0,0,3142,3143,1,0,0,0,3143,3153,1,0,0,0,3144,3145,5,71,0,0,3145, - 3150,3,102,51,0,3146,3147,5,3,0,0,3147,3149,3,102,51,0,3148,3146, - 1,0,0,0,3149,3152,1,0,0,0,3150,3148,1,0,0,0,3150,3151,1,0,0,0,3151, - 3154,1,0,0,0,3152,3150,1,0,0,0,3153,3144,1,0,0,0,3153,3154,1,0,0, - 0,3154,201,1,0,0,0,3155,3156,5,219,0,0,3156,3180,3,204,102,0,3157, - 3158,5,240,0,0,3158,3180,3,204,102,0,3159,3160,5,116,0,0,3160,3180, - 3,204,102,0,3161,3162,5,219,0,0,3162,3163,5,34,0,0,3163,3164,3,204, - 102,0,3164,3165,5,25,0,0,3165,3166,3,204,102,0,3166,3180,1,0,0,0, - 3167,3168,5,240,0,0,3168,3169,5,34,0,0,3169,3170,3,204,102,0,3170, - 3171,5,25,0,0,3171,3172,3,204,102,0,3172,3180,1,0,0,0,3173,3174, - 5,116,0,0,3174,3175,5,34,0,0,3175,3176,3,204,102,0,3176,3177,5,25, - 0,0,3177,3178,3,204,102,0,3178,3180,1,0,0,0,3179,3155,1,0,0,0,3179, - 3157,1,0,0,0,3179,3159,1,0,0,0,3179,3161,1,0,0,0,3179,3167,1,0,0, - 0,3179,3173,1,0,0,0,3180,203,1,0,0,0,3181,3182,5,278,0,0,3182,3191, - 5,212,0,0,3183,3184,5,278,0,0,3184,3191,5,102,0,0,3185,3186,5,56, - 0,0,3186,3191,5,239,0,0,3187,3188,3,138,69,0,3188,3189,7,29,0,0, - 3189,3191,1,0,0,0,3190,3181,1,0,0,0,3190,3183,1,0,0,0,3190,3185, - 1,0,0,0,3190,3187,1,0,0,0,3191,205,1,0,0,0,3192,3193,6,103,-1,0, - 3193,3195,3,208,104,0,3194,3196,3,210,105,0,3195,3194,1,0,0,0,3195, - 3196,1,0,0,0,3196,3204,1,0,0,0,3197,3198,10,2,0,0,3198,3203,3,206, - 103,3,3199,3200,10,1,0,0,3200,3201,5,11,0,0,3201,3203,3,206,103, - 2,3202,3197,1,0,0,0,3202,3199,1,0,0,0,3203,3206,1,0,0,0,3204,3202, - 1,0,0,0,3204,3205,1,0,0,0,3205,207,1,0,0,0,3206,3204,1,0,0,0,3207, - 3233,3,298,149,0,3208,3209,5,1,0,0,3209,3233,5,2,0,0,3210,3211,5, - 209,0,0,3211,3212,5,1,0,0,3212,3217,3,206,103,0,3213,3214,5,3,0, - 0,3214,3216,3,206,103,0,3215,3213,1,0,0,0,3216,3219,1,0,0,0,3217, - 3215,1,0,0,0,3217,3218,1,0,0,0,3218,3220,1,0,0,0,3219,3217,1,0,0, - 0,3220,3221,5,2,0,0,3221,3233,1,0,0,0,3222,3223,5,1,0,0,3223,3224, - 3,206,103,0,3224,3225,5,2,0,0,3225,3233,1,0,0,0,3226,3233,5,12,0, - 0,3227,3233,5,13,0,0,3228,3229,5,14,0,0,3229,3230,3,206,103,0,3230, - 3231,5,15,0,0,3231,3233,1,0,0,0,3232,3207,1,0,0,0,3232,3208,1,0, - 0,0,3232,3210,1,0,0,0,3232,3222,1,0,0,0,3232,3226,1,0,0,0,3232,3227, - 1,0,0,0,3232,3228,1,0,0,0,3233,209,1,0,0,0,3234,3236,5,320,0,0,3235, - 3237,5,324,0,0,3236,3235,1,0,0,0,3236,3237,1,0,0,0,3237,3265,1,0, - 0,0,3238,3240,5,318,0,0,3239,3241,5,324,0,0,3240,3239,1,0,0,0,3240, - 3241,1,0,0,0,3241,3265,1,0,0,0,3242,3244,5,324,0,0,3243,3245,5,324, - 0,0,3244,3243,1,0,0,0,3244,3245,1,0,0,0,3245,3265,1,0,0,0,3246,3247, - 5,16,0,0,3247,3248,5,329,0,0,3248,3250,5,17,0,0,3249,3251,5,324, - 0,0,3250,3249,1,0,0,0,3250,3251,1,0,0,0,3251,3265,1,0,0,0,3252,3254, - 5,16,0,0,3253,3255,5,329,0,0,3254,3253,1,0,0,0,3254,3255,1,0,0,0, - 3255,3256,1,0,0,0,3256,3258,5,3,0,0,3257,3259,5,329,0,0,3258,3257, - 1,0,0,0,3258,3259,1,0,0,0,3259,3260,1,0,0,0,3260,3262,5,17,0,0,3261, - 3263,5,324,0,0,3262,3261,1,0,0,0,3262,3263,1,0,0,0,3263,3265,1,0, - 0,0,3264,3234,1,0,0,0,3264,3238,1,0,0,0,3264,3242,1,0,0,0,3264,3246, - 1,0,0,0,3264,3252,1,0,0,0,3265,211,1,0,0,0,3266,3267,3,298,149,0, - 3267,3268,5,312,0,0,3268,3269,3,138,69,0,3269,213,1,0,0,0,3270,3271, - 5,104,0,0,3271,3275,7,30,0,0,3272,3273,5,276,0,0,3273,3275,7,31, - 0,0,3274,3270,1,0,0,0,3274,3272,1,0,0,0,3275,215,1,0,0,0,3276,3277, - 5,134,0,0,3277,3278,5,153,0,0,3278,3282,3,218,109,0,3279,3280,5, - 220,0,0,3280,3282,7,32,0,0,3281,3276,1,0,0,0,3281,3279,1,0,0,0,3282, - 217,1,0,0,0,3283,3284,5,220,0,0,3284,3291,5,279,0,0,3285,3286,5, - 220,0,0,3286,3291,5,48,0,0,3287,3288,5,225,0,0,3288,3291,5,220,0, - 0,3289,3291,5,249,0,0,3290,3283,1,0,0,0,3290,3285,1,0,0,0,3290,3287, - 1,0,0,0,3290,3289,1,0,0,0,3291,219,1,0,0,0,3292,3298,3,138,69,0, - 3293,3294,3,298,149,0,3294,3295,5,6,0,0,3295,3296,3,138,69,0,3296, - 3298,1,0,0,0,3297,3292,1,0,0,0,3297,3293,1,0,0,0,3298,221,1,0,0, - 0,3299,3300,3,298,149,0,3300,3301,5,4,0,0,3301,3302,3,298,149,0, - 3302,3305,1,0,0,0,3303,3305,3,298,149,0,3304,3299,1,0,0,0,3304,3303, - 1,0,0,0,3305,223,1,0,0,0,3306,3311,3,222,111,0,3307,3308,5,3,0,0, - 3308,3310,3,222,111,0,3309,3307,1,0,0,0,3310,3313,1,0,0,0,3311,3309, - 1,0,0,0,3311,3312,1,0,0,0,3312,225,1,0,0,0,3313,3311,1,0,0,0,3314, - 3315,5,107,0,0,3315,3316,3,228,114,0,3316,3320,3,234,117,0,3317, - 3319,3,236,118,0,3318,3317,1,0,0,0,3319,3322,1,0,0,0,3320,3318,1, - 0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0,0,3322,3320,1,0,0,0,3323, - 3324,3,238,119,0,3324,227,1,0,0,0,3325,3326,3,276,138,0,3326,3335, - 5,1,0,0,3327,3332,3,232,116,0,3328,3329,5,3,0,0,3329,3331,3,232, - 116,0,3330,3328,1,0,0,0,3331,3334,1,0,0,0,3332,3330,1,0,0,0,3332, - 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3332,1,0,0,0,3335,3327,1,0,0, - 0,3335,3336,1,0,0,0,3336,3337,1,0,0,0,3337,3338,5,2,0,0,3338,229, - 1,0,0,0,3339,3340,3,274,137,0,3340,3349,5,1,0,0,3341,3346,3,232, - 116,0,3342,3343,5,3,0,0,3343,3345,3,232,116,0,3344,3342,1,0,0,0, - 3345,3348,1,0,0,0,3346,3344,1,0,0,0,3346,3347,1,0,0,0,3347,3350, - 1,0,0,0,3348,3346,1,0,0,0,3349,3341,1,0,0,0,3349,3350,1,0,0,0,3350, - 3351,1,0,0,0,3351,3352,5,2,0,0,3352,231,1,0,0,0,3353,3355,3,298, - 149,0,3354,3353,1,0,0,0,3354,3355,1,0,0,0,3355,3356,1,0,0,0,3356, - 3357,3,186,93,0,3357,233,1,0,0,0,3358,3359,5,232,0,0,3359,3360,3, - 186,93,0,3360,235,1,0,0,0,3361,3362,5,147,0,0,3362,3381,3,298,149, - 0,3363,3365,5,182,0,0,3364,3363,1,0,0,0,3364,3365,1,0,0,0,3365,3366, - 1,0,0,0,3366,3381,5,78,0,0,3367,3368,5,232,0,0,3368,3369,5,183,0, - 0,3369,3370,5,190,0,0,3370,3371,5,183,0,0,3371,3381,5,126,0,0,3372, - 3373,5,38,0,0,3373,3374,5,190,0,0,3374,3375,5,183,0,0,3375,3381, - 5,126,0,0,3376,3377,5,246,0,0,3377,3381,7,1,0,0,3378,3379,5,46,0, - 0,3379,3381,3,170,85,0,3380,3361,1,0,0,0,3380,3364,1,0,0,0,3380, - 3367,1,0,0,0,3380,3372,1,0,0,0,3380,3376,1,0,0,0,3380,3378,1,0,0, - 0,3381,237,1,0,0,0,3382,3383,5,230,0,0,3383,3482,3,144,72,0,3384, - 3385,5,251,0,0,3385,3386,3,298,149,0,3386,3387,5,312,0,0,3387,3388, - 3,138,69,0,3388,3482,1,0,0,0,3389,3390,5,40,0,0,3390,3392,3,138, - 69,0,3391,3393,3,240,120,0,3392,3391,1,0,0,0,3393,3394,1,0,0,0,3394, - 3392,1,0,0,0,3394,3395,1,0,0,0,3395,3397,1,0,0,0,3396,3398,3,244, - 122,0,3397,3396,1,0,0,0,3397,3398,1,0,0,0,3398,3399,1,0,0,0,3399, - 3400,5,88,0,0,3400,3401,5,40,0,0,3401,3482,1,0,0,0,3402,3404,5,40, - 0,0,3403,3405,3,240,120,0,3404,3403,1,0,0,0,3405,3406,1,0,0,0,3406, - 3404,1,0,0,0,3406,3407,1,0,0,0,3407,3409,1,0,0,0,3408,3410,3,244, - 122,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,3411,1,0,0,0,3411, - 3412,5,88,0,0,3412,3413,5,40,0,0,3413,3482,1,0,0,0,3414,3415,5,119, - 0,0,3415,3416,3,138,69,0,3416,3417,5,265,0,0,3417,3421,3,248,124, - 0,3418,3420,3,242,121,0,3419,3418,1,0,0,0,3420,3423,1,0,0,0,3421, - 3419,1,0,0,0,3421,3422,1,0,0,0,3422,3425,1,0,0,0,3423,3421,1,0,0, - 0,3424,3426,3,244,122,0,3425,3424,1,0,0,0,3425,3426,1,0,0,0,3426, - 3427,1,0,0,0,3427,3428,5,88,0,0,3428,3429,5,119,0,0,3429,3482,1, - 0,0,0,3430,3431,5,135,0,0,3431,3482,3,298,149,0,3432,3433,5,151, - 0,0,3433,3482,3,298,149,0,3434,3440,5,32,0,0,3435,3436,3,246,123, - 0,3436,3437,5,325,0,0,3437,3439,1,0,0,0,3438,3435,1,0,0,0,3439,3442, - 1,0,0,0,3440,3438,1,0,0,0,3440,3441,1,0,0,0,3441,3444,1,0,0,0,3442, - 3440,1,0,0,0,3443,3445,3,248,124,0,3444,3443,1,0,0,0,3444,3445,1, - 0,0,0,3445,3446,1,0,0,0,3446,3482,5,88,0,0,3447,3448,3,298,149,0, - 3448,3449,5,10,0,0,3449,3451,1,0,0,0,3450,3447,1,0,0,0,3450,3451, - 1,0,0,0,3451,3452,1,0,0,0,3452,3453,5,161,0,0,3453,3454,3,248,124, - 0,3454,3455,5,88,0,0,3455,3456,5,161,0,0,3456,3482,1,0,0,0,3457, - 3458,3,298,149,0,3458,3459,5,10,0,0,3459,3461,1,0,0,0,3460,3457, - 1,0,0,0,3460,3461,1,0,0,0,3461,3462,1,0,0,0,3462,3463,5,302,0,0, - 3463,3464,3,138,69,0,3464,3465,5,81,0,0,3465,3466,3,248,124,0,3466, - 3467,5,88,0,0,3467,3468,5,302,0,0,3468,3482,1,0,0,0,3469,3470,3, - 298,149,0,3470,3471,5,10,0,0,3471,3473,1,0,0,0,3472,3469,1,0,0,0, - 3472,3473,1,0,0,0,3473,3474,1,0,0,0,3474,3475,5,224,0,0,3475,3476, - 3,248,124,0,3476,3477,5,286,0,0,3477,3478,3,138,69,0,3478,3479,5, - 88,0,0,3479,3480,5,224,0,0,3480,3482,1,0,0,0,3481,3382,1,0,0,0,3481, - 3384,1,0,0,0,3481,3389,1,0,0,0,3481,3402,1,0,0,0,3481,3414,1,0,0, - 0,3481,3430,1,0,0,0,3481,3432,1,0,0,0,3481,3434,1,0,0,0,3481,3450, - 1,0,0,0,3481,3460,1,0,0,0,3481,3472,1,0,0,0,3482,239,1,0,0,0,3483, - 3484,5,300,0,0,3484,3485,3,138,69,0,3485,3486,5,265,0,0,3486,3487, - 3,248,124,0,3487,241,1,0,0,0,3488,3489,5,86,0,0,3489,3490,3,138, - 69,0,3490,3491,5,265,0,0,3491,3492,3,248,124,0,3492,243,1,0,0,0, - 3493,3494,5,84,0,0,3494,3495,3,248,124,0,3495,245,1,0,0,0,3496,3497, - 5,69,0,0,3497,3502,3,298,149,0,3498,3499,5,3,0,0,3499,3501,3,298, - 149,0,3500,3498,1,0,0,0,3501,3504,1,0,0,0,3502,3500,1,0,0,0,3502, - 3503,1,0,0,0,3503,3505,1,0,0,0,3504,3502,1,0,0,0,3505,3508,3,186, - 93,0,3506,3507,5,70,0,0,3507,3509,3,144,72,0,3508,3506,1,0,0,0,3508, - 3509,1,0,0,0,3509,247,1,0,0,0,3510,3511,3,238,119,0,3511,3512,5, - 325,0,0,3512,3514,1,0,0,0,3513,3510,1,0,0,0,3514,3515,1,0,0,0,3515, - 3513,1,0,0,0,3515,3516,1,0,0,0,3516,249,1,0,0,0,3517,3524,5,53,0, - 0,3518,3524,5,248,0,0,3519,3524,5,73,0,0,3520,3524,5,127,0,0,3521, - 3524,5,287,0,0,3522,3524,3,298,149,0,3523,3517,1,0,0,0,3523,3518, - 1,0,0,0,3523,3519,1,0,0,0,3523,3520,1,0,0,0,3523,3521,1,0,0,0,3523, - 3522,1,0,0,0,3524,251,1,0,0,0,3525,3529,5,260,0,0,3526,3529,5,243, - 0,0,3527,3529,3,298,149,0,3528,3525,1,0,0,0,3528,3526,1,0,0,0,3528, - 3527,1,0,0,0,3529,253,1,0,0,0,3530,3532,3,252,126,0,3531,3530,1, - 0,0,0,3531,3532,1,0,0,0,3532,3533,1,0,0,0,3533,3534,3,284,142,0, - 3534,255,1,0,0,0,3535,3538,3,258,129,0,3536,3538,3,262,131,0,3537, - 3535,1,0,0,0,3537,3536,1,0,0,0,3538,257,1,0,0,0,3539,3551,3,298, - 149,0,3540,3541,3,298,149,0,3541,3542,5,4,0,0,3542,3543,3,298,149, - 0,3543,3551,1,0,0,0,3544,3545,3,298,149,0,3545,3546,5,4,0,0,3546, - 3547,3,298,149,0,3547,3548,5,4,0,0,3548,3549,3,298,149,0,3549,3551, - 1,0,0,0,3550,3539,1,0,0,0,3550,3540,1,0,0,0,3550,3544,1,0,0,0,3551, - 259,1,0,0,0,3552,3564,3,298,149,0,3553,3554,3,298,149,0,3554,3555, - 5,4,0,0,3555,3556,3,298,149,0,3556,3564,1,0,0,0,3557,3558,3,298, - 149,0,3558,3559,5,4,0,0,3559,3560,3,298,149,0,3560,3561,5,4,0,0, - 3561,3562,3,298,149,0,3562,3564,1,0,0,0,3563,3552,1,0,0,0,3563,3553, - 1,0,0,0,3563,3557,1,0,0,0,3564,261,1,0,0,0,3565,3577,3,298,149,0, - 3566,3567,3,298,149,0,3567,3568,5,4,0,0,3568,3569,3,298,149,0,3569, - 3577,1,0,0,0,3570,3571,3,298,149,0,3571,3572,5,4,0,0,3572,3573,3, - 298,149,0,3573,3574,5,4,0,0,3574,3575,3,298,149,0,3575,3577,1,0, - 0,0,3576,3565,1,0,0,0,3576,3566,1,0,0,0,3576,3570,1,0,0,0,3577,263, - 1,0,0,0,3578,3590,3,298,149,0,3579,3580,3,298,149,0,3580,3581,5, - 4,0,0,3581,3582,3,298,149,0,3582,3590,1,0,0,0,3583,3584,3,298,149, - 0,3584,3585,5,4,0,0,3585,3586,3,298,149,0,3586,3587,5,4,0,0,3587, - 3588,3,298,149,0,3588,3590,1,0,0,0,3589,3578,1,0,0,0,3589,3579,1, - 0,0,0,3589,3583,1,0,0,0,3590,265,1,0,0,0,3591,3597,3,298,149,0,3592, - 3593,3,298,149,0,3593,3594,5,4,0,0,3594,3595,3,298,149,0,3595,3597, - 1,0,0,0,3596,3591,1,0,0,0,3596,3592,1,0,0,0,3597,267,1,0,0,0,3598, - 3604,3,298,149,0,3599,3600,3,298,149,0,3600,3601,5,4,0,0,3601,3602, - 3,298,149,0,3602,3604,1,0,0,0,3603,3598,1,0,0,0,3603,3599,1,0,0, - 0,3604,269,1,0,0,0,3605,3606,3,298,149,0,3606,271,1,0,0,0,3607,3608, - 3,298,149,0,3608,273,1,0,0,0,3609,3610,3,284,142,0,3610,275,1,0, - 0,0,3611,3612,3,284,142,0,3612,277,1,0,0,0,3613,3616,3,284,142,0, - 3614,3616,4,139,14,0,3615,3613,1,0,0,0,3615,3614,1,0,0,0,3616,279, - 1,0,0,0,3617,3618,3,284,142,0,3618,281,1,0,0,0,3619,3620,3,298,149, - 0,3620,283,1,0,0,0,3621,3626,3,298,149,0,3622,3623,5,4,0,0,3623, - 3625,3,298,149,0,3624,3622,1,0,0,0,3625,3628,1,0,0,0,3626,3624,1, - 0,0,0,3626,3627,1,0,0,0,3627,285,1,0,0,0,3628,3626,1,0,0,0,3629, - 3630,5,103,0,0,3630,3631,3,288,144,0,3631,3632,5,28,0,0,3632,3633, - 5,187,0,0,3633,3634,3,144,72,0,3634,287,1,0,0,0,3635,3636,7,33,0, - 0,3636,289,1,0,0,0,3637,3641,3,292,146,0,3638,3641,5,64,0,0,3639, - 3641,5,60,0,0,3640,3637,1,0,0,0,3640,3638,1,0,0,0,3640,3639,1,0, - 0,0,3641,291,1,0,0,0,3642,3648,3,298,149,0,3643,3644,5,289,0,0,3644, - 3648,3,298,149,0,3645,3646,5,235,0,0,3646,3648,3,298,149,0,3647, - 3642,1,0,0,0,3647,3643,1,0,0,0,3647,3645,1,0,0,0,3648,293,1,0,0, - 0,3649,3654,3,298,149,0,3650,3651,5,3,0,0,3651,3653,3,298,149,0, - 3652,3650,1,0,0,0,3653,3656,1,0,0,0,3654,3652,1,0,0,0,3654,3655, - 1,0,0,0,3655,295,1,0,0,0,3656,3654,1,0,0,0,3657,3665,5,53,0,0,3658, - 3665,5,248,0,0,3659,3665,5,73,0,0,3660,3665,5,127,0,0,3661,3665, - 5,287,0,0,3662,3665,5,93,0,0,3663,3665,3,298,149,0,3664,3657,1,0, - 0,0,3664,3658,1,0,0,0,3664,3659,1,0,0,0,3664,3660,1,0,0,0,3664,3661, - 1,0,0,0,3664,3662,1,0,0,0,3664,3663,1,0,0,0,3665,297,1,0,0,0,3666, - 3672,5,332,0,0,3667,3672,5,334,0,0,3668,3672,3,304,152,0,3669,3672, - 5,335,0,0,3670,3672,5,333,0,0,3671,3666,1,0,0,0,3671,3667,1,0,0, - 0,3671,3668,1,0,0,0,3671,3669,1,0,0,0,3671,3670,1,0,0,0,3672,299, - 1,0,0,0,3673,3675,5,319,0,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0, - 3675,3676,1,0,0,0,3676,3686,5,330,0,0,3677,3679,5,319,0,0,3678,3677, - 1,0,0,0,3678,3679,1,0,0,0,3679,3680,1,0,0,0,3680,3686,5,331,0,0, - 3681,3683,5,319,0,0,3682,3681,1,0,0,0,3682,3683,1,0,0,0,3683,3684, - 1,0,0,0,3684,3686,5,329,0,0,3685,3674,1,0,0,0,3685,3678,1,0,0,0, - 3685,3682,1,0,0,0,3686,301,1,0,0,0,3687,3690,3,298,149,0,3688,3690, - 3,170,85,0,3689,3687,1,0,0,0,3689,3688,1,0,0,0,3690,303,1,0,0,0, - 3691,3692,7,34,0,0,3692,305,1,0,0,0,480,309,318,322,326,330,334, - 347,354,358,362,368,372,379,384,388,394,398,417,423,427,431,435, - 443,447,450,455,461,470,476,480,486,493,501,513,522,531,537,548, - 556,564,571,581,588,596,611,646,649,652,655,661,666,673,679,683, - 687,695,701,705,709,723,731,750,775,778,785,792,801,805,812,820, - 829,835,840,844,852,857,866,872,879,888,894,898,904,911,916,929, - 934,946,950,956,965,970,976,1004,1010,1012,1018,1024,1026,1034,1036, - 1046,1048,1063,1068,1075,1085,1091,1093,1101,1103,1128,1131,1135, - 1139,1157,1160,1171,1174,1190,1200,1204,1210,1213,1222,1234,1237, - 1247,1251,1257,1264,1269,1275,1279,1283,1289,1300,1309,1319,1322, - 1327,1329,1336,1342,1344,1348,1358,1364,1367,1369,1381,1388,1392, - 1395,1399,1403,1410,1419,1422,1425,1430,1434,1442,1445,1451,1458, - 1469,1472,1482,1485,1496,1501,1509,1512,1516,1520,1529,1538,1541, - 1550,1553,1556,1560,1571,1574,1577,1584,1587,1606,1610,1614,1618, - 1622,1626,1628,1639,1644,1653,1662,1665,1671,1683,1686,1695,1698, - 1706,1709,1712,1717,1720,1732,1735,1743,1748,1752,1754,1756,1771, - 1773,1784,1805,1815,1826,1830,1832,1840,1851,1862,1869,1882,1888, - 1914,1929,1934,1938,1948,1954,1960,1968,1973,1980,1982,1988,1994, - 1998,2003,2012,2017,2031,2041,2044,2053,2058,2063,2065,2074,2077, - 2085,2088,2095,2100,2111,2114,2118,2120,2128,2138,2144,2146,2153, - 2157,2159,2166,2170,2172,2174,2183,2194,2198,2208,2218,2222,2230, - 2232,2245,2253,2262,2268,2276,2282,2286,2291,2296,2302,2316,2318, - 2348,2359,2367,2372,2377,2390,2396,2399,2406,2411,2414,2417,2422, - 2429,2432,2441,2444,2448,2451,2454,2469,2472,2491,2495,2503,2507, - 2532,2535,2544,2550,2556,2562,2571,2574,2577,2596,2605,2627,2630, - 2640,2649,2655,2661,2672,2674,2679,2686,2688,2694,2700,2711,2720, - 2725,2730,2732,2734,2740,2742,2752,2761,2763,2769,2771,2774,2784, - 2786,2794,2802,2805,2810,2815,2827,2831,2835,2838,2840,2848,2851, - 2861,2869,2875,2877,2885,2895,2901,2915,2924,2931,2936,2943,2953, - 2958,2965,2991,2996,2998,3005,3009,3016,3020,3036,3051,3058,3067, - 3077,3082,3091,3096,3104,3112,3115,3121,3124,3131,3139,3142,3150, - 3153,3179,3190,3195,3202,3204,3217,3232,3236,3240,3244,3250,3254, - 3258,3262,3264,3274,3281,3290,3297,3304,3311,3320,3332,3335,3346, - 3349,3354,3364,3380,3394,3397,3406,3409,3421,3425,3440,3444,3450, - 3460,3472,3481,3502,3508,3515,3523,3528,3531,3537,3550,3563,3576, - 3589,3596,3603,3615,3626,3640,3647,3654,3664,3671,3674,3678,3682, - 3685,3689 + 8,1,8,3,8,755,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,778,8,8,10,8,12,8,781, + 9,8,3,8,783,8,8,1,8,1,8,1,8,1,8,1,8,3,8,790,8,8,1,8,1,8,1,8,1,8, + 1,8,3,8,797,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,806,8,8,1,8,1,8, + 3,8,810,8,8,1,8,1,8,1,8,1,8,1,8,3,8,817,8,8,1,8,1,8,1,8,1,8,5,8, + 823,8,8,10,8,12,8,826,9,8,1,8,1,8,1,8,1,8,5,8,832,8,8,10,8,12,8, + 835,9,8,1,8,1,8,1,8,3,8,840,8,8,1,8,1,8,1,8,3,8,845,8,8,1,8,1,8, + 3,8,849,8,8,1,8,1,8,1,8,1,8,5,8,855,8,8,10,8,12,8,858,9,8,1,8,1, + 8,3,8,862,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,871,8,8,1,8,1,8,1, + 8,1,8,3,8,877,8,8,1,8,1,8,1,8,5,8,882,8,8,10,8,12,8,885,9,8,1,8, + 1,8,1,8,1,8,5,8,891,8,8,10,8,12,8,894,9,8,1,8,1,8,1,8,3,8,899,8, + 8,1,8,1,8,3,8,903,8,8,1,8,1,8,1,8,1,8,3,8,909,8,8,1,8,1,8,1,8,5, + 8,914,8,8,10,8,12,8,917,9,8,1,8,1,8,3,8,921,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,5,8,932,8,8,10,8,12,8,935,9,8,1,8,1,8,3,8,939, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,951,8,8,1,8,1,8, + 3,8,955,8,8,1,8,1,8,1,8,1,8,3,8,961,8,8,1,8,1,8,1,8,1,8,1,8,5,8, + 968,8,8,10,8,12,8,971,9,8,1,8,1,8,3,8,975,8,8,1,8,1,8,1,8,1,8,3, + 8,981,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1009,8,8,1, + 8,1,8,1,8,1,8,3,8,1015,8,8,3,8,1017,8,8,1,8,1,8,1,8,1,8,3,8,1023, + 8,8,1,8,1,8,1,8,1,8,3,8,1029,8,8,3,8,1031,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,1039,8,8,3,8,1041,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 3,8,1051,8,8,3,8,1053,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,1068,8,8,1,8,1,8,1,8,3,8,1073,8,8,1,8,1,8,1,8, + 1,8,1,8,3,8,1080,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1090,8, + 8,1,8,1,8,1,8,1,8,3,8,1096,8,8,3,8,1098,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,1106,8,8,3,8,1108,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1131,8,8,10, + 8,12,8,1134,9,8,3,8,1136,8,8,1,8,1,8,3,8,1140,8,8,1,8,1,8,3,8,1144, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8, + 1160,8,8,10,8,12,8,1163,9,8,3,8,1165,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,5,8,1174,8,8,10,8,12,8,1177,9,8,3,8,1179,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1195,8,8,1,8,1,8,1,8, + 1,8,1,8,1,8,5,8,1203,8,8,10,8,12,8,1206,9,8,1,8,3,8,1209,8,8,1,8, + 1,8,1,8,1,8,3,8,1215,8,8,1,8,3,8,1218,8,8,1,8,1,8,1,8,1,8,1,8,4, + 8,1225,8,8,11,8,12,8,1226,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,3,8,1239,8,8,1,9,3,9,1242,8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10, + 1250,8,10,10,10,12,10,1253,9,10,1,11,3,11,1256,8,11,1,11,1,11,1, + 12,1,12,3,12,1262,8,12,1,12,1,12,1,12,5,12,1267,8,12,10,12,12,12, + 1270,9,12,1,13,1,13,3,13,1274,8,13,1,14,1,14,1,14,1,14,3,14,1280, + 8,14,1,14,1,14,3,14,1284,8,14,1,14,1,14,3,14,1288,8,14,1,15,1,15, + 1,15,1,15,3,15,1294,8,15,1,16,1,16,1,16,1,16,1,17,1,17,1,17,5,17, + 1303,8,17,10,17,12,17,1306,9,17,1,18,1,18,1,18,1,18,1,19,1,19,3, + 19,1314,8,19,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1322,8,20,10,20, + 12,20,1325,9,20,3,20,1327,8,20,1,20,1,20,1,20,3,20,1332,8,20,3,20, + 1334,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1341,8,20,1,20,1,20,1,20, + 1,20,3,20,1347,8,20,3,20,1349,8,20,1,21,1,21,3,21,1353,8,21,1,22, + 1,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,1363,8,23,1,23,1,23,1,23, + 1,23,3,23,1369,8,23,1,23,5,23,1372,8,23,10,23,12,23,1375,9,23,1, + 24,1,24,1,24,1,24,1,24,1,24,1,24,5,24,1384,8,24,10,24,12,24,1387, + 9,24,1,24,1,24,1,24,1,24,3,24,1393,8,24,1,25,1,25,3,25,1397,8,25, + 1,25,3,25,1400,8,25,1,25,1,25,3,25,1404,8,25,1,26,1,26,3,26,1408, + 8,26,1,26,1,26,1,26,5,26,1413,8,26,10,26,12,26,1416,9,26,1,26,1, + 26,1,26,1,26,5,26,1422,8,26,10,26,12,26,1425,9,26,3,26,1427,8,26, + 1,26,3,26,1430,8,26,1,26,1,26,1,26,3,26,1435,8,26,1,26,3,26,1438, + 8,26,1,26,1,26,1,26,1,26,5,26,1444,8,26,10,26,12,26,1447,9,26,3, + 26,1449,8,26,1,27,1,27,1,27,1,28,1,28,1,28,1,29,3,29,1458,8,29,1, + 29,1,29,1,29,5,29,1463,8,29,10,29,12,29,1466,9,29,1,30,1,30,1,30, + 5,30,1471,8,30,10,30,12,30,1474,9,30,1,31,1,31,1,31,1,31,1,31,1, + 31,5,31,1482,8,31,10,31,12,31,1485,9,31,3,31,1487,8,31,1,31,1,31, + 1,31,1,31,1,31,1,31,5,31,1495,8,31,10,31,12,31,1498,9,31,3,31,1500, + 8,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,5,31,1509,8,31,10,31,12, + 31,1512,9,31,1,31,1,31,3,31,1516,8,31,1,32,1,32,1,32,1,32,5,32,1522, + 8,32,10,32,12,32,1525,9,32,3,32,1527,8,32,1,32,1,32,3,32,1531,8, + 32,1,33,1,33,3,33,1535,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,35,3, + 35,1544,8,35,1,35,1,35,1,35,3,35,1549,8,35,1,35,1,35,1,35,1,35,1, + 35,5,35,1556,8,35,10,35,12,35,1559,9,35,3,35,1561,8,35,1,35,3,35, + 1564,8,35,1,36,1,36,3,36,1568,8,36,1,36,1,36,1,36,1,36,1,36,1,37, + 1,37,1,38,1,38,3,38,1579,8,38,1,38,3,38,1582,8,38,1,38,3,38,1585, + 8,38,1,38,1,38,1,38,1,38,1,38,3,38,1592,8,38,1,38,3,38,1595,8,38, + 1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, + 1,39,1,39,1,39,1,39,3,39,1614,8,39,5,39,1616,8,39,10,39,12,39,1619, + 9,39,1,40,3,40,1622,8,40,1,40,1,40,3,40,1626,8,40,1,40,1,40,3,40, + 1630,8,40,1,40,1,40,3,40,1634,8,40,3,40,1636,8,40,1,41,1,41,1,41, + 1,41,1,41,1,41,1,41,5,41,1645,8,41,10,41,12,41,1648,9,41,1,41,1, + 41,3,41,1652,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1661,8, + 42,1,43,1,43,1,44,1,44,1,45,1,45,1,45,3,45,1670,8,45,1,45,3,45,1673, + 8,45,1,46,1,46,1,46,1,46,3,46,1679,8,46,1,47,1,47,1,47,1,47,1,47, + 1,47,3,47,1687,8,47,1,47,1,47,1,47,1,47,1,47,5,47,1694,8,47,10,47, + 12,47,1697,9,47,3,47,1699,8,47,1,47,1,47,1,47,1,47,5,47,1705,8,47, + 10,47,12,47,1708,9,47,3,47,1710,8,47,1,47,3,47,1713,8,47,1,47,1, + 47,1,47,3,47,1718,8,47,1,47,3,47,1721,8,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,1,47,5,47,1731,8,47,10,47,12,47,1734,9,47,3,47,1736, + 8,47,1,47,1,47,1,47,1,47,5,47,1742,8,47,10,47,12,47,1745,9,47,1, + 47,1,47,3,47,1749,8,47,1,47,1,47,3,47,1753,8,47,3,47,1755,8,47,3, + 47,1757,8,47,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,3,49,1772,8,49,3,49,1774,8,49,1,50,1,50,1,50,1,50,1, + 50,1,50,1,50,1,50,1,50,3,50,1785,8,50,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,3,51,1806,8,51,1,52,1,52,1,52,1,52,1,52,1,52,5,52,1814,8,52,10, + 52,12,52,1817,9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,54,1,54,3,54, + 1827,8,54,1,54,1,54,3,54,1831,8,54,3,54,1833,8,54,1,55,1,55,1,55, + 1,55,5,55,1839,8,55,10,55,12,55,1842,9,55,1,55,1,55,1,56,1,56,1, + 56,1,56,5,56,1850,8,56,10,56,12,56,1853,9,56,1,56,1,56,1,57,1,57, + 1,57,1,57,5,57,1861,8,57,10,57,12,57,1864,9,57,1,57,1,57,1,58,1, + 58,3,58,1870,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5, + 58,1881,8,58,10,58,12,58,1884,9,58,1,58,1,58,1,58,3,58,1889,8,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,1913,8,58,10,58, + 12,58,1916,9,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,3,58,1930,8,58,1,58,1,58,1,58,3,58,1935,8,58,1,58,1,58, + 3,58,1939,8,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1949, + 8,59,1,59,1,59,1,59,1,59,3,59,1955,8,59,1,59,1,59,1,59,1,59,3,59, + 1961,8,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1969,8,59,1,59,1,59, + 1,59,3,59,1974,8,59,1,59,1,59,1,59,1,59,1,59,3,59,1981,8,59,3,59, + 1983,8,59,1,59,1,59,1,59,1,59,3,59,1989,8,59,1,59,1,59,1,59,1,59, + 3,59,1995,8,59,1,59,1,59,3,59,1999,8,59,1,59,1,59,1,59,3,59,2004, + 8,59,1,59,1,59,1,59,1,59,1,59,5,59,2011,8,59,10,59,12,59,2014,9, + 59,1,59,1,59,3,59,2018,8,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1, + 60,1,60,1,60,5,60,2030,8,60,10,60,12,60,2033,9,60,1,60,1,60,1,60, + 1,60,1,60,5,60,2040,8,60,10,60,12,60,2043,9,60,3,60,2045,8,60,1, + 61,1,61,1,62,1,62,1,62,1,62,1,62,3,62,2054,8,62,1,63,1,63,1,63,3, + 63,2059,8,63,1,63,1,63,1,63,3,63,2064,8,63,3,63,2066,8,63,1,64,1, + 64,1,64,1,64,1,64,5,64,2073,8,64,10,64,12,64,2076,9,64,3,64,2078, + 8,64,1,64,1,64,1,64,1,64,5,64,2084,8,64,10,64,12,64,2087,9,64,3, + 64,2089,8,64,1,64,1,64,1,65,1,65,1,65,3,65,2096,8,65,1,65,1,65,1, + 65,3,65,2101,8,65,1,66,1,66,1,66,1,66,1,66,3,66,2108,8,66,1,66,1, + 66,3,66,2112,8,66,3,66,2114,8,66,1,66,1,66,1,66,1,66,1,66,1,66,3, + 66,2122,8,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66,2130,8,66,10,66, + 12,66,2133,9,66,1,66,1,66,1,66,3,66,2138,8,66,3,66,2140,8,66,1,67, + 1,67,1,67,1,67,1,67,3,67,2147,8,67,1,67,1,67,3,67,2151,8,67,3,67, + 2153,8,67,1,67,1,67,1,67,1,67,1,67,3,67,2160,8,67,1,67,1,67,3,67, + 2164,8,67,3,67,2166,8,67,3,67,2168,8,67,1,68,1,68,1,68,1,68,1,68, + 5,68,2175,8,68,10,68,12,68,2178,9,68,1,68,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2188,8,68,1,69,1,69,3,69,2192,8,69,1,70,1,70,1, + 70,1,70,1,70,1,70,5,70,2200,8,70,10,70,12,70,2203,9,70,1,70,1,70, + 1,71,1,71,1,72,1,72,1,72,3,72,2212,8,72,1,72,1,72,3,72,2216,8,72, + 1,72,1,72,1,72,1,72,1,72,1,72,5,72,2224,8,72,10,72,12,72,2227,9, + 72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2239,8, + 73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2247,8,73,1,73,1,73,1,73,1, + 73,1,73,5,73,2254,8,73,10,73,12,73,2257,9,73,1,73,1,73,1,73,3,73, + 2262,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2270,8,73,1,73,1,73, + 1,73,1,73,3,73,2276,8,73,1,73,1,73,3,73,2280,8,73,1,73,1,73,1,73, + 3,73,2285,8,73,1,73,1,73,1,73,3,73,2290,8,73,1,74,1,74,1,74,1,74, + 3,74,2296,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, + 1,74,1,74,5,74,2310,8,74,10,74,12,74,2313,9,74,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,4,75,2340,8,75,11,75, + 12,75,2341,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2351,8,75,10, + 75,12,75,2354,9,75,1,75,1,75,1,75,1,75,1,75,3,75,2361,8,75,1,75, + 1,75,1,75,3,75,2366,8,75,1,75,1,75,1,75,3,75,2371,8,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2382,8,75,10,75,12,75,2385, + 9,75,1,75,1,75,1,75,3,75,2390,8,75,1,75,3,75,2393,8,75,1,75,1,75, + 1,75,1,75,1,75,3,75,2400,8,75,1,75,1,75,1,75,3,75,2405,8,75,1,75, + 3,75,2408,8,75,1,75,3,75,2411,8,75,1,75,1,75,1,75,3,75,2416,8,75, + 1,75,1,75,1,75,5,75,2421,8,75,10,75,12,75,2424,9,75,3,75,2426,8, + 75,1,75,1,75,1,75,1,75,1,75,5,75,2433,8,75,10,75,12,75,2436,9,75, + 3,75,2438,8,75,1,75,1,75,3,75,2442,8,75,1,75,3,75,2445,8,75,1,75, + 3,75,2448,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,5,75,2461,8,75,10,75,12,75,2464,9,75,3,75,2466,8,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,4,75,2483,8,75,11,75,12,75,2484,1,75,1,75,3,75,2489,8,75,1,75, + 1,75,1,75,1,75,4,75,2495,8,75,11,75,12,75,2496,1,75,1,75,3,75,2501, + 8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2524,8,75,10,75, + 12,75,2527,9,75,3,75,2529,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 3,75,2538,8,75,1,75,1,75,1,75,1,75,3,75,2544,8,75,1,75,1,75,1,75, + 1,75,3,75,2550,8,75,1,75,1,75,1,75,1,75,3,75,2556,8,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,3,75,2565,8,75,1,75,3,75,2568,8,75,1,75, + 3,75,2571,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,2590,8,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,3,75,2599,8,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75, + 2619,8,75,10,75,12,75,2622,9,75,3,75,2624,8,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,3,75,2634,8,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,3,75,2643,8,75,1,75,1,75,1,75,1,75,3,75,2649,8,75,1,75,1, + 75,1,75,1,75,3,75,2655,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,3,75,2666,8,75,3,75,2668,8,75,1,75,1,75,1,75,3,75,2673,8, + 75,1,75,1,75,1,75,1,75,1,75,3,75,2680,8,75,3,75,2682,8,75,1,75,1, + 75,1,75,1,75,3,75,2688,8,75,1,75,1,75,1,75,1,75,3,75,2694,8,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2703,8,75,10,75,12,75,2706, + 9,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,2714,8,75,1,75,1,75,1,75, + 3,75,2719,8,75,1,75,1,75,1,75,3,75,2724,8,75,3,75,2726,8,75,3,75, + 2728,8,75,1,75,1,75,1,75,1,75,3,75,2734,8,75,3,75,2736,8,75,1,75, + 1,75,1,75,1,75,1,75,1,75,5,75,2744,8,75,10,75,12,75,2747,9,75,1, + 75,1,75,1,75,1,75,1,75,1,75,3,75,2755,8,75,3,75,2757,8,75,1,75,1, + 75,1,75,1,75,3,75,2763,8,75,3,75,2765,8,75,1,75,3,75,2768,8,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2778,8,75,10,75,12,75, + 2781,9,75,1,76,1,76,1,76,1,76,1,76,3,76,2788,8,76,1,76,1,76,1,76, + 1,76,5,76,2794,8,76,10,76,12,76,2797,9,76,3,76,2799,8,76,1,77,1, + 77,1,77,3,77,2804,8,77,1,78,1,78,1,78,3,78,2809,8,78,1,79,1,79,1, + 79,1,79,1,80,1,80,1,81,1,81,1,81,1,81,3,81,2821,8,81,1,82,1,82,3, + 82,2825,8,82,1,82,1,82,3,82,2829,8,82,1,82,3,82,2832,8,82,3,82,2834, + 8,82,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2842,8,83,1,84,3,84,2845, + 8,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84,2855,8,84,1,85, + 1,85,1,86,1,86,1,86,1,86,3,86,2863,8,86,1,87,1,87,1,87,1,87,3,87, + 2869,8,87,3,87,2871,8,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,2879, + 8,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,3,92,2889,8,92,1,92, + 1,92,1,92,1,92,3,92,2895,8,92,1,93,1,93,1,94,1,94,1,95,1,95,1,95, + 1,95,1,95,1,95,5,95,2907,8,95,10,95,12,95,2910,9,95,1,95,1,95,1, + 95,1,95,1,95,1,95,3,95,2918,8,95,1,95,1,95,1,95,1,95,1,95,3,95,2925, + 8,95,1,95,1,95,1,95,3,95,2930,8,95,1,95,1,95,1,95,1,95,1,95,3,95, + 2937,8,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,3,95,2947,8,95, + 1,95,1,95,1,95,3,95,2952,8,95,1,95,1,95,1,95,1,95,1,95,3,95,2959, + 8,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95, + 1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,5,95,2983,8,95, + 10,95,12,95,2986,9,95,1,95,1,95,3,95,2990,8,95,3,95,2992,8,95,1, + 95,1,95,1,95,1,95,1,95,3,95,2999,8,95,5,95,3001,8,95,10,95,12,95, + 3004,9,95,1,96,1,96,1,96,1,96,3,96,3010,8,96,1,97,1,97,3,97,3014, + 8,97,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100, + 1,100,1,100,3,100,3030,8,100,1,100,1,100,1,100,1,100,1,100,1,100, + 1,100,1,100,1,100,1,100,1,100,5,100,3043,8,100,10,100,12,100,3046, + 9,100,1,100,1,100,1,100,1,100,3,100,3052,8,100,1,100,1,100,1,100, + 1,100,1,100,1,100,1,100,3,100,3061,8,100,1,100,1,100,1,100,1,100, + 1,100,1,100,5,100,3069,8,100,10,100,12,100,3072,9,100,1,100,1,100, + 3,100,3076,8,100,1,100,1,100,1,100,1,100,1,100,5,100,3083,8,100, + 10,100,12,100,3086,9,100,1,100,1,100,3,100,3090,8,100,1,101,1,101, + 1,101,1,101,1,101,1,101,3,101,3098,8,101,1,102,1,102,1,102,1,102, + 5,102,3104,8,102,10,102,12,102,3107,9,102,3,102,3109,8,102,1,102, + 1,102,1,102,1,102,3,102,3115,8,102,1,102,3,102,3118,8,102,1,102, + 1,102,1,102,1,102,1,102,3,102,3125,8,102,1,102,1,102,1,102,1,102, + 5,102,3131,8,102,10,102,12,102,3134,9,102,3,102,3136,8,102,1,102, + 1,102,1,102,1,102,5,102,3142,8,102,10,102,12,102,3145,9,102,3,102, + 3147,8,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,3,103,3173,8,103,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,3,104,3184,8,104,1,105,1,105,1,105, + 3,105,3189,8,105,1,105,1,105,1,105,1,105,1,105,5,105,3196,8,105, + 10,105,12,105,3199,9,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,5,106,3209,8,106,10,106,12,106,3212,9,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,3,106,3226, + 8,106,1,107,1,107,3,107,3230,8,107,1,107,1,107,3,107,3234,8,107, + 1,107,1,107,3,107,3238,8,107,1,107,1,107,1,107,1,107,3,107,3244, + 8,107,1,107,1,107,3,107,3248,8,107,1,107,1,107,3,107,3252,8,107, + 1,107,1,107,3,107,3256,8,107,3,107,3258,8,107,1,108,1,108,1,108, + 1,108,1,109,1,109,1,109,1,109,3,109,3268,8,109,1,110,1,110,1,110, + 1,110,1,110,3,110,3275,8,110,1,111,1,111,1,111,1,111,1,111,1,111, + 1,111,3,111,3284,8,111,1,112,1,112,1,112,1,112,1,112,3,112,3291, + 8,112,1,113,1,113,1,113,1,113,1,113,3,113,3298,8,113,1,114,1,114, + 1,114,5,114,3303,8,114,10,114,12,114,3306,9,114,1,115,1,115,1,115, + 1,115,5,115,3312,8,115,10,115,12,115,3315,9,115,1,115,1,115,1,116, + 1,116,1,116,1,116,1,116,5,116,3324,8,116,10,116,12,116,3327,9,116, + 3,116,3329,8,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,5,117, + 3338,8,117,10,117,12,117,3341,9,117,3,117,3343,8,117,1,117,1,117, + 1,118,3,118,3348,8,118,1,118,1,118,1,119,1,119,1,119,1,120,1,120, + 1,120,3,120,3358,8,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,3374,8,120,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,4,121,3386, + 8,121,11,121,12,121,3387,1,121,3,121,3391,8,121,1,121,1,121,1,121, + 1,121,1,121,4,121,3398,8,121,11,121,12,121,3399,1,121,3,121,3403, + 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,5,121,3413, + 8,121,10,121,12,121,3416,9,121,1,121,3,121,3419,8,121,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,5,121,3432, + 8,121,10,121,12,121,3435,9,121,1,121,3,121,3438,8,121,1,121,1,121, + 1,121,1,121,3,121,3444,8,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,3,121,3454,8,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,3,121,3466,8,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,3,121,3475,8,121,1,122,1,122,1,122,1,122,1,122, + 1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,125,1,125,1,125, + 1,125,5,125,3494,8,125,10,125,12,125,3497,9,125,1,125,1,125,1,125, + 3,125,3502,8,125,1,126,1,126,1,126,4,126,3507,8,126,11,126,12,126, + 3508,1,127,1,127,1,127,1,127,1,127,1,127,3,127,3517,8,127,1,128, + 1,128,1,128,3,128,3522,8,128,1,129,3,129,3525,8,129,1,129,1,129, + 1,130,1,130,3,130,3531,8,130,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,3,131,3544,8,131,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,3557,8,132, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 3,133,3570,8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,3,134,3583,8,134,1,135,1,135,1,135,1,135,1,135, + 3,135,3590,8,135,1,136,1,136,1,136,1,136,1,136,3,136,3597,8,136, + 1,137,1,137,1,138,1,138,1,139,1,139,1,140,1,140,1,141,1,141,3,141, + 3609,8,141,1,142,1,142,1,143,1,143,1,144,1,144,1,144,5,144,3618, + 8,144,10,144,12,144,3621,9,144,1,145,1,145,1,145,1,145,1,145,1,145, + 1,146,1,146,1,147,1,147,1,147,3,147,3634,8,147,1,148,1,148,1,148, + 1,148,1,148,3,148,3641,8,148,1,149,1,149,1,149,5,149,3646,8,149, + 10,149,12,149,3649,9,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 3,150,3658,8,150,1,151,1,151,1,151,1,151,1,151,3,151,3665,8,151, + 1,152,3,152,3668,8,152,1,152,1,152,3,152,3672,8,152,1,152,1,152, + 3,152,3676,8,152,1,152,3,152,3679,8,152,1,153,1,153,3,153,3683,8, + 153,1,154,1,154,1,154,0,7,46,78,144,148,150,190,210,155,0,2,4,6, + 8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50, + 52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94, + 96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128, + 130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160, + 162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192, + 194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224, + 226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,256, + 258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288, + 290,292,294,296,298,300,302,304,306,308,0,35,2,0,39,39,229,229,2, + 0,72,72,131,131,2,0,105,105,122,122,2,0,92,92,123,123,1,0,239,240, + 2,0,101,101,174,174,2,0,324,324,329,329,2,0,91,91,281,281,2,0,29, + 29,75,75,2,0,101,101,148,148,2,0,22,22,79,79,2,0,33,33,259,259,3, + 0,35,35,150,150,270,270,2,0,124,124,247,247,2,0,85,85,89,89,2,0, + 144,144,189,189,2,0,125,125,197,197,2,0,54,54,281,281,1,0,318,319, + 1,0,320,322,1,0,291,293,4,0,89,89,97,97,273,273,283,283,2,0,49,49, + 280,280,2,0,100,100,241,241,1,0,312,317,3,0,22,22,26,26,254,254, + 2,0,97,97,273,273,5,0,67,67,118,118,170,171,245,245,310,310,1,0, + 175,178,2,0,102,102,212,212,3,0,113,113,137,137,263,263,4,0,80,80, + 132,132,160,160,294,294,2,0,192,192,309,309,2,0,268,268,298,298, + 54,0,18,22,24,24,26,27,29,33,35,35,37,39,42,49,51,52,56,56,65,67, + 69,72,74,75,77,78,80,82,85,87,89,89,92,92,95,95,98,102,104,104,107, + 113,116,116,118,121,123,124,126,126,129,129,131,132,134,135,137, + 137,144,151,153,153,155,155,157,157,160,171,173,180,184,189,191, + 193,196,196,198,213,215,220,222,233,235,237,239,247,249,259,261, + 264,266,271,274,276,278,280,282,284,286,289,291,295,297,299,302, + 303,305,311,4236,0,313,1,0,0,0,2,318,1,0,0,0,4,320,1,0,0,0,6,324, + 1,0,0,0,8,328,1,0,0,0,10,332,1,0,0,0,12,336,1,0,0,0,14,340,1,0,0, + 0,16,1238,1,0,0,0,18,1241,1,0,0,0,20,1245,1,0,0,0,22,1255,1,0,0, + 0,24,1259,1,0,0,0,26,1273,1,0,0,0,28,1275,1,0,0,0,30,1289,1,0,0, + 0,32,1295,1,0,0,0,34,1299,1,0,0,0,36,1307,1,0,0,0,38,1313,1,0,0, + 0,40,1315,1,0,0,0,42,1352,1,0,0,0,44,1354,1,0,0,0,46,1356,1,0,0, + 0,48,1392,1,0,0,0,50,1396,1,0,0,0,52,1405,1,0,0,0,54,1450,1,0,0, + 0,56,1453,1,0,0,0,58,1457,1,0,0,0,60,1467,1,0,0,0,62,1515,1,0,0, + 0,64,1530,1,0,0,0,66,1534,1,0,0,0,68,1536,1,0,0,0,70,1543,1,0,0, + 0,72,1565,1,0,0,0,74,1574,1,0,0,0,76,1594,1,0,0,0,78,1596,1,0,0, + 0,80,1635,1,0,0,0,82,1651,1,0,0,0,84,1653,1,0,0,0,86,1662,1,0,0, + 0,88,1664,1,0,0,0,90,1672,1,0,0,0,92,1678,1,0,0,0,94,1680,1,0,0, + 0,96,1758,1,0,0,0,98,1773,1,0,0,0,100,1784,1,0,0,0,102,1805,1,0, + 0,0,104,1807,1,0,0,0,106,1820,1,0,0,0,108,1824,1,0,0,0,110,1834, + 1,0,0,0,112,1845,1,0,0,0,114,1856,1,0,0,0,116,1938,1,0,0,0,118,2017, + 1,0,0,0,120,2044,1,0,0,0,122,2046,1,0,0,0,124,2053,1,0,0,0,126,2065, + 1,0,0,0,128,2067,1,0,0,0,130,2095,1,0,0,0,132,2102,1,0,0,0,134,2167, + 1,0,0,0,136,2187,1,0,0,0,138,2189,1,0,0,0,140,2193,1,0,0,0,142,2206, + 1,0,0,0,144,2215,1,0,0,0,146,2289,1,0,0,0,148,2295,1,0,0,0,150,2767, + 1,0,0,0,152,2782,1,0,0,0,154,2800,1,0,0,0,156,2805,1,0,0,0,158,2810, + 1,0,0,0,160,2814,1,0,0,0,162,2820,1,0,0,0,164,2833,1,0,0,0,166,2841, + 1,0,0,0,168,2854,1,0,0,0,170,2856,1,0,0,0,172,2862,1,0,0,0,174,2870, + 1,0,0,0,176,2878,1,0,0,0,178,2880,1,0,0,0,180,2882,1,0,0,0,182,2884, + 1,0,0,0,184,2886,1,0,0,0,186,2896,1,0,0,0,188,2898,1,0,0,0,190,2991, + 1,0,0,0,192,3009,1,0,0,0,194,3013,1,0,0,0,196,3015,1,0,0,0,198,3020, + 1,0,0,0,200,3089,1,0,0,0,202,3091,1,0,0,0,204,3108,1,0,0,0,206,3172, + 1,0,0,0,208,3183,1,0,0,0,210,3185,1,0,0,0,212,3225,1,0,0,0,214,3257, + 1,0,0,0,216,3259,1,0,0,0,218,3267,1,0,0,0,220,3274,1,0,0,0,222,3283, + 1,0,0,0,224,3290,1,0,0,0,226,3297,1,0,0,0,228,3299,1,0,0,0,230,3307, + 1,0,0,0,232,3318,1,0,0,0,234,3332,1,0,0,0,236,3347,1,0,0,0,238,3351, + 1,0,0,0,240,3373,1,0,0,0,242,3474,1,0,0,0,244,3476,1,0,0,0,246,3481, + 1,0,0,0,248,3486,1,0,0,0,250,3489,1,0,0,0,252,3506,1,0,0,0,254,3516, + 1,0,0,0,256,3521,1,0,0,0,258,3524,1,0,0,0,260,3530,1,0,0,0,262,3543, + 1,0,0,0,264,3556,1,0,0,0,266,3569,1,0,0,0,268,3582,1,0,0,0,270,3589, + 1,0,0,0,272,3596,1,0,0,0,274,3598,1,0,0,0,276,3600,1,0,0,0,278,3602, + 1,0,0,0,280,3604,1,0,0,0,282,3608,1,0,0,0,284,3610,1,0,0,0,286,3612, + 1,0,0,0,288,3614,1,0,0,0,290,3622,1,0,0,0,292,3628,1,0,0,0,294,3633, + 1,0,0,0,296,3640,1,0,0,0,298,3642,1,0,0,0,300,3657,1,0,0,0,302,3664, + 1,0,0,0,304,3678,1,0,0,0,306,3682,1,0,0,0,308,3684,1,0,0,0,310,312, + 3,2,1,0,311,310,1,0,0,0,312,315,1,0,0,0,313,311,1,0,0,0,313,314, + 1,0,0,0,314,316,1,0,0,0,315,313,1,0,0,0,316,317,5,0,0,1,317,1,1, + 0,0,0,318,319,3,4,2,0,319,3,1,0,0,0,320,322,3,16,8,0,321,323,5,325, + 0,0,322,321,1,0,0,0,322,323,1,0,0,0,323,5,1,0,0,0,324,326,3,142, + 71,0,325,327,5,325,0,0,326,325,1,0,0,0,326,327,1,0,0,0,327,7,1,0, + 0,0,328,330,3,228,114,0,329,331,5,325,0,0,330,329,1,0,0,0,330,331, + 1,0,0,0,331,9,1,0,0,0,332,334,3,190,95,0,333,335,5,325,0,0,334,333, + 1,0,0,0,334,335,1,0,0,0,335,11,1,0,0,0,336,338,3,210,105,0,337,339, + 5,325,0,0,338,337,1,0,0,0,338,339,1,0,0,0,339,13,1,0,0,0,340,341, + 3,230,115,0,341,342,5,0,0,1,342,15,1,0,0,0,343,1239,3,18,9,0,344, + 345,5,288,0,0,345,1239,3,270,135,0,346,347,5,53,0,0,347,351,5,42, + 0,0,348,349,5,119,0,0,349,350,5,182,0,0,350,352,5,94,0,0,351,348, + 1,0,0,0,351,352,1,0,0,0,352,353,1,0,0,0,353,354,3,276,138,0,354, + 355,5,290,0,0,355,358,3,302,151,0,356,357,5,46,0,0,357,359,3,174, + 87,0,358,356,1,0,0,0,358,359,1,0,0,0,359,362,1,0,0,0,360,361,5,31, + 0,0,361,363,3,296,148,0,362,360,1,0,0,0,362,363,1,0,0,0,363,366, + 1,0,0,0,364,365,5,304,0,0,365,367,3,32,16,0,366,364,1,0,0,0,366, + 367,1,0,0,0,367,1239,1,0,0,0,368,369,5,83,0,0,369,372,5,42,0,0,370, + 371,5,119,0,0,371,373,5,94,0,0,372,370,1,0,0,0,372,373,1,0,0,0,373, + 374,1,0,0,0,374,376,3,274,137,0,375,377,7,0,0,0,376,375,1,0,0,0, + 376,377,1,0,0,0,377,1239,1,0,0,0,378,379,5,53,0,0,379,383,5,243, + 0,0,380,381,5,119,0,0,381,382,5,182,0,0,382,384,5,94,0,0,383,380, + 1,0,0,0,383,384,1,0,0,0,384,385,1,0,0,0,385,388,3,272,136,0,386, + 387,5,31,0,0,387,389,3,296,148,0,388,386,1,0,0,0,388,389,1,0,0,0, + 389,392,1,0,0,0,390,391,5,304,0,0,391,393,3,32,16,0,392,390,1,0, + 0,0,392,393,1,0,0,0,393,1239,1,0,0,0,394,395,5,83,0,0,395,398,5, + 243,0,0,396,397,5,119,0,0,397,399,5,94,0,0,398,396,1,0,0,0,398,399, + 1,0,0,0,399,400,1,0,0,0,400,402,3,270,135,0,401,403,7,0,0,0,402, + 401,1,0,0,0,402,403,1,0,0,0,403,1239,1,0,0,0,404,405,5,23,0,0,405, + 406,5,243,0,0,406,407,3,270,135,0,407,408,5,223,0,0,408,409,5,269, + 0,0,409,410,3,272,136,0,410,1239,1,0,0,0,411,412,5,23,0,0,412,413, + 5,243,0,0,413,414,3,270,135,0,414,415,5,251,0,0,415,416,5,31,0,0, + 416,417,3,296,148,0,417,1239,1,0,0,0,418,421,5,53,0,0,419,420,5, + 194,0,0,420,422,5,226,0,0,421,419,1,0,0,0,421,422,1,0,0,0,422,423, + 1,0,0,0,423,427,5,260,0,0,424,425,5,119,0,0,425,426,5,182,0,0,426, + 428,5,94,0,0,427,424,1,0,0,0,427,428,1,0,0,0,428,429,1,0,0,0,429, + 431,3,264,132,0,430,432,3,110,55,0,431,430,1,0,0,0,431,432,1,0,0, + 0,432,435,1,0,0,0,433,434,5,46,0,0,434,436,3,174,87,0,435,433,1, + 0,0,0,435,436,1,0,0,0,436,439,1,0,0,0,437,438,5,304,0,0,438,440, + 3,32,16,0,439,437,1,0,0,0,439,440,1,0,0,0,440,441,1,0,0,0,441,447, + 5,28,0,0,442,448,3,18,9,0,443,444,5,1,0,0,444,445,3,18,9,0,445,446, + 5,2,0,0,446,448,1,0,0,0,447,442,1,0,0,0,447,443,1,0,0,0,448,454, + 1,0,0,0,449,451,5,304,0,0,450,452,5,179,0,0,451,450,1,0,0,0,451, + 452,1,0,0,0,452,453,1,0,0,0,453,455,5,65,0,0,454,449,1,0,0,0,454, + 455,1,0,0,0,455,1239,1,0,0,0,456,459,5,53,0,0,457,458,5,194,0,0, + 458,460,5,226,0,0,459,457,1,0,0,0,459,460,1,0,0,0,460,461,1,0,0, + 0,461,465,5,260,0,0,462,463,5,119,0,0,463,464,5,182,0,0,464,466, + 5,94,0,0,465,462,1,0,0,0,465,466,1,0,0,0,466,467,1,0,0,0,467,468, + 3,264,132,0,468,469,5,1,0,0,469,474,3,26,13,0,470,471,5,3,0,0,471, + 473,3,26,13,0,472,470,1,0,0,0,473,476,1,0,0,0,474,472,1,0,0,0,474, + 475,1,0,0,0,475,477,1,0,0,0,476,474,1,0,0,0,477,480,5,2,0,0,478, + 479,5,46,0,0,479,481,3,174,87,0,480,478,1,0,0,0,480,481,1,0,0,0, + 481,484,1,0,0,0,482,483,5,304,0,0,483,485,3,32,16,0,484,482,1,0, + 0,0,484,485,1,0,0,0,485,1239,1,0,0,0,486,487,5,83,0,0,487,490,5, + 260,0,0,488,489,5,119,0,0,489,491,5,94,0,0,490,488,1,0,0,0,490,491, + 1,0,0,0,491,492,1,0,0,0,492,1239,3,262,131,0,493,494,5,127,0,0,494, + 495,5,130,0,0,495,497,3,262,131,0,496,498,3,112,56,0,497,496,1,0, + 0,0,497,498,1,0,0,0,498,499,1,0,0,0,499,500,3,18,9,0,500,1239,1, + 0,0,0,501,502,5,73,0,0,502,503,5,105,0,0,503,505,3,262,131,0,504, + 506,3,54,27,0,505,504,1,0,0,0,505,506,1,0,0,0,506,1239,1,0,0,0,507, + 508,5,274,0,0,508,509,5,260,0,0,509,1239,3,262,131,0,510,511,5,46, + 0,0,511,512,5,190,0,0,512,513,5,260,0,0,513,514,3,262,131,0,514, + 517,5,133,0,0,515,518,3,174,87,0,516,518,5,183,0,0,517,515,1,0,0, + 0,517,516,1,0,0,0,518,1239,1,0,0,0,519,520,5,46,0,0,520,521,5,190, + 0,0,521,522,5,299,0,0,522,523,3,266,133,0,523,526,5,133,0,0,524, + 527,3,174,87,0,525,527,5,183,0,0,526,524,1,0,0,0,526,525,1,0,0,0, + 527,1239,1,0,0,0,528,529,5,46,0,0,529,530,5,190,0,0,530,531,5,44, + 0,0,531,532,3,282,141,0,532,535,5,133,0,0,533,536,3,174,87,0,534, + 536,5,183,0,0,535,533,1,0,0,0,535,534,1,0,0,0,536,1239,1,0,0,0,537, + 538,5,23,0,0,538,541,5,260,0,0,539,540,5,119,0,0,540,542,5,94,0, + 0,541,539,1,0,0,0,541,542,1,0,0,0,542,543,1,0,0,0,543,544,3,262, + 131,0,544,545,5,223,0,0,545,546,5,269,0,0,546,547,3,264,132,0,547, + 1239,1,0,0,0,548,549,5,23,0,0,549,552,5,260,0,0,550,551,5,119,0, + 0,551,553,5,94,0,0,552,550,1,0,0,0,552,553,1,0,0,0,553,554,1,0,0, + 0,554,555,3,262,131,0,555,556,5,19,0,0,556,560,5,44,0,0,557,558, + 5,119,0,0,558,559,5,182,0,0,559,561,5,94,0,0,560,557,1,0,0,0,560, + 561,1,0,0,0,561,562,1,0,0,0,562,563,3,28,14,0,563,1239,1,0,0,0,564, + 565,5,23,0,0,565,568,5,260,0,0,566,567,5,119,0,0,567,569,5,94,0, + 0,568,566,1,0,0,0,568,569,1,0,0,0,569,570,1,0,0,0,570,571,3,262, + 131,0,571,572,5,223,0,0,572,575,5,44,0,0,573,574,5,119,0,0,574,576, + 5,94,0,0,575,573,1,0,0,0,575,576,1,0,0,0,576,577,1,0,0,0,577,578, + 3,282,141,0,578,579,5,269,0,0,579,580,3,286,143,0,580,1239,1,0,0, + 0,581,582,5,23,0,0,582,585,5,260,0,0,583,584,5,119,0,0,584,586,5, + 94,0,0,585,583,1,0,0,0,585,586,1,0,0,0,586,587,1,0,0,0,587,588,3, + 262,131,0,588,589,5,83,0,0,589,592,5,44,0,0,590,591,5,119,0,0,591, + 593,5,94,0,0,592,590,1,0,0,0,592,593,1,0,0,0,593,594,1,0,0,0,594, + 595,3,282,141,0,595,1239,1,0,0,0,596,597,5,23,0,0,597,600,5,260, + 0,0,598,599,5,119,0,0,599,601,5,94,0,0,600,598,1,0,0,0,600,601,1, + 0,0,0,601,602,1,0,0,0,602,603,3,262,131,0,603,604,5,23,0,0,604,605, + 5,44,0,0,605,606,3,282,141,0,606,607,5,251,0,0,607,608,5,65,0,0, + 608,609,5,276,0,0,609,610,3,190,95,0,610,1239,1,0,0,0,611,612,5, + 23,0,0,612,615,5,260,0,0,613,614,5,119,0,0,614,616,5,94,0,0,615, + 613,1,0,0,0,615,616,1,0,0,0,616,617,1,0,0,0,617,618,3,262,131,0, + 618,619,5,23,0,0,619,620,5,44,0,0,620,621,3,282,141,0,621,622,5, + 83,0,0,622,623,5,182,0,0,623,624,5,183,0,0,624,1239,1,0,0,0,625, + 626,5,23,0,0,626,627,5,260,0,0,627,628,3,262,131,0,628,629,5,251, + 0,0,629,630,5,31,0,0,630,631,3,296,148,0,631,1239,1,0,0,0,632,633, + 5,23,0,0,633,634,5,260,0,0,634,635,3,262,131,0,635,636,5,251,0,0, + 636,637,5,216,0,0,637,638,3,34,17,0,638,1239,1,0,0,0,639,640,5,23, + 0,0,640,641,5,260,0,0,641,642,3,262,131,0,642,643,5,93,0,0,643,656, + 3,278,139,0,644,653,5,1,0,0,645,650,3,224,112,0,646,647,5,3,0,0, + 647,649,3,224,112,0,648,646,1,0,0,0,649,652,1,0,0,0,650,648,1,0, + 0,0,650,651,1,0,0,0,651,654,1,0,0,0,652,650,1,0,0,0,653,645,1,0, + 0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,657,5,2,0,0,656,644,1,0, + 0,0,656,657,1,0,0,0,657,659,1,0,0,0,658,660,3,54,27,0,659,658,1, + 0,0,0,659,660,1,0,0,0,660,1239,1,0,0,0,661,662,5,24,0,0,662,665, + 3,262,131,0,663,664,5,304,0,0,664,666,3,32,16,0,665,663,1,0,0,0, + 665,666,1,0,0,0,666,1239,1,0,0,0,667,670,5,53,0,0,668,669,5,194, + 0,0,669,671,5,226,0,0,670,668,1,0,0,0,670,671,1,0,0,0,671,672,1, + 0,0,0,672,673,5,167,0,0,673,677,5,299,0,0,674,675,5,119,0,0,675, + 676,5,182,0,0,676,678,5,94,0,0,677,674,1,0,0,0,677,678,1,0,0,0,678, + 679,1,0,0,0,679,683,3,268,134,0,680,681,5,109,0,0,681,682,5,208, + 0,0,682,684,3,184,92,0,683,680,1,0,0,0,683,684,1,0,0,0,684,687,1, + 0,0,0,685,686,5,46,0,0,686,688,3,174,87,0,687,685,1,0,0,0,687,688, + 1,0,0,0,688,691,1,0,0,0,689,690,5,304,0,0,690,692,3,32,16,0,691, + 689,1,0,0,0,691,692,1,0,0,0,692,693,1,0,0,0,693,694,5,28,0,0,694, + 695,3,18,9,0,695,1239,1,0,0,0,696,699,5,53,0,0,697,698,5,194,0,0, + 698,700,5,226,0,0,699,697,1,0,0,0,699,700,1,0,0,0,700,701,1,0,0, + 0,701,702,5,299,0,0,702,705,3,268,134,0,703,704,5,46,0,0,704,706, + 3,174,87,0,705,703,1,0,0,0,705,706,1,0,0,0,706,709,1,0,0,0,707,708, + 5,246,0,0,708,710,7,1,0,0,709,707,1,0,0,0,709,710,1,0,0,0,710,713, + 1,0,0,0,711,712,5,304,0,0,712,714,3,32,16,0,713,711,1,0,0,0,713, + 714,1,0,0,0,714,715,1,0,0,0,715,716,5,28,0,0,716,717,3,18,9,0,717, + 1239,1,0,0,0,718,719,5,222,0,0,719,720,5,167,0,0,720,721,5,299,0, + 0,721,1239,3,266,133,0,722,723,5,83,0,0,723,724,5,167,0,0,724,727, + 5,299,0,0,725,726,5,119,0,0,726,728,5,94,0,0,727,725,1,0,0,0,727, + 728,1,0,0,0,728,729,1,0,0,0,729,1239,3,266,133,0,730,731,5,23,0, + 0,731,732,5,167,0,0,732,735,5,299,0,0,733,734,5,119,0,0,734,736, + 5,94,0,0,735,733,1,0,0,0,735,736,1,0,0,0,736,737,1,0,0,0,737,738, + 3,266,133,0,738,739,5,223,0,0,739,740,5,269,0,0,740,741,3,268,134, + 0,741,1239,1,0,0,0,742,743,5,23,0,0,743,744,5,167,0,0,744,745,5, + 299,0,0,745,746,3,266,133,0,746,747,5,251,0,0,747,748,5,216,0,0, + 748,749,3,34,17,0,749,1239,1,0,0,0,750,751,5,83,0,0,751,754,5,299, + 0,0,752,753,5,119,0,0,753,755,5,94,0,0,754,752,1,0,0,0,754,755,1, + 0,0,0,755,756,1,0,0,0,756,1239,3,266,133,0,757,758,5,23,0,0,758, + 759,5,299,0,0,759,760,3,266,133,0,760,761,5,223,0,0,761,762,5,269, + 0,0,762,763,3,268,134,0,763,1239,1,0,0,0,764,765,5,23,0,0,765,766, + 5,299,0,0,766,767,3,266,133,0,767,768,5,251,0,0,768,769,5,31,0,0, + 769,770,3,296,148,0,770,1239,1,0,0,0,771,772,5,37,0,0,772,773,3, + 278,139,0,773,782,5,1,0,0,774,779,3,224,112,0,775,776,5,3,0,0,776, + 778,3,224,112,0,777,775,1,0,0,0,778,781,1,0,0,0,779,777,1,0,0,0, + 779,780,1,0,0,0,780,783,1,0,0,0,781,779,1,0,0,0,782,774,1,0,0,0, + 782,783,1,0,0,0,783,784,1,0,0,0,784,785,5,2,0,0,785,1239,1,0,0,0, + 786,789,5,53,0,0,787,788,5,194,0,0,788,790,5,226,0,0,789,787,1,0, + 0,0,789,790,1,0,0,0,790,791,1,0,0,0,791,1239,3,230,115,0,792,793, + 5,83,0,0,793,796,5,107,0,0,794,795,5,119,0,0,795,797,5,94,0,0,796, + 794,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,1239,3,234,117,0, + 799,800,5,53,0,0,800,801,5,235,0,0,801,805,3,302,151,0,802,803,5, + 304,0,0,803,804,5,20,0,0,804,806,3,294,147,0,805,802,1,0,0,0,805, + 806,1,0,0,0,806,809,1,0,0,0,807,808,5,122,0,0,808,810,3,274,137, + 0,809,807,1,0,0,0,809,810,1,0,0,0,810,1239,1,0,0,0,811,812,5,83, + 0,0,812,813,5,235,0,0,813,816,3,302,151,0,814,815,5,122,0,0,815, + 817,3,274,137,0,816,814,1,0,0,0,816,817,1,0,0,0,817,1239,1,0,0,0, + 818,819,5,110,0,0,819,824,3,300,150,0,820,821,5,3,0,0,821,823,3, + 300,150,0,822,820,1,0,0,0,823,826,1,0,0,0,824,822,1,0,0,0,824,825, + 1,0,0,0,825,827,1,0,0,0,826,824,1,0,0,0,827,828,5,269,0,0,828,833, + 3,296,148,0,829,830,5,3,0,0,830,832,3,296,148,0,831,829,1,0,0,0, + 832,835,1,0,0,0,833,831,1,0,0,0,833,834,1,0,0,0,834,839,1,0,0,0, + 835,833,1,0,0,0,836,837,5,304,0,0,837,838,5,20,0,0,838,840,5,193, + 0,0,839,836,1,0,0,0,839,840,1,0,0,0,840,844,1,0,0,0,841,842,5,111, + 0,0,842,843,5,36,0,0,843,845,3,294,147,0,844,841,1,0,0,0,844,845, + 1,0,0,0,845,848,1,0,0,0,846,847,5,122,0,0,847,849,3,274,137,0,848, + 846,1,0,0,0,848,849,1,0,0,0,849,1239,1,0,0,0,850,861,5,110,0,0,851, + 856,3,300,150,0,852,853,5,3,0,0,853,855,3,300,150,0,854,852,1,0, + 0,0,855,858,1,0,0,0,856,854,1,0,0,0,856,857,1,0,0,0,857,862,1,0, + 0,0,858,856,1,0,0,0,859,860,5,22,0,0,860,862,5,215,0,0,861,851,1, + 0,0,0,861,859,1,0,0,0,862,863,1,0,0,0,863,864,5,190,0,0,864,865, + 3,258,129,0,865,866,5,269,0,0,866,870,3,296,148,0,867,868,5,304, + 0,0,868,869,5,110,0,0,869,871,5,193,0,0,870,867,1,0,0,0,870,871, + 1,0,0,0,871,1239,1,0,0,0,872,876,5,233,0,0,873,874,5,20,0,0,874, + 875,5,193,0,0,875,877,5,103,0,0,876,873,1,0,0,0,876,877,1,0,0,0, + 877,878,1,0,0,0,878,883,3,300,150,0,879,880,5,3,0,0,880,882,3,300, + 150,0,881,879,1,0,0,0,882,885,1,0,0,0,883,881,1,0,0,0,883,884,1, + 0,0,0,884,886,1,0,0,0,885,883,1,0,0,0,886,887,5,105,0,0,887,892, + 3,296,148,0,888,889,5,3,0,0,889,891,3,296,148,0,890,888,1,0,0,0, + 891,894,1,0,0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,898,1,0,0,0, + 894,892,1,0,0,0,895,896,5,111,0,0,896,897,5,36,0,0,897,899,3,294, + 147,0,898,895,1,0,0,0,898,899,1,0,0,0,899,902,1,0,0,0,900,901,5, + 122,0,0,901,903,3,274,137,0,902,900,1,0,0,0,902,903,1,0,0,0,903, + 1239,1,0,0,0,904,908,5,233,0,0,905,906,5,110,0,0,906,907,5,193,0, + 0,907,909,5,103,0,0,908,905,1,0,0,0,908,909,1,0,0,0,909,920,1,0, + 0,0,910,915,3,300,150,0,911,912,5,3,0,0,912,914,3,300,150,0,913, + 911,1,0,0,0,914,917,1,0,0,0,915,913,1,0,0,0,915,916,1,0,0,0,916, + 921,1,0,0,0,917,915,1,0,0,0,918,919,5,22,0,0,919,921,5,215,0,0,920, + 910,1,0,0,0,920,918,1,0,0,0,921,922,1,0,0,0,922,923,5,190,0,0,923, + 924,3,258,129,0,924,925,5,105,0,0,925,926,3,296,148,0,926,1239,1, + 0,0,0,927,938,5,74,0,0,928,933,3,254,127,0,929,930,5,3,0,0,930,932, + 3,254,127,0,931,929,1,0,0,0,932,935,1,0,0,0,933,931,1,0,0,0,933, + 934,1,0,0,0,934,939,1,0,0,0,935,933,1,0,0,0,936,937,5,22,0,0,937, + 939,5,215,0,0,938,928,1,0,0,0,938,936,1,0,0,0,939,940,1,0,0,0,940, + 941,5,190,0,0,941,942,3,258,129,0,942,943,5,269,0,0,943,944,3,296, + 148,0,944,1239,1,0,0,0,945,946,5,251,0,0,946,950,5,235,0,0,947,951, + 5,22,0,0,948,951,5,180,0,0,949,951,3,302,151,0,950,947,1,0,0,0,950, + 948,1,0,0,0,950,949,1,0,0,0,951,954,1,0,0,0,952,953,5,122,0,0,953, + 955,3,274,137,0,954,952,1,0,0,0,954,955,1,0,0,0,955,1239,1,0,0,0, + 956,957,5,253,0,0,957,960,5,112,0,0,958,959,5,190,0,0,959,961,3, + 258,129,0,960,958,1,0,0,0,960,961,1,0,0,0,961,1239,1,0,0,0,962,974, + 5,95,0,0,963,964,5,1,0,0,964,969,3,218,109,0,965,966,5,3,0,0,966, + 968,3,218,109,0,967,965,1,0,0,0,968,971,1,0,0,0,969,967,1,0,0,0, + 969,970,1,0,0,0,970,972,1,0,0,0,971,969,1,0,0,0,972,973,5,2,0,0, + 973,975,1,0,0,0,974,963,1,0,0,0,974,975,1,0,0,0,975,976,1,0,0,0, + 976,1239,3,16,8,0,977,978,5,95,0,0,978,980,5,24,0,0,979,981,5,297, + 0,0,980,979,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,1239,3,16, + 8,0,983,984,5,253,0,0,984,985,5,53,0,0,985,986,5,260,0,0,986,1239, + 3,262,131,0,987,988,5,253,0,0,988,989,5,53,0,0,989,990,5,243,0,0, + 990,1239,3,270,135,0,991,992,5,253,0,0,992,993,5,53,0,0,993,994, + 5,299,0,0,994,1239,3,266,133,0,995,996,5,253,0,0,996,997,5,53,0, + 0,997,998,5,167,0,0,998,999,5,299,0,0,999,1239,3,266,133,0,1000, + 1001,5,253,0,0,1001,1002,5,53,0,0,1002,1003,5,107,0,0,1003,1239, + 3,278,139,0,1004,1005,5,253,0,0,1005,1008,5,261,0,0,1006,1007,7, + 2,0,0,1007,1009,3,270,135,0,1008,1006,1,0,0,0,1008,1009,1,0,0,0, + 1009,1016,1,0,0,0,1010,1011,5,154,0,0,1011,1014,3,174,87,0,1012, + 1013,5,90,0,0,1013,1015,3,174,87,0,1014,1012,1,0,0,0,1014,1015,1, + 0,0,0,1015,1017,1,0,0,0,1016,1010,1,0,0,0,1016,1017,1,0,0,0,1017, + 1239,1,0,0,0,1018,1019,5,253,0,0,1019,1022,5,244,0,0,1020,1021,7, + 2,0,0,1021,1023,3,274,137,0,1022,1020,1,0,0,0,1022,1023,1,0,0,0, + 1023,1030,1,0,0,0,1024,1025,5,154,0,0,1025,1028,3,174,87,0,1026, + 1027,5,90,0,0,1027,1029,3,174,87,0,1028,1026,1,0,0,0,1028,1029,1, + 0,0,0,1029,1031,1,0,0,0,1030,1024,1,0,0,0,1030,1031,1,0,0,0,1031, + 1239,1,0,0,0,1032,1033,5,253,0,0,1033,1040,5,43,0,0,1034,1035,5, + 154,0,0,1035,1038,3,174,87,0,1036,1037,5,90,0,0,1037,1039,3,174, + 87,0,1038,1036,1,0,0,0,1038,1039,1,0,0,0,1039,1041,1,0,0,0,1040, + 1034,1,0,0,0,1040,1041,1,0,0,0,1041,1239,1,0,0,0,1042,1043,5,253, + 0,0,1043,1044,5,45,0,0,1044,1045,7,2,0,0,1045,1052,3,260,130,0,1046, + 1047,5,154,0,0,1047,1050,3,174,87,0,1048,1049,5,90,0,0,1049,1051, + 3,174,87,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,1053,1,0,0,0, + 1052,1046,1,0,0,0,1052,1053,1,0,0,0,1053,1239,1,0,0,0,1054,1055, + 5,253,0,0,1055,1056,5,256,0,0,1056,1057,5,103,0,0,1057,1239,3,260, + 130,0,1058,1059,5,253,0,0,1059,1060,5,256,0,0,1060,1061,5,103,0, + 0,1061,1062,5,1,0,0,1062,1063,3,18,9,0,1063,1064,5,2,0,0,1064,1239, + 1,0,0,0,1065,1067,5,253,0,0,1066,1068,5,56,0,0,1067,1066,1,0,0,0, + 1067,1068,1,0,0,0,1068,1069,1,0,0,0,1069,1072,5,236,0,0,1070,1071, + 7,2,0,0,1071,1073,3,274,137,0,1072,1070,1,0,0,0,1072,1073,1,0,0, + 0,1073,1239,1,0,0,0,1074,1075,5,253,0,0,1075,1076,5,235,0,0,1076, + 1079,5,112,0,0,1077,1078,7,2,0,0,1078,1080,3,274,137,0,1079,1077, + 1,0,0,0,1079,1080,1,0,0,0,1080,1239,1,0,0,0,1081,1082,5,76,0,0,1082, + 1239,3,260,130,0,1083,1084,5,75,0,0,1084,1239,3,260,130,0,1085,1086, + 5,253,0,0,1086,1089,5,108,0,0,1087,1088,7,2,0,0,1088,1090,3,270, + 135,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1097,1,0,0,0,1091, + 1092,5,154,0,0,1092,1095,3,174,87,0,1093,1094,5,90,0,0,1094,1096, + 3,174,87,0,1095,1093,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, + 1097,1091,1,0,0,0,1097,1098,1,0,0,0,1098,1239,1,0,0,0,1099,1100, + 5,253,0,0,1100,1107,5,250,0,0,1101,1102,5,154,0,0,1102,1105,3,174, + 87,0,1103,1104,5,90,0,0,1104,1106,3,174,87,0,1105,1103,1,0,0,0,1105, + 1106,1,0,0,0,1106,1108,1,0,0,0,1107,1101,1,0,0,0,1107,1108,1,0,0, + 0,1108,1239,1,0,0,0,1109,1110,5,251,0,0,1110,1111,5,250,0,0,1111, + 1112,5,31,0,0,1112,1239,3,306,153,0,1113,1114,5,227,0,0,1114,1115, + 5,250,0,0,1115,1239,5,31,0,0,1116,1117,5,251,0,0,1117,1118,5,250, + 0,0,1118,1119,3,288,144,0,1119,1120,5,312,0,0,1120,1121,3,142,71, + 0,1121,1239,1,0,0,0,1122,1123,5,227,0,0,1123,1124,5,250,0,0,1124, + 1239,3,288,144,0,1125,1126,5,255,0,0,1126,1135,5,271,0,0,1127,1132, + 3,220,110,0,1128,1129,5,3,0,0,1129,1131,3,220,110,0,1130,1128,1, + 0,0,0,1131,1134,1,0,0,0,1132,1130,1,0,0,0,1132,1133,1,0,0,0,1133, + 1136,1,0,0,0,1134,1132,1,0,0,0,1135,1127,1,0,0,0,1135,1136,1,0,0, + 0,1136,1239,1,0,0,0,1137,1139,5,47,0,0,1138,1140,5,307,0,0,1139, + 1138,1,0,0,0,1139,1140,1,0,0,0,1140,1239,1,0,0,0,1141,1143,5,237, + 0,0,1142,1144,5,307,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144, + 1239,1,0,0,0,1145,1146,5,214,0,0,1146,1147,3,302,151,0,1147,1148, + 5,105,0,0,1148,1149,3,16,8,0,1149,1239,1,0,0,0,1150,1151,5,68,0, + 0,1151,1152,5,214,0,0,1152,1239,3,302,151,0,1153,1154,5,93,0,0,1154, + 1164,3,302,151,0,1155,1156,5,290,0,0,1156,1161,3,142,71,0,1157,1158, + 5,3,0,0,1158,1160,3,142,71,0,1159,1157,1,0,0,0,1160,1163,1,0,0,0, + 1161,1159,1,0,0,0,1161,1162,1,0,0,0,1162,1165,1,0,0,0,1163,1161, + 1,0,0,0,1164,1155,1,0,0,0,1164,1165,1,0,0,0,1165,1239,1,0,0,0,1166, + 1167,5,93,0,0,1167,1168,5,121,0,0,1168,1178,3,174,87,0,1169,1170, + 5,290,0,0,1170,1175,3,142,71,0,1171,1172,5,3,0,0,1172,1174,3,142, + 71,0,1173,1171,1,0,0,0,1174,1177,1,0,0,0,1175,1173,1,0,0,0,1175, + 1176,1,0,0,0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1178,1169,1,0,0, + 0,1178,1179,1,0,0,0,1179,1239,1,0,0,0,1180,1181,5,76,0,0,1181,1182, + 5,126,0,0,1182,1239,3,302,151,0,1183,1184,5,76,0,0,1184,1185,5,198, + 0,0,1185,1239,3,302,151,0,1186,1187,5,251,0,0,1187,1188,5,205,0, + 0,1188,1239,3,228,114,0,1189,1190,5,251,0,0,1190,1191,5,267,0,0, + 1191,1194,5,311,0,0,1192,1195,5,157,0,0,1193,1195,3,142,71,0,1194, + 1192,1,0,0,0,1194,1193,1,0,0,0,1195,1239,1,0,0,0,1196,1197,5,287, + 0,0,1197,1198,3,262,131,0,1198,1199,5,251,0,0,1199,1204,3,216,108, + 0,1200,1201,5,3,0,0,1201,1203,3,216,108,0,1202,1200,1,0,0,0,1203, + 1206,1,0,0,0,1204,1202,1,0,0,0,1204,1205,1,0,0,0,1205,1208,1,0,0, + 0,1206,1204,1,0,0,0,1207,1209,3,54,27,0,1208,1207,1,0,0,0,1208,1209, + 1,0,0,0,1209,1239,1,0,0,0,1210,1211,5,169,0,0,1211,1212,5,130,0, + 0,1212,1217,3,262,131,0,1213,1215,5,28,0,0,1214,1213,1,0,0,0,1214, + 1215,1,0,0,0,1215,1216,1,0,0,0,1216,1218,3,302,151,0,1217,1214,1, + 0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0,1219,1220,5,290,0,0,1220, + 1221,3,78,39,0,1221,1222,5,190,0,0,1222,1224,3,142,71,0,1223,1225, + 3,200,100,0,1224,1223,1,0,0,0,1225,1226,1,0,0,0,1226,1224,1,0,0, + 0,1226,1227,1,0,0,0,1227,1239,1,0,0,0,1228,1229,5,253,0,0,1229,1230, + 5,46,0,0,1230,1231,5,190,0,0,1231,1232,5,260,0,0,1232,1239,3,262, + 131,0,1233,1234,5,253,0,0,1234,1235,5,46,0,0,1235,1236,5,190,0,0, + 1236,1237,5,44,0,0,1237,1239,3,282,141,0,1238,343,1,0,0,0,1238,344, + 1,0,0,0,1238,346,1,0,0,0,1238,368,1,0,0,0,1238,378,1,0,0,0,1238, + 394,1,0,0,0,1238,404,1,0,0,0,1238,411,1,0,0,0,1238,418,1,0,0,0,1238, + 456,1,0,0,0,1238,486,1,0,0,0,1238,493,1,0,0,0,1238,501,1,0,0,0,1238, + 507,1,0,0,0,1238,510,1,0,0,0,1238,519,1,0,0,0,1238,528,1,0,0,0,1238, + 537,1,0,0,0,1238,548,1,0,0,0,1238,564,1,0,0,0,1238,581,1,0,0,0,1238, + 596,1,0,0,0,1238,611,1,0,0,0,1238,625,1,0,0,0,1238,632,1,0,0,0,1238, + 639,1,0,0,0,1238,661,1,0,0,0,1238,667,1,0,0,0,1238,696,1,0,0,0,1238, + 718,1,0,0,0,1238,722,1,0,0,0,1238,730,1,0,0,0,1238,742,1,0,0,0,1238, + 750,1,0,0,0,1238,757,1,0,0,0,1238,764,1,0,0,0,1238,771,1,0,0,0,1238, + 786,1,0,0,0,1238,792,1,0,0,0,1238,799,1,0,0,0,1238,811,1,0,0,0,1238, + 818,1,0,0,0,1238,850,1,0,0,0,1238,872,1,0,0,0,1238,904,1,0,0,0,1238, + 927,1,0,0,0,1238,945,1,0,0,0,1238,956,1,0,0,0,1238,962,1,0,0,0,1238, + 977,1,0,0,0,1238,983,1,0,0,0,1238,987,1,0,0,0,1238,991,1,0,0,0,1238, + 995,1,0,0,0,1238,1000,1,0,0,0,1238,1004,1,0,0,0,1238,1018,1,0,0, + 0,1238,1032,1,0,0,0,1238,1042,1,0,0,0,1238,1054,1,0,0,0,1238,1058, + 1,0,0,0,1238,1065,1,0,0,0,1238,1074,1,0,0,0,1238,1081,1,0,0,0,1238, + 1083,1,0,0,0,1238,1085,1,0,0,0,1238,1099,1,0,0,0,1238,1109,1,0,0, + 0,1238,1113,1,0,0,0,1238,1116,1,0,0,0,1238,1122,1,0,0,0,1238,1125, + 1,0,0,0,1238,1137,1,0,0,0,1238,1141,1,0,0,0,1238,1145,1,0,0,0,1238, + 1150,1,0,0,0,1238,1153,1,0,0,0,1238,1166,1,0,0,0,1238,1180,1,0,0, + 0,1238,1183,1,0,0,0,1238,1186,1,0,0,0,1238,1189,1,0,0,0,1238,1196, + 1,0,0,0,1238,1210,1,0,0,0,1238,1228,1,0,0,0,1238,1233,1,0,0,0,1239, + 17,1,0,0,0,1240,1242,3,20,10,0,1241,1240,1,0,0,0,1241,1242,1,0,0, + 0,1242,1243,1,0,0,0,1243,1244,3,22,11,0,1244,19,1,0,0,0,1245,1246, + 5,304,0,0,1246,1251,3,230,115,0,1247,1248,5,3,0,0,1248,1250,3,230, + 115,0,1249,1247,1,0,0,0,1250,1253,1,0,0,0,1251,1249,1,0,0,0,1251, + 1252,1,0,0,0,1252,21,1,0,0,0,1253,1251,1,0,0,0,1254,1256,3,24,12, + 0,1255,1254,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1258, + 3,40,20,0,1258,23,1,0,0,0,1259,1261,5,304,0,0,1260,1262,5,221,0, + 0,1261,1260,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1268, + 3,72,36,0,1264,1265,5,3,0,0,1265,1267,3,72,36,0,1266,1264,1,0,0, + 0,1267,1270,1,0,0,0,1268,1266,1,0,0,0,1268,1269,1,0,0,0,1269,25, + 1,0,0,0,1270,1268,1,0,0,0,1271,1274,3,28,14,0,1272,1274,3,30,15, + 0,1273,1271,1,0,0,0,1273,1272,1,0,0,0,1274,27,1,0,0,0,1275,1276, + 3,286,143,0,1276,1279,3,190,95,0,1277,1278,5,182,0,0,1278,1280,5, + 183,0,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,1283,1,0,0,0,1281, + 1282,5,46,0,0,1282,1284,3,174,87,0,1283,1281,1,0,0,0,1283,1284,1, + 0,0,0,1284,1287,1,0,0,0,1285,1286,5,304,0,0,1286,1288,3,32,16,0, + 1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,29,1,0,0,0,1289,1290,5, + 154,0,0,1290,1293,3,262,131,0,1291,1292,7,3,0,0,1292,1294,5,216, + 0,0,1293,1291,1,0,0,0,1293,1294,1,0,0,0,1294,31,1,0,0,0,1295,1296, + 5,1,0,0,1296,1297,3,34,17,0,1297,1298,5,2,0,0,1298,33,1,0,0,0,1299, + 1304,3,36,18,0,1300,1301,5,3,0,0,1301,1303,3,36,18,0,1302,1300,1, + 0,0,0,1303,1306,1,0,0,0,1304,1302,1,0,0,0,1304,1305,1,0,0,0,1305, + 35,1,0,0,0,1306,1304,1,0,0,0,1307,1308,3,302,151,0,1308,1309,5,312, + 0,0,1309,1310,3,38,19,0,1310,37,1,0,0,0,1311,1314,5,70,0,0,1312, + 1314,3,142,71,0,1313,1311,1,0,0,0,1313,1312,1,0,0,0,1314,39,1,0, + 0,0,1315,1326,3,46,23,0,1316,1317,5,195,0,0,1317,1318,5,36,0,0,1318, + 1323,3,50,25,0,1319,1320,5,3,0,0,1320,1322,3,50,25,0,1321,1319,1, + 0,0,0,1322,1325,1,0,0,0,1323,1321,1,0,0,0,1323,1324,1,0,0,0,1324, + 1327,1,0,0,0,1325,1323,1,0,0,0,1326,1316,1,0,0,0,1326,1327,1,0,0, + 0,1327,1333,1,0,0,0,1328,1329,5,188,0,0,1329,1331,3,44,22,0,1330, + 1332,7,4,0,0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1334,1,0,0, + 0,1333,1328,1,0,0,0,1333,1334,1,0,0,0,1334,1348,1,0,0,0,1335,1336, + 5,155,0,0,1336,1349,3,42,21,0,1337,1338,5,98,0,0,1338,1340,7,5,0, + 0,1339,1341,3,44,22,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341,1342, + 1,0,0,0,1342,1346,7,4,0,0,1343,1347,5,192,0,0,1344,1345,5,304,0, + 0,1345,1347,5,266,0,0,1346,1343,1,0,0,0,1346,1344,1,0,0,0,1347,1349, + 1,0,0,0,1348,1335,1,0,0,0,1348,1337,1,0,0,0,1348,1349,1,0,0,0,1349, + 41,1,0,0,0,1350,1353,5,22,0,0,1351,1353,3,44,22,0,1352,1350,1,0, + 0,0,1352,1351,1,0,0,0,1353,43,1,0,0,0,1354,1355,7,6,0,0,1355,45, + 1,0,0,0,1356,1357,6,23,-1,0,1357,1358,3,48,24,0,1358,1373,1,0,0, + 0,1359,1360,10,2,0,0,1360,1362,5,128,0,0,1361,1363,3,74,37,0,1362, + 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0,0,0,1364,1372,3,46, + 23,3,1365,1366,10,1,0,0,1366,1368,7,7,0,0,1367,1369,3,74,37,0,1368, + 1367,1,0,0,0,1368,1369,1,0,0,0,1369,1370,1,0,0,0,1370,1372,3,46, + 23,2,1371,1359,1,0,0,0,1371,1365,1,0,0,0,1372,1375,1,0,0,0,1373, + 1371,1,0,0,0,1373,1374,1,0,0,0,1374,47,1,0,0,0,1375,1373,1,0,0,0, + 1376,1393,3,52,26,0,1377,1378,5,260,0,0,1378,1393,3,262,131,0,1379, + 1380,5,296,0,0,1380,1385,3,142,71,0,1381,1382,5,3,0,0,1382,1384, + 3,142,71,0,1383,1381,1,0,0,0,1384,1387,1,0,0,0,1385,1383,1,0,0,0, + 1385,1386,1,0,0,0,1386,1393,1,0,0,0,1387,1385,1,0,0,0,1388,1389, + 5,1,0,0,1389,1390,3,40,20,0,1390,1391,5,2,0,0,1391,1393,1,0,0,0, + 1392,1376,1,0,0,0,1392,1377,1,0,0,0,1392,1379,1,0,0,0,1392,1388, + 1,0,0,0,1393,49,1,0,0,0,1394,1397,3,282,141,0,1395,1397,3,142,71, + 0,1396,1394,1,0,0,0,1396,1395,1,0,0,0,1397,1399,1,0,0,0,1398,1400, + 7,8,0,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1403,1,0,0,0,1401, + 1402,5,185,0,0,1402,1404,7,9,0,0,1403,1401,1,0,0,0,1403,1404,1,0, + 0,0,1404,51,1,0,0,0,1405,1407,5,248,0,0,1406,1408,3,74,37,0,1407, + 1406,1,0,0,0,1407,1408,1,0,0,0,1408,1409,1,0,0,0,1409,1414,3,76, + 38,0,1410,1411,5,3,0,0,1411,1413,3,76,38,0,1412,1410,1,0,0,0,1413, + 1416,1,0,0,0,1414,1412,1,0,0,0,1414,1415,1,0,0,0,1415,1426,1,0,0, + 0,1416,1414,1,0,0,0,1417,1418,5,105,0,0,1418,1423,3,78,39,0,1419, + 1420,5,3,0,0,1420,1422,3,78,39,0,1421,1419,1,0,0,0,1422,1425,1,0, + 0,0,1423,1421,1,0,0,0,1423,1424,1,0,0,0,1424,1427,1,0,0,0,1425,1423, + 1,0,0,0,1426,1417,1,0,0,0,1426,1427,1,0,0,0,1427,1429,1,0,0,0,1428, + 1430,3,54,27,0,1429,1428,1,0,0,0,1429,1430,1,0,0,0,1430,1434,1,0, + 0,0,1431,1432,5,114,0,0,1432,1433,5,36,0,0,1433,1435,3,58,29,0,1434, + 1431,1,0,0,0,1434,1435,1,0,0,0,1435,1437,1,0,0,0,1436,1438,3,56, + 28,0,1437,1436,1,0,0,0,1437,1438,1,0,0,0,1438,1448,1,0,0,0,1439, + 1440,5,303,0,0,1440,1445,3,68,34,0,1441,1442,5,3,0,0,1442,1444,3, + 68,34,0,1443,1441,1,0,0,0,1444,1447,1,0,0,0,1445,1443,1,0,0,0,1445, + 1446,1,0,0,0,1446,1449,1,0,0,0,1447,1445,1,0,0,0,1448,1439,1,0,0, + 0,1448,1449,1,0,0,0,1449,53,1,0,0,0,1450,1451,5,301,0,0,1451,1452, + 3,144,72,0,1452,55,1,0,0,0,1453,1454,5,117,0,0,1454,1455,3,144,72, + 0,1455,57,1,0,0,0,1456,1458,3,74,37,0,1457,1456,1,0,0,0,1457,1458, + 1,0,0,0,1458,1459,1,0,0,0,1459,1464,3,62,31,0,1460,1461,5,3,0,0, + 1461,1463,3,62,31,0,1462,1460,1,0,0,0,1463,1466,1,0,0,0,1464,1462, + 1,0,0,0,1464,1465,1,0,0,0,1465,59,1,0,0,0,1466,1464,1,0,0,0,1467, + 1472,3,142,71,0,1468,1469,5,3,0,0,1469,1471,3,142,71,0,1470,1468, + 1,0,0,0,1471,1474,1,0,0,0,1472,1470,1,0,0,0,1472,1473,1,0,0,0,1473, + 61,1,0,0,0,1474,1472,1,0,0,0,1475,1516,3,64,32,0,1476,1477,5,238, + 0,0,1477,1486,5,1,0,0,1478,1483,3,64,32,0,1479,1480,5,3,0,0,1480, + 1482,3,64,32,0,1481,1479,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0, + 0,0,1483,1484,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1486,1478, + 1,0,0,0,1486,1487,1,0,0,0,1487,1488,1,0,0,0,1488,1516,5,2,0,0,1489, + 1490,5,55,0,0,1490,1499,5,1,0,0,1491,1496,3,64,32,0,1492,1493,5, + 3,0,0,1493,1495,3,64,32,0,1494,1492,1,0,0,0,1495,1498,1,0,0,0,1496, + 1494,1,0,0,0,1496,1497,1,0,0,0,1497,1500,1,0,0,0,1498,1496,1,0,0, + 0,1499,1491,1,0,0,0,1499,1500,1,0,0,0,1500,1501,1,0,0,0,1501,1516, + 5,2,0,0,1502,1503,5,115,0,0,1503,1504,5,252,0,0,1504,1505,5,1,0, + 0,1505,1510,3,64,32,0,1506,1507,5,3,0,0,1507,1509,3,64,32,0,1508, + 1506,1,0,0,0,1509,1512,1,0,0,0,1510,1508,1,0,0,0,1510,1511,1,0,0, + 0,1511,1513,1,0,0,0,1512,1510,1,0,0,0,1513,1514,5,2,0,0,1514,1516, + 1,0,0,0,1515,1475,1,0,0,0,1515,1476,1,0,0,0,1515,1489,1,0,0,0,1515, + 1502,1,0,0,0,1516,63,1,0,0,0,1517,1526,5,1,0,0,1518,1523,3,66,33, + 0,1519,1520,5,3,0,0,1520,1522,3,66,33,0,1521,1519,1,0,0,0,1522,1525, + 1,0,0,0,1523,1521,1,0,0,0,1523,1524,1,0,0,0,1524,1527,1,0,0,0,1525, + 1523,1,0,0,0,1526,1518,1,0,0,0,1526,1527,1,0,0,0,1527,1528,1,0,0, + 0,1528,1531,5,2,0,0,1529,1531,3,66,33,0,1530,1517,1,0,0,0,1530,1529, + 1,0,0,0,1531,65,1,0,0,0,1532,1535,3,282,141,0,1533,1535,3,142,71, + 0,1534,1532,1,0,0,0,1534,1533,1,0,0,0,1535,67,1,0,0,0,1536,1537, + 3,302,151,0,1537,1538,5,28,0,0,1538,1539,5,1,0,0,1539,1540,3,70, + 35,0,1540,1541,5,2,0,0,1541,69,1,0,0,0,1542,1544,3,302,151,0,1543, + 1542,1,0,0,0,1543,1544,1,0,0,0,1544,1548,1,0,0,0,1545,1546,5,201, + 0,0,1546,1547,5,36,0,0,1547,1549,3,60,30,0,1548,1545,1,0,0,0,1548, + 1549,1,0,0,0,1549,1560,1,0,0,0,1550,1551,5,195,0,0,1551,1552,5,36, + 0,0,1552,1557,3,50,25,0,1553,1554,5,3,0,0,1554,1556,3,50,25,0,1555, + 1553,1,0,0,0,1556,1559,1,0,0,0,1557,1555,1,0,0,0,1557,1558,1,0,0, + 0,1558,1561,1,0,0,0,1559,1557,1,0,0,0,1560,1550,1,0,0,0,1560,1561, + 1,0,0,0,1561,1563,1,0,0,0,1562,1564,3,204,102,0,1563,1562,1,0,0, + 0,1563,1564,1,0,0,0,1564,71,1,0,0,0,1565,1567,3,302,151,0,1566,1568, + 3,114,57,0,1567,1566,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0, + 1569,1570,5,28,0,0,1570,1571,5,1,0,0,1571,1572,3,22,11,0,1572,1573, + 5,2,0,0,1573,73,1,0,0,0,1574,1575,7,10,0,0,1575,75,1,0,0,0,1576, + 1579,3,282,141,0,1577,1579,3,142,71,0,1578,1576,1,0,0,0,1578,1577, + 1,0,0,0,1579,1584,1,0,0,0,1580,1582,5,28,0,0,1581,1580,1,0,0,0,1581, + 1582,1,0,0,0,1582,1583,1,0,0,0,1583,1585,3,302,151,0,1584,1581,1, + 0,0,0,1584,1585,1,0,0,0,1585,1595,1,0,0,0,1586,1587,3,150,75,0,1587, + 1588,5,4,0,0,1588,1591,5,320,0,0,1589,1590,5,28,0,0,1590,1592,3, + 114,57,0,1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,1595,1,0,0,0,1593, + 1595,5,320,0,0,1594,1578,1,0,0,0,1594,1586,1,0,0,0,1594,1593,1,0, + 0,0,1595,77,1,0,0,0,1596,1597,6,39,-1,0,1597,1598,3,84,42,0,1598, + 1617,1,0,0,0,1599,1613,10,2,0,0,1600,1601,5,54,0,0,1601,1602,5,136, + 0,0,1602,1614,3,84,42,0,1603,1604,3,80,40,0,1604,1605,5,136,0,0, + 1605,1606,3,78,39,0,1606,1607,3,82,41,0,1607,1614,1,0,0,0,1608,1609, + 5,172,0,0,1609,1610,3,80,40,0,1610,1611,5,136,0,0,1611,1612,3,84, + 42,0,1612,1614,1,0,0,0,1613,1600,1,0,0,0,1613,1603,1,0,0,0,1613, + 1608,1,0,0,0,1614,1616,1,0,0,0,1615,1599,1,0,0,0,1616,1619,1,0,0, + 0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,79,1,0,0,0,1619,1617, + 1,0,0,0,1620,1622,5,125,0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0, + 1622,1636,1,0,0,0,1623,1625,5,152,0,0,1624,1626,5,197,0,0,1625,1624, + 1,0,0,0,1625,1626,1,0,0,0,1626,1636,1,0,0,0,1627,1629,5,234,0,0, + 1628,1630,5,197,0,0,1629,1628,1,0,0,0,1629,1630,1,0,0,0,1630,1636, + 1,0,0,0,1631,1633,5,106,0,0,1632,1634,5,197,0,0,1633,1632,1,0,0, + 0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635,1621,1,0,0,0,1635,1623, + 1,0,0,0,1635,1627,1,0,0,0,1635,1631,1,0,0,0,1636,81,1,0,0,0,1637, + 1638,5,190,0,0,1638,1652,3,144,72,0,1639,1640,5,290,0,0,1640,1641, + 5,1,0,0,1641,1646,3,302,151,0,1642,1643,5,3,0,0,1643,1645,3,302, + 151,0,1644,1642,1,0,0,0,1645,1648,1,0,0,0,1646,1644,1,0,0,0,1646, + 1647,1,0,0,0,1647,1649,1,0,0,0,1648,1646,1,0,0,0,1649,1650,5,2,0, + 0,1650,1652,1,0,0,0,1651,1637,1,0,0,0,1651,1639,1,0,0,0,1652,83, + 1,0,0,0,1653,1660,3,94,47,0,1654,1655,5,262,0,0,1655,1656,3,86,43, + 0,1656,1657,5,1,0,0,1657,1658,3,142,71,0,1658,1659,5,2,0,0,1659, + 1661,1,0,0,0,1660,1654,1,0,0,0,1660,1661,1,0,0,0,1661,85,1,0,0,0, + 1662,1663,7,11,0,0,1663,87,1,0,0,0,1664,1665,7,12,0,0,1665,89,1, + 0,0,0,1666,1673,5,89,0,0,1667,1669,5,274,0,0,1668,1670,3,174,87, + 0,1669,1668,1,0,0,0,1669,1670,1,0,0,0,1670,1671,1,0,0,0,1671,1673, + 3,92,46,0,1672,1666,1,0,0,0,1672,1667,1,0,0,0,1673,91,1,0,0,0,1674, + 1675,5,304,0,0,1675,1679,5,51,0,0,1676,1677,5,306,0,0,1677,1679, + 5,51,0,0,1678,1674,1,0,0,0,1678,1676,1,0,0,0,1679,93,1,0,0,0,1680, + 1756,3,108,54,0,1681,1682,5,166,0,0,1682,1686,5,1,0,0,1683,1684, + 5,201,0,0,1684,1685,5,36,0,0,1685,1687,3,60,30,0,1686,1683,1,0,0, + 0,1686,1687,1,0,0,0,1687,1698,1,0,0,0,1688,1689,5,195,0,0,1689,1690, + 5,36,0,0,1690,1695,3,50,25,0,1691,1692,5,3,0,0,1692,1694,3,50,25, + 0,1693,1691,1,0,0,0,1694,1697,1,0,0,0,1695,1693,1,0,0,0,1695,1696, + 1,0,0,0,1696,1699,1,0,0,0,1697,1695,1,0,0,0,1698,1688,1,0,0,0,1698, + 1699,1,0,0,0,1699,1709,1,0,0,0,1700,1701,5,168,0,0,1701,1706,3,96, + 48,0,1702,1703,5,3,0,0,1703,1705,3,96,48,0,1704,1702,1,0,0,0,1705, + 1708,1,0,0,0,1706,1704,1,0,0,0,1706,1707,1,0,0,0,1707,1710,1,0,0, + 0,1708,1706,1,0,0,0,1709,1700,1,0,0,0,1709,1710,1,0,0,0,1710,1712, + 1,0,0,0,1711,1713,3,98,49,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0, + 1713,1717,1,0,0,0,1714,1715,5,21,0,0,1715,1716,5,163,0,0,1716,1718, + 3,102,51,0,1717,1714,1,0,0,0,1717,1718,1,0,0,0,1718,1720,1,0,0,0, + 1719,1721,7,13,0,0,1720,1719,1,0,0,0,1720,1721,1,0,0,0,1721,1722, + 1,0,0,0,1722,1723,5,206,0,0,1723,1724,5,1,0,0,1724,1725,3,210,105, + 0,1725,1735,5,2,0,0,1726,1727,5,257,0,0,1727,1732,3,104,52,0,1728, + 1729,5,3,0,0,1729,1731,3,104,52,0,1730,1728,1,0,0,0,1731,1734,1, + 0,0,0,1732,1730,1,0,0,0,1732,1733,1,0,0,0,1733,1736,1,0,0,0,1734, + 1732,1,0,0,0,1735,1726,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0,0, + 0,1737,1738,5,71,0,0,1738,1743,3,106,53,0,1739,1740,5,3,0,0,1740, + 1742,3,106,53,0,1741,1739,1,0,0,0,1742,1745,1,0,0,0,1743,1741,1, + 0,0,0,1743,1744,1,0,0,0,1744,1746,1,0,0,0,1745,1743,1,0,0,0,1746, + 1754,5,2,0,0,1747,1749,5,28,0,0,1748,1747,1,0,0,0,1748,1749,1,0, + 0,0,1749,1750,1,0,0,0,1750,1752,3,302,151,0,1751,1753,3,114,57,0, + 1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1755,1,0,0,0,1754,1748, + 1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0,0,1756,1681,1,0,0,0,1756, + 1757,1,0,0,0,1757,95,1,0,0,0,1758,1759,3,142,71,0,1759,1760,5,28, + 0,0,1760,1761,3,302,151,0,1761,97,1,0,0,0,1762,1763,5,191,0,0,1763, + 1764,5,239,0,0,1764,1765,5,207,0,0,1765,1774,5,163,0,0,1766,1767, + 5,22,0,0,1767,1768,5,240,0,0,1768,1769,5,207,0,0,1769,1771,5,163, + 0,0,1770,1772,3,100,50,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, + 1774,1,0,0,0,1773,1762,1,0,0,0,1773,1766,1,0,0,0,1774,99,1,0,0,0, + 1775,1776,5,253,0,0,1776,1777,5,85,0,0,1777,1785,5,165,0,0,1778, + 1779,5,189,0,0,1779,1780,5,85,0,0,1780,1785,5,165,0,0,1781,1782, + 5,304,0,0,1782,1783,5,284,0,0,1783,1785,5,240,0,0,1784,1775,1,0, + 0,0,1784,1778,1,0,0,0,1784,1781,1,0,0,0,1785,101,1,0,0,0,1786,1787, + 5,5,0,0,1787,1788,5,269,0,0,1788,1789,5,174,0,0,1789,1806,5,239, + 0,0,1790,1791,5,5,0,0,1791,1792,5,204,0,0,1792,1793,5,148,0,0,1793, + 1806,5,239,0,0,1794,1795,5,5,0,0,1795,1796,5,269,0,0,1796,1797,5, + 101,0,0,1797,1806,3,302,151,0,1798,1799,5,5,0,0,1799,1800,5,269, + 0,0,1800,1801,5,148,0,0,1801,1806,3,302,151,0,1802,1803,5,5,0,0, + 1803,1804,5,269,0,0,1804,1806,3,302,151,0,1805,1786,1,0,0,0,1805, + 1790,1,0,0,0,1805,1794,1,0,0,0,1805,1798,1,0,0,0,1805,1802,1,0,0, + 0,1806,103,1,0,0,0,1807,1808,3,302,151,0,1808,1809,5,312,0,0,1809, + 1810,5,1,0,0,1810,1815,3,302,151,0,1811,1812,5,3,0,0,1812,1814,3, + 302,151,0,1813,1811,1,0,0,0,1814,1817,1,0,0,0,1815,1813,1,0,0,0, + 1815,1816,1,0,0,0,1816,1818,1,0,0,0,1817,1815,1,0,0,0,1818,1819, + 5,2,0,0,1819,105,1,0,0,0,1820,1821,3,302,151,0,1821,1822,5,28,0, + 0,1822,1823,3,142,71,0,1823,107,1,0,0,0,1824,1832,3,116,58,0,1825, + 1827,5,28,0,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0, + 0,0,1828,1830,3,302,151,0,1829,1831,3,114,57,0,1830,1829,1,0,0,0, + 1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1826,1,0,0,0,1832,1833, + 1,0,0,0,1833,109,1,0,0,0,1834,1835,5,1,0,0,1835,1840,3,286,143,0, + 1836,1837,5,3,0,0,1837,1839,3,286,143,0,1838,1836,1,0,0,0,1839,1842, + 1,0,0,0,1840,1838,1,0,0,0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842, + 1840,1,0,0,0,1843,1844,5,2,0,0,1844,111,1,0,0,0,1845,1846,5,1,0, + 0,1846,1851,3,282,141,0,1847,1848,5,3,0,0,1848,1850,3,282,141,0, + 1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851,1849,1,0,0,0,1851,1852, + 1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0,0,1854,1855,5,2,0,0,1855, + 113,1,0,0,0,1856,1857,5,1,0,0,1857,1862,3,302,151,0,1858,1859,5, + 3,0,0,1859,1861,3,302,151,0,1860,1858,1,0,0,0,1861,1864,1,0,0,0, + 1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1865,1,0,0,0,1864,1862, + 1,0,0,0,1865,1866,5,2,0,0,1866,115,1,0,0,0,1867,1869,3,260,130,0, + 1868,1870,3,290,145,0,1869,1868,1,0,0,0,1869,1870,1,0,0,0,1870,1939, + 1,0,0,0,1871,1872,5,1,0,0,1872,1873,3,22,11,0,1873,1874,5,2,0,0, + 1874,1939,1,0,0,0,1875,1876,5,285,0,0,1876,1877,5,1,0,0,1877,1882, + 3,142,71,0,1878,1879,5,3,0,0,1879,1881,3,142,71,0,1880,1878,1,0, + 0,0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1882,1883,1,0,0,0,1883,1885, + 1,0,0,0,1884,1882,1,0,0,0,1885,1888,5,2,0,0,1886,1887,5,304,0,0, + 1887,1889,5,196,0,0,1888,1886,1,0,0,0,1888,1889,1,0,0,0,1889,1939, + 1,0,0,0,1890,1891,5,149,0,0,1891,1892,5,1,0,0,1892,1893,3,22,11, + 0,1893,1894,5,2,0,0,1894,1939,1,0,0,0,1895,1896,5,260,0,0,1896,1897, + 5,1,0,0,1897,1898,3,128,64,0,1898,1899,5,2,0,0,1899,1939,1,0,0,0, + 1900,1901,5,1,0,0,1901,1902,3,78,39,0,1902,1903,5,2,0,0,1903,1939, + 1,0,0,0,1904,1905,5,142,0,0,1905,1906,5,1,0,0,1906,1907,3,152,76, + 0,1907,1908,5,45,0,0,1908,1909,5,1,0,0,1909,1914,3,118,59,0,1910, + 1911,5,3,0,0,1911,1913,3,118,59,0,1912,1910,1,0,0,0,1913,1916,1, + 0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1917,1,0,0,0,1916, + 1914,1,0,0,0,1917,1929,5,2,0,0,1918,1919,5,210,0,0,1919,1920,5,1, + 0,0,1920,1921,3,120,60,0,1921,1922,5,2,0,0,1922,1930,1,0,0,0,1923, + 1924,5,210,0,0,1924,1925,5,70,0,0,1925,1926,5,1,0,0,1926,1927,3, + 126,63,0,1927,1928,5,2,0,0,1928,1930,1,0,0,0,1929,1918,1,0,0,0,1929, + 1923,1,0,0,0,1929,1930,1,0,0,0,1930,1934,1,0,0,0,1931,1932,7,14, + 0,0,1932,1933,5,190,0,0,1933,1935,5,89,0,0,1934,1931,1,0,0,0,1934, + 1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,2,0,0,1937,1939,1,0,0, + 0,1938,1867,1,0,0,0,1938,1871,1,0,0,0,1938,1875,1,0,0,0,1938,1890, + 1,0,0,0,1938,1895,1,0,0,0,1938,1900,1,0,0,0,1938,1904,1,0,0,0,1939, + 117,1,0,0,0,1940,1941,3,302,151,0,1941,1942,5,103,0,0,1942,1943, + 5,196,0,0,1943,2018,1,0,0,0,1944,1945,3,302,151,0,1945,1948,3,190, + 95,0,1946,1947,5,205,0,0,1947,1949,3,174,87,0,1948,1946,1,0,0,0, + 1948,1949,1,0,0,0,1949,1954,1,0,0,0,1950,1951,3,162,81,0,1951,1952, + 5,190,0,0,1952,1953,5,85,0,0,1953,1955,1,0,0,0,1954,1950,1,0,0,0, + 1954,1955,1,0,0,0,1955,1960,1,0,0,0,1956,1957,3,162,81,0,1957,1958, + 5,190,0,0,1958,1959,5,89,0,0,1959,1961,1,0,0,0,1960,1956,1,0,0,0, + 1960,1961,1,0,0,0,1961,2018,1,0,0,0,1962,1963,3,302,151,0,1963,1964, + 3,190,95,0,1964,1965,5,104,0,0,1965,1968,3,156,78,0,1966,1967,5, + 205,0,0,1967,1969,3,174,87,0,1968,1966,1,0,0,0,1968,1969,1,0,0,0, + 1969,1973,1,0,0,0,1970,1971,3,164,82,0,1971,1972,5,308,0,0,1972, + 1974,1,0,0,0,1973,1970,1,0,0,0,1973,1974,1,0,0,0,1974,1982,1,0,0, + 0,1975,1976,7,15,0,0,1976,1980,5,218,0,0,1977,1978,5,190,0,0,1978, + 1979,5,242,0,0,1979,1981,5,264,0,0,1980,1977,1,0,0,0,1980,1981,1, + 0,0,0,1981,1983,1,0,0,0,1982,1975,1,0,0,0,1982,1983,1,0,0,0,1983, + 1988,1,0,0,0,1984,1985,3,166,83,0,1985,1986,5,190,0,0,1986,1987, + 5,85,0,0,1987,1989,1,0,0,0,1988,1984,1,0,0,0,1988,1989,1,0,0,0,1989, + 1994,1,0,0,0,1990,1991,3,166,83,0,1991,1992,5,190,0,0,1992,1993, + 5,89,0,0,1993,1995,1,0,0,0,1994,1990,1,0,0,0,1994,1995,1,0,0,0,1995, + 2018,1,0,0,0,1996,1998,5,173,0,0,1997,1999,5,205,0,0,1998,1997,1, + 0,0,0,1998,1999,1,0,0,0,1999,2000,1,0,0,0,2000,2003,3,174,87,0,2001, + 2002,5,28,0,0,2002,2004,3,302,151,0,2003,2001,1,0,0,0,2003,2004, + 1,0,0,0,2004,2005,1,0,0,0,2005,2006,5,45,0,0,2006,2007,5,1,0,0,2007, + 2012,3,118,59,0,2008,2009,5,3,0,0,2009,2011,3,118,59,0,2010,2008, + 1,0,0,0,2011,2014,1,0,0,0,2012,2010,1,0,0,0,2012,2013,1,0,0,0,2013, + 2015,1,0,0,0,2014,2012,1,0,0,0,2015,2016,5,2,0,0,2016,2018,1,0,0, + 0,2017,1940,1,0,0,0,2017,1944,1,0,0,0,2017,1962,1,0,0,0,2017,1996, + 1,0,0,0,2018,119,1,0,0,0,2019,2045,3,122,61,0,2020,2021,3,122,61, + 0,2021,2022,7,16,0,0,2022,2023,3,124,62,0,2023,2045,1,0,0,0,2024, + 2025,3,124,62,0,2025,2026,5,281,0,0,2026,2031,3,124,62,0,2027,2028, + 5,281,0,0,2028,2030,3,124,62,0,2029,2027,1,0,0,0,2030,2033,1,0,0, + 0,2031,2029,1,0,0,0,2031,2032,1,0,0,0,2032,2045,1,0,0,0,2033,2031, + 1,0,0,0,2034,2035,3,124,62,0,2035,2036,5,54,0,0,2036,2041,3,124, + 62,0,2037,2038,5,54,0,0,2038,2040,3,124,62,0,2039,2037,1,0,0,0,2040, + 2043,1,0,0,0,2041,2039,1,0,0,0,2041,2042,1,0,0,0,2042,2045,1,0,0, + 0,2043,2041,1,0,0,0,2044,2019,1,0,0,0,2044,2020,1,0,0,0,2044,2024, + 1,0,0,0,2044,2034,1,0,0,0,2045,121,1,0,0,0,2046,2047,3,302,151,0, + 2047,123,1,0,0,0,2048,2054,3,122,61,0,2049,2050,5,1,0,0,2050,2051, + 3,120,60,0,2051,2052,5,2,0,0,2052,2054,1,0,0,0,2053,2048,1,0,0,0, + 2053,2049,1,0,0,0,2054,125,1,0,0,0,2055,2058,7,16,0,0,2056,2057, + 5,3,0,0,2057,2059,7,17,0,0,2058,2056,1,0,0,0,2058,2059,1,0,0,0,2059, + 2066,1,0,0,0,2060,2063,7,17,0,0,2061,2062,5,3,0,0,2062,2064,7,16, + 0,0,2063,2061,1,0,0,0,2063,2064,1,0,0,0,2064,2066,1,0,0,0,2065,2055, + 1,0,0,0,2065,2060,1,0,0,0,2066,127,1,0,0,0,2067,2068,3,278,139,0, + 2068,2077,5,1,0,0,2069,2074,3,130,65,0,2070,2071,5,3,0,0,2071,2073, + 3,130,65,0,2072,2070,1,0,0,0,2073,2076,1,0,0,0,2074,2072,1,0,0,0, + 2074,2075,1,0,0,0,2075,2078,1,0,0,0,2076,2074,1,0,0,0,2077,2069, + 1,0,0,0,2077,2078,1,0,0,0,2078,2088,1,0,0,0,2079,2080,5,52,0,0,2080, + 2085,3,140,70,0,2081,2082,5,3,0,0,2082,2084,3,140,70,0,2083,2081, + 1,0,0,0,2084,2087,1,0,0,0,2085,2083,1,0,0,0,2085,2086,1,0,0,0,2086, + 2089,1,0,0,0,2087,2085,1,0,0,0,2088,2079,1,0,0,0,2088,2089,1,0,0, + 0,2089,2090,1,0,0,0,2090,2091,5,2,0,0,2091,129,1,0,0,0,2092,2093, + 3,302,151,0,2093,2094,5,6,0,0,2094,2096,1,0,0,0,2095,2092,1,0,0, + 0,2095,2096,1,0,0,0,2096,2100,1,0,0,0,2097,2101,3,132,66,0,2098, + 2101,3,136,68,0,2099,2101,3,142,71,0,2100,2097,1,0,0,0,2100,2098, + 1,0,0,0,2100,2099,1,0,0,0,2101,131,1,0,0,0,2102,2113,3,134,67,0, + 2103,2104,5,201,0,0,2104,2111,5,36,0,0,2105,2107,5,1,0,0,2106,2108, + 3,60,30,0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108,2109,1,0,0,0, + 2109,2112,5,2,0,0,2110,2112,3,142,71,0,2111,2105,1,0,0,0,2111,2110, + 1,0,0,0,2112,2114,1,0,0,0,2113,2103,1,0,0,0,2113,2114,1,0,0,0,2114, + 2121,1,0,0,0,2115,2116,5,217,0,0,2116,2117,5,300,0,0,2117,2122,5, + 85,0,0,2118,2119,5,144,0,0,2119,2120,5,300,0,0,2120,2122,5,85,0, + 0,2121,2115,1,0,0,0,2121,2118,1,0,0,0,2121,2122,1,0,0,0,2122,2139, + 1,0,0,0,2123,2124,5,195,0,0,2124,2137,5,36,0,0,2125,2126,5,1,0,0, + 2126,2131,3,50,25,0,2127,2128,5,3,0,0,2128,2130,3,50,25,0,2129,2127, + 1,0,0,0,2130,2133,1,0,0,0,2131,2129,1,0,0,0,2131,2132,1,0,0,0,2132, + 2134,1,0,0,0,2133,2131,1,0,0,0,2134,2135,5,2,0,0,2135,2138,1,0,0, + 0,2136,2138,3,50,25,0,2137,2125,1,0,0,0,2137,2136,1,0,0,0,2138,2140, + 1,0,0,0,2139,2123,1,0,0,0,2139,2140,1,0,0,0,2140,133,1,0,0,0,2141, + 2142,5,260,0,0,2142,2143,5,1,0,0,2143,2144,3,262,131,0,2144,2152, + 5,2,0,0,2145,2147,5,28,0,0,2146,2145,1,0,0,0,2146,2147,1,0,0,0,2147, + 2148,1,0,0,0,2148,2150,3,302,151,0,2149,2151,3,114,57,0,2150,2149, + 1,0,0,0,2150,2151,1,0,0,0,2151,2153,1,0,0,0,2152,2146,1,0,0,0,2152, + 2153,1,0,0,0,2153,2168,1,0,0,0,2154,2155,5,260,0,0,2155,2156,5,1, + 0,0,2156,2157,3,22,11,0,2157,2165,5,2,0,0,2158,2160,5,28,0,0,2159, + 2158,1,0,0,0,2159,2160,1,0,0,0,2160,2161,1,0,0,0,2161,2163,3,302, + 151,0,2162,2164,3,114,57,0,2163,2162,1,0,0,0,2163,2164,1,0,0,0,2164, + 2166,1,0,0,0,2165,2159,1,0,0,0,2165,2166,1,0,0,0,2166,2168,1,0,0, + 0,2167,2141,1,0,0,0,2167,2154,1,0,0,0,2168,135,1,0,0,0,2169,2170, + 5,77,0,0,2170,2171,5,1,0,0,2171,2176,3,138,69,0,2172,2173,5,3,0, + 0,2173,2175,3,138,69,0,2174,2172,1,0,0,0,2175,2178,1,0,0,0,2176, + 2174,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0,2178,2176,1,0,0, + 0,2179,2180,5,2,0,0,2180,2188,1,0,0,0,2181,2182,5,41,0,0,2182,2183, + 5,1,0,0,2183,2184,5,183,0,0,2184,2185,5,28,0,0,2185,2186,5,77,0, + 0,2186,2188,5,2,0,0,2187,2169,1,0,0,0,2187,2181,1,0,0,0,2188,137, + 1,0,0,0,2189,2191,3,302,151,0,2190,2192,3,190,95,0,2191,2190,1,0, + 0,0,2191,2192,1,0,0,0,2192,139,1,0,0,0,2193,2194,5,1,0,0,2194,2195, + 3,288,144,0,2195,2196,5,3,0,0,2196,2201,3,288,144,0,2197,2198,5, + 3,0,0,2198,2200,3,288,144,0,2199,2197,1,0,0,0,2200,2203,1,0,0,0, + 2201,2199,1,0,0,0,2201,2202,1,0,0,0,2202,2204,1,0,0,0,2203,2201, + 1,0,0,0,2204,2205,5,2,0,0,2205,141,1,0,0,0,2206,2207,3,144,72,0, + 2207,143,1,0,0,0,2208,2209,6,72,-1,0,2209,2211,3,148,74,0,2210,2212, + 3,146,73,0,2211,2210,1,0,0,0,2211,2212,1,0,0,0,2212,2216,1,0,0,0, + 2213,2214,5,182,0,0,2214,2216,3,144,72,3,2215,2208,1,0,0,0,2215, + 2213,1,0,0,0,2216,2225,1,0,0,0,2217,2218,10,2,0,0,2218,2219,5,25, + 0,0,2219,2224,3,144,72,3,2220,2221,10,1,0,0,2221,2222,5,194,0,0, + 2222,2224,3,144,72,2,2223,2217,1,0,0,0,2223,2220,1,0,0,0,2224,2227, + 1,0,0,0,2225,2223,1,0,0,0,2225,2226,1,0,0,0,2226,145,1,0,0,0,2227, + 2225,1,0,0,0,2228,2229,3,178,89,0,2229,2230,3,148,74,0,2230,2290, + 1,0,0,0,2231,2232,3,178,89,0,2232,2233,3,180,90,0,2233,2234,5,1, + 0,0,2234,2235,3,22,11,0,2235,2236,5,2,0,0,2236,2290,1,0,0,0,2237, + 2239,5,182,0,0,2238,2237,1,0,0,0,2238,2239,1,0,0,0,2239,2240,1,0, + 0,0,2240,2241,5,34,0,0,2241,2242,3,148,74,0,2242,2243,5,25,0,0,2243, + 2244,3,148,74,0,2244,2290,1,0,0,0,2245,2247,5,182,0,0,2246,2245, + 1,0,0,0,2246,2247,1,0,0,0,2247,2248,1,0,0,0,2248,2249,5,122,0,0, + 2249,2250,5,1,0,0,2250,2255,3,142,71,0,2251,2252,5,3,0,0,2252,2254, + 3,142,71,0,2253,2251,1,0,0,0,2254,2257,1,0,0,0,2255,2253,1,0,0,0, + 2255,2256,1,0,0,0,2256,2258,1,0,0,0,2257,2255,1,0,0,0,2258,2259, + 5,2,0,0,2259,2290,1,0,0,0,2260,2262,5,182,0,0,2261,2260,1,0,0,0, + 2261,2262,1,0,0,0,2262,2263,1,0,0,0,2263,2264,5,122,0,0,2264,2265, + 5,1,0,0,2265,2266,3,22,11,0,2266,2267,5,2,0,0,2267,2290,1,0,0,0, + 2268,2270,5,182,0,0,2269,2268,1,0,0,0,2269,2270,1,0,0,0,2270,2271, + 1,0,0,0,2271,2272,5,154,0,0,2272,2275,3,148,74,0,2273,2274,5,90, + 0,0,2274,2276,3,148,74,0,2275,2273,1,0,0,0,2275,2276,1,0,0,0,2276, + 2290,1,0,0,0,2277,2279,5,133,0,0,2278,2280,5,182,0,0,2279,2278,1, + 0,0,0,2279,2280,1,0,0,0,2280,2281,1,0,0,0,2281,2290,5,183,0,0,2282, + 2284,5,133,0,0,2283,2285,5,182,0,0,2284,2283,1,0,0,0,2284,2285,1, + 0,0,0,2285,2286,1,0,0,0,2286,2287,5,79,0,0,2287,2288,5,105,0,0,2288, + 2290,3,148,74,0,2289,2228,1,0,0,0,2289,2231,1,0,0,0,2289,2238,1, + 0,0,0,2289,2246,1,0,0,0,2289,2261,1,0,0,0,2289,2269,1,0,0,0,2289, + 2277,1,0,0,0,2289,2282,1,0,0,0,2290,147,1,0,0,0,2291,2292,6,74,-1, + 0,2292,2296,3,150,75,0,2293,2294,7,18,0,0,2294,2296,3,148,74,4,2295, + 2291,1,0,0,0,2295,2293,1,0,0,0,2296,2311,1,0,0,0,2297,2298,10,3, + 0,0,2298,2299,7,19,0,0,2299,2310,3,148,74,4,2300,2301,10,2,0,0,2301, + 2302,7,18,0,0,2302,2310,3,148,74,3,2303,2304,10,1,0,0,2304,2305, + 5,323,0,0,2305,2310,3,148,74,2,2306,2307,10,5,0,0,2307,2308,5,30, + 0,0,2308,2310,3,176,88,0,2309,2297,1,0,0,0,2309,2300,1,0,0,0,2309, + 2303,1,0,0,0,2309,2306,1,0,0,0,2310,2313,1,0,0,0,2311,2309,1,0,0, + 0,2311,2312,1,0,0,0,2312,149,1,0,0,0,2313,2311,1,0,0,0,2314,2315, + 6,75,-1,0,2315,2768,5,183,0,0,2316,2768,3,184,92,0,2317,2318,3,302, + 151,0,2318,2319,3,174,87,0,2319,2768,1,0,0,0,2320,2321,5,82,0,0, + 2321,2322,5,213,0,0,2322,2768,3,174,87,0,2323,2768,3,304,152,0,2324, + 2768,3,182,91,0,2325,2768,3,174,87,0,2326,2768,5,328,0,0,2327,2768, + 5,324,0,0,2328,2329,5,211,0,0,2329,2330,5,1,0,0,2330,2331,3,148, + 74,0,2331,2332,5,122,0,0,2332,2333,3,148,74,0,2333,2334,5,2,0,0, + 2334,2768,1,0,0,0,2335,2336,5,1,0,0,2336,2339,3,142,71,0,2337,2338, + 5,3,0,0,2338,2340,3,142,71,0,2339,2337,1,0,0,0,2340,2341,1,0,0,0, + 2341,2339,1,0,0,0,2341,2342,1,0,0,0,2342,2343,1,0,0,0,2343,2344, + 5,2,0,0,2344,2768,1,0,0,0,2345,2346,5,239,0,0,2346,2347,5,1,0,0, + 2347,2352,3,142,71,0,2348,2349,5,3,0,0,2349,2351,3,142,71,0,2350, + 2348,1,0,0,0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0, + 0,2353,2355,1,0,0,0,2354,2352,1,0,0,0,2355,2356,5,2,0,0,2356,2768, + 1,0,0,0,2357,2358,5,156,0,0,2358,2360,5,1,0,0,2359,2361,3,74,37, + 0,2360,2359,1,0,0,0,2360,2361,1,0,0,0,2361,2362,1,0,0,0,2362,2365, + 3,142,71,0,2363,2364,5,3,0,0,2364,2366,3,174,87,0,2365,2363,1,0, + 0,0,2365,2366,1,0,0,0,2366,2370,1,0,0,0,2367,2368,5,190,0,0,2368, + 2369,5,200,0,0,2369,2371,3,90,45,0,2370,2367,1,0,0,0,2370,2371,1, + 0,0,0,2371,2372,1,0,0,0,2372,2373,5,2,0,0,2373,2374,5,305,0,0,2374, + 2375,5,114,0,0,2375,2376,5,1,0,0,2376,2377,5,195,0,0,2377,2378,5, + 36,0,0,2378,2383,3,50,25,0,2379,2380,5,3,0,0,2380,2382,3,50,25,0, + 2381,2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384, + 1,0,0,0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,2,0,0,2387, + 2389,1,0,0,0,2388,2390,3,198,99,0,2389,2388,1,0,0,0,2389,2390,1, + 0,0,0,2390,2768,1,0,0,0,2391,2393,3,170,85,0,2392,2391,1,0,0,0,2392, + 2393,1,0,0,0,2393,2394,1,0,0,0,2394,2395,3,278,139,0,2395,2399,5, + 1,0,0,2396,2397,3,302,151,0,2397,2398,5,4,0,0,2398,2400,1,0,0,0, + 2399,2396,1,0,0,0,2399,2400,1,0,0,0,2400,2401,1,0,0,0,2401,2402, + 5,320,0,0,2402,2404,5,2,0,0,2403,2405,3,198,99,0,2404,2403,1,0,0, + 0,2404,2405,1,0,0,0,2405,2407,1,0,0,0,2406,2408,3,202,101,0,2407, + 2406,1,0,0,0,2407,2408,1,0,0,0,2408,2768,1,0,0,0,2409,2411,3,170, + 85,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0,0,0,2412, + 2413,3,278,139,0,2413,2425,5,1,0,0,2414,2416,3,74,37,0,2415,2414, + 1,0,0,0,2415,2416,1,0,0,0,2416,2417,1,0,0,0,2417,2422,3,142,71,0, + 2418,2419,5,3,0,0,2419,2421,3,142,71,0,2420,2418,1,0,0,0,2421,2424, + 1,0,0,0,2422,2420,1,0,0,0,2422,2423,1,0,0,0,2423,2426,1,0,0,0,2424, + 2422,1,0,0,0,2425,2415,1,0,0,0,2425,2426,1,0,0,0,2426,2437,1,0,0, + 0,2427,2428,5,195,0,0,2428,2429,5,36,0,0,2429,2434,3,50,25,0,2430, + 2431,5,3,0,0,2431,2433,3,50,25,0,2432,2430,1,0,0,0,2433,2436,1,0, + 0,0,2434,2432,1,0,0,0,2434,2435,1,0,0,0,2435,2438,1,0,0,0,2436,2434, + 1,0,0,0,2437,2427,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0,0,0,2439, + 2441,5,2,0,0,2440,2442,3,198,99,0,2441,2440,1,0,0,0,2441,2442,1, + 0,0,0,2442,2447,1,0,0,0,2443,2445,3,172,86,0,2444,2443,1,0,0,0,2444, + 2445,1,0,0,0,2445,2446,1,0,0,0,2446,2448,3,202,101,0,2447,2444,1, + 0,0,0,2447,2448,1,0,0,0,2448,2768,1,0,0,0,2449,2450,3,302,151,0, + 2450,2451,3,202,101,0,2451,2768,1,0,0,0,2452,2453,3,302,151,0,2453, + 2454,5,7,0,0,2454,2455,3,142,71,0,2455,2768,1,0,0,0,2456,2465,5, + 1,0,0,2457,2462,3,302,151,0,2458,2459,5,3,0,0,2459,2461,3,302,151, + 0,2460,2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1,0,0,0,2462,2463, + 1,0,0,0,2463,2466,1,0,0,0,2464,2462,1,0,0,0,2465,2457,1,0,0,0,2465, + 2466,1,0,0,0,2466,2467,1,0,0,0,2467,2468,5,2,0,0,2468,2469,5,7,0, + 0,2469,2768,3,142,71,0,2470,2471,5,1,0,0,2471,2472,3,22,11,0,2472, + 2473,5,2,0,0,2473,2768,1,0,0,0,2474,2475,5,94,0,0,2475,2476,5,1, + 0,0,2476,2477,3,22,11,0,2477,2478,5,2,0,0,2478,2768,1,0,0,0,2479, + 2480,5,40,0,0,2480,2482,3,142,71,0,2481,2483,3,196,98,0,2482,2481, + 1,0,0,0,2483,2484,1,0,0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485, + 2488,1,0,0,0,2486,2487,5,84,0,0,2487,2489,3,142,71,0,2488,2486,1, + 0,0,0,2488,2489,1,0,0,0,2489,2490,1,0,0,0,2490,2491,5,88,0,0,2491, + 2768,1,0,0,0,2492,2494,5,40,0,0,2493,2495,3,196,98,0,2494,2493,1, + 0,0,0,2495,2496,1,0,0,0,2496,2494,1,0,0,0,2496,2497,1,0,0,0,2497, + 2500,1,0,0,0,2498,2499,5,84,0,0,2499,2501,3,142,71,0,2500,2498,1, + 0,0,0,2500,2501,1,0,0,0,2501,2502,1,0,0,0,2502,2503,5,88,0,0,2503, + 2768,1,0,0,0,2504,2505,5,41,0,0,2505,2506,5,1,0,0,2506,2507,3,142, + 71,0,2507,2508,5,28,0,0,2508,2509,3,190,95,0,2509,2510,5,2,0,0,2510, + 2768,1,0,0,0,2511,2512,5,275,0,0,2512,2513,5,1,0,0,2513,2514,3,142, + 71,0,2514,2515,5,28,0,0,2515,2516,3,190,95,0,2516,2517,5,2,0,0,2517, + 2768,1,0,0,0,2518,2519,5,27,0,0,2519,2528,5,8,0,0,2520,2525,3,142, + 71,0,2521,2522,5,3,0,0,2522,2524,3,142,71,0,2523,2521,1,0,0,0,2524, + 2527,1,0,0,0,2525,2523,1,0,0,0,2525,2526,1,0,0,0,2526,2529,1,0,0, + 0,2527,2525,1,0,0,0,2528,2520,1,0,0,0,2528,2529,1,0,0,0,2529,2530, + 1,0,0,0,2530,2768,5,9,0,0,2531,2768,3,284,142,0,2532,2768,5,58,0, + 0,2533,2537,5,62,0,0,2534,2535,5,1,0,0,2535,2536,5,329,0,0,2536, + 2538,5,2,0,0,2537,2534,1,0,0,0,2537,2538,1,0,0,0,2538,2768,1,0,0, + 0,2539,2543,5,63,0,0,2540,2541,5,1,0,0,2541,2542,5,329,0,0,2542, + 2544,5,2,0,0,2543,2540,1,0,0,0,2543,2544,1,0,0,0,2544,2768,1,0,0, + 0,2545,2549,5,158,0,0,2546,2547,5,1,0,0,2547,2548,5,329,0,0,2548, + 2550,5,2,0,0,2549,2546,1,0,0,0,2549,2550,1,0,0,0,2550,2768,1,0,0, + 0,2551,2555,5,159,0,0,2552,2553,5,1,0,0,2553,2554,5,329,0,0,2554, + 2556,5,2,0,0,2555,2552,1,0,0,0,2555,2556,1,0,0,0,2556,2768,1,0,0, + 0,2557,2768,5,64,0,0,2558,2768,5,57,0,0,2559,2768,5,61,0,0,2560, + 2768,5,59,0,0,2561,2562,5,272,0,0,2562,2570,5,1,0,0,2563,2565,3, + 88,44,0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565,2567,1,0,0,0,2566, + 2568,3,148,74,0,2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568,2569,1, + 0,0,0,2569,2571,5,105,0,0,2570,2564,1,0,0,0,2570,2571,1,0,0,0,2571, + 2572,1,0,0,0,2572,2573,3,148,74,0,2573,2574,5,2,0,0,2574,2768,1, + 0,0,0,2575,2576,5,272,0,0,2576,2577,5,1,0,0,2577,2578,3,148,74,0, + 2578,2579,5,3,0,0,2579,2580,3,148,74,0,2580,2581,5,2,0,0,2581,2768, + 1,0,0,0,2582,2583,5,258,0,0,2583,2584,5,1,0,0,2584,2585,3,148,74, + 0,2585,2586,5,105,0,0,2586,2589,3,148,74,0,2587,2588,5,103,0,0,2588, + 2590,3,148,74,0,2589,2587,1,0,0,0,2589,2590,1,0,0,0,2590,2591,1, + 0,0,0,2591,2592,5,2,0,0,2592,2768,1,0,0,0,2593,2594,5,181,0,0,2594, + 2595,5,1,0,0,2595,2598,3,148,74,0,2596,2597,5,3,0,0,2597,2599,3, + 188,94,0,2598,2596,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, + 2601,5,2,0,0,2601,2768,1,0,0,0,2602,2603,5,96,0,0,2603,2604,5,1, + 0,0,2604,2605,3,302,151,0,2605,2606,5,105,0,0,2606,2607,3,148,74, + 0,2607,2608,5,2,0,0,2608,2768,1,0,0,0,2609,2610,5,1,0,0,2610,2611, + 3,142,71,0,2611,2612,5,2,0,0,2612,2768,1,0,0,0,2613,2614,5,115,0, + 0,2614,2623,5,1,0,0,2615,2620,3,288,144,0,2616,2617,5,3,0,0,2617, + 2619,3,288,144,0,2618,2616,1,0,0,0,2619,2622,1,0,0,0,2620,2618,1, + 0,0,0,2620,2621,1,0,0,0,2621,2624,1,0,0,0,2622,2620,1,0,0,0,2623, + 2615,1,0,0,0,2623,2624,1,0,0,0,2624,2625,1,0,0,0,2625,2768,5,2,0, + 0,2626,2627,5,139,0,0,2627,2628,5,1,0,0,2628,2633,3,152,76,0,2629, + 2630,3,160,80,0,2630,2631,5,190,0,0,2631,2632,5,89,0,0,2632,2634, + 1,0,0,0,2633,2629,1,0,0,0,2633,2634,1,0,0,0,2634,2635,1,0,0,0,2635, + 2636,5,2,0,0,2636,2768,1,0,0,0,2637,2638,5,143,0,0,2638,2639,5,1, + 0,0,2639,2642,3,152,76,0,2640,2641,5,231,0,0,2641,2643,3,190,95, + 0,2642,2640,1,0,0,0,2642,2643,1,0,0,0,2643,2648,1,0,0,0,2644,2645, + 3,162,81,0,2645,2646,5,190,0,0,2646,2647,5,85,0,0,2647,2649,1,0, + 0,0,2648,2644,1,0,0,0,2648,2649,1,0,0,0,2649,2654,1,0,0,0,2650,2651, + 3,162,81,0,2651,2652,5,190,0,0,2652,2653,5,89,0,0,2653,2655,1,0, + 0,0,2654,2650,1,0,0,0,2654,2655,1,0,0,0,2655,2656,1,0,0,0,2656,2657, + 5,2,0,0,2657,2768,1,0,0,0,2658,2659,5,141,0,0,2659,2660,5,1,0,0, + 2660,2667,3,152,76,0,2661,2662,5,231,0,0,2662,2665,3,190,95,0,2663, + 2664,5,104,0,0,2664,2666,3,156,78,0,2665,2663,1,0,0,0,2665,2666, + 1,0,0,0,2666,2668,1,0,0,0,2667,2661,1,0,0,0,2667,2668,1,0,0,0,2668, + 2672,1,0,0,0,2669,2670,3,164,82,0,2670,2671,5,308,0,0,2671,2673, + 1,0,0,0,2672,2669,1,0,0,0,2672,2673,1,0,0,0,2673,2681,1,0,0,0,2674, + 2675,7,15,0,0,2675,2679,5,218,0,0,2676,2677,5,190,0,0,2677,2678, + 5,242,0,0,2678,2680,5,264,0,0,2679,2676,1,0,0,0,2679,2680,1,0,0, + 0,2680,2682,1,0,0,0,2681,2674,1,0,0,0,2681,2682,1,0,0,0,2682,2687, + 1,0,0,0,2683,2684,3,166,83,0,2684,2685,5,190,0,0,2685,2686,5,85, + 0,0,2686,2688,1,0,0,0,2687,2683,1,0,0,0,2687,2688,1,0,0,0,2688,2693, + 1,0,0,0,2689,2690,3,166,83,0,2690,2691,5,190,0,0,2691,2692,5,89, + 0,0,2692,2694,1,0,0,0,2693,2689,1,0,0,0,2693,2694,1,0,0,0,2694,2695, + 1,0,0,0,2695,2696,5,2,0,0,2696,2768,1,0,0,0,2697,2698,5,140,0,0, + 2698,2727,5,1,0,0,2699,2704,3,168,84,0,2700,2701,5,3,0,0,2701,2703, + 3,168,84,0,2702,2700,1,0,0,0,2703,2706,1,0,0,0,2704,2702,1,0,0,0, + 2704,2705,1,0,0,0,2705,2713,1,0,0,0,2706,2704,1,0,0,0,2707,2708, + 5,183,0,0,2708,2709,5,190,0,0,2709,2714,5,183,0,0,2710,2711,5,18, + 0,0,2711,2712,5,190,0,0,2712,2714,5,183,0,0,2713,2707,1,0,0,0,2713, + 2710,1,0,0,0,2713,2714,1,0,0,0,2714,2725,1,0,0,0,2715,2716,5,304, + 0,0,2716,2718,5,282,0,0,2717,2719,5,146,0,0,2718,2717,1,0,0,0,2718, + 2719,1,0,0,0,2719,2726,1,0,0,0,2720,2721,5,306,0,0,2721,2723,5,282, + 0,0,2722,2724,5,146,0,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724, + 2726,1,0,0,0,2725,2715,1,0,0,0,2725,2720,1,0,0,0,2725,2726,1,0,0, + 0,2726,2728,1,0,0,0,2727,2699,1,0,0,0,2727,2728,1,0,0,0,2728,2735, + 1,0,0,0,2729,2730,5,231,0,0,2730,2733,3,190,95,0,2731,2732,5,104, + 0,0,2732,2734,3,156,78,0,2733,2731,1,0,0,0,2733,2734,1,0,0,0,2734, + 2736,1,0,0,0,2735,2729,1,0,0,0,2735,2736,1,0,0,0,2736,2737,1,0,0, + 0,2737,2768,5,2,0,0,2738,2739,5,138,0,0,2739,2756,5,1,0,0,2740,2745, + 3,154,77,0,2741,2742,5,3,0,0,2742,2744,3,154,77,0,2743,2741,1,0, + 0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746,2754, + 1,0,0,0,2747,2745,1,0,0,0,2748,2749,5,183,0,0,2749,2750,5,190,0, + 0,2750,2755,5,183,0,0,2751,2752,5,18,0,0,2752,2753,5,190,0,0,2753, + 2755,5,183,0,0,2754,2748,1,0,0,0,2754,2751,1,0,0,0,2754,2755,1,0, + 0,0,2755,2757,1,0,0,0,2756,2740,1,0,0,0,2756,2757,1,0,0,0,2757,2764, + 1,0,0,0,2758,2759,5,231,0,0,2759,2762,3,190,95,0,2760,2761,5,104, + 0,0,2761,2763,3,156,78,0,2762,2760,1,0,0,0,2762,2763,1,0,0,0,2763, + 2765,1,0,0,0,2764,2758,1,0,0,0,2764,2765,1,0,0,0,2765,2766,1,0,0, + 0,2766,2768,5,2,0,0,2767,2314,1,0,0,0,2767,2316,1,0,0,0,2767,2317, + 1,0,0,0,2767,2320,1,0,0,0,2767,2323,1,0,0,0,2767,2324,1,0,0,0,2767, + 2325,1,0,0,0,2767,2326,1,0,0,0,2767,2327,1,0,0,0,2767,2328,1,0,0, + 0,2767,2335,1,0,0,0,2767,2345,1,0,0,0,2767,2357,1,0,0,0,2767,2392, + 1,0,0,0,2767,2410,1,0,0,0,2767,2449,1,0,0,0,2767,2452,1,0,0,0,2767, + 2456,1,0,0,0,2767,2470,1,0,0,0,2767,2474,1,0,0,0,2767,2479,1,0,0, + 0,2767,2492,1,0,0,0,2767,2504,1,0,0,0,2767,2511,1,0,0,0,2767,2518, + 1,0,0,0,2767,2531,1,0,0,0,2767,2532,1,0,0,0,2767,2533,1,0,0,0,2767, + 2539,1,0,0,0,2767,2545,1,0,0,0,2767,2551,1,0,0,0,2767,2557,1,0,0, + 0,2767,2558,1,0,0,0,2767,2559,1,0,0,0,2767,2560,1,0,0,0,2767,2561, + 1,0,0,0,2767,2575,1,0,0,0,2767,2582,1,0,0,0,2767,2593,1,0,0,0,2767, + 2602,1,0,0,0,2767,2609,1,0,0,0,2767,2613,1,0,0,0,2767,2626,1,0,0, + 0,2767,2637,1,0,0,0,2767,2658,1,0,0,0,2767,2697,1,0,0,0,2767,2738, + 1,0,0,0,2768,2779,1,0,0,0,2769,2770,10,24,0,0,2770,2771,5,8,0,0, + 2771,2772,3,148,74,0,2772,2773,5,9,0,0,2773,2778,1,0,0,0,2774,2775, + 10,22,0,0,2775,2776,5,4,0,0,2776,2778,3,302,151,0,2777,2769,1,0, + 0,0,2777,2774,1,0,0,0,2778,2781,1,0,0,0,2779,2777,1,0,0,0,2779,2780, + 1,0,0,0,2780,151,1,0,0,0,2781,2779,1,0,0,0,2782,2783,3,154,77,0, + 2783,2784,5,3,0,0,2784,2787,3,174,87,0,2785,2786,5,28,0,0,2786,2788, + 3,302,151,0,2787,2785,1,0,0,0,2787,2788,1,0,0,0,2788,2798,1,0,0, + 0,2789,2790,5,203,0,0,2790,2795,3,158,79,0,2791,2792,5,3,0,0,2792, + 2794,3,158,79,0,2793,2791,1,0,0,0,2794,2797,1,0,0,0,2795,2793,1, + 0,0,0,2795,2796,1,0,0,0,2796,2799,1,0,0,0,2797,2795,1,0,0,0,2798, + 2789,1,0,0,0,2798,2799,1,0,0,0,2799,153,1,0,0,0,2800,2803,3,142, + 71,0,2801,2802,5,104,0,0,2802,2804,3,156,78,0,2803,2801,1,0,0,0, + 2803,2804,1,0,0,0,2804,155,1,0,0,0,2805,2808,5,137,0,0,2806,2807, + 5,87,0,0,2807,2809,7,20,0,0,2808,2806,1,0,0,0,2808,2809,1,0,0,0, + 2809,157,1,0,0,0,2810,2811,3,154,77,0,2811,2812,5,28,0,0,2812,2813, + 3,302,151,0,2813,159,1,0,0,0,2814,2815,7,21,0,0,2815,161,1,0,0,0, + 2816,2821,5,89,0,0,2817,2821,5,183,0,0,2818,2819,5,70,0,0,2819,2821, + 3,142,71,0,2820,2816,1,0,0,0,2820,2817,1,0,0,0,2820,2818,1,0,0,0, + 2821,163,1,0,0,0,2822,2824,5,306,0,0,2823,2825,5,27,0,0,2824,2823, + 1,0,0,0,2824,2825,1,0,0,0,2825,2834,1,0,0,0,2826,2828,5,304,0,0, + 2827,2829,7,22,0,0,2828,2827,1,0,0,0,2828,2829,1,0,0,0,2829,2831, + 1,0,0,0,2830,2832,5,27,0,0,2831,2830,1,0,0,0,2831,2832,1,0,0,0,2832, + 2834,1,0,0,0,2833,2822,1,0,0,0,2833,2826,1,0,0,0,2834,165,1,0,0, + 0,2835,2842,5,89,0,0,2836,2842,5,183,0,0,2837,2838,5,85,0,0,2838, + 2842,5,27,0,0,2839,2840,5,85,0,0,2840,2842,5,186,0,0,2841,2835,1, + 0,0,0,2841,2836,1,0,0,0,2841,2837,1,0,0,0,2841,2839,1,0,0,0,2842, + 167,1,0,0,0,2843,2845,5,145,0,0,2844,2843,1,0,0,0,2844,2845,1,0, + 0,0,2845,2846,1,0,0,0,2846,2847,3,142,71,0,2847,2848,5,295,0,0,2848, + 2849,3,154,77,0,2849,2855,1,0,0,0,2850,2851,3,142,71,0,2851,2852, + 5,10,0,0,2852,2853,3,154,77,0,2853,2855,1,0,0,0,2854,2844,1,0,0, + 0,2854,2850,1,0,0,0,2855,169,1,0,0,0,2856,2857,7,23,0,0,2857,171, + 1,0,0,0,2858,2859,5,120,0,0,2859,2863,5,185,0,0,2860,2861,5,228, + 0,0,2861,2863,5,185,0,0,2862,2858,1,0,0,0,2862,2860,1,0,0,0,2863, + 173,1,0,0,0,2864,2871,5,326,0,0,2865,2868,5,327,0,0,2866,2867,5, + 277,0,0,2867,2869,5,326,0,0,2868,2866,1,0,0,0,2868,2869,1,0,0,0, + 2869,2871,1,0,0,0,2870,2864,1,0,0,0,2870,2865,1,0,0,0,2871,175,1, + 0,0,0,2872,2873,5,267,0,0,2873,2874,5,311,0,0,2874,2879,3,184,92, + 0,2875,2876,5,267,0,0,2876,2877,5,311,0,0,2877,2879,3,174,87,0,2878, + 2872,1,0,0,0,2878,2875,1,0,0,0,2879,177,1,0,0,0,2880,2881,7,24,0, + 0,2881,179,1,0,0,0,2882,2883,7,25,0,0,2883,181,1,0,0,0,2884,2885, + 7,26,0,0,2885,183,1,0,0,0,2886,2888,5,129,0,0,2887,2889,7,18,0,0, + 2888,2887,1,0,0,0,2888,2889,1,0,0,0,2889,2890,1,0,0,0,2890,2891, + 3,174,87,0,2891,2894,3,186,93,0,2892,2893,5,269,0,0,2893,2895,3, + 186,93,0,2894,2892,1,0,0,0,2894,2895,1,0,0,0,2895,185,1,0,0,0,2896, + 2897,7,27,0,0,2897,187,1,0,0,0,2898,2899,7,28,0,0,2899,189,1,0,0, + 0,2900,2901,6,95,-1,0,2901,2902,5,239,0,0,2902,2903,5,1,0,0,2903, + 2908,3,192,96,0,2904,2905,5,3,0,0,2905,2907,3,192,96,0,2906,2904, + 1,0,0,0,2907,2910,1,0,0,0,2908,2906,1,0,0,0,2908,2909,1,0,0,0,2909, + 2911,1,0,0,0,2910,2908,1,0,0,0,2911,2912,5,2,0,0,2912,2992,1,0,0, + 0,2913,2914,5,129,0,0,2914,2917,3,186,93,0,2915,2916,5,269,0,0,2916, + 2918,3,186,93,0,2917,2915,1,0,0,0,2917,2918,1,0,0,0,2918,2992,1, + 0,0,0,2919,2924,5,268,0,0,2920,2921,5,1,0,0,2921,2922,3,194,97,0, + 2922,2923,5,2,0,0,2923,2925,1,0,0,0,2924,2920,1,0,0,0,2924,2925, + 1,0,0,0,2925,2929,1,0,0,0,2926,2927,5,306,0,0,2927,2928,5,267,0, + 0,2928,2930,5,311,0,0,2929,2926,1,0,0,0,2929,2930,1,0,0,0,2930,2992, + 1,0,0,0,2931,2936,5,268,0,0,2932,2933,5,1,0,0,2933,2934,3,194,97, + 0,2934,2935,5,2,0,0,2935,2937,1,0,0,0,2936,2932,1,0,0,0,2936,2937, + 1,0,0,0,2937,2938,1,0,0,0,2938,2939,5,304,0,0,2939,2940,5,267,0, + 0,2940,2992,5,311,0,0,2941,2946,5,267,0,0,2942,2943,5,1,0,0,2943, + 2944,3,194,97,0,2944,2945,5,2,0,0,2945,2947,1,0,0,0,2946,2942,1, + 0,0,0,2946,2947,1,0,0,0,2947,2951,1,0,0,0,2948,2949,5,306,0,0,2949, + 2950,5,267,0,0,2950,2952,5,311,0,0,2951,2948,1,0,0,0,2951,2952,1, + 0,0,0,2952,2992,1,0,0,0,2953,2958,5,267,0,0,2954,2955,5,1,0,0,2955, + 2956,3,194,97,0,2956,2957,5,2,0,0,2957,2959,1,0,0,0,2958,2954,1, + 0,0,0,2958,2959,1,0,0,0,2959,2960,1,0,0,0,2960,2961,5,304,0,0,2961, + 2962,5,267,0,0,2962,2992,5,311,0,0,2963,2964,5,82,0,0,2964,2992, + 5,213,0,0,2965,2966,5,27,0,0,2966,2967,5,314,0,0,2967,2968,3,190, + 95,0,2968,2969,5,316,0,0,2969,2992,1,0,0,0,2970,2971,5,162,0,0,2971, + 2972,5,314,0,0,2972,2973,3,190,95,0,2973,2974,5,3,0,0,2974,2975, + 3,190,95,0,2975,2976,5,316,0,0,2976,2992,1,0,0,0,2977,2989,3,302, + 151,0,2978,2979,5,1,0,0,2979,2984,3,194,97,0,2980,2981,5,3,0,0,2981, + 2983,3,194,97,0,2982,2980,1,0,0,0,2983,2986,1,0,0,0,2984,2982,1, + 0,0,0,2984,2985,1,0,0,0,2985,2987,1,0,0,0,2986,2984,1,0,0,0,2987, + 2988,5,2,0,0,2988,2990,1,0,0,0,2989,2978,1,0,0,0,2989,2990,1,0,0, + 0,2990,2992,1,0,0,0,2991,2900,1,0,0,0,2991,2913,1,0,0,0,2991,2919, + 1,0,0,0,2991,2931,1,0,0,0,2991,2941,1,0,0,0,2991,2953,1,0,0,0,2991, + 2963,1,0,0,0,2991,2965,1,0,0,0,2991,2970,1,0,0,0,2991,2977,1,0,0, + 0,2992,3002,1,0,0,0,2993,2994,10,2,0,0,2994,2998,5,27,0,0,2995,2996, + 5,8,0,0,2996,2997,5,329,0,0,2997,2999,5,9,0,0,2998,2995,1,0,0,0, + 2998,2999,1,0,0,0,2999,3001,1,0,0,0,3000,2993,1,0,0,0,3001,3004, + 1,0,0,0,3002,3000,1,0,0,0,3002,3003,1,0,0,0,3003,191,1,0,0,0,3004, + 3002,1,0,0,0,3005,3010,3,190,95,0,3006,3007,3,302,151,0,3007,3008, + 3,190,95,0,3008,3010,1,0,0,0,3009,3005,1,0,0,0,3009,3006,1,0,0,0, + 3010,193,1,0,0,0,3011,3014,5,329,0,0,3012,3014,3,190,95,0,3013,3011, + 1,0,0,0,3013,3012,1,0,0,0,3014,195,1,0,0,0,3015,3016,5,300,0,0,3016, + 3017,3,142,71,0,3017,3018,5,265,0,0,3018,3019,3,142,71,0,3019,197, + 1,0,0,0,3020,3021,5,99,0,0,3021,3022,5,1,0,0,3022,3023,3,54,27,0, + 3023,3024,5,2,0,0,3024,199,1,0,0,0,3025,3026,5,300,0,0,3026,3029, + 5,164,0,0,3027,3028,5,25,0,0,3028,3030,3,142,71,0,3029,3027,1,0, + 0,0,3029,3030,1,0,0,0,3030,3031,1,0,0,0,3031,3032,5,265,0,0,3032, + 3033,5,287,0,0,3033,3034,5,251,0,0,3034,3035,3,302,151,0,3035,3036, + 5,312,0,0,3036,3044,3,142,71,0,3037,3038,5,3,0,0,3038,3039,3,302, + 151,0,3039,3040,5,312,0,0,3040,3041,3,142,71,0,3041,3043,1,0,0,0, + 3042,3037,1,0,0,0,3043,3046,1,0,0,0,3044,3042,1,0,0,0,3044,3045, + 1,0,0,0,3045,3090,1,0,0,0,3046,3044,1,0,0,0,3047,3048,5,300,0,0, + 3048,3051,5,164,0,0,3049,3050,5,25,0,0,3050,3052,3,142,71,0,3051, + 3049,1,0,0,0,3051,3052,1,0,0,0,3052,3053,1,0,0,0,3053,3054,5,265, + 0,0,3054,3090,5,73,0,0,3055,3056,5,300,0,0,3056,3057,5,182,0,0,3057, + 3060,5,164,0,0,3058,3059,5,25,0,0,3059,3061,3,142,71,0,3060,3058, + 1,0,0,0,3060,3061,1,0,0,0,3061,3062,1,0,0,0,3062,3063,5,265,0,0, + 3063,3075,5,127,0,0,3064,3065,5,1,0,0,3065,3070,3,302,151,0,3066, + 3067,5,3,0,0,3067,3069,3,302,151,0,3068,3066,1,0,0,0,3069,3072,1, + 0,0,0,3070,3068,1,0,0,0,3070,3071,1,0,0,0,3071,3073,1,0,0,0,3072, + 3070,1,0,0,0,3073,3074,5,2,0,0,3074,3076,1,0,0,0,3075,3064,1,0,0, + 0,3075,3076,1,0,0,0,3076,3077,1,0,0,0,3077,3078,5,296,0,0,3078,3079, + 5,1,0,0,3079,3084,3,142,71,0,3080,3081,5,3,0,0,3081,3083,3,142,71, + 0,3082,3080,1,0,0,0,3083,3086,1,0,0,0,3084,3082,1,0,0,0,3084,3085, + 1,0,0,0,3085,3087,1,0,0,0,3086,3084,1,0,0,0,3087,3088,5,2,0,0,3088, + 3090,1,0,0,0,3089,3025,1,0,0,0,3089,3047,1,0,0,0,3089,3055,1,0,0, + 0,3090,201,1,0,0,0,3091,3097,5,199,0,0,3092,3098,3,302,151,0,3093, + 3094,5,1,0,0,3094,3095,3,70,35,0,3095,3096,5,2,0,0,3096,3098,1,0, + 0,0,3097,3092,1,0,0,0,3097,3093,1,0,0,0,3098,203,1,0,0,0,3099,3100, + 5,168,0,0,3100,3105,3,96,48,0,3101,3102,5,3,0,0,3102,3104,3,96,48, + 0,3103,3101,1,0,0,0,3104,3107,1,0,0,0,3105,3103,1,0,0,0,3105,3106, + 1,0,0,0,3106,3109,1,0,0,0,3107,3105,1,0,0,0,3108,3099,1,0,0,0,3108, + 3109,1,0,0,0,3109,3110,1,0,0,0,3110,3114,3,206,103,0,3111,3112,5, + 21,0,0,3112,3113,5,163,0,0,3113,3115,3,102,51,0,3114,3111,1,0,0, + 0,3114,3115,1,0,0,0,3115,3117,1,0,0,0,3116,3118,7,13,0,0,3117,3116, + 1,0,0,0,3117,3118,1,0,0,0,3118,3124,1,0,0,0,3119,3120,5,206,0,0, + 3120,3121,5,1,0,0,3121,3122,3,210,105,0,3122,3123,5,2,0,0,3123,3125, + 1,0,0,0,3124,3119,1,0,0,0,3124,3125,1,0,0,0,3125,3135,1,0,0,0,3126, + 3127,5,257,0,0,3127,3132,3,104,52,0,3128,3129,5,3,0,0,3129,3131, + 3,104,52,0,3130,3128,1,0,0,0,3131,3134,1,0,0,0,3132,3130,1,0,0,0, + 3132,3133,1,0,0,0,3133,3136,1,0,0,0,3134,3132,1,0,0,0,3135,3126, + 1,0,0,0,3135,3136,1,0,0,0,3136,3146,1,0,0,0,3137,3138,5,71,0,0,3138, + 3143,3,106,53,0,3139,3140,5,3,0,0,3140,3142,3,106,53,0,3141,3139, + 1,0,0,0,3142,3145,1,0,0,0,3143,3141,1,0,0,0,3143,3144,1,0,0,0,3144, + 3147,1,0,0,0,3145,3143,1,0,0,0,3146,3137,1,0,0,0,3146,3147,1,0,0, + 0,3147,205,1,0,0,0,3148,3149,5,219,0,0,3149,3173,3,208,104,0,3150, + 3151,5,240,0,0,3151,3173,3,208,104,0,3152,3153,5,116,0,0,3153,3173, + 3,208,104,0,3154,3155,5,219,0,0,3155,3156,5,34,0,0,3156,3157,3,208, + 104,0,3157,3158,5,25,0,0,3158,3159,3,208,104,0,3159,3173,1,0,0,0, + 3160,3161,5,240,0,0,3161,3162,5,34,0,0,3162,3163,3,208,104,0,3163, + 3164,5,25,0,0,3164,3165,3,208,104,0,3165,3173,1,0,0,0,3166,3167, + 5,116,0,0,3167,3168,5,34,0,0,3168,3169,3,208,104,0,3169,3170,5,25, + 0,0,3170,3171,3,208,104,0,3171,3173,1,0,0,0,3172,3148,1,0,0,0,3172, + 3150,1,0,0,0,3172,3152,1,0,0,0,3172,3154,1,0,0,0,3172,3160,1,0,0, + 0,3172,3166,1,0,0,0,3173,207,1,0,0,0,3174,3175,5,278,0,0,3175,3184, + 5,212,0,0,3176,3177,5,278,0,0,3177,3184,5,102,0,0,3178,3179,5,56, + 0,0,3179,3184,5,239,0,0,3180,3181,3,142,71,0,3181,3182,7,29,0,0, + 3182,3184,1,0,0,0,3183,3174,1,0,0,0,3183,3176,1,0,0,0,3183,3178, + 1,0,0,0,3183,3180,1,0,0,0,3184,209,1,0,0,0,3185,3186,6,105,-1,0, + 3186,3188,3,212,106,0,3187,3189,3,214,107,0,3188,3187,1,0,0,0,3188, + 3189,1,0,0,0,3189,3197,1,0,0,0,3190,3191,10,2,0,0,3191,3196,3,210, + 105,3,3192,3193,10,1,0,0,3193,3194,5,11,0,0,3194,3196,3,210,105, + 2,3195,3190,1,0,0,0,3195,3192,1,0,0,0,3196,3199,1,0,0,0,3197,3195, + 1,0,0,0,3197,3198,1,0,0,0,3198,211,1,0,0,0,3199,3197,1,0,0,0,3200, + 3226,3,302,151,0,3201,3202,5,1,0,0,3202,3226,5,2,0,0,3203,3204,5, + 209,0,0,3204,3205,5,1,0,0,3205,3210,3,210,105,0,3206,3207,5,3,0, + 0,3207,3209,3,210,105,0,3208,3206,1,0,0,0,3209,3212,1,0,0,0,3210, + 3208,1,0,0,0,3210,3211,1,0,0,0,3211,3213,1,0,0,0,3212,3210,1,0,0, + 0,3213,3214,5,2,0,0,3214,3226,1,0,0,0,3215,3216,5,1,0,0,3216,3217, + 3,210,105,0,3217,3218,5,2,0,0,3218,3226,1,0,0,0,3219,3226,5,12,0, + 0,3220,3226,5,13,0,0,3221,3222,5,14,0,0,3222,3223,3,210,105,0,3223, + 3224,5,15,0,0,3224,3226,1,0,0,0,3225,3200,1,0,0,0,3225,3201,1,0, + 0,0,3225,3203,1,0,0,0,3225,3215,1,0,0,0,3225,3219,1,0,0,0,3225,3220, + 1,0,0,0,3225,3221,1,0,0,0,3226,213,1,0,0,0,3227,3229,5,320,0,0,3228, + 3230,5,324,0,0,3229,3228,1,0,0,0,3229,3230,1,0,0,0,3230,3258,1,0, + 0,0,3231,3233,5,318,0,0,3232,3234,5,324,0,0,3233,3232,1,0,0,0,3233, + 3234,1,0,0,0,3234,3258,1,0,0,0,3235,3237,5,324,0,0,3236,3238,5,324, + 0,0,3237,3236,1,0,0,0,3237,3238,1,0,0,0,3238,3258,1,0,0,0,3239,3240, + 5,16,0,0,3240,3241,5,329,0,0,3241,3243,5,17,0,0,3242,3244,5,324, + 0,0,3243,3242,1,0,0,0,3243,3244,1,0,0,0,3244,3258,1,0,0,0,3245,3247, + 5,16,0,0,3246,3248,5,329,0,0,3247,3246,1,0,0,0,3247,3248,1,0,0,0, + 3248,3249,1,0,0,0,3249,3251,5,3,0,0,3250,3252,5,329,0,0,3251,3250, + 1,0,0,0,3251,3252,1,0,0,0,3252,3253,1,0,0,0,3253,3255,5,17,0,0,3254, + 3256,5,324,0,0,3255,3254,1,0,0,0,3255,3256,1,0,0,0,3256,3258,1,0, + 0,0,3257,3227,1,0,0,0,3257,3231,1,0,0,0,3257,3235,1,0,0,0,3257,3239, + 1,0,0,0,3257,3245,1,0,0,0,3258,215,1,0,0,0,3259,3260,3,302,151,0, + 3260,3261,5,312,0,0,3261,3262,3,142,71,0,3262,217,1,0,0,0,3263,3264, + 5,104,0,0,3264,3268,7,30,0,0,3265,3266,5,276,0,0,3266,3268,7,31, + 0,0,3267,3263,1,0,0,0,3267,3265,1,0,0,0,3268,219,1,0,0,0,3269,3270, + 5,134,0,0,3270,3271,5,153,0,0,3271,3275,3,222,111,0,3272,3273,5, + 220,0,0,3273,3275,7,32,0,0,3274,3269,1,0,0,0,3274,3272,1,0,0,0,3275, + 221,1,0,0,0,3276,3277,5,220,0,0,3277,3284,5,279,0,0,3278,3279,5, + 220,0,0,3279,3284,5,48,0,0,3280,3281,5,225,0,0,3281,3284,5,220,0, + 0,3282,3284,5,249,0,0,3283,3276,1,0,0,0,3283,3278,1,0,0,0,3283,3280, + 1,0,0,0,3283,3282,1,0,0,0,3284,223,1,0,0,0,3285,3291,3,142,71,0, + 3286,3287,3,302,151,0,3287,3288,5,6,0,0,3288,3289,3,142,71,0,3289, + 3291,1,0,0,0,3290,3285,1,0,0,0,3290,3286,1,0,0,0,3291,225,1,0,0, + 0,3292,3293,3,302,151,0,3293,3294,5,4,0,0,3294,3295,3,302,151,0, + 3295,3298,1,0,0,0,3296,3298,3,302,151,0,3297,3292,1,0,0,0,3297,3296, + 1,0,0,0,3298,227,1,0,0,0,3299,3304,3,226,113,0,3300,3301,5,3,0,0, + 3301,3303,3,226,113,0,3302,3300,1,0,0,0,3303,3306,1,0,0,0,3304,3302, + 1,0,0,0,3304,3305,1,0,0,0,3305,229,1,0,0,0,3306,3304,1,0,0,0,3307, + 3308,5,107,0,0,3308,3309,3,232,116,0,3309,3313,3,238,119,0,3310, + 3312,3,240,120,0,3311,3310,1,0,0,0,3312,3315,1,0,0,0,3313,3311,1, + 0,0,0,3313,3314,1,0,0,0,3314,3316,1,0,0,0,3315,3313,1,0,0,0,3316, + 3317,3,242,121,0,3317,231,1,0,0,0,3318,3319,3,280,140,0,3319,3328, + 5,1,0,0,3320,3325,3,236,118,0,3321,3322,5,3,0,0,3322,3324,3,236, + 118,0,3323,3321,1,0,0,0,3324,3327,1,0,0,0,3325,3323,1,0,0,0,3325, + 3326,1,0,0,0,3326,3329,1,0,0,0,3327,3325,1,0,0,0,3328,3320,1,0,0, + 0,3328,3329,1,0,0,0,3329,3330,1,0,0,0,3330,3331,5,2,0,0,3331,233, + 1,0,0,0,3332,3333,3,278,139,0,3333,3342,5,1,0,0,3334,3339,3,236, + 118,0,3335,3336,5,3,0,0,3336,3338,3,236,118,0,3337,3335,1,0,0,0, + 3338,3341,1,0,0,0,3339,3337,1,0,0,0,3339,3340,1,0,0,0,3340,3343, + 1,0,0,0,3341,3339,1,0,0,0,3342,3334,1,0,0,0,3342,3343,1,0,0,0,3343, + 3344,1,0,0,0,3344,3345,5,2,0,0,3345,235,1,0,0,0,3346,3348,3,302, + 151,0,3347,3346,1,0,0,0,3347,3348,1,0,0,0,3348,3349,1,0,0,0,3349, + 3350,3,190,95,0,3350,237,1,0,0,0,3351,3352,5,232,0,0,3352,3353,3, + 190,95,0,3353,239,1,0,0,0,3354,3355,5,147,0,0,3355,3374,3,302,151, + 0,3356,3358,5,182,0,0,3357,3356,1,0,0,0,3357,3358,1,0,0,0,3358,3359, + 1,0,0,0,3359,3374,5,78,0,0,3360,3361,5,232,0,0,3361,3362,5,183,0, + 0,3362,3363,5,190,0,0,3363,3364,5,183,0,0,3364,3374,5,126,0,0,3365, + 3366,5,38,0,0,3366,3367,5,190,0,0,3367,3368,5,183,0,0,3368,3374, + 5,126,0,0,3369,3370,5,246,0,0,3370,3374,7,1,0,0,3371,3372,5,46,0, + 0,3372,3374,3,174,87,0,3373,3354,1,0,0,0,3373,3357,1,0,0,0,3373, + 3360,1,0,0,0,3373,3365,1,0,0,0,3373,3369,1,0,0,0,3373,3371,1,0,0, + 0,3374,241,1,0,0,0,3375,3376,5,230,0,0,3376,3475,3,148,74,0,3377, + 3378,5,251,0,0,3378,3379,3,302,151,0,3379,3380,5,312,0,0,3380,3381, + 3,142,71,0,3381,3475,1,0,0,0,3382,3383,5,40,0,0,3383,3385,3,142, + 71,0,3384,3386,3,244,122,0,3385,3384,1,0,0,0,3386,3387,1,0,0,0,3387, + 3385,1,0,0,0,3387,3388,1,0,0,0,3388,3390,1,0,0,0,3389,3391,3,248, + 124,0,3390,3389,1,0,0,0,3390,3391,1,0,0,0,3391,3392,1,0,0,0,3392, + 3393,5,88,0,0,3393,3394,5,40,0,0,3394,3475,1,0,0,0,3395,3397,5,40, + 0,0,3396,3398,3,244,122,0,3397,3396,1,0,0,0,3398,3399,1,0,0,0,3399, + 3397,1,0,0,0,3399,3400,1,0,0,0,3400,3402,1,0,0,0,3401,3403,3,248, + 124,0,3402,3401,1,0,0,0,3402,3403,1,0,0,0,3403,3404,1,0,0,0,3404, + 3405,5,88,0,0,3405,3406,5,40,0,0,3406,3475,1,0,0,0,3407,3408,5,119, + 0,0,3408,3409,3,142,71,0,3409,3410,5,265,0,0,3410,3414,3,252,126, + 0,3411,3413,3,246,123,0,3412,3411,1,0,0,0,3413,3416,1,0,0,0,3414, + 3412,1,0,0,0,3414,3415,1,0,0,0,3415,3418,1,0,0,0,3416,3414,1,0,0, + 0,3417,3419,3,248,124,0,3418,3417,1,0,0,0,3418,3419,1,0,0,0,3419, + 3420,1,0,0,0,3420,3421,5,88,0,0,3421,3422,5,119,0,0,3422,3475,1, + 0,0,0,3423,3424,5,135,0,0,3424,3475,3,302,151,0,3425,3426,5,151, + 0,0,3426,3475,3,302,151,0,3427,3433,5,32,0,0,3428,3429,3,250,125, + 0,3429,3430,5,325,0,0,3430,3432,1,0,0,0,3431,3428,1,0,0,0,3432,3435, + 1,0,0,0,3433,3431,1,0,0,0,3433,3434,1,0,0,0,3434,3437,1,0,0,0,3435, + 3433,1,0,0,0,3436,3438,3,252,126,0,3437,3436,1,0,0,0,3437,3438,1, + 0,0,0,3438,3439,1,0,0,0,3439,3475,5,88,0,0,3440,3441,3,302,151,0, + 3441,3442,5,10,0,0,3442,3444,1,0,0,0,3443,3440,1,0,0,0,3443,3444, + 1,0,0,0,3444,3445,1,0,0,0,3445,3446,5,161,0,0,3446,3447,3,252,126, + 0,3447,3448,5,88,0,0,3448,3449,5,161,0,0,3449,3475,1,0,0,0,3450, + 3451,3,302,151,0,3451,3452,5,10,0,0,3452,3454,1,0,0,0,3453,3450, + 1,0,0,0,3453,3454,1,0,0,0,3454,3455,1,0,0,0,3455,3456,5,302,0,0, + 3456,3457,3,142,71,0,3457,3458,5,81,0,0,3458,3459,3,252,126,0,3459, + 3460,5,88,0,0,3460,3461,5,302,0,0,3461,3475,1,0,0,0,3462,3463,3, + 302,151,0,3463,3464,5,10,0,0,3464,3466,1,0,0,0,3465,3462,1,0,0,0, + 3465,3466,1,0,0,0,3466,3467,1,0,0,0,3467,3468,5,224,0,0,3468,3469, + 3,252,126,0,3469,3470,5,286,0,0,3470,3471,3,142,71,0,3471,3472,5, + 88,0,0,3472,3473,5,224,0,0,3473,3475,1,0,0,0,3474,3375,1,0,0,0,3474, + 3377,1,0,0,0,3474,3382,1,0,0,0,3474,3395,1,0,0,0,3474,3407,1,0,0, + 0,3474,3423,1,0,0,0,3474,3425,1,0,0,0,3474,3427,1,0,0,0,3474,3443, + 1,0,0,0,3474,3453,1,0,0,0,3474,3465,1,0,0,0,3475,243,1,0,0,0,3476, + 3477,5,300,0,0,3477,3478,3,142,71,0,3478,3479,5,265,0,0,3479,3480, + 3,252,126,0,3480,245,1,0,0,0,3481,3482,5,86,0,0,3482,3483,3,142, + 71,0,3483,3484,5,265,0,0,3484,3485,3,252,126,0,3485,247,1,0,0,0, + 3486,3487,5,84,0,0,3487,3488,3,252,126,0,3488,249,1,0,0,0,3489,3490, + 5,69,0,0,3490,3495,3,302,151,0,3491,3492,5,3,0,0,3492,3494,3,302, + 151,0,3493,3491,1,0,0,0,3494,3497,1,0,0,0,3495,3493,1,0,0,0,3495, + 3496,1,0,0,0,3496,3498,1,0,0,0,3497,3495,1,0,0,0,3498,3501,3,190, + 95,0,3499,3500,5,70,0,0,3500,3502,3,148,74,0,3501,3499,1,0,0,0,3501, + 3502,1,0,0,0,3502,251,1,0,0,0,3503,3504,3,242,121,0,3504,3505,5, + 325,0,0,3505,3507,1,0,0,0,3506,3503,1,0,0,0,3507,3508,1,0,0,0,3508, + 3506,1,0,0,0,3508,3509,1,0,0,0,3509,253,1,0,0,0,3510,3517,5,53,0, + 0,3511,3517,5,248,0,0,3512,3517,5,73,0,0,3513,3517,5,127,0,0,3514, + 3517,5,287,0,0,3515,3517,3,302,151,0,3516,3510,1,0,0,0,3516,3511, + 1,0,0,0,3516,3512,1,0,0,0,3516,3513,1,0,0,0,3516,3514,1,0,0,0,3516, + 3515,1,0,0,0,3517,255,1,0,0,0,3518,3522,5,260,0,0,3519,3522,5,243, + 0,0,3520,3522,3,302,151,0,3521,3518,1,0,0,0,3521,3519,1,0,0,0,3521, + 3520,1,0,0,0,3522,257,1,0,0,0,3523,3525,3,256,128,0,3524,3523,1, + 0,0,0,3524,3525,1,0,0,0,3525,3526,1,0,0,0,3526,3527,3,288,144,0, + 3527,259,1,0,0,0,3528,3531,3,262,131,0,3529,3531,3,266,133,0,3530, + 3528,1,0,0,0,3530,3529,1,0,0,0,3531,261,1,0,0,0,3532,3544,3,302, + 151,0,3533,3534,3,302,151,0,3534,3535,5,4,0,0,3535,3536,3,302,151, + 0,3536,3544,1,0,0,0,3537,3538,3,302,151,0,3538,3539,5,4,0,0,3539, + 3540,3,302,151,0,3540,3541,5,4,0,0,3541,3542,3,302,151,0,3542,3544, + 1,0,0,0,3543,3532,1,0,0,0,3543,3533,1,0,0,0,3543,3537,1,0,0,0,3544, + 263,1,0,0,0,3545,3557,3,302,151,0,3546,3547,3,302,151,0,3547,3548, + 5,4,0,0,3548,3549,3,302,151,0,3549,3557,1,0,0,0,3550,3551,3,302, + 151,0,3551,3552,5,4,0,0,3552,3553,3,302,151,0,3553,3554,5,4,0,0, + 3554,3555,3,302,151,0,3555,3557,1,0,0,0,3556,3545,1,0,0,0,3556,3546, + 1,0,0,0,3556,3550,1,0,0,0,3557,265,1,0,0,0,3558,3570,3,302,151,0, + 3559,3560,3,302,151,0,3560,3561,5,4,0,0,3561,3562,3,302,151,0,3562, + 3570,1,0,0,0,3563,3564,3,302,151,0,3564,3565,5,4,0,0,3565,3566,3, + 302,151,0,3566,3567,5,4,0,0,3567,3568,3,302,151,0,3568,3570,1,0, + 0,0,3569,3558,1,0,0,0,3569,3559,1,0,0,0,3569,3563,1,0,0,0,3570,267, + 1,0,0,0,3571,3583,3,302,151,0,3572,3573,3,302,151,0,3573,3574,5, + 4,0,0,3574,3575,3,302,151,0,3575,3583,1,0,0,0,3576,3577,3,302,151, + 0,3577,3578,5,4,0,0,3578,3579,3,302,151,0,3579,3580,5,4,0,0,3580, + 3581,3,302,151,0,3581,3583,1,0,0,0,3582,3571,1,0,0,0,3582,3572,1, + 0,0,0,3582,3576,1,0,0,0,3583,269,1,0,0,0,3584,3590,3,302,151,0,3585, + 3586,3,302,151,0,3586,3587,5,4,0,0,3587,3588,3,302,151,0,3588,3590, + 1,0,0,0,3589,3584,1,0,0,0,3589,3585,1,0,0,0,3590,271,1,0,0,0,3591, + 3597,3,302,151,0,3592,3593,3,302,151,0,3593,3594,5,4,0,0,3594,3595, + 3,302,151,0,3595,3597,1,0,0,0,3596,3591,1,0,0,0,3596,3592,1,0,0, + 0,3597,273,1,0,0,0,3598,3599,3,302,151,0,3599,275,1,0,0,0,3600,3601, + 3,302,151,0,3601,277,1,0,0,0,3602,3603,3,288,144,0,3603,279,1,0, + 0,0,3604,3605,3,288,144,0,3605,281,1,0,0,0,3606,3609,3,288,144,0, + 3607,3609,4,141,14,0,3608,3606,1,0,0,0,3608,3607,1,0,0,0,3609,283, + 1,0,0,0,3610,3611,3,288,144,0,3611,285,1,0,0,0,3612,3613,3,302,151, + 0,3613,287,1,0,0,0,3614,3619,3,302,151,0,3615,3616,5,4,0,0,3616, + 3618,3,302,151,0,3617,3615,1,0,0,0,3618,3621,1,0,0,0,3619,3617,1, + 0,0,0,3619,3620,1,0,0,0,3620,289,1,0,0,0,3621,3619,1,0,0,0,3622, + 3623,5,103,0,0,3623,3624,3,292,146,0,3624,3625,5,28,0,0,3625,3626, + 5,187,0,0,3626,3627,3,148,74,0,3627,291,1,0,0,0,3628,3629,7,33,0, + 0,3629,293,1,0,0,0,3630,3634,3,296,148,0,3631,3634,5,64,0,0,3632, + 3634,5,60,0,0,3633,3630,1,0,0,0,3633,3631,1,0,0,0,3633,3632,1,0, + 0,0,3634,295,1,0,0,0,3635,3641,3,302,151,0,3636,3637,5,289,0,0,3637, + 3641,3,302,151,0,3638,3639,5,235,0,0,3639,3641,3,302,151,0,3640, + 3635,1,0,0,0,3640,3636,1,0,0,0,3640,3638,1,0,0,0,3641,297,1,0,0, + 0,3642,3647,3,302,151,0,3643,3644,5,3,0,0,3644,3646,3,302,151,0, + 3645,3643,1,0,0,0,3646,3649,1,0,0,0,3647,3645,1,0,0,0,3647,3648, + 1,0,0,0,3648,299,1,0,0,0,3649,3647,1,0,0,0,3650,3658,5,53,0,0,3651, + 3658,5,248,0,0,3652,3658,5,73,0,0,3653,3658,5,127,0,0,3654,3658, + 5,287,0,0,3655,3658,5,93,0,0,3656,3658,3,302,151,0,3657,3650,1,0, + 0,0,3657,3651,1,0,0,0,3657,3652,1,0,0,0,3657,3653,1,0,0,0,3657,3654, + 1,0,0,0,3657,3655,1,0,0,0,3657,3656,1,0,0,0,3658,301,1,0,0,0,3659, + 3665,5,332,0,0,3660,3665,5,334,0,0,3661,3665,3,308,154,0,3662,3665, + 5,335,0,0,3663,3665,5,333,0,0,3664,3659,1,0,0,0,3664,3660,1,0,0, + 0,3664,3661,1,0,0,0,3664,3662,1,0,0,0,3664,3663,1,0,0,0,3665,303, + 1,0,0,0,3666,3668,5,319,0,0,3667,3666,1,0,0,0,3667,3668,1,0,0,0, + 3668,3669,1,0,0,0,3669,3679,5,330,0,0,3670,3672,5,319,0,0,3671,3670, + 1,0,0,0,3671,3672,1,0,0,0,3672,3673,1,0,0,0,3673,3679,5,331,0,0, + 3674,3676,5,319,0,0,3675,3674,1,0,0,0,3675,3676,1,0,0,0,3676,3677, + 1,0,0,0,3677,3679,5,329,0,0,3678,3667,1,0,0,0,3678,3671,1,0,0,0, + 3678,3675,1,0,0,0,3679,305,1,0,0,0,3680,3683,3,302,151,0,3681,3683, + 3,174,87,0,3682,3680,1,0,0,0,3682,3681,1,0,0,0,3683,307,1,0,0,0, + 3684,3685,7,34,0,0,3685,309,1,0,0,0,478,313,322,326,330,334,338, + 351,358,362,366,372,376,383,388,392,398,402,421,427,431,435,439, + 447,451,454,459,465,474,480,484,490,497,505,517,526,535,541,552, + 560,568,575,585,592,600,615,650,653,656,659,665,670,677,683,687, + 691,699,705,709,713,727,735,754,779,782,789,796,805,809,816,824, + 833,839,844,848,856,861,870,876,883,892,898,902,908,915,920,933, + 938,950,954,960,969,974,980,1008,1014,1016,1022,1028,1030,1038,1040, + 1050,1052,1067,1072,1079,1089,1095,1097,1105,1107,1132,1135,1139, + 1143,1161,1164,1175,1178,1194,1204,1208,1214,1217,1226,1238,1241, + 1251,1255,1261,1268,1273,1279,1283,1287,1293,1304,1313,1323,1326, + 1331,1333,1340,1346,1348,1352,1362,1368,1371,1373,1385,1392,1396, + 1399,1403,1407,1414,1423,1426,1429,1434,1437,1445,1448,1457,1464, + 1472,1483,1486,1496,1499,1510,1515,1523,1526,1530,1534,1543,1548, + 1557,1560,1563,1567,1578,1581,1584,1591,1594,1613,1617,1621,1625, + 1629,1633,1635,1646,1651,1660,1669,1672,1678,1686,1695,1698,1706, + 1709,1712,1717,1720,1732,1735,1743,1748,1752,1754,1756,1771,1773, + 1784,1805,1815,1826,1830,1832,1840,1851,1862,1869,1882,1888,1914, + 1929,1934,1938,1948,1954,1960,1968,1973,1980,1982,1988,1994,1998, + 2003,2012,2017,2031,2041,2044,2053,2058,2063,2065,2074,2077,2085, + 2088,2095,2100,2107,2111,2113,2121,2131,2137,2139,2146,2150,2152, + 2159,2163,2165,2167,2176,2187,2191,2201,2211,2215,2223,2225,2238, + 2246,2255,2261,2269,2275,2279,2284,2289,2295,2309,2311,2341,2352, + 2360,2365,2370,2383,2389,2392,2399,2404,2407,2410,2415,2422,2425, + 2434,2437,2441,2444,2447,2462,2465,2484,2488,2496,2500,2525,2528, + 2537,2543,2549,2555,2564,2567,2570,2589,2598,2620,2623,2633,2642, + 2648,2654,2665,2667,2672,2679,2681,2687,2693,2704,2713,2718,2723, + 2725,2727,2733,2735,2745,2754,2756,2762,2764,2767,2777,2779,2787, + 2795,2798,2803,2808,2820,2824,2828,2831,2833,2841,2844,2854,2862, + 2868,2870,2878,2888,2894,2908,2917,2924,2929,2936,2946,2951,2958, + 2984,2989,2991,2998,3002,3009,3013,3029,3044,3051,3060,3070,3075, + 3084,3089,3097,3105,3108,3114,3117,3124,3132,3135,3143,3146,3172, + 3183,3188,3195,3197,3210,3225,3229,3233,3237,3243,3247,3251,3255, + 3257,3267,3274,3283,3290,3297,3304,3313,3325,3328,3339,3342,3347, + 3357,3373,3387,3390,3399,3402,3414,3418,3433,3437,3443,3453,3465, + 3474,3495,3501,3508,3516,3521,3524,3530,3543,3556,3569,3582,3589, + 3596,3608,3619,3633,3640,3647,3657,3664,3667,3671,3675,3678,3682 ]; private static __ATN: antlr.ATN; @@ -23178,7 +23190,6 @@ export class SortItemContext extends antlr.ParserRuleContext { export class QuerySpecificationContext extends antlr.ParserRuleContext { - public _having?: BooleanExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -23221,8 +23232,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public groupBy(): GroupByContext | null { return this.getRuleContext(0, GroupByContext); } - public KW_HAVING(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_HAVING, 0); + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); } public KW_WINDOW(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_WINDOW, 0); @@ -23236,9 +23247,6 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, WindowDefinitionContext); } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); - } public override get ruleIndex(): number { return TrinoSqlParser.RULE_querySpecification; } @@ -23296,6 +23304,40 @@ export class WhereClauseContext extends antlr.ParserRuleContext { } +export class HavingClauseContext extends antlr.ParserRuleContext { + public _having?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_HAVING(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.KW_HAVING, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_havingClause; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterHavingClause) { + listener.enterHavingClause(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitHavingClause) { + listener.exitHavingClause(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23335,6 +23377,42 @@ export class GroupByContext extends antlr.ParserRuleContext { } +export class PartitionByContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_partitionBy; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterPartitionBy) { + listener.enterPartitionBy(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitPartitionBy) { + listener.exitPartitionBy(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitPartitionBy) { + return visitor.visitPartitionBy(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupingElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23590,8 +23668,6 @@ export class WindowDefinitionContext extends antlr.ParserRuleContext { export class WindowSpecificationContext extends antlr.ParserRuleContext { public _existingWindowName?: IdentifierContext; - public _expression?: ExpressionContext; - public _partition: ExpressionContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -23607,6 +23683,9 @@ export class WindowSpecificationContext extends antlr.ParserRuleContext { return this.getToken(TrinoSqlParser.KW_BY, i); } } + public partitionBy(): PartitionByContext | null { + return this.getRuleContext(0, PartitionByContext); + } public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ORDER, 0); } @@ -23625,15 +23704,6 @@ export class WindowSpecificationContext extends antlr.ParserRuleContext { public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public override get ruleIndex(): number { return TrinoSqlParser.RULE_windowSpecification; } @@ -24178,8 +24248,6 @@ export class ListaggCountIndicationContext extends antlr.ParserRuleContext { export class PatternRecognitionContext extends antlr.ParserRuleContext { - public _expression?: ExpressionContext; - public _partition: ExpressionContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -24219,6 +24287,9 @@ export class PatternRecognitionContext extends antlr.ParserRuleContext { return this.getToken(TrinoSqlParser.KW_BY, i); } } + public partitionBy(): PartitionByContext | null { + return this.getRuleContext(0, PartitionByContext); + } public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ORDER, 0); } @@ -24270,15 +24341,6 @@ export class PatternRecognitionContext extends antlr.ParserRuleContext { public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public KW_INITIAL(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_INITIAL, 0); } @@ -25607,14 +25669,8 @@ export class TableArgumentContext extends antlr.ParserRuleContext { public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ORDER, 0); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); } public sortItem(): SortItemContext[]; public sortItem(i: number): SortItemContext | null; @@ -25625,6 +25681,9 @@ export class TableArgumentContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SortItemContext); } + public partitionBy(): PartitionByContext | null { + return this.getRuleContext(0, PartitionByContext); + } public override get ruleIndex(): number { return TrinoSqlParser.RULE_tableArgument; } diff --git a/src/lib/trino/TrinoSqlVisitor.ts b/src/lib/trino/TrinoSqlVisitor.ts index 5140e87a..f29801a3 100644 --- a/src/lib/trino/TrinoSqlVisitor.ts +++ b/src/lib/trino/TrinoSqlVisitor.ts @@ -124,7 +124,9 @@ import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; import { WhereClauseContext } from "./TrinoSqlParser.js"; +import { HavingClauseContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; +import { PartitionByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; import { CubeContext } from "./TrinoSqlParser.js"; @@ -1178,12 +1180,24 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitWhereClause?: (ctx: WhereClauseContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.havingClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHavingClause?: (ctx: HavingClauseContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree * @return the visitor result */ visitGroupBy?: (ctx: GroupByContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.partitionBy`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPartitionBy?: (ctx: PartitionByContext) => Result; /** * Visit a parse tree produced by the `singleGroupingSet` * labeled alternative in `TrinoSqlParser.groupingElement`. diff --git a/src/parser/trino/index.ts b/src/parser/trino/index.ts index 9acc5097..723d5a27 100644 --- a/src/parser/trino/index.ts +++ b/src/parser/trino/index.ts @@ -120,7 +120,9 @@ export class TrinoSQL extends BasicSQL { const trinoSQL = new TrinoSQL(); @@ -36,6 +37,15 @@ describe('TrinoSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql4', () => { + const errors = trinoSQL.validate(sql4); + expect(errors.length).toBe(2); + expect(errors[0].message).toBe(`Statement is incomplete`); + expect(errors[1].message).toBe( + `'a' is not valid at this position, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { trinoSQL.locale = 'zh_CN'; const errors = trinoSQL.validate(randomText); @@ -60,4 +70,13 @@ describe('TrinoSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'aaa' 在此位置无效,期望一个存在的table或者一个关键字`); }); + + test('validate unComplete sql4', () => { + const errors = trinoSQL.validate(sql4); + expect(errors.length).toBe(2); + expect(errors[0].message).toBe(`语句不完整`); + expect(errors[1].message).toBe( + `'a' 在此位置无效,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql index e0b4abd4..4daedde9 100644 --- a/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql @@ -48,4 +48,8 @@ SELECT count(*) FROM customer order BY sum() SELECT count(*) FROM customer where a > b -SELECT product_id, SUM(amount) AS total_sales FROM sales HAVING SUM(amount) > 1000; \ No newline at end of file +SELECT product_id, SUM(amount) AS total_sales FROM sales HAVING SUM(amount) > 1000; + +SELECT array_agg(x ORDER BY t.y) FROM t; + +SELECT orderId FROM orders WINDOW w AS (PARTITION BY clerk ORDER BY totalprice DESC) \ No newline at end of file diff --git a/test/parser/trino/suggestion/syntaxSuggestion.test.ts b/test/parser/trino/suggestion/syntaxSuggestion.test.ts index ec41bd53..f6be6d4e 100644 --- a/test/parser/trino/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/trino/suggestion/syntaxSuggestion.test.ts @@ -437,7 +437,7 @@ describe('Trino SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['sum', '(']); }); - test('where expression column', () => { + test('Where expression column', () => { const pos: CaretPosition = { lineNumber: 49, column: 42, @@ -454,7 +454,7 @@ describe('Trino SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['b']); }); - test('having expression column', () => { + test('Having expression column', () => { const pos: CaretPosition = { lineNumber: 51, column: 75, @@ -467,6 +467,41 @@ describe('Trino SQL Syntax Suggestion', () => { (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); - expect(suggestion).toBeUndefined(); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['amount']); + }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 53, + column: 32, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t', '.', 'y']); + }); + + test('Partition by expression column', () => { + const pos: CaretPosition = { + lineNumber: 55, + column: 59, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['clerk']); }); }); From 4fe18efedc8b26aec2b2ec6be9ec72701543dd5a Mon Sep 17 00:00:00 2001 From: LuckyFBB <976060700@qq.com> Date: Sat, 12 Oct 2024 11:25:12 +0800 Subject: [PATCH 3/3] feat(impala): add impala expression column --- src/grammar/impala/ImpalaSqlParser.g4 | 34 +- src/lib/impala/ImpalaSqlParser.interp | 6 +- src/lib/impala/ImpalaSqlParser.ts | 6702 +++++++++-------- src/lib/impala/ImpalaSqlParserListener.ts | 44 + src/lib/impala/ImpalaSqlParserVisitor.ts | 28 + src/parser/impala/ImpalaErrorListener.ts | 2 + src/parser/impala/index.ts | 13 + test/parser/impala/errorListener.test.ts | 15 + .../fixtures/suggestionWithEntity.sql | 10 + .../suggestion/suggestionWithEntity.test.ts | 120 + 10 files changed, 3718 insertions(+), 3256 deletions(-) diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index 75cb5889..415a79f3 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -344,18 +344,18 @@ deleteStatement ; delete - : KW_DELETE KW_FROM? tableNamePath (KW_WHERE booleanExpression)? + : KW_DELETE KW_FROM? tableNamePath (whereClause)? ; deleteTableRef : KW_DELETE tableNamePath (KW_AS? identifier)? KW_FROM (relation (COMMA relation)*)? ( - KW_WHERE booleanExpression + whereClause )? ; updateStatement : KW_UPDATE tableNamePath KW_SET assignmentList (KW_FROM relation (COMMA relation)*)? ( - KW_WHERE booleanExpression + whereClause )? ; @@ -563,6 +563,10 @@ columnNamePath | {this.shouldMatchEmpty()}? ; +columnName + : qualifiedName + ; + tableOrViewPath : tableNamePath | viewNamePath @@ -769,9 +773,15 @@ sortItem querySpecification : KW_SELECT setQuantifier? (KW_STRAIGHT_JOIN)? selectItem (COMMA selectItem)* ( KW_FROM relation (COMMA relation)* - )? (KW_WHERE where=booleanExpression)? (KW_GROUP KW_BY groupBy)? ( - KW_HAVING having=booleanExpression - )? + )? (whereClause)? (KW_GROUP KW_BY groupBy)? (havingClause)? + ; + +whereClause + : KW_WHERE where=booleanExpression + ; + +havingClause + : KW_HAVING having=booleanExpression ; groupBy @@ -933,7 +943,7 @@ primaryExpression | KW_TRY_CAST LPAREN expression KW_AS type RPAREN # cast | KW_ARRAY LSQUARE (expression (COMMA expression)*)? RSQUARE # arrayConstructor | value=primaryExpression LSQUARE index=valueExpression RSQUARE # subscript - | identifier # columnReference + | columnName # columnReference | base=primaryExpression DOT fieldName=identifier # dereference | name=KW_CURRENT_DATE # specialDateTimeFunction | name=KW_CURRENT_TIME (LPAREN precision=INTEGER_VALUE RPAREN)? # specialDateTimeFunction @@ -1050,11 +1060,15 @@ whenClause ; filter - : KW_FILTER LPAREN KW_WHERE booleanExpression RPAREN + : KW_FILTER LPAREN whereClause RPAREN + ; + +partitionByClause + : partition+=expression (COMMA partition+=expression)* ; over - : KW_OVER LPAREN (KW_PARTITION KW_BY partition+=expression (COMMA partition+=expression)*)? ( + : KW_OVER LPAREN (KW_PARTITION KW_BY partitionByClause)? ( KW_ORDER KW_BY sortItem (COMMA sortItem)* )? windowFrame? RPAREN ; @@ -1093,7 +1107,7 @@ privilege | KW_CREATE | KW_INSERT | KW_REFRESH - | KW_SELECT (LPAREN columnName=identifier RPAREN)? + | KW_SELECT (LPAREN name=identifier RPAREN)? ; objectType diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index 6c98fc59..93df4f86 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -680,6 +680,7 @@ tableNamePath viewNamePath functionNamePath columnNamePath +columnName tableOrViewPath createCommonItem assignmentList @@ -719,6 +720,8 @@ queryTerm queryPrimary sortItem querySpecification +whereClause +havingClause groupBy groupingElement groupingSet @@ -755,6 +758,7 @@ typeParameter baseType whenClause filter +partitionByClause over windowFrame frameBound @@ -771,4 +775,4 @@ nonReserved atn: -[4, 1, 289, 2772, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 1, 0, 5, 0, 372, 8, 0, 10, 0, 12, 0, 375, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 381, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 405, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 418, 8, 4, 1, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 433, 8, 5, 10, 5, 12, 5, 436, 9, 5, 1, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 450, 8, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 457, 8, 5, 1, 6, 1, 6, 3, 6, 461, 8, 6, 1, 6, 1, 6, 3, 6, 465, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 472, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 477, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 483, 8, 7, 1, 7, 1, 7, 3, 7, 487, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 494, 8, 7, 10, 7, 12, 7, 497, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 503, 8, 7, 1, 7, 1, 7, 3, 7, 507, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 512, 8, 7, 3, 7, 514, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 529, 8, 7, 1, 7, 1, 7, 3, 7, 533, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 538, 8, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 3, 8, 549, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 557, 8, 9, 1, 9, 1, 9, 3, 9, 561, 8, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 573, 8, 11, 1, 11, 1, 11, 3, 11, 577, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 584, 8, 11, 10, 11, 12, 11, 587, 9, 11, 3, 11, 589, 8, 11, 1, 11, 3, 11, 592, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 598, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 616, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 621, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 631, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 636, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 643, 8, 12, 10, 12, 12, 12, 646, 9, 12, 3, 12, 648, 8, 12, 1, 12, 3, 12, 651, 8, 12, 1, 12, 1, 12, 3, 12, 655, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 681, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 707, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 716, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 726, 8, 16, 1, 16, 3, 16, 729, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 743, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 761, 8, 20, 3, 20, 763, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 770, 8, 20, 10, 20, 12, 20, 773, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 783, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 792, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 799, 8, 22, 1, 22, 1, 22, 3, 22, 803, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 810, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 3, 23, 819, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 831, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 845, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 858, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 863, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 868, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 874, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 910, 8, 32, 1, 32, 3, 32, 913, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 3, 33, 922, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 928, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 934, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 946, 8, 35, 3, 35, 948, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 959, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 967, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 972, 8, 38, 1, 38, 1, 38, 3, 38, 976, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 981, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 988, 8, 40, 1, 40, 1, 40, 3, 40, 992, 8, 40, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1002, 8, 41, 1, 42, 1, 42, 3, 42, 1006, 8, 42, 1, 42, 1, 42, 3, 42, 1010, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1017, 8, 42, 10, 42, 12, 42, 1020, 9, 42, 3, 42, 1022, 8, 42, 1, 42, 3, 42, 1025, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1033, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1047, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1054, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1073, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1078, 8, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 50, 3, 50, 1084, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1089, 8, 50, 1, 50, 1, 50, 3, 50, 1093, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1100, 8, 50, 10, 50, 12, 50, 1103, 9, 50, 1, 50, 1, 50, 3, 50, 1107, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1113, 8, 51, 1, 52, 1, 52, 3, 52, 1117, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1122, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1127, 8, 53, 1, 53, 3, 53, 1130, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1136, 8, 53, 10, 53, 12, 53, 1139, 9, 53, 3, 53, 1141, 8, 53, 1, 53, 1, 53, 3, 53, 1145, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1155, 8, 54, 10, 54, 12, 54, 1158, 9, 54, 3, 54, 1160, 8, 54, 1, 54, 1, 54, 3, 54, 1164, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1169, 8, 55, 1, 55, 1, 55, 3, 55, 1173, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1189, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1194, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1199, 8, 57, 10, 57, 12, 57, 1202, 9, 57, 3, 57, 1204, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1210, 8, 58, 1, 58, 3, 58, 1213, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1218, 8, 58, 10, 58, 12, 58, 1221, 9, 58, 3, 58, 1223, 8, 58, 1, 59, 1, 59, 3, 59, 1227, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 3, 59, 1235, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1240, 8, 59, 10, 59, 12, 59, 1243, 9, 59, 3, 59, 1245, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1269, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1283, 8, 65, 1, 65, 1, 65, 3, 65, 1287, 8, 65, 1, 66, 1, 66, 3, 66, 1291, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1311, 8, 68, 3, 68, 1313, 8, 68, 3, 68, 1315, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1324, 8, 69, 3, 69, 1326, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1335, 8, 70, 3, 70, 1337, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1346, 8, 71, 3, 71, 1348, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1353, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1362, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1371, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1380, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1391, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1397, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 3, 78, 1405, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1418, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1428, 8, 80, 1, 80, 1, 80, 3, 80, 1432, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1437, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1446, 8, 82, 10, 82, 12, 82, 1449, 9, 82, 1, 82, 1, 82, 3, 82, 1453, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1484, 8, 93, 10, 93, 12, 93, 1487, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1492, 8, 94, 10, 94, 12, 94, 1495, 9, 94, 1, 95, 1, 95, 3, 95, 1499, 8, 95, 1, 96, 1, 96, 3, 96, 1503, 8, 96, 1, 97, 1, 97, 3, 97, 1507, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1512, 8, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1530, 8, 98, 1, 98, 1, 98, 3, 98, 1534, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 3, 98, 1550, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1555, 8, 99, 10, 99, 12, 99, 1558, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 3, 101, 1566, 8, 101, 1, 101, 1, 101, 3, 101, 1570, 8, 101, 5, 101, 1572, 8, 101, 10, 101, 12, 101, 1575, 9, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1581, 8, 102, 1, 103, 3, 103, 1584, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1592, 8, 104, 10, 104, 12, 104, 1595, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1601, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1606, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1611, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 105, 1, 105, 5, 105, 1620, 8, 105, 10, 105, 12, 105, 1623, 9, 105, 3, 105, 1625, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1634, 8, 106, 1, 106, 3, 106, 1637, 8, 106, 1, 106, 3, 106, 1640, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1646, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1659, 8, 110, 10, 110, 12, 110, 1662, 9, 110, 3, 110, 1664, 8, 110, 1, 110, 3, 110, 1667, 8, 110, 1, 110, 1, 110, 3, 110, 1671, 8, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1679, 8, 112, 10, 112, 12, 112, 1682, 9, 112, 3, 112, 1684, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1690, 8, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 114, 3, 114, 1702, 8, 114, 1, 114, 1, 114, 3, 114, 1706, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1716, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 5, 118, 1725, 8, 118, 10, 118, 12, 118, 1728, 9, 118, 1, 118, 1, 118, 3, 118, 1732, 8, 118, 1, 118, 3, 118, 1735, 8, 118, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1754, 8, 120, 10, 120, 12, 120, 1757, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1768, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1774, 8, 121, 3, 121, 1776, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1785, 8, 122, 1, 122, 3, 122, 1788, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1805, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1811, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1817, 8, 126, 10, 126, 12, 126, 1820, 9, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1828, 8, 127, 10, 127, 12, 127, 1831, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 5, 128, 1838, 8, 128, 10, 128, 12, 128, 1841, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1851, 8, 129, 3, 129, 1853, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1859, 8, 129, 1, 130, 1, 130, 1, 130, 3, 130, 1864, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1872, 8, 131, 10, 131, 12, 131, 1875, 9, 131, 3, 131, 1877, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1883, 8, 131, 3, 131, 1885, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1893, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1899, 8, 132, 1, 132, 5, 132, 1902, 8, 132, 10, 132, 12, 132, 1905, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1914, 8, 133, 10, 133, 12, 133, 1917, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1923, 8, 133, 1, 134, 1, 134, 3, 134, 1927, 8, 134, 1, 134, 1, 134, 3, 134, 1931, 8, 134, 1, 135, 1, 135, 3, 135, 1935, 8, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1943, 8, 135, 10, 135, 12, 135, 1946, 9, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1952, 8, 135, 10, 135, 12, 135, 1955, 9, 135, 3, 135, 1957, 8, 135, 1, 135, 1, 135, 3, 135, 1961, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1966, 8, 135, 1, 135, 1, 135, 3, 135, 1970, 8, 135, 1, 136, 3, 136, 1973, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1978, 8, 136, 10, 136, 12, 136, 1981, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1989, 8, 138, 10, 138, 12, 138, 1992, 9, 138, 3, 138, 1994, 8, 138, 1, 138, 1, 138, 3, 138, 1998, 8, 138, 1, 139, 1, 139, 3, 139, 2002, 8, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 2011, 8, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2021, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2035, 8, 142, 5, 142, 2037, 8, 142, 10, 142, 12, 142, 2040, 9, 142, 1, 143, 3, 143, 2043, 8, 143, 1, 143, 1, 143, 3, 143, 2047, 8, 143, 1, 143, 1, 143, 3, 143, 2051, 8, 143, 1, 143, 1, 143, 3, 143, 2055, 8, 143, 1, 143, 1, 143, 3, 143, 2059, 8, 143, 1, 143, 1, 143, 3, 143, 2063, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2073, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2082, 8, 144, 10, 144, 12, 144, 2085, 9, 144, 1, 144, 1, 144, 3, 144, 2089, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2102, 8, 145, 3, 145, 2104, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2110, 8, 147, 1, 147, 1, 147, 3, 147, 2114, 8, 147, 3, 147, 2116, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 2122, 8, 148, 10, 148, 12, 148, 2125, 9, 148, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 2131, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2136, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2147, 8, 151, 10, 151, 12, 151, 2150, 9, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2155, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2163, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2170, 8, 155, 1, 155, 1, 155, 3, 155, 2174, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2182, 8, 155, 10, 155, 12, 155, 2185, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2195, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2203, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2210, 8, 156, 10, 156, 12, 156, 2213, 9, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2218, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2223, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2229, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2235, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2240, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2245, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2251, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 2262, 8, 157, 10, 157, 12, 157, 2265, 9, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2291, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2297, 8, 158, 5, 158, 2299, 8, 158, 10, 158, 12, 158, 2302, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2311, 8, 158, 10, 158, 12, 158, 2314, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2323, 8, 158, 1, 158, 3, 158, 2326, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2331, 8, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2336, 8, 158, 10, 158, 12, 158, 2339, 9, 158, 3, 158, 2341, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2348, 8, 158, 10, 158, 12, 158, 2351, 9, 158, 3, 158, 2353, 8, 158, 1, 158, 1, 158, 3, 158, 2357, 8, 158, 1, 158, 3, 158, 2360, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2370, 8, 158, 10, 158, 12, 158, 2373, 9, 158, 3, 158, 2375, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 4, 158, 2392, 8, 158, 11, 158, 12, 158, 2393, 1, 158, 1, 158, 3, 158, 2398, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 4, 158, 2404, 8, 158, 11, 158, 12, 158, 2405, 1, 158, 1, 158, 3, 158, 2410, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2433, 8, 158, 10, 158, 12, 158, 2436, 9, 158, 3, 158, 2438, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2447, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2453, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2459, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2465, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2476, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2485, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2505, 8, 158, 10, 158, 12, 158, 2508, 9, 158, 3, 158, 2510, 8, 158, 1, 158, 3, 158, 2513, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2523, 8, 158, 10, 158, 12, 158, 2526, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2532, 8, 159, 3, 159, 2534, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2556, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2583, 8, 166, 10, 166, 12, 166, 2586, 9, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2592, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2598, 8, 166, 10, 166, 12, 166, 2601, 9, 166, 1, 166, 1, 166, 3, 166, 2605, 8, 166, 3, 166, 2607, 8, 166, 1, 166, 1, 166, 5, 166, 2611, 8, 166, 10, 166, 12, 166, 2614, 9, 166, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2620, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2626, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2646, 8, 172, 10, 172, 12, 172, 2649, 9, 172, 3, 172, 2651, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2658, 8, 172, 10, 172, 12, 172, 2661, 9, 172, 3, 172, 2663, 8, 172, 1, 172, 3, 172, 2666, 8, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2686, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2697, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2704, 8, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2709, 8, 176, 10, 176, 12, 176, 2712, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2725, 8, 177, 3, 177, 2727, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2734, 8, 179, 10, 179, 12, 179, 2737, 9, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2745, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2752, 8, 181, 1, 182, 3, 182, 2755, 8, 182, 1, 182, 1, 182, 3, 182, 2759, 8, 182, 1, 182, 1, 182, 3, 182, 2763, 8, 182, 1, 182, 3, 182, 2766, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 10, 771, 1447, 1621, 1660, 1680, 1695, 1726, 1755, 1829, 2300, 6, 264, 284, 310, 314, 316, 332, 185, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3093, 0, 373, 1, 0, 0, 0, 2, 378, 1, 0, 0, 0, 4, 404, 1, 0, 0, 0, 6, 406, 1, 0, 0, 0, 8, 417, 1, 0, 0, 0, 10, 419, 1, 0, 0, 0, 12, 458, 1, 0, 0, 0, 14, 480, 1, 0, 0, 0, 16, 534, 1, 0, 0, 0, 18, 553, 1, 0, 0, 0, 20, 566, 1, 0, 0, 0, 22, 570, 1, 0, 0, 0, 24, 632, 1, 0, 0, 0, 26, 680, 1, 0, 0, 0, 28, 682, 1, 0, 0, 0, 30, 690, 1, 0, 0, 0, 32, 710, 1, 0, 0, 0, 34, 730, 1, 0, 0, 0, 36, 737, 1, 0, 0, 0, 38, 746, 1, 0, 0, 0, 40, 754, 1, 0, 0, 0, 42, 776, 1, 0, 0, 0, 44, 786, 1, 0, 0, 0, 46, 804, 1, 0, 0, 0, 48, 825, 1, 0, 0, 0, 50, 846, 1, 0, 0, 0, 52, 852, 1, 0, 0, 0, 54, 869, 1, 0, 0, 0, 56, 878, 1, 0, 0, 0, 58, 885, 1, 0, 0, 0, 60, 893, 1, 0, 0, 0, 62, 900, 1, 0, 0, 0, 64, 907, 1, 0, 0, 0, 66, 916, 1, 0, 0, 0, 68, 927, 1, 0, 0, 0, 70, 929, 1, 0, 0, 0, 72, 949, 1, 0, 0, 0, 74, 966, 1, 0, 0, 0, 76, 968, 1, 0, 0, 0, 78, 977, 1, 0, 0, 0, 80, 984, 1, 0, 0, 0, 82, 993, 1, 0, 0, 0, 84, 1003, 1, 0, 0, 0, 86, 1026, 1, 0, 0, 0, 88, 1032, 1, 0, 0, 0, 90, 1034, 1, 0, 0, 0, 92, 1041, 1, 0, 0, 0, 94, 1053, 1, 0, 0, 0, 96, 1055, 1, 0, 0, 0, 98, 1062, 1, 0, 0, 0, 100, 1083, 1, 0, 0, 0, 102, 1112, 1, 0, 0, 0, 104, 1114, 1, 0, 0, 0, 106, 1123, 1, 0, 0, 0, 108, 1146, 1, 0, 0, 0, 110, 1165, 1, 0, 0, 0, 112, 1188, 1, 0, 0, 0, 114, 1190, 1, 0, 0, 0, 116, 1205, 1, 0, 0, 0, 118, 1224, 1, 0, 0, 0, 120, 1246, 1, 0, 0, 0, 122, 1251, 1, 0, 0, 0, 124, 1256, 1, 0, 0, 0, 126, 1261, 1, 0, 0, 0, 128, 1266, 1, 0, 0, 0, 130, 1273, 1, 0, 0, 0, 132, 1288, 1, 0, 0, 0, 134, 1294, 1, 0, 0, 0, 136, 1314, 1, 0, 0, 0, 138, 1316, 1, 0, 0, 0, 140, 1327, 1, 0, 0, 0, 142, 1338, 1, 0, 0, 0, 144, 1352, 1, 0, 0, 0, 146, 1354, 1, 0, 0, 0, 148, 1363, 1, 0, 0, 0, 150, 1372, 1, 0, 0, 0, 152, 1381, 1, 0, 0, 0, 154, 1384, 1, 0, 0, 0, 156, 1392, 1, 0, 0, 0, 158, 1408, 1, 0, 0, 0, 160, 1412, 1, 0, 0, 0, 162, 1436, 1, 0, 0, 0, 164, 1438, 1, 0, 0, 0, 166, 1454, 1, 0, 0, 0, 168, 1457, 1, 0, 0, 0, 170, 1461, 1, 0, 0, 0, 172, 1464, 1, 0, 0, 0, 174, 1468, 1, 0, 0, 0, 176, 1470, 1, 0, 0, 0, 178, 1472, 1, 0, 0, 0, 180, 1474, 1, 0, 0, 0, 182, 1476, 1, 0, 0, 0, 184, 1478, 1, 0, 0, 0, 186, 1480, 1, 0, 0, 0, 188, 1488, 1, 0, 0, 0, 190, 1498, 1, 0, 0, 0, 192, 1502, 1, 0, 0, 0, 194, 1506, 1, 0, 0, 0, 196, 1511, 1, 0, 0, 0, 198, 1551, 1, 0, 0, 0, 200, 1559, 1, 0, 0, 0, 202, 1563, 1, 0, 0, 0, 204, 1578, 1, 0, 0, 0, 206, 1583, 1, 0, 0, 0, 208, 1587, 1, 0, 0, 0, 210, 1596, 1, 0, 0, 0, 212, 1626, 1, 0, 0, 0, 214, 1641, 1, 0, 0, 0, 216, 1647, 1, 0, 0, 0, 218, 1652, 1, 0, 0, 0, 220, 1654, 1, 0, 0, 0, 222, 1672, 1, 0, 0, 0, 224, 1675, 1, 0, 0, 0, 226, 1685, 1, 0, 0, 0, 228, 1705, 1, 0, 0, 0, 230, 1715, 1, 0, 0, 0, 232, 1717, 1, 0, 0, 0, 234, 1719, 1, 0, 0, 0, 236, 1734, 1, 0, 0, 0, 238, 1736, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1775, 1, 0, 0, 0, 244, 1787, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1804, 1, 0, 0, 0, 250, 1806, 1, 0, 0, 0, 252, 1812, 1, 0, 0, 0, 254, 1823, 1, 0, 0, 0, 256, 1834, 1, 0, 0, 0, 258, 1842, 1, 0, 0, 0, 260, 1860, 1, 0, 0, 0, 262, 1865, 1, 0, 0, 0, 264, 1886, 1, 0, 0, 0, 266, 1922, 1, 0, 0, 0, 268, 1924, 1, 0, 0, 0, 270, 1932, 1, 0, 0, 0, 272, 1972, 1, 0, 0, 0, 274, 1982, 1, 0, 0, 0, 276, 1997, 1, 0, 0, 0, 278, 1999, 1, 0, 0, 0, 280, 2006, 1, 0, 0, 0, 282, 2020, 1, 0, 0, 0, 284, 2022, 1, 0, 0, 0, 286, 2072, 1, 0, 0, 0, 288, 2088, 1, 0, 0, 0, 290, 2090, 1, 0, 0, 0, 292, 2105, 1, 0, 0, 0, 294, 2107, 1, 0, 0, 0, 296, 2117, 1, 0, 0, 0, 298, 2135, 1, 0, 0, 0, 300, 2137, 1, 0, 0, 0, 302, 2141, 1, 0, 0, 0, 304, 2156, 1, 0, 0, 0, 306, 2162, 1, 0, 0, 0, 308, 2164, 1, 0, 0, 0, 310, 2173, 1, 0, 0, 0, 312, 2244, 1, 0, 0, 0, 314, 2250, 1, 0, 0, 0, 316, 2512, 1, 0, 0, 0, 318, 2533, 1, 0, 0, 0, 320, 2535, 1, 0, 0, 0, 322, 2537, 1, 0, 0, 0, 324, 2539, 1, 0, 0, 0, 326, 2555, 1, 0, 0, 0, 328, 2557, 1, 0, 0, 0, 330, 2559, 1, 0, 0, 0, 332, 2606, 1, 0, 0, 0, 334, 2615, 1, 0, 0, 0, 336, 2619, 1, 0, 0, 0, 338, 2625, 1, 0, 0, 0, 340, 2627, 1, 0, 0, 0, 342, 2632, 1, 0, 0, 0, 344, 2638, 1, 0, 0, 0, 346, 2685, 1, 0, 0, 0, 348, 2696, 1, 0, 0, 0, 350, 2703, 1, 0, 0, 0, 352, 2705, 1, 0, 0, 0, 354, 2726, 1, 0, 0, 0, 356, 2728, 1, 0, 0, 0, 358, 2730, 1, 0, 0, 0, 360, 2744, 1, 0, 0, 0, 362, 2751, 1, 0, 0, 0, 364, 2765, 1, 0, 0, 0, 366, 2767, 1, 0, 0, 0, 368, 2769, 1, 0, 0, 0, 370, 372, 3, 2, 1, 0, 371, 370, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 5, 0, 0, 1, 377, 1, 1, 0, 0, 0, 378, 380, 3, 4, 2, 0, 379, 381, 5, 262, 0, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 3, 1, 0, 0, 0, 382, 405, 3, 206, 103, 0, 383, 405, 3, 6, 3, 0, 384, 405, 3, 8, 4, 0, 385, 405, 3, 26, 13, 0, 386, 405, 3, 64, 32, 0, 387, 405, 3, 66, 33, 0, 388, 405, 3, 68, 34, 0, 389, 405, 3, 74, 37, 0, 390, 405, 3, 88, 44, 0, 391, 405, 3, 94, 47, 0, 392, 405, 3, 100, 50, 0, 393, 405, 3, 102, 51, 0, 394, 405, 3, 108, 54, 0, 395, 405, 3, 110, 55, 0, 396, 405, 3, 112, 56, 0, 397, 405, 3, 144, 72, 0, 398, 405, 3, 152, 76, 0, 399, 405, 3, 154, 77, 0, 400, 405, 3, 156, 78, 0, 401, 405, 3, 158, 79, 0, 402, 405, 3, 160, 80, 0, 403, 405, 3, 162, 81, 0, 404, 382, 1, 0, 0, 0, 404, 383, 1, 0, 0, 0, 404, 384, 1, 0, 0, 0, 404, 385, 1, 0, 0, 0, 404, 386, 1, 0, 0, 0, 404, 387, 1, 0, 0, 0, 404, 388, 1, 0, 0, 0, 404, 389, 1, 0, 0, 0, 404, 390, 1, 0, 0, 0, 404, 391, 1, 0, 0, 0, 404, 392, 1, 0, 0, 0, 404, 393, 1, 0, 0, 0, 404, 394, 1, 0, 0, 0, 404, 395, 1, 0, 0, 0, 404, 396, 1, 0, 0, 0, 404, 397, 1, 0, 0, 0, 404, 398, 1, 0, 0, 0, 404, 399, 1, 0, 0, 0, 404, 400, 1, 0, 0, 0, 404, 401, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 403, 1, 0, 0, 0, 405, 5, 1, 0, 0, 0, 406, 407, 5, 203, 0, 0, 407, 408, 3, 184, 92, 0, 408, 7, 1, 0, 0, 0, 409, 418, 3, 18, 9, 0, 410, 418, 3, 20, 10, 0, 411, 418, 3, 22, 11, 0, 412, 418, 3, 24, 12, 0, 413, 418, 3, 16, 8, 0, 414, 418, 3, 14, 7, 0, 415, 418, 3, 12, 6, 0, 416, 418, 3, 10, 5, 0, 417, 409, 1, 0, 0, 0, 417, 410, 1, 0, 0, 0, 417, 411, 1, 0, 0, 0, 417, 412, 1, 0, 0, 0, 417, 413, 1, 0, 0, 0, 417, 414, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 416, 1, 0, 0, 0, 418, 9, 1, 0, 0, 0, 419, 421, 5, 37, 0, 0, 420, 422, 5, 19, 0, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 5, 188, 0, 0, 424, 426, 3, 172, 86, 0, 425, 424, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 443, 3, 174, 87, 0, 428, 429, 5, 265, 0, 0, 429, 434, 3, 216, 108, 0, 430, 431, 5, 263, 0, 0, 431, 433, 3, 216, 108, 0, 432, 430, 1, 0, 0, 0, 433, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 437, 438, 5, 263, 0, 0, 438, 440, 3, 210, 105, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 5, 266, 0, 0, 442, 444, 1, 0, 0, 0, 443, 428, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 451, 1, 0, 0, 0, 445, 446, 5, 17, 0, 0, 446, 449, 5, 26, 0, 0, 447, 450, 3, 296, 148, 0, 448, 450, 3, 254, 127, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 445, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 3, 196, 98, 0, 454, 455, 5, 9, 0, 0, 455, 457, 3, 206, 103, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 11, 1, 0, 0, 0, 458, 460, 5, 37, 0, 0, 459, 461, 5, 19, 0, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 5, 188, 0, 0, 463, 465, 3, 172, 86, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 3, 174, 87, 0, 467, 471, 5, 115, 0, 0, 468, 472, 3, 186, 93, 0, 469, 470, 5, 147, 0, 0, 470, 472, 3, 318, 159, 0, 471, 468, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 476, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 475, 5, 26, 0, 0, 475, 477, 3, 254, 127, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 3, 196, 98, 0, 479, 13, 1, 0, 0, 0, 480, 482, 5, 37, 0, 0, 481, 483, 5, 19, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 188, 0, 0, 485, 487, 3, 172, 86, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 506, 3, 174, 87, 0, 489, 490, 5, 265, 0, 0, 490, 495, 3, 218, 109, 0, 491, 492, 5, 263, 0, 0, 492, 494, 3, 218, 109, 0, 493, 491, 1, 0, 0, 0, 494, 497, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 502, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 499, 5, 263, 0, 0, 499, 500, 5, 150, 0, 0, 500, 501, 5, 110, 0, 0, 501, 503, 3, 296, 148, 0, 502, 498, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 5, 266, 0, 0, 505, 507, 1, 0, 0, 0, 506, 489, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 513, 1, 0, 0, 0, 508, 509, 5, 150, 0, 0, 509, 511, 5, 110, 0, 0, 510, 512, 3, 296, 148, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 508, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 518, 1, 0, 0, 0, 515, 516, 5, 145, 0, 0, 516, 517, 5, 26, 0, 0, 517, 519, 3, 236, 118, 0, 518, 515, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 222, 111, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 23, 0, 0, 524, 525, 5, 9, 0, 0, 525, 528, 5, 111, 0, 0, 526, 527, 5, 25, 0, 0, 527, 529, 3, 252, 126, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 531, 5, 9, 0, 0, 531, 533, 3, 206, 103, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 15, 1, 0, 0, 0, 534, 535, 5, 37, 0, 0, 535, 537, 5, 212, 0, 0, 536, 538, 3, 172, 86, 0, 537, 536, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 3, 178, 89, 0, 540, 542, 3, 202, 101, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 545, 3, 222, 111, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 547, 5, 25, 0, 0, 547, 549, 3, 252, 126, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 9, 0, 0, 551, 552, 3, 206, 103, 0, 552, 17, 1, 0, 0, 0, 553, 554, 5, 37, 0, 0, 554, 556, 7, 0, 0, 0, 555, 557, 3, 172, 86, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 3, 176, 88, 0, 559, 561, 3, 222, 111, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 24, 0, 0, 563, 565, 3, 318, 159, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 19, 1, 0, 0, 0, 566, 567, 5, 37, 0, 0, 567, 568, 5, 166, 0, 0, 568, 569, 3, 362, 181, 0, 569, 21, 1, 0, 0, 0, 570, 572, 5, 37, 0, 0, 571, 573, 5, 12, 0, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 5, 84, 0, 0, 575, 577, 3, 172, 86, 0, 576, 575, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 591, 3, 180, 90, 0, 579, 588, 5, 265, 0, 0, 580, 585, 3, 332, 166, 0, 581, 582, 5, 263, 0, 0, 582, 584, 3, 332, 166, 0, 583, 581, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 588, 580, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 592, 5, 266, 0, 0, 591, 579, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 160, 0, 0, 594, 597, 3, 332, 166, 0, 595, 596, 5, 102, 0, 0, 596, 598, 3, 332, 166, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 5, 24, 0, 0, 600, 604, 5, 274, 0, 0, 601, 602, 5, 104, 0, 0, 602, 603, 5, 249, 0, 0, 603, 605, 5, 274, 0, 0, 604, 601, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 5, 206, 0, 0, 607, 608, 5, 249, 0, 0, 608, 609, 5, 274, 0, 0, 609, 610, 5, 126, 0, 0, 610, 611, 5, 249, 0, 0, 611, 615, 5, 274, 0, 0, 612, 613, 5, 18, 0, 0, 613, 614, 5, 249, 0, 0, 614, 616, 5, 274, 0, 0, 615, 612, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 618, 5, 20, 0, 0, 618, 619, 5, 249, 0, 0, 619, 621, 5, 274, 0, 0, 620, 617, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 625, 1, 0, 0, 0, 622, 623, 5, 187, 0, 0, 623, 624, 5, 249, 0, 0, 624, 626, 5, 274, 0, 0, 625, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 628, 5, 76, 0, 0, 628, 629, 5, 249, 0, 0, 629, 631, 5, 274, 0, 0, 630, 627, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 23, 1, 0, 0, 0, 632, 633, 5, 37, 0, 0, 633, 635, 5, 84, 0, 0, 634, 636, 3, 172, 86, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 650, 3, 180, 90, 0, 638, 647, 5, 265, 0, 0, 639, 644, 3, 332, 166, 0, 640, 641, 5, 263, 0, 0, 641, 643, 3, 332, 166, 0, 642, 640, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 639, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 651, 5, 266, 0, 0, 650, 638, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 160, 0, 0, 653, 655, 3, 332, 166, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 24, 0, 0, 657, 658, 5, 274, 0, 0, 658, 659, 5, 186, 0, 0, 659, 660, 5, 249, 0, 0, 660, 661, 3, 318, 159, 0, 661, 25, 1, 0, 0, 0, 662, 681, 3, 28, 14, 0, 663, 681, 3, 62, 31, 0, 664, 681, 3, 60, 30, 0, 665, 681, 3, 58, 29, 0, 666, 681, 3, 54, 27, 0, 667, 681, 3, 56, 28, 0, 668, 681, 3, 52, 26, 0, 669, 681, 3, 48, 24, 0, 670, 681, 3, 50, 25, 0, 671, 681, 3, 46, 23, 0, 672, 681, 3, 44, 22, 0, 673, 681, 3, 42, 21, 0, 674, 681, 3, 40, 20, 0, 675, 681, 3, 34, 17, 0, 676, 681, 3, 30, 15, 0, 677, 681, 3, 32, 16, 0, 678, 681, 3, 36, 18, 0, 679, 681, 3, 38, 19, 0, 680, 662, 1, 0, 0, 0, 680, 663, 1, 0, 0, 0, 680, 664, 1, 0, 0, 0, 680, 665, 1, 0, 0, 0, 680, 666, 1, 0, 0, 0, 680, 667, 1, 0, 0, 0, 680, 668, 1, 0, 0, 0, 680, 669, 1, 0, 0, 0, 680, 670, 1, 0, 0, 0, 680, 671, 1, 0, 0, 0, 680, 672, 1, 0, 0, 0, 680, 673, 1, 0, 0, 0, 680, 674, 1, 0, 0, 0, 680, 675, 1, 0, 0, 0, 680, 676, 1, 0, 0, 0, 680, 677, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 679, 1, 0, 0, 0, 681, 27, 1, 0, 0, 0, 682, 683, 5, 4, 0, 0, 683, 684, 5, 46, 0, 0, 684, 685, 3, 184, 92, 0, 685, 686, 5, 176, 0, 0, 686, 687, 5, 142, 0, 0, 687, 688, 7, 1, 0, 0, 688, 689, 3, 362, 181, 0, 689, 29, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 188, 0, 0, 692, 693, 3, 186, 93, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 32, 0, 0, 695, 696, 5, 182, 0, 0, 696, 697, 3, 192, 96, 0, 697, 698, 5, 265, 0, 0, 698, 699, 3, 232, 116, 0, 699, 700, 5, 249, 0, 0, 700, 706, 3, 318, 159, 0, 701, 702, 5, 263, 0, 0, 702, 703, 3, 232, 116, 0, 703, 704, 5, 249, 0, 0, 704, 705, 3, 318, 159, 0, 705, 707, 1, 0, 0, 0, 706, 701, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 266, 0, 0, 709, 31, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 188, 0, 0, 712, 715, 3, 186, 93, 0, 713, 714, 5, 145, 0, 0, 714, 716, 3, 308, 154, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 728, 5, 176, 0, 0, 718, 719, 5, 30, 0, 0, 719, 720, 5, 94, 0, 0, 720, 725, 3, 318, 159, 0, 721, 722, 5, 216, 0, 0, 722, 723, 5, 151, 0, 0, 723, 724, 5, 249, 0, 0, 724, 726, 3, 364, 182, 0, 725, 721, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 729, 5, 197, 0, 0, 728, 718, 1, 0, 0, 0, 728, 727, 1, 0, 0, 0, 729, 33, 1, 0, 0, 0, 730, 731, 5, 4, 0, 0, 731, 732, 5, 188, 0, 0, 732, 733, 3, 186, 93, 0, 733, 734, 5, 31, 0, 0, 734, 735, 3, 192, 96, 0, 735, 736, 3, 224, 112, 0, 736, 35, 1, 0, 0, 0, 737, 738, 5, 4, 0, 0, 738, 739, 5, 188, 0, 0, 739, 740, 3, 186, 93, 0, 740, 742, 5, 58, 0, 0, 741, 743, 5, 32, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 3, 192, 96, 0, 745, 37, 1, 0, 0, 0, 746, 747, 5, 4, 0, 0, 747, 748, 5, 188, 0, 0, 748, 749, 3, 186, 93, 0, 749, 750, 5, 176, 0, 0, 750, 751, 5, 142, 0, 0, 751, 752, 7, 1, 0, 0, 752, 753, 3, 362, 181, 0, 753, 39, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 762, 3, 186, 93, 0, 757, 763, 5, 158, 0, 0, 758, 760, 5, 1, 0, 0, 759, 761, 3, 172, 86, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 763, 1, 0, 0, 0, 762, 757, 1, 0, 0, 0, 762, 758, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 5, 33, 0, 0, 765, 766, 5, 265, 0, 0, 766, 771, 3, 224, 112, 0, 767, 768, 5, 263, 0, 0, 768, 770, 3, 224, 112, 0, 769, 767, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 774, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 775, 5, 266, 0, 0, 775, 41, 1, 0, 0, 0, 776, 777, 5, 4, 0, 0, 777, 778, 5, 188, 0, 0, 778, 779, 3, 186, 93, 0, 779, 780, 5, 1, 0, 0, 780, 782, 5, 32, 0, 0, 781, 783, 3, 172, 86, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 3, 226, 113, 0, 785, 43, 1, 0, 0, 0, 786, 787, 5, 4, 0, 0, 787, 788, 5, 188, 0, 0, 788, 789, 3, 186, 93, 0, 789, 791, 5, 4, 0, 0, 790, 792, 5, 32, 0, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 802, 3, 192, 96, 0, 794, 798, 5, 176, 0, 0, 795, 799, 3, 230, 115, 0, 796, 797, 5, 34, 0, 0, 797, 799, 3, 318, 159, 0, 798, 795, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 799, 803, 1, 0, 0, 0, 800, 801, 5, 58, 0, 0, 801, 803, 5, 51, 0, 0, 802, 794, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 803, 45, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 809, 5, 1, 0, 0, 808, 810, 3, 172, 86, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 823, 1, 0, 0, 0, 811, 812, 5, 145, 0, 0, 812, 815, 3, 308, 154, 0, 813, 814, 5, 24, 0, 0, 814, 816, 3, 318, 159, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 1, 0, 0, 0, 817, 819, 3, 244, 122, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 821, 5, 154, 0, 0, 821, 822, 5, 145, 0, 0, 822, 824, 3, 242, 121, 0, 823, 811, 1, 0, 0, 0, 823, 820, 1, 0, 0, 0, 824, 47, 1, 0, 0, 0, 825, 826, 5, 4, 0, 0, 826, 827, 5, 188, 0, 0, 827, 830, 3, 186, 93, 0, 828, 829, 5, 145, 0, 0, 829, 831, 3, 308, 154, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 844, 5, 176, 0, 0, 833, 834, 5, 72, 0, 0, 834, 845, 3, 234, 117, 0, 835, 836, 5, 168, 0, 0, 836, 837, 5, 79, 0, 0, 837, 845, 3, 258, 129, 0, 838, 839, 5, 24, 0, 0, 839, 845, 3, 318, 159, 0, 840, 841, 5, 25, 0, 0, 841, 845, 3, 252, 126, 0, 842, 843, 5, 175, 0, 0, 843, 845, 3, 252, 126, 0, 844, 833, 1, 0, 0, 0, 844, 835, 1, 0, 0, 0, 844, 838, 1, 0, 0, 0, 844, 840, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 49, 1, 0, 0, 0, 846, 847, 5, 4, 0, 0, 847, 848, 5, 188, 0, 0, 848, 849, 3, 186, 93, 0, 849, 850, 5, 155, 0, 0, 850, 851, 5, 146, 0, 0, 851, 51, 1, 0, 0, 0, 852, 853, 5, 4, 0, 0, 853, 854, 5, 188, 0, 0, 854, 855, 3, 186, 93, 0, 855, 857, 5, 58, 0, 0, 856, 858, 3, 170, 85, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 867, 1, 0, 0, 0, 859, 860, 5, 145, 0, 0, 860, 862, 3, 308, 154, 0, 861, 863, 5, 22, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 868, 1, 0, 0, 0, 864, 865, 5, 154, 0, 0, 865, 866, 5, 145, 0, 0, 866, 868, 3, 242, 121, 0, 867, 859, 1, 0, 0, 0, 867, 864, 1, 0, 0, 0, 868, 53, 1, 0, 0, 0, 869, 870, 5, 4, 0, 0, 870, 871, 5, 212, 0, 0, 871, 873, 3, 188, 94, 0, 872, 874, 3, 202, 101, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 9, 0, 0, 876, 877, 3, 206, 103, 0, 877, 55, 1, 0, 0, 0, 878, 879, 5, 4, 0, 0, 879, 880, 5, 212, 0, 0, 880, 881, 3, 188, 94, 0, 881, 882, 5, 156, 0, 0, 882, 883, 5, 193, 0, 0, 883, 884, 3, 188, 94, 0, 884, 57, 1, 0, 0, 0, 885, 886, 5, 4, 0, 0, 886, 887, 5, 212, 0, 0, 887, 888, 3, 188, 94, 0, 888, 889, 5, 176, 0, 0, 889, 890, 5, 142, 0, 0, 890, 891, 7, 1, 0, 0, 891, 892, 3, 358, 179, 0, 892, 59, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 188, 0, 0, 895, 896, 3, 186, 93, 0, 896, 897, 5, 156, 0, 0, 897, 898, 5, 193, 0, 0, 898, 899, 3, 186, 93, 0, 899, 61, 1, 0, 0, 0, 900, 901, 5, 4, 0, 0, 901, 902, 5, 212, 0, 0, 902, 903, 3, 188, 94, 0, 903, 904, 7, 2, 0, 0, 904, 905, 5, 25, 0, 0, 905, 906, 3, 252, 126, 0, 906, 63, 1, 0, 0, 0, 907, 909, 5, 196, 0, 0, 908, 910, 5, 188, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 1, 0, 0, 0, 911, 913, 3, 170, 85, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 3, 186, 93, 0, 915, 65, 1, 0, 0, 0, 916, 918, 5, 56, 0, 0, 917, 919, 5, 46, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 922, 7, 3, 0, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 358, 179, 0, 924, 67, 1, 0, 0, 0, 925, 928, 3, 70, 35, 0, 926, 928, 3, 72, 36, 0, 927, 925, 1, 0, 0, 0, 927, 926, 1, 0, 0, 0, 928, 69, 1, 0, 0, 0, 929, 930, 5, 36, 0, 0, 930, 931, 5, 182, 0, 0, 931, 933, 3, 186, 93, 0, 932, 934, 3, 296, 148, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 947, 1, 0, 0, 0, 935, 936, 5, 190, 0, 0, 936, 937, 5, 185, 0, 0, 937, 938, 5, 265, 0, 0, 938, 939, 3, 364, 182, 0, 939, 945, 5, 266, 0, 0, 940, 941, 5, 157, 0, 0, 941, 942, 5, 265, 0, 0, 942, 943, 3, 364, 182, 0, 943, 944, 5, 266, 0, 0, 944, 946, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 935, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 71, 1, 0, 0, 0, 949, 950, 5, 36, 0, 0, 950, 951, 5, 96, 0, 0, 951, 952, 5, 182, 0, 0, 952, 958, 3, 186, 93, 0, 953, 954, 5, 145, 0, 0, 954, 955, 5, 265, 0, 0, 955, 956, 3, 308, 154, 0, 956, 957, 5, 266, 0, 0, 957, 959, 1, 0, 0, 0, 958, 953, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 73, 1, 0, 0, 0, 960, 967, 3, 86, 43, 0, 961, 967, 3, 84, 42, 0, 962, 967, 3, 82, 41, 0, 963, 967, 3, 78, 39, 0, 964, 967, 3, 80, 40, 0, 965, 967, 3, 76, 38, 0, 966, 960, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 962, 1, 0, 0, 0, 966, 963, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 965, 1, 0, 0, 0, 967, 75, 1, 0, 0, 0, 968, 969, 5, 58, 0, 0, 969, 971, 7, 0, 0, 0, 970, 972, 3, 170, 85, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 184, 92, 0, 974, 976, 7, 4, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 77, 1, 0, 0, 0, 977, 978, 5, 58, 0, 0, 978, 980, 5, 212, 0, 0, 979, 981, 3, 170, 85, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 3, 188, 94, 0, 983, 79, 1, 0, 0, 0, 984, 985, 5, 58, 0, 0, 985, 987, 5, 188, 0, 0, 986, 988, 3, 170, 85, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 991, 3, 186, 93, 0, 990, 992, 5, 22, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 81, 1, 0, 0, 0, 993, 995, 5, 58, 0, 0, 994, 996, 5, 96, 0, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 5, 182, 0, 0, 998, 1001, 3, 186, 93, 0, 999, 1000, 5, 145, 0, 0, 1000, 1002, 3, 308, 154, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 83, 1, 0, 0, 0, 1003, 1005, 5, 58, 0, 0, 1004, 1006, 5, 12, 0, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 5, 84, 0, 0, 1008, 1010, 3, 170, 85, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1024, 3, 190, 95, 0, 1012, 1021, 5, 265, 0, 0, 1013, 1018, 3, 332, 166, 0, 1014, 1015, 5, 263, 0, 0, 1015, 1017, 3, 332, 166, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1013, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 5, 266, 0, 0, 1024, 1012, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 85, 1, 0, 0, 0, 1026, 1027, 5, 58, 0, 0, 1027, 1028, 5, 166, 0, 0, 1028, 1029, 3, 362, 181, 0, 1029, 87, 1, 0, 0, 0, 1030, 1033, 3, 90, 45, 0, 1031, 1033, 3, 92, 46, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1031, 1, 0, 0, 0, 1033, 89, 1, 0, 0, 0, 1034, 1035, 5, 86, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 362, 181, 0, 1037, 1038, 5, 193, 0, 0, 1038, 1039, 5, 87, 0, 0, 1039, 1040, 3, 362, 181, 0, 1040, 91, 1, 0, 0, 0, 1041, 1042, 5, 86, 0, 0, 1042, 1043, 3, 354, 177, 0, 1043, 1044, 5, 136, 0, 0, 1044, 1046, 3, 356, 178, 0, 1045, 1047, 3, 358, 179, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 193, 0, 0, 1049, 1050, 3, 360, 180, 0, 1050, 93, 1, 0, 0, 0, 1051, 1054, 3, 96, 48, 0, 1052, 1054, 3, 98, 49, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1052, 1, 0, 0, 0, 1054, 95, 1, 0, 0, 0, 1055, 1056, 5, 161, 0, 0, 1056, 1057, 5, 166, 0, 0, 1057, 1058, 3, 362, 181, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1060, 5, 87, 0, 0, 1060, 1061, 3, 362, 181, 0, 1061, 97, 1, 0, 0, 0, 1062, 1066, 5, 161, 0, 0, 1063, 1064, 5, 86, 0, 0, 1064, 1065, 5, 137, 0, 0, 1065, 1067, 5, 78, 0, 0, 1066, 1063, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 3, 354, 177, 0, 1069, 1070, 5, 136, 0, 0, 1070, 1072, 3, 356, 178, 0, 1071, 1073, 3, 358, 179, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1080, 5, 82, 0, 0, 1075, 1081, 3, 360, 180, 0, 1076, 1078, 5, 166, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 362, 181, 0, 1080, 1075, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1081, 99, 1, 0, 0, 0, 1082, 1084, 3, 208, 104, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 5, 99, 0, 0, 1086, 1088, 7, 5, 0, 0, 1087, 1089, 5, 188, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 3, 186, 93, 0, 1091, 1093, 3, 296, 148, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1106, 1, 0, 0, 0, 1094, 1095, 5, 145, 0, 0, 1095, 1096, 5, 265, 0, 0, 1096, 1101, 3, 308, 154, 0, 1097, 1098, 5, 263, 0, 0, 1098, 1100, 3, 308, 154, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1104, 1105, 5, 266, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1094, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 206, 103, 0, 1109, 101, 1, 0, 0, 0, 1110, 1113, 3, 104, 52, 0, 1111, 1113, 3, 106, 53, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1111, 1, 0, 0, 0, 1113, 103, 1, 0, 0, 0, 1114, 1116, 5, 50, 0, 0, 1115, 1117, 5, 82, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 186, 93, 0, 1119, 1120, 5, 215, 0, 0, 1120, 1122, 3, 310, 155, 0, 1121, 1119, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 105, 1, 0, 0, 0, 1123, 1124, 5, 50, 0, 0, 1124, 1129, 3, 186, 93, 0, 1125, 1127, 5, 9, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 3, 362, 181, 0, 1129, 1126, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1140, 5, 82, 0, 0, 1132, 1137, 3, 284, 142, 0, 1133, 1134, 5, 263, 0, 0, 1134, 1136, 3, 284, 142, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1132, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1143, 5, 215, 0, 0, 1143, 1145, 3, 310, 155, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 107, 1, 0, 0, 0, 1146, 1147, 5, 54, 0, 0, 1147, 1148, 3, 186, 93, 0, 1148, 1149, 5, 176, 0, 0, 1149, 1159, 3, 198, 99, 0, 1150, 1151, 5, 82, 0, 0, 1151, 1156, 3, 284, 142, 0, 1152, 1153, 5, 263, 0, 0, 1153, 1155, 3, 284, 142, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1150, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1162, 5, 215, 0, 0, 1162, 1164, 3, 310, 155, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 109, 1, 0, 0, 0, 1165, 1166, 5, 207, 0, 0, 1166, 1168, 5, 103, 0, 0, 1167, 1169, 5, 188, 0, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1172, 3, 186, 93, 0, 1171, 1173, 3, 296, 148, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 3, 206, 103, 0, 1175, 111, 1, 0, 0, 0, 1176, 1189, 3, 132, 66, 0, 1177, 1189, 3, 134, 67, 0, 1178, 1189, 3, 136, 68, 0, 1179, 1189, 3, 130, 65, 0, 1180, 1189, 3, 128, 64, 0, 1181, 1189, 3, 126, 63, 0, 1182, 1189, 3, 124, 62, 0, 1183, 1189, 3, 122, 61, 0, 1184, 1189, 3, 120, 60, 0, 1185, 1189, 3, 118, 59, 0, 1186, 1189, 3, 116, 58, 0, 1187, 1189, 3, 114, 57, 0, 1188, 1176, 1, 0, 0, 0, 1188, 1177, 1, 0, 0, 0, 1188, 1178, 1, 0, 0, 0, 1188, 1179, 1, 0, 0, 0, 1188, 1180, 1, 0, 0, 0, 1188, 1181, 1, 0, 0, 0, 1188, 1182, 1, 0, 0, 0, 1188, 1183, 1, 0, 0, 0, 1188, 1184, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 113, 1, 0, 0, 0, 1190, 1191, 5, 179, 0, 0, 1191, 1203, 7, 6, 0, 0, 1192, 1194, 5, 115, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1200, 3, 318, 159, 0, 1196, 1197, 5, 271, 0, 0, 1197, 1199, 3, 318, 159, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1193, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 115, 1, 0, 0, 0, 1205, 1206, 5, 179, 0, 0, 1206, 1209, 5, 189, 0, 0, 1207, 1208, 5, 94, 0, 0, 1208, 1210, 3, 186, 93, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1222, 1, 0, 0, 0, 1211, 1213, 5, 115, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1219, 3, 318, 159, 0, 1215, 1216, 5, 271, 0, 0, 1216, 1218, 3, 318, 159, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1212, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 117, 1, 0, 0, 0, 1224, 1226, 5, 179, 0, 0, 1225, 1227, 7, 7, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1231, 5, 85, 0, 0, 1229, 1230, 5, 94, 0, 0, 1230, 1232, 3, 184, 92, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1244, 1, 0, 0, 0, 1233, 1235, 5, 115, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1241, 3, 318, 159, 0, 1237, 1238, 5, 271, 0, 0, 1238, 1240, 3, 318, 159, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 119, 1, 0, 0, 0, 1246, 1247, 5, 179, 0, 0, 1247, 1248, 5, 37, 0, 0, 1248, 1249, 5, 188, 0, 0, 1249, 1250, 3, 186, 93, 0, 1250, 121, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 212, 0, 0, 1254, 1255, 3, 188, 94, 0, 1255, 123, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 188, 0, 0, 1258, 1259, 5, 182, 0, 0, 1259, 1260, 3, 186, 93, 0, 1260, 125, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 32, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 127, 1, 0, 0, 0, 1266, 1268, 5, 179, 0, 0, 1267, 1269, 5, 154, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 5, 146, 0, 0, 1271, 1272, 3, 186, 93, 0, 1272, 129, 1, 0, 0, 0, 1273, 1274, 5, 179, 0, 0, 1274, 1275, 5, 73, 0, 0, 1275, 1276, 5, 94, 0, 0, 1276, 1286, 3, 186, 93, 0, 1277, 1278, 5, 145, 0, 0, 1278, 1279, 5, 265, 0, 0, 1279, 1282, 3, 308, 154, 0, 1280, 1281, 5, 263, 0, 0, 1281, 1283, 3, 308, 154, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 5, 266, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1277, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 131, 1, 0, 0, 0, 1288, 1290, 5, 179, 0, 0, 1289, 1291, 5, 39, 0, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 5, 167, 0, 0, 1293, 133, 1, 0, 0, 0, 1294, 1295, 5, 179, 0, 0, 1295, 1296, 5, 166, 0, 0, 1296, 1297, 5, 86, 0, 0, 1297, 1298, 5, 87, 0, 0, 1298, 1299, 3, 362, 181, 0, 1299, 135, 1, 0, 0, 0, 1300, 1315, 3, 138, 69, 0, 1301, 1315, 3, 140, 70, 0, 1302, 1315, 3, 142, 71, 0, 1303, 1304, 5, 179, 0, 0, 1304, 1305, 5, 86, 0, 0, 1305, 1306, 7, 8, 0, 0, 1306, 1312, 3, 362, 181, 0, 1307, 1308, 5, 136, 0, 0, 1308, 1310, 7, 9, 0, 0, 1309, 1311, 3, 358, 179, 0, 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1307, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1300, 1, 0, 0, 0, 1314, 1301, 1, 0, 0, 0, 1314, 1302, 1, 0, 0, 0, 1314, 1303, 1, 0, 0, 0, 1315, 137, 1, 0, 0, 0, 1316, 1317, 5, 179, 0, 0, 1317, 1318, 5, 86, 0, 0, 1318, 1319, 7, 8, 0, 0, 1319, 1325, 3, 362, 181, 0, 1320, 1321, 5, 136, 0, 0, 1321, 1323, 5, 46, 0, 0, 1322, 1324, 3, 184, 92, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1320, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 139, 1, 0, 0, 0, 1327, 1328, 5, 179, 0, 0, 1328, 1329, 5, 86, 0, 0, 1329, 1330, 7, 8, 0, 0, 1330, 1336, 3, 362, 181, 0, 1331, 1332, 5, 136, 0, 0, 1332, 1334, 5, 188, 0, 0, 1333, 1335, 3, 186, 93, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1331, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 141, 1, 0, 0, 0, 1338, 1339, 5, 179, 0, 0, 1339, 1340, 5, 86, 0, 0, 1340, 1341, 7, 8, 0, 0, 1341, 1347, 3, 362, 181, 0, 1342, 1343, 5, 136, 0, 0, 1343, 1345, 5, 32, 0, 0, 1344, 1346, 3, 192, 96, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 143, 1, 0, 0, 0, 1349, 1353, 3, 146, 73, 0, 1350, 1353, 3, 148, 74, 0, 1351, 1353, 3, 150, 75, 0, 1352, 1349, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 145, 1, 0, 0, 0, 1354, 1355, 5, 34, 0, 0, 1355, 1356, 5, 136, 0, 0, 1356, 1357, 5, 46, 0, 0, 1357, 1358, 3, 184, 92, 0, 1358, 1361, 5, 108, 0, 0, 1359, 1362, 3, 318, 159, 0, 1360, 1362, 5, 133, 0, 0, 1361, 1359, 1, 0, 0, 0, 1361, 1360, 1, 0, 0, 0, 1362, 147, 1, 0, 0, 0, 1363, 1364, 5, 34, 0, 0, 1364, 1365, 5, 136, 0, 0, 1365, 1366, 5, 188, 0, 0, 1366, 1367, 3, 186, 93, 0, 1367, 1370, 5, 108, 0, 0, 1368, 1371, 3, 318, 159, 0, 1369, 1371, 5, 133, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1369, 1, 0, 0, 0, 1371, 149, 1, 0, 0, 0, 1372, 1373, 5, 34, 0, 0, 1373, 1374, 5, 136, 0, 0, 1374, 1375, 5, 32, 0, 0, 1375, 1376, 3, 192, 96, 0, 1376, 1379, 5, 108, 0, 0, 1377, 1380, 3, 318, 159, 0, 1378, 1380, 5, 133, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1378, 1, 0, 0, 0, 1380, 151, 1, 0, 0, 0, 1381, 1382, 5, 67, 0, 0, 1382, 1383, 3, 4, 2, 0, 1383, 153, 1, 0, 0, 0, 1384, 1390, 5, 176, 0, 0, 1385, 1391, 5, 2, 0, 0, 1386, 1387, 3, 362, 181, 0, 1387, 1388, 5, 249, 0, 0, 1388, 1389, 3, 308, 154, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 155, 1, 0, 0, 0, 1392, 1393, 5, 264, 0, 0, 1393, 1394, 5, 180, 0, 0, 1394, 1404, 5, 265, 0, 0, 1395, 1397, 3, 318, 159, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1401, 3, 318, 159, 0, 1399, 1400, 5, 263, 0, 0, 1400, 1402, 3, 308, 154, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1405, 3, 308, 154, 0, 1404, 1396, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 5, 266, 0, 0, 1407, 157, 1, 0, 0, 0, 1408, 1409, 5, 107, 0, 0, 1409, 1410, 5, 121, 0, 0, 1410, 1411, 3, 186, 93, 0, 1411, 159, 1, 0, 0, 0, 1412, 1413, 5, 118, 0, 0, 1413, 1414, 5, 45, 0, 0, 1414, 1415, 5, 98, 0, 0, 1415, 1417, 5, 274, 0, 0, 1416, 1418, 5, 144, 0, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 5, 103, 0, 0, 1420, 1421, 5, 188, 0, 0, 1421, 1431, 3, 186, 93, 0, 1422, 1423, 5, 145, 0, 0, 1423, 1424, 5, 265, 0, 0, 1424, 1427, 3, 308, 154, 0, 1425, 1426, 5, 263, 0, 0, 1426, 1428, 3, 308, 154, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 5, 266, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1422, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 161, 1, 0, 0, 0, 1433, 1437, 3, 164, 82, 0, 1434, 1437, 3, 166, 83, 0, 1435, 1437, 3, 168, 84, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 163, 1, 0, 0, 0, 1438, 1439, 5, 162, 0, 0, 1439, 1452, 3, 186, 93, 0, 1440, 1441, 5, 145, 0, 0, 1441, 1442, 5, 265, 0, 0, 1442, 1447, 3, 308, 154, 0, 1443, 1444, 5, 263, 0, 0, 1444, 1446, 3, 308, 154, 0, 1445, 1443, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1450, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1450, 1451, 5, 266, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1440, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 165, 1, 0, 0, 0, 1454, 1455, 5, 162, 0, 0, 1455, 1456, 5, 13, 0, 0, 1456, 167, 1, 0, 0, 0, 1457, 1458, 5, 162, 0, 0, 1458, 1459, 5, 85, 0, 0, 1459, 1460, 3, 190, 95, 0, 1460, 169, 1, 0, 0, 0, 1461, 1462, 5, 93, 0, 0, 1462, 1463, 5, 66, 0, 0, 1463, 171, 1, 0, 0, 0, 1464, 1465, 5, 93, 0, 0, 1465, 1466, 5, 132, 0, 0, 1466, 1467, 5, 66, 0, 0, 1467, 173, 1, 0, 0, 0, 1468, 1469, 3, 358, 179, 0, 1469, 175, 1, 0, 0, 0, 1470, 1471, 3, 358, 179, 0, 1471, 177, 1, 0, 0, 0, 1472, 1473, 3, 358, 179, 0, 1473, 179, 1, 0, 0, 0, 1474, 1475, 3, 358, 179, 0, 1475, 181, 1, 0, 0, 0, 1476, 1477, 3, 358, 179, 0, 1477, 183, 1, 0, 0, 0, 1478, 1479, 3, 358, 179, 0, 1479, 185, 1, 0, 0, 0, 1480, 1485, 3, 362, 181, 0, 1481, 1482, 5, 261, 0, 0, 1482, 1484, 3, 362, 181, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 187, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1493, 3, 362, 181, 0, 1489, 1490, 5, 261, 0, 0, 1490, 1492, 3, 362, 181, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 189, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 3, 366, 183, 0, 1497, 1499, 3, 358, 179, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 191, 1, 0, 0, 0, 1500, 1503, 3, 358, 179, 0, 1501, 1503, 4, 96, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1501, 1, 0, 0, 0, 1503, 193, 1, 0, 0, 0, 1504, 1507, 3, 186, 93, 0, 1505, 1507, 3, 188, 94, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1505, 1, 0, 0, 0, 1507, 195, 1, 0, 0, 0, 1508, 1509, 5, 21, 0, 0, 1509, 1510, 5, 26, 0, 0, 1510, 1512, 3, 296, 148, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1515, 3, 222, 111, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 168, 0, 0, 1517, 1518, 5, 79, 0, 0, 1518, 1520, 3, 258, 129, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 216, 0, 0, 1522, 1523, 5, 175, 0, 0, 1523, 1525, 3, 252, 126, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 23, 0, 0, 1527, 1528, 5, 9, 0, 0, 1528, 1530, 3, 234, 117, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1532, 5, 24, 0, 0, 1532, 1534, 3, 318, 159, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1545, 1, 0, 0, 0, 1535, 1536, 5, 30, 0, 0, 1536, 1537, 5, 94, 0, 0, 1537, 1542, 3, 358, 179, 0, 1538, 1539, 5, 216, 0, 0, 1539, 1540, 5, 151, 0, 0, 1540, 1541, 5, 249, 0, 0, 1541, 1543, 5, 277, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1546, 5, 197, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1548, 5, 25, 0, 0, 1548, 1550, 3, 252, 126, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 197, 1, 0, 0, 0, 1551, 1556, 3, 200, 100, 0, 1552, 1553, 5, 263, 0, 0, 1553, 1555, 3, 200, 100, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 358, 179, 0, 1560, 1561, 5, 249, 0, 0, 1561, 1562, 3, 308, 154, 0, 1562, 201, 1, 0, 0, 0, 1563, 1565, 5, 265, 0, 0, 1564, 1566, 3, 204, 102, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1573, 1, 0, 0, 0, 1567, 1569, 5, 263, 0, 0, 1568, 1570, 3, 204, 102, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1567, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 266, 0, 0, 1577, 203, 1, 0, 0, 0, 1578, 1580, 3, 182, 91, 0, 1579, 1581, 3, 222, 111, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 205, 1, 0, 0, 0, 1582, 1584, 3, 208, 104, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 262, 131, 0, 1586, 207, 1, 0, 0, 0, 1587, 1588, 5, 216, 0, 0, 1588, 1593, 3, 278, 139, 0, 1589, 1590, 5, 263, 0, 0, 1590, 1592, 3, 278, 139, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 209, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 150, 0, 0, 1597, 1598, 5, 110, 0, 0, 1598, 1600, 3, 296, 148, 0, 1599, 1601, 5, 53, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 225, 0, 0, 1603, 1604, 5, 263, 0, 0, 1604, 1606, 5, 225, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1610, 1, 0, 0, 0, 1607, 1611, 5, 226, 0, 0, 1608, 1609, 5, 263, 0, 0, 1609, 1611, 5, 226, 0, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1624, 1, 0, 0, 0, 1612, 1613, 5, 263, 0, 0, 1613, 1616, 3, 212, 106, 0, 1614, 1616, 3, 212, 106, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1621, 1, 0, 0, 0, 1617, 1618, 5, 263, 0, 0, 1618, 1620, 3, 212, 106, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1615, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 211, 1, 0, 0, 0, 1626, 1627, 5, 81, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 3, 296, 148, 0, 1629, 1630, 5, 224, 0, 0, 1630, 1631, 3, 186, 93, 0, 1631, 1633, 3, 296, 148, 0, 1632, 1634, 5, 53, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 5, 225, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 5, 226, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 213, 1, 0, 0, 0, 1641, 1642, 3, 192, 96, 0, 1642, 1645, 3, 332, 166, 0, 1643, 1644, 5, 34, 0, 0, 1644, 1646, 3, 318, 159, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 215, 1, 0, 0, 0, 1647, 1648, 3, 182, 91, 0, 1648, 1650, 3, 332, 166, 0, 1649, 1651, 3, 222, 111, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 217, 1, 0, 0, 0, 1652, 1653, 3, 220, 110, 0, 1653, 219, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1663, 3, 332, 166, 0, 1656, 1660, 3, 228, 114, 0, 1657, 1659, 3, 228, 114, 0, 1658, 1657, 1, 0, 0, 0, 1659, 1662, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1656, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 222, 111, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1669, 5, 150, 0, 0, 1669, 1671, 5, 110, 0, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 221, 1, 0, 0, 0, 1672, 1673, 5, 34, 0, 0, 1673, 1674, 3, 318, 159, 0, 1674, 223, 1, 0, 0, 0, 1675, 1683, 3, 214, 107, 0, 1676, 1680, 3, 228, 114, 0, 1677, 1679, 3, 228, 114, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1676, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 225, 1, 0, 0, 0, 1685, 1686, 3, 182, 91, 0, 1686, 1689, 3, 332, 166, 0, 1687, 1688, 5, 34, 0, 0, 1688, 1690, 3, 318, 159, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1698, 1, 0, 0, 0, 1691, 1695, 3, 228, 114, 0, 1692, 1694, 3, 228, 114, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1691, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 227, 1, 0, 0, 0, 1700, 1702, 5, 132, 0, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1706, 5, 133, 0, 0, 1704, 1706, 3, 230, 115, 0, 1705, 1701, 1, 0, 0, 0, 1705, 1704, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1708, 5, 60, 0, 0, 1708, 1716, 3, 308, 154, 0, 1709, 1710, 5, 35, 0, 0, 1710, 1716, 3, 308, 154, 0, 1711, 1712, 5, 51, 0, 0, 1712, 1716, 3, 308, 154, 0, 1713, 1714, 5, 16, 0, 0, 1714, 1716, 3, 364, 182, 0, 1715, 1707, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 231, 1, 0, 0, 0, 1717, 1718, 7, 10, 0, 0, 1718, 233, 1, 0, 0, 0, 1719, 1720, 7, 11, 0, 0, 1720, 235, 1, 0, 0, 0, 1721, 1726, 3, 238, 119, 0, 1722, 1723, 5, 263, 0, 0, 1723, 1725, 3, 238, 119, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1731, 1, 0, 0, 0, 1728, 1726, 1, 0, 0, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 240, 120, 0, 1734, 1721, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 237, 1, 0, 0, 0, 1736, 1738, 5, 89, 0, 0, 1737, 1739, 3, 296, 148, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 5, 146, 0, 0, 1741, 1742, 3, 364, 182, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 154, 0, 0, 1744, 1746, 3, 296, 148, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 265, 0, 0, 1748, 1749, 5, 145, 0, 0, 1749, 1755, 3, 242, 121, 0, 1750, 1751, 5, 263, 0, 0, 1751, 1752, 5, 145, 0, 0, 1752, 1754, 3, 242, 121, 0, 1753, 1750, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1758, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1759, 5, 266, 0, 0, 1759, 241, 1, 0, 0, 0, 1760, 1761, 5, 210, 0, 0, 1761, 1762, 3, 248, 124, 0, 1762, 1763, 3, 308, 154, 0, 1763, 1776, 1, 0, 0, 0, 1764, 1765, 3, 308, 154, 0, 1765, 1766, 3, 246, 123, 0, 1766, 1768, 1, 0, 0, 0, 1767, 1764, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 5, 211, 0, 0, 1770, 1771, 3, 246, 123, 0, 1771, 1772, 3, 308, 154, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1770, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1760, 1, 0, 0, 0, 1775, 1767, 1, 0, 0, 0, 1776, 243, 1, 0, 0, 0, 1777, 1778, 5, 30, 0, 0, 1778, 1779, 5, 94, 0, 0, 1779, 1784, 3, 362, 181, 0, 1780, 1781, 5, 216, 0, 0, 1781, 1782, 5, 151, 0, 0, 1782, 1783, 5, 249, 0, 0, 1783, 1785, 3, 364, 182, 0, 1784, 1780, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1788, 5, 197, 0, 0, 1787, 1777, 1, 0, 0, 0, 1787, 1786, 1, 0, 0, 0, 1788, 245, 1, 0, 0, 0, 1789, 1795, 1, 0, 0, 0, 1790, 1795, 5, 251, 0, 0, 1791, 1795, 5, 252, 0, 0, 1792, 1795, 5, 253, 0, 0, 1793, 1795, 5, 254, 0, 0, 1794, 1789, 1, 0, 0, 0, 1794, 1790, 1, 0, 0, 0, 1794, 1791, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1805, 5, 249, 0, 0, 1797, 1805, 5, 250, 0, 0, 1798, 1805, 5, 115, 0, 0, 1799, 1805, 5, 164, 0, 0, 1800, 1805, 5, 163, 0, 0, 1801, 1805, 5, 15, 0, 0, 1802, 1805, 5, 94, 0, 0, 1803, 1805, 3, 246, 123, 0, 1804, 1796, 1, 0, 0, 0, 1804, 1797, 1, 0, 0, 0, 1804, 1798, 1, 0, 0, 0, 1804, 1799, 1, 0, 0, 0, 1804, 1800, 1, 0, 0, 0, 1804, 1801, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1804, 1803, 1, 0, 0, 0, 1805, 249, 1, 0, 0, 0, 1806, 1807, 5, 115, 0, 0, 1807, 1810, 3, 358, 179, 0, 1808, 1809, 7, 12, 0, 0, 1809, 1811, 5, 153, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 251, 1, 0, 0, 0, 1812, 1813, 5, 265, 0, 0, 1813, 1818, 3, 260, 130, 0, 1814, 1815, 5, 263, 0, 0, 1815, 1817, 3, 260, 130, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1820, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1822, 5, 266, 0, 0, 1822, 253, 1, 0, 0, 0, 1823, 1824, 5, 265, 0, 0, 1824, 1829, 3, 214, 107, 0, 1825, 1826, 5, 263, 0, 0, 1826, 1828, 3, 214, 107, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1832, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1833, 5, 266, 0, 0, 1833, 255, 1, 0, 0, 0, 1834, 1839, 3, 308, 154, 0, 1835, 1836, 5, 263, 0, 0, 1836, 1838, 3, 308, 154, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1852, 5, 52, 0, 0, 1843, 1844, 5, 71, 0, 0, 1844, 1845, 5, 191, 0, 0, 1845, 1846, 5, 26, 0, 0, 1846, 1850, 3, 318, 159, 0, 1847, 1848, 5, 63, 0, 0, 1848, 1849, 5, 26, 0, 0, 1849, 1851, 3, 318, 159, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1843, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1858, 1, 0, 0, 0, 1854, 1855, 5, 117, 0, 0, 1855, 1856, 5, 191, 0, 0, 1856, 1857, 5, 26, 0, 0, 1857, 1859, 3, 318, 159, 0, 1858, 1854, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 259, 1, 0, 0, 0, 1860, 1863, 3, 362, 181, 0, 1861, 1862, 5, 249, 0, 0, 1862, 1864, 3, 308, 154, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 261, 1, 0, 0, 0, 1865, 1876, 3, 264, 132, 0, 1866, 1867, 5, 139, 0, 0, 1867, 1868, 5, 26, 0, 0, 1868, 1873, 3, 268, 134, 0, 1869, 1870, 5, 263, 0, 0, 1870, 1872, 3, 268, 134, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1866, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1884, 1, 0, 0, 0, 1878, 1879, 5, 116, 0, 0, 1879, 1882, 3, 308, 154, 0, 1880, 1881, 5, 135, 0, 0, 1881, 1883, 5, 277, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1878, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 263, 1, 0, 0, 0, 1886, 1887, 6, 132, -1, 0, 1887, 1888, 3, 266, 133, 0, 1888, 1903, 1, 0, 0, 0, 1889, 1890, 10, 2, 0, 0, 1890, 1892, 5, 100, 0, 0, 1891, 1893, 3, 280, 140, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1902, 3, 264, 132, 3, 1895, 1896, 10, 1, 0, 0, 1896, 1898, 7, 13, 0, 0, 1897, 1899, 3, 280, 140, 0, 1898, 1897, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1902, 3, 264, 132, 2, 1901, 1889, 1, 0, 0, 0, 1901, 1895, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 265, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1923, 3, 270, 135, 0, 1907, 1908, 5, 188, 0, 0, 1908, 1923, 3, 186, 93, 0, 1909, 1910, 5, 211, 0, 0, 1910, 1915, 3, 308, 154, 0, 1911, 1912, 5, 263, 0, 0, 1912, 1914, 3, 308, 154, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1923, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 5, 265, 0, 0, 1919, 1920, 3, 262, 131, 0, 1920, 1921, 5, 266, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1906, 1, 0, 0, 0, 1922, 1907, 1, 0, 0, 0, 1922, 1909, 1, 0, 0, 0, 1922, 1918, 1, 0, 0, 0, 1923, 267, 1, 0, 0, 0, 1924, 1926, 3, 306, 153, 0, 1925, 1927, 7, 14, 0, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1930, 1, 0, 0, 0, 1928, 1929, 5, 134, 0, 0, 1929, 1931, 7, 15, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 269, 1, 0, 0, 0, 1932, 1934, 5, 174, 0, 0, 1933, 1935, 3, 280, 140, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 1, 0, 0, 0, 1936, 1938, 5, 183, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1944, 3, 282, 141, 0, 1940, 1941, 5, 263, 0, 0, 1941, 1943, 3, 282, 141, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1946, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1956, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1948, 5, 82, 0, 0, 1948, 1953, 3, 284, 142, 0, 1949, 1950, 5, 263, 0, 0, 1950, 1952, 3, 284, 142, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1956, 1947, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1959, 5, 215, 0, 0, 1959, 1961, 3, 310, 155, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1965, 1, 0, 0, 0, 1962, 1963, 5, 87, 0, 0, 1963, 1964, 5, 26, 0, 0, 1964, 1966, 3, 272, 136, 0, 1965, 1962, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1968, 5, 90, 0, 0, 1968, 1970, 3, 310, 155, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 271, 1, 0, 0, 0, 1971, 1973, 3, 280, 140, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1979, 3, 274, 137, 0, 1975, 1976, 5, 263, 0, 0, 1976, 1978, 3, 274, 137, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 273, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1983, 3, 276, 138, 0, 1983, 275, 1, 0, 0, 0, 1984, 1993, 5, 265, 0, 0, 1985, 1990, 3, 306, 153, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 306, 153, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1994, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1985, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1998, 5, 266, 0, 0, 1996, 1998, 3, 306, 153, 0, 1997, 1984, 1, 0, 0, 0, 1997, 1996, 1, 0, 0, 0, 1998, 277, 1, 0, 0, 0, 1999, 2001, 3, 362, 181, 0, 2000, 2002, 3, 296, 148, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 5, 9, 0, 0, 2004, 2005, 3, 300, 150, 0, 2005, 279, 1, 0, 0, 0, 2006, 2007, 7, 16, 0, 0, 2007, 281, 1, 0, 0, 0, 2008, 2013, 3, 306, 153, 0, 2009, 2011, 5, 9, 0, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2014, 3, 362, 181, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2021, 1, 0, 0, 0, 2015, 2016, 3, 358, 179, 0, 2016, 2017, 5, 261, 0, 0, 2017, 2018, 5, 257, 0, 0, 2018, 2021, 1, 0, 0, 0, 2019, 2021, 5, 257, 0, 0, 2020, 2008, 1, 0, 0, 0, 2020, 2015, 1, 0, 0, 0, 2020, 2019, 1, 0, 0, 0, 2021, 283, 1, 0, 0, 0, 2022, 2023, 6, 142, -1, 0, 2023, 2024, 3, 290, 145, 0, 2024, 2038, 1, 0, 0, 0, 2025, 2034, 10, 2, 0, 0, 2026, 2027, 5, 38, 0, 0, 2027, 2028, 5, 109, 0, 0, 2028, 2035, 3, 290, 145, 0, 2029, 2030, 3, 286, 143, 0, 2030, 2031, 5, 109, 0, 0, 2031, 2032, 3, 284, 142, 0, 2032, 2033, 3, 288, 144, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2026, 1, 0, 0, 0, 2034, 2029, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2025, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 285, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2043, 5, 97, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2073, 1, 0, 0, 0, 2044, 2046, 5, 114, 0, 0, 2045, 2047, 5, 97, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2073, 1, 0, 0, 0, 2048, 2050, 5, 165, 0, 0, 2049, 2051, 5, 97, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2073, 1, 0, 0, 0, 2052, 2054, 5, 114, 0, 0, 2053, 2055, 5, 141, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2073, 1, 0, 0, 0, 2056, 2058, 5, 165, 0, 0, 2057, 2059, 5, 141, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2073, 1, 0, 0, 0, 2060, 2062, 5, 83, 0, 0, 2061, 2063, 5, 141, 0, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2073, 1, 0, 0, 0, 2064, 2065, 5, 114, 0, 0, 2065, 2073, 5, 177, 0, 0, 2066, 2067, 5, 165, 0, 0, 2067, 2073, 5, 177, 0, 0, 2068, 2069, 5, 114, 0, 0, 2069, 2073, 5, 7, 0, 0, 2070, 2071, 5, 165, 0, 0, 2071, 2073, 5, 7, 0, 0, 2072, 2042, 1, 0, 0, 0, 2072, 2044, 1, 0, 0, 0, 2072, 2048, 1, 0, 0, 0, 2072, 2052, 1, 0, 0, 0, 2072, 2056, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2064, 1, 0, 0, 0, 2072, 2066, 1, 0, 0, 0, 2072, 2068, 1, 0, 0, 0, 2072, 2070, 1, 0, 0, 0, 2073, 287, 1, 0, 0, 0, 2074, 2075, 5, 136, 0, 0, 2075, 2089, 3, 310, 155, 0, 2076, 2077, 5, 205, 0, 0, 2077, 2078, 5, 265, 0, 0, 2078, 2083, 3, 362, 181, 0, 2079, 2080, 5, 263, 0, 0, 2080, 2082, 3, 362, 181, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2087, 5, 266, 0, 0, 2087, 2089, 1, 0, 0, 0, 2088, 2074, 1, 0, 0, 0, 2088, 2076, 1, 0, 0, 0, 2089, 289, 1, 0, 0, 0, 2090, 2103, 3, 294, 147, 0, 2091, 2092, 5, 190, 0, 0, 2092, 2093, 3, 292, 146, 0, 2093, 2094, 5, 265, 0, 0, 2094, 2095, 3, 308, 154, 0, 2095, 2101, 5, 266, 0, 0, 2096, 2097, 5, 157, 0, 0, 2097, 2098, 5, 265, 0, 0, 2098, 2099, 3, 308, 154, 0, 2099, 2100, 5, 266, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2096, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2091, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 291, 1, 0, 0, 0, 2105, 2106, 7, 17, 0, 0, 2106, 293, 1, 0, 0, 0, 2107, 2115, 3, 298, 149, 0, 2108, 2110, 5, 9, 0, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 3, 362, 181, 0, 2112, 2114, 3, 296, 148, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 295, 1, 0, 0, 0, 2117, 2118, 5, 265, 0, 0, 2118, 2123, 3, 192, 96, 0, 2119, 2120, 5, 263, 0, 0, 2120, 2122, 3, 192, 96, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2125, 1, 0, 0, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2127, 5, 266, 0, 0, 2127, 297, 1, 0, 0, 0, 2128, 2136, 3, 194, 97, 0, 2129, 2131, 5, 113, 0, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2136, 3, 300, 150, 0, 2133, 2136, 3, 302, 151, 0, 2134, 2136, 3, 304, 152, 0, 2135, 2128, 1, 0, 0, 0, 2135, 2130, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 299, 1, 0, 0, 0, 2137, 2138, 5, 265, 0, 0, 2138, 2139, 3, 206, 103, 0, 2139, 2140, 5, 266, 0, 0, 2140, 301, 1, 0, 0, 0, 2141, 2142, 5, 201, 0, 0, 2142, 2143, 5, 265, 0, 0, 2143, 2148, 3, 308, 154, 0, 2144, 2145, 5, 263, 0, 0, 2145, 2147, 3, 308, 154, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 5, 266, 0, 0, 2152, 2153, 5, 216, 0, 0, 2153, 2155, 5, 140, 0, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 303, 1, 0, 0, 0, 2156, 2157, 5, 265, 0, 0, 2157, 2158, 3, 284, 142, 0, 2158, 2159, 5, 266, 0, 0, 2159, 305, 1, 0, 0, 0, 2160, 2163, 3, 192, 96, 0, 2161, 2163, 3, 308, 154, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 307, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 309, 1, 0, 0, 0, 2166, 2167, 6, 155, -1, 0, 2167, 2169, 3, 314, 157, 0, 2168, 2170, 3, 312, 156, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2172, 5, 132, 0, 0, 2172, 2174, 3, 310, 155, 3, 2173, 2166, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2183, 1, 0, 0, 0, 2175, 2176, 10, 2, 0, 0, 2176, 2177, 5, 5, 0, 0, 2177, 2182, 3, 310, 155, 3, 2178, 2179, 10, 1, 0, 0, 2179, 2180, 5, 138, 0, 0, 2180, 2182, 3, 310, 155, 2, 2181, 2175, 1, 0, 0, 0, 2181, 2178, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 311, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 3, 320, 160, 0, 2187, 2188, 3, 314, 157, 0, 2188, 2245, 1, 0, 0, 0, 2189, 2190, 3, 320, 160, 0, 2190, 2191, 3, 322, 161, 0, 2191, 2192, 3, 300, 150, 0, 2192, 2245, 1, 0, 0, 0, 2193, 2195, 5, 132, 0, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 5, 15, 0, 0, 2197, 2198, 3, 314, 157, 0, 2198, 2199, 5, 5, 0, 0, 2199, 2200, 3, 314, 157, 0, 2200, 2245, 1, 0, 0, 0, 2201, 2203, 5, 132, 0, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 5, 94, 0, 0, 2205, 2206, 5, 265, 0, 0, 2206, 2211, 3, 308, 154, 0, 2207, 2208, 5, 263, 0, 0, 2208, 2210, 3, 308, 154, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 266, 0, 0, 2215, 2245, 1, 0, 0, 0, 2216, 2218, 5, 132, 0, 0, 2217, 2216, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 5, 94, 0, 0, 2220, 2245, 3, 300, 150, 0, 2221, 2223, 5, 132, 0, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 7, 18, 0, 0, 2225, 2228, 3, 314, 157, 0, 2226, 2227, 5, 62, 0, 0, 2227, 2229, 3, 314, 157, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2245, 1, 0, 0, 0, 2230, 2231, 7, 19, 0, 0, 2231, 2245, 3, 314, 157, 0, 2232, 2234, 5, 108, 0, 0, 2233, 2235, 5, 132, 0, 0, 2234, 2233, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2245, 7, 20, 0, 0, 2237, 2239, 5, 108, 0, 0, 2238, 2240, 5, 132, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2242, 5, 57, 0, 0, 2242, 2243, 5, 82, 0, 0, 2243, 2245, 3, 314, 157, 0, 2244, 2186, 1, 0, 0, 0, 2244, 2189, 1, 0, 0, 0, 2244, 2194, 1, 0, 0, 0, 2244, 2202, 1, 0, 0, 0, 2244, 2217, 1, 0, 0, 0, 2244, 2222, 1, 0, 0, 0, 2244, 2230, 1, 0, 0, 0, 2244, 2232, 1, 0, 0, 0, 2244, 2237, 1, 0, 0, 0, 2245, 313, 1, 0, 0, 0, 2246, 2247, 6, 157, -1, 0, 2247, 2251, 3, 316, 158, 0, 2248, 2249, 7, 21, 0, 0, 2249, 2251, 3, 314, 157, 4, 2250, 2246, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2263, 1, 0, 0, 0, 2252, 2253, 10, 3, 0, 0, 2253, 2254, 7, 22, 0, 0, 2254, 2262, 3, 314, 157, 4, 2255, 2256, 10, 2, 0, 0, 2256, 2257, 7, 21, 0, 0, 2257, 2262, 3, 314, 157, 3, 2258, 2259, 10, 1, 0, 0, 2259, 2260, 5, 260, 0, 0, 2260, 2262, 3, 314, 157, 2, 2261, 2252, 1, 0, 0, 0, 2261, 2255, 1, 0, 0, 0, 2261, 2258, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 315, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 6, 158, -1, 0, 2267, 2513, 5, 133, 0, 0, 2268, 2513, 3, 326, 163, 0, 2269, 2270, 3, 362, 181, 0, 2270, 2271, 3, 318, 159, 0, 2271, 2513, 1, 0, 0, 0, 2272, 2273, 5, 286, 0, 0, 2273, 2513, 3, 318, 159, 0, 2274, 2513, 3, 364, 182, 0, 2275, 2513, 3, 324, 162, 0, 2276, 2513, 3, 318, 159, 0, 2277, 2513, 5, 276, 0, 0, 2278, 2513, 5, 272, 0, 0, 2279, 2280, 5, 148, 0, 0, 2280, 2281, 5, 265, 0, 0, 2281, 2282, 3, 314, 157, 0, 2282, 2283, 5, 94, 0, 0, 2283, 2284, 3, 314, 157, 0, 2284, 2285, 5, 266, 0, 0, 2285, 2513, 1, 0, 0, 0, 2286, 2287, 5, 265, 0, 0, 2287, 2290, 3, 308, 154, 0, 2288, 2289, 5, 9, 0, 0, 2289, 2291, 3, 332, 166, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2300, 1, 0, 0, 0, 2292, 2293, 5, 263, 0, 0, 2293, 2296, 3, 308, 154, 0, 2294, 2295, 5, 9, 0, 0, 2295, 2297, 3, 332, 166, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2292, 1, 0, 0, 0, 2299, 2302, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2304, 5, 266, 0, 0, 2304, 2513, 1, 0, 0, 0, 2305, 2306, 5, 168, 0, 0, 2306, 2307, 5, 265, 0, 0, 2307, 2312, 3, 308, 154, 0, 2308, 2309, 5, 263, 0, 0, 2309, 2311, 3, 308, 154, 0, 2310, 2308, 1, 0, 0, 0, 2311, 2314, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2315, 2316, 5, 266, 0, 0, 2316, 2513, 1, 0, 0, 0, 2317, 2318, 3, 190, 95, 0, 2318, 2319, 5, 265, 0, 0, 2319, 2320, 5, 257, 0, 0, 2320, 2322, 5, 266, 0, 0, 2321, 2323, 3, 342, 171, 0, 2322, 2321, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2326, 3, 344, 172, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2513, 1, 0, 0, 0, 2327, 2328, 3, 190, 95, 0, 2328, 2340, 5, 265, 0, 0, 2329, 2331, 3, 280, 140, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2337, 3, 308, 154, 0, 2333, 2334, 5, 263, 0, 0, 2334, 2336, 3, 308, 154, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2339, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2330, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2352, 1, 0, 0, 0, 2342, 2343, 5, 139, 0, 0, 2343, 2344, 5, 26, 0, 0, 2344, 2349, 3, 268, 134, 0, 2345, 2346, 5, 263, 0, 0, 2346, 2348, 3, 268, 134, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2342, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 5, 266, 0, 0, 2355, 2357, 3, 342, 171, 0, 2356, 2355, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2360, 3, 344, 172, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2513, 1, 0, 0, 0, 2361, 2362, 3, 362, 181, 0, 2362, 2363, 5, 273, 0, 0, 2363, 2364, 3, 308, 154, 0, 2364, 2513, 1, 0, 0, 0, 2365, 2374, 5, 265, 0, 0, 2366, 2371, 3, 362, 181, 0, 2367, 2368, 5, 263, 0, 0, 2368, 2370, 3, 362, 181, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2373, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2366, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 266, 0, 0, 2377, 2378, 5, 273, 0, 0, 2378, 2513, 3, 308, 154, 0, 2379, 2380, 5, 265, 0, 0, 2380, 2381, 3, 206, 103, 0, 2381, 2382, 5, 266, 0, 0, 2382, 2513, 1, 0, 0, 0, 2383, 2384, 5, 66, 0, 0, 2384, 2385, 5, 265, 0, 0, 2385, 2386, 3, 206, 103, 0, 2386, 2387, 5, 266, 0, 0, 2387, 2513, 1, 0, 0, 0, 2388, 2389, 5, 28, 0, 0, 2389, 2391, 3, 314, 157, 0, 2390, 2392, 3, 340, 170, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2396, 5, 59, 0, 0, 2396, 2398, 3, 308, 154, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 5, 61, 0, 0, 2400, 2513, 1, 0, 0, 0, 2401, 2403, 5, 28, 0, 0, 2402, 2404, 3, 340, 170, 0, 2403, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2409, 1, 0, 0, 0, 2407, 2408, 5, 59, 0, 0, 2408, 2410, 3, 308, 154, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 5, 61, 0, 0, 2412, 2513, 1, 0, 0, 0, 2413, 2414, 5, 29, 0, 0, 2414, 2415, 5, 265, 0, 0, 2415, 2416, 3, 308, 154, 0, 2416, 2417, 5, 9, 0, 0, 2417, 2418, 3, 332, 166, 0, 2418, 2419, 5, 266, 0, 0, 2419, 2513, 1, 0, 0, 0, 2420, 2421, 5, 195, 0, 0, 2421, 2422, 5, 265, 0, 0, 2422, 2423, 3, 308, 154, 0, 2423, 2424, 5, 9, 0, 0, 2424, 2425, 3, 332, 166, 0, 2425, 2426, 5, 266, 0, 0, 2426, 2513, 1, 0, 0, 0, 2427, 2428, 5, 8, 0, 0, 2428, 2437, 5, 267, 0, 0, 2429, 2434, 3, 308, 154, 0, 2430, 2431, 5, 263, 0, 0, 2431, 2433, 3, 308, 154, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2429, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2513, 5, 268, 0, 0, 2440, 2513, 3, 362, 181, 0, 2441, 2513, 5, 40, 0, 0, 2442, 2446, 5, 42, 0, 0, 2443, 2444, 5, 265, 0, 0, 2444, 2445, 5, 277, 0, 0, 2445, 2447, 5, 266, 0, 0, 2446, 2443, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2513, 1, 0, 0, 0, 2448, 2452, 5, 43, 0, 0, 2449, 2450, 5, 265, 0, 0, 2450, 2451, 5, 277, 0, 0, 2451, 2453, 5, 266, 0, 0, 2452, 2449, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2513, 1, 0, 0, 0, 2454, 2458, 5, 119, 0, 0, 2455, 2456, 5, 265, 0, 0, 2456, 2457, 5, 277, 0, 0, 2457, 2459, 5, 266, 0, 0, 2458, 2455, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2513, 1, 0, 0, 0, 2460, 2464, 5, 120, 0, 0, 2461, 2462, 5, 265, 0, 0, 2462, 2463, 5, 277, 0, 0, 2463, 2465, 5, 266, 0, 0, 2464, 2461, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2513, 1, 0, 0, 0, 2466, 2513, 5, 44, 0, 0, 2467, 2513, 5, 41, 0, 0, 2468, 2469, 5, 184, 0, 0, 2469, 2470, 5, 265, 0, 0, 2470, 2471, 3, 314, 157, 0, 2471, 2472, 5, 82, 0, 0, 2472, 2475, 3, 314, 157, 0, 2473, 2474, 5, 78, 0, 0, 2474, 2476, 3, 314, 157, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 5, 266, 0, 0, 2478, 2513, 1, 0, 0, 0, 2479, 2480, 5, 131, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2484, 3, 314, 157, 0, 2482, 2483, 5, 263, 0, 0, 2483, 2485, 3, 330, 165, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 5, 266, 0, 0, 2487, 2513, 1, 0, 0, 0, 2488, 2489, 5, 68, 0, 0, 2489, 2490, 5, 265, 0, 0, 2490, 2491, 3, 362, 181, 0, 2491, 2492, 5, 82, 0, 0, 2492, 2493, 3, 314, 157, 0, 2493, 2494, 5, 266, 0, 0, 2494, 2513, 1, 0, 0, 0, 2495, 2496, 5, 265, 0, 0, 2496, 2497, 3, 308, 154, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2513, 1, 0, 0, 0, 2499, 2500, 5, 88, 0, 0, 2500, 2509, 5, 265, 0, 0, 2501, 2506, 3, 358, 179, 0, 2502, 2503, 5, 263, 0, 0, 2503, 2505, 3, 358, 179, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2501, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 5, 266, 0, 0, 2512, 2266, 1, 0, 0, 0, 2512, 2268, 1, 0, 0, 0, 2512, 2269, 1, 0, 0, 0, 2512, 2272, 1, 0, 0, 0, 2512, 2274, 1, 0, 0, 0, 2512, 2275, 1, 0, 0, 0, 2512, 2276, 1, 0, 0, 0, 2512, 2277, 1, 0, 0, 0, 2512, 2278, 1, 0, 0, 0, 2512, 2279, 1, 0, 0, 0, 2512, 2286, 1, 0, 0, 0, 2512, 2305, 1, 0, 0, 0, 2512, 2317, 1, 0, 0, 0, 2512, 2327, 1, 0, 0, 0, 2512, 2361, 1, 0, 0, 0, 2512, 2365, 1, 0, 0, 0, 2512, 2379, 1, 0, 0, 0, 2512, 2383, 1, 0, 0, 0, 2512, 2388, 1, 0, 0, 0, 2512, 2401, 1, 0, 0, 0, 2512, 2413, 1, 0, 0, 0, 2512, 2420, 1, 0, 0, 0, 2512, 2427, 1, 0, 0, 0, 2512, 2440, 1, 0, 0, 0, 2512, 2441, 1, 0, 0, 0, 2512, 2442, 1, 0, 0, 0, 2512, 2448, 1, 0, 0, 0, 2512, 2454, 1, 0, 0, 0, 2512, 2460, 1, 0, 0, 0, 2512, 2466, 1, 0, 0, 0, 2512, 2467, 1, 0, 0, 0, 2512, 2468, 1, 0, 0, 0, 2512, 2479, 1, 0, 0, 0, 2512, 2488, 1, 0, 0, 0, 2512, 2495, 1, 0, 0, 0, 2512, 2499, 1, 0, 0, 0, 2513, 2524, 1, 0, 0, 0, 2514, 2515, 10, 15, 0, 0, 2515, 2516, 5, 267, 0, 0, 2516, 2517, 3, 314, 157, 0, 2517, 2518, 5, 268, 0, 0, 2518, 2523, 1, 0, 0, 0, 2519, 2520, 10, 13, 0, 0, 2520, 2521, 5, 261, 0, 0, 2521, 2523, 3, 362, 181, 0, 2522, 2514, 1, 0, 0, 0, 2522, 2519, 1, 0, 0, 0, 2523, 2526, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 317, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2534, 5, 274, 0, 0, 2528, 2531, 5, 275, 0, 0, 2529, 2530, 5, 198, 0, 0, 2530, 2532, 5, 274, 0, 0, 2531, 2529, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2527, 1, 0, 0, 0, 2533, 2528, 1, 0, 0, 0, 2534, 319, 1, 0, 0, 0, 2535, 2536, 7, 23, 0, 0, 2536, 321, 1, 0, 0, 0, 2537, 2538, 7, 24, 0, 0, 2538, 323, 1, 0, 0, 0, 2539, 2540, 7, 25, 0, 0, 2540, 325, 1, 0, 0, 0, 2541, 2542, 5, 277, 0, 0, 2542, 2556, 3, 328, 164, 0, 2543, 2544, 5, 265, 0, 0, 2544, 2545, 5, 277, 0, 0, 2545, 2546, 5, 266, 0, 0, 2546, 2556, 3, 328, 164, 0, 2547, 2548, 5, 101, 0, 0, 2548, 2549, 5, 277, 0, 0, 2549, 2556, 3, 328, 164, 0, 2550, 2551, 5, 101, 0, 0, 2551, 2552, 5, 265, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2554, 5, 266, 0, 0, 2554, 2556, 3, 328, 164, 0, 2555, 2541, 1, 0, 0, 0, 2555, 2543, 1, 0, 0, 0, 2555, 2547, 1, 0, 0, 0, 2555, 2550, 1, 0, 0, 0, 2556, 327, 1, 0, 0, 0, 2557, 2558, 7, 26, 0, 0, 2558, 329, 1, 0, 0, 0, 2559, 2560, 7, 27, 0, 0, 2560, 331, 1, 0, 0, 0, 2561, 2562, 6, 166, -1, 0, 2562, 2563, 5, 8, 0, 0, 2563, 2564, 5, 251, 0, 0, 2564, 2565, 3, 332, 166, 0, 2565, 2566, 5, 253, 0, 0, 2566, 2607, 1, 0, 0, 0, 2567, 2568, 5, 235, 0, 0, 2568, 2569, 5, 251, 0, 0, 2569, 2570, 3, 332, 166, 0, 2570, 2571, 5, 263, 0, 0, 2571, 2572, 3, 332, 166, 0, 2572, 2573, 5, 253, 0, 0, 2573, 2607, 1, 0, 0, 0, 2574, 2575, 5, 240, 0, 0, 2575, 2576, 5, 251, 0, 0, 2576, 2577, 3, 362, 181, 0, 2577, 2584, 3, 332, 166, 0, 2578, 2579, 5, 263, 0, 0, 2579, 2580, 3, 362, 181, 0, 2580, 2581, 3, 332, 166, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2578, 1, 0, 0, 0, 2583, 2586, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2584, 2585, 1, 0, 0, 0, 2585, 2587, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2588, 5, 253, 0, 0, 2588, 2607, 1, 0, 0, 0, 2589, 2592, 3, 338, 169, 0, 2590, 2592, 3, 334, 167, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2590, 1, 0, 0, 0, 2592, 2604, 1, 0, 0, 0, 2593, 2594, 5, 265, 0, 0, 2594, 2599, 3, 336, 168, 0, 2595, 2596, 5, 263, 0, 0, 2596, 2598, 3, 336, 168, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2601, 1, 0, 0, 0, 2599, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2603, 5, 266, 0, 0, 2603, 2605, 1, 0, 0, 0, 2604, 2593, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2561, 1, 0, 0, 0, 2606, 2567, 1, 0, 0, 0, 2606, 2574, 1, 0, 0, 0, 2606, 2591, 1, 0, 0, 0, 2607, 2612, 1, 0, 0, 0, 2608, 2609, 10, 5, 0, 0, 2609, 2611, 5, 8, 0, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 333, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2615, 2616, 7, 28, 0, 0, 2616, 335, 1, 0, 0, 0, 2617, 2620, 5, 277, 0, 0, 2618, 2620, 3, 332, 166, 0, 2619, 2617, 1, 0, 0, 0, 2619, 2618, 1, 0, 0, 0, 2620, 337, 1, 0, 0, 0, 2621, 2626, 5, 284, 0, 0, 2622, 2626, 5, 285, 0, 0, 2623, 2626, 5, 286, 0, 0, 2624, 2626, 3, 362, 181, 0, 2625, 2621, 1, 0, 0, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 339, 1, 0, 0, 0, 2627, 2628, 5, 214, 0, 0, 2628, 2629, 3, 308, 154, 0, 2629, 2630, 5, 192, 0, 0, 2630, 2631, 3, 308, 154, 0, 2631, 341, 1, 0, 0, 0, 2632, 2633, 5, 74, 0, 0, 2633, 2634, 5, 265, 0, 0, 2634, 2635, 5, 215, 0, 0, 2635, 2636, 3, 310, 155, 0, 2636, 2637, 5, 266, 0, 0, 2637, 343, 1, 0, 0, 0, 2638, 2639, 5, 143, 0, 0, 2639, 2650, 5, 265, 0, 0, 2640, 2641, 5, 145, 0, 0, 2641, 2642, 5, 26, 0, 0, 2642, 2647, 3, 308, 154, 0, 2643, 2644, 5, 263, 0, 0, 2644, 2646, 3, 308, 154, 0, 2645, 2643, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2640, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2662, 1, 0, 0, 0, 2652, 2653, 5, 139, 0, 0, 2653, 2654, 5, 26, 0, 0, 2654, 2659, 3, 268, 134, 0, 2655, 2656, 5, 263, 0, 0, 2656, 2658, 3, 268, 134, 0, 2657, 2655, 1, 0, 0, 0, 2658, 2661, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2663, 1, 0, 0, 0, 2661, 2659, 1, 0, 0, 0, 2662, 2652, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 346, 173, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 5, 266, 0, 0, 2668, 345, 1, 0, 0, 0, 2669, 2670, 5, 154, 0, 0, 2670, 2686, 3, 348, 174, 0, 2671, 2672, 5, 169, 0, 0, 2672, 2686, 3, 348, 174, 0, 2673, 2674, 5, 154, 0, 0, 2674, 2675, 5, 15, 0, 0, 2675, 2676, 3, 348, 174, 0, 2676, 2677, 5, 5, 0, 0, 2677, 2678, 3, 348, 174, 0, 2678, 2686, 1, 0, 0, 0, 2679, 2680, 5, 169, 0, 0, 2680, 2681, 5, 15, 0, 0, 2681, 2682, 3, 348, 174, 0, 2682, 2683, 5, 5, 0, 0, 2683, 2684, 3, 348, 174, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2669, 1, 0, 0, 0, 2685, 2671, 1, 0, 0, 0, 2685, 2673, 1, 0, 0, 0, 2685, 2679, 1, 0, 0, 0, 2686, 347, 1, 0, 0, 0, 2687, 2688, 5, 199, 0, 0, 2688, 2697, 5, 149, 0, 0, 2689, 2690, 5, 199, 0, 0, 2690, 2697, 5, 77, 0, 0, 2691, 2692, 5, 39, 0, 0, 2692, 2697, 5, 168, 0, 0, 2693, 2694, 3, 308, 154, 0, 2694, 2695, 7, 29, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2687, 1, 0, 0, 0, 2696, 2689, 1, 0, 0, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2697, 349, 1, 0, 0, 0, 2698, 2699, 3, 362, 181, 0, 2699, 2700, 5, 261, 0, 0, 2700, 2701, 3, 362, 181, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2704, 3, 362, 181, 0, 2703, 2698, 1, 0, 0, 0, 2703, 2702, 1, 0, 0, 0, 2704, 351, 1, 0, 0, 0, 2705, 2710, 3, 350, 175, 0, 2706, 2707, 5, 263, 0, 0, 2707, 2709, 3, 350, 175, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2712, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 353, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2713, 2727, 5, 2, 0, 0, 2714, 2727, 5, 4, 0, 0, 2715, 2727, 5, 58, 0, 0, 2716, 2727, 5, 37, 0, 0, 2717, 2727, 5, 99, 0, 0, 2718, 2727, 5, 162, 0, 0, 2719, 2724, 5, 174, 0, 0, 2720, 2721, 5, 265, 0, 0, 2721, 2722, 3, 362, 181, 0, 2722, 2723, 5, 266, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2720, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2713, 1, 0, 0, 0, 2726, 2714, 1, 0, 0, 0, 2726, 2715, 1, 0, 0, 0, 2726, 2716, 1, 0, 0, 0, 2726, 2717, 1, 0, 0, 0, 2726, 2718, 1, 0, 0, 0, 2726, 2719, 1, 0, 0, 0, 2727, 355, 1, 0, 0, 0, 2728, 2729, 7, 30, 0, 0, 2729, 357, 1, 0, 0, 0, 2730, 2735, 3, 362, 181, 0, 2731, 2732, 5, 261, 0, 0, 2732, 2734, 3, 362, 181, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 359, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 166, 0, 0, 2739, 2745, 3, 362, 181, 0, 2740, 2741, 5, 204, 0, 0, 2741, 2745, 3, 362, 181, 0, 2742, 2743, 5, 87, 0, 0, 2743, 2745, 3, 362, 181, 0, 2744, 2738, 1, 0, 0, 0, 2744, 2740, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 361, 1, 0, 0, 0, 2746, 2752, 5, 280, 0, 0, 2747, 2752, 5, 274, 0, 0, 2748, 2752, 3, 368, 184, 0, 2749, 2752, 5, 283, 0, 0, 2750, 2752, 5, 281, 0, 0, 2751, 2746, 1, 0, 0, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2748, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 363, 1, 0, 0, 0, 2753, 2755, 5, 256, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2766, 5, 278, 0, 0, 2757, 2759, 5, 256, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2766, 5, 279, 0, 0, 2761, 2763, 5, 256, 0, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 5, 277, 0, 0, 2765, 2754, 1, 0, 0, 0, 2765, 2758, 1, 0, 0, 0, 2765, 2762, 1, 0, 0, 0, 2766, 365, 1, 0, 0, 0, 2767, 2768, 7, 31, 0, 0, 2768, 367, 1, 0, 0, 0, 2769, 2770, 7, 32, 0, 0, 2770, 369, 1, 0, 0, 0, 353, 373, 380, 404, 417, 421, 425, 434, 439, 443, 449, 451, 456, 460, 464, 471, 476, 482, 486, 495, 502, 506, 511, 513, 518, 521, 528, 532, 537, 541, 544, 548, 556, 560, 564, 572, 576, 585, 588, 591, 597, 604, 615, 620, 625, 630, 635, 644, 647, 650, 654, 680, 706, 715, 725, 728, 742, 760, 762, 771, 782, 791, 798, 802, 809, 815, 818, 823, 830, 844, 857, 862, 867, 873, 909, 912, 918, 921, 927, 933, 945, 947, 958, 966, 971, 975, 980, 987, 991, 995, 1001, 1005, 1009, 1018, 1021, 1024, 1032, 1046, 1053, 1066, 1072, 1077, 1080, 1083, 1088, 1092, 1101, 1106, 1112, 1116, 1121, 1126, 1129, 1137, 1140, 1144, 1156, 1159, 1163, 1168, 1172, 1188, 1193, 1200, 1203, 1209, 1212, 1219, 1222, 1226, 1231, 1234, 1241, 1244, 1268, 1282, 1286, 1290, 1310, 1312, 1314, 1323, 1325, 1334, 1336, 1345, 1347, 1352, 1361, 1370, 1379, 1390, 1396, 1401, 1404, 1417, 1427, 1431, 1436, 1447, 1452, 1485, 1493, 1498, 1502, 1506, 1511, 1514, 1519, 1524, 1529, 1533, 1542, 1545, 1549, 1556, 1565, 1569, 1573, 1580, 1583, 1593, 1600, 1605, 1610, 1615, 1621, 1624, 1633, 1636, 1639, 1645, 1650, 1660, 1663, 1666, 1670, 1680, 1683, 1689, 1695, 1698, 1701, 1705, 1715, 1726, 1731, 1734, 1738, 1745, 1755, 1767, 1773, 1775, 1784, 1787, 1794, 1804, 1810, 1818, 1829, 1839, 1850, 1852, 1858, 1863, 1873, 1876, 1882, 1884, 1892, 1898, 1901, 1903, 1915, 1922, 1926, 1930, 1934, 1937, 1944, 1953, 1956, 1960, 1965, 1969, 1972, 1979, 1990, 1993, 1997, 2001, 2010, 2013, 2020, 2034, 2038, 2042, 2046, 2050, 2054, 2058, 2062, 2072, 2083, 2088, 2101, 2103, 2109, 2113, 2115, 2123, 2130, 2135, 2148, 2154, 2162, 2169, 2173, 2181, 2183, 2194, 2202, 2211, 2217, 2222, 2228, 2234, 2239, 2244, 2250, 2261, 2263, 2290, 2296, 2300, 2312, 2322, 2325, 2330, 2337, 2340, 2349, 2352, 2356, 2359, 2371, 2374, 2393, 2397, 2405, 2409, 2434, 2437, 2446, 2452, 2458, 2464, 2475, 2484, 2506, 2509, 2512, 2522, 2524, 2531, 2533, 2555, 2584, 2591, 2599, 2604, 2606, 2612, 2619, 2625, 2647, 2650, 2659, 2662, 2665, 2685, 2696, 2703, 2710, 2724, 2726, 2735, 2744, 2751, 2754, 2758, 2762, 2765] \ No newline at end of file +[4, 1, 289, 2783, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 1, 0, 5, 0, 380, 8, 0, 10, 0, 12, 0, 383, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 389, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 426, 8, 4, 1, 5, 1, 5, 3, 5, 430, 8, 5, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 441, 8, 5, 10, 5, 12, 5, 444, 9, 5, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 458, 8, 5, 3, 5, 460, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 465, 8, 5, 1, 6, 1, 6, 3, 6, 469, 8, 6, 1, 6, 1, 6, 3, 6, 473, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 480, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 485, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 491, 8, 7, 1, 7, 1, 7, 3, 7, 495, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 502, 8, 7, 10, 7, 12, 7, 505, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 511, 8, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 520, 8, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 527, 8, 7, 1, 7, 3, 7, 530, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 537, 8, 7, 1, 7, 1, 7, 3, 7, 541, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 546, 8, 8, 1, 8, 1, 8, 3, 8, 550, 8, 8, 1, 8, 3, 8, 553, 8, 8, 1, 8, 1, 8, 3, 8, 557, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 9, 1, 9, 3, 9, 569, 8, 9, 1, 9, 1, 9, 3, 9, 573, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 581, 8, 11, 1, 11, 1, 11, 3, 11, 585, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 592, 8, 11, 10, 11, 12, 11, 595, 9, 11, 3, 11, 597, 8, 11, 1, 11, 3, 11, 600, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 606, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 613, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 624, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 629, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 634, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 639, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 644, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 651, 8, 12, 10, 12, 12, 12, 654, 9, 12, 3, 12, 656, 8, 12, 1, 12, 3, 12, 659, 8, 12, 1, 12, 1, 12, 3, 12, 663, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 689, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 715, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 724, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 734, 8, 16, 1, 16, 3, 16, 737, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 751, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 769, 8, 20, 3, 20, 771, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 778, 8, 20, 10, 20, 12, 20, 781, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 791, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 800, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 807, 8, 22, 1, 22, 1, 22, 3, 22, 811, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 818, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 23, 3, 23, 827, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 832, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 839, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 853, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 866, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 871, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 876, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 882, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 918, 8, 32, 1, 32, 3, 32, 921, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 927, 8, 33, 1, 33, 3, 33, 930, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 936, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 942, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 954, 8, 35, 3, 35, 956, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 967, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 975, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 980, 8, 38, 1, 38, 1, 38, 3, 38, 984, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 989, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 996, 8, 40, 1, 40, 1, 40, 3, 40, 1000, 8, 40, 1, 41, 1, 41, 3, 41, 1004, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1010, 8, 41, 1, 42, 1, 42, 3, 42, 1014, 8, 42, 1, 42, 1, 42, 3, 42, 1018, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1025, 8, 42, 10, 42, 12, 42, 1028, 9, 42, 3, 42, 1030, 8, 42, 1, 42, 3, 42, 1033, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1041, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1055, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1062, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1075, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1086, 8, 49, 1, 49, 3, 49, 1089, 8, 49, 1, 50, 3, 50, 1092, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1097, 8, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1108, 8, 50, 10, 50, 12, 50, 1111, 9, 50, 1, 50, 1, 50, 3, 50, 1115, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1121, 8, 51, 1, 52, 1, 52, 3, 52, 1125, 8, 52, 1, 52, 1, 52, 3, 52, 1129, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1134, 8, 53, 1, 53, 3, 53, 1137, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1143, 8, 53, 10, 53, 12, 53, 1146, 9, 53, 3, 53, 1148, 8, 53, 1, 53, 3, 53, 1151, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1161, 8, 54, 10, 54, 12, 54, 1164, 9, 54, 3, 54, 1166, 8, 54, 1, 54, 3, 54, 1169, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1174, 8, 55, 1, 55, 1, 55, 3, 55, 1178, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1194, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1199, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1204, 8, 57, 10, 57, 12, 57, 1207, 9, 57, 3, 57, 1209, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1215, 8, 58, 1, 58, 3, 58, 1218, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1223, 8, 58, 10, 58, 12, 58, 1226, 9, 58, 3, 58, 1228, 8, 58, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1237, 8, 59, 1, 59, 3, 59, 1240, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1245, 8, 59, 10, 59, 12, 59, 1248, 9, 59, 3, 59, 1250, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1274, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1288, 8, 65, 1, 65, 1, 65, 3, 65, 1292, 8, 65, 1, 66, 1, 66, 3, 66, 1296, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1316, 8, 68, 3, 68, 1318, 8, 68, 3, 68, 1320, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1329, 8, 69, 3, 69, 1331, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1340, 8, 70, 3, 70, 1342, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1351, 8, 71, 3, 71, 1353, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1358, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1367, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1376, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1385, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1407, 8, 78, 1, 78, 3, 78, 1410, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1423, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1433, 8, 80, 1, 80, 1, 80, 3, 80, 1437, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1442, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1451, 8, 82, 10, 82, 12, 82, 1454, 9, 82, 1, 82, 1, 82, 3, 82, 1458, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1489, 8, 93, 10, 93, 12, 93, 1492, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1497, 8, 94, 10, 94, 12, 94, 1500, 9, 94, 1, 95, 1, 95, 3, 95, 1504, 8, 95, 1, 96, 1, 96, 3, 96, 1508, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 1514, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1519, 8, 99, 1, 99, 3, 99, 1522, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1527, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1532, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1537, 8, 99, 1, 99, 1, 99, 3, 99, 1541, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1550, 8, 99, 1, 99, 3, 99, 1553, 8, 99, 1, 99, 1, 99, 3, 99, 1557, 8, 99, 1, 100, 1, 100, 1, 100, 5, 100, 1562, 8, 100, 10, 100, 12, 100, 1565, 9, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1573, 8, 102, 1, 102, 1, 102, 3, 102, 1577, 8, 102, 5, 102, 1579, 8, 102, 10, 102, 12, 102, 1582, 9, 102, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 1588, 8, 103, 1, 104, 3, 104, 1591, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1599, 8, 105, 10, 105, 12, 105, 1602, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1608, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1613, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1618, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1623, 8, 106, 1, 106, 1, 106, 5, 106, 1627, 8, 106, 10, 106, 12, 106, 1630, 9, 106, 3, 106, 1632, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1641, 8, 107, 1, 107, 3, 107, 1644, 8, 107, 1, 107, 3, 107, 1647, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1653, 8, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1658, 8, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1666, 8, 111, 10, 111, 12, 111, 1669, 9, 111, 3, 111, 1671, 8, 111, 1, 111, 3, 111, 1674, 8, 111, 1, 111, 1, 111, 3, 111, 1678, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 5, 113, 1686, 8, 113, 10, 113, 12, 113, 1689, 9, 113, 3, 113, 1691, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1697, 8, 114, 1, 114, 1, 114, 5, 114, 1701, 8, 114, 10, 114, 12, 114, 1704, 9, 114, 3, 114, 1706, 8, 114, 1, 115, 3, 115, 1709, 8, 115, 1, 115, 1, 115, 3, 115, 1713, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1723, 8, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 1732, 8, 119, 10, 119, 12, 119, 1735, 9, 119, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 3, 119, 1742, 8, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 1753, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1761, 8, 121, 10, 121, 12, 121, 1764, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1775, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1781, 8, 122, 3, 122, 1783, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1792, 8, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1802, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1812, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1818, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1824, 8, 127, 10, 127, 12, 127, 1827, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1835, 8, 128, 10, 128, 12, 128, 1838, 9, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 5, 129, 1845, 8, 129, 10, 129, 12, 129, 1848, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1858, 8, 130, 3, 130, 1860, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1866, 8, 130, 1, 131, 1, 131, 1, 131, 3, 131, 1871, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1879, 8, 132, 10, 132, 12, 132, 1882, 9, 132, 3, 132, 1884, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1890, 8, 132, 3, 132, 1892, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1900, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1906, 8, 133, 1, 133, 5, 133, 1909, 8, 133, 10, 133, 12, 133, 1912, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1921, 8, 134, 10, 134, 12, 134, 1924, 9, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1930, 8, 134, 1, 135, 1, 135, 3, 135, 1934, 8, 135, 1, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 136, 1, 136, 3, 136, 1942, 8, 136, 1, 136, 3, 136, 1945, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1950, 8, 136, 10, 136, 12, 136, 1953, 9, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1959, 8, 136, 10, 136, 12, 136, 1962, 9, 136, 3, 136, 1964, 8, 136, 1, 136, 3, 136, 1967, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1972, 8, 136, 1, 136, 3, 136, 1975, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 3, 139, 1984, 8, 139, 1, 139, 1, 139, 1, 139, 5, 139, 1989, 8, 139, 10, 139, 12, 139, 1992, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 2000, 8, 141, 10, 141, 12, 141, 2003, 9, 141, 3, 141, 2005, 8, 141, 1, 141, 1, 141, 3, 141, 2009, 8, 141, 1, 142, 1, 142, 3, 142, 2013, 8, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2022, 8, 144, 1, 144, 3, 144, 2025, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2032, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2046, 8, 145, 5, 145, 2048, 8, 145, 10, 145, 12, 145, 2051, 9, 145, 1, 146, 3, 146, 2054, 8, 146, 1, 146, 1, 146, 3, 146, 2058, 8, 146, 1, 146, 1, 146, 3, 146, 2062, 8, 146, 1, 146, 1, 146, 3, 146, 2066, 8, 146, 1, 146, 1, 146, 3, 146, 2070, 8, 146, 1, 146, 1, 146, 3, 146, 2074, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2084, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2093, 8, 147, 10, 147, 12, 147, 2096, 9, 147, 1, 147, 1, 147, 3, 147, 2100, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2113, 8, 148, 3, 148, 2115, 8, 148, 1, 149, 1, 149, 1, 150, 1, 150, 3, 150, 2121, 8, 150, 1, 150, 1, 150, 3, 150, 2125, 8, 150, 3, 150, 2127, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2133, 8, 151, 10, 151, 12, 151, 2136, 9, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2142, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2147, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2158, 8, 154, 10, 154, 12, 154, 2161, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2166, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2174, 8, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2181, 8, 158, 1, 158, 1, 158, 3, 158, 2185, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2193, 8, 158, 10, 158, 12, 158, 2196, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2206, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2214, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 2221, 8, 159, 10, 159, 12, 159, 2224, 9, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2229, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2234, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2240, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2246, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2251, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2256, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2262, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 2273, 8, 160, 10, 160, 12, 160, 2276, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2302, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2308, 8, 161, 5, 161, 2310, 8, 161, 10, 161, 12, 161, 2313, 9, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2322, 8, 161, 10, 161, 12, 161, 2325, 9, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2334, 8, 161, 1, 161, 3, 161, 2337, 8, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2342, 8, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2347, 8, 161, 10, 161, 12, 161, 2350, 9, 161, 3, 161, 2352, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2359, 8, 161, 10, 161, 12, 161, 2362, 9, 161, 3, 161, 2364, 8, 161, 1, 161, 1, 161, 3, 161, 2368, 8, 161, 1, 161, 3, 161, 2371, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2381, 8, 161, 10, 161, 12, 161, 2384, 9, 161, 3, 161, 2386, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 4, 161, 2403, 8, 161, 11, 161, 12, 161, 2404, 1, 161, 1, 161, 3, 161, 2409, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 4, 161, 2415, 8, 161, 11, 161, 12, 161, 2416, 1, 161, 1, 161, 3, 161, 2421, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2444, 8, 161, 10, 161, 12, 161, 2447, 9, 161, 3, 161, 2449, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2458, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2464, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2470, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2476, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2487, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2496, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2516, 8, 161, 10, 161, 12, 161, 2519, 9, 161, 3, 161, 2521, 8, 161, 1, 161, 3, 161, 2524, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2534, 8, 161, 10, 161, 12, 161, 2537, 9, 161, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2543, 8, 162, 3, 162, 2545, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2567, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2594, 8, 169, 10, 169, 12, 169, 2597, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2603, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2609, 8, 169, 10, 169, 12, 169, 2612, 9, 169, 1, 169, 1, 169, 3, 169, 2616, 8, 169, 3, 169, 2618, 8, 169, 1, 169, 1, 169, 5, 169, 2622, 8, 169, 10, 169, 12, 169, 2625, 9, 169, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 2631, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2637, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 5, 175, 2652, 8, 175, 10, 175, 12, 175, 2655, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2662, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2669, 8, 176, 10, 176, 12, 176, 2672, 9, 176, 3, 176, 2674, 8, 176, 1, 176, 3, 176, 2677, 8, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2697, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2708, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2715, 8, 179, 1, 180, 1, 180, 1, 180, 5, 180, 2720, 8, 180, 10, 180, 12, 180, 2723, 9, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2736, 8, 181, 3, 181, 2738, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 5, 183, 2745, 8, 183, 10, 183, 12, 183, 2748, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2756, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2763, 8, 185, 1, 186, 3, 186, 2766, 8, 186, 1, 186, 1, 186, 3, 186, 2770, 8, 186, 1, 186, 1, 186, 3, 186, 2774, 8, 186, 1, 186, 3, 186, 2777, 8, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 10, 779, 1452, 1628, 1667, 1687, 1702, 1733, 1762, 1836, 2311, 6, 266, 290, 316, 320, 322, 338, 189, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3100, 0, 381, 1, 0, 0, 0, 2, 386, 1, 0, 0, 0, 4, 412, 1, 0, 0, 0, 6, 414, 1, 0, 0, 0, 8, 425, 1, 0, 0, 0, 10, 427, 1, 0, 0, 0, 12, 466, 1, 0, 0, 0, 14, 488, 1, 0, 0, 0, 16, 542, 1, 0, 0, 0, 18, 561, 1, 0, 0, 0, 20, 574, 1, 0, 0, 0, 22, 578, 1, 0, 0, 0, 24, 640, 1, 0, 0, 0, 26, 688, 1, 0, 0, 0, 28, 690, 1, 0, 0, 0, 30, 698, 1, 0, 0, 0, 32, 718, 1, 0, 0, 0, 34, 738, 1, 0, 0, 0, 36, 745, 1, 0, 0, 0, 38, 754, 1, 0, 0, 0, 40, 762, 1, 0, 0, 0, 42, 784, 1, 0, 0, 0, 44, 794, 1, 0, 0, 0, 46, 812, 1, 0, 0, 0, 48, 833, 1, 0, 0, 0, 50, 854, 1, 0, 0, 0, 52, 860, 1, 0, 0, 0, 54, 877, 1, 0, 0, 0, 56, 886, 1, 0, 0, 0, 58, 893, 1, 0, 0, 0, 60, 901, 1, 0, 0, 0, 62, 908, 1, 0, 0, 0, 64, 915, 1, 0, 0, 0, 66, 924, 1, 0, 0, 0, 68, 935, 1, 0, 0, 0, 70, 937, 1, 0, 0, 0, 72, 957, 1, 0, 0, 0, 74, 974, 1, 0, 0, 0, 76, 976, 1, 0, 0, 0, 78, 985, 1, 0, 0, 0, 80, 992, 1, 0, 0, 0, 82, 1001, 1, 0, 0, 0, 84, 1011, 1, 0, 0, 0, 86, 1034, 1, 0, 0, 0, 88, 1040, 1, 0, 0, 0, 90, 1042, 1, 0, 0, 0, 92, 1049, 1, 0, 0, 0, 94, 1061, 1, 0, 0, 0, 96, 1063, 1, 0, 0, 0, 98, 1070, 1, 0, 0, 0, 100, 1091, 1, 0, 0, 0, 102, 1120, 1, 0, 0, 0, 104, 1122, 1, 0, 0, 0, 106, 1130, 1, 0, 0, 0, 108, 1152, 1, 0, 0, 0, 110, 1170, 1, 0, 0, 0, 112, 1193, 1, 0, 0, 0, 114, 1195, 1, 0, 0, 0, 116, 1210, 1, 0, 0, 0, 118, 1229, 1, 0, 0, 0, 120, 1251, 1, 0, 0, 0, 122, 1256, 1, 0, 0, 0, 124, 1261, 1, 0, 0, 0, 126, 1266, 1, 0, 0, 0, 128, 1271, 1, 0, 0, 0, 130, 1278, 1, 0, 0, 0, 132, 1293, 1, 0, 0, 0, 134, 1299, 1, 0, 0, 0, 136, 1319, 1, 0, 0, 0, 138, 1321, 1, 0, 0, 0, 140, 1332, 1, 0, 0, 0, 142, 1343, 1, 0, 0, 0, 144, 1357, 1, 0, 0, 0, 146, 1359, 1, 0, 0, 0, 148, 1368, 1, 0, 0, 0, 150, 1377, 1, 0, 0, 0, 152, 1386, 1, 0, 0, 0, 154, 1389, 1, 0, 0, 0, 156, 1397, 1, 0, 0, 0, 158, 1413, 1, 0, 0, 0, 160, 1417, 1, 0, 0, 0, 162, 1441, 1, 0, 0, 0, 164, 1443, 1, 0, 0, 0, 166, 1459, 1, 0, 0, 0, 168, 1462, 1, 0, 0, 0, 170, 1466, 1, 0, 0, 0, 172, 1469, 1, 0, 0, 0, 174, 1473, 1, 0, 0, 0, 176, 1475, 1, 0, 0, 0, 178, 1477, 1, 0, 0, 0, 180, 1479, 1, 0, 0, 0, 182, 1481, 1, 0, 0, 0, 184, 1483, 1, 0, 0, 0, 186, 1485, 1, 0, 0, 0, 188, 1493, 1, 0, 0, 0, 190, 1503, 1, 0, 0, 0, 192, 1507, 1, 0, 0, 0, 194, 1509, 1, 0, 0, 0, 196, 1513, 1, 0, 0, 0, 198, 1518, 1, 0, 0, 0, 200, 1558, 1, 0, 0, 0, 202, 1566, 1, 0, 0, 0, 204, 1570, 1, 0, 0, 0, 206, 1585, 1, 0, 0, 0, 208, 1590, 1, 0, 0, 0, 210, 1594, 1, 0, 0, 0, 212, 1603, 1, 0, 0, 0, 214, 1633, 1, 0, 0, 0, 216, 1648, 1, 0, 0, 0, 218, 1654, 1, 0, 0, 0, 220, 1659, 1, 0, 0, 0, 222, 1661, 1, 0, 0, 0, 224, 1679, 1, 0, 0, 0, 226, 1682, 1, 0, 0, 0, 228, 1692, 1, 0, 0, 0, 230, 1712, 1, 0, 0, 0, 232, 1722, 1, 0, 0, 0, 234, 1724, 1, 0, 0, 0, 236, 1726, 1, 0, 0, 0, 238, 1741, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1750, 1, 0, 0, 0, 244, 1782, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1801, 1, 0, 0, 0, 250, 1811, 1, 0, 0, 0, 252, 1813, 1, 0, 0, 0, 254, 1819, 1, 0, 0, 0, 256, 1830, 1, 0, 0, 0, 258, 1841, 1, 0, 0, 0, 260, 1849, 1, 0, 0, 0, 262, 1867, 1, 0, 0, 0, 264, 1872, 1, 0, 0, 0, 266, 1893, 1, 0, 0, 0, 268, 1929, 1, 0, 0, 0, 270, 1931, 1, 0, 0, 0, 272, 1939, 1, 0, 0, 0, 274, 1976, 1, 0, 0, 0, 276, 1979, 1, 0, 0, 0, 278, 1983, 1, 0, 0, 0, 280, 1993, 1, 0, 0, 0, 282, 2008, 1, 0, 0, 0, 284, 2010, 1, 0, 0, 0, 286, 2017, 1, 0, 0, 0, 288, 2031, 1, 0, 0, 0, 290, 2033, 1, 0, 0, 0, 292, 2083, 1, 0, 0, 0, 294, 2099, 1, 0, 0, 0, 296, 2101, 1, 0, 0, 0, 298, 2116, 1, 0, 0, 0, 300, 2118, 1, 0, 0, 0, 302, 2128, 1, 0, 0, 0, 304, 2146, 1, 0, 0, 0, 306, 2148, 1, 0, 0, 0, 308, 2152, 1, 0, 0, 0, 310, 2167, 1, 0, 0, 0, 312, 2173, 1, 0, 0, 0, 314, 2175, 1, 0, 0, 0, 316, 2184, 1, 0, 0, 0, 318, 2255, 1, 0, 0, 0, 320, 2261, 1, 0, 0, 0, 322, 2523, 1, 0, 0, 0, 324, 2544, 1, 0, 0, 0, 326, 2546, 1, 0, 0, 0, 328, 2548, 1, 0, 0, 0, 330, 2550, 1, 0, 0, 0, 332, 2566, 1, 0, 0, 0, 334, 2568, 1, 0, 0, 0, 336, 2570, 1, 0, 0, 0, 338, 2617, 1, 0, 0, 0, 340, 2626, 1, 0, 0, 0, 342, 2630, 1, 0, 0, 0, 344, 2636, 1, 0, 0, 0, 346, 2638, 1, 0, 0, 0, 348, 2643, 1, 0, 0, 0, 350, 2648, 1, 0, 0, 0, 352, 2656, 1, 0, 0, 0, 354, 2696, 1, 0, 0, 0, 356, 2707, 1, 0, 0, 0, 358, 2714, 1, 0, 0, 0, 360, 2716, 1, 0, 0, 0, 362, 2737, 1, 0, 0, 0, 364, 2739, 1, 0, 0, 0, 366, 2741, 1, 0, 0, 0, 368, 2755, 1, 0, 0, 0, 370, 2762, 1, 0, 0, 0, 372, 2776, 1, 0, 0, 0, 374, 2778, 1, 0, 0, 0, 376, 2780, 1, 0, 0, 0, 378, 380, 3, 2, 1, 0, 379, 378, 1, 0, 0, 0, 380, 383, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 385, 5, 0, 0, 1, 385, 1, 1, 0, 0, 0, 386, 388, 3, 4, 2, 0, 387, 389, 5, 262, 0, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 3, 1, 0, 0, 0, 390, 413, 3, 208, 104, 0, 391, 413, 3, 6, 3, 0, 392, 413, 3, 8, 4, 0, 393, 413, 3, 26, 13, 0, 394, 413, 3, 64, 32, 0, 395, 413, 3, 66, 33, 0, 396, 413, 3, 68, 34, 0, 397, 413, 3, 74, 37, 0, 398, 413, 3, 88, 44, 0, 399, 413, 3, 94, 47, 0, 400, 413, 3, 100, 50, 0, 401, 413, 3, 102, 51, 0, 402, 413, 3, 108, 54, 0, 403, 413, 3, 110, 55, 0, 404, 413, 3, 112, 56, 0, 405, 413, 3, 144, 72, 0, 406, 413, 3, 152, 76, 0, 407, 413, 3, 154, 77, 0, 408, 413, 3, 156, 78, 0, 409, 413, 3, 158, 79, 0, 410, 413, 3, 160, 80, 0, 411, 413, 3, 162, 81, 0, 412, 390, 1, 0, 0, 0, 412, 391, 1, 0, 0, 0, 412, 392, 1, 0, 0, 0, 412, 393, 1, 0, 0, 0, 412, 394, 1, 0, 0, 0, 412, 395, 1, 0, 0, 0, 412, 396, 1, 0, 0, 0, 412, 397, 1, 0, 0, 0, 412, 398, 1, 0, 0, 0, 412, 399, 1, 0, 0, 0, 412, 400, 1, 0, 0, 0, 412, 401, 1, 0, 0, 0, 412, 402, 1, 0, 0, 0, 412, 403, 1, 0, 0, 0, 412, 404, 1, 0, 0, 0, 412, 405, 1, 0, 0, 0, 412, 406, 1, 0, 0, 0, 412, 407, 1, 0, 0, 0, 412, 408, 1, 0, 0, 0, 412, 409, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 412, 411, 1, 0, 0, 0, 413, 5, 1, 0, 0, 0, 414, 415, 5, 203, 0, 0, 415, 416, 3, 184, 92, 0, 416, 7, 1, 0, 0, 0, 417, 426, 3, 18, 9, 0, 418, 426, 3, 20, 10, 0, 419, 426, 3, 22, 11, 0, 420, 426, 3, 24, 12, 0, 421, 426, 3, 16, 8, 0, 422, 426, 3, 14, 7, 0, 423, 426, 3, 12, 6, 0, 424, 426, 3, 10, 5, 0, 425, 417, 1, 0, 0, 0, 425, 418, 1, 0, 0, 0, 425, 419, 1, 0, 0, 0, 425, 420, 1, 0, 0, 0, 425, 421, 1, 0, 0, 0, 425, 422, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 9, 1, 0, 0, 0, 427, 429, 5, 37, 0, 0, 428, 430, 5, 19, 0, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 5, 188, 0, 0, 432, 434, 3, 172, 86, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 451, 3, 174, 87, 0, 436, 437, 5, 265, 0, 0, 437, 442, 3, 218, 109, 0, 438, 439, 5, 263, 0, 0, 439, 441, 3, 218, 109, 0, 440, 438, 1, 0, 0, 0, 441, 444, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 447, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 445, 446, 5, 263, 0, 0, 446, 448, 3, 212, 106, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 5, 266, 0, 0, 450, 452, 1, 0, 0, 0, 451, 436, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 459, 1, 0, 0, 0, 453, 454, 5, 17, 0, 0, 454, 457, 5, 26, 0, 0, 455, 458, 3, 302, 151, 0, 456, 458, 3, 256, 128, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 460, 1, 0, 0, 0, 459, 453, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 464, 3, 198, 99, 0, 462, 463, 5, 9, 0, 0, 463, 465, 3, 208, 104, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 11, 1, 0, 0, 0, 466, 468, 5, 37, 0, 0, 467, 469, 5, 19, 0, 0, 468, 467, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 5, 188, 0, 0, 471, 473, 3, 172, 86, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 3, 174, 87, 0, 475, 479, 5, 115, 0, 0, 476, 480, 3, 186, 93, 0, 477, 478, 5, 147, 0, 0, 478, 480, 3, 324, 162, 0, 479, 476, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 484, 1, 0, 0, 0, 481, 482, 5, 17, 0, 0, 482, 483, 5, 26, 0, 0, 483, 485, 3, 256, 128, 0, 484, 481, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 3, 198, 99, 0, 487, 13, 1, 0, 0, 0, 488, 490, 5, 37, 0, 0, 489, 491, 5, 19, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 5, 188, 0, 0, 493, 495, 3, 172, 86, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 514, 3, 174, 87, 0, 497, 498, 5, 265, 0, 0, 498, 503, 3, 220, 110, 0, 499, 500, 5, 263, 0, 0, 500, 502, 3, 220, 110, 0, 501, 499, 1, 0, 0, 0, 502, 505, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 510, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 506, 507, 5, 263, 0, 0, 507, 508, 5, 150, 0, 0, 508, 509, 5, 110, 0, 0, 509, 511, 3, 302, 151, 0, 510, 506, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 266, 0, 0, 513, 515, 1, 0, 0, 0, 514, 497, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 521, 1, 0, 0, 0, 516, 517, 5, 150, 0, 0, 517, 519, 5, 110, 0, 0, 518, 520, 3, 302, 151, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 526, 1, 0, 0, 0, 523, 524, 5, 145, 0, 0, 524, 525, 5, 26, 0, 0, 525, 527, 3, 238, 119, 0, 526, 523, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 1, 0, 0, 0, 528, 530, 3, 224, 112, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 23, 0, 0, 532, 533, 5, 9, 0, 0, 533, 536, 5, 111, 0, 0, 534, 535, 5, 25, 0, 0, 535, 537, 3, 254, 127, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 539, 5, 9, 0, 0, 539, 541, 3, 208, 104, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 15, 1, 0, 0, 0, 542, 543, 5, 37, 0, 0, 543, 545, 5, 212, 0, 0, 544, 546, 3, 172, 86, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 3, 178, 89, 0, 548, 550, 3, 204, 102, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 553, 3, 224, 112, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 556, 1, 0, 0, 0, 554, 555, 5, 25, 0, 0, 555, 557, 3, 254, 127, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 5, 9, 0, 0, 559, 560, 3, 208, 104, 0, 560, 17, 1, 0, 0, 0, 561, 562, 5, 37, 0, 0, 562, 564, 7, 0, 0, 0, 563, 565, 3, 172, 86, 0, 564, 563, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 568, 3, 176, 88, 0, 567, 569, 3, 224, 112, 0, 568, 567, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 571, 5, 24, 0, 0, 571, 573, 3, 324, 162, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 19, 1, 0, 0, 0, 574, 575, 5, 37, 0, 0, 575, 576, 5, 166, 0, 0, 576, 577, 3, 370, 185, 0, 577, 21, 1, 0, 0, 0, 578, 580, 5, 37, 0, 0, 579, 581, 5, 12, 0, 0, 580, 579, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 5, 84, 0, 0, 583, 585, 3, 172, 86, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 599, 3, 180, 90, 0, 587, 596, 5, 265, 0, 0, 588, 593, 3, 338, 169, 0, 589, 590, 5, 263, 0, 0, 590, 592, 3, 338, 169, 0, 591, 589, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 596, 588, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 5, 266, 0, 0, 599, 587, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 160, 0, 0, 602, 605, 3, 338, 169, 0, 603, 604, 5, 102, 0, 0, 604, 606, 3, 338, 169, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 24, 0, 0, 608, 612, 5, 274, 0, 0, 609, 610, 5, 104, 0, 0, 610, 611, 5, 249, 0, 0, 611, 613, 5, 274, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 206, 0, 0, 615, 616, 5, 249, 0, 0, 616, 617, 5, 274, 0, 0, 617, 618, 5, 126, 0, 0, 618, 619, 5, 249, 0, 0, 619, 623, 5, 274, 0, 0, 620, 621, 5, 18, 0, 0, 621, 622, 5, 249, 0, 0, 622, 624, 5, 274, 0, 0, 623, 620, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, 625, 626, 5, 20, 0, 0, 626, 627, 5, 249, 0, 0, 627, 629, 5, 274, 0, 0, 628, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 633, 1, 0, 0, 0, 630, 631, 5, 187, 0, 0, 631, 632, 5, 249, 0, 0, 632, 634, 5, 274, 0, 0, 633, 630, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 638, 1, 0, 0, 0, 635, 636, 5, 76, 0, 0, 636, 637, 5, 249, 0, 0, 637, 639, 5, 274, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 23, 1, 0, 0, 0, 640, 641, 5, 37, 0, 0, 641, 643, 5, 84, 0, 0, 642, 644, 3, 172, 86, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 658, 3, 180, 90, 0, 646, 655, 5, 265, 0, 0, 647, 652, 3, 338, 169, 0, 648, 649, 5, 263, 0, 0, 649, 651, 3, 338, 169, 0, 650, 648, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 647, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 5, 266, 0, 0, 658, 646, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 662, 1, 0, 0, 0, 660, 661, 5, 160, 0, 0, 661, 663, 3, 338, 169, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 5, 24, 0, 0, 665, 666, 5, 274, 0, 0, 666, 667, 5, 186, 0, 0, 667, 668, 5, 249, 0, 0, 668, 669, 3, 324, 162, 0, 669, 25, 1, 0, 0, 0, 670, 689, 3, 28, 14, 0, 671, 689, 3, 62, 31, 0, 672, 689, 3, 60, 30, 0, 673, 689, 3, 58, 29, 0, 674, 689, 3, 54, 27, 0, 675, 689, 3, 56, 28, 0, 676, 689, 3, 52, 26, 0, 677, 689, 3, 48, 24, 0, 678, 689, 3, 50, 25, 0, 679, 689, 3, 46, 23, 0, 680, 689, 3, 44, 22, 0, 681, 689, 3, 42, 21, 0, 682, 689, 3, 40, 20, 0, 683, 689, 3, 34, 17, 0, 684, 689, 3, 30, 15, 0, 685, 689, 3, 32, 16, 0, 686, 689, 3, 36, 18, 0, 687, 689, 3, 38, 19, 0, 688, 670, 1, 0, 0, 0, 688, 671, 1, 0, 0, 0, 688, 672, 1, 0, 0, 0, 688, 673, 1, 0, 0, 0, 688, 674, 1, 0, 0, 0, 688, 675, 1, 0, 0, 0, 688, 676, 1, 0, 0, 0, 688, 677, 1, 0, 0, 0, 688, 678, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 680, 1, 0, 0, 0, 688, 681, 1, 0, 0, 0, 688, 682, 1, 0, 0, 0, 688, 683, 1, 0, 0, 0, 688, 684, 1, 0, 0, 0, 688, 685, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 688, 687, 1, 0, 0, 0, 689, 27, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 46, 0, 0, 692, 693, 3, 184, 92, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 142, 0, 0, 695, 696, 7, 1, 0, 0, 696, 697, 3, 370, 185, 0, 697, 29, 1, 0, 0, 0, 698, 699, 5, 4, 0, 0, 699, 700, 5, 188, 0, 0, 700, 701, 3, 186, 93, 0, 701, 702, 5, 176, 0, 0, 702, 703, 5, 32, 0, 0, 703, 704, 5, 182, 0, 0, 704, 705, 3, 192, 96, 0, 705, 706, 5, 265, 0, 0, 706, 707, 3, 234, 117, 0, 707, 708, 5, 249, 0, 0, 708, 714, 3, 324, 162, 0, 709, 710, 5, 263, 0, 0, 710, 711, 3, 234, 117, 0, 711, 712, 5, 249, 0, 0, 712, 713, 3, 324, 162, 0, 713, 715, 1, 0, 0, 0, 714, 709, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 266, 0, 0, 717, 31, 1, 0, 0, 0, 718, 719, 5, 4, 0, 0, 719, 720, 5, 188, 0, 0, 720, 723, 3, 186, 93, 0, 721, 722, 5, 145, 0, 0, 722, 724, 3, 314, 157, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 736, 5, 176, 0, 0, 726, 727, 5, 30, 0, 0, 727, 728, 5, 94, 0, 0, 728, 733, 3, 324, 162, 0, 729, 730, 5, 216, 0, 0, 730, 731, 5, 151, 0, 0, 731, 732, 5, 249, 0, 0, 732, 734, 3, 372, 186, 0, 733, 729, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 737, 5, 197, 0, 0, 736, 726, 1, 0, 0, 0, 736, 735, 1, 0, 0, 0, 737, 33, 1, 0, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 188, 0, 0, 740, 741, 3, 186, 93, 0, 741, 742, 5, 31, 0, 0, 742, 743, 3, 192, 96, 0, 743, 744, 3, 226, 113, 0, 744, 35, 1, 0, 0, 0, 745, 746, 5, 4, 0, 0, 746, 747, 5, 188, 0, 0, 747, 748, 3, 186, 93, 0, 748, 750, 5, 58, 0, 0, 749, 751, 5, 32, 0, 0, 750, 749, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 3, 192, 96, 0, 753, 37, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 757, 3, 186, 93, 0, 757, 758, 5, 176, 0, 0, 758, 759, 5, 142, 0, 0, 759, 760, 7, 1, 0, 0, 760, 761, 3, 370, 185, 0, 761, 39, 1, 0, 0, 0, 762, 763, 5, 4, 0, 0, 763, 764, 5, 188, 0, 0, 764, 770, 3, 186, 93, 0, 765, 771, 5, 158, 0, 0, 766, 768, 5, 1, 0, 0, 767, 769, 3, 172, 86, 0, 768, 767, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 771, 1, 0, 0, 0, 770, 765, 1, 0, 0, 0, 770, 766, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 33, 0, 0, 773, 774, 5, 265, 0, 0, 774, 779, 3, 226, 113, 0, 775, 776, 5, 263, 0, 0, 776, 778, 3, 226, 113, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 266, 0, 0, 783, 41, 1, 0, 0, 0, 784, 785, 5, 4, 0, 0, 785, 786, 5, 188, 0, 0, 786, 787, 3, 186, 93, 0, 787, 788, 5, 1, 0, 0, 788, 790, 5, 32, 0, 0, 789, 791, 3, 172, 86, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 3, 228, 114, 0, 793, 43, 1, 0, 0, 0, 794, 795, 5, 4, 0, 0, 795, 796, 5, 188, 0, 0, 796, 797, 3, 186, 93, 0, 797, 799, 5, 4, 0, 0, 798, 800, 5, 32, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 810, 3, 192, 96, 0, 802, 806, 5, 176, 0, 0, 803, 807, 3, 232, 116, 0, 804, 805, 5, 34, 0, 0, 805, 807, 3, 324, 162, 0, 806, 803, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 811, 1, 0, 0, 0, 808, 809, 5, 58, 0, 0, 809, 811, 5, 51, 0, 0, 810, 802, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 811, 45, 1, 0, 0, 0, 812, 813, 5, 4, 0, 0, 813, 814, 5, 188, 0, 0, 814, 815, 3, 186, 93, 0, 815, 817, 5, 1, 0, 0, 816, 818, 3, 172, 86, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 831, 1, 0, 0, 0, 819, 820, 5, 145, 0, 0, 820, 823, 3, 314, 157, 0, 821, 822, 5, 24, 0, 0, 822, 824, 3, 324, 162, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 826, 1, 0, 0, 0, 825, 827, 3, 246, 123, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 832, 1, 0, 0, 0, 828, 829, 5, 154, 0, 0, 829, 830, 5, 145, 0, 0, 830, 832, 3, 244, 122, 0, 831, 819, 1, 0, 0, 0, 831, 828, 1, 0, 0, 0, 832, 47, 1, 0, 0, 0, 833, 834, 5, 4, 0, 0, 834, 835, 5, 188, 0, 0, 835, 838, 3, 186, 93, 0, 836, 837, 5, 145, 0, 0, 837, 839, 3, 314, 157, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 852, 5, 176, 0, 0, 841, 842, 5, 72, 0, 0, 842, 853, 3, 236, 118, 0, 843, 844, 5, 168, 0, 0, 844, 845, 5, 79, 0, 0, 845, 853, 3, 260, 130, 0, 846, 847, 5, 24, 0, 0, 847, 853, 3, 324, 162, 0, 848, 849, 5, 25, 0, 0, 849, 853, 3, 254, 127, 0, 850, 851, 5, 175, 0, 0, 851, 853, 3, 254, 127, 0, 852, 841, 1, 0, 0, 0, 852, 843, 1, 0, 0, 0, 852, 846, 1, 0, 0, 0, 852, 848, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 49, 1, 0, 0, 0, 854, 855, 5, 4, 0, 0, 855, 856, 5, 188, 0, 0, 856, 857, 3, 186, 93, 0, 857, 858, 5, 155, 0, 0, 858, 859, 5, 146, 0, 0, 859, 51, 1, 0, 0, 0, 860, 861, 5, 4, 0, 0, 861, 862, 5, 188, 0, 0, 862, 863, 3, 186, 93, 0, 863, 865, 5, 58, 0, 0, 864, 866, 3, 170, 85, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 875, 1, 0, 0, 0, 867, 868, 5, 145, 0, 0, 868, 870, 3, 314, 157, 0, 869, 871, 5, 22, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 876, 1, 0, 0, 0, 872, 873, 5, 154, 0, 0, 873, 874, 5, 145, 0, 0, 874, 876, 3, 244, 122, 0, 875, 867, 1, 0, 0, 0, 875, 872, 1, 0, 0, 0, 876, 53, 1, 0, 0, 0, 877, 878, 5, 4, 0, 0, 878, 879, 5, 212, 0, 0, 879, 881, 3, 188, 94, 0, 880, 882, 3, 204, 102, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 5, 9, 0, 0, 884, 885, 3, 208, 104, 0, 885, 55, 1, 0, 0, 0, 886, 887, 5, 4, 0, 0, 887, 888, 5, 212, 0, 0, 888, 889, 3, 188, 94, 0, 889, 890, 5, 156, 0, 0, 890, 891, 5, 193, 0, 0, 891, 892, 3, 188, 94, 0, 892, 57, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 212, 0, 0, 895, 896, 3, 188, 94, 0, 896, 897, 5, 176, 0, 0, 897, 898, 5, 142, 0, 0, 898, 899, 7, 1, 0, 0, 899, 900, 3, 366, 183, 0, 900, 59, 1, 0, 0, 0, 901, 902, 5, 4, 0, 0, 902, 903, 5, 188, 0, 0, 903, 904, 3, 186, 93, 0, 904, 905, 5, 156, 0, 0, 905, 906, 5, 193, 0, 0, 906, 907, 3, 186, 93, 0, 907, 61, 1, 0, 0, 0, 908, 909, 5, 4, 0, 0, 909, 910, 5, 212, 0, 0, 910, 911, 3, 188, 94, 0, 911, 912, 7, 2, 0, 0, 912, 913, 5, 25, 0, 0, 913, 914, 3, 254, 127, 0, 914, 63, 1, 0, 0, 0, 915, 917, 5, 196, 0, 0, 916, 918, 5, 188, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 921, 3, 170, 85, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 3, 186, 93, 0, 923, 65, 1, 0, 0, 0, 924, 926, 5, 56, 0, 0, 925, 927, 5, 46, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 1, 0, 0, 0, 928, 930, 7, 3, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 3, 366, 183, 0, 932, 67, 1, 0, 0, 0, 933, 936, 3, 70, 35, 0, 934, 936, 3, 72, 36, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 69, 1, 0, 0, 0, 937, 938, 5, 36, 0, 0, 938, 939, 5, 182, 0, 0, 939, 941, 3, 186, 93, 0, 940, 942, 3, 302, 151, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 955, 1, 0, 0, 0, 943, 944, 5, 190, 0, 0, 944, 945, 5, 185, 0, 0, 945, 946, 5, 265, 0, 0, 946, 947, 3, 372, 186, 0, 947, 953, 5, 266, 0, 0, 948, 949, 5, 157, 0, 0, 949, 950, 5, 265, 0, 0, 950, 951, 3, 372, 186, 0, 951, 952, 5, 266, 0, 0, 952, 954, 1, 0, 0, 0, 953, 948, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 956, 1, 0, 0, 0, 955, 943, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 71, 1, 0, 0, 0, 957, 958, 5, 36, 0, 0, 958, 959, 5, 96, 0, 0, 959, 960, 5, 182, 0, 0, 960, 966, 3, 186, 93, 0, 961, 962, 5, 145, 0, 0, 962, 963, 5, 265, 0, 0, 963, 964, 3, 314, 157, 0, 964, 965, 5, 266, 0, 0, 965, 967, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 73, 1, 0, 0, 0, 968, 975, 3, 86, 43, 0, 969, 975, 3, 84, 42, 0, 970, 975, 3, 82, 41, 0, 971, 975, 3, 78, 39, 0, 972, 975, 3, 80, 40, 0, 973, 975, 3, 76, 38, 0, 974, 968, 1, 0, 0, 0, 974, 969, 1, 0, 0, 0, 974, 970, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 75, 1, 0, 0, 0, 976, 977, 5, 58, 0, 0, 977, 979, 7, 0, 0, 0, 978, 980, 3, 170, 85, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 983, 3, 184, 92, 0, 982, 984, 7, 4, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 77, 1, 0, 0, 0, 985, 986, 5, 58, 0, 0, 986, 988, 5, 212, 0, 0, 987, 989, 3, 170, 85, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 3, 188, 94, 0, 991, 79, 1, 0, 0, 0, 992, 993, 5, 58, 0, 0, 993, 995, 5, 188, 0, 0, 994, 996, 3, 170, 85, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 999, 3, 186, 93, 0, 998, 1000, 5, 22, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 81, 1, 0, 0, 0, 1001, 1003, 5, 58, 0, 0, 1002, 1004, 5, 96, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 5, 182, 0, 0, 1006, 1009, 3, 186, 93, 0, 1007, 1008, 5, 145, 0, 0, 1008, 1010, 3, 314, 157, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 83, 1, 0, 0, 0, 1011, 1013, 5, 58, 0, 0, 1012, 1014, 5, 12, 0, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 5, 84, 0, 0, 1016, 1018, 3, 170, 85, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1032, 3, 190, 95, 0, 1020, 1029, 5, 265, 0, 0, 1021, 1026, 3, 338, 169, 0, 1022, 1023, 5, 263, 0, 0, 1023, 1025, 3, 338, 169, 0, 1024, 1022, 1, 0, 0, 0, 1025, 1028, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1030, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 1021, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 266, 0, 0, 1032, 1020, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 85, 1, 0, 0, 0, 1034, 1035, 5, 58, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 370, 185, 0, 1037, 87, 1, 0, 0, 0, 1038, 1041, 3, 90, 45, 0, 1039, 1041, 3, 92, 46, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1039, 1, 0, 0, 0, 1041, 89, 1, 0, 0, 0, 1042, 1043, 5, 86, 0, 0, 1043, 1044, 5, 166, 0, 0, 1044, 1045, 3, 370, 185, 0, 1045, 1046, 5, 193, 0, 0, 1046, 1047, 5, 87, 0, 0, 1047, 1048, 3, 370, 185, 0, 1048, 91, 1, 0, 0, 0, 1049, 1050, 5, 86, 0, 0, 1050, 1051, 3, 362, 181, 0, 1051, 1052, 5, 136, 0, 0, 1052, 1054, 3, 364, 182, 0, 1053, 1055, 3, 366, 183, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 5, 193, 0, 0, 1057, 1058, 3, 368, 184, 0, 1058, 93, 1, 0, 0, 0, 1059, 1062, 3, 96, 48, 0, 1060, 1062, 3, 98, 49, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1060, 1, 0, 0, 0, 1062, 95, 1, 0, 0, 0, 1063, 1064, 5, 161, 0, 0, 1064, 1065, 5, 166, 0, 0, 1065, 1066, 3, 370, 185, 0, 1066, 1067, 5, 82, 0, 0, 1067, 1068, 5, 87, 0, 0, 1068, 1069, 3, 370, 185, 0, 1069, 97, 1, 0, 0, 0, 1070, 1074, 5, 161, 0, 0, 1071, 1072, 5, 86, 0, 0, 1072, 1073, 5, 137, 0, 0, 1073, 1075, 5, 78, 0, 0, 1074, 1071, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 3, 362, 181, 0, 1077, 1078, 5, 136, 0, 0, 1078, 1080, 3, 364, 182, 0, 1079, 1081, 3, 366, 183, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1088, 5, 82, 0, 0, 1083, 1089, 3, 368, 184, 0, 1084, 1086, 5, 166, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 3, 370, 185, 0, 1088, 1083, 1, 0, 0, 0, 1088, 1085, 1, 0, 0, 0, 1089, 99, 1, 0, 0, 0, 1090, 1092, 3, 210, 105, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 5, 99, 0, 0, 1094, 1096, 7, 5, 0, 0, 1095, 1097, 5, 188, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 186, 93, 0, 1099, 1101, 3, 302, 151, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1114, 1, 0, 0, 0, 1102, 1103, 5, 145, 0, 0, 1103, 1104, 5, 265, 0, 0, 1104, 1109, 3, 314, 157, 0, 1105, 1106, 5, 263, 0, 0, 1106, 1108, 3, 314, 157, 0, 1107, 1105, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1112, 1113, 5, 266, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1102, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 3, 208, 104, 0, 1117, 101, 1, 0, 0, 0, 1118, 1121, 3, 104, 52, 0, 1119, 1121, 3, 106, 53, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 103, 1, 0, 0, 0, 1122, 1124, 5, 50, 0, 0, 1123, 1125, 5, 82, 0, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 3, 186, 93, 0, 1127, 1129, 3, 274, 137, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 105, 1, 0, 0, 0, 1130, 1131, 5, 50, 0, 0, 1131, 1136, 3, 186, 93, 0, 1132, 1134, 5, 9, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 3, 370, 185, 0, 1136, 1133, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1147, 5, 82, 0, 0, 1139, 1144, 3, 290, 145, 0, 1140, 1141, 5, 263, 0, 0, 1141, 1143, 3, 290, 145, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1139, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1151, 3, 274, 137, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 107, 1, 0, 0, 0, 1152, 1153, 5, 54, 0, 0, 1153, 1154, 3, 186, 93, 0, 1154, 1155, 5, 176, 0, 0, 1155, 1165, 3, 200, 100, 0, 1156, 1157, 5, 82, 0, 0, 1157, 1162, 3, 290, 145, 0, 1158, 1159, 5, 263, 0, 0, 1159, 1161, 3, 290, 145, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1166, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1156, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1168, 1, 0, 0, 0, 1167, 1169, 3, 274, 137, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 109, 1, 0, 0, 0, 1170, 1171, 5, 207, 0, 0, 1171, 1173, 5, 103, 0, 0, 1172, 1174, 5, 188, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 3, 186, 93, 0, 1176, 1178, 3, 302, 151, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 3, 208, 104, 0, 1180, 111, 1, 0, 0, 0, 1181, 1194, 3, 132, 66, 0, 1182, 1194, 3, 134, 67, 0, 1183, 1194, 3, 136, 68, 0, 1184, 1194, 3, 130, 65, 0, 1185, 1194, 3, 128, 64, 0, 1186, 1194, 3, 126, 63, 0, 1187, 1194, 3, 124, 62, 0, 1188, 1194, 3, 122, 61, 0, 1189, 1194, 3, 120, 60, 0, 1190, 1194, 3, 118, 59, 0, 1191, 1194, 3, 116, 58, 0, 1192, 1194, 3, 114, 57, 0, 1193, 1181, 1, 0, 0, 0, 1193, 1182, 1, 0, 0, 0, 1193, 1183, 1, 0, 0, 0, 1193, 1184, 1, 0, 0, 0, 1193, 1185, 1, 0, 0, 0, 1193, 1186, 1, 0, 0, 0, 1193, 1187, 1, 0, 0, 0, 1193, 1188, 1, 0, 0, 0, 1193, 1189, 1, 0, 0, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1194, 113, 1, 0, 0, 0, 1195, 1196, 5, 179, 0, 0, 1196, 1208, 7, 6, 0, 0, 1197, 1199, 5, 115, 0, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1205, 3, 324, 162, 0, 1201, 1202, 5, 271, 0, 0, 1202, 1204, 3, 324, 162, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1198, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 115, 1, 0, 0, 0, 1210, 1211, 5, 179, 0, 0, 1211, 1214, 5, 189, 0, 0, 1212, 1213, 5, 94, 0, 0, 1213, 1215, 3, 186, 93, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1227, 1, 0, 0, 0, 1216, 1218, 5, 115, 0, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1224, 3, 324, 162, 0, 1220, 1221, 5, 271, 0, 0, 1221, 1223, 3, 324, 162, 0, 1222, 1220, 1, 0, 0, 0, 1223, 1226, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1228, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1227, 1217, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 117, 1, 0, 0, 0, 1229, 1231, 5, 179, 0, 0, 1230, 1232, 7, 7, 0, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1236, 5, 85, 0, 0, 1234, 1235, 5, 94, 0, 0, 1235, 1237, 3, 184, 92, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1249, 1, 0, 0, 0, 1238, 1240, 5, 115, 0, 0, 1239, 1238, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1246, 3, 324, 162, 0, 1242, 1243, 5, 271, 0, 0, 1243, 1245, 3, 324, 162, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1250, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1239, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 119, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 188, 0, 0, 1254, 1255, 3, 186, 93, 0, 1255, 121, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 37, 0, 0, 1258, 1259, 5, 212, 0, 0, 1259, 1260, 3, 188, 94, 0, 1260, 123, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 188, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 125, 1, 0, 0, 0, 1266, 1267, 5, 179, 0, 0, 1267, 1268, 5, 32, 0, 0, 1268, 1269, 5, 182, 0, 0, 1269, 1270, 3, 186, 93, 0, 1270, 127, 1, 0, 0, 0, 1271, 1273, 5, 179, 0, 0, 1272, 1274, 5, 154, 0, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 5, 146, 0, 0, 1276, 1277, 3, 186, 93, 0, 1277, 129, 1, 0, 0, 0, 1278, 1279, 5, 179, 0, 0, 1279, 1280, 5, 73, 0, 0, 1280, 1281, 5, 94, 0, 0, 1281, 1291, 3, 186, 93, 0, 1282, 1283, 5, 145, 0, 0, 1283, 1284, 5, 265, 0, 0, 1284, 1287, 3, 314, 157, 0, 1285, 1286, 5, 263, 0, 0, 1286, 1288, 3, 314, 157, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 5, 266, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1282, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 131, 1, 0, 0, 0, 1293, 1295, 5, 179, 0, 0, 1294, 1296, 5, 39, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 5, 167, 0, 0, 1298, 133, 1, 0, 0, 0, 1299, 1300, 5, 179, 0, 0, 1300, 1301, 5, 166, 0, 0, 1301, 1302, 5, 86, 0, 0, 1302, 1303, 5, 87, 0, 0, 1303, 1304, 3, 370, 185, 0, 1304, 135, 1, 0, 0, 0, 1305, 1320, 3, 138, 69, 0, 1306, 1320, 3, 140, 70, 0, 1307, 1320, 3, 142, 71, 0, 1308, 1309, 5, 179, 0, 0, 1309, 1310, 5, 86, 0, 0, 1310, 1311, 7, 8, 0, 0, 1311, 1317, 3, 370, 185, 0, 1312, 1313, 5, 136, 0, 0, 1313, 1315, 7, 9, 0, 0, 1314, 1316, 3, 366, 183, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1312, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1305, 1, 0, 0, 0, 1319, 1306, 1, 0, 0, 0, 1319, 1307, 1, 0, 0, 0, 1319, 1308, 1, 0, 0, 0, 1320, 137, 1, 0, 0, 0, 1321, 1322, 5, 179, 0, 0, 1322, 1323, 5, 86, 0, 0, 1323, 1324, 7, 8, 0, 0, 1324, 1330, 3, 370, 185, 0, 1325, 1326, 5, 136, 0, 0, 1326, 1328, 5, 46, 0, 0, 1327, 1329, 3, 184, 92, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 139, 1, 0, 0, 0, 1332, 1333, 5, 179, 0, 0, 1333, 1334, 5, 86, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1341, 3, 370, 185, 0, 1336, 1337, 5, 136, 0, 0, 1337, 1339, 5, 188, 0, 0, 1338, 1340, 3, 186, 93, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1336, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 141, 1, 0, 0, 0, 1343, 1344, 5, 179, 0, 0, 1344, 1345, 5, 86, 0, 0, 1345, 1346, 7, 8, 0, 0, 1346, 1352, 3, 370, 185, 0, 1347, 1348, 5, 136, 0, 0, 1348, 1350, 5, 32, 0, 0, 1349, 1351, 3, 192, 96, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1347, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 143, 1, 0, 0, 0, 1354, 1358, 3, 146, 73, 0, 1355, 1358, 3, 148, 74, 0, 1356, 1358, 3, 150, 75, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 145, 1, 0, 0, 0, 1359, 1360, 5, 34, 0, 0, 1360, 1361, 5, 136, 0, 0, 1361, 1362, 5, 46, 0, 0, 1362, 1363, 3, 184, 92, 0, 1363, 1366, 5, 108, 0, 0, 1364, 1367, 3, 324, 162, 0, 1365, 1367, 5, 133, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1365, 1, 0, 0, 0, 1367, 147, 1, 0, 0, 0, 1368, 1369, 5, 34, 0, 0, 1369, 1370, 5, 136, 0, 0, 1370, 1371, 5, 188, 0, 0, 1371, 1372, 3, 186, 93, 0, 1372, 1375, 5, 108, 0, 0, 1373, 1376, 3, 324, 162, 0, 1374, 1376, 5, 133, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1374, 1, 0, 0, 0, 1376, 149, 1, 0, 0, 0, 1377, 1378, 5, 34, 0, 0, 1378, 1379, 5, 136, 0, 0, 1379, 1380, 5, 32, 0, 0, 1380, 1381, 3, 192, 96, 0, 1381, 1384, 5, 108, 0, 0, 1382, 1385, 3, 324, 162, 0, 1383, 1385, 5, 133, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 151, 1, 0, 0, 0, 1386, 1387, 5, 67, 0, 0, 1387, 1388, 3, 4, 2, 0, 1388, 153, 1, 0, 0, 0, 1389, 1395, 5, 176, 0, 0, 1390, 1396, 5, 2, 0, 0, 1391, 1392, 3, 370, 185, 0, 1392, 1393, 5, 249, 0, 0, 1393, 1394, 3, 314, 157, 0, 1394, 1396, 1, 0, 0, 0, 1395, 1390, 1, 0, 0, 0, 1395, 1391, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 155, 1, 0, 0, 0, 1397, 1398, 5, 264, 0, 0, 1398, 1399, 5, 180, 0, 0, 1399, 1409, 5, 265, 0, 0, 1400, 1402, 3, 324, 162, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1410, 1, 0, 0, 0, 1403, 1406, 3, 324, 162, 0, 1404, 1405, 5, 263, 0, 0, 1405, 1407, 3, 314, 157, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1410, 1, 0, 0, 0, 1408, 1410, 3, 314, 157, 0, 1409, 1401, 1, 0, 0, 0, 1409, 1403, 1, 0, 0, 0, 1409, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 5, 266, 0, 0, 1412, 157, 1, 0, 0, 0, 1413, 1414, 5, 107, 0, 0, 1414, 1415, 5, 121, 0, 0, 1415, 1416, 3, 186, 93, 0, 1416, 159, 1, 0, 0, 0, 1417, 1418, 5, 118, 0, 0, 1418, 1419, 5, 45, 0, 0, 1419, 1420, 5, 98, 0, 0, 1420, 1422, 5, 274, 0, 0, 1421, 1423, 5, 144, 0, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1425, 5, 103, 0, 0, 1425, 1426, 5, 188, 0, 0, 1426, 1436, 3, 186, 93, 0, 1427, 1428, 5, 145, 0, 0, 1428, 1429, 5, 265, 0, 0, 1429, 1432, 3, 314, 157, 0, 1430, 1431, 5, 263, 0, 0, 1431, 1433, 3, 314, 157, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 5, 266, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1427, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 161, 1, 0, 0, 0, 1438, 1442, 3, 164, 82, 0, 1439, 1442, 3, 166, 83, 0, 1440, 1442, 3, 168, 84, 0, 1441, 1438, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1441, 1440, 1, 0, 0, 0, 1442, 163, 1, 0, 0, 0, 1443, 1444, 5, 162, 0, 0, 1444, 1457, 3, 186, 93, 0, 1445, 1446, 5, 145, 0, 0, 1446, 1447, 5, 265, 0, 0, 1447, 1452, 3, 314, 157, 0, 1448, 1449, 5, 263, 0, 0, 1449, 1451, 3, 314, 157, 0, 1450, 1448, 1, 0, 0, 0, 1451, 1454, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1456, 5, 266, 0, 0, 1456, 1458, 1, 0, 0, 0, 1457, 1445, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 165, 1, 0, 0, 0, 1459, 1460, 5, 162, 0, 0, 1460, 1461, 5, 13, 0, 0, 1461, 167, 1, 0, 0, 0, 1462, 1463, 5, 162, 0, 0, 1463, 1464, 5, 85, 0, 0, 1464, 1465, 3, 190, 95, 0, 1465, 169, 1, 0, 0, 0, 1466, 1467, 5, 93, 0, 0, 1467, 1468, 5, 66, 0, 0, 1468, 171, 1, 0, 0, 0, 1469, 1470, 5, 93, 0, 0, 1470, 1471, 5, 132, 0, 0, 1471, 1472, 5, 66, 0, 0, 1472, 173, 1, 0, 0, 0, 1473, 1474, 3, 366, 183, 0, 1474, 175, 1, 0, 0, 0, 1475, 1476, 3, 366, 183, 0, 1476, 177, 1, 0, 0, 0, 1477, 1478, 3, 366, 183, 0, 1478, 179, 1, 0, 0, 0, 1479, 1480, 3, 366, 183, 0, 1480, 181, 1, 0, 0, 0, 1481, 1482, 3, 366, 183, 0, 1482, 183, 1, 0, 0, 0, 1483, 1484, 3, 366, 183, 0, 1484, 185, 1, 0, 0, 0, 1485, 1490, 3, 370, 185, 0, 1486, 1487, 5, 261, 0, 0, 1487, 1489, 3, 370, 185, 0, 1488, 1486, 1, 0, 0, 0, 1489, 1492, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 187, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1493, 1498, 3, 370, 185, 0, 1494, 1495, 5, 261, 0, 0, 1495, 1497, 3, 370, 185, 0, 1496, 1494, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 189, 1, 0, 0, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 3, 374, 187, 0, 1502, 1504, 3, 366, 183, 0, 1503, 1501, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 191, 1, 0, 0, 0, 1505, 1508, 3, 366, 183, 0, 1506, 1508, 4, 96, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1506, 1, 0, 0, 0, 1508, 193, 1, 0, 0, 0, 1509, 1510, 3, 366, 183, 0, 1510, 195, 1, 0, 0, 0, 1511, 1514, 3, 186, 93, 0, 1512, 1514, 3, 188, 94, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 197, 1, 0, 0, 0, 1515, 1516, 5, 21, 0, 0, 1516, 1517, 5, 26, 0, 0, 1517, 1519, 3, 302, 151, 0, 1518, 1515, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1521, 1, 0, 0, 0, 1520, 1522, 3, 224, 112, 0, 1521, 1520, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1526, 1, 0, 0, 0, 1523, 1524, 5, 168, 0, 0, 1524, 1525, 5, 79, 0, 0, 1525, 1527, 3, 260, 130, 0, 1526, 1523, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1531, 1, 0, 0, 0, 1528, 1529, 5, 216, 0, 0, 1529, 1530, 5, 175, 0, 0, 1530, 1532, 3, 254, 127, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1536, 1, 0, 0, 0, 1533, 1534, 5, 23, 0, 0, 1534, 1535, 5, 9, 0, 0, 1535, 1537, 3, 236, 118, 0, 1536, 1533, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1539, 5, 24, 0, 0, 1539, 1541, 3, 324, 162, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1552, 1, 0, 0, 0, 1542, 1543, 5, 30, 0, 0, 1543, 1544, 5, 94, 0, 0, 1544, 1549, 3, 366, 183, 0, 1545, 1546, 5, 216, 0, 0, 1546, 1547, 5, 151, 0, 0, 1547, 1548, 5, 249, 0, 0, 1548, 1550, 5, 277, 0, 0, 1549, 1545, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1553, 1, 0, 0, 0, 1551, 1553, 5, 197, 0, 0, 1552, 1542, 1, 0, 0, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1556, 1, 0, 0, 0, 1554, 1555, 5, 25, 0, 0, 1555, 1557, 3, 254, 127, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1563, 3, 202, 101, 0, 1559, 1560, 5, 263, 0, 0, 1560, 1562, 3, 202, 101, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1565, 1, 0, 0, 0, 1563, 1561, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 201, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1566, 1567, 3, 366, 183, 0, 1567, 1568, 5, 249, 0, 0, 1568, 1569, 3, 314, 157, 0, 1569, 203, 1, 0, 0, 0, 1570, 1572, 5, 265, 0, 0, 1571, 1573, 3, 206, 103, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1580, 1, 0, 0, 0, 1574, 1576, 5, 263, 0, 0, 1575, 1577, 3, 206, 103, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1574, 1, 0, 0, 0, 1579, 1582, 1, 0, 0, 0, 1580, 1578, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1583, 1584, 5, 266, 0, 0, 1584, 205, 1, 0, 0, 0, 1585, 1587, 3, 182, 91, 0, 1586, 1588, 3, 224, 112, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 207, 1, 0, 0, 0, 1589, 1591, 3, 210, 105, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 3, 264, 132, 0, 1593, 209, 1, 0, 0, 0, 1594, 1595, 5, 216, 0, 0, 1595, 1600, 3, 284, 142, 0, 1596, 1597, 5, 263, 0, 0, 1597, 1599, 3, 284, 142, 0, 1598, 1596, 1, 0, 0, 0, 1599, 1602, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 211, 1, 0, 0, 0, 1602, 1600, 1, 0, 0, 0, 1603, 1604, 5, 150, 0, 0, 1604, 1605, 5, 110, 0, 0, 1605, 1607, 3, 302, 151, 0, 1606, 1608, 5, 53, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1612, 1, 0, 0, 0, 1609, 1613, 5, 225, 0, 0, 1610, 1611, 5, 263, 0, 0, 1611, 1613, 5, 225, 0, 0, 1612, 1609, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1617, 1, 0, 0, 0, 1614, 1618, 5, 226, 0, 0, 1615, 1616, 5, 263, 0, 0, 1616, 1618, 5, 226, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1631, 1, 0, 0, 0, 1619, 1620, 5, 263, 0, 0, 1620, 1623, 3, 214, 107, 0, 1621, 1623, 3, 214, 107, 0, 1622, 1619, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1628, 1, 0, 0, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 3, 214, 107, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1632, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1622, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 213, 1, 0, 0, 0, 1633, 1634, 5, 81, 0, 0, 1634, 1635, 5, 110, 0, 0, 1635, 1636, 3, 302, 151, 0, 1636, 1637, 5, 224, 0, 0, 1637, 1638, 3, 186, 93, 0, 1638, 1640, 3, 302, 151, 0, 1639, 1641, 5, 53, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 5, 225, 0, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 1, 0, 0, 0, 1645, 1647, 5, 226, 0, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 215, 1, 0, 0, 0, 1648, 1649, 3, 192, 96, 0, 1649, 1652, 3, 338, 169, 0, 1650, 1651, 5, 34, 0, 0, 1651, 1653, 3, 324, 162, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 217, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1657, 3, 338, 169, 0, 1656, 1658, 3, 224, 112, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 219, 1, 0, 0, 0, 1659, 1660, 3, 222, 111, 0, 1660, 221, 1, 0, 0, 0, 1661, 1662, 3, 182, 91, 0, 1662, 1670, 3, 338, 169, 0, 1663, 1667, 3, 230, 115, 0, 1664, 1666, 3, 230, 115, 0, 1665, 1664, 1, 0, 0, 0, 1666, 1669, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1667, 1665, 1, 0, 0, 0, 1668, 1671, 1, 0, 0, 0, 1669, 1667, 1, 0, 0, 0, 1670, 1663, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1674, 3, 224, 112, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1676, 5, 150, 0, 0, 1676, 1678, 5, 110, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 223, 1, 0, 0, 0, 1679, 1680, 5, 34, 0, 0, 1680, 1681, 3, 324, 162, 0, 1681, 225, 1, 0, 0, 0, 1682, 1690, 3, 216, 108, 0, 1683, 1687, 3, 230, 115, 0, 1684, 1686, 3, 230, 115, 0, 1685, 1684, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1683, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 227, 1, 0, 0, 0, 1692, 1693, 3, 182, 91, 0, 1693, 1696, 3, 338, 169, 0, 1694, 1695, 5, 34, 0, 0, 1695, 1697, 3, 324, 162, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1705, 1, 0, 0, 0, 1698, 1702, 3, 230, 115, 0, 1699, 1701, 3, 230, 115, 0, 1700, 1699, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1698, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1709, 5, 132, 0, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1713, 5, 133, 0, 0, 1711, 1713, 3, 232, 116, 0, 1712, 1708, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 231, 1, 0, 0, 0, 1714, 1715, 5, 60, 0, 0, 1715, 1723, 3, 314, 157, 0, 1716, 1717, 5, 35, 0, 0, 1717, 1723, 3, 314, 157, 0, 1718, 1719, 5, 51, 0, 0, 1719, 1723, 3, 314, 157, 0, 1720, 1721, 5, 16, 0, 0, 1721, 1723, 3, 372, 186, 0, 1722, 1714, 1, 0, 0, 0, 1722, 1716, 1, 0, 0, 0, 1722, 1718, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 233, 1, 0, 0, 0, 1724, 1725, 7, 10, 0, 0, 1725, 235, 1, 0, 0, 0, 1726, 1727, 7, 11, 0, 0, 1727, 237, 1, 0, 0, 0, 1728, 1733, 3, 240, 120, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1738, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1736, 1737, 5, 263, 0, 0, 1737, 1739, 3, 242, 121, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1742, 3, 242, 121, 0, 1741, 1728, 1, 0, 0, 0, 1741, 1740, 1, 0, 0, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 89, 0, 0, 1744, 1746, 3, 302, 151, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 146, 0, 0, 1748, 1749, 3, 372, 186, 0, 1749, 241, 1, 0, 0, 0, 1750, 1752, 5, 154, 0, 0, 1751, 1753, 3, 302, 151, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 5, 265, 0, 0, 1755, 1756, 5, 145, 0, 0, 1756, 1762, 3, 244, 122, 0, 1757, 1758, 5, 263, 0, 0, 1758, 1759, 5, 145, 0, 0, 1759, 1761, 3, 244, 122, 0, 1760, 1757, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 266, 0, 0, 1766, 243, 1, 0, 0, 0, 1767, 1768, 5, 210, 0, 0, 1768, 1769, 3, 250, 125, 0, 1769, 1770, 3, 314, 157, 0, 1770, 1783, 1, 0, 0, 0, 1771, 1772, 3, 314, 157, 0, 1772, 1773, 3, 248, 124, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1771, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1780, 5, 211, 0, 0, 1777, 1778, 3, 248, 124, 0, 1778, 1779, 3, 314, 157, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1777, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1767, 1, 0, 0, 0, 1782, 1774, 1, 0, 0, 0, 1783, 245, 1, 0, 0, 0, 1784, 1785, 5, 30, 0, 0, 1785, 1786, 5, 94, 0, 0, 1786, 1791, 3, 370, 185, 0, 1787, 1788, 5, 216, 0, 0, 1788, 1789, 5, 151, 0, 0, 1789, 1790, 5, 249, 0, 0, 1790, 1792, 3, 372, 186, 0, 1791, 1787, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1795, 5, 197, 0, 0, 1794, 1784, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1802, 1, 0, 0, 0, 1797, 1802, 5, 251, 0, 0, 1798, 1802, 5, 252, 0, 0, 1799, 1802, 5, 253, 0, 0, 1800, 1802, 5, 254, 0, 0, 1801, 1796, 1, 0, 0, 0, 1801, 1797, 1, 0, 0, 0, 1801, 1798, 1, 0, 0, 0, 1801, 1799, 1, 0, 0, 0, 1801, 1800, 1, 0, 0, 0, 1802, 249, 1, 0, 0, 0, 1803, 1812, 5, 249, 0, 0, 1804, 1812, 5, 250, 0, 0, 1805, 1812, 5, 115, 0, 0, 1806, 1812, 5, 164, 0, 0, 1807, 1812, 5, 163, 0, 0, 1808, 1812, 5, 15, 0, 0, 1809, 1812, 5, 94, 0, 0, 1810, 1812, 3, 248, 124, 0, 1811, 1803, 1, 0, 0, 0, 1811, 1804, 1, 0, 0, 0, 1811, 1805, 1, 0, 0, 0, 1811, 1806, 1, 0, 0, 0, 1811, 1807, 1, 0, 0, 0, 1811, 1808, 1, 0, 0, 0, 1811, 1809, 1, 0, 0, 0, 1811, 1810, 1, 0, 0, 0, 1812, 251, 1, 0, 0, 0, 1813, 1814, 5, 115, 0, 0, 1814, 1817, 3, 366, 183, 0, 1815, 1816, 7, 12, 0, 0, 1816, 1818, 5, 153, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 253, 1, 0, 0, 0, 1819, 1820, 5, 265, 0, 0, 1820, 1825, 3, 262, 131, 0, 1821, 1822, 5, 263, 0, 0, 1822, 1824, 3, 262, 131, 0, 1823, 1821, 1, 0, 0, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1828, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1829, 5, 266, 0, 0, 1829, 255, 1, 0, 0, 0, 1830, 1831, 5, 265, 0, 0, 1831, 1836, 3, 216, 108, 0, 1832, 1833, 5, 263, 0, 0, 1833, 1835, 3, 216, 108, 0, 1834, 1832, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1840, 5, 266, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1846, 3, 314, 157, 0, 1842, 1843, 5, 263, 0, 0, 1843, 1845, 3, 314, 157, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1848, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 259, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1859, 5, 52, 0, 0, 1850, 1851, 5, 71, 0, 0, 1851, 1852, 5, 191, 0, 0, 1852, 1853, 5, 26, 0, 0, 1853, 1857, 3, 324, 162, 0, 1854, 1855, 5, 63, 0, 0, 1855, 1856, 5, 26, 0, 0, 1856, 1858, 3, 324, 162, 0, 1857, 1854, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1850, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1865, 1, 0, 0, 0, 1861, 1862, 5, 117, 0, 0, 1862, 1863, 5, 191, 0, 0, 1863, 1864, 5, 26, 0, 0, 1864, 1866, 3, 324, 162, 0, 1865, 1861, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 261, 1, 0, 0, 0, 1867, 1870, 3, 370, 185, 0, 1868, 1869, 5, 249, 0, 0, 1869, 1871, 3, 314, 157, 0, 1870, 1868, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 263, 1, 0, 0, 0, 1872, 1883, 3, 266, 133, 0, 1873, 1874, 5, 139, 0, 0, 1874, 1875, 5, 26, 0, 0, 1875, 1880, 3, 270, 135, 0, 1876, 1877, 5, 263, 0, 0, 1877, 1879, 3, 270, 135, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1891, 1, 0, 0, 0, 1885, 1886, 5, 116, 0, 0, 1886, 1889, 3, 314, 157, 0, 1887, 1888, 5, 135, 0, 0, 1888, 1890, 5, 277, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1892, 1, 0, 0, 0, 1891, 1885, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 265, 1, 0, 0, 0, 1893, 1894, 6, 133, -1, 0, 1894, 1895, 3, 268, 134, 0, 1895, 1910, 1, 0, 0, 0, 1896, 1897, 10, 2, 0, 0, 1897, 1899, 5, 100, 0, 0, 1898, 1900, 3, 286, 143, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1909, 3, 266, 133, 3, 1902, 1903, 10, 1, 0, 0, 1903, 1905, 7, 13, 0, 0, 1904, 1906, 3, 286, 143, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 3, 266, 133, 2, 1908, 1896, 1, 0, 0, 0, 1908, 1902, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 267, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1930, 3, 272, 136, 0, 1914, 1915, 5, 188, 0, 0, 1915, 1930, 3, 186, 93, 0, 1916, 1917, 5, 211, 0, 0, 1917, 1922, 3, 314, 157, 0, 1918, 1919, 5, 263, 0, 0, 1919, 1921, 3, 314, 157, 0, 1920, 1918, 1, 0, 0, 0, 1921, 1924, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1930, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1926, 5, 265, 0, 0, 1926, 1927, 3, 264, 132, 0, 1927, 1928, 5, 266, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1913, 1, 0, 0, 0, 1929, 1914, 1, 0, 0, 0, 1929, 1916, 1, 0, 0, 0, 1929, 1925, 1, 0, 0, 0, 1930, 269, 1, 0, 0, 0, 1931, 1933, 3, 312, 156, 0, 1932, 1934, 7, 14, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1936, 5, 134, 0, 0, 1936, 1938, 7, 15, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 271, 1, 0, 0, 0, 1939, 1941, 5, 174, 0, 0, 1940, 1942, 3, 286, 143, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1945, 5, 183, 0, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1951, 3, 288, 144, 0, 1947, 1948, 5, 263, 0, 0, 1948, 1950, 3, 288, 144, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1963, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1955, 5, 82, 0, 0, 1955, 1960, 3, 290, 145, 0, 1956, 1957, 5, 263, 0, 0, 1957, 1959, 3, 290, 145, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1964, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1963, 1954, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 274, 137, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1971, 1, 0, 0, 0, 1968, 1969, 5, 87, 0, 0, 1969, 1970, 5, 26, 0, 0, 1970, 1972, 3, 278, 139, 0, 1971, 1968, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 276, 138, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 273, 1, 0, 0, 0, 1976, 1977, 5, 215, 0, 0, 1977, 1978, 3, 316, 158, 0, 1978, 275, 1, 0, 0, 0, 1979, 1980, 5, 90, 0, 0, 1980, 1981, 3, 316, 158, 0, 1981, 277, 1, 0, 0, 0, 1982, 1984, 3, 286, 143, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1990, 3, 280, 140, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 280, 140, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 279, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1994, 3, 282, 141, 0, 1994, 281, 1, 0, 0, 0, 1995, 2004, 5, 265, 0, 0, 1996, 2001, 3, 312, 156, 0, 1997, 1998, 5, 263, 0, 0, 1998, 2000, 3, 312, 156, 0, 1999, 1997, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2004, 1996, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2009, 5, 266, 0, 0, 2007, 2009, 3, 312, 156, 0, 2008, 1995, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 283, 1, 0, 0, 0, 2010, 2012, 3, 370, 185, 0, 2011, 2013, 3, 302, 151, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 9, 0, 0, 2015, 2016, 3, 306, 153, 0, 2016, 285, 1, 0, 0, 0, 2017, 2018, 7, 16, 0, 0, 2018, 287, 1, 0, 0, 0, 2019, 2024, 3, 312, 156, 0, 2020, 2022, 5, 9, 0, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 3, 370, 185, 0, 2024, 2021, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2032, 1, 0, 0, 0, 2026, 2027, 3, 366, 183, 0, 2027, 2028, 5, 261, 0, 0, 2028, 2029, 5, 257, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2032, 5, 257, 0, 0, 2031, 2019, 1, 0, 0, 0, 2031, 2026, 1, 0, 0, 0, 2031, 2030, 1, 0, 0, 0, 2032, 289, 1, 0, 0, 0, 2033, 2034, 6, 145, -1, 0, 2034, 2035, 3, 296, 148, 0, 2035, 2049, 1, 0, 0, 0, 2036, 2045, 10, 2, 0, 0, 2037, 2038, 5, 38, 0, 0, 2038, 2039, 5, 109, 0, 0, 2039, 2046, 3, 296, 148, 0, 2040, 2041, 3, 292, 146, 0, 2041, 2042, 5, 109, 0, 0, 2042, 2043, 3, 290, 145, 0, 2043, 2044, 3, 294, 147, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2037, 1, 0, 0, 0, 2045, 2040, 1, 0, 0, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2036, 1, 0, 0, 0, 2048, 2051, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 291, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2054, 5, 97, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2084, 1, 0, 0, 0, 2055, 2057, 5, 114, 0, 0, 2056, 2058, 5, 97, 0, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2084, 1, 0, 0, 0, 2059, 2061, 5, 165, 0, 0, 2060, 2062, 5, 97, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2084, 1, 0, 0, 0, 2063, 2065, 5, 114, 0, 0, 2064, 2066, 5, 141, 0, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2084, 1, 0, 0, 0, 2067, 2069, 5, 165, 0, 0, 2068, 2070, 5, 141, 0, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2084, 1, 0, 0, 0, 2071, 2073, 5, 83, 0, 0, 2072, 2074, 5, 141, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2084, 1, 0, 0, 0, 2075, 2076, 5, 114, 0, 0, 2076, 2084, 5, 177, 0, 0, 2077, 2078, 5, 165, 0, 0, 2078, 2084, 5, 177, 0, 0, 2079, 2080, 5, 114, 0, 0, 2080, 2084, 5, 7, 0, 0, 2081, 2082, 5, 165, 0, 0, 2082, 2084, 5, 7, 0, 0, 2083, 2053, 1, 0, 0, 0, 2083, 2055, 1, 0, 0, 0, 2083, 2059, 1, 0, 0, 0, 2083, 2063, 1, 0, 0, 0, 2083, 2067, 1, 0, 0, 0, 2083, 2071, 1, 0, 0, 0, 2083, 2075, 1, 0, 0, 0, 2083, 2077, 1, 0, 0, 0, 2083, 2079, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2084, 293, 1, 0, 0, 0, 2085, 2086, 5, 136, 0, 0, 2086, 2100, 3, 316, 158, 0, 2087, 2088, 5, 205, 0, 0, 2088, 2089, 5, 265, 0, 0, 2089, 2094, 3, 370, 185, 0, 2090, 2091, 5, 263, 0, 0, 2091, 2093, 3, 370, 185, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2092, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2094, 1, 0, 0, 0, 2097, 2098, 5, 266, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2085, 1, 0, 0, 0, 2099, 2087, 1, 0, 0, 0, 2100, 295, 1, 0, 0, 0, 2101, 2114, 3, 300, 150, 0, 2102, 2103, 5, 190, 0, 0, 2103, 2104, 3, 298, 149, 0, 2104, 2105, 5, 265, 0, 0, 2105, 2106, 3, 314, 157, 0, 2106, 2112, 5, 266, 0, 0, 2107, 2108, 5, 157, 0, 0, 2108, 2109, 5, 265, 0, 0, 2109, 2110, 3, 314, 157, 0, 2110, 2111, 5, 266, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2107, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2102, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 297, 1, 0, 0, 0, 2116, 2117, 7, 17, 0, 0, 2117, 299, 1, 0, 0, 0, 2118, 2126, 3, 304, 152, 0, 2119, 2121, 5, 9, 0, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 3, 370, 185, 0, 2123, 2125, 3, 302, 151, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2120, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 301, 1, 0, 0, 0, 2128, 2129, 5, 265, 0, 0, 2129, 2134, 3, 192, 96, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2133, 3, 192, 96, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2136, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2138, 5, 266, 0, 0, 2138, 303, 1, 0, 0, 0, 2139, 2147, 3, 196, 98, 0, 2140, 2142, 5, 113, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2147, 3, 306, 153, 0, 2144, 2147, 3, 308, 154, 0, 2145, 2147, 3, 310, 155, 0, 2146, 2139, 1, 0, 0, 0, 2146, 2141, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2145, 1, 0, 0, 0, 2147, 305, 1, 0, 0, 0, 2148, 2149, 5, 265, 0, 0, 2149, 2150, 3, 208, 104, 0, 2150, 2151, 5, 266, 0, 0, 2151, 307, 1, 0, 0, 0, 2152, 2153, 5, 201, 0, 0, 2153, 2154, 5, 265, 0, 0, 2154, 2159, 3, 314, 157, 0, 2155, 2156, 5, 263, 0, 0, 2156, 2158, 3, 314, 157, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2161, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 5, 266, 0, 0, 2163, 2164, 5, 216, 0, 0, 2164, 2166, 5, 140, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 309, 1, 0, 0, 0, 2167, 2168, 5, 265, 0, 0, 2168, 2169, 3, 290, 145, 0, 2169, 2170, 5, 266, 0, 0, 2170, 311, 1, 0, 0, 0, 2171, 2174, 3, 192, 96, 0, 2172, 2174, 3, 314, 157, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2172, 1, 0, 0, 0, 2174, 313, 1, 0, 0, 0, 2175, 2176, 3, 316, 158, 0, 2176, 315, 1, 0, 0, 0, 2177, 2178, 6, 158, -1, 0, 2178, 2180, 3, 320, 160, 0, 2179, 2181, 3, 318, 159, 0, 2180, 2179, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2185, 1, 0, 0, 0, 2182, 2183, 5, 132, 0, 0, 2183, 2185, 3, 316, 158, 3, 2184, 2177, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2185, 2194, 1, 0, 0, 0, 2186, 2187, 10, 2, 0, 0, 2187, 2188, 5, 5, 0, 0, 2188, 2193, 3, 316, 158, 3, 2189, 2190, 10, 1, 0, 0, 2190, 2191, 5, 138, 0, 0, 2191, 2193, 3, 316, 158, 2, 2192, 2186, 1, 0, 0, 0, 2192, 2189, 1, 0, 0, 0, 2193, 2196, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 317, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 3, 326, 163, 0, 2198, 2199, 3, 320, 160, 0, 2199, 2256, 1, 0, 0, 0, 2200, 2201, 3, 326, 163, 0, 2201, 2202, 3, 328, 164, 0, 2202, 2203, 3, 306, 153, 0, 2203, 2256, 1, 0, 0, 0, 2204, 2206, 5, 132, 0, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 5, 15, 0, 0, 2208, 2209, 3, 320, 160, 0, 2209, 2210, 5, 5, 0, 0, 2210, 2211, 3, 320, 160, 0, 2211, 2256, 1, 0, 0, 0, 2212, 2214, 5, 132, 0, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 94, 0, 0, 2216, 2217, 5, 265, 0, 0, 2217, 2222, 3, 314, 157, 0, 2218, 2219, 5, 263, 0, 0, 2219, 2221, 3, 314, 157, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 266, 0, 0, 2226, 2256, 1, 0, 0, 0, 2227, 2229, 5, 132, 0, 0, 2228, 2227, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2231, 5, 94, 0, 0, 2231, 2256, 3, 306, 153, 0, 2232, 2234, 5, 132, 0, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 7, 18, 0, 0, 2236, 2239, 3, 320, 160, 0, 2237, 2238, 5, 62, 0, 0, 2238, 2240, 3, 320, 160, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2256, 1, 0, 0, 0, 2241, 2242, 7, 19, 0, 0, 2242, 2256, 3, 320, 160, 0, 2243, 2245, 5, 108, 0, 0, 2244, 2246, 5, 132, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2256, 7, 20, 0, 0, 2248, 2250, 5, 108, 0, 0, 2249, 2251, 5, 132, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 57, 0, 0, 2253, 2254, 5, 82, 0, 0, 2254, 2256, 3, 320, 160, 0, 2255, 2197, 1, 0, 0, 0, 2255, 2200, 1, 0, 0, 0, 2255, 2205, 1, 0, 0, 0, 2255, 2213, 1, 0, 0, 0, 2255, 2228, 1, 0, 0, 0, 2255, 2233, 1, 0, 0, 0, 2255, 2241, 1, 0, 0, 0, 2255, 2243, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 319, 1, 0, 0, 0, 2257, 2258, 6, 160, -1, 0, 2258, 2262, 3, 322, 161, 0, 2259, 2260, 7, 21, 0, 0, 2260, 2262, 3, 320, 160, 4, 2261, 2257, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2274, 1, 0, 0, 0, 2263, 2264, 10, 3, 0, 0, 2264, 2265, 7, 22, 0, 0, 2265, 2273, 3, 320, 160, 4, 2266, 2267, 10, 2, 0, 0, 2267, 2268, 7, 21, 0, 0, 2268, 2273, 3, 320, 160, 3, 2269, 2270, 10, 1, 0, 0, 2270, 2271, 5, 260, 0, 0, 2271, 2273, 3, 320, 160, 2, 2272, 2263, 1, 0, 0, 0, 2272, 2266, 1, 0, 0, 0, 2272, 2269, 1, 0, 0, 0, 2273, 2276, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 321, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2277, 2278, 6, 161, -1, 0, 2278, 2524, 5, 133, 0, 0, 2279, 2524, 3, 332, 166, 0, 2280, 2281, 3, 370, 185, 0, 2281, 2282, 3, 324, 162, 0, 2282, 2524, 1, 0, 0, 0, 2283, 2284, 5, 286, 0, 0, 2284, 2524, 3, 324, 162, 0, 2285, 2524, 3, 372, 186, 0, 2286, 2524, 3, 330, 165, 0, 2287, 2524, 3, 324, 162, 0, 2288, 2524, 5, 276, 0, 0, 2289, 2524, 5, 272, 0, 0, 2290, 2291, 5, 148, 0, 0, 2291, 2292, 5, 265, 0, 0, 2292, 2293, 3, 320, 160, 0, 2293, 2294, 5, 94, 0, 0, 2294, 2295, 3, 320, 160, 0, 2295, 2296, 5, 266, 0, 0, 2296, 2524, 1, 0, 0, 0, 2297, 2298, 5, 265, 0, 0, 2298, 2301, 3, 314, 157, 0, 2299, 2300, 5, 9, 0, 0, 2300, 2302, 3, 338, 169, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2311, 1, 0, 0, 0, 2303, 2304, 5, 263, 0, 0, 2304, 2307, 3, 314, 157, 0, 2305, 2306, 5, 9, 0, 0, 2306, 2308, 3, 338, 169, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2303, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 266, 0, 0, 2315, 2524, 1, 0, 0, 0, 2316, 2317, 5, 168, 0, 0, 2317, 2318, 5, 265, 0, 0, 2318, 2323, 3, 314, 157, 0, 2319, 2320, 5, 263, 0, 0, 2320, 2322, 3, 314, 157, 0, 2321, 2319, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2327, 5, 266, 0, 0, 2327, 2524, 1, 0, 0, 0, 2328, 2329, 3, 190, 95, 0, 2329, 2330, 5, 265, 0, 0, 2330, 2331, 5, 257, 0, 0, 2331, 2333, 5, 266, 0, 0, 2332, 2334, 3, 348, 174, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 352, 176, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2524, 1, 0, 0, 0, 2338, 2339, 3, 190, 95, 0, 2339, 2351, 5, 265, 0, 0, 2340, 2342, 3, 286, 143, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2348, 3, 314, 157, 0, 2344, 2345, 5, 263, 0, 0, 2345, 2347, 3, 314, 157, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2341, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2363, 1, 0, 0, 0, 2353, 2354, 5, 139, 0, 0, 2354, 2355, 5, 26, 0, 0, 2355, 2360, 3, 270, 135, 0, 2356, 2357, 5, 263, 0, 0, 2357, 2359, 3, 270, 135, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2364, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2353, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2367, 5, 266, 0, 0, 2366, 2368, 3, 348, 174, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 1, 0, 0, 0, 2369, 2371, 3, 352, 176, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2524, 1, 0, 0, 0, 2372, 2373, 3, 370, 185, 0, 2373, 2374, 5, 273, 0, 0, 2374, 2375, 3, 314, 157, 0, 2375, 2524, 1, 0, 0, 0, 2376, 2385, 5, 265, 0, 0, 2377, 2382, 3, 370, 185, 0, 2378, 2379, 5, 263, 0, 0, 2379, 2381, 3, 370, 185, 0, 2380, 2378, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2377, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2388, 5, 266, 0, 0, 2388, 2389, 5, 273, 0, 0, 2389, 2524, 3, 314, 157, 0, 2390, 2391, 5, 265, 0, 0, 2391, 2392, 3, 208, 104, 0, 2392, 2393, 5, 266, 0, 0, 2393, 2524, 1, 0, 0, 0, 2394, 2395, 5, 66, 0, 0, 2395, 2396, 5, 265, 0, 0, 2396, 2397, 3, 208, 104, 0, 2397, 2398, 5, 266, 0, 0, 2398, 2524, 1, 0, 0, 0, 2399, 2400, 5, 28, 0, 0, 2400, 2402, 3, 320, 160, 0, 2401, 2403, 3, 346, 173, 0, 2402, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2407, 5, 59, 0, 0, 2407, 2409, 3, 314, 157, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 5, 61, 0, 0, 2411, 2524, 1, 0, 0, 0, 2412, 2414, 5, 28, 0, 0, 2413, 2415, 3, 346, 173, 0, 2414, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2420, 1, 0, 0, 0, 2418, 2419, 5, 59, 0, 0, 2419, 2421, 3, 314, 157, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2423, 5, 61, 0, 0, 2423, 2524, 1, 0, 0, 0, 2424, 2425, 5, 29, 0, 0, 2425, 2426, 5, 265, 0, 0, 2426, 2427, 3, 314, 157, 0, 2427, 2428, 5, 9, 0, 0, 2428, 2429, 3, 338, 169, 0, 2429, 2430, 5, 266, 0, 0, 2430, 2524, 1, 0, 0, 0, 2431, 2432, 5, 195, 0, 0, 2432, 2433, 5, 265, 0, 0, 2433, 2434, 3, 314, 157, 0, 2434, 2435, 5, 9, 0, 0, 2435, 2436, 3, 338, 169, 0, 2436, 2437, 5, 266, 0, 0, 2437, 2524, 1, 0, 0, 0, 2438, 2439, 5, 8, 0, 0, 2439, 2448, 5, 267, 0, 0, 2440, 2445, 3, 314, 157, 0, 2441, 2442, 5, 263, 0, 0, 2442, 2444, 3, 314, 157, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2447, 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2449, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2448, 2440, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2524, 5, 268, 0, 0, 2451, 2524, 3, 194, 97, 0, 2452, 2524, 5, 40, 0, 0, 2453, 2457, 5, 42, 0, 0, 2454, 2455, 5, 265, 0, 0, 2455, 2456, 5, 277, 0, 0, 2456, 2458, 5, 266, 0, 0, 2457, 2454, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2524, 1, 0, 0, 0, 2459, 2463, 5, 43, 0, 0, 2460, 2461, 5, 265, 0, 0, 2461, 2462, 5, 277, 0, 0, 2462, 2464, 5, 266, 0, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2524, 1, 0, 0, 0, 2465, 2469, 5, 119, 0, 0, 2466, 2467, 5, 265, 0, 0, 2467, 2468, 5, 277, 0, 0, 2468, 2470, 5, 266, 0, 0, 2469, 2466, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2524, 1, 0, 0, 0, 2471, 2475, 5, 120, 0, 0, 2472, 2473, 5, 265, 0, 0, 2473, 2474, 5, 277, 0, 0, 2474, 2476, 5, 266, 0, 0, 2475, 2472, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2524, 1, 0, 0, 0, 2477, 2524, 5, 44, 0, 0, 2478, 2524, 5, 41, 0, 0, 2479, 2480, 5, 184, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2482, 3, 320, 160, 0, 2482, 2483, 5, 82, 0, 0, 2483, 2486, 3, 320, 160, 0, 2484, 2485, 5, 78, 0, 0, 2485, 2487, 3, 320, 160, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2489, 5, 266, 0, 0, 2489, 2524, 1, 0, 0, 0, 2490, 2491, 5, 131, 0, 0, 2491, 2492, 5, 265, 0, 0, 2492, 2495, 3, 320, 160, 0, 2493, 2494, 5, 263, 0, 0, 2494, 2496, 3, 336, 168, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2524, 1, 0, 0, 0, 2499, 2500, 5, 68, 0, 0, 2500, 2501, 5, 265, 0, 0, 2501, 2502, 3, 370, 185, 0, 2502, 2503, 5, 82, 0, 0, 2503, 2504, 3, 320, 160, 0, 2504, 2505, 5, 266, 0, 0, 2505, 2524, 1, 0, 0, 0, 2506, 2507, 5, 265, 0, 0, 2507, 2508, 3, 314, 157, 0, 2508, 2509, 5, 266, 0, 0, 2509, 2524, 1, 0, 0, 0, 2510, 2511, 5, 88, 0, 0, 2511, 2520, 5, 265, 0, 0, 2512, 2517, 3, 366, 183, 0, 2513, 2514, 5, 263, 0, 0, 2514, 2516, 3, 366, 183, 0, 2515, 2513, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2520, 2512, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2524, 5, 266, 0, 0, 2523, 2277, 1, 0, 0, 0, 2523, 2279, 1, 0, 0, 0, 2523, 2280, 1, 0, 0, 0, 2523, 2283, 1, 0, 0, 0, 2523, 2285, 1, 0, 0, 0, 2523, 2286, 1, 0, 0, 0, 2523, 2287, 1, 0, 0, 0, 2523, 2288, 1, 0, 0, 0, 2523, 2289, 1, 0, 0, 0, 2523, 2290, 1, 0, 0, 0, 2523, 2297, 1, 0, 0, 0, 2523, 2316, 1, 0, 0, 0, 2523, 2328, 1, 0, 0, 0, 2523, 2338, 1, 0, 0, 0, 2523, 2372, 1, 0, 0, 0, 2523, 2376, 1, 0, 0, 0, 2523, 2390, 1, 0, 0, 0, 2523, 2394, 1, 0, 0, 0, 2523, 2399, 1, 0, 0, 0, 2523, 2412, 1, 0, 0, 0, 2523, 2424, 1, 0, 0, 0, 2523, 2431, 1, 0, 0, 0, 2523, 2438, 1, 0, 0, 0, 2523, 2451, 1, 0, 0, 0, 2523, 2452, 1, 0, 0, 0, 2523, 2453, 1, 0, 0, 0, 2523, 2459, 1, 0, 0, 0, 2523, 2465, 1, 0, 0, 0, 2523, 2471, 1, 0, 0, 0, 2523, 2477, 1, 0, 0, 0, 2523, 2478, 1, 0, 0, 0, 2523, 2479, 1, 0, 0, 0, 2523, 2490, 1, 0, 0, 0, 2523, 2499, 1, 0, 0, 0, 2523, 2506, 1, 0, 0, 0, 2523, 2510, 1, 0, 0, 0, 2524, 2535, 1, 0, 0, 0, 2525, 2526, 10, 15, 0, 0, 2526, 2527, 5, 267, 0, 0, 2527, 2528, 3, 320, 160, 0, 2528, 2529, 5, 268, 0, 0, 2529, 2534, 1, 0, 0, 0, 2530, 2531, 10, 13, 0, 0, 2531, 2532, 5, 261, 0, 0, 2532, 2534, 3, 370, 185, 0, 2533, 2525, 1, 0, 0, 0, 2533, 2530, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 323, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2545, 5, 274, 0, 0, 2539, 2542, 5, 275, 0, 0, 2540, 2541, 5, 198, 0, 0, 2541, 2543, 5, 274, 0, 0, 2542, 2540, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2538, 1, 0, 0, 0, 2544, 2539, 1, 0, 0, 0, 2545, 325, 1, 0, 0, 0, 2546, 2547, 7, 23, 0, 0, 2547, 327, 1, 0, 0, 0, 2548, 2549, 7, 24, 0, 0, 2549, 329, 1, 0, 0, 0, 2550, 2551, 7, 25, 0, 0, 2551, 331, 1, 0, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2567, 3, 334, 167, 0, 2554, 2555, 5, 265, 0, 0, 2555, 2556, 5, 277, 0, 0, 2556, 2557, 5, 266, 0, 0, 2557, 2567, 3, 334, 167, 0, 2558, 2559, 5, 101, 0, 0, 2559, 2560, 5, 277, 0, 0, 2560, 2567, 3, 334, 167, 0, 2561, 2562, 5, 101, 0, 0, 2562, 2563, 5, 265, 0, 0, 2563, 2564, 5, 277, 0, 0, 2564, 2565, 5, 266, 0, 0, 2565, 2567, 3, 334, 167, 0, 2566, 2552, 1, 0, 0, 0, 2566, 2554, 1, 0, 0, 0, 2566, 2558, 1, 0, 0, 0, 2566, 2561, 1, 0, 0, 0, 2567, 333, 1, 0, 0, 0, 2568, 2569, 7, 26, 0, 0, 2569, 335, 1, 0, 0, 0, 2570, 2571, 7, 27, 0, 0, 2571, 337, 1, 0, 0, 0, 2572, 2573, 6, 169, -1, 0, 2573, 2574, 5, 8, 0, 0, 2574, 2575, 5, 251, 0, 0, 2575, 2576, 3, 338, 169, 0, 2576, 2577, 5, 253, 0, 0, 2577, 2618, 1, 0, 0, 0, 2578, 2579, 5, 235, 0, 0, 2579, 2580, 5, 251, 0, 0, 2580, 2581, 3, 338, 169, 0, 2581, 2582, 5, 263, 0, 0, 2582, 2583, 3, 338, 169, 0, 2583, 2584, 5, 253, 0, 0, 2584, 2618, 1, 0, 0, 0, 2585, 2586, 5, 240, 0, 0, 2586, 2587, 5, 251, 0, 0, 2587, 2588, 3, 370, 185, 0, 2588, 2595, 3, 338, 169, 0, 2589, 2590, 5, 263, 0, 0, 2590, 2591, 3, 370, 185, 0, 2591, 2592, 3, 338, 169, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2589, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2599, 5, 253, 0, 0, 2599, 2618, 1, 0, 0, 0, 2600, 2603, 3, 344, 172, 0, 2601, 2603, 3, 340, 170, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2601, 1, 0, 0, 0, 2603, 2615, 1, 0, 0, 0, 2604, 2605, 5, 265, 0, 0, 2605, 2610, 3, 342, 171, 0, 2606, 2607, 5, 263, 0, 0, 2607, 2609, 3, 342, 171, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2614, 5, 266, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2604, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2618, 1, 0, 0, 0, 2617, 2572, 1, 0, 0, 0, 2617, 2578, 1, 0, 0, 0, 2617, 2585, 1, 0, 0, 0, 2617, 2602, 1, 0, 0, 0, 2618, 2623, 1, 0, 0, 0, 2619, 2620, 10, 5, 0, 0, 2620, 2622, 5, 8, 0, 0, 2621, 2619, 1, 0, 0, 0, 2622, 2625, 1, 0, 0, 0, 2623, 2621, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 339, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2627, 7, 28, 0, 0, 2627, 341, 1, 0, 0, 0, 2628, 2631, 5, 277, 0, 0, 2629, 2631, 3, 338, 169, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2629, 1, 0, 0, 0, 2631, 343, 1, 0, 0, 0, 2632, 2637, 5, 284, 0, 0, 2633, 2637, 5, 285, 0, 0, 2634, 2637, 5, 286, 0, 0, 2635, 2637, 3, 370, 185, 0, 2636, 2632, 1, 0, 0, 0, 2636, 2633, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2635, 1, 0, 0, 0, 2637, 345, 1, 0, 0, 0, 2638, 2639, 5, 214, 0, 0, 2639, 2640, 3, 314, 157, 0, 2640, 2641, 5, 192, 0, 0, 2641, 2642, 3, 314, 157, 0, 2642, 347, 1, 0, 0, 0, 2643, 2644, 5, 74, 0, 0, 2644, 2645, 5, 265, 0, 0, 2645, 2646, 3, 274, 137, 0, 2646, 2647, 5, 266, 0, 0, 2647, 349, 1, 0, 0, 0, 2648, 2653, 3, 314, 157, 0, 2649, 2650, 5, 263, 0, 0, 2650, 2652, 3, 314, 157, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2655, 1, 0, 0, 0, 2653, 2651, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 351, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2656, 2657, 5, 143, 0, 0, 2657, 2661, 5, 265, 0, 0, 2658, 2659, 5, 145, 0, 0, 2659, 2660, 5, 26, 0, 0, 2660, 2662, 3, 350, 175, 0, 2661, 2658, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2673, 1, 0, 0, 0, 2663, 2664, 5, 139, 0, 0, 2664, 2665, 5, 26, 0, 0, 2665, 2670, 3, 270, 135, 0, 2666, 2667, 5, 263, 0, 0, 2667, 2669, 3, 270, 135, 0, 2668, 2666, 1, 0, 0, 0, 2669, 2672, 1, 0, 0, 0, 2670, 2668, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2674, 1, 0, 0, 0, 2672, 2670, 1, 0, 0, 0, 2673, 2663, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2677, 3, 354, 177, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 5, 266, 0, 0, 2679, 353, 1, 0, 0, 0, 2680, 2681, 5, 154, 0, 0, 2681, 2697, 3, 356, 178, 0, 2682, 2683, 5, 169, 0, 0, 2683, 2697, 3, 356, 178, 0, 2684, 2685, 5, 154, 0, 0, 2685, 2686, 5, 15, 0, 0, 2686, 2687, 3, 356, 178, 0, 2687, 2688, 5, 5, 0, 0, 2688, 2689, 3, 356, 178, 0, 2689, 2697, 1, 0, 0, 0, 2690, 2691, 5, 169, 0, 0, 2691, 2692, 5, 15, 0, 0, 2692, 2693, 3, 356, 178, 0, 2693, 2694, 5, 5, 0, 0, 2694, 2695, 3, 356, 178, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2680, 1, 0, 0, 0, 2696, 2682, 1, 0, 0, 0, 2696, 2684, 1, 0, 0, 0, 2696, 2690, 1, 0, 0, 0, 2697, 355, 1, 0, 0, 0, 2698, 2699, 5, 199, 0, 0, 2699, 2708, 5, 149, 0, 0, 2700, 2701, 5, 199, 0, 0, 2701, 2708, 5, 77, 0, 0, 2702, 2703, 5, 39, 0, 0, 2703, 2708, 5, 168, 0, 0, 2704, 2705, 3, 314, 157, 0, 2705, 2706, 7, 29, 0, 0, 2706, 2708, 1, 0, 0, 0, 2707, 2698, 1, 0, 0, 0, 2707, 2700, 1, 0, 0, 0, 2707, 2702, 1, 0, 0, 0, 2707, 2704, 1, 0, 0, 0, 2708, 357, 1, 0, 0, 0, 2709, 2710, 3, 370, 185, 0, 2710, 2711, 5, 261, 0, 0, 2711, 2712, 3, 370, 185, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2715, 3, 370, 185, 0, 2714, 2709, 1, 0, 0, 0, 2714, 2713, 1, 0, 0, 0, 2715, 359, 1, 0, 0, 0, 2716, 2721, 3, 358, 179, 0, 2717, 2718, 5, 263, 0, 0, 2718, 2720, 3, 358, 179, 0, 2719, 2717, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 361, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2738, 5, 2, 0, 0, 2725, 2738, 5, 4, 0, 0, 2726, 2738, 5, 58, 0, 0, 2727, 2738, 5, 37, 0, 0, 2728, 2738, 5, 99, 0, 0, 2729, 2738, 5, 162, 0, 0, 2730, 2735, 5, 174, 0, 0, 2731, 2732, 5, 265, 0, 0, 2732, 2733, 3, 370, 185, 0, 2733, 2734, 5, 266, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2731, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2724, 1, 0, 0, 0, 2737, 2725, 1, 0, 0, 0, 2737, 2726, 1, 0, 0, 0, 2737, 2727, 1, 0, 0, 0, 2737, 2728, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2730, 1, 0, 0, 0, 2738, 363, 1, 0, 0, 0, 2739, 2740, 7, 30, 0, 0, 2740, 365, 1, 0, 0, 0, 2741, 2746, 3, 370, 185, 0, 2742, 2743, 5, 261, 0, 0, 2743, 2745, 3, 370, 185, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2748, 1, 0, 0, 0, 2746, 2744, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 367, 1, 0, 0, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2750, 5, 166, 0, 0, 2750, 2756, 3, 370, 185, 0, 2751, 2752, 5, 204, 0, 0, 2752, 2756, 3, 370, 185, 0, 2753, 2754, 5, 87, 0, 0, 2754, 2756, 3, 370, 185, 0, 2755, 2749, 1, 0, 0, 0, 2755, 2751, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2756, 369, 1, 0, 0, 0, 2757, 2763, 5, 280, 0, 0, 2758, 2763, 5, 274, 0, 0, 2759, 2763, 3, 376, 188, 0, 2760, 2763, 5, 283, 0, 0, 2761, 2763, 5, 281, 0, 0, 2762, 2757, 1, 0, 0, 0, 2762, 2758, 1, 0, 0, 0, 2762, 2759, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2761, 1, 0, 0, 0, 2763, 371, 1, 0, 0, 0, 2764, 2766, 5, 256, 0, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2777, 5, 278, 0, 0, 2768, 2770, 5, 256, 0, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2777, 5, 279, 0, 0, 2772, 2774, 5, 256, 0, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2777, 5, 277, 0, 0, 2776, 2765, 1, 0, 0, 0, 2776, 2769, 1, 0, 0, 0, 2776, 2773, 1, 0, 0, 0, 2777, 373, 1, 0, 0, 0, 2778, 2779, 7, 31, 0, 0, 2779, 375, 1, 0, 0, 0, 2780, 2781, 7, 32, 0, 0, 2781, 377, 1, 0, 0, 0, 353, 381, 388, 412, 425, 429, 433, 442, 447, 451, 457, 459, 464, 468, 472, 479, 484, 490, 494, 503, 510, 514, 519, 521, 526, 529, 536, 540, 545, 549, 552, 556, 564, 568, 572, 580, 584, 593, 596, 599, 605, 612, 623, 628, 633, 638, 643, 652, 655, 658, 662, 688, 714, 723, 733, 736, 750, 768, 770, 779, 790, 799, 806, 810, 817, 823, 826, 831, 838, 852, 865, 870, 875, 881, 917, 920, 926, 929, 935, 941, 953, 955, 966, 974, 979, 983, 988, 995, 999, 1003, 1009, 1013, 1017, 1026, 1029, 1032, 1040, 1054, 1061, 1074, 1080, 1085, 1088, 1091, 1096, 1100, 1109, 1114, 1120, 1124, 1128, 1133, 1136, 1144, 1147, 1150, 1162, 1165, 1168, 1173, 1177, 1193, 1198, 1205, 1208, 1214, 1217, 1224, 1227, 1231, 1236, 1239, 1246, 1249, 1273, 1287, 1291, 1295, 1315, 1317, 1319, 1328, 1330, 1339, 1341, 1350, 1352, 1357, 1366, 1375, 1384, 1395, 1401, 1406, 1409, 1422, 1432, 1436, 1441, 1452, 1457, 1490, 1498, 1503, 1507, 1513, 1518, 1521, 1526, 1531, 1536, 1540, 1549, 1552, 1556, 1563, 1572, 1576, 1580, 1587, 1590, 1600, 1607, 1612, 1617, 1622, 1628, 1631, 1640, 1643, 1646, 1652, 1657, 1667, 1670, 1673, 1677, 1687, 1690, 1696, 1702, 1705, 1708, 1712, 1722, 1733, 1738, 1741, 1745, 1752, 1762, 1774, 1780, 1782, 1791, 1794, 1801, 1811, 1817, 1825, 1836, 1846, 1857, 1859, 1865, 1870, 1880, 1883, 1889, 1891, 1899, 1905, 1908, 1910, 1922, 1929, 1933, 1937, 1941, 1944, 1951, 1960, 1963, 1966, 1971, 1974, 1983, 1990, 2001, 2004, 2008, 2012, 2021, 2024, 2031, 2045, 2049, 2053, 2057, 2061, 2065, 2069, 2073, 2083, 2094, 2099, 2112, 2114, 2120, 2124, 2126, 2134, 2141, 2146, 2159, 2165, 2173, 2180, 2184, 2192, 2194, 2205, 2213, 2222, 2228, 2233, 2239, 2245, 2250, 2255, 2261, 2272, 2274, 2301, 2307, 2311, 2323, 2333, 2336, 2341, 2348, 2351, 2360, 2363, 2367, 2370, 2382, 2385, 2404, 2408, 2416, 2420, 2445, 2448, 2457, 2463, 2469, 2475, 2486, 2495, 2517, 2520, 2523, 2533, 2535, 2542, 2544, 2566, 2595, 2602, 2610, 2615, 2617, 2623, 2630, 2636, 2653, 2661, 2670, 2673, 2676, 2696, 2707, 2714, 2721, 2735, 2737, 2746, 2755, 2762, 2765, 2769, 2773, 2776] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index 06c61db8..a07bdbb4 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -403,94 +403,98 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_viewNamePath = 94; public static readonly RULE_functionNamePath = 95; public static readonly RULE_columnNamePath = 96; - public static readonly RULE_tableOrViewPath = 97; - public static readonly RULE_createCommonItem = 98; - public static readonly RULE_assignmentList = 99; - public static readonly RULE_assignmentItem = 100; - public static readonly RULE_viewColumns = 101; - public static readonly RULE_viewColumnItem = 102; - public static readonly RULE_queryStatement = 103; - public static readonly RULE_with = 104; - public static readonly RULE_constraintSpecification = 105; - public static readonly RULE_foreignKeySpecification = 106; - public static readonly RULE_columnSpec = 107; - public static readonly RULE_columnDefinition = 108; - public static readonly RULE_kuduTableElement = 109; - public static readonly RULE_kuduColumnDefinition = 110; - public static readonly RULE_commentClause = 111; - public static readonly RULE_columnSpecWithKudu = 112; - public static readonly RULE_createColumnSpecWithKudu = 113; - public static readonly RULE_kuduAttributes = 114; - public static readonly RULE_kuduStorageAttr = 115; - public static readonly RULE_statsKey = 116; - public static readonly RULE_fileFormat = 117; - public static readonly RULE_kuduPartitionClause = 118; - public static readonly RULE_hashClause = 119; - public static readonly RULE_rangeClause = 120; - public static readonly RULE_kuduPartitionSpec = 121; - public static readonly RULE_cacheSpec = 122; - public static readonly RULE_rangeOperator = 123; - public static readonly RULE_partitionCol = 124; - public static readonly RULE_likeClause = 125; - public static readonly RULE_properties = 126; - public static readonly RULE_partitionedBy = 127; - public static readonly RULE_sortedBy = 128; - public static readonly RULE_rowFormat = 129; - public static readonly RULE_property = 130; - public static readonly RULE_queryNoWith = 131; - public static readonly RULE_queryTerm = 132; - public static readonly RULE_queryPrimary = 133; - public static readonly RULE_sortItem = 134; - public static readonly RULE_querySpecification = 135; - public static readonly RULE_groupBy = 136; - public static readonly RULE_groupingElement = 137; - public static readonly RULE_groupingSet = 138; - public static readonly RULE_namedQuery = 139; - public static readonly RULE_setQuantifier = 140; - public static readonly RULE_selectItem = 141; - public static readonly RULE_relation = 142; - public static readonly RULE_joinType = 143; - public static readonly RULE_joinCriteria = 144; - public static readonly RULE_sampledRelation = 145; - public static readonly RULE_sampleType = 146; - public static readonly RULE_aliasedRelation = 147; - public static readonly RULE_columnAliases = 148; - public static readonly RULE_relationPrimary = 149; - public static readonly RULE_subQueryRelation = 150; - public static readonly RULE_unnest = 151; - public static readonly RULE_parenthesizedRelation = 152; - public static readonly RULE_columnItem = 153; - public static readonly RULE_expression = 154; - public static readonly RULE_booleanExpression = 155; - public static readonly RULE_predicate = 156; - public static readonly RULE_valueExpression = 157; - public static readonly RULE_primaryExpression = 158; - public static readonly RULE_stringLiteral = 159; - public static readonly RULE_comparisonOperator = 160; - public static readonly RULE_comparisonQuantifier = 161; - public static readonly RULE_booleanValue = 162; - public static readonly RULE_interval = 163; - public static readonly RULE_intervalField = 164; - public static readonly RULE_normalForm = 165; - public static readonly RULE_type = 166; - public static readonly RULE_dataType = 167; - public static readonly RULE_typeParameter = 168; - public static readonly RULE_baseType = 169; - public static readonly RULE_whenClause = 170; - public static readonly RULE_filter = 171; - public static readonly RULE_over = 172; - public static readonly RULE_windowFrame = 173; - public static readonly RULE_frameBound = 174; - public static readonly RULE_pathElement = 175; - public static readonly RULE_pathSpecification = 176; - public static readonly RULE_privilege = 177; - public static readonly RULE_objectType = 178; - public static readonly RULE_qualifiedName = 179; - public static readonly RULE_principal = 180; - public static readonly RULE_identifier = 181; - public static readonly RULE_number = 182; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 183; - public static readonly RULE_nonReserved = 184; + public static readonly RULE_columnName = 97; + public static readonly RULE_tableOrViewPath = 98; + public static readonly RULE_createCommonItem = 99; + public static readonly RULE_assignmentList = 100; + public static readonly RULE_assignmentItem = 101; + public static readonly RULE_viewColumns = 102; + public static readonly RULE_viewColumnItem = 103; + public static readonly RULE_queryStatement = 104; + public static readonly RULE_with = 105; + public static readonly RULE_constraintSpecification = 106; + public static readonly RULE_foreignKeySpecification = 107; + public static readonly RULE_columnSpec = 108; + public static readonly RULE_columnDefinition = 109; + public static readonly RULE_kuduTableElement = 110; + public static readonly RULE_kuduColumnDefinition = 111; + public static readonly RULE_commentClause = 112; + public static readonly RULE_columnSpecWithKudu = 113; + public static readonly RULE_createColumnSpecWithKudu = 114; + public static readonly RULE_kuduAttributes = 115; + public static readonly RULE_kuduStorageAttr = 116; + public static readonly RULE_statsKey = 117; + public static readonly RULE_fileFormat = 118; + public static readonly RULE_kuduPartitionClause = 119; + public static readonly RULE_hashClause = 120; + public static readonly RULE_rangeClause = 121; + public static readonly RULE_kuduPartitionSpec = 122; + public static readonly RULE_cacheSpec = 123; + public static readonly RULE_rangeOperator = 124; + public static readonly RULE_partitionCol = 125; + public static readonly RULE_likeClause = 126; + public static readonly RULE_properties = 127; + public static readonly RULE_partitionedBy = 128; + public static readonly RULE_sortedBy = 129; + public static readonly RULE_rowFormat = 130; + public static readonly RULE_property = 131; + public static readonly RULE_queryNoWith = 132; + public static readonly RULE_queryTerm = 133; + public static readonly RULE_queryPrimary = 134; + public static readonly RULE_sortItem = 135; + public static readonly RULE_querySpecification = 136; + public static readonly RULE_whereClause = 137; + public static readonly RULE_havingClause = 138; + public static readonly RULE_groupBy = 139; + public static readonly RULE_groupingElement = 140; + public static readonly RULE_groupingSet = 141; + public static readonly RULE_namedQuery = 142; + public static readonly RULE_setQuantifier = 143; + public static readonly RULE_selectItem = 144; + public static readonly RULE_relation = 145; + public static readonly RULE_joinType = 146; + public static readonly RULE_joinCriteria = 147; + public static readonly RULE_sampledRelation = 148; + public static readonly RULE_sampleType = 149; + public static readonly RULE_aliasedRelation = 150; + public static readonly RULE_columnAliases = 151; + public static readonly RULE_relationPrimary = 152; + public static readonly RULE_subQueryRelation = 153; + public static readonly RULE_unnest = 154; + public static readonly RULE_parenthesizedRelation = 155; + public static readonly RULE_columnItem = 156; + public static readonly RULE_expression = 157; + public static readonly RULE_booleanExpression = 158; + public static readonly RULE_predicate = 159; + public static readonly RULE_valueExpression = 160; + public static readonly RULE_primaryExpression = 161; + public static readonly RULE_stringLiteral = 162; + public static readonly RULE_comparisonOperator = 163; + public static readonly RULE_comparisonQuantifier = 164; + public static readonly RULE_booleanValue = 165; + public static readonly RULE_interval = 166; + public static readonly RULE_intervalField = 167; + public static readonly RULE_normalForm = 168; + public static readonly RULE_type = 169; + public static readonly RULE_dataType = 170; + public static readonly RULE_typeParameter = 171; + public static readonly RULE_baseType = 172; + public static readonly RULE_whenClause = 173; + public static readonly RULE_filter = 174; + public static readonly RULE_partitionByClause = 175; + public static readonly RULE_over = 176; + public static readonly RULE_windowFrame = 177; + public static readonly RULE_frameBound = 178; + public static readonly RULE_pathElement = 179; + public static readonly RULE_pathSpecification = 180; + public static readonly RULE_privilege = 181; + public static readonly RULE_objectType = 182; + public static readonly RULE_qualifiedName = 183; + public static readonly RULE_principal = 184; + public static readonly RULE_identifier = 185; + public static readonly RULE_number = 186; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 187; + public static readonly RULE_nonReserved = 188; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -626,25 +630,26 @@ export class ImpalaSqlParser extends SQLParserBase { "ifExists", "ifNotExists", "tableNameCreate", "databaseNameCreate", "viewNameCreate", "functionNameCreate", "columnNamePathCreate", "databaseNamePath", "tableNamePath", "viewNamePath", "functionNamePath", - "columnNamePath", "tableOrViewPath", "createCommonItem", "assignmentList", - "assignmentItem", "viewColumns", "viewColumnItem", "queryStatement", - "with", "constraintSpecification", "foreignKeySpecification", "columnSpec", - "columnDefinition", "kuduTableElement", "kuduColumnDefinition", + "columnNamePath", "columnName", "tableOrViewPath", "createCommonItem", + "assignmentList", "assignmentItem", "viewColumns", "viewColumnItem", + "queryStatement", "with", "constraintSpecification", "foreignKeySpecification", + "columnSpec", "columnDefinition", "kuduTableElement", "kuduColumnDefinition", "commentClause", "columnSpecWithKudu", "createColumnSpecWithKudu", "kuduAttributes", "kuduStorageAttr", "statsKey", "fileFormat", "kuduPartitionClause", "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", "partitionCol", "likeClause", "properties", "partitionedBy", "sortedBy", "rowFormat", "property", "queryNoWith", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "groupBy", "groupingElement", - "groupingSet", "namedQuery", "setQuantifier", "selectItem", "relation", - "joinType", "joinCriteria", "sampledRelation", "sampleType", "aliasedRelation", - "columnAliases", "relationPrimary", "subQueryRelation", "unnest", - "parenthesizedRelation", "columnItem", "expression", "booleanExpression", - "predicate", "valueExpression", "primaryExpression", "stringLiteral", - "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", - "intervalField", "normalForm", "type", "dataType", "typeParameter", - "baseType", "whenClause", "filter", "over", "windowFrame", "frameBound", - "pathElement", "pathSpecification", "privilege", "objectType", "qualifiedName", + "sortItem", "querySpecification", "whereClause", "havingClause", + "groupBy", "groupingElement", "groupingSet", "namedQuery", "setQuantifier", + "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", + "sampleType", "aliasedRelation", "columnAliases", "relationPrimary", + "subQueryRelation", "unnest", "parenthesizedRelation", "columnItem", + "expression", "booleanExpression", "predicate", "valueExpression", + "primaryExpression", "stringLiteral", "comparisonOperator", "comparisonQuantifier", + "booleanValue", "interval", "intervalField", "normalForm", "type", + "dataType", "typeParameter", "baseType", "whenClause", "filter", + "partitionByClause", "over", "windowFrame", "frameBound", "pathElement", + "pathSpecification", "privilege", "objectType", "qualifiedName", "principal", "identifier", "number", "reservedKeywordsUsedAsFuncName", "nonReserved", ]; @@ -670,21 +675,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 373; + this.state = 381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 370; + this.state = 378; this.singleStatement(); } } - this.state = 375; + this.state = 383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 376; + this.state = 384; this.match(ImpalaSqlParser.EOF); } } @@ -709,14 +714,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 378; + this.state = 386; this.sqlStatement(); - this.state = 380; + this.state = 388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 379; + this.state = 387; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -741,160 +746,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 404; + this.state = 412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 382; + this.state = 390; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 383; + this.state = 391; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 384; + this.state = 392; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 385; + this.state = 393; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 386; + this.state = 394; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 387; + this.state = 395; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 388; + this.state = 396; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 389; + this.state = 397; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 390; + this.state = 398; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 391; + this.state = 399; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 392; + this.state = 400; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 393; + this.state = 401; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 394; + this.state = 402; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 395; + this.state = 403; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 396; + this.state = 404; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 397; + this.state = 405; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 398; + this.state = 406; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 399; + this.state = 407; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 400; + this.state = 408; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 401; + this.state = 409; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 402; + this.state = 410; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 403; + this.state = 411; this.refreshStatement(); } break; @@ -920,9 +925,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 406; + this.state = 414; this.match(ImpalaSqlParser.KW_USE); - this.state = 407; + this.state = 415; this.databaseNamePath(); } } @@ -944,62 +949,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 417; + this.state = 425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 409; + this.state = 417; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 410; + this.state = 418; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 411; + this.state = 419; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 412; + this.state = 420; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 413; + this.state = 421; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 414; + this.state = 422; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 415; + this.state = 423; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 416; + this.state = 424; this.createTableSelect(); } break; @@ -1027,97 +1032,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 419; + this.state = 427; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 421; + this.state = 429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 420; + this.state = 428; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 423; + this.state = 431; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 425; + this.state = 433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 424; + this.state = 432; this.ifNotExists(); } } - this.state = 427; + this.state = 435; this.tableNameCreate(); - this.state = 443; + this.state = 451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 428; + this.state = 436; this.match(ImpalaSqlParser.LPAREN); - this.state = 429; + this.state = 437; this.columnDefinition(); - this.state = 434; + this.state = 442; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 430; + this.state = 438; this.match(ImpalaSqlParser.COMMA); - this.state = 431; + this.state = 439; this.columnDefinition(); } } } - this.state = 436; + this.state = 444; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 439; + this.state = 447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 437; + this.state = 445; this.match(ImpalaSqlParser.COMMA); - this.state = 438; + this.state = 446; this.constraintSpecification(); } } - this.state = 441; + this.state = 449; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 451; + this.state = 459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 445; + this.state = 453; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 446; + this.state = 454; this.match(ImpalaSqlParser.KW_BY); - this.state = 449; + this.state = 457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 447; + this.state = 455; this.columnAliases(); } break; case 2: { - this.state = 448; + this.state = 456; this.partitionedBy(); } break; @@ -1125,16 +1130,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 453; + this.state = 461; this.createCommonItem(); - this.state = 456; + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 454; + this.state = 462; this.match(ImpalaSqlParser.KW_AS); - this.state = 455; + this.state = 463; this.queryStatement(); } } @@ -1162,35 +1167,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 458; + this.state = 466; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 460; + this.state = 468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 459; + this.state = 467; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 462; + this.state = 470; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 464; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 463; + this.state = 471; this.ifNotExists(); } } - this.state = 466; + this.state = 474; this.tableNameCreate(); - this.state = 467; + this.state = 475; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 471; + this.state = 479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1232,36 +1237,36 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 468; + this.state = 476; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 469; + this.state = 477; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 470; + this.state = 478; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 476; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 473; + this.state = 481; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 474; + this.state = 482; this.match(ImpalaSqlParser.KW_BY); - this.state = 475; + this.state = 483; this.partitionedBy(); } } - this.state = 478; + this.state = 486; this.createCommonItem(); } } @@ -1287,95 +1292,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 480; + this.state = 488; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 482; + this.state = 490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 481; + this.state = 489; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 484; + this.state = 492; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 486; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 485; + this.state = 493; this.ifNotExists(); } } - this.state = 488; + this.state = 496; this.tableNameCreate(); - this.state = 506; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 489; + this.state = 497; this.match(ImpalaSqlParser.LPAREN); - this.state = 490; + this.state = 498; this.kuduTableElement(); - this.state = 495; + this.state = 503; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 491; + this.state = 499; this.match(ImpalaSqlParser.COMMA); - this.state = 492; + this.state = 500; this.kuduTableElement(); } } } - this.state = 497; + this.state = 505; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 502; + this.state = 510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 498; + this.state = 506; this.match(ImpalaSqlParser.COMMA); - this.state = 499; + this.state = 507; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 500; + this.state = 508; this.match(ImpalaSqlParser.KW_KEY); - this.state = 501; + this.state = 509; this.columnAliases(); } } - this.state = 504; + this.state = 512; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 513; + this.state = 521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 508; + this.state = 516; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 509; + this.state = 517; this.match(ImpalaSqlParser.KW_KEY); - this.state = 511; + this.state = 519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 510; + this.state = 518; this.columnAliases(); } } @@ -1383,56 +1388,56 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 518; + this.state = 526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 515; + this.state = 523; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 516; + this.state = 524; this.match(ImpalaSqlParser.KW_BY); - this.state = 517; + this.state = 525; this.kuduPartitionClause(); } } - this.state = 521; + this.state = 529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 520; + this.state = 528; this.commentClause(); } } - this.state = 523; + this.state = 531; this.match(ImpalaSqlParser.KW_STORED); - this.state = 524; + this.state = 532; this.match(ImpalaSqlParser.KW_AS); - this.state = 525; + this.state = 533; this.match(ImpalaSqlParser.KW_KUDU); - this.state = 528; + this.state = 536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 526; + this.state = 534; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 527; + this.state = 535; localContext._tblProp = this.properties(); } } - this.state = 532; + this.state = 540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 530; + this.state = 538; this.match(ImpalaSqlParser.KW_AS); - this.state = 531; + this.state = 539; this.queryStatement(); } } @@ -1460,57 +1465,57 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 542; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 535; + this.state = 543; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 537; + this.state = 545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 536; + this.state = 544; this.ifNotExists(); } } - this.state = 539; + this.state = 547; this.viewNameCreate(); - this.state = 541; + this.state = 549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 540; + this.state = 548; this.viewColumns(); } } - this.state = 544; + this.state = 552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 543; + this.state = 551; this.commentClause(); } } - this.state = 548; + this.state = 556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 546; + this.state = 554; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 547; + this.state = 555; localContext._tblProp = this.properties(); } } - this.state = 550; + this.state = 558; this.match(ImpalaSqlParser.KW_AS); - this.state = 551; + this.state = 559; this.queryStatement(); } } @@ -1535,9 +1540,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 553; + this.state = 561; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 554; + this.state = 562; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1546,36 +1551,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 556; + this.state = 564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 555; + this.state = 563; this.ifNotExists(); } } - this.state = 558; + this.state = 566; this.databaseNameCreate(); - this.state = 560; + this.state = 568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 559; + this.state = 567; this.commentClause(); } break; } - this.state = 564; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 562; + this.state = 570; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 563; + this.state = 571; localContext._location = this.stringLiteral(); } } @@ -1602,11 +1607,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 566; + this.state = 574; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 567; + this.state = 575; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 568; + this.state = 576; localContext._name = this.identifier(); } } @@ -1631,168 +1636,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 570; + this.state = 578; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 572; + this.state = 580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 571; + this.state = 579; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 574; + this.state = 582; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 576; + this.state = 584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 575; + this.state = 583; this.ifNotExists(); } } - this.state = 578; + this.state = 586; this.functionNameCreate(); - this.state = 591; + this.state = 599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 579; + this.state = 587; this.match(ImpalaSqlParser.LPAREN); - this.state = 588; + this.state = 596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 580; + this.state = 588; this.type_(0); - this.state = 585; + this.state = 593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 581; + this.state = 589; this.match(ImpalaSqlParser.COMMA); - this.state = 582; + this.state = 590; this.type_(0); } } - this.state = 587; + this.state = 595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 590; + this.state = 598; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 593; + this.state = 601; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 594; + this.state = 602; localContext._returnType = this.type_(0); - this.state = 597; + this.state = 605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 595; + this.state = 603; this.match(ImpalaSqlParser.KW_INTERMEDIATE); - this.state = 596; + this.state = 604; this.type_(0); } } - this.state = 599; + this.state = 607; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 600; + this.state = 608; this.match(ImpalaSqlParser.STRING); - this.state = 604; + this.state = 612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 601; + this.state = 609; this.match(ImpalaSqlParser.KW_INIT_FN); - this.state = 602; + this.state = 610; this.match(ImpalaSqlParser.EQ); - this.state = 603; + this.state = 611; this.match(ImpalaSqlParser.STRING); } } - this.state = 606; + this.state = 614; this.match(ImpalaSqlParser.KW_UPDATE_FN); - this.state = 607; + this.state = 615; this.match(ImpalaSqlParser.EQ); - this.state = 608; + this.state = 616; this.match(ImpalaSqlParser.STRING); - this.state = 609; + this.state = 617; this.match(ImpalaSqlParser.KW_MERGE_FN); - this.state = 610; + this.state = 618; this.match(ImpalaSqlParser.EQ); - this.state = 611; + this.state = 619; this.match(ImpalaSqlParser.STRING); - this.state = 615; + this.state = 623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 612; + this.state = 620; this.match(ImpalaSqlParser.KW_PREPARE_FN); - this.state = 613; + this.state = 621; this.match(ImpalaSqlParser.EQ); - this.state = 614; + this.state = 622; this.match(ImpalaSqlParser.STRING); } } - this.state = 620; + this.state = 628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 617; + this.state = 625; this.match(ImpalaSqlParser.KW_CLOSEFN); - this.state = 618; + this.state = 626; this.match(ImpalaSqlParser.EQ); - this.state = 619; + this.state = 627; this.match(ImpalaSqlParser.STRING); } } - this.state = 625; + this.state = 633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 622; + this.state = 630; this.match(ImpalaSqlParser.KW_SERIALIZE_FN); - this.state = 623; + this.state = 631; this.match(ImpalaSqlParser.EQ); - this.state = 624; + this.state = 632; this.match(ImpalaSqlParser.STRING); } } - this.state = 630; + this.state = 638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 627; + this.state = 635; this.match(ImpalaSqlParser.KW_FINALIZE_FN); - this.state = 628; + this.state = 636; this.match(ImpalaSqlParser.EQ); - this.state = 629; + this.state = 637; this.match(ImpalaSqlParser.STRING); } } @@ -1820,81 +1825,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 632; + this.state = 640; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 633; + this.state = 641; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 635; + this.state = 643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 634; + this.state = 642; this.ifNotExists(); } } - this.state = 637; + this.state = 645; this.functionNameCreate(); - this.state = 650; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 638; + this.state = 646; this.match(ImpalaSqlParser.LPAREN); - this.state = 647; + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 639; + this.state = 647; this.type_(0); - this.state = 644; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 640; + this.state = 648; this.match(ImpalaSqlParser.COMMA); - this.state = 641; + this.state = 649; this.type_(0); } } - this.state = 646; + this.state = 654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 649; + this.state = 657; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 654; + this.state = 662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 652; + this.state = 660; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 653; + this.state = 661; localContext._returnType = this.type_(0); } } - this.state = 656; + this.state = 664; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 657; + this.state = 665; this.match(ImpalaSqlParser.STRING); - this.state = 658; + this.state = 666; this.match(ImpalaSqlParser.KW_SYMBOL); - this.state = 659; + this.state = 667; this.match(ImpalaSqlParser.EQ); - this.state = 660; + this.state = 668; localContext._symbol_ = this.stringLiteral(); } } @@ -1916,132 +1921,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 680; + this.state = 688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 662; + this.state = 670; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 663; + this.state = 671; this.alterUnSetOrSetViewTblproperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 664; + this.state = 672; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 665; + this.state = 673; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 666; + this.state = 674; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 667; + this.state = 675; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 668; + this.state = 676; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 669; + this.state = 677; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 670; + this.state = 678; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 671; + this.state = 679; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 672; + this.state = 680; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 673; + this.state = 681; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 674; + this.state = 682; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 675; + this.state = 683; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 676; + this.state = 684; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 677; + this.state = 685; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 678; + this.state = 686; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 679; + this.state = 687; this.alterTableOwner(); } break; @@ -2068,17 +2073,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 682; + this.state = 690; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 683; + this.state = 691; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 684; + this.state = 692; this.databaseNamePath(); - this.state = 685; + this.state = 693; this.match(ImpalaSqlParser.KW_SET); - this.state = 686; + this.state = 694; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 687; + this.state = 695; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2087,7 +2092,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 688; + this.state = 696; this.identifier(); } } @@ -2112,45 +2117,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 690; + this.state = 698; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 691; + this.state = 699; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 692; + this.state = 700; this.tableNamePath(); - this.state = 693; + this.state = 701; this.match(ImpalaSqlParser.KW_SET); - this.state = 694; + this.state = 702; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 695; + this.state = 703; this.match(ImpalaSqlParser.KW_STATS); - this.state = 696; + this.state = 704; this.columnNamePath(); - this.state = 697; + this.state = 705; this.match(ImpalaSqlParser.LPAREN); - this.state = 698; + this.state = 706; this.statsKey(); - this.state = 699; + this.state = 707; this.match(ImpalaSqlParser.EQ); - this.state = 700; + this.state = 708; this.stringLiteral(); - this.state = 706; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 701; + this.state = 709; this.match(ImpalaSqlParser.COMMA); - this.state = 702; + this.state = 710; this.statsKey(); - this.state = 703; + this.state = 711; this.match(ImpalaSqlParser.EQ); - this.state = 704; + this.state = 712; this.stringLiteral(); } } - this.state = 708; + this.state = 716; this.match(ImpalaSqlParser.RPAREN); } } @@ -2175,50 +2180,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 710; + this.state = 718; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 711; + this.state = 719; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 712; + this.state = 720; this.tableNamePath(); - this.state = 715; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 713; + this.state = 721; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 714; + this.state = 722; this.expression(); } } - this.state = 717; + this.state = 725; this.match(ImpalaSqlParser.KW_SET); - this.state = 728; + this.state = 736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 718; + this.state = 726; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 719; + this.state = 727; this.match(ImpalaSqlParser.KW_IN); - this.state = 720; + this.state = 728; this.stringLiteral(); - this.state = 725; + this.state = 733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 721; + this.state = 729; this.match(ImpalaSqlParser.KW_WITH); - this.state = 722; + this.state = 730; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 723; + this.state = 731; this.match(ImpalaSqlParser.EQ); - this.state = 724; + this.state = 732; this.number_(); } break; @@ -2228,7 +2233,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 727; + this.state = 735; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2257,17 +2262,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 730; + this.state = 738; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 731; + this.state = 739; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 732; + this.state = 740; this.tableNamePath(); - this.state = 733; + this.state = 741; this.match(ImpalaSqlParser.KW_CHANGE); - this.state = 734; + this.state = 742; this.columnNamePath(); - this.state = 735; + this.state = 743; this.columnSpecWithKudu(); } } @@ -2291,25 +2296,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 737; + this.state = 745; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 738; + this.state = 746; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 739; + this.state = 747; this.tableNamePath(); - this.state = 740; + this.state = 748; this.match(ImpalaSqlParser.KW_DROP); - this.state = 742; + this.state = 750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 741; + this.state = 749; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 744; + this.state = 752; this.columnNamePath(); } } @@ -2334,17 +2339,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 746; + this.state = 754; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 747; + this.state = 755; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 748; + this.state = 756; this.tableNamePath(); - this.state = 749; + this.state = 757; this.match(ImpalaSqlParser.KW_SET); - this.state = 750; + this.state = 758; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 751; + this.state = 759; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2353,7 +2358,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 752; + this.state = 760; this.identifier(); } } @@ -2379,31 +2384,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 762; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 755; + this.state = 763; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 756; + this.state = 764; this.tableNamePath(); - this.state = 762; + this.state = 770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 757; + this.state = 765; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 758; + this.state = 766; this.match(ImpalaSqlParser.KW_ADD); - this.state = 760; + this.state = 768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 759; + this.state = 767; this.ifNotExists(); } } @@ -2413,31 +2418,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 764; + this.state = 772; this.match(ImpalaSqlParser.KW_COLUMNS); - this.state = 765; + this.state = 773; this.match(ImpalaSqlParser.LPAREN); - this.state = 766; + this.state = 774; this.columnSpecWithKudu(); - this.state = 771; + this.state = 779; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 767; + this.state = 775; this.match(ImpalaSqlParser.COMMA); - this.state = 768; + this.state = 776; this.columnSpecWithKudu(); } } } - this.state = 773; + this.state = 781; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 774; + this.state = 782; this.match(ImpalaSqlParser.RPAREN); } } @@ -2462,27 +2467,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 776; + this.state = 784; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 777; + this.state = 785; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 778; + this.state = 786; this.tableNamePath(); - this.state = 779; + this.state = 787; this.match(ImpalaSqlParser.KW_ADD); - this.state = 780; + this.state = 788; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 782; + this.state = 790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 781; + this.state = 789; this.ifNotExists(); } } - this.state = 784; + this.state = 792; this.createColumnSpecWithKudu(); } } @@ -2506,34 +2511,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 786; + this.state = 794; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 787; + this.state = 795; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 788; + this.state = 796; this.tableNamePath(); - this.state = 789; + this.state = 797; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 791; + this.state = 799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 790; + this.state = 798; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 793; + this.state = 801; this.columnNamePath(); - this.state = 802; + this.state = 810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 794; + this.state = 802; this.match(ImpalaSqlParser.KW_SET); - this.state = 798; + this.state = 806; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2541,15 +2546,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 795; + this.state = 803; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 796; + this.state = 804; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 797; + this.state = 805; this.stringLiteral(); } break; @@ -2560,9 +2565,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 800; + this.state = 808; this.match(ImpalaSqlParser.KW_DROP); - this.state = 801; + this.state = 809; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2592,51 +2597,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 804; + this.state = 812; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 805; + this.state = 813; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 806; + this.state = 814; this.tableNamePath(); - this.state = 807; + this.state = 815; this.match(ImpalaSqlParser.KW_ADD); - this.state = 809; + this.state = 817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 808; + this.state = 816; this.ifNotExists(); } } - this.state = 823; + this.state = 831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 811; + this.state = 819; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 812; + this.state = 820; this.expression(); - this.state = 815; + this.state = 823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 813; + this.state = 821; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 814; + this.state = 822; this.stringLiteral(); } } - this.state = 818; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 197) { { - this.state = 817; + this.state = 825; this.cacheSpec(); } } @@ -2645,11 +2650,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 820; + this.state = 828; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 821; + this.state = 829; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 822; + this.state = 830; this.kuduPartitionSpec(); } break; @@ -2679,35 +2684,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 825; + this.state = 833; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 826; + this.state = 834; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 827; + this.state = 835; this.tableNamePath(); - this.state = 830; + this.state = 838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 828; + this.state = 836; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 829; + this.state = 837; this.expression(); } } - this.state = 832; + this.state = 840; this.match(ImpalaSqlParser.KW_SET); - this.state = 844; + this.state = 852; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 833; + this.state = 841; this.match(ImpalaSqlParser.KW_FILEFORMAT); - this.state = 834; + this.state = 842; this.fileFormat(); } } @@ -2715,11 +2720,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 835; + this.state = 843; this.match(ImpalaSqlParser.KW_ROW); - this.state = 836; + this.state = 844; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 837; + this.state = 845; this.rowFormat(); } } @@ -2727,9 +2732,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 838; + this.state = 846; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 839; + this.state = 847; this.stringLiteral(); } } @@ -2737,9 +2742,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 840; + this.state = 848; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 841; + this.state = 849; localContext._tblProp = this.properties(); } } @@ -2747,9 +2752,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 842; + this.state = 850; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 843; + this.state = 851; localContext._tblProp = this.properties(); } } @@ -2779,15 +2784,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 854; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 847; + this.state = 855; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 848; + this.state = 856; this.tableNamePath(); - this.state = 849; + this.state = 857; this.match(ImpalaSqlParser.KW_RECOVER); - this.state = 850; + this.state = 858; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2812,39 +2817,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 852; + this.state = 860; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 853; + this.state = 861; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 854; + this.state = 862; this.tableNamePath(); - this.state = 855; + this.state = 863; this.match(ImpalaSqlParser.KW_DROP); - this.state = 857; + this.state = 865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 856; + this.state = 864; this.ifExists(); } } - this.state = 867; + this.state = 875; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 859; + this.state = 867; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 860; + this.state = 868; this.expression(); - this.state = 862; + this.state = 870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 861; + this.state = 869; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2853,11 +2858,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 864; + this.state = 872; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 865; + this.state = 873; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 866; + this.state = 874; this.kuduPartitionSpec(); } break; @@ -2887,25 +2892,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 869; + this.state = 877; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 870; + this.state = 878; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 871; + this.state = 879; this.viewNamePath(); - this.state = 873; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 872; + this.state = 880; this.viewColumns(); } } - this.state = 875; + this.state = 883; this.match(ImpalaSqlParser.KW_AS); - this.state = 876; + this.state = 884; this.queryStatement(); } } @@ -2929,17 +2934,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 878; + this.state = 886; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 879; + this.state = 887; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 880; + this.state = 888; this.viewNamePath(); - this.state = 881; + this.state = 889; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 882; + this.state = 890; this.match(ImpalaSqlParser.KW_TO); - this.state = 883; + this.state = 891; this.viewNamePath(); } } @@ -2964,17 +2969,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 885; + this.state = 893; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 886; + this.state = 894; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 887; + this.state = 895; this.viewNamePath(); - this.state = 888; + this.state = 896; this.match(ImpalaSqlParser.KW_SET); - this.state = 889; + this.state = 897; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 890; + this.state = 898; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2983,7 +2988,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 891; + this.state = 899; this.qualifiedName(); } } @@ -3007,17 +3012,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 893; + this.state = 901; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 894; + this.state = 902; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 895; + this.state = 903; this.tableNamePath(); - this.state = 896; + this.state = 904; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 897; + this.state = 905; this.match(ImpalaSqlParser.KW_TO); - this.state = 898; + this.state = 906; this.tableNamePath(); } } @@ -3042,13 +3047,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 908; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 901; + this.state = 909; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 902; + this.state = 910; this.viewNamePath(); - this.state = 903; + this.state = 911; _la = this.tokenStream.LA(1); if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); @@ -3057,9 +3062,9 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 904; + this.state = 912; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 905; + this.state = 913; localContext._tblProp = this.properties(); } } @@ -3084,29 +3089,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 915; this.match(ImpalaSqlParser.KW_TRUNCATE); - this.state = 909; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 908; + this.state = 916; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 912; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 911; + this.state = 919; this.ifExists(); } } - this.state = 914; + this.state = 922; this.tableNamePath(); } } @@ -3131,24 +3136,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 924; this.match(ImpalaSqlParser.KW_DESCRIBE); - this.state = 918; + this.state = 926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 917; + this.state = 925; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 921; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 920; + this.state = 928; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3160,7 +3165,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 923; + this.state = 931; this.qualifiedName(); } } @@ -3182,20 +3187,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 927; + this.state = 935; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 933; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 926; + this.state = 934; this.computeIncrementalStats(); } break; @@ -3222,49 +3227,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 929; + this.state = 937; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 930; + this.state = 938; this.match(ImpalaSqlParser.KW_STATS); - this.state = 931; + this.state = 939; this.tableNamePath(); - this.state = 933; + this.state = 941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 932; + this.state = 940; this.columnAliases(); } break; } - this.state = 947; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 935; + this.state = 943; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 936; + this.state = 944; this.match(ImpalaSqlParser.KW_SYSTEM); - this.state = 937; + this.state = 945; this.match(ImpalaSqlParser.LPAREN); - this.state = 938; + this.state = 946; this.number_(); - this.state = 939; + this.state = 947; this.match(ImpalaSqlParser.RPAREN); - this.state = 945; + this.state = 953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 157) { { - this.state = 940; + this.state = 948; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 941; + this.state = 949; this.match(ImpalaSqlParser.LPAREN); - this.state = 942; + this.state = 950; this.number_(); - this.state = 943; + this.state = 951; this.match(ImpalaSqlParser.RPAREN); } } @@ -3295,26 +3300,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 949; + this.state = 957; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 950; + this.state = 958; this.match(ImpalaSqlParser.KW_INCREMENTAL); - this.state = 951; + this.state = 959; this.match(ImpalaSqlParser.KW_STATS); - this.state = 952; + this.state = 960; this.tableNamePath(); - this.state = 958; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 953; + this.state = 961; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 954; + this.state = 962; this.match(ImpalaSqlParser.LPAREN); - this.state = 955; + this.state = 963; this.expression(); - this.state = 956; + this.state = 964; this.match(ImpalaSqlParser.RPAREN); } } @@ -3339,48 +3344,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 966; + this.state = 974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 960; + this.state = 968; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 961; + this.state = 969; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 962; + this.state = 970; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 963; + this.state = 971; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 964; + this.state = 972; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 965; + this.state = 973; this.dropSchema(); } break; @@ -3407,9 +3412,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 976; this.match(ImpalaSqlParser.KW_DROP); - this.state = 969; + this.state = 977; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -3418,24 +3423,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 971; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 970; + this.state = 978; this.ifExists(); } } - this.state = 973; + this.state = 981; this.databaseNamePath(); - this.state = 975; + this.state = 983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27 || _la === 159) { { - this.state = 974; + this.state = 982; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -3470,21 +3475,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 985; this.match(ImpalaSqlParser.KW_DROP); - this.state = 978; + this.state = 986; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 980; + this.state = 988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 979; + this.state = 987; this.ifExists(); } } - this.state = 982; + this.state = 990; this.viewNamePath(); } } @@ -3509,28 +3514,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 984; + this.state = 992; this.match(ImpalaSqlParser.KW_DROP); - this.state = 985; + this.state = 993; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 987; + this.state = 995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 986; + this.state = 994; this.ifExists(); } } - this.state = 989; + this.state = 997; this.tableNamePath(); - this.state = 991; + this.state = 999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 990; + this.state = 998; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3558,30 +3563,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 993; + this.state = 1001; this.match(ImpalaSqlParser.KW_DROP); - this.state = 995; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 994; + this.state = 1002; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 997; + this.state = 1005; this.match(ImpalaSqlParser.KW_STATS); - this.state = 998; + this.state = 1006; this.tableNamePath(); - this.state = 1001; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 999; + this.state = 1007; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1000; + this.state = 1008; this.expression(); } } @@ -3609,66 +3614,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1003; + this.state = 1011; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1005; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1004; + this.state = 1012; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1007; + this.state = 1015; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1009; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1008; + this.state = 1016; this.ifExists(); } } - this.state = 1011; + this.state = 1019; this.functionNamePath(); - this.state = 1024; + this.state = 1032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1012; + this.state = 1020; this.match(ImpalaSqlParser.LPAREN); - this.state = 1021; + this.state = 1029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1013; + this.state = 1021; this.type_(0); - this.state = 1018; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1014; + this.state = 1022; this.match(ImpalaSqlParser.COMMA); - this.state = 1015; + this.state = 1023; this.type_(0); } } - this.state = 1020; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1023; + this.state = 1031; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3695,11 +3700,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1026; + this.state = 1034; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1027; + this.state = 1035; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1028; + this.state = 1036; localContext._name = this.identifier(); } } @@ -3721,20 +3726,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1032; + this.state = 1040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1030; + this.state = 1038; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1031; + this.state = 1039; this.grant(); } break; @@ -3760,17 +3765,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1034; + this.state = 1042; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1035; + this.state = 1043; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1036; + this.state = 1044; this.identifier(); - this.state = 1037; + this.state = 1045; this.match(ImpalaSqlParser.KW_TO); - this.state = 1038; + this.state = 1046; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1039; + this.state = 1047; this.identifier(); } } @@ -3795,27 +3800,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1041; + this.state = 1049; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1042; + this.state = 1050; this.privilege(); - this.state = 1043; + this.state = 1051; this.match(ImpalaSqlParser.KW_ON); - this.state = 1044; + this.state = 1052; this.objectType(); - this.state = 1046; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1045; + this.state = 1053; this.qualifiedName(); } } - this.state = 1048; + this.state = 1056; this.match(ImpalaSqlParser.KW_TO); - this.state = 1049; + this.state = 1057; localContext._grantee = this.principal(); } } @@ -3837,20 +3842,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1053; + this.state = 1061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1051; + this.state = 1059; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1052; + this.state = 1060; this.revoke(); } break; @@ -3876,17 +3881,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1055; + this.state = 1063; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1056; + this.state = 1064; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1057; + this.state = 1065; this.identifier(); - this.state = 1058; + this.state = 1066; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1059; + this.state = 1067; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1060; + this.state = 1068; this.identifier(); } } @@ -3911,62 +3916,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1070; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1066; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1063; + this.state = 1071; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1064; + this.state = 1072; this.match(ImpalaSqlParser.KW_OPTION); - this.state = 1065; + this.state = 1073; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1068; + this.state = 1076; this.privilege(); - this.state = 1069; + this.state = 1077; this.match(ImpalaSqlParser.KW_ON); - this.state = 1070; + this.state = 1078; this.objectType(); - this.state = 1072; + this.state = 1080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1071; + this.state = 1079; this.qualifiedName(); } } - this.state = 1074; + this.state = 1082; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1080; + this.state = 1088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1075; + this.state = 1083; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1077; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1076; + this.state = 1084; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1079; + this.state = 1087; this.identifier(); } break; @@ -3994,19 +3999,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1083; + this.state = 1091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1082; + this.state = 1090; this.with_(); } } - this.state = 1085; + this.state = 1093; this.match(ImpalaSqlParser.KW_INSERT); - this.state = 1086; + this.state = 1094; _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); @@ -4015,61 +4020,61 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1087; + this.state = 1095; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1090; + this.state = 1098; this.tableNamePath(); - this.state = 1092; + this.state = 1100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1091; + this.state = 1099; this.columnAliases(); } break; } - this.state = 1106; + this.state = 1114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1094; + this.state = 1102; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1095; + this.state = 1103; this.match(ImpalaSqlParser.LPAREN); - this.state = 1096; + this.state = 1104; this.expression(); - this.state = 1101; + this.state = 1109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1097; + this.state = 1105; this.match(ImpalaSqlParser.COMMA); - this.state = 1098; + this.state = 1106; this.expression(); } } - this.state = 1103; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1104; + this.state = 1112; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1108; + this.state = 1116; this.queryStatement(); } } @@ -4091,20 +4096,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1112; + this.state = 1120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1110; + this.state = 1118; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1111; + this.state = 1119; this.deleteTableRef(); } break; @@ -4131,29 +4136,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1114; + this.state = 1122; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1116; + this.state = 1124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1115; + this.state = 1123; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1118; + this.state = 1126; this.tableNamePath(); - this.state = 1121; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1119; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1120; - this.booleanExpression(0); + this.state = 1127; + this.whereClause(); } } @@ -4180,67 +4183,65 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1130; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1124; + this.state = 1131; this.tableNamePath(); - this.state = 1129; + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1126; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1125; + this.state = 1132; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1128; + this.state = 1135; this.identifier(); } } - this.state = 1131; + this.state = 1138; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1140; + this.state = 1147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1132; + this.state = 1139; this.relation(0); - this.state = 1137; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1133; + this.state = 1140; this.match(ImpalaSqlParser.COMMA); - this.state = 1134; + this.state = 1141; this.relation(0); } } - this.state = 1139; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1144; + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1142; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1143; - this.booleanExpression(0); + this.state = 1149; + this.whereClause(); } } @@ -4267,51 +4268,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1146; + this.state = 1152; this.match(ImpalaSqlParser.KW_UPDATE); - this.state = 1147; + this.state = 1153; this.tableNamePath(); - this.state = 1148; + this.state = 1154; this.match(ImpalaSqlParser.KW_SET); - this.state = 1149; + this.state = 1155; this.assignmentList(); - this.state = 1159; + this.state = 1165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1150; + this.state = 1156; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1151; + this.state = 1157; this.relation(0); - this.state = 1156; + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1152; + this.state = 1158; this.match(ImpalaSqlParser.COMMA); - this.state = 1153; + this.state = 1159; this.relation(0); } } - this.state = 1158; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1163; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1161; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1162; - this.booleanExpression(0); + this.state = 1167; + this.whereClause(); } } @@ -4338,33 +4337,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1165; + this.state = 1170; this.match(ImpalaSqlParser.KW_UPSERT); - this.state = 1166; + this.state = 1171; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1168; + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1167; + this.state = 1172; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1170; + this.state = 1175; this.tableNamePath(); - this.state = 1172; + this.state = 1177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1171; + this.state = 1176; this.columnAliases(); } break; } - this.state = 1174; + this.state = 1179; this.queryStatement(); } } @@ -4386,90 +4385,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1188; + this.state = 1193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1176; + this.state = 1181; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1177; + this.state = 1182; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1178; + this.state = 1183; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1179; + this.state = 1184; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1180; + this.state = 1185; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1181; + this.state = 1186; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1182; + this.state = 1187; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1183; + this.state = 1188; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1184; + this.state = 1189; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1185; + this.state = 1190; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1186; + this.state = 1191; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1187; + this.state = 1192; this.showSchemas(); } break; @@ -4496,9 +4495,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1190; + this.state = 1195; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1191; + this.state = 1196; _la = this.tokenStream.LA(1); if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -4507,36 +4506,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1193; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1192; + this.state = 1197; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1195; - localContext._pattern = this.stringLiteral(); this.state = 1200; + localContext._pattern = this.stringLiteral(); + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1196; + this.state = 1201; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1197; + this.state = 1202; this.stringLiteral(); } } - this.state = 1202; + this.state = 1207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4566,52 +4565,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1205; + this.state = 1210; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1206; + this.state = 1211; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1209; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1207; + this.state = 1212; this.match(ImpalaSqlParser.KW_IN); - this.state = 1208; + this.state = 1213; this.tableNamePath(); } } - this.state = 1222; + this.state = 1227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1212; + this.state = 1217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1211; + this.state = 1216; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1214; - localContext._pattern = this.stringLiteral(); this.state = 1219; + localContext._pattern = this.stringLiteral(); + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1215; + this.state = 1220; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1216; + this.state = 1221; this.stringLiteral(); } } - this.state = 1221; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4641,14 +4640,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1224; + this.state = 1229; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1226; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1225; + this.state = 1230; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4660,50 +4659,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1228; + this.state = 1233; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1231; + this.state = 1236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1229; + this.state = 1234; this.match(ImpalaSqlParser.KW_IN); - this.state = 1230; + this.state = 1235; this.databaseNamePath(); } } - this.state = 1244; + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1234; + this.state = 1239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1233; + this.state = 1238; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1236; - localContext._pattern = this.stringLiteral(); this.state = 1241; + localContext._pattern = this.stringLiteral(); + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1237; + this.state = 1242; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1238; + this.state = 1243; this.stringLiteral(); } } - this.state = 1243; + this.state = 1248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4732,13 +4731,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1246; + this.state = 1251; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1247; + this.state = 1252; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1248; + this.state = 1253; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1249; + this.state = 1254; this.tableNamePath(); } } @@ -4762,13 +4761,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1251; + this.state = 1256; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1252; + this.state = 1257; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1258; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1254; + this.state = 1259; this.viewNamePath(); } } @@ -4792,13 +4791,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1256; + this.state = 1261; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1257; + this.state = 1262; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1258; + this.state = 1263; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1259; + this.state = 1264; this.tableNamePath(); } } @@ -4822,13 +4821,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1261; + this.state = 1266; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1262; + this.state = 1267; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1263; + this.state = 1268; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1264; + this.state = 1269; this.tableNamePath(); } } @@ -4853,21 +4852,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1271; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1268; + this.state = 1273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1267; + this.state = 1272; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1270; + this.state = 1275; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1271; + this.state = 1276; this.tableNamePath(); } } @@ -4892,38 +4891,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1273; + this.state = 1278; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1274; + this.state = 1279; this.match(ImpalaSqlParser.KW_FILES); - this.state = 1275; + this.state = 1280; this.match(ImpalaSqlParser.KW_IN); - this.state = 1276; + this.state = 1281; this.tableNamePath(); - this.state = 1286; + this.state = 1291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1277; + this.state = 1282; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1278; + this.state = 1283; this.match(ImpalaSqlParser.LPAREN); - this.state = 1279; + this.state = 1284; this.expression(); - this.state = 1282; + this.state = 1287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1280; + this.state = 1285; this.match(ImpalaSqlParser.COMMA); - this.state = 1281; + this.state = 1286; this.expression(); } } - this.state = 1284; + this.state = 1289; this.match(ImpalaSqlParser.RPAREN); } } @@ -4951,19 +4950,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1288; + this.state = 1293; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1290; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1289; + this.state = 1294; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1292; + this.state = 1297; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4987,15 +4986,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1299; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1295; + this.state = 1300; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1296; + this.state = 1301; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1297; + this.state = 1302; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1298; + this.state = 1303; this.identifier(); } } @@ -5018,38 +5017,38 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1314; + this.state = 1319; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1300; + this.state = 1305; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1301; + this.state = 1306; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1302; + this.state = 1307; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1303; + this.state = 1308; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1304; + this.state = 1309; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1305; + this.state = 1310; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5058,16 +5057,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1306; + this.state = 1311; this.identifier(); - this.state = 1312; + this.state = 1317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1307; + this.state = 1312; this.match(ImpalaSqlParser.KW_ON); - this.state = 1308; + this.state = 1313; _la = this.tokenStream.LA(1); if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -5076,12 +5075,12 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1310; + this.state = 1315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1309; + this.state = 1314; this.qualifiedName(); } } @@ -5114,11 +5113,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1316; + this.state = 1321; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1317; + this.state = 1322; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1318; + this.state = 1323; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5127,23 +5126,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1319; + this.state = 1324; this.identifier(); - this.state = 1325; + this.state = 1330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1320; + this.state = 1325; this.match(ImpalaSqlParser.KW_ON); - this.state = 1321; + this.state = 1326; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1323; + this.state = 1328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1322; + this.state = 1327; this.databaseNamePath(); } } @@ -5174,11 +5173,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1332; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1328; + this.state = 1333; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1329; + this.state = 1334; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5187,23 +5186,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1330; + this.state = 1335; this.identifier(); - this.state = 1336; + this.state = 1341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1331; + this.state = 1336; this.match(ImpalaSqlParser.KW_ON); - this.state = 1332; + this.state = 1337; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1334; + this.state = 1339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1333; + this.state = 1338; this.tableNamePath(); } } @@ -5234,11 +5233,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1338; + this.state = 1343; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1339; + this.state = 1344; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1340; + this.state = 1345; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5247,23 +5246,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1346; this.identifier(); - this.state = 1347; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1342; + this.state = 1347; this.match(ImpalaSqlParser.KW_ON); - this.state = 1343; + this.state = 1348; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1345; + this.state = 1350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1344; + this.state = 1349; this.columnNamePath(); } break; @@ -5291,27 +5290,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1352; + this.state = 1357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1354; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1350; + this.state = 1355; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1351; + this.state = 1356; this.addColumnComments(); } break; @@ -5337,29 +5336,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1354; + this.state = 1359; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1355; + this.state = 1360; this.match(ImpalaSqlParser.KW_ON); - this.state = 1356; + this.state = 1361; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1357; + this.state = 1362; this.databaseNamePath(); - this.state = 1358; + this.state = 1363; this.match(ImpalaSqlParser.KW_IS); - this.state = 1361; + this.state = 1366; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1359; + this.state = 1364; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1360; + this.state = 1365; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5388,29 +5387,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1368; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1364; + this.state = 1369; this.match(ImpalaSqlParser.KW_ON); - this.state = 1365; + this.state = 1370; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1366; + this.state = 1371; this.tableNamePath(); - this.state = 1367; + this.state = 1372; this.match(ImpalaSqlParser.KW_IS); - this.state = 1370; + this.state = 1375; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1368; + this.state = 1373; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1369; + this.state = 1374; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5439,29 +5438,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1372; + this.state = 1377; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1373; + this.state = 1378; this.match(ImpalaSqlParser.KW_ON); - this.state = 1374; + this.state = 1379; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1375; + this.state = 1380; this.columnNamePath(); - this.state = 1376; + this.state = 1381; this.match(ImpalaSqlParser.KW_IS); - this.state = 1379; + this.state = 1384; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1377; + this.state = 1382; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1378; + this.state = 1383; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5490,9 +5489,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1381; + this.state = 1386; this.match(ImpalaSqlParser.KW_EXPLAIN); - this.state = 1382; + this.state = 1387; this.sqlStatement(); } } @@ -5516,14 +5515,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1389; this.match(ImpalaSqlParser.KW_SET); - this.state = 1390; + this.state = 1395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1385; + this.state = 1390; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5566,11 +5565,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1386; + this.state = 1391; this.identifier(); - this.state = 1387; + this.state = 1392; this.match(ImpalaSqlParser.EQ); - this.state = 1388; + this.state = 1393; this.expression(); } break; @@ -5629,23 +5628,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1397; this.match(ImpalaSqlParser.COLON); - this.state = 1393; + this.state = 1398; this.match(ImpalaSqlParser.KW_SHUTDOWN); - this.state = 1394; + this.state = 1399; this.match(ImpalaSqlParser.LPAREN); - this.state = 1404; + this.state = 1409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1396; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274 || _la === 275) { { - this.state = 1395; + this.state = 1400; this.stringLiteral(); } } @@ -5654,16 +5653,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1398; + this.state = 1403; this.stringLiteral(); - this.state = 1401; + this.state = 1406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1399; + this.state = 1404; this.match(ImpalaSqlParser.COMMA); - this.state = 1400; + this.state = 1405; this.expression(); } } @@ -5672,12 +5671,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1403; + this.state = 1408; this.expression(); } break; } - this.state = 1406; + this.state = 1411; this.match(ImpalaSqlParser.RPAREN); } } @@ -5701,11 +5700,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1413; this.match(ImpalaSqlParser.KW_INVALIDATE); - this.state = 1409; + this.state = 1414; this.match(ImpalaSqlParser.KW_METADATA); - this.state = 1410; + this.state = 1415; this.tableNamePath(); } } @@ -5730,54 +5729,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1412; + this.state = 1417; this.match(ImpalaSqlParser.KW_LOAD); - this.state = 1413; + this.state = 1418; this.match(ImpalaSqlParser.KW_DATA); - this.state = 1414; + this.state = 1419; this.match(ImpalaSqlParser.KW_INPATH); - this.state = 1415; + this.state = 1420; this.match(ImpalaSqlParser.STRING); - this.state = 1417; + this.state = 1422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 1416; + this.state = 1421; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1419; + this.state = 1424; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1420; + this.state = 1425; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1421; + this.state = 1426; this.tableNamePath(); - this.state = 1431; + this.state = 1436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1422; + this.state = 1427; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1423; + this.state = 1428; this.match(ImpalaSqlParser.LPAREN); - this.state = 1424; + this.state = 1429; this.expression(); - this.state = 1427; + this.state = 1432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1425; + this.state = 1430; this.match(ImpalaSqlParser.COMMA); - this.state = 1426; + this.state = 1431; this.expression(); } } - this.state = 1429; + this.state = 1434; this.match(ImpalaSqlParser.RPAREN); } } @@ -5802,27 +5801,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1436; + this.state = 1441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1433; + this.state = 1438; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1434; + this.state = 1439; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1435; + this.state = 1440; this.refreshFunction(); } break; @@ -5850,40 +5849,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1438; + this.state = 1443; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1439; + this.state = 1444; this.tableNamePath(); - this.state = 1452; + this.state = 1457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1440; + this.state = 1445; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1441; + this.state = 1446; this.match(ImpalaSqlParser.LPAREN); - this.state = 1442; - this.expression(); this.state = 1447; + this.expression(); + this.state = 1452; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1443; + this.state = 1448; this.match(ImpalaSqlParser.COMMA); - this.state = 1444; + this.state = 1449; this.expression(); } } } - this.state = 1449; + this.state = 1454; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1450; + this.state = 1455; this.match(ImpalaSqlParser.RPAREN); } } @@ -5910,9 +5909,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1459; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1455; + this.state = 1460; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5936,11 +5935,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1462; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1458; + this.state = 1463; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1459; + this.state = 1464; this.functionNamePath(); } } @@ -5964,9 +5963,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1466; this.match(ImpalaSqlParser.KW_IF); - this.state = 1462; + this.state = 1467; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5990,11 +5989,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1469; this.match(ImpalaSqlParser.KW_IF); - this.state = 1465; + this.state = 1470; this.match(ImpalaSqlParser.KW_NOT); - this.state = 1466; + this.state = 1471; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -6018,7 +6017,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1473; this.qualifiedName(); } } @@ -6042,7 +6041,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1475; this.qualifiedName(); } } @@ -6066,7 +6065,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1477; this.qualifiedName(); } } @@ -6090,7 +6089,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1474; + this.state = 1479; this.qualifiedName(); } } @@ -6114,7 +6113,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1476; + this.state = 1481; this.qualifiedName(); } } @@ -6138,7 +6137,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1478; + this.state = 1483; this.qualifiedName(); } } @@ -6163,23 +6162,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1480; - this.identifier(); this.state = 1485; + this.identifier(); + this.state = 1490; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1481; + this.state = 1486; this.match(ImpalaSqlParser.DOT); - this.state = 1482; + this.state = 1487; this.identifier(); } } } - this.state = 1487; + this.state = 1492; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6206,23 +6205,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1488; - this.identifier(); this.state = 1493; + this.identifier(); + this.state = 1498; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1489; + this.state = 1494; this.match(ImpalaSqlParser.DOT); - this.state = 1490; + this.state = 1495; this.identifier(); } } } - this.state = 1495; + this.state = 1500; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6246,20 +6245,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1498; + this.state = 1503; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1496; + this.state = 1501; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1497; + this.state = 1502; this.qualifiedName(); } break; @@ -6283,20 +6282,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.state = 1502; + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1500; + this.state = 1505; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1501; + this.state = 1506; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6318,24 +6317,48 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public columnName(): ColumnNameContext { + let localContext = new ColumnNameContext(this.context, this.state); + this.enterRule(localContext, 194, ImpalaSqlParser.RULE_columnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1509; + this.qualifiedName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public tableOrViewPath(): TableOrViewPathContext { let localContext = new TableOrViewPathContext(this.context, this.state); - this.enterRule(localContext, 194, ImpalaSqlParser.RULE_tableOrViewPath); + this.enterRule(localContext, 196, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1506; + this.state = 1513; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1504; + this.state = 1511; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1505; + this.state = 1512; this.viewNamePath(); } break; @@ -6357,112 +6380,112 @@ export class ImpalaSqlParser extends SQLParserBase { } public createCommonItem(): CreateCommonItemContext { let localContext = new CreateCommonItemContext(this.context, this.state); - this.enterRule(localContext, 196, ImpalaSqlParser.RULE_createCommonItem); + this.enterRule(localContext, 198, ImpalaSqlParser.RULE_createCommonItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1511; + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1508; + this.state = 1515; this.match(ImpalaSqlParser.KW_SORT); - this.state = 1509; + this.state = 1516; this.match(ImpalaSqlParser.KW_BY); - this.state = 1510; + this.state = 1517; this.columnAliases(); } } - this.state = 1514; + this.state = 1521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1513; + this.state = 1520; this.commentClause(); } break; } - this.state = 1519; + this.state = 1526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1516; + this.state = 1523; this.match(ImpalaSqlParser.KW_ROW); - this.state = 1517; + this.state = 1524; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 1518; + this.state = 1525; this.rowFormat(); } } - this.state = 1524; + this.state = 1531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1521; + this.state = 1528; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1522; + this.state = 1529; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 1523; + this.state = 1530; localContext._serdProp = this.properties(); } break; } - this.state = 1529; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1526; + this.state = 1533; this.match(ImpalaSqlParser.KW_STORED); - this.state = 1527; + this.state = 1534; this.match(ImpalaSqlParser.KW_AS); - this.state = 1528; + this.state = 1535; this.fileFormat(); } } - this.state = 1533; + this.state = 1540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1531; + this.state = 1538; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1532; + this.state = 1539; localContext._location = this.stringLiteral(); } } - this.state = 1545; + this.state = 1552; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1535; + this.state = 1542; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1536; + this.state = 1543; this.match(ImpalaSqlParser.KW_IN); - this.state = 1537; + this.state = 1544; localContext._cacheName = this.qualifiedName(); - this.state = 1542; + this.state = 1549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1538; + this.state = 1545; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1539; + this.state = 1546; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1540; + this.state = 1547; this.match(ImpalaSqlParser.EQ); - this.state = 1541; + this.state = 1548; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6471,7 +6494,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1544; + this.state = 1551; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6509,14 +6532,14 @@ export class ImpalaSqlParser extends SQLParserBase { default: break; } - this.state = 1549; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1547; + this.state = 1554; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1548; + this.state = 1555; localContext._tblProp = this.properties(); } } @@ -6539,26 +6562,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 198, ImpalaSqlParser.RULE_assignmentList); + this.enterRule(localContext, 200, ImpalaSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1551; + this.state = 1558; this.assignmentItem(); - this.state = 1556; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1552; + this.state = 1559; this.match(ImpalaSqlParser.COMMA); - this.state = 1553; + this.state = 1560; this.assignmentItem(); } } - this.state = 1558; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6580,15 +6603,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public assignmentItem(): AssignmentItemContext { let localContext = new AssignmentItemContext(this.context, this.state); - this.enterRule(localContext, 200, ImpalaSqlParser.RULE_assignmentItem); + this.enterRule(localContext, 202, ImpalaSqlParser.RULE_assignmentItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 1559; + this.state = 1566; this.qualifiedName(); - this.state = 1560; + this.state = 1567; this.match(ImpalaSqlParser.EQ); - this.state = 1561; + this.state = 1568; this.expression(); } } @@ -6608,48 +6631,48 @@ export class ImpalaSqlParser extends SQLParserBase { } public viewColumns(): ViewColumnsContext { let localContext = new ViewColumnsContext(this.context, this.state); - this.enterRule(localContext, 202, ImpalaSqlParser.RULE_viewColumns); + this.enterRule(localContext, 204, ImpalaSqlParser.RULE_viewColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1570; this.match(ImpalaSqlParser.LPAREN); - this.state = 1565; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1564; + this.state = 1571; this.viewColumnItem(); } } - this.state = 1573; + this.state = 1580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1567; + this.state = 1574; this.match(ImpalaSqlParser.COMMA); - this.state = 1569; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1568; + this.state = 1575; this.viewColumnItem(); } } } } - this.state = 1575; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1576; + this.state = 1583; this.match(ImpalaSqlParser.RPAREN); } } @@ -6669,19 +6692,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public viewColumnItem(): ViewColumnItemContext { let localContext = new ViewColumnItemContext(this.context, this.state); - this.enterRule(localContext, 204, ImpalaSqlParser.RULE_viewColumnItem); + this.enterRule(localContext, 206, ImpalaSqlParser.RULE_viewColumnItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1585; this.columnNamePathCreate(); - this.state = 1580; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1579; + this.state = 1586; this.commentClause(); } } @@ -6704,22 +6727,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryStatement(): QueryStatementContext { let localContext = new QueryStatementContext(this.context, this.state); - this.enterRule(localContext, 206, ImpalaSqlParser.RULE_queryStatement); + this.enterRule(localContext, 208, ImpalaSqlParser.RULE_queryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1583; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1582; + this.state = 1589; this.with_(); } } - this.state = 1585; + this.state = 1592; this.queryNoWith(); } } @@ -6739,28 +6762,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public with_(): WithContext { let localContext = new WithContext(this.context, this.state); - this.enterRule(localContext, 208, ImpalaSqlParser.RULE_with); + this.enterRule(localContext, 210, ImpalaSqlParser.RULE_with); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1587; + this.state = 1594; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1588; + this.state = 1595; this.namedQuery(); - this.state = 1593; + this.state = 1600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1589; + this.state = 1596; this.match(ImpalaSqlParser.COMMA); - this.state = 1590; + this.state = 1597; this.namedQuery(); } } - this.state = 1595; + this.state = 1602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6782,104 +6805,104 @@ export class ImpalaSqlParser extends SQLParserBase { } public constraintSpecification(): ConstraintSpecificationContext { let localContext = new ConstraintSpecificationContext(this.context, this.state); - this.enterRule(localContext, 210, ImpalaSqlParser.RULE_constraintSpecification); + this.enterRule(localContext, 212, ImpalaSqlParser.RULE_constraintSpecification); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1603; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1597; + this.state = 1604; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1598; + this.state = 1605; this.columnAliases(); - this.state = 1600; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1599; + this.state = 1606; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1605; + this.state = 1612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1602; + this.state = 1609; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; case 2: { - this.state = 1603; + this.state = 1610; this.match(ImpalaSqlParser.COMMA); - this.state = 1604; + this.state = 1611; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; } - this.state = 1610; + this.state = 1617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1607; + this.state = 1614; this.match(ImpalaSqlParser.KW_RELY); } break; case 2: { - this.state = 1608; + this.state = 1615; this.match(ImpalaSqlParser.COMMA); - this.state = 1609; + this.state = 1616; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1624; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 263) { { - this.state = 1615; + this.state = 1622; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1612; + this.state = 1619; this.match(ImpalaSqlParser.COMMA); - this.state = 1613; + this.state = 1620; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1614; + this.state = 1621; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1621; + this.state = 1628; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1617; + this.state = 1624; this.match(ImpalaSqlParser.COMMA); - this.state = 1618; + this.state = 1625; this.foreignKeySpecification(); } } } - this.state = 1623; + this.state = 1630; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); } @@ -6904,49 +6927,49 @@ export class ImpalaSqlParser extends SQLParserBase { } public foreignKeySpecification(): ForeignKeySpecificationContext { let localContext = new ForeignKeySpecificationContext(this.context, this.state); - this.enterRule(localContext, 212, ImpalaSqlParser.RULE_foreignKeySpecification); + this.enterRule(localContext, 214, ImpalaSqlParser.RULE_foreignKeySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1626; + this.state = 1633; this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1627; + this.state = 1634; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1628; + this.state = 1635; this.columnAliases(); - this.state = 1629; + this.state = 1636; this.match(ImpalaSqlParser.KW_REFERENCES); - this.state = 1630; + this.state = 1637; this.tableNamePath(); - this.state = 1631; + this.state = 1638; this.columnAliases(); - this.state = 1633; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1632; + this.state = 1639; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1636; + this.state = 1643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 1635; + this.state = 1642; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1639; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 226) { { - this.state = 1638; + this.state = 1645; this.match(ImpalaSqlParser.KW_RELY); } } @@ -6969,22 +6992,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpec(): ColumnSpecContext { let localContext = new ColumnSpecContext(this.context, this.state); - this.enterRule(localContext, 214, ImpalaSqlParser.RULE_columnSpec); + this.enterRule(localContext, 216, ImpalaSqlParser.RULE_columnSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1648; this.columnNamePath(); - this.state = 1642; + this.state = 1649; this.type_(0); - this.state = 1645; + this.state = 1652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1643; + this.state = 1650; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1644; + this.state = 1651; this.stringLiteral(); } break; @@ -7007,21 +7030,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnDefinition(): ColumnDefinitionContext { let localContext = new ColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 216, ImpalaSqlParser.RULE_columnDefinition); + this.enterRule(localContext, 218, ImpalaSqlParser.RULE_columnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1654; this.columnNamePathCreate(); - this.state = 1648; + this.state = 1655; localContext._colType = this.type_(0); - this.state = 1650; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1649; + this.state = 1656; this.commentClause(); } } @@ -7044,11 +7067,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduTableElement(): KuduTableElementContext { let localContext = new KuduTableElementContext(this.context, this.state); - this.enterRule(localContext, 218, ImpalaSqlParser.RULE_kuduTableElement); + this.enterRule(localContext, 220, ImpalaSqlParser.RULE_kuduTableElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1659; this.kuduColumnDefinition(); } } @@ -7068,60 +7091,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduColumnDefinition(): KuduColumnDefinitionContext { let localContext = new KuduColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 220, ImpalaSqlParser.RULE_kuduColumnDefinition); + this.enterRule(localContext, 222, ImpalaSqlParser.RULE_kuduColumnDefinition); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1661; this.columnNamePathCreate(); - this.state = 1655; + this.state = 1662; localContext._colType = this.type_(0); - this.state = 1663; + this.state = 1670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1656; + this.state = 1663; this.kuduAttributes(); - this.state = 1660; + this.state = 1667; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1657; + this.state = 1664; this.kuduAttributes(); } } } - this.state = 1662; + this.state = 1669; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } } } - this.state = 1666; + this.state = 1673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1665; + this.state = 1672; this.commentClause(); } } - this.state = 1670; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1668; + this.state = 1675; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1669; + this.state = 1676; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7144,13 +7167,13 @@ export class ImpalaSqlParser extends SQLParserBase { } public commentClause(): CommentClauseContext { let localContext = new CommentClauseContext(this.context, this.state); - this.enterRule(localContext, 222, ImpalaSqlParser.RULE_commentClause); + this.enterRule(localContext, 224, ImpalaSqlParser.RULE_commentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1672; + this.state = 1679; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1673; + this.state = 1680; localContext._comment = this.stringLiteral(); } } @@ -7170,34 +7193,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpecWithKudu(): ColumnSpecWithKuduContext { let localContext = new ColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 224, ImpalaSqlParser.RULE_columnSpecWithKudu); + this.enterRule(localContext, 226, ImpalaSqlParser.RULE_columnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1682; this.columnSpec(); - this.state = 1683; + this.state = 1690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1676; + this.state = 1683; this.kuduAttributes(); - this.state = 1680; + this.state = 1687; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1677; + this.state = 1684; this.kuduAttributes(); } } } - this.state = 1682; + this.state = 1689; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } @@ -7222,48 +7245,48 @@ export class ImpalaSqlParser extends SQLParserBase { } public createColumnSpecWithKudu(): CreateColumnSpecWithKuduContext { let localContext = new CreateColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 226, ImpalaSqlParser.RULE_createColumnSpecWithKudu); + this.enterRule(localContext, 228, ImpalaSqlParser.RULE_createColumnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1685; + this.state = 1692; this.columnNamePathCreate(); - this.state = 1686; + this.state = 1693; this.type_(0); - this.state = 1689; + this.state = 1696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1687; + this.state = 1694; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1688; + this.state = 1695; this.stringLiteral(); } break; } - this.state = 1698; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1691; + this.state = 1698; this.kuduAttributes(); - this.state = 1695; + this.state = 1702; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1692; + this.state = 1699; this.kuduAttributes(); } } } - this.state = 1697; + this.state = 1704; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } @@ -7288,28 +7311,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduAttributes(): KuduAttributesContext { let localContext = new KuduAttributesContext(this.context, this.state); - this.enterRule(localContext, 228, ImpalaSqlParser.RULE_kuduAttributes); + this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduAttributes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1705; + this.state = 1712; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1701; + this.state = 1708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1700; + this.state = 1707; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1703; + this.state = 1710; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7318,7 +7341,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1704; + this.state = 1711; this.kuduStorageAttr(); } break; @@ -7343,44 +7366,44 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduStorageAttr(): KuduStorageAttrContext { let localContext = new KuduStorageAttrContext(this.context, this.state); - this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduStorageAttr); + this.enterRule(localContext, 232, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1715; + this.state = 1722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1714; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1708; + this.state = 1715; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1709; + this.state = 1716; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1710; + this.state = 1717; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1711; + this.state = 1718; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1712; + this.state = 1719; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1713; + this.state = 1720; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1714; + this.state = 1721; this.number_(); } break; @@ -7404,12 +7427,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public statsKey(): StatsKeyContext { let localContext = new StatsKeyContext(this.context, this.state); - this.enterRule(localContext, 232, ImpalaSqlParser.RULE_statsKey); + this.enterRule(localContext, 234, ImpalaSqlParser.RULE_statsKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1724; _la = this.tokenStream.LA(1); if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7436,12 +7459,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 234, ImpalaSqlParser.RULE_fileFormat); + this.enterRule(localContext, 236, ImpalaSqlParser.RULE_fileFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1726; _la = this.tokenStream.LA(1); if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7468,45 +7491,45 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionClause(): KuduPartitionClauseContext { let localContext = new KuduPartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 236, ImpalaSqlParser.RULE_kuduPartitionClause); + this.enterRule(localContext, 238, ImpalaSqlParser.RULE_kuduPartitionClause); let _la: number; try { let alternative: number; - this.state = 1734; + this.state = 1741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1721; + this.state = 1728; this.hashClause(); - this.state = 1726; + this.state = 1733; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1722; + this.state = 1729; this.match(ImpalaSqlParser.COMMA); - this.state = 1723; + this.state = 1730; this.hashClause(); } } } - this.state = 1728; + this.state = 1735; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1731; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1729; + this.state = 1736; this.match(ImpalaSqlParser.COMMA); - this.state = 1730; + this.state = 1737; this.rangeClause(); } } @@ -7517,7 +7540,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1733; + this.state = 1740; this.rangeClause(); } break; @@ -7541,26 +7564,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public hashClause(): HashClauseContext { let localContext = new HashClauseContext(this.context, this.state); - this.enterRule(localContext, 238, ImpalaSqlParser.RULE_hashClause); + this.enterRule(localContext, 240, ImpalaSqlParser.RULE_hashClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1736; + this.state = 1743; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1738; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1737; + this.state = 1744; this.columnAliases(); } } - this.state = 1740; + this.state = 1747; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1741; + this.state = 1748; this.number_(); } } @@ -7580,52 +7603,52 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeClause(): RangeClauseContext { let localContext = new RangeClauseContext(this.context, this.state); - this.enterRule(localContext, 240, ImpalaSqlParser.RULE_rangeClause); + this.enterRule(localContext, 242, ImpalaSqlParser.RULE_rangeClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1750; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1745; + this.state = 1752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1744; + this.state = 1751; this.columnAliases(); } break; } - this.state = 1747; + this.state = 1754; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1748; + this.state = 1755; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1749; + this.state = 1756; this.kuduPartitionSpec(); - this.state = 1755; + this.state = 1762; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1750; + this.state = 1757; this.match(ImpalaSqlParser.COMMA); - this.state = 1751; + this.state = 1758; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1752; + this.state = 1759; this.kuduPartitionSpec(); } } } - this.state = 1757; + this.state = 1764; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1758; + this.state = 1765; this.match(ImpalaSqlParser.RPAREN); } } @@ -7645,20 +7668,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionSpec(): KuduPartitionSpecContext { let localContext = new KuduPartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 242, ImpalaSqlParser.RULE_kuduPartitionSpec); + this.enterRule(localContext, 244, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1775; + this.state = 1782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1760; + this.state = 1767; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1761; + this.state = 1768; this.partitionCol(); - this.state = 1762; + this.state = 1769; this.expression(); } break; @@ -7734,28 +7757,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1767; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1764; + this.state = 1771; this.expression(); - this.state = 1765; + this.state = 1772; this.rangeOperator(); } } - this.state = 1769; + this.state = 1776; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1773; + this.state = 1780; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1770; + this.state = 1777; this.rangeOperator(); - this.state = 1771; + this.state = 1778; this.expression(); } break; @@ -7782,32 +7805,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public cacheSpec(): CacheSpecContext { let localContext = new CacheSpecContext(this.context, this.state); - this.enterRule(localContext, 244, ImpalaSqlParser.RULE_cacheSpec); + this.enterRule(localContext, 246, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1787; + this.state = 1794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1777; + this.state = 1784; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1778; + this.state = 1785; this.match(ImpalaSqlParser.KW_IN); - this.state = 1779; + this.state = 1786; this.identifier(); - this.state = 1784; + this.state = 1791; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1780; + this.state = 1787; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1781; + this.state = 1788; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1782; + this.state = 1789; this.match(ImpalaSqlParser.EQ); - this.state = 1783; + this.state = 1790; this.number_(); } break; @@ -7817,7 +7840,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1786; + this.state = 1793; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7841,9 +7864,9 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeOperator(): RangeOperatorContext { let localContext = new RangeOperatorContext(this.context, this.state); - this.enterRule(localContext, 246, ImpalaSqlParser.RULE_rangeOperator); + this.enterRule(localContext, 248, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1794; + this.state = 1801; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7924,28 +7947,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1790; + this.state = 1797; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1791; + this.state = 1798; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1792; + this.state = 1799; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1793; + this.state = 1800; this.match(ImpalaSqlParser.GTE); } break; @@ -7969,57 +7992,57 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionCol(): PartitionColContext { let localContext = new PartitionColContext(this.context, this.state); - this.enterRule(localContext, 248, ImpalaSqlParser.RULE_partitionCol); + this.enterRule(localContext, 250, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1804; + this.state = 1811; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1803; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1797; + this.state = 1804; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1798; + this.state = 1805; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1799; + this.state = 1806; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1800; + this.state = 1807; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1801; + this.state = 1808; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1802; + this.state = 1809; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8098,7 +8121,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1803; + this.state = 1810; this.rangeOperator(); } break; @@ -8122,21 +8145,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public likeClause(): LikeClauseContext { let localContext = new LikeClauseContext(this.context, this.state); - this.enterRule(localContext, 250, ImpalaSqlParser.RULE_likeClause); + this.enterRule(localContext, 252, ImpalaSqlParser.RULE_likeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1813; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1807; + this.state = 1814; this.qualifiedName(); - this.state = 1810; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1808; + this.state = 1815; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8146,7 +8169,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1809; + this.state = 1816; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8169,32 +8192,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public properties(): PropertiesContext { let localContext = new PropertiesContext(this.context, this.state); - this.enterRule(localContext, 252, ImpalaSqlParser.RULE_properties); + this.enterRule(localContext, 254, ImpalaSqlParser.RULE_properties); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1819; this.match(ImpalaSqlParser.LPAREN); - this.state = 1813; + this.state = 1820; this.property(); - this.state = 1818; + this.state = 1825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1814; + this.state = 1821; this.match(ImpalaSqlParser.COMMA); - this.state = 1815; + this.state = 1822; this.property(); } } - this.state = 1820; + this.state = 1827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1821; + this.state = 1828; this.match(ImpalaSqlParser.RPAREN); } } @@ -8214,34 +8237,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionedBy(): PartitionedByContext { let localContext = new PartitionedByContext(this.context, this.state); - this.enterRule(localContext, 254, ImpalaSqlParser.RULE_partitionedBy); + this.enterRule(localContext, 256, ImpalaSqlParser.RULE_partitionedBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1823; + this.state = 1830; this.match(ImpalaSqlParser.LPAREN); - this.state = 1824; + this.state = 1831; this.columnSpec(); - this.state = 1829; + this.state = 1836; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1825; + this.state = 1832; this.match(ImpalaSqlParser.COMMA); - this.state = 1826; + this.state = 1833; this.columnSpec(); } } } - this.state = 1831; + this.state = 1838; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1832; + this.state = 1839; this.match(ImpalaSqlParser.RPAREN); } } @@ -8261,26 +8284,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortedBy(): SortedByContext { let localContext = new SortedByContext(this.context, this.state); - this.enterRule(localContext, 256, ImpalaSqlParser.RULE_sortedBy); + this.enterRule(localContext, 258, ImpalaSqlParser.RULE_sortedBy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1834; + this.state = 1841; this.expression(); - this.state = 1839; + this.state = 1846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1835; + this.state = 1842; this.match(ImpalaSqlParser.COMMA); - this.state = 1836; + this.state = 1843; this.expression(); } } - this.state = 1841; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8302,36 +8325,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 258, ImpalaSqlParser.RULE_rowFormat); + this.enterRule(localContext, 260, ImpalaSqlParser.RULE_rowFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1849; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1852; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1843; + this.state = 1850; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1844; + this.state = 1851; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1845; + this.state = 1852; this.match(ImpalaSqlParser.KW_BY); - this.state = 1846; + this.state = 1853; this.stringLiteral(); - this.state = 1850; + this.state = 1857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1847; + this.state = 1854; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1848; + this.state = 1855; this.match(ImpalaSqlParser.KW_BY); - this.state = 1849; + this.state = 1856; this.stringLiteral(); } } @@ -8339,18 +8362,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1858; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1854; + this.state = 1861; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1855; + this.state = 1862; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1856; + this.state = 1863; this.match(ImpalaSqlParser.KW_BY); - this.state = 1857; + this.state = 1864; this.stringLiteral(); } } @@ -8373,21 +8396,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 260, ImpalaSqlParser.RULE_property); + this.enterRule(localContext, 262, ImpalaSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1860; + this.state = 1867; this.identifier(); - this.state = 1863; + this.state = 1870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1861; + this.state = 1868; this.match(ImpalaSqlParser.EQ); - this.state = 1862; + this.state = 1869; this.expression(); } } @@ -8410,60 +8433,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryNoWith(): QueryNoWithContext { let localContext = new QueryNoWithContext(this.context, this.state); - this.enterRule(localContext, 262, ImpalaSqlParser.RULE_queryNoWith); + this.enterRule(localContext, 264, ImpalaSqlParser.RULE_queryNoWith); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1872; this.queryTerm(0); - this.state = 1876; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 1866; + this.state = 1873; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1867; + this.state = 1874; this.match(ImpalaSqlParser.KW_BY); - this.state = 1868; + this.state = 1875; this.sortItem(); - this.state = 1873; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1869; + this.state = 1876; this.match(ImpalaSqlParser.COMMA); - this.state = 1870; + this.state = 1877; this.sortItem(); } } - this.state = 1875; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1884; + this.state = 1891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1878; + this.state = 1885; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1879; + this.state = 1886; localContext._rows = this.expression(); - this.state = 1882; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1880; + this.state = 1887; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1881; + this.state = 1888; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8499,8 +8522,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 264; - this.enterRecursionRule(localContext, 264, ImpalaSqlParser.RULE_queryTerm, _p); + let _startState = 266; + this.enterRecursionRule(localContext, 266, ImpalaSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; @@ -8511,11 +8534,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1887; + this.state = 1894; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1903; + this.state = 1910; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8525,7 +8548,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1901; + this.state = 1908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: @@ -8533,23 +8556,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1889; + this.state = 1896; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1890; + this.state = 1897; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1892; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1891; + this.state = 1898; this.setQuantifier(); } } - this.state = 1894; + this.state = 1901; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8558,11 +8581,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1895; + this.state = 1902; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1896; + this.state = 1903; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 200)) { @@ -8572,24 +8595,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1898; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1897; + this.state = 1904; this.setQuantifier(); } } - this.state = 1900; + this.state = 1907; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1905; + this.state = 1912; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } @@ -8611,17 +8634,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 266, ImpalaSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 268, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1922; + this.state = 1929; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1913; this.querySpecification(); } break; @@ -8629,9 +8652,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1907; + this.state = 1914; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1908; + this.state = 1915; this.tableNamePath(); } break; @@ -8639,25 +8662,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1909; + this.state = 1916; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1910; + this.state = 1917; this.expression(); - this.state = 1915; + this.state = 1922; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1911; + this.state = 1918; this.match(ImpalaSqlParser.COMMA); - this.state = 1912; + this.state = 1919; this.expression(); } } } - this.state = 1917; + this.state = 1924; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } @@ -8667,11 +8690,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1918; + this.state = 1925; this.match(ImpalaSqlParser.LPAREN); - this.state = 1919; + this.state = 1926; this.queryNoWith(); - this.state = 1920; + this.state = 1927; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8695,19 +8718,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 268, ImpalaSqlParser.RULE_sortItem); + this.enterRule(localContext, 270, ImpalaSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1924; + this.state = 1931; this.columnItem(); - this.state = 1926; + this.state = 1933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1925; + this.state = 1932; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8720,14 +8743,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1930; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1928; + this.state = 1935; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1929; + this.state = 1936; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8758,118 +8781,114 @@ export class ImpalaSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 270, ImpalaSqlParser.RULE_querySpecification); + this.enterRule(localContext, 272, ImpalaSqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1932; + this.state = 1939; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1934; + this.state = 1941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1933; + this.state = 1940; this.setQuantifier(); } break; } - this.state = 1937; + this.state = 1944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1936; + this.state = 1943; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1939; + this.state = 1946; this.selectItem(); - this.state = 1944; + this.state = 1951; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1940; + this.state = 1947; this.match(ImpalaSqlParser.COMMA); - this.state = 1941; + this.state = 1948; this.selectItem(); } } } - this.state = 1946; + this.state = 1953; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } - this.state = 1956; + this.state = 1963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1947; + this.state = 1954; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1948; + this.state = 1955; this.relation(0); - this.state = 1953; + this.state = 1960; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1949; + this.state = 1956; this.match(ImpalaSqlParser.COMMA); - this.state = 1950; + this.state = 1957; this.relation(0); } } } - this.state = 1955; + this.state = 1962; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); } } break; } - this.state = 1960; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1958; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1959; - localContext._where = this.booleanExpression(0); + this.state = 1965; + this.whereClause(); } break; } - this.state = 1965; + this.state = 1971; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1962; + this.state = 1968; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1963; + this.state = 1969; this.match(ImpalaSqlParser.KW_BY); - this.state = 1964; + this.state = 1970; this.groupBy(); } break; } - this.state = 1969; + this.state = 1974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1967; - this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1968; - localContext._having = this.booleanExpression(0); + this.state = 1973; + this.havingClause(); } break; } @@ -8889,40 +8908,92 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1976; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1977; + localContext._where = this.booleanExpression(0); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_havingClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1979; + this.match(ImpalaSqlParser.KW_HAVING); + this.state = 1980; + localContext._having = this.booleanExpression(0); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupBy); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1972; + this.state = 1983; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1971; + this.state = 1982; this.setQuantifier(); } break; } - this.state = 1974; + this.state = 1985; this.groupingElement(); - this.state = 1979; + this.state = 1990; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1975; + this.state = 1986; this.match(ImpalaSqlParser.COMMA); - this.state = 1976; + this.state = 1987; this.groupingElement(); } } } - this.state = 1981; + this.state = 1992; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } @@ -8944,12 +9015,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 280, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1982; + this.state = 1993; this.groupingSet(); } } @@ -8969,51 +9040,51 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1997; + this.state = 2008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1984; + this.state = 1995; this.match(ImpalaSqlParser.LPAREN); - this.state = 1993; + this.state = 2004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1985; + this.state = 1996; this.columnItem(); - this.state = 1990; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1986; + this.state = 1997; this.match(ImpalaSqlParser.COMMA); - this.state = 1987; + this.state = 1998; this.columnItem(); } } - this.state = 1992; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1995; + this.state = 2006; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1996; + this.state = 2007; this.columnItem(); } break; @@ -9035,26 +9106,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 278, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 284, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1999; + this.state = 2010; localContext._name = this.identifier(); - this.state = 2001; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2000; + this.state = 2011; this.columnAliases(); } } - this.state = 2003; + this.state = 2014; this.match(ImpalaSqlParser.KW_AS); - this.state = 2004; + this.state = 2015; this.subQueryRelation(); } } @@ -9074,12 +9145,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 280, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2017; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9106,34 +9177,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_selectItem); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_selectItem); let _la: number; try { - this.state = 2020; + this.state = 2031; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 2019; this.columnItem(); - this.state = 2013; + this.state = 2024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2010; + this.state = 2021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2009; + this.state = 2020; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2012; + this.state = 2023; this.identifier(); } break; @@ -9144,11 +9215,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2015; + this.state = 2026; this.qualifiedName(); - this.state = 2016; + this.state = 2027; this.match(ImpalaSqlParser.DOT); - this.state = 2017; + this.state = 2028; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9156,7 +9227,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2019; + this.state = 2030; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9188,8 +9259,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, ImpalaSqlParser.RULE_relation, _p); + let _startState = 290; + this.enterRecursionRule(localContext, 290, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9199,11 +9270,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2023; + this.state = 2034; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2038; + this.state = 2049; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9217,20 +9288,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2025; + this.state = 2036; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2034; + this.state = 2045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2026; + this.state = 2037; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2027; + this.state = 2038; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2028; + this.state = 2039; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9240,13 +9311,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2029; + this.state = 2040; this.joinType(); - this.state = 2030; + this.state = 2041; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2031; + this.state = 2042; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2032; + this.state = 2043; this.joinCriteria(); } break; @@ -9256,7 +9327,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2040; + this.state = 2051; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); } @@ -9278,21 +9349,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2072; + this.state = 2083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 2053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2041; + this.state = 2052; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9302,14 +9373,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2044; + this.state = 2055; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2046; + this.state = 2057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2045; + this.state = 2056; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9319,14 +9390,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2048; + this.state = 2059; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2050; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2049; + this.state = 2060; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9336,14 +9407,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2052; + this.state = 2063; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2054; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2053; + this.state = 2064; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9353,14 +9424,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2056; + this.state = 2067; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2058; + this.state = 2069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2057; + this.state = 2068; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9370,14 +9441,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2060; + this.state = 2071; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2062; + this.state = 2073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2061; + this.state = 2072; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9387,36 +9458,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2064; + this.state = 2075; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2065; + this.state = 2076; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2066; + this.state = 2077; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2067; + this.state = 2078; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2068; + this.state = 2079; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2069; + this.state = 2080; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2070; + this.state = 2081; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2071; + this.state = 2082; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9438,47 +9509,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 294, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2088; + this.state = 2099; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2074; + this.state = 2085; this.match(ImpalaSqlParser.KW_ON); - this.state = 2075; + this.state = 2086; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2076; + this.state = 2087; this.match(ImpalaSqlParser.KW_USING); - this.state = 2077; + this.state = 2088; this.match(ImpalaSqlParser.LPAREN); - this.state = 2078; + this.state = 2089; this.identifier(); - this.state = 2083; + this.state = 2094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2079; + this.state = 2090; this.match(ImpalaSqlParser.COMMA); - this.state = 2080; + this.state = 2091; this.identifier(); } } - this.state = 2085; + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2086; + this.state = 2097; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9502,39 +9573,39 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 290, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 296, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2101; this.aliasedRelation(); - this.state = 2103; + this.state = 2114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2091; + this.state = 2102; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2092; + this.state = 2103; this.sampleType(); - this.state = 2093; + this.state = 2104; this.match(ImpalaSqlParser.LPAREN); - this.state = 2094; + this.state = 2105; localContext._percentage = this.expression(); - this.state = 2095; + this.state = 2106; this.match(ImpalaSqlParser.RPAREN); - this.state = 2101; + this.state = 2112; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2096; + this.state = 2107; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2097; + this.state = 2108; this.match(ImpalaSqlParser.LPAREN); - this.state = 2098; + this.state = 2109; localContext._seed = this.expression(); - this.state = 2099; + this.state = 2110; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9560,12 +9631,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 298, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2105; + this.state = 2116; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9592,36 +9663,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 294, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 300, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2107; + this.state = 2118; this.relationPrimary(); - this.state = 2115; + this.state = 2126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2109; + this.state = 2120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2108; + this.state = 2119; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2111; + this.state = 2122; localContext._alias = this.identifier(); - this.state = 2113; + this.state = 2124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2112; + this.state = 2123; this.columnAliases(); } break; @@ -9647,32 +9718,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 296, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 302, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2128; this.match(ImpalaSqlParser.LPAREN); - this.state = 2118; + this.state = 2129; this.columnNamePath(); - this.state = 2123; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2119; + this.state = 2130; this.match(ImpalaSqlParser.COMMA); - this.state = 2120; + this.state = 2131; this.columnNamePath(); } } - this.state = 2125; + this.state = 2136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2126; + this.state = 2137; this.match(ImpalaSqlParser.RPAREN); } } @@ -9692,47 +9763,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 298, ImpalaSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 304, ImpalaSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 2135; + this.state = 2146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2128; + this.state = 2139; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2130; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2129; + this.state = 2140; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2132; + this.state = 2143; this.subQueryRelation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2133; + this.state = 2144; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2134; + this.state = 2145; this.parenthesizedRelation(); } break; @@ -9754,15 +9825,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public subQueryRelation(): SubQueryRelationContext { let localContext = new SubQueryRelationContext(this.context, this.state); - this.enterRule(localContext, 300, ImpalaSqlParser.RULE_subQueryRelation); + this.enterRule(localContext, 306, ImpalaSqlParser.RULE_subQueryRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2148; this.match(ImpalaSqlParser.LPAREN); - this.state = 2138; + this.state = 2149; this.queryStatement(); - this.state = 2139; + this.state = 2150; this.match(ImpalaSqlParser.RPAREN); } } @@ -9782,43 +9853,43 @@ export class ImpalaSqlParser extends SQLParserBase { } public unnest(): UnnestContext { let localContext = new UnnestContext(this.context, this.state); - this.enterRule(localContext, 302, ImpalaSqlParser.RULE_unnest); + this.enterRule(localContext, 308, ImpalaSqlParser.RULE_unnest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2152; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2142; + this.state = 2153; this.match(ImpalaSqlParser.LPAREN); - this.state = 2143; + this.state = 2154; this.expression(); - this.state = 2148; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2144; + this.state = 2155; this.match(ImpalaSqlParser.COMMA); - this.state = 2145; + this.state = 2156; this.expression(); } } - this.state = 2150; + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2151; + this.state = 2162; this.match(ImpalaSqlParser.RPAREN); - this.state = 2154; + this.state = 2165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2152; + this.state = 2163; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2153; + this.state = 2164; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9841,15 +9912,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public parenthesizedRelation(): ParenthesizedRelationContext { let localContext = new ParenthesizedRelationContext(this.context, this.state); - this.enterRule(localContext, 304, ImpalaSqlParser.RULE_parenthesizedRelation); + this.enterRule(localContext, 310, ImpalaSqlParser.RULE_parenthesizedRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2156; + this.state = 2167; this.match(ImpalaSqlParser.LPAREN); - this.state = 2157; + this.state = 2168; this.relation(0); - this.state = 2158; + this.state = 2169; this.match(ImpalaSqlParser.RPAREN); } } @@ -9869,22 +9940,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnItem(): ColumnItemContext { let localContext = new ColumnItemContext(this.context, this.state); - this.enterRule(localContext, 306, ImpalaSqlParser.RULE_columnItem); + this.enterRule(localContext, 312, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2162; + this.state = 2173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2171; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2172; this.expression(); } break; @@ -9906,11 +9977,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 308, ImpalaSqlParser.RULE_expression); + this.enterRule(localContext, 314, ImpalaSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2175; this.booleanExpression(0); } } @@ -9940,13 +10011,13 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 310; - this.enterRecursionRule(localContext, 310, ImpalaSqlParser.RULE_booleanExpression, _p); + let _startState = 316; + this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2184; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -10022,14 +10093,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2167; + this.state = 2178; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2169; + this.state = 2180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2168; + this.state = 2179; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -10041,9 +10112,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2171; + this.state = 2182; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2172; + this.state = 2183; this.booleanExpression(3); } break; @@ -10051,7 +10122,7 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2183; + this.state = 2194; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10061,7 +10132,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2181; + this.state = 2192; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: @@ -10069,13 +10140,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2175; + this.state = 2186; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2176; + this.state = 2187; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2177; + this.state = 2188; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10084,20 +10155,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2178; + this.state = 2189; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2179; + this.state = 2190; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2180; + this.state = 2191; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2185; + this.state = 2196; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } @@ -10119,19 +10190,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 312, ImpalaSqlParser.RULE_predicate); + this.enterRule(localContext, 318, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2244; + this.state = 2255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2197; this.comparisonOperator(); - this.state = 2187; + this.state = 2198; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10139,11 +10210,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2200; this.comparisonOperator(); - this.state = 2190; + this.state = 2201; this.comparisonQuantifier(); - this.state = 2191; + this.state = 2202; this.subQueryRelation(); } break; @@ -10151,23 +10222,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2194; + this.state = 2205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2193; + this.state = 2204; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2196; + this.state = 2207; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2197; + this.state = 2208; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2198; + this.state = 2209; this.match(ImpalaSqlParser.KW_AND); - this.state = 2199; + this.state = 2210; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10175,39 +10246,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2202; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2201; + this.state = 2212; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2204; + this.state = 2215; this.match(ImpalaSqlParser.KW_IN); - this.state = 2205; + this.state = 2216; this.match(ImpalaSqlParser.LPAREN); - this.state = 2206; + this.state = 2217; this.expression(); - this.state = 2211; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2207; + this.state = 2218; this.match(ImpalaSqlParser.COMMA); - this.state = 2208; + this.state = 2219; this.expression(); } } - this.state = 2213; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2214; + this.state = 2225; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10215,19 +10286,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2217; + this.state = 2228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2216; + this.state = 2227; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2219; + this.state = 2230; this.match(ImpalaSqlParser.KW_IN); - this.state = 2220; + this.state = 2231; this.subQueryRelation(); } break; @@ -10235,17 +10306,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2222; + this.state = 2233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2221; + this.state = 2232; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2224; + this.state = 2235; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10254,16 +10325,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2225; + this.state = 2236; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2228; + this.state = 2239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2226; + this.state = 2237; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2227; + this.state = 2238; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10274,7 +10345,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2230; + this.state = 2241; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10283,7 +10354,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2231; + this.state = 2242; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10291,19 +10362,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2232; + this.state = 2243; this.match(ImpalaSqlParser.KW_IS); - this.state = 2234; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2233; + this.state = 2244; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2236; + this.state = 2247; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10318,23 +10389,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2237; + this.state = 2248; this.match(ImpalaSqlParser.KW_IS); - this.state = 2239; + this.state = 2250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2238; + this.state = 2249; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2241; + this.state = 2252; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2242; + this.state = 2253; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2243; + this.state = 2254; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10366,14 +10437,14 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 314; - this.enterRecursionRule(localContext, 314, ImpalaSqlParser.RULE_valueExpression, _p); + let _startState = 320; + this.enterRecursionRule(localContext, 320, ImpalaSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2250; + this.state = 2261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: @@ -10382,7 +10453,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2247; + this.state = 2258; this.primaryExpression(0); } break; @@ -10391,7 +10462,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2248; + this.state = 2259; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10401,13 +10472,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2249; + this.state = 2260; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2263; + this.state = 2274; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10417,7 +10488,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2261; + this.state = 2272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: @@ -10425,11 +10496,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2252; + this.state = 2263; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2253; + this.state = 2264; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10439,7 +10510,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2254; + this.state = 2265; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10448,11 +10519,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2255; + this.state = 2266; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2256; + this.state = 2267; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10462,7 +10533,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2257; + this.state = 2268; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10471,20 +10542,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2258; + this.state = 2269; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2259; + this.state = 2270; this.match(ImpalaSqlParser.CONCAT); - this.state = 2260; + this.state = 2271; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2265; + this.state = 2276; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } @@ -10516,14 +10587,14 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 316; - this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_primaryExpression, _p); + let _startState = 322; + this.enterRecursionRule(localContext, 322, ImpalaSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2512; + this.state = 2523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: @@ -10532,7 +10603,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2267; + this.state = 2278; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10541,7 +10612,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2268; + this.state = 2279; this.interval(); } break; @@ -10550,9 +10621,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2269; + this.state = 2280; this.identifier(); - this.state = 2270; + this.state = 2281; this.stringLiteral(); } break; @@ -10561,9 +10632,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2272; + this.state = 2283; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2273; + this.state = 2284; this.stringLiteral(); } break; @@ -10572,7 +10643,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2274; + this.state = 2285; this.number_(); } break; @@ -10581,7 +10652,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2275; + this.state = 2286; this.booleanValue(); } break; @@ -10590,7 +10661,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2276; + this.state = 2287; this.stringLiteral(); } break; @@ -10599,7 +10670,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2277; + this.state = 2288; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10608,7 +10679,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2278; + this.state = 2289; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10617,17 +10688,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2279; + this.state = 2290; this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2280; + this.state = 2291; this.match(ImpalaSqlParser.LPAREN); - this.state = 2281; + this.state = 2292; this.valueExpression(0); - this.state = 2282; + this.state = 2293; this.match(ImpalaSqlParser.KW_IN); - this.state = 2283; + this.state = 2294; this.valueExpression(0); - this.state = 2284; + this.state = 2295; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10636,41 +10707,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2286; + this.state = 2297; this.match(ImpalaSqlParser.LPAREN); - this.state = 2287; + this.state = 2298; this.expression(); - this.state = 2290; + this.state = 2301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2288; + this.state = 2299; this.match(ImpalaSqlParser.KW_AS); - this.state = 2289; + this.state = 2300; this.type_(0); } } - this.state = 2300; + this.state = 2311; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2292; + this.state = 2303; this.match(ImpalaSqlParser.COMMA); - this.state = 2293; + this.state = 2304; this.expression(); - this.state = 2296; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2294; + this.state = 2305; this.match(ImpalaSqlParser.KW_AS); - this.state = 2295; + this.state = 2306; this.type_(0); } } @@ -10678,11 +10749,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2302; + this.state = 2313; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } - this.state = 2303; + this.state = 2314; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10691,29 +10762,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2305; + this.state = 2316; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2306; + this.state = 2317; this.match(ImpalaSqlParser.LPAREN); - this.state = 2307; + this.state = 2318; this.expression(); - this.state = 2312; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2308; + this.state = 2319; this.match(ImpalaSqlParser.COMMA); - this.state = 2309; + this.state = 2320; this.expression(); } } - this.state = 2314; + this.state = 2325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2315; + this.state = 2326; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10722,30 +10793,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2317; + this.state = 2328; this.functionNamePath(); - this.state = 2318; + this.state = 2329; this.match(ImpalaSqlParser.LPAREN); - this.state = 2319; + this.state = 2330; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2320; + this.state = 2331; this.match(ImpalaSqlParser.RPAREN); - this.state = 2322; + this.state = 2333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2321; + this.state = 2332; this.filter(); } break; } - this.state = 2325; + this.state = 2336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2324; + this.state = 2335; this.over(); } break; @@ -10757,94 +10828,94 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2338; this.functionNamePath(); - this.state = 2328; + this.state = 2339; this.match(ImpalaSqlParser.LPAREN); - this.state = 2340; + this.state = 2351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2330; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2329; + this.state = 2340; this.setQuantifier(); } } - this.state = 2332; + this.state = 2343; this.expression(); - this.state = 2337; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2333; + this.state = 2344; this.match(ImpalaSqlParser.COMMA); - this.state = 2334; + this.state = 2345; this.expression(); } } - this.state = 2339; + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2352; + this.state = 2363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2342; + this.state = 2353; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2343; + this.state = 2354; this.match(ImpalaSqlParser.KW_BY); - this.state = 2344; + this.state = 2355; this.sortItem(); - this.state = 2349; + this.state = 2360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2345; + this.state = 2356; this.match(ImpalaSqlParser.COMMA); - this.state = 2346; + this.state = 2357; this.sortItem(); } } - this.state = 2351; + this.state = 2362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2354; + this.state = 2365; this.match(ImpalaSqlParser.RPAREN); - this.state = 2356; + this.state = 2367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2355; + this.state = 2366; this.filter(); } break; } - this.state = 2359; + this.state = 2370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2358; + this.state = 2369; this.over(); } break; @@ -10856,11 +10927,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2372; this.identifier(); - this.state = 2362; + this.state = 2373; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2363; + this.state = 2374; this.expression(); } break; @@ -10869,39 +10940,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2365; + this.state = 2376; this.match(ImpalaSqlParser.LPAREN); - this.state = 2374; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2366; + this.state = 2377; this.identifier(); - this.state = 2371; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2367; + this.state = 2378; this.match(ImpalaSqlParser.COMMA); - this.state = 2368; + this.state = 2379; this.identifier(); } } - this.state = 2373; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2376; + this.state = 2387; this.match(ImpalaSqlParser.RPAREN); - this.state = 2377; + this.state = 2388; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2378; + this.state = 2389; this.expression(); } break; @@ -10910,11 +10981,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2379; + this.state = 2390; this.match(ImpalaSqlParser.LPAREN); - this.state = 2380; + this.state = 2391; this.queryStatement(); - this.state = 2381; + this.state = 2392; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10923,13 +10994,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2383; + this.state = 2394; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2384; + this.state = 2395; this.match(ImpalaSqlParser.LPAREN); - this.state = 2385; + this.state = 2396; this.queryStatement(); - this.state = 2386; + this.state = 2397; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10938,37 +11009,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2388; + this.state = 2399; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2389; + this.state = 2400; this.valueExpression(0); - this.state = 2391; + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2390; + this.state = 2401; this.whenClause(); } } - this.state = 2393; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2397; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2395; + this.state = 2406; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2396; + this.state = 2407; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2399; + this.state = 2410; this.match(ImpalaSqlParser.KW_END); } break; @@ -10977,35 +11048,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2401; + this.state = 2412; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2403; + this.state = 2414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2402; + this.state = 2413; this.whenClause(); } } - this.state = 2405; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2409; + this.state = 2420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2407; + this.state = 2418; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2408; + this.state = 2419; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2411; + this.state = 2422; this.match(ImpalaSqlParser.KW_END); } break; @@ -11014,17 +11085,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2413; + this.state = 2424; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2414; + this.state = 2425; this.match(ImpalaSqlParser.LPAREN); - this.state = 2415; + this.state = 2426; this.expression(); - this.state = 2416; + this.state = 2427; this.match(ImpalaSqlParser.KW_AS); - this.state = 2417; + this.state = 2428; this.type_(0); - this.state = 2418; + this.state = 2429; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11033,17 +11104,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2420; + this.state = 2431; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2421; + this.state = 2432; this.match(ImpalaSqlParser.LPAREN); - this.state = 2422; + this.state = 2433; this.expression(); - this.state = 2423; + this.state = 2434; this.match(ImpalaSqlParser.KW_AS); - this.state = 2424; + this.state = 2435; this.type_(0); - this.state = 2425; + this.state = 2436; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11052,37 +11123,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2427; + this.state = 2438; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2428; + this.state = 2439; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2437; + this.state = 2448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2429; + this.state = 2440; this.expression(); - this.state = 2434; + this.state = 2445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2430; + this.state = 2441; this.match(ImpalaSqlParser.COMMA); - this.state = 2431; + this.state = 2442; this.expression(); } } - this.state = 2436; + this.state = 2447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2439; + this.state = 2450; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11091,8 +11162,8 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2440; - this.identifier(); + this.state = 2451; + this.columnName(); } break; case 25: @@ -11100,7 +11171,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2441; + this.state = 2452; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11109,18 +11180,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2442; + this.state = 2453; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2446; + this.state = 2457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2443; + this.state = 2454; this.match(ImpalaSqlParser.LPAREN); - this.state = 2444; + this.state = 2455; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2445; + this.state = 2456; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11132,18 +11203,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2448; + this.state = 2459; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2452; + this.state = 2463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2449; + this.state = 2460; this.match(ImpalaSqlParser.LPAREN); - this.state = 2450; + this.state = 2461; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2451; + this.state = 2462; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11155,18 +11226,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2454; + this.state = 2465; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2458; + this.state = 2469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2455; + this.state = 2466; this.match(ImpalaSqlParser.LPAREN); - this.state = 2456; + this.state = 2467; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2457; + this.state = 2468; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11178,18 +11249,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2460; + this.state = 2471; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2464; + this.state = 2475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2461; + this.state = 2472; this.match(ImpalaSqlParser.LPAREN); - this.state = 2462; + this.state = 2473; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2463; + this.state = 2474; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11201,7 +11272,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2466; + this.state = 2477; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11210,7 +11281,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2467; + this.state = 2478; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11219,29 +11290,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2468; + this.state = 2479; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2469; + this.state = 2480; this.match(ImpalaSqlParser.LPAREN); - this.state = 2470; + this.state = 2481; this.valueExpression(0); - this.state = 2471; + this.state = 2482; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2472; + this.state = 2483; this.valueExpression(0); - this.state = 2475; + this.state = 2486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2473; + this.state = 2484; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2474; + this.state = 2485; this.valueExpression(0); } } - this.state = 2477; + this.state = 2488; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11250,25 +11321,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2479; + this.state = 2490; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2480; + this.state = 2491; this.match(ImpalaSqlParser.LPAREN); - this.state = 2481; + this.state = 2492; this.valueExpression(0); - this.state = 2484; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2482; + this.state = 2493; this.match(ImpalaSqlParser.COMMA); - this.state = 2483; + this.state = 2494; this.normalForm(); } } - this.state = 2486; + this.state = 2497; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11277,17 +11348,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2488; + this.state = 2499; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2489; + this.state = 2500; this.match(ImpalaSqlParser.LPAREN); - this.state = 2490; + this.state = 2501; this.identifier(); - this.state = 2491; + this.state = 2502; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2492; + this.state = 2503; this.valueExpression(0); - this.state = 2493; + this.state = 2504; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11296,11 +11367,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2495; + this.state = 2506; this.match(ImpalaSqlParser.LPAREN); - this.state = 2496; + this.state = 2507; this.expression(); - this.state = 2497; + this.state = 2508; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11309,43 +11380,43 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2499; + this.state = 2510; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2500; + this.state = 2511; this.match(ImpalaSqlParser.LPAREN); - this.state = 2509; + this.state = 2520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2501; + this.state = 2512; this.qualifiedName(); - this.state = 2506; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2502; + this.state = 2513; this.match(ImpalaSqlParser.COMMA); - this.state = 2503; + this.state = 2514; this.qualifiedName(); } } - this.state = 2508; + this.state = 2519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2511; + this.state = 2522; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2524; + this.state = 2535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11355,7 +11426,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2522; + this.state = 2533; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: @@ -11363,15 +11434,15 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2514; + this.state = 2525; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2515; + this.state = 2526; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2516; + this.state = 2527; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2517; + this.state = 2528; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11380,20 +11451,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2519; + this.state = 2530; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2520; + this.state = 2531; this.match(ImpalaSqlParser.DOT); - this.state = 2521; + this.state = 2532; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2526; + this.state = 2537; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11415,16 +11486,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 318, ImpalaSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 324, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2533; + this.state = 2544; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2538; this.match(ImpalaSqlParser.STRING); } break; @@ -11432,16 +11503,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2528; + this.state = 2539; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2531; + this.state = 2542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2529; + this.state = 2540; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2530; + this.state = 2541; this.match(ImpalaSqlParser.STRING); } break; @@ -11468,12 +11539,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 320, ImpalaSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 326, ImpalaSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2535; + this.state = 2546; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11500,12 +11571,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 322, ImpalaSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 328, ImpalaSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2537; + this.state = 2548; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11532,12 +11603,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 324, ImpalaSqlParser.RULE_booleanValue); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2539; + this.state = 2550; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11564,56 +11635,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 326, ImpalaSqlParser.RULE_interval); + this.enterRule(localContext, 332, ImpalaSqlParser.RULE_interval); try { - this.state = 2555; + this.state = 2566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2541; + this.state = 2552; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2542; + this.state = 2553; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2543; + this.state = 2554; this.match(ImpalaSqlParser.LPAREN); - this.state = 2544; + this.state = 2555; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2545; + this.state = 2556; this.match(ImpalaSqlParser.RPAREN); - this.state = 2546; + this.state = 2557; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2547; + this.state = 2558; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2548; + this.state = 2559; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2549; + this.state = 2560; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2550; + this.state = 2561; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2551; + this.state = 2562; this.match(ImpalaSqlParser.LPAREN); - this.state = 2552; + this.state = 2563; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2553; + this.state = 2564; this.match(ImpalaSqlParser.RPAREN); - this.state = 2554; + this.state = 2565; this.intervalField(); } break; @@ -11635,12 +11706,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 328, ImpalaSqlParser.RULE_intervalField); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2568; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); @@ -11667,12 +11738,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_normalForm); + this.enterRule(localContext, 336, ImpalaSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2559; + this.state = 2570; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11709,120 +11780,120 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 332; - this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_type, _p); + let _startState = 338; + this.enterRecursionRule(localContext, 338, ImpalaSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2562; + this.state = 2573; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2563; + this.state = 2574; this.match(ImpalaSqlParser.LT); - this.state = 2564; + this.state = 2575; this.type_(0); - this.state = 2565; + this.state = 2576; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2567; + this.state = 2578; this.match(ImpalaSqlParser.KW_MAP); - this.state = 2568; + this.state = 2579; this.match(ImpalaSqlParser.LT); - this.state = 2569; + this.state = 2580; this.type_(0); - this.state = 2570; + this.state = 2581; this.match(ImpalaSqlParser.COMMA); - this.state = 2571; + this.state = 2582; this.type_(0); - this.state = 2572; + this.state = 2583; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2574; + this.state = 2585; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2575; + this.state = 2586; this.match(ImpalaSqlParser.LT); - this.state = 2576; + this.state = 2587; this.identifier(); - this.state = 2577; + this.state = 2588; this.type_(0); - this.state = 2584; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2578; + this.state = 2589; this.match(ImpalaSqlParser.COMMA); - this.state = 2579; + this.state = 2590; this.identifier(); - this.state = 2580; + this.state = 2591; this.type_(0); } } - this.state = 2586; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2587; + this.state = 2598; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2591; + this.state = 2602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2589; + this.state = 2600; this.baseType(); } break; case 2: { - this.state = 2590; + this.state = 2601; this.dataType(); } break; } - this.state = 2604; + this.state = 2615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2593; + this.state = 2604; this.match(ImpalaSqlParser.LPAREN); - this.state = 2594; + this.state = 2605; this.typeParameter(); - this.state = 2599; + this.state = 2610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2595; + this.state = 2606; this.match(ImpalaSqlParser.COMMA); - this.state = 2596; + this.state = 2607; this.typeParameter(); } } - this.state = 2601; + this.state = 2612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2602; + this.state = 2613; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11831,7 +11902,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2612; + this.state = 2623; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11844,16 +11915,16 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2608; + this.state = 2619; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2609; + this.state = 2620; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2614; + this.state = 2625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); } @@ -11875,12 +11946,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_dataType); + this.enterRule(localContext, 340, ImpalaSqlParser.RULE_dataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2626; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -11907,15 +11978,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 336, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2619; + this.state = 2630; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2628; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -11980,7 +12051,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2618; + this.state = 2629; this.type_(0); } break; @@ -12004,29 +12075,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 338, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 344, ImpalaSqlParser.RULE_baseType); try { - this.state = 2625; + this.state = 2636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2621; + this.state = 2632; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2622; + this.state = 2633; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2623; + this.state = 2634; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12070,7 +12141,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2624; + this.state = 2635; this.identifier(); } break; @@ -12094,17 +12165,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2627; + this.state = 2638; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2628; + this.state = 2639; localContext._condition = this.expression(); - this.state = 2629; + this.state = 2640; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2630; + this.state = 2641; localContext._result = this.expression(); } } @@ -12122,22 +12193,63 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } - public filter(): FilterContext { - let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_filter); + public filter(): FilterContext { + let localContext = new FilterContext(this.context, this.state); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_filter); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2643; + this.match(ImpalaSqlParser.KW_FILTER); + this.state = 2644; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2645; + this.whereClause(); + this.state = 2646; + this.match(ImpalaSqlParser.RPAREN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public partitionByClause(): PartitionByClauseContext { + let localContext = new PartitionByClauseContext(this.context, this.state); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_partitionByClause); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2632; - this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2633; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2634; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 2635; - this.booleanExpression(0); - this.state = 2636; - this.match(ImpalaSqlParser.RPAREN); + this.state = 2648; + localContext._expression = this.expression(); + localContext._partition.push(localContext._expression); + this.state = 2653; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 263) { + { + { + this.state = 2649; + this.match(ImpalaSqlParser.COMMA); + this.state = 2650; + localContext._expression = this.expression(); + localContext._partition.push(localContext._expression); + } + } + this.state = 2655; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -12156,88 +12268,70 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 352, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2638; + this.state = 2656; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2639; + this.state = 2657; this.match(ImpalaSqlParser.LPAREN); - this.state = 2650; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2640; + this.state = 2658; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2641; + this.state = 2659; this.match(ImpalaSqlParser.KW_BY); - this.state = 2642; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - this.state = 2647; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 263) { - { - { - this.state = 2643; - this.match(ImpalaSqlParser.COMMA); - this.state = 2644; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - } - } - this.state = 2649; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 2660; + this.partitionByClause(); } } - this.state = 2662; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2652; + this.state = 2663; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2653; + this.state = 2664; this.match(ImpalaSqlParser.KW_BY); - this.state = 2654; + this.state = 2665; this.sortItem(); - this.state = 2659; + this.state = 2670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2655; + this.state = 2666; this.match(ImpalaSqlParser.COMMA); - this.state = 2656; + this.state = 2667; this.sortItem(); } } - this.state = 2661; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2665; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2664; + this.state = 2675; this.windowFrame(); } } - this.state = 2667; + this.state = 2678; this.match(ImpalaSqlParser.RPAREN); } } @@ -12257,56 +12351,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2685; + this.state = 2696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2669; + this.state = 2680; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2670; + this.state = 2681; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2671; + this.state = 2682; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2672; + this.state = 2683; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2673; + this.state = 2684; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2674; + this.state = 2685; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2675; + this.state = 2686; localContext._start_ = this.frameBound(); - this.state = 2676; + this.state = 2687; this.match(ImpalaSqlParser.KW_AND); - this.state = 2677; + this.state = 2688; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2679; + this.state = 2690; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2680; + this.state = 2691; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2681; + this.state = 2692; localContext._start_ = this.frameBound(); - this.state = 2682; + this.state = 2693; this.match(ImpalaSqlParser.KW_AND); - this.state = 2683; + this.state = 2694; localContext._end = this.frameBound(); } break; @@ -12328,19 +12422,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 356, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2696; + this.state = 2707; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2687; + this.state = 2698; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2688; + this.state = 2699; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12348,9 +12442,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2689; + this.state = 2700; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2690; + this.state = 2701; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12358,9 +12452,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2691; + this.state = 2702; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2692; + this.state = 2703; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12368,9 +12462,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2693; + this.state = 2704; this.expression(); - this.state = 2694; + this.state = 2705; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12400,20 +12494,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2703; + this.state = 2714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2709; this.identifier(); - this.state = 2699; + this.state = 2710; this.match(ImpalaSqlParser.DOT); - this.state = 2700; + this.state = 2711; this.identifier(); } break; @@ -12421,7 +12515,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2702; + this.state = 2713; this.identifier(); } break; @@ -12443,26 +12537,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 352, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2705; + this.state = 2716; this.pathElement(); - this.state = 2710; + this.state = 2721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2706; + this.state = 2717; this.match(ImpalaSqlParser.COMMA); - this.state = 2707; + this.state = 2718; this.pathElement(); } } - this.state = 2712; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12484,69 +12578,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2726; + this.state = 2737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2713; + this.state = 2724; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2714; + this.state = 2725; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2726; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2716; + this.state = 2727; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2717; + this.state = 2728; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2718; + this.state = 2729; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2719; + this.state = 2730; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2724; + this.state = 2735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2720; + this.state = 2731; this.match(ImpalaSqlParser.LPAREN); - this.state = 2721; - localContext._columnName = this.identifier(); - this.state = 2722; + this.state = 2732; + localContext._name = this.identifier(); + this.state = 2733; this.match(ImpalaSqlParser.RPAREN); } } @@ -12573,12 +12667,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2739; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -12605,28 +12699,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 366, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2730; + this.state = 2741; this.identifier(); - this.state = 2735; + this.state = 2746; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2731; + this.state = 2742; this.match(ImpalaSqlParser.DOT); - this.state = 2732; + this.state = 2743; this.identifier(); } } } - this.state = 2737; + this.state = 2748; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); } @@ -12648,18 +12742,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 368, ImpalaSqlParser.RULE_principal); try { - this.state = 2744; + this.state = 2755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2738; + this.state = 2749; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2739; + this.state = 2750; this.identifier(); } break; @@ -12667,9 +12761,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2740; + this.state = 2751; this.match(ImpalaSqlParser.KW_USER); - this.state = 2741; + this.state = 2752; this.identifier(); } break; @@ -12677,9 +12771,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2742; + this.state = 2753; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2743; + this.state = 2754; this.identifier(); } break; @@ -12703,16 +12797,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 370, ImpalaSqlParser.RULE_identifier); try { - this.state = 2751; + this.state = 2762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2746; + this.state = 2757; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12720,7 +12814,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2747; + this.state = 2758; this.match(ImpalaSqlParser.STRING); } break; @@ -12761,7 +12855,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2748; + this.state = 2759; this.nonReserved(); } break; @@ -12769,7 +12863,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2749; + this.state = 2760; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12777,7 +12871,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2750; + this.state = 2761; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12801,27 +12895,27 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 364, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 372, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2765; + this.state = 2776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2754; + this.state = 2765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2753; + this.state = 2764; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2756; + this.state = 2767; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -12829,17 +12923,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2758; + this.state = 2769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2757; + this.state = 2768; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2760; + this.state = 2771; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -12847,17 +12941,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2762; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2761; + this.state = 2772; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2764; + this.state = 2775; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12879,12 +12973,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 366, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 374, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2778; _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -12911,12 +13005,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 368, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 376, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2780; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); @@ -12946,17 +13040,17 @@ export class ImpalaSqlParser extends SQLParserBase { switch (ruleIndex) { case 96: return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); - case 132: + case 133: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 142: + case 145: return this.relation_sempred(localContext as RelationContext, predIndex); - case 155: + case 158: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 157: + case 160: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 158: + case 161: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 166: + case 169: return this.type_sempred(localContext as TypeContext, predIndex); } return true; @@ -13022,7 +13116,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,289,2772,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,289,2783,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -13052,1163 +13146,1167 @@ export class ImpalaSqlParser extends SQLParserBase { 7,164,2,165,7,165,2,166,7,166,2,167,7,167,2,168,7,168,2,169,7,169, 2,170,7,170,2,171,7,171,2,172,7,172,2,173,7,173,2,174,7,174,2,175, 7,175,2,176,7,176,2,177,7,177,2,178,7,178,2,179,7,179,2,180,7,180, - 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,1,0,5,0,372,8,0, - 10,0,12,0,375,9,0,1,0,1,0,1,1,1,1,3,1,381,8,1,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,3,2,405,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3, - 4,418,8,4,1,5,1,5,3,5,422,8,5,1,5,1,5,3,5,426,8,5,1,5,1,5,1,5,1, - 5,1,5,5,5,433,8,5,10,5,12,5,436,9,5,1,5,1,5,3,5,440,8,5,1,5,1,5, - 3,5,444,8,5,1,5,1,5,1,5,1,5,3,5,450,8,5,3,5,452,8,5,1,5,1,5,1,5, - 3,5,457,8,5,1,6,1,6,3,6,461,8,6,1,6,1,6,3,6,465,8,6,1,6,1,6,1,6, - 1,6,1,6,3,6,472,8,6,1,6,1,6,1,6,3,6,477,8,6,1,6,1,6,1,7,1,7,3,7, - 483,8,7,1,7,1,7,3,7,487,8,7,1,7,1,7,1,7,1,7,1,7,5,7,494,8,7,10,7, - 12,7,497,9,7,1,7,1,7,1,7,1,7,3,7,503,8,7,1,7,1,7,3,7,507,8,7,1,7, - 1,7,1,7,3,7,512,8,7,3,7,514,8,7,1,7,1,7,1,7,3,7,519,8,7,1,7,3,7, - 522,8,7,1,7,1,7,1,7,1,7,1,7,3,7,529,8,7,1,7,1,7,3,7,533,8,7,1,8, - 1,8,1,8,3,8,538,8,8,1,8,1,8,3,8,542,8,8,1,8,3,8,545,8,8,1,8,1,8, - 3,8,549,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,557,8,9,1,9,1,9,3,9,561, - 8,9,1,9,1,9,3,9,565,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,573,8, - 11,1,11,1,11,3,11,577,8,11,1,11,1,11,1,11,1,11,1,11,5,11,584,8,11, - 10,11,12,11,587,9,11,3,11,589,8,11,1,11,3,11,592,8,11,1,11,1,11, - 1,11,1,11,3,11,598,8,11,1,11,1,11,1,11,1,11,1,11,3,11,605,8,11,1, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,616,8,11,1,11,1, - 11,1,11,3,11,621,8,11,1,11,1,11,1,11,3,11,626,8,11,1,11,1,11,1,11, - 3,11,631,8,11,1,12,1,12,1,12,3,12,636,8,12,1,12,1,12,1,12,1,12,1, - 12,5,12,643,8,12,10,12,12,12,646,9,12,3,12,648,8,12,1,12,3,12,651, - 8,12,1,12,1,12,3,12,655,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13, + 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, + 7,186,2,187,7,187,2,188,7,188,1,0,5,0,380,8,0,10,0,12,0,383,9,0, + 1,0,1,0,1,1,1,1,3,1,389,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,413,8,2, + 1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,426,8,4,1,5,1,5, + 3,5,430,8,5,1,5,1,5,3,5,434,8,5,1,5,1,5,1,5,1,5,1,5,5,5,441,8,5, + 10,5,12,5,444,9,5,1,5,1,5,3,5,448,8,5,1,5,1,5,3,5,452,8,5,1,5,1, + 5,1,5,1,5,3,5,458,8,5,3,5,460,8,5,1,5,1,5,1,5,3,5,465,8,5,1,6,1, + 6,3,6,469,8,6,1,6,1,6,3,6,473,8,6,1,6,1,6,1,6,1,6,1,6,3,6,480,8, + 6,1,6,1,6,1,6,3,6,485,8,6,1,6,1,6,1,7,1,7,3,7,491,8,7,1,7,1,7,3, + 7,495,8,7,1,7,1,7,1,7,1,7,1,7,5,7,502,8,7,10,7,12,7,505,9,7,1,7, + 1,7,1,7,1,7,3,7,511,8,7,1,7,1,7,3,7,515,8,7,1,7,1,7,1,7,3,7,520, + 8,7,3,7,522,8,7,1,7,1,7,1,7,3,7,527,8,7,1,7,3,7,530,8,7,1,7,1,7, + 1,7,1,7,1,7,3,7,537,8,7,1,7,1,7,3,7,541,8,7,1,8,1,8,1,8,3,8,546, + 8,8,1,8,1,8,3,8,550,8,8,1,8,3,8,553,8,8,1,8,1,8,3,8,557,8,8,1,8, + 1,8,1,8,1,9,1,9,1,9,3,9,565,8,9,1,9,1,9,3,9,569,8,9,1,9,1,9,3,9, + 573,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,581,8,11,1,11,1,11,3, + 11,585,8,11,1,11,1,11,1,11,1,11,1,11,5,11,592,8,11,10,11,12,11,595, + 9,11,3,11,597,8,11,1,11,3,11,600,8,11,1,11,1,11,1,11,1,11,3,11,606, + 8,11,1,11,1,11,1,11,1,11,1,11,3,11,613,8,11,1,11,1,11,1,11,1,11, + 1,11,1,11,1,11,1,11,1,11,3,11,624,8,11,1,11,1,11,1,11,3,11,629,8, + 11,1,11,1,11,1,11,3,11,634,8,11,1,11,1,11,1,11,3,11,639,8,11,1,12, + 1,12,1,12,3,12,644,8,12,1,12,1,12,1,12,1,12,1,12,5,12,651,8,12,10, + 12,12,12,654,9,12,3,12,656,8,12,1,12,3,12,659,8,12,1,12,1,12,3,12, + 663,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13, 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,3,13,681,8,13,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,1,15,1,15,1,15,1,15,3,15,707,8,15,1,15,1,15,1,16,1,16,1,16, - 1,16,1,16,3,16,716,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, - 3,16,726,8,16,1,16,3,16,729,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1, - 17,1,18,1,18,1,18,1,18,1,18,3,18,743,8,18,1,18,1,18,1,19,1,19,1, - 19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,761, - 8,20,3,20,763,8,20,1,20,1,20,1,20,1,20,1,20,5,20,770,8,20,10,20, - 12,20,773,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,783, - 8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,792,8,22,1,22,1,22, - 1,22,1,22,1,22,3,22,799,8,22,1,22,1,22,3,22,803,8,22,1,23,1,23,1, - 23,1,23,1,23,3,23,810,8,23,1,23,1,23,1,23,1,23,3,23,816,8,23,1,23, - 3,23,819,8,23,1,23,1,23,1,23,3,23,824,8,23,1,24,1,24,1,24,1,24,1, - 24,3,24,831,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, - 24,1,24,1,24,3,24,845,8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1, - 26,1,26,1,26,1,26,3,26,858,8,26,1,26,1,26,1,26,3,26,863,8,26,1,26, - 1,26,1,26,3,26,868,8,26,1,27,1,27,1,27,1,27,3,27,874,8,27,1,27,1, - 27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1, - 29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, - 31,1,31,1,31,1,31,1,31,1,32,1,32,3,32,910,8,32,1,32,3,32,913,8,32, - 1,32,1,32,1,33,1,33,3,33,919,8,33,1,33,3,33,922,8,33,1,33,1,33,1, - 34,1,34,3,34,928,8,34,1,35,1,35,1,35,1,35,3,35,934,8,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,946,8,35,3,35,948,8, - 35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,959,8,36,1, - 37,1,37,1,37,1,37,1,37,1,37,3,37,967,8,37,1,38,1,38,1,38,3,38,972, - 8,38,1,38,1,38,3,38,976,8,38,1,39,1,39,1,39,3,39,981,8,39,1,39,1, - 39,1,40,1,40,1,40,3,40,988,8,40,1,40,1,40,3,40,992,8,40,1,41,1,41, - 3,41,996,8,41,1,41,1,41,1,41,1,41,3,41,1002,8,41,1,42,1,42,3,42, - 1006,8,42,1,42,1,42,3,42,1010,8,42,1,42,1,42,1,42,1,42,1,42,5,42, - 1017,8,42,10,42,12,42,1020,9,42,3,42,1022,8,42,1,42,3,42,1025,8, - 42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1033,8,44,1,45,1,45,1,45,1, - 45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3,46,1047,8,46,1,46,1, - 46,1,46,1,47,1,47,3,47,1054,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1, - 48,1,49,1,49,1,49,1,49,3,49,1067,8,49,1,49,1,49,1,49,1,49,3,49,1073, - 8,49,1,49,1,49,1,49,3,49,1078,8,49,1,49,3,49,1081,8,49,1,50,3,50, - 1084,8,50,1,50,1,50,1,50,3,50,1089,8,50,1,50,1,50,3,50,1093,8,50, - 1,50,1,50,1,50,1,50,1,50,5,50,1100,8,50,10,50,12,50,1103,9,50,1, - 50,1,50,3,50,1107,8,50,1,50,1,50,1,51,1,51,3,51,1113,8,51,1,52,1, - 52,3,52,1117,8,52,1,52,1,52,1,52,3,52,1122,8,52,1,53,1,53,1,53,3, - 53,1127,8,53,1,53,3,53,1130,8,53,1,53,1,53,1,53,1,53,5,53,1136,8, - 53,10,53,12,53,1139,9,53,3,53,1141,8,53,1,53,1,53,3,53,1145,8,53, - 1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1155,8,54,10,54,12, - 54,1158,9,54,3,54,1160,8,54,1,54,1,54,3,54,1164,8,54,1,55,1,55,1, - 55,3,55,1169,8,55,1,55,1,55,3,55,1173,8,55,1,55,1,55,1,56,1,56,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1189,8,56,1, - 57,1,57,1,57,3,57,1194,8,57,1,57,1,57,1,57,5,57,1199,8,57,10,57, - 12,57,1202,9,57,3,57,1204,8,57,1,58,1,58,1,58,1,58,3,58,1210,8,58, - 1,58,3,58,1213,8,58,1,58,1,58,1,58,5,58,1218,8,58,10,58,12,58,1221, - 9,58,3,58,1223,8,58,1,59,1,59,3,59,1227,8,59,1,59,1,59,1,59,3,59, - 1232,8,59,1,59,3,59,1235,8,59,1,59,1,59,1,59,5,59,1240,8,59,10,59, - 12,59,1243,9,59,3,59,1245,8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61, - 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63, - 1,64,1,64,3,64,1269,8,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,3,65,1283,8,65,1,65,1,65,3,65,1287,8,65,1,66, - 1,66,3,66,1291,8,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68, - 1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,1311,8,68,3,68, - 1313,8,68,3,68,1315,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1324,8,69,3,69,1326,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70, - 1335,8,70,3,70,1337,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71, - 1346,8,71,3,71,1348,8,71,1,72,1,72,1,72,3,72,1353,8,72,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,3,73,1362,8,73,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,3,74,1371,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75, - 1380,8,75,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1391, - 8,77,1,78,1,78,1,78,1,78,3,78,1397,8,78,1,78,1,78,1,78,3,78,1402, - 8,78,1,78,3,78,1405,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80, - 1,80,1,80,1,80,3,80,1418,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,3,80,1428,8,80,1,80,1,80,3,80,1432,8,80,1,81,1,81,1,81,3,81, - 1437,8,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,5,82,1446,8,82,10,82, - 12,82,1449,9,82,1,82,1,82,3,82,1453,8,82,1,83,1,83,1,83,1,84,1,84, - 1,84,1,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88, - 1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1484, - 8,93,10,93,12,93,1487,9,93,1,94,1,94,1,94,5,94,1492,8,94,10,94,12, - 94,1495,9,94,1,95,1,95,3,95,1499,8,95,1,96,1,96,3,96,1503,8,96,1, - 97,1,97,3,97,1507,8,97,1,98,1,98,1,98,3,98,1512,8,98,1,98,3,98,1515, - 8,98,1,98,1,98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98, - 1,98,1,98,1,98,3,98,1530,8,98,1,98,1,98,3,98,1534,8,98,1,98,1,98, - 1,98,1,98,1,98,1,98,1,98,3,98,1543,8,98,1,98,3,98,1546,8,98,1,98, - 1,98,3,98,1550,8,98,1,99,1,99,1,99,5,99,1555,8,99,10,99,12,99,1558, - 9,99,1,100,1,100,1,100,1,100,1,101,1,101,3,101,1566,8,101,1,101, - 1,101,3,101,1570,8,101,5,101,1572,8,101,10,101,12,101,1575,9,101, - 1,101,1,101,1,102,1,102,3,102,1581,8,102,1,103,3,103,1584,8,103, - 1,103,1,103,1,104,1,104,1,104,1,104,5,104,1592,8,104,10,104,12,104, - 1595,9,104,1,105,1,105,1,105,1,105,3,105,1601,8,105,1,105,1,105, - 1,105,3,105,1606,8,105,1,105,1,105,1,105,3,105,1611,8,105,1,105, - 1,105,1,105,3,105,1616,8,105,1,105,1,105,5,105,1620,8,105,10,105, - 12,105,1623,9,105,3,105,1625,8,105,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,3,106,1634,8,106,1,106,3,106,1637,8,106,1,106,3,106, - 1640,8,106,1,107,1,107,1,107,1,107,3,107,1646,8,107,1,108,1,108, - 1,108,3,108,1651,8,108,1,109,1,109,1,110,1,110,1,110,1,110,5,110, - 1659,8,110,10,110,12,110,1662,9,110,3,110,1664,8,110,1,110,3,110, - 1667,8,110,1,110,1,110,3,110,1671,8,110,1,111,1,111,1,111,1,112, - 1,112,1,112,5,112,1679,8,112,10,112,12,112,1682,9,112,3,112,1684, - 8,112,1,113,1,113,1,113,1,113,3,113,1690,8,113,1,113,1,113,5,113, - 1694,8,113,10,113,12,113,1697,9,113,3,113,1699,8,113,1,114,3,114, - 1702,8,114,1,114,1,114,3,114,1706,8,114,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,1,115,3,115,1716,8,115,1,116,1,116,1,117,1,117, - 1,118,1,118,1,118,5,118,1725,8,118,10,118,12,118,1728,9,118,1,118, - 1,118,3,118,1732,8,118,1,118,3,118,1735,8,118,1,119,1,119,3,119, - 1739,8,119,1,119,1,119,1,119,1,120,1,120,3,120,1746,8,120,1,120, - 1,120,1,120,1,120,1,120,1,120,5,120,1754,8,120,10,120,12,120,1757, - 9,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 1768,8,121,1,121,1,121,1,121,1,121,3,121,1774,8,121,3,121,1776,8, - 121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1785,8,122,1, - 122,3,122,1788,8,122,1,123,1,123,1,123,1,123,1,123,3,123,1795,8, - 123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,1805,8, - 124,1,125,1,125,1,125,1,125,3,125,1811,8,125,1,126,1,126,1,126,1, - 126,5,126,1817,8,126,10,126,12,126,1820,9,126,1,126,1,126,1,127, - 1,127,1,127,1,127,5,127,1828,8,127,10,127,12,127,1831,9,127,1,127, - 1,127,1,128,1,128,1,128,5,128,1838,8,128,10,128,12,128,1841,9,128, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1851,8,129, - 3,129,1853,8,129,1,129,1,129,1,129,1,129,3,129,1859,8,129,1,130, - 1,130,1,130,3,130,1864,8,130,1,131,1,131,1,131,1,131,1,131,1,131, - 5,131,1872,8,131,10,131,12,131,1875,9,131,3,131,1877,8,131,1,131, - 1,131,1,131,1,131,3,131,1883,8,131,3,131,1885,8,131,1,132,1,132, - 1,132,1,132,1,132,1,132,3,132,1893,8,132,1,132,1,132,1,132,1,132, - 3,132,1899,8,132,1,132,5,132,1902,8,132,10,132,12,132,1905,9,132, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1914,8,133,10,133, - 12,133,1917,9,133,1,133,1,133,1,133,1,133,3,133,1923,8,133,1,134, - 1,134,3,134,1927,8,134,1,134,1,134,3,134,1931,8,134,1,135,1,135, - 3,135,1935,8,135,1,135,3,135,1938,8,135,1,135,1,135,1,135,5,135, - 1943,8,135,10,135,12,135,1946,9,135,1,135,1,135,1,135,1,135,5,135, - 1952,8,135,10,135,12,135,1955,9,135,3,135,1957,8,135,1,135,1,135, - 3,135,1961,8,135,1,135,1,135,1,135,3,135,1966,8,135,1,135,1,135, - 3,135,1970,8,135,1,136,3,136,1973,8,136,1,136,1,136,1,136,5,136, - 1978,8,136,10,136,12,136,1981,9,136,1,137,1,137,1,138,1,138,1,138, - 1,138,5,138,1989,8,138,10,138,12,138,1992,9,138,3,138,1994,8,138, - 1,138,1,138,3,138,1998,8,138,1,139,1,139,3,139,2002,8,139,1,139, - 1,139,1,139,1,140,1,140,1,141,1,141,3,141,2011,8,141,1,141,3,141, - 2014,8,141,1,141,1,141,1,141,1,141,1,141,3,141,2021,8,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,2035,8,142,5,142,2037,8,142,10,142,12,142,2040,9,142,1,143, - 3,143,2043,8,143,1,143,1,143,3,143,2047,8,143,1,143,1,143,3,143, - 2051,8,143,1,143,1,143,3,143,2055,8,143,1,143,1,143,3,143,2059,8, - 143,1,143,1,143,3,143,2063,8,143,1,143,1,143,1,143,1,143,1,143,1, - 143,1,143,1,143,3,143,2073,8,143,1,144,1,144,1,144,1,144,1,144,1, - 144,1,144,5,144,2082,8,144,10,144,12,144,2085,9,144,1,144,1,144, - 3,144,2089,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,3,145,2102,8,145,3,145,2104,8,145,1,146,1,146, - 1,147,1,147,3,147,2110,8,147,1,147,1,147,3,147,2114,8,147,3,147, - 2116,8,147,1,148,1,148,1,148,1,148,5,148,2122,8,148,10,148,12,148, - 2125,9,148,1,148,1,148,1,149,1,149,3,149,2131,8,149,1,149,1,149, - 1,149,3,149,2136,8,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151, - 1,151,1,151,5,151,2147,8,151,10,151,12,151,2150,9,151,1,151,1,151, - 1,151,3,151,2155,8,151,1,152,1,152,1,152,1,152,1,153,1,153,3,153, - 2163,8,153,1,154,1,154,1,155,1,155,1,155,3,155,2170,8,155,1,155, - 1,155,3,155,2174,8,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155, - 2182,8,155,10,155,12,155,2185,9,155,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2195,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,3,156,2203,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2210, - 8,156,10,156,12,156,2213,9,156,1,156,1,156,1,156,3,156,2218,8,156, - 1,156,1,156,1,156,3,156,2223,8,156,1,156,1,156,1,156,1,156,3,156, - 2229,8,156,1,156,1,156,1,156,1,156,3,156,2235,8,156,1,156,1,156, - 1,156,3,156,2240,8,156,1,156,1,156,1,156,3,156,2245,8,156,1,157, - 1,157,1,157,1,157,3,157,2251,8,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,5,157,2262,8,157,10,157,12,157,2265,9,157, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,2291,8,158,1,158,1,158,1,158,1,158,3,158,2297, - 8,158,5,158,2299,8,158,10,158,12,158,2302,9,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,5,158,2311,8,158,10,158,12,158,2314,9,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,2323,8,158,1,158, - 3,158,2326,8,158,1,158,1,158,1,158,3,158,2331,8,158,1,158,1,158, - 1,158,5,158,2336,8,158,10,158,12,158,2339,9,158,3,158,2341,8,158, - 1,158,1,158,1,158,1,158,1,158,5,158,2348,8,158,10,158,12,158,2351, - 9,158,3,158,2353,8,158,1,158,1,158,3,158,2357,8,158,1,158,3,158, - 2360,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158, - 2370,8,158,10,158,12,158,2373,9,158,3,158,2375,8,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,4,158,2392,8,158,11,158,12,158,2393,1,158,1,158,3,158, - 2398,8,158,1,158,1,158,1,158,1,158,4,158,2404,8,158,11,158,12,158, - 2405,1,158,1,158,3,158,2410,8,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,5,158,2433,8,158,10,158,12,158,2436, - 9,158,3,158,2438,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 3,158,2447,8,158,1,158,1,158,1,158,1,158,3,158,2453,8,158,1,158, - 1,158,1,158,1,158,3,158,2459,8,158,1,158,1,158,1,158,1,158,3,158, - 2465,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 3,158,2476,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158, - 2485,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158,2505, - 8,158,10,158,12,158,2508,9,158,3,158,2510,8,158,1,158,3,158,2513, - 8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158,2523, - 8,158,10,158,12,158,2526,9,158,1,159,1,159,1,159,1,159,3,159,2532, - 8,159,3,159,2534,8,159,1,160,1,160,1,161,1,161,1,162,1,162,1,163, - 1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163, - 1,163,1,163,3,163,2556,8,163,1,164,1,164,1,165,1,165,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,5,166,2583,8,166, - 10,166,12,166,2586,9,166,1,166,1,166,1,166,1,166,3,166,2592,8,166, - 1,166,1,166,1,166,1,166,5,166,2598,8,166,10,166,12,166,2601,9,166, - 1,166,1,166,3,166,2605,8,166,3,166,2607,8,166,1,166,1,166,5,166, - 2611,8,166,10,166,12,166,2614,9,166,1,167,1,167,1,168,1,168,3,168, - 2620,8,168,1,169,1,169,1,169,1,169,3,169,2626,8,169,1,170,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172, - 1,172,1,172,1,172,1,172,1,172,5,172,2646,8,172,10,172,12,172,2649, - 9,172,3,172,2651,8,172,1,172,1,172,1,172,1,172,1,172,5,172,2658, - 8,172,10,172,12,172,2661,9,172,3,172,2663,8,172,1,172,3,172,2666, - 8,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,3,173,2686,8,173, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2697, - 8,174,1,175,1,175,1,175,1,175,1,175,3,175,2704,8,175,1,176,1,176, - 1,176,5,176,2709,8,176,10,176,12,176,2712,9,176,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2725,8,177, - 3,177,2727,8,177,1,178,1,178,1,179,1,179,1,179,5,179,2734,8,179, - 10,179,12,179,2737,9,179,1,180,1,180,1,180,1,180,1,180,1,180,3,180, - 2745,8,180,1,181,1,181,1,181,1,181,1,181,3,181,2752,8,181,1,182, - 3,182,2755,8,182,1,182,1,182,3,182,2759,8,182,1,182,1,182,3,182, - 2763,8,182,1,182,3,182,2766,8,182,1,183,1,183,1,184,1,184,1,184, - 10,771,1447,1621,1660,1680,1695,1726,1755,1829,2300,6,264,284,310, - 314,316,332,185,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, - 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, - 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, - 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, - 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, - 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, - 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, - 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, - 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, - 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, - 342,344,346,348,350,352,354,356,358,360,362,364,366,368,0,33,2,0, - 46,46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69, - 80,80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2, - 0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245, - 248,2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10, - 10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, - 106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133,133,194,194, - 208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181, - 2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217,218,1,0,127, - 130,2,0,8,8,227,244,2,0,77,77,149,149,4,0,46,46,178,178,188,188, - 209,209,16,0,28,29,40,40,43,43,48,48,68,68,91,91,114,114,122,122, - 124,124,158,158,165,165,172,172,184,184,196,196,204,204,217,217, - 23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110,119,119,122, - 125,127,130,137,137,140,140,152,153,172,173,180,180,184,185,195, - 195,204,204,213,213,217,217,220,220,231,231,3093,0,373,1,0,0,0,2, - 378,1,0,0,0,4,404,1,0,0,0,6,406,1,0,0,0,8,417,1,0,0,0,10,419,1,0, - 0,0,12,458,1,0,0,0,14,480,1,0,0,0,16,534,1,0,0,0,18,553,1,0,0,0, - 20,566,1,0,0,0,22,570,1,0,0,0,24,632,1,0,0,0,26,680,1,0,0,0,28,682, - 1,0,0,0,30,690,1,0,0,0,32,710,1,0,0,0,34,730,1,0,0,0,36,737,1,0, - 0,0,38,746,1,0,0,0,40,754,1,0,0,0,42,776,1,0,0,0,44,786,1,0,0,0, - 46,804,1,0,0,0,48,825,1,0,0,0,50,846,1,0,0,0,52,852,1,0,0,0,54,869, - 1,0,0,0,56,878,1,0,0,0,58,885,1,0,0,0,60,893,1,0,0,0,62,900,1,0, - 0,0,64,907,1,0,0,0,66,916,1,0,0,0,68,927,1,0,0,0,70,929,1,0,0,0, - 72,949,1,0,0,0,74,966,1,0,0,0,76,968,1,0,0,0,78,977,1,0,0,0,80,984, - 1,0,0,0,82,993,1,0,0,0,84,1003,1,0,0,0,86,1026,1,0,0,0,88,1032,1, - 0,0,0,90,1034,1,0,0,0,92,1041,1,0,0,0,94,1053,1,0,0,0,96,1055,1, - 0,0,0,98,1062,1,0,0,0,100,1083,1,0,0,0,102,1112,1,0,0,0,104,1114, - 1,0,0,0,106,1123,1,0,0,0,108,1146,1,0,0,0,110,1165,1,0,0,0,112,1188, - 1,0,0,0,114,1190,1,0,0,0,116,1205,1,0,0,0,118,1224,1,0,0,0,120,1246, - 1,0,0,0,122,1251,1,0,0,0,124,1256,1,0,0,0,126,1261,1,0,0,0,128,1266, - 1,0,0,0,130,1273,1,0,0,0,132,1288,1,0,0,0,134,1294,1,0,0,0,136,1314, - 1,0,0,0,138,1316,1,0,0,0,140,1327,1,0,0,0,142,1338,1,0,0,0,144,1352, - 1,0,0,0,146,1354,1,0,0,0,148,1363,1,0,0,0,150,1372,1,0,0,0,152,1381, - 1,0,0,0,154,1384,1,0,0,0,156,1392,1,0,0,0,158,1408,1,0,0,0,160,1412, - 1,0,0,0,162,1436,1,0,0,0,164,1438,1,0,0,0,166,1454,1,0,0,0,168,1457, - 1,0,0,0,170,1461,1,0,0,0,172,1464,1,0,0,0,174,1468,1,0,0,0,176,1470, - 1,0,0,0,178,1472,1,0,0,0,180,1474,1,0,0,0,182,1476,1,0,0,0,184,1478, - 1,0,0,0,186,1480,1,0,0,0,188,1488,1,0,0,0,190,1498,1,0,0,0,192,1502, - 1,0,0,0,194,1506,1,0,0,0,196,1511,1,0,0,0,198,1551,1,0,0,0,200,1559, - 1,0,0,0,202,1563,1,0,0,0,204,1578,1,0,0,0,206,1583,1,0,0,0,208,1587, - 1,0,0,0,210,1596,1,0,0,0,212,1626,1,0,0,0,214,1641,1,0,0,0,216,1647, - 1,0,0,0,218,1652,1,0,0,0,220,1654,1,0,0,0,222,1672,1,0,0,0,224,1675, - 1,0,0,0,226,1685,1,0,0,0,228,1705,1,0,0,0,230,1715,1,0,0,0,232,1717, - 1,0,0,0,234,1719,1,0,0,0,236,1734,1,0,0,0,238,1736,1,0,0,0,240,1743, - 1,0,0,0,242,1775,1,0,0,0,244,1787,1,0,0,0,246,1794,1,0,0,0,248,1804, - 1,0,0,0,250,1806,1,0,0,0,252,1812,1,0,0,0,254,1823,1,0,0,0,256,1834, - 1,0,0,0,258,1842,1,0,0,0,260,1860,1,0,0,0,262,1865,1,0,0,0,264,1886, - 1,0,0,0,266,1922,1,0,0,0,268,1924,1,0,0,0,270,1932,1,0,0,0,272,1972, - 1,0,0,0,274,1982,1,0,0,0,276,1997,1,0,0,0,278,1999,1,0,0,0,280,2006, - 1,0,0,0,282,2020,1,0,0,0,284,2022,1,0,0,0,286,2072,1,0,0,0,288,2088, - 1,0,0,0,290,2090,1,0,0,0,292,2105,1,0,0,0,294,2107,1,0,0,0,296,2117, - 1,0,0,0,298,2135,1,0,0,0,300,2137,1,0,0,0,302,2141,1,0,0,0,304,2156, - 1,0,0,0,306,2162,1,0,0,0,308,2164,1,0,0,0,310,2173,1,0,0,0,312,2244, - 1,0,0,0,314,2250,1,0,0,0,316,2512,1,0,0,0,318,2533,1,0,0,0,320,2535, - 1,0,0,0,322,2537,1,0,0,0,324,2539,1,0,0,0,326,2555,1,0,0,0,328,2557, - 1,0,0,0,330,2559,1,0,0,0,332,2606,1,0,0,0,334,2615,1,0,0,0,336,2619, - 1,0,0,0,338,2625,1,0,0,0,340,2627,1,0,0,0,342,2632,1,0,0,0,344,2638, - 1,0,0,0,346,2685,1,0,0,0,348,2696,1,0,0,0,350,2703,1,0,0,0,352,2705, - 1,0,0,0,354,2726,1,0,0,0,356,2728,1,0,0,0,358,2730,1,0,0,0,360,2744, - 1,0,0,0,362,2751,1,0,0,0,364,2765,1,0,0,0,366,2767,1,0,0,0,368,2769, - 1,0,0,0,370,372,3,2,1,0,371,370,1,0,0,0,372,375,1,0,0,0,373,371, - 1,0,0,0,373,374,1,0,0,0,374,376,1,0,0,0,375,373,1,0,0,0,376,377, - 5,0,0,1,377,1,1,0,0,0,378,380,3,4,2,0,379,381,5,262,0,0,380,379, - 1,0,0,0,380,381,1,0,0,0,381,3,1,0,0,0,382,405,3,206,103,0,383,405, - 3,6,3,0,384,405,3,8,4,0,385,405,3,26,13,0,386,405,3,64,32,0,387, - 405,3,66,33,0,388,405,3,68,34,0,389,405,3,74,37,0,390,405,3,88,44, - 0,391,405,3,94,47,0,392,405,3,100,50,0,393,405,3,102,51,0,394,405, - 3,108,54,0,395,405,3,110,55,0,396,405,3,112,56,0,397,405,3,144,72, - 0,398,405,3,152,76,0,399,405,3,154,77,0,400,405,3,156,78,0,401,405, - 3,158,79,0,402,405,3,160,80,0,403,405,3,162,81,0,404,382,1,0,0,0, - 404,383,1,0,0,0,404,384,1,0,0,0,404,385,1,0,0,0,404,386,1,0,0,0, - 404,387,1,0,0,0,404,388,1,0,0,0,404,389,1,0,0,0,404,390,1,0,0,0, - 404,391,1,0,0,0,404,392,1,0,0,0,404,393,1,0,0,0,404,394,1,0,0,0, - 404,395,1,0,0,0,404,396,1,0,0,0,404,397,1,0,0,0,404,398,1,0,0,0, - 404,399,1,0,0,0,404,400,1,0,0,0,404,401,1,0,0,0,404,402,1,0,0,0, - 404,403,1,0,0,0,405,5,1,0,0,0,406,407,5,203,0,0,407,408,3,184,92, - 0,408,7,1,0,0,0,409,418,3,18,9,0,410,418,3,20,10,0,411,418,3,22, - 11,0,412,418,3,24,12,0,413,418,3,16,8,0,414,418,3,14,7,0,415,418, - 3,12,6,0,416,418,3,10,5,0,417,409,1,0,0,0,417,410,1,0,0,0,417,411, - 1,0,0,0,417,412,1,0,0,0,417,413,1,0,0,0,417,414,1,0,0,0,417,415, - 1,0,0,0,417,416,1,0,0,0,418,9,1,0,0,0,419,421,5,37,0,0,420,422,5, - 19,0,0,421,420,1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,425,5, - 188,0,0,424,426,3,172,86,0,425,424,1,0,0,0,425,426,1,0,0,0,426,427, - 1,0,0,0,427,443,3,174,87,0,428,429,5,265,0,0,429,434,3,216,108,0, - 430,431,5,263,0,0,431,433,3,216,108,0,432,430,1,0,0,0,433,436,1, - 0,0,0,434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436,434,1, - 0,0,0,437,438,5,263,0,0,438,440,3,210,105,0,439,437,1,0,0,0,439, - 440,1,0,0,0,440,441,1,0,0,0,441,442,5,266,0,0,442,444,1,0,0,0,443, - 428,1,0,0,0,443,444,1,0,0,0,444,451,1,0,0,0,445,446,5,17,0,0,446, - 449,5,26,0,0,447,450,3,296,148,0,448,450,3,254,127,0,449,447,1,0, - 0,0,449,448,1,0,0,0,450,452,1,0,0,0,451,445,1,0,0,0,451,452,1,0, - 0,0,452,453,1,0,0,0,453,456,3,196,98,0,454,455,5,9,0,0,455,457,3, - 206,103,0,456,454,1,0,0,0,456,457,1,0,0,0,457,11,1,0,0,0,458,460, - 5,37,0,0,459,461,5,19,0,0,460,459,1,0,0,0,460,461,1,0,0,0,461,462, - 1,0,0,0,462,464,5,188,0,0,463,465,3,172,86,0,464,463,1,0,0,0,464, - 465,1,0,0,0,465,466,1,0,0,0,466,467,3,174,87,0,467,471,5,115,0,0, - 468,472,3,186,93,0,469,470,5,147,0,0,470,472,3,318,159,0,471,468, - 1,0,0,0,471,469,1,0,0,0,472,476,1,0,0,0,473,474,5,17,0,0,474,475, - 5,26,0,0,475,477,3,254,127,0,476,473,1,0,0,0,476,477,1,0,0,0,477, - 478,1,0,0,0,478,479,3,196,98,0,479,13,1,0,0,0,480,482,5,37,0,0,481, - 483,5,19,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484, - 486,5,188,0,0,485,487,3,172,86,0,486,485,1,0,0,0,486,487,1,0,0,0, - 487,488,1,0,0,0,488,506,3,174,87,0,489,490,5,265,0,0,490,495,3,218, - 109,0,491,492,5,263,0,0,492,494,3,218,109,0,493,491,1,0,0,0,494, - 497,1,0,0,0,495,493,1,0,0,0,495,496,1,0,0,0,496,502,1,0,0,0,497, - 495,1,0,0,0,498,499,5,263,0,0,499,500,5,150,0,0,500,501,5,110,0, - 0,501,503,3,296,148,0,502,498,1,0,0,0,502,503,1,0,0,0,503,504,1, - 0,0,0,504,505,5,266,0,0,505,507,1,0,0,0,506,489,1,0,0,0,506,507, - 1,0,0,0,507,513,1,0,0,0,508,509,5,150,0,0,509,511,5,110,0,0,510, - 512,3,296,148,0,511,510,1,0,0,0,511,512,1,0,0,0,512,514,1,0,0,0, - 513,508,1,0,0,0,513,514,1,0,0,0,514,518,1,0,0,0,515,516,5,145,0, - 0,516,517,5,26,0,0,517,519,3,236,118,0,518,515,1,0,0,0,518,519,1, - 0,0,0,519,521,1,0,0,0,520,522,3,222,111,0,521,520,1,0,0,0,521,522, - 1,0,0,0,522,523,1,0,0,0,523,524,5,23,0,0,524,525,5,9,0,0,525,528, - 5,111,0,0,526,527,5,25,0,0,527,529,3,252,126,0,528,526,1,0,0,0,528, - 529,1,0,0,0,529,532,1,0,0,0,530,531,5,9,0,0,531,533,3,206,103,0, - 532,530,1,0,0,0,532,533,1,0,0,0,533,15,1,0,0,0,534,535,5,37,0,0, - 535,537,5,212,0,0,536,538,3,172,86,0,537,536,1,0,0,0,537,538,1,0, - 0,0,538,539,1,0,0,0,539,541,3,178,89,0,540,542,3,202,101,0,541,540, - 1,0,0,0,541,542,1,0,0,0,542,544,1,0,0,0,543,545,3,222,111,0,544, - 543,1,0,0,0,544,545,1,0,0,0,545,548,1,0,0,0,546,547,5,25,0,0,547, - 549,3,252,126,0,548,546,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0, - 550,551,5,9,0,0,551,552,3,206,103,0,552,17,1,0,0,0,553,554,5,37, - 0,0,554,556,7,0,0,0,555,557,3,172,86,0,556,555,1,0,0,0,556,557,1, - 0,0,0,557,558,1,0,0,0,558,560,3,176,88,0,559,561,3,222,111,0,560, - 559,1,0,0,0,560,561,1,0,0,0,561,564,1,0,0,0,562,563,5,24,0,0,563, - 565,3,318,159,0,564,562,1,0,0,0,564,565,1,0,0,0,565,19,1,0,0,0,566, - 567,5,37,0,0,567,568,5,166,0,0,568,569,3,362,181,0,569,21,1,0,0, - 0,570,572,5,37,0,0,571,573,5,12,0,0,572,571,1,0,0,0,572,573,1,0, - 0,0,573,574,1,0,0,0,574,576,5,84,0,0,575,577,3,172,86,0,576,575, - 1,0,0,0,576,577,1,0,0,0,577,578,1,0,0,0,578,591,3,180,90,0,579,588, - 5,265,0,0,580,585,3,332,166,0,581,582,5,263,0,0,582,584,3,332,166, - 0,583,581,1,0,0,0,584,587,1,0,0,0,585,583,1,0,0,0,585,586,1,0,0, - 0,586,589,1,0,0,0,587,585,1,0,0,0,588,580,1,0,0,0,588,589,1,0,0, - 0,589,590,1,0,0,0,590,592,5,266,0,0,591,579,1,0,0,0,591,592,1,0, - 0,0,592,593,1,0,0,0,593,594,5,160,0,0,594,597,3,332,166,0,595,596, - 5,102,0,0,596,598,3,332,166,0,597,595,1,0,0,0,597,598,1,0,0,0,598, - 599,1,0,0,0,599,600,5,24,0,0,600,604,5,274,0,0,601,602,5,104,0,0, - 602,603,5,249,0,0,603,605,5,274,0,0,604,601,1,0,0,0,604,605,1,0, - 0,0,605,606,1,0,0,0,606,607,5,206,0,0,607,608,5,249,0,0,608,609, - 5,274,0,0,609,610,5,126,0,0,610,611,5,249,0,0,611,615,5,274,0,0, - 612,613,5,18,0,0,613,614,5,249,0,0,614,616,5,274,0,0,615,612,1,0, - 0,0,615,616,1,0,0,0,616,620,1,0,0,0,617,618,5,20,0,0,618,619,5,249, - 0,0,619,621,5,274,0,0,620,617,1,0,0,0,620,621,1,0,0,0,621,625,1, - 0,0,0,622,623,5,187,0,0,623,624,5,249,0,0,624,626,5,274,0,0,625, - 622,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,628,5,76,0,0,628, - 629,5,249,0,0,629,631,5,274,0,0,630,627,1,0,0,0,630,631,1,0,0,0, - 631,23,1,0,0,0,632,633,5,37,0,0,633,635,5,84,0,0,634,636,3,172,86, - 0,635,634,1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,650,3,180, - 90,0,638,647,5,265,0,0,639,644,3,332,166,0,640,641,5,263,0,0,641, - 643,3,332,166,0,642,640,1,0,0,0,643,646,1,0,0,0,644,642,1,0,0,0, - 644,645,1,0,0,0,645,648,1,0,0,0,646,644,1,0,0,0,647,639,1,0,0,0, - 647,648,1,0,0,0,648,649,1,0,0,0,649,651,5,266,0,0,650,638,1,0,0, - 0,650,651,1,0,0,0,651,654,1,0,0,0,652,653,5,160,0,0,653,655,3,332, - 166,0,654,652,1,0,0,0,654,655,1,0,0,0,655,656,1,0,0,0,656,657,5, - 24,0,0,657,658,5,274,0,0,658,659,5,186,0,0,659,660,5,249,0,0,660, - 661,3,318,159,0,661,25,1,0,0,0,662,681,3,28,14,0,663,681,3,62,31, - 0,664,681,3,60,30,0,665,681,3,58,29,0,666,681,3,54,27,0,667,681, - 3,56,28,0,668,681,3,52,26,0,669,681,3,48,24,0,670,681,3,50,25,0, - 671,681,3,46,23,0,672,681,3,44,22,0,673,681,3,42,21,0,674,681,3, - 40,20,0,675,681,3,34,17,0,676,681,3,30,15,0,677,681,3,32,16,0,678, - 681,3,36,18,0,679,681,3,38,19,0,680,662,1,0,0,0,680,663,1,0,0,0, - 680,664,1,0,0,0,680,665,1,0,0,0,680,666,1,0,0,0,680,667,1,0,0,0, - 680,668,1,0,0,0,680,669,1,0,0,0,680,670,1,0,0,0,680,671,1,0,0,0, - 680,672,1,0,0,0,680,673,1,0,0,0,680,674,1,0,0,0,680,675,1,0,0,0, - 680,676,1,0,0,0,680,677,1,0,0,0,680,678,1,0,0,0,680,679,1,0,0,0, - 681,27,1,0,0,0,682,683,5,4,0,0,683,684,5,46,0,0,684,685,3,184,92, - 0,685,686,5,176,0,0,686,687,5,142,0,0,687,688,7,1,0,0,688,689,3, - 362,181,0,689,29,1,0,0,0,690,691,5,4,0,0,691,692,5,188,0,0,692,693, - 3,186,93,0,693,694,5,176,0,0,694,695,5,32,0,0,695,696,5,182,0,0, - 696,697,3,192,96,0,697,698,5,265,0,0,698,699,3,232,116,0,699,700, - 5,249,0,0,700,706,3,318,159,0,701,702,5,263,0,0,702,703,3,232,116, - 0,703,704,5,249,0,0,704,705,3,318,159,0,705,707,1,0,0,0,706,701, - 1,0,0,0,706,707,1,0,0,0,707,708,1,0,0,0,708,709,5,266,0,0,709,31, - 1,0,0,0,710,711,5,4,0,0,711,712,5,188,0,0,712,715,3,186,93,0,713, - 714,5,145,0,0,714,716,3,308,154,0,715,713,1,0,0,0,715,716,1,0,0, - 0,716,717,1,0,0,0,717,728,5,176,0,0,718,719,5,30,0,0,719,720,5,94, - 0,0,720,725,3,318,159,0,721,722,5,216,0,0,722,723,5,151,0,0,723, - 724,5,249,0,0,724,726,3,364,182,0,725,721,1,0,0,0,725,726,1,0,0, - 0,726,729,1,0,0,0,727,729,5,197,0,0,728,718,1,0,0,0,728,727,1,0, - 0,0,729,33,1,0,0,0,730,731,5,4,0,0,731,732,5,188,0,0,732,733,3,186, - 93,0,733,734,5,31,0,0,734,735,3,192,96,0,735,736,3,224,112,0,736, - 35,1,0,0,0,737,738,5,4,0,0,738,739,5,188,0,0,739,740,3,186,93,0, - 740,742,5,58,0,0,741,743,5,32,0,0,742,741,1,0,0,0,742,743,1,0,0, - 0,743,744,1,0,0,0,744,745,3,192,96,0,745,37,1,0,0,0,746,747,5,4, - 0,0,747,748,5,188,0,0,748,749,3,186,93,0,749,750,5,176,0,0,750,751, - 5,142,0,0,751,752,7,1,0,0,752,753,3,362,181,0,753,39,1,0,0,0,754, - 755,5,4,0,0,755,756,5,188,0,0,756,762,3,186,93,0,757,763,5,158,0, - 0,758,760,5,1,0,0,759,761,3,172,86,0,760,759,1,0,0,0,760,761,1,0, - 0,0,761,763,1,0,0,0,762,757,1,0,0,0,762,758,1,0,0,0,763,764,1,0, - 0,0,764,765,5,33,0,0,765,766,5,265,0,0,766,771,3,224,112,0,767,768, - 5,263,0,0,768,770,3,224,112,0,769,767,1,0,0,0,770,773,1,0,0,0,771, - 772,1,0,0,0,771,769,1,0,0,0,772,774,1,0,0,0,773,771,1,0,0,0,774, - 775,5,266,0,0,775,41,1,0,0,0,776,777,5,4,0,0,777,778,5,188,0,0,778, - 779,3,186,93,0,779,780,5,1,0,0,780,782,5,32,0,0,781,783,3,172,86, - 0,782,781,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785,3,226, - 113,0,785,43,1,0,0,0,786,787,5,4,0,0,787,788,5,188,0,0,788,789,3, - 186,93,0,789,791,5,4,0,0,790,792,5,32,0,0,791,790,1,0,0,0,791,792, - 1,0,0,0,792,793,1,0,0,0,793,802,3,192,96,0,794,798,5,176,0,0,795, - 799,3,230,115,0,796,797,5,34,0,0,797,799,3,318,159,0,798,795,1,0, - 0,0,798,796,1,0,0,0,799,803,1,0,0,0,800,801,5,58,0,0,801,803,5,51, - 0,0,802,794,1,0,0,0,802,800,1,0,0,0,803,45,1,0,0,0,804,805,5,4,0, - 0,805,806,5,188,0,0,806,807,3,186,93,0,807,809,5,1,0,0,808,810,3, - 172,86,0,809,808,1,0,0,0,809,810,1,0,0,0,810,823,1,0,0,0,811,812, - 5,145,0,0,812,815,3,308,154,0,813,814,5,24,0,0,814,816,3,318,159, - 0,815,813,1,0,0,0,815,816,1,0,0,0,816,818,1,0,0,0,817,819,3,244, - 122,0,818,817,1,0,0,0,818,819,1,0,0,0,819,824,1,0,0,0,820,821,5, - 154,0,0,821,822,5,145,0,0,822,824,3,242,121,0,823,811,1,0,0,0,823, - 820,1,0,0,0,824,47,1,0,0,0,825,826,5,4,0,0,826,827,5,188,0,0,827, - 830,3,186,93,0,828,829,5,145,0,0,829,831,3,308,154,0,830,828,1,0, - 0,0,830,831,1,0,0,0,831,832,1,0,0,0,832,844,5,176,0,0,833,834,5, - 72,0,0,834,845,3,234,117,0,835,836,5,168,0,0,836,837,5,79,0,0,837, - 845,3,258,129,0,838,839,5,24,0,0,839,845,3,318,159,0,840,841,5,25, - 0,0,841,845,3,252,126,0,842,843,5,175,0,0,843,845,3,252,126,0,844, - 833,1,0,0,0,844,835,1,0,0,0,844,838,1,0,0,0,844,840,1,0,0,0,844, - 842,1,0,0,0,845,49,1,0,0,0,846,847,5,4,0,0,847,848,5,188,0,0,848, - 849,3,186,93,0,849,850,5,155,0,0,850,851,5,146,0,0,851,51,1,0,0, - 0,852,853,5,4,0,0,853,854,5,188,0,0,854,855,3,186,93,0,855,857,5, - 58,0,0,856,858,3,170,85,0,857,856,1,0,0,0,857,858,1,0,0,0,858,867, - 1,0,0,0,859,860,5,145,0,0,860,862,3,308,154,0,861,863,5,22,0,0,862, - 861,1,0,0,0,862,863,1,0,0,0,863,868,1,0,0,0,864,865,5,154,0,0,865, - 866,5,145,0,0,866,868,3,242,121,0,867,859,1,0,0,0,867,864,1,0,0, - 0,868,53,1,0,0,0,869,870,5,4,0,0,870,871,5,212,0,0,871,873,3,188, - 94,0,872,874,3,202,101,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875, - 1,0,0,0,875,876,5,9,0,0,876,877,3,206,103,0,877,55,1,0,0,0,878,879, - 5,4,0,0,879,880,5,212,0,0,880,881,3,188,94,0,881,882,5,156,0,0,882, - 883,5,193,0,0,883,884,3,188,94,0,884,57,1,0,0,0,885,886,5,4,0,0, - 886,887,5,212,0,0,887,888,3,188,94,0,888,889,5,176,0,0,889,890,5, - 142,0,0,890,891,7,1,0,0,891,892,3,358,179,0,892,59,1,0,0,0,893,894, - 5,4,0,0,894,895,5,188,0,0,895,896,3,186,93,0,896,897,5,156,0,0,897, - 898,5,193,0,0,898,899,3,186,93,0,899,61,1,0,0,0,900,901,5,4,0,0, - 901,902,5,212,0,0,902,903,3,188,94,0,903,904,7,2,0,0,904,905,5,25, - 0,0,905,906,3,252,126,0,906,63,1,0,0,0,907,909,5,196,0,0,908,910, - 5,188,0,0,909,908,1,0,0,0,909,910,1,0,0,0,910,912,1,0,0,0,911,913, - 3,170,85,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914,915, - 3,186,93,0,915,65,1,0,0,0,916,918,5,56,0,0,917,919,5,46,0,0,918, - 917,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,922,7,3,0,0,921, - 920,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,358,179,0, - 924,67,1,0,0,0,925,928,3,70,35,0,926,928,3,72,36,0,927,925,1,0,0, - 0,927,926,1,0,0,0,928,69,1,0,0,0,929,930,5,36,0,0,930,931,5,182, - 0,0,931,933,3,186,93,0,932,934,3,296,148,0,933,932,1,0,0,0,933,934, - 1,0,0,0,934,947,1,0,0,0,935,936,5,190,0,0,936,937,5,185,0,0,937, - 938,5,265,0,0,938,939,3,364,182,0,939,945,5,266,0,0,940,941,5,157, - 0,0,941,942,5,265,0,0,942,943,3,364,182,0,943,944,5,266,0,0,944, - 946,1,0,0,0,945,940,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947, - 935,1,0,0,0,947,948,1,0,0,0,948,71,1,0,0,0,949,950,5,36,0,0,950, - 951,5,96,0,0,951,952,5,182,0,0,952,958,3,186,93,0,953,954,5,145, - 0,0,954,955,5,265,0,0,955,956,3,308,154,0,956,957,5,266,0,0,957, - 959,1,0,0,0,958,953,1,0,0,0,958,959,1,0,0,0,959,73,1,0,0,0,960,967, - 3,86,43,0,961,967,3,84,42,0,962,967,3,82,41,0,963,967,3,78,39,0, - 964,967,3,80,40,0,965,967,3,76,38,0,966,960,1,0,0,0,966,961,1,0, - 0,0,966,962,1,0,0,0,966,963,1,0,0,0,966,964,1,0,0,0,966,965,1,0, - 0,0,967,75,1,0,0,0,968,969,5,58,0,0,969,971,7,0,0,0,970,972,3,170, - 85,0,971,970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,184, - 92,0,974,976,7,4,0,0,975,974,1,0,0,0,975,976,1,0,0,0,976,77,1,0, - 0,0,977,978,5,58,0,0,978,980,5,212,0,0,979,981,3,170,85,0,980,979, - 1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983,3,188,94,0,983,79, - 1,0,0,0,984,985,5,58,0,0,985,987,5,188,0,0,986,988,3,170,85,0,987, - 986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,991,3,186,93,0,990, - 992,5,22,0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,81,1,0,0,0,993, - 995,5,58,0,0,994,996,5,96,0,0,995,994,1,0,0,0,995,996,1,0,0,0,996, - 997,1,0,0,0,997,998,5,182,0,0,998,1001,3,186,93,0,999,1000,5,145, - 0,0,1000,1002,3,308,154,0,1001,999,1,0,0,0,1001,1002,1,0,0,0,1002, - 83,1,0,0,0,1003,1005,5,58,0,0,1004,1006,5,12,0,0,1005,1004,1,0,0, - 0,1005,1006,1,0,0,0,1006,1007,1,0,0,0,1007,1009,5,84,0,0,1008,1010, - 3,170,85,0,1009,1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0, - 1011,1024,3,190,95,0,1012,1021,5,265,0,0,1013,1018,3,332,166,0,1014, - 1015,5,263,0,0,1015,1017,3,332,166,0,1016,1014,1,0,0,0,1017,1020, - 1,0,0,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1022,1,0,0,0,1020, - 1018,1,0,0,0,1021,1013,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0, - 0,1023,1025,5,266,0,0,1024,1012,1,0,0,0,1024,1025,1,0,0,0,1025,85, - 1,0,0,0,1026,1027,5,58,0,0,1027,1028,5,166,0,0,1028,1029,3,362,181, - 0,1029,87,1,0,0,0,1030,1033,3,90,45,0,1031,1033,3,92,46,0,1032,1030, - 1,0,0,0,1032,1031,1,0,0,0,1033,89,1,0,0,0,1034,1035,5,86,0,0,1035, - 1036,5,166,0,0,1036,1037,3,362,181,0,1037,1038,5,193,0,0,1038,1039, - 5,87,0,0,1039,1040,3,362,181,0,1040,91,1,0,0,0,1041,1042,5,86,0, - 0,1042,1043,3,354,177,0,1043,1044,5,136,0,0,1044,1046,3,356,178, - 0,1045,1047,3,358,179,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047, - 1048,1,0,0,0,1048,1049,5,193,0,0,1049,1050,3,360,180,0,1050,93,1, - 0,0,0,1051,1054,3,96,48,0,1052,1054,3,98,49,0,1053,1051,1,0,0,0, - 1053,1052,1,0,0,0,1054,95,1,0,0,0,1055,1056,5,161,0,0,1056,1057, - 5,166,0,0,1057,1058,3,362,181,0,1058,1059,5,82,0,0,1059,1060,5,87, - 0,0,1060,1061,3,362,181,0,1061,97,1,0,0,0,1062,1066,5,161,0,0,1063, - 1064,5,86,0,0,1064,1065,5,137,0,0,1065,1067,5,78,0,0,1066,1063,1, - 0,0,0,1066,1067,1,0,0,0,1067,1068,1,0,0,0,1068,1069,3,354,177,0, - 1069,1070,5,136,0,0,1070,1072,3,356,178,0,1071,1073,3,358,179,0, - 1072,1071,1,0,0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1080, - 5,82,0,0,1075,1081,3,360,180,0,1076,1078,5,166,0,0,1077,1076,1,0, - 0,0,1077,1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081,3,362,181,0,1080, - 1075,1,0,0,0,1080,1077,1,0,0,0,1081,99,1,0,0,0,1082,1084,3,208,104, - 0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1085,1,0,0,0,1085,1086, - 5,99,0,0,1086,1088,7,5,0,0,1087,1089,5,188,0,0,1088,1087,1,0,0,0, - 1088,1089,1,0,0,0,1089,1090,1,0,0,0,1090,1092,3,186,93,0,1091,1093, - 3,296,148,0,1092,1091,1,0,0,0,1092,1093,1,0,0,0,1093,1106,1,0,0, - 0,1094,1095,5,145,0,0,1095,1096,5,265,0,0,1096,1101,3,308,154,0, - 1097,1098,5,263,0,0,1098,1100,3,308,154,0,1099,1097,1,0,0,0,1100, - 1103,1,0,0,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102,1104,1,0,0, - 0,1103,1101,1,0,0,0,1104,1105,5,266,0,0,1105,1107,1,0,0,0,1106,1094, - 1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,3,206,103, - 0,1109,101,1,0,0,0,1110,1113,3,104,52,0,1111,1113,3,106,53,0,1112, - 1110,1,0,0,0,1112,1111,1,0,0,0,1113,103,1,0,0,0,1114,1116,5,50,0, - 0,1115,1117,5,82,0,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,1118, - 1,0,0,0,1118,1121,3,186,93,0,1119,1120,5,215,0,0,1120,1122,3,310, - 155,0,1121,1119,1,0,0,0,1121,1122,1,0,0,0,1122,105,1,0,0,0,1123, - 1124,5,50,0,0,1124,1129,3,186,93,0,1125,1127,5,9,0,0,1126,1125,1, - 0,0,0,1126,1127,1,0,0,0,1127,1128,1,0,0,0,1128,1130,3,362,181,0, - 1129,1126,1,0,0,0,1129,1130,1,0,0,0,1130,1131,1,0,0,0,1131,1140, - 5,82,0,0,1132,1137,3,284,142,0,1133,1134,5,263,0,0,1134,1136,3,284, - 142,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135,1,0,0,0,1137, - 1138,1,0,0,0,1138,1141,1,0,0,0,1139,1137,1,0,0,0,1140,1132,1,0,0, - 0,1140,1141,1,0,0,0,1141,1144,1,0,0,0,1142,1143,5,215,0,0,1143,1145, - 3,310,155,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,107,1,0,0,0, - 1146,1147,5,54,0,0,1147,1148,3,186,93,0,1148,1149,5,176,0,0,1149, - 1159,3,198,99,0,1150,1151,5,82,0,0,1151,1156,3,284,142,0,1152,1153, - 5,263,0,0,1153,1155,3,284,142,0,1154,1152,1,0,0,0,1155,1158,1,0, - 0,0,1156,1154,1,0,0,0,1156,1157,1,0,0,0,1157,1160,1,0,0,0,1158,1156, - 1,0,0,0,1159,1150,1,0,0,0,1159,1160,1,0,0,0,1160,1163,1,0,0,0,1161, - 1162,5,215,0,0,1162,1164,3,310,155,0,1163,1161,1,0,0,0,1163,1164, - 1,0,0,0,1164,109,1,0,0,0,1165,1166,5,207,0,0,1166,1168,5,103,0,0, - 1167,1169,5,188,0,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1170, - 1,0,0,0,1170,1172,3,186,93,0,1171,1173,3,296,148,0,1172,1171,1,0, - 0,0,1172,1173,1,0,0,0,1173,1174,1,0,0,0,1174,1175,3,206,103,0,1175, - 111,1,0,0,0,1176,1189,3,132,66,0,1177,1189,3,134,67,0,1178,1189, - 3,136,68,0,1179,1189,3,130,65,0,1180,1189,3,128,64,0,1181,1189,3, - 126,63,0,1182,1189,3,124,62,0,1183,1189,3,122,61,0,1184,1189,3,120, - 60,0,1185,1189,3,118,59,0,1186,1189,3,116,58,0,1187,1189,3,114,57, - 0,1188,1176,1,0,0,0,1188,1177,1,0,0,0,1188,1178,1,0,0,0,1188,1179, - 1,0,0,0,1188,1180,1,0,0,0,1188,1181,1,0,0,0,1188,1182,1,0,0,0,1188, - 1183,1,0,0,0,1188,1184,1,0,0,0,1188,1185,1,0,0,0,1188,1186,1,0,0, - 0,1188,1187,1,0,0,0,1189,113,1,0,0,0,1190,1191,5,179,0,0,1191,1203, - 7,6,0,0,1192,1194,5,115,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1200,3,318,159,0,1196,1197,5,271,0,0,1197, - 1199,3,318,159,0,1198,1196,1,0,0,0,1199,1202,1,0,0,0,1200,1198,1, - 0,0,0,1200,1201,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1203, - 1193,1,0,0,0,1203,1204,1,0,0,0,1204,115,1,0,0,0,1205,1206,5,179, - 0,0,1206,1209,5,189,0,0,1207,1208,5,94,0,0,1208,1210,3,186,93,0, - 1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210,1222,1,0,0,0,1211,1213, - 5,115,0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0, - 1214,1219,3,318,159,0,1215,1216,5,271,0,0,1216,1218,3,318,159,0, - 1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, - 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1212,1,0,0,0,1222, - 1223,1,0,0,0,1223,117,1,0,0,0,1224,1226,5,179,0,0,1225,1227,7,7, - 0,0,1226,1225,1,0,0,0,1226,1227,1,0,0,0,1227,1228,1,0,0,0,1228,1231, - 5,85,0,0,1229,1230,5,94,0,0,1230,1232,3,184,92,0,1231,1229,1,0,0, - 0,1231,1232,1,0,0,0,1232,1244,1,0,0,0,1233,1235,5,115,0,0,1234,1233, - 1,0,0,0,1234,1235,1,0,0,0,1235,1236,1,0,0,0,1236,1241,3,318,159, - 0,1237,1238,5,271,0,0,1238,1240,3,318,159,0,1239,1237,1,0,0,0,1240, - 1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1245,1,0,0, - 0,1243,1241,1,0,0,0,1244,1234,1,0,0,0,1244,1245,1,0,0,0,1245,119, - 1,0,0,0,1246,1247,5,179,0,0,1247,1248,5,37,0,0,1248,1249,5,188,0, - 0,1249,1250,3,186,93,0,1250,121,1,0,0,0,1251,1252,5,179,0,0,1252, - 1253,5,37,0,0,1253,1254,5,212,0,0,1254,1255,3,188,94,0,1255,123, - 1,0,0,0,1256,1257,5,179,0,0,1257,1258,5,188,0,0,1258,1259,5,182, - 0,0,1259,1260,3,186,93,0,1260,125,1,0,0,0,1261,1262,5,179,0,0,1262, - 1263,5,32,0,0,1263,1264,5,182,0,0,1264,1265,3,186,93,0,1265,127, - 1,0,0,0,1266,1268,5,179,0,0,1267,1269,5,154,0,0,1268,1267,1,0,0, - 0,1268,1269,1,0,0,0,1269,1270,1,0,0,0,1270,1271,5,146,0,0,1271,1272, - 3,186,93,0,1272,129,1,0,0,0,1273,1274,5,179,0,0,1274,1275,5,73,0, - 0,1275,1276,5,94,0,0,1276,1286,3,186,93,0,1277,1278,5,145,0,0,1278, - 1279,5,265,0,0,1279,1282,3,308,154,0,1280,1281,5,263,0,0,1281,1283, - 3,308,154,0,1282,1280,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0, - 0,1284,1285,5,266,0,0,1285,1287,1,0,0,0,1286,1277,1,0,0,0,1286,1287, - 1,0,0,0,1287,131,1,0,0,0,1288,1290,5,179,0,0,1289,1291,5,39,0,0, - 1290,1289,1,0,0,0,1290,1291,1,0,0,0,1291,1292,1,0,0,0,1292,1293, - 5,167,0,0,1293,133,1,0,0,0,1294,1295,5,179,0,0,1295,1296,5,166,0, - 0,1296,1297,5,86,0,0,1297,1298,5,87,0,0,1298,1299,3,362,181,0,1299, - 135,1,0,0,0,1300,1315,3,138,69,0,1301,1315,3,140,70,0,1302,1315, - 3,142,71,0,1303,1304,5,179,0,0,1304,1305,5,86,0,0,1305,1306,7,8, - 0,0,1306,1312,3,362,181,0,1307,1308,5,136,0,0,1308,1310,7,9,0,0, - 1309,1311,3,358,179,0,1310,1309,1,0,0,0,1310,1311,1,0,0,0,1311,1313, - 1,0,0,0,1312,1307,1,0,0,0,1312,1313,1,0,0,0,1313,1315,1,0,0,0,1314, - 1300,1,0,0,0,1314,1301,1,0,0,0,1314,1302,1,0,0,0,1314,1303,1,0,0, - 0,1315,137,1,0,0,0,1316,1317,5,179,0,0,1317,1318,5,86,0,0,1318,1319, - 7,8,0,0,1319,1325,3,362,181,0,1320,1321,5,136,0,0,1321,1323,5,46, - 0,0,1322,1324,3,184,92,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324, - 1326,1,0,0,0,1325,1320,1,0,0,0,1325,1326,1,0,0,0,1326,139,1,0,0, - 0,1327,1328,5,179,0,0,1328,1329,5,86,0,0,1329,1330,7,8,0,0,1330, - 1336,3,362,181,0,1331,1332,5,136,0,0,1332,1334,5,188,0,0,1333,1335, - 3,186,93,0,1334,1333,1,0,0,0,1334,1335,1,0,0,0,1335,1337,1,0,0,0, - 1336,1331,1,0,0,0,1336,1337,1,0,0,0,1337,141,1,0,0,0,1338,1339,5, - 179,0,0,1339,1340,5,86,0,0,1340,1341,7,8,0,0,1341,1347,3,362,181, - 0,1342,1343,5,136,0,0,1343,1345,5,32,0,0,1344,1346,3,192,96,0,1345, - 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1342,1,0,0, - 0,1347,1348,1,0,0,0,1348,143,1,0,0,0,1349,1353,3,146,73,0,1350,1353, - 3,148,74,0,1351,1353,3,150,75,0,1352,1349,1,0,0,0,1352,1350,1,0, - 0,0,1352,1351,1,0,0,0,1353,145,1,0,0,0,1354,1355,5,34,0,0,1355,1356, - 5,136,0,0,1356,1357,5,46,0,0,1357,1358,3,184,92,0,1358,1361,5,108, - 0,0,1359,1362,3,318,159,0,1360,1362,5,133,0,0,1361,1359,1,0,0,0, - 1361,1360,1,0,0,0,1362,147,1,0,0,0,1363,1364,5,34,0,0,1364,1365, - 5,136,0,0,1365,1366,5,188,0,0,1366,1367,3,186,93,0,1367,1370,5,108, - 0,0,1368,1371,3,318,159,0,1369,1371,5,133,0,0,1370,1368,1,0,0,0, - 1370,1369,1,0,0,0,1371,149,1,0,0,0,1372,1373,5,34,0,0,1373,1374, - 5,136,0,0,1374,1375,5,32,0,0,1375,1376,3,192,96,0,1376,1379,5,108, - 0,0,1377,1380,3,318,159,0,1378,1380,5,133,0,0,1379,1377,1,0,0,0, - 1379,1378,1,0,0,0,1380,151,1,0,0,0,1381,1382,5,67,0,0,1382,1383, - 3,4,2,0,1383,153,1,0,0,0,1384,1390,5,176,0,0,1385,1391,5,2,0,0,1386, - 1387,3,362,181,0,1387,1388,5,249,0,0,1388,1389,3,308,154,0,1389, - 1391,1,0,0,0,1390,1385,1,0,0,0,1390,1386,1,0,0,0,1390,1391,1,0,0, - 0,1391,155,1,0,0,0,1392,1393,5,264,0,0,1393,1394,5,180,0,0,1394, - 1404,5,265,0,0,1395,1397,3,318,159,0,1396,1395,1,0,0,0,1396,1397, - 1,0,0,0,1397,1405,1,0,0,0,1398,1401,3,318,159,0,1399,1400,5,263, - 0,0,1400,1402,3,308,154,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402, - 1405,1,0,0,0,1403,1405,3,308,154,0,1404,1396,1,0,0,0,1404,1398,1, - 0,0,0,1404,1403,1,0,0,0,1405,1406,1,0,0,0,1406,1407,5,266,0,0,1407, - 157,1,0,0,0,1408,1409,5,107,0,0,1409,1410,5,121,0,0,1410,1411,3, - 186,93,0,1411,159,1,0,0,0,1412,1413,5,118,0,0,1413,1414,5,45,0,0, - 1414,1415,5,98,0,0,1415,1417,5,274,0,0,1416,1418,5,144,0,0,1417, - 1416,1,0,0,0,1417,1418,1,0,0,0,1418,1419,1,0,0,0,1419,1420,5,103, - 0,0,1420,1421,5,188,0,0,1421,1431,3,186,93,0,1422,1423,5,145,0,0, - 1423,1424,5,265,0,0,1424,1427,3,308,154,0,1425,1426,5,263,0,0,1426, - 1428,3,308,154,0,1427,1425,1,0,0,0,1427,1428,1,0,0,0,1428,1429,1, - 0,0,0,1429,1430,5,266,0,0,1430,1432,1,0,0,0,1431,1422,1,0,0,0,1431, - 1432,1,0,0,0,1432,161,1,0,0,0,1433,1437,3,164,82,0,1434,1437,3,166, - 83,0,1435,1437,3,168,84,0,1436,1433,1,0,0,0,1436,1434,1,0,0,0,1436, - 1435,1,0,0,0,1437,163,1,0,0,0,1438,1439,5,162,0,0,1439,1452,3,186, - 93,0,1440,1441,5,145,0,0,1441,1442,5,265,0,0,1442,1447,3,308,154, - 0,1443,1444,5,263,0,0,1444,1446,3,308,154,0,1445,1443,1,0,0,0,1446, - 1449,1,0,0,0,1447,1448,1,0,0,0,1447,1445,1,0,0,0,1448,1450,1,0,0, - 0,1449,1447,1,0,0,0,1450,1451,5,266,0,0,1451,1453,1,0,0,0,1452,1440, - 1,0,0,0,1452,1453,1,0,0,0,1453,165,1,0,0,0,1454,1455,5,162,0,0,1455, - 1456,5,13,0,0,1456,167,1,0,0,0,1457,1458,5,162,0,0,1458,1459,5,85, - 0,0,1459,1460,3,190,95,0,1460,169,1,0,0,0,1461,1462,5,93,0,0,1462, - 1463,5,66,0,0,1463,171,1,0,0,0,1464,1465,5,93,0,0,1465,1466,5,132, - 0,0,1466,1467,5,66,0,0,1467,173,1,0,0,0,1468,1469,3,358,179,0,1469, - 175,1,0,0,0,1470,1471,3,358,179,0,1471,177,1,0,0,0,1472,1473,3,358, - 179,0,1473,179,1,0,0,0,1474,1475,3,358,179,0,1475,181,1,0,0,0,1476, - 1477,3,358,179,0,1477,183,1,0,0,0,1478,1479,3,358,179,0,1479,185, - 1,0,0,0,1480,1485,3,362,181,0,1481,1482,5,261,0,0,1482,1484,3,362, - 181,0,1483,1481,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1485, - 1486,1,0,0,0,1486,187,1,0,0,0,1487,1485,1,0,0,0,1488,1493,3,362, - 181,0,1489,1490,5,261,0,0,1490,1492,3,362,181,0,1491,1489,1,0,0, - 0,1492,1495,1,0,0,0,1493,1491,1,0,0,0,1493,1494,1,0,0,0,1494,189, - 1,0,0,0,1495,1493,1,0,0,0,1496,1499,3,366,183,0,1497,1499,3,358, - 179,0,1498,1496,1,0,0,0,1498,1497,1,0,0,0,1499,191,1,0,0,0,1500, - 1503,3,358,179,0,1501,1503,4,96,0,0,1502,1500,1,0,0,0,1502,1501, - 1,0,0,0,1503,193,1,0,0,0,1504,1507,3,186,93,0,1505,1507,3,188,94, - 0,1506,1504,1,0,0,0,1506,1505,1,0,0,0,1507,195,1,0,0,0,1508,1509, - 5,21,0,0,1509,1510,5,26,0,0,1510,1512,3,296,148,0,1511,1508,1,0, - 0,0,1511,1512,1,0,0,0,1512,1514,1,0,0,0,1513,1515,3,222,111,0,1514, - 1513,1,0,0,0,1514,1515,1,0,0,0,1515,1519,1,0,0,0,1516,1517,5,168, - 0,0,1517,1518,5,79,0,0,1518,1520,3,258,129,0,1519,1516,1,0,0,0,1519, - 1520,1,0,0,0,1520,1524,1,0,0,0,1521,1522,5,216,0,0,1522,1523,5,175, - 0,0,1523,1525,3,252,126,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525, - 1529,1,0,0,0,1526,1527,5,23,0,0,1527,1528,5,9,0,0,1528,1530,3,234, - 117,0,1529,1526,1,0,0,0,1529,1530,1,0,0,0,1530,1533,1,0,0,0,1531, - 1532,5,24,0,0,1532,1534,3,318,159,0,1533,1531,1,0,0,0,1533,1534, - 1,0,0,0,1534,1545,1,0,0,0,1535,1536,5,30,0,0,1536,1537,5,94,0,0, - 1537,1542,3,358,179,0,1538,1539,5,216,0,0,1539,1540,5,151,0,0,1540, - 1541,5,249,0,0,1541,1543,5,277,0,0,1542,1538,1,0,0,0,1542,1543,1, - 0,0,0,1543,1546,1,0,0,0,1544,1546,5,197,0,0,1545,1535,1,0,0,0,1545, - 1544,1,0,0,0,1545,1546,1,0,0,0,1546,1549,1,0,0,0,1547,1548,5,25, - 0,0,1548,1550,3,252,126,0,1549,1547,1,0,0,0,1549,1550,1,0,0,0,1550, - 197,1,0,0,0,1551,1556,3,200,100,0,1552,1553,5,263,0,0,1553,1555, - 3,200,100,0,1554,1552,1,0,0,0,1555,1558,1,0,0,0,1556,1554,1,0,0, - 0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1556,1,0,0,0,1559,1560, - 3,358,179,0,1560,1561,5,249,0,0,1561,1562,3,308,154,0,1562,201,1, - 0,0,0,1563,1565,5,265,0,0,1564,1566,3,204,102,0,1565,1564,1,0,0, - 0,1565,1566,1,0,0,0,1566,1573,1,0,0,0,1567,1569,5,263,0,0,1568,1570, - 3,204,102,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1572,1,0,0, - 0,1571,1567,1,0,0,0,1572,1575,1,0,0,0,1573,1571,1,0,0,0,1573,1574, - 1,0,0,0,1574,1576,1,0,0,0,1575,1573,1,0,0,0,1576,1577,5,266,0,0, - 1577,203,1,0,0,0,1578,1580,3,182,91,0,1579,1581,3,222,111,0,1580, - 1579,1,0,0,0,1580,1581,1,0,0,0,1581,205,1,0,0,0,1582,1584,3,208, - 104,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585, - 1586,3,262,131,0,1586,207,1,0,0,0,1587,1588,5,216,0,0,1588,1593, - 3,278,139,0,1589,1590,5,263,0,0,1590,1592,3,278,139,0,1591,1589, - 1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0,0,1593,1594,1,0,0,0,1594, - 209,1,0,0,0,1595,1593,1,0,0,0,1596,1597,5,150,0,0,1597,1598,5,110, - 0,0,1598,1600,3,296,148,0,1599,1601,5,53,0,0,1600,1599,1,0,0,0,1600, - 1601,1,0,0,0,1601,1605,1,0,0,0,1602,1606,5,225,0,0,1603,1604,5,263, - 0,0,1604,1606,5,225,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605, - 1606,1,0,0,0,1606,1610,1,0,0,0,1607,1611,5,226,0,0,1608,1609,5,263, - 0,0,1609,1611,5,226,0,0,1610,1607,1,0,0,0,1610,1608,1,0,0,0,1610, - 1611,1,0,0,0,1611,1624,1,0,0,0,1612,1613,5,263,0,0,1613,1616,3,212, - 106,0,1614,1616,3,212,106,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0, - 1616,1621,1,0,0,0,1617,1618,5,263,0,0,1618,1620,3,212,106,0,1619, - 1617,1,0,0,0,1620,1623,1,0,0,0,1621,1622,1,0,0,0,1621,1619,1,0,0, - 0,1622,1625,1,0,0,0,1623,1621,1,0,0,0,1624,1615,1,0,0,0,1624,1625, - 1,0,0,0,1625,211,1,0,0,0,1626,1627,5,81,0,0,1627,1628,5,110,0,0, - 1628,1629,3,296,148,0,1629,1630,5,224,0,0,1630,1631,3,186,93,0,1631, - 1633,3,296,148,0,1632,1634,5,53,0,0,1633,1632,1,0,0,0,1633,1634, - 1,0,0,0,1634,1636,1,0,0,0,1635,1637,5,225,0,0,1636,1635,1,0,0,0, - 1636,1637,1,0,0,0,1637,1639,1,0,0,0,1638,1640,5,226,0,0,1639,1638, - 1,0,0,0,1639,1640,1,0,0,0,1640,213,1,0,0,0,1641,1642,3,192,96,0, - 1642,1645,3,332,166,0,1643,1644,5,34,0,0,1644,1646,3,318,159,0,1645, - 1643,1,0,0,0,1645,1646,1,0,0,0,1646,215,1,0,0,0,1647,1648,3,182, - 91,0,1648,1650,3,332,166,0,1649,1651,3,222,111,0,1650,1649,1,0,0, - 0,1650,1651,1,0,0,0,1651,217,1,0,0,0,1652,1653,3,220,110,0,1653, - 219,1,0,0,0,1654,1655,3,182,91,0,1655,1663,3,332,166,0,1656,1660, - 3,228,114,0,1657,1659,3,228,114,0,1658,1657,1,0,0,0,1659,1662,1, - 0,0,0,1660,1661,1,0,0,0,1660,1658,1,0,0,0,1661,1664,1,0,0,0,1662, - 1660,1,0,0,0,1663,1656,1,0,0,0,1663,1664,1,0,0,0,1664,1666,1,0,0, - 0,1665,1667,3,222,111,0,1666,1665,1,0,0,0,1666,1667,1,0,0,0,1667, - 1670,1,0,0,0,1668,1669,5,150,0,0,1669,1671,5,110,0,0,1670,1668,1, - 0,0,0,1670,1671,1,0,0,0,1671,221,1,0,0,0,1672,1673,5,34,0,0,1673, - 1674,3,318,159,0,1674,223,1,0,0,0,1675,1683,3,214,107,0,1676,1680, - 3,228,114,0,1677,1679,3,228,114,0,1678,1677,1,0,0,0,1679,1682,1, - 0,0,0,1680,1681,1,0,0,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682, - 1680,1,0,0,0,1683,1676,1,0,0,0,1683,1684,1,0,0,0,1684,225,1,0,0, - 0,1685,1686,3,182,91,0,1686,1689,3,332,166,0,1687,1688,5,34,0,0, - 1688,1690,3,318,159,0,1689,1687,1,0,0,0,1689,1690,1,0,0,0,1690,1698, - 1,0,0,0,1691,1695,3,228,114,0,1692,1694,3,228,114,0,1693,1692,1, - 0,0,0,1694,1697,1,0,0,0,1695,1696,1,0,0,0,1695,1693,1,0,0,0,1696, - 1699,1,0,0,0,1697,1695,1,0,0,0,1698,1691,1,0,0,0,1698,1699,1,0,0, - 0,1699,227,1,0,0,0,1700,1702,5,132,0,0,1701,1700,1,0,0,0,1701,1702, - 1,0,0,0,1702,1703,1,0,0,0,1703,1706,5,133,0,0,1704,1706,3,230,115, - 0,1705,1701,1,0,0,0,1705,1704,1,0,0,0,1706,229,1,0,0,0,1707,1708, - 5,60,0,0,1708,1716,3,308,154,0,1709,1710,5,35,0,0,1710,1716,3,308, - 154,0,1711,1712,5,51,0,0,1712,1716,3,308,154,0,1713,1714,5,16,0, - 0,1714,1716,3,364,182,0,1715,1707,1,0,0,0,1715,1709,1,0,0,0,1715, - 1711,1,0,0,0,1715,1713,1,0,0,0,1716,231,1,0,0,0,1717,1718,7,10,0, - 0,1718,233,1,0,0,0,1719,1720,7,11,0,0,1720,235,1,0,0,0,1721,1726, - 3,238,119,0,1722,1723,5,263,0,0,1723,1725,3,238,119,0,1724,1722, - 1,0,0,0,1725,1728,1,0,0,0,1726,1727,1,0,0,0,1726,1724,1,0,0,0,1727, - 1731,1,0,0,0,1728,1726,1,0,0,0,1729,1730,5,263,0,0,1730,1732,3,240, - 120,0,1731,1729,1,0,0,0,1731,1732,1,0,0,0,1732,1735,1,0,0,0,1733, - 1735,3,240,120,0,1734,1721,1,0,0,0,1734,1733,1,0,0,0,1735,237,1, - 0,0,0,1736,1738,5,89,0,0,1737,1739,3,296,148,0,1738,1737,1,0,0,0, - 1738,1739,1,0,0,0,1739,1740,1,0,0,0,1740,1741,5,146,0,0,1741,1742, - 3,364,182,0,1742,239,1,0,0,0,1743,1745,5,154,0,0,1744,1746,3,296, - 148,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, - 1748,5,265,0,0,1748,1749,5,145,0,0,1749,1755,3,242,121,0,1750,1751, - 5,263,0,0,1751,1752,5,145,0,0,1752,1754,3,242,121,0,1753,1750,1, - 0,0,0,1754,1757,1,0,0,0,1755,1756,1,0,0,0,1755,1753,1,0,0,0,1756, - 1758,1,0,0,0,1757,1755,1,0,0,0,1758,1759,5,266,0,0,1759,241,1,0, - 0,0,1760,1761,5,210,0,0,1761,1762,3,248,124,0,1762,1763,3,308,154, - 0,1763,1776,1,0,0,0,1764,1765,3,308,154,0,1765,1766,3,246,123,0, - 1766,1768,1,0,0,0,1767,1764,1,0,0,0,1767,1768,1,0,0,0,1768,1769, - 1,0,0,0,1769,1773,5,211,0,0,1770,1771,3,246,123,0,1771,1772,3,308, - 154,0,1772,1774,1,0,0,0,1773,1770,1,0,0,0,1773,1774,1,0,0,0,1774, - 1776,1,0,0,0,1775,1760,1,0,0,0,1775,1767,1,0,0,0,1776,243,1,0,0, - 0,1777,1778,5,30,0,0,1778,1779,5,94,0,0,1779,1784,3,362,181,0,1780, - 1781,5,216,0,0,1781,1782,5,151,0,0,1782,1783,5,249,0,0,1783,1785, - 3,364,182,0,1784,1780,1,0,0,0,1784,1785,1,0,0,0,1785,1788,1,0,0, - 0,1786,1788,5,197,0,0,1787,1777,1,0,0,0,1787,1786,1,0,0,0,1788,245, - 1,0,0,0,1789,1795,1,0,0,0,1790,1795,5,251,0,0,1791,1795,5,252,0, - 0,1792,1795,5,253,0,0,1793,1795,5,254,0,0,1794,1789,1,0,0,0,1794, - 1790,1,0,0,0,1794,1791,1,0,0,0,1794,1792,1,0,0,0,1794,1793,1,0,0, - 0,1795,247,1,0,0,0,1796,1805,5,249,0,0,1797,1805,5,250,0,0,1798, - 1805,5,115,0,0,1799,1805,5,164,0,0,1800,1805,5,163,0,0,1801,1805, - 5,15,0,0,1802,1805,5,94,0,0,1803,1805,3,246,123,0,1804,1796,1,0, - 0,0,1804,1797,1,0,0,0,1804,1798,1,0,0,0,1804,1799,1,0,0,0,1804,1800, - 1,0,0,0,1804,1801,1,0,0,0,1804,1802,1,0,0,0,1804,1803,1,0,0,0,1805, - 249,1,0,0,0,1806,1807,5,115,0,0,1807,1810,3,358,179,0,1808,1809, - 7,12,0,0,1809,1811,5,153,0,0,1810,1808,1,0,0,0,1810,1811,1,0,0,0, - 1811,251,1,0,0,0,1812,1813,5,265,0,0,1813,1818,3,260,130,0,1814, - 1815,5,263,0,0,1815,1817,3,260,130,0,1816,1814,1,0,0,0,1817,1820, - 1,0,0,0,1818,1816,1,0,0,0,1818,1819,1,0,0,0,1819,1821,1,0,0,0,1820, - 1818,1,0,0,0,1821,1822,5,266,0,0,1822,253,1,0,0,0,1823,1824,5,265, - 0,0,1824,1829,3,214,107,0,1825,1826,5,263,0,0,1826,1828,3,214,107, - 0,1827,1825,1,0,0,0,1828,1831,1,0,0,0,1829,1830,1,0,0,0,1829,1827, - 1,0,0,0,1830,1832,1,0,0,0,1831,1829,1,0,0,0,1832,1833,5,266,0,0, - 1833,255,1,0,0,0,1834,1839,3,308,154,0,1835,1836,5,263,0,0,1836, - 1838,3,308,154,0,1837,1835,1,0,0,0,1838,1841,1,0,0,0,1839,1837,1, - 0,0,0,1839,1840,1,0,0,0,1840,257,1,0,0,0,1841,1839,1,0,0,0,1842, - 1852,5,52,0,0,1843,1844,5,71,0,0,1844,1845,5,191,0,0,1845,1846,5, - 26,0,0,1846,1850,3,318,159,0,1847,1848,5,63,0,0,1848,1849,5,26,0, - 0,1849,1851,3,318,159,0,1850,1847,1,0,0,0,1850,1851,1,0,0,0,1851, - 1853,1,0,0,0,1852,1843,1,0,0,0,1852,1853,1,0,0,0,1853,1858,1,0,0, - 0,1854,1855,5,117,0,0,1855,1856,5,191,0,0,1856,1857,5,26,0,0,1857, - 1859,3,318,159,0,1858,1854,1,0,0,0,1858,1859,1,0,0,0,1859,259,1, - 0,0,0,1860,1863,3,362,181,0,1861,1862,5,249,0,0,1862,1864,3,308, - 154,0,1863,1861,1,0,0,0,1863,1864,1,0,0,0,1864,261,1,0,0,0,1865, - 1876,3,264,132,0,1866,1867,5,139,0,0,1867,1868,5,26,0,0,1868,1873, - 3,268,134,0,1869,1870,5,263,0,0,1870,1872,3,268,134,0,1871,1869, - 1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0,0,1873,1874,1,0,0,0,1874, - 1877,1,0,0,0,1875,1873,1,0,0,0,1876,1866,1,0,0,0,1876,1877,1,0,0, - 0,1877,1884,1,0,0,0,1878,1879,5,116,0,0,1879,1882,3,308,154,0,1880, - 1881,5,135,0,0,1881,1883,5,277,0,0,1882,1880,1,0,0,0,1882,1883,1, - 0,0,0,1883,1885,1,0,0,0,1884,1878,1,0,0,0,1884,1885,1,0,0,0,1885, - 263,1,0,0,0,1886,1887,6,132,-1,0,1887,1888,3,266,133,0,1888,1903, - 1,0,0,0,1889,1890,10,2,0,0,1890,1892,5,100,0,0,1891,1893,3,280,140, - 0,1892,1891,1,0,0,0,1892,1893,1,0,0,0,1893,1894,1,0,0,0,1894,1902, - 3,264,132,3,1895,1896,10,1,0,0,1896,1898,7,13,0,0,1897,1899,3,280, - 140,0,1898,1897,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900, - 1902,3,264,132,2,1901,1889,1,0,0,0,1901,1895,1,0,0,0,1902,1905,1, - 0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904,265,1,0,0,0,1905, - 1903,1,0,0,0,1906,1923,3,270,135,0,1907,1908,5,188,0,0,1908,1923, - 3,186,93,0,1909,1910,5,211,0,0,1910,1915,3,308,154,0,1911,1912,5, - 263,0,0,1912,1914,3,308,154,0,1913,1911,1,0,0,0,1914,1917,1,0,0, - 0,1915,1913,1,0,0,0,1915,1916,1,0,0,0,1916,1923,1,0,0,0,1917,1915, - 1,0,0,0,1918,1919,5,265,0,0,1919,1920,3,262,131,0,1920,1921,5,266, - 0,0,1921,1923,1,0,0,0,1922,1906,1,0,0,0,1922,1907,1,0,0,0,1922,1909, - 1,0,0,0,1922,1918,1,0,0,0,1923,267,1,0,0,0,1924,1926,3,306,153,0, - 1925,1927,7,14,0,0,1926,1925,1,0,0,0,1926,1927,1,0,0,0,1927,1930, - 1,0,0,0,1928,1929,5,134,0,0,1929,1931,7,15,0,0,1930,1928,1,0,0,0, - 1930,1931,1,0,0,0,1931,269,1,0,0,0,1932,1934,5,174,0,0,1933,1935, - 3,280,140,0,1934,1933,1,0,0,0,1934,1935,1,0,0,0,1935,1937,1,0,0, - 0,1936,1938,5,183,0,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939, - 1,0,0,0,1939,1944,3,282,141,0,1940,1941,5,263,0,0,1941,1943,3,282, - 141,0,1942,1940,1,0,0,0,1943,1946,1,0,0,0,1944,1942,1,0,0,0,1944, - 1945,1,0,0,0,1945,1956,1,0,0,0,1946,1944,1,0,0,0,1947,1948,5,82, - 0,0,1948,1953,3,284,142,0,1949,1950,5,263,0,0,1950,1952,3,284,142, - 0,1951,1949,1,0,0,0,1952,1955,1,0,0,0,1953,1951,1,0,0,0,1953,1954, - 1,0,0,0,1954,1957,1,0,0,0,1955,1953,1,0,0,0,1956,1947,1,0,0,0,1956, - 1957,1,0,0,0,1957,1960,1,0,0,0,1958,1959,5,215,0,0,1959,1961,3,310, - 155,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,1965,1,0,0,0,1962, - 1963,5,87,0,0,1963,1964,5,26,0,0,1964,1966,3,272,136,0,1965,1962, - 1,0,0,0,1965,1966,1,0,0,0,1966,1969,1,0,0,0,1967,1968,5,90,0,0,1968, - 1970,3,310,155,0,1969,1967,1,0,0,0,1969,1970,1,0,0,0,1970,271,1, - 0,0,0,1971,1973,3,280,140,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0, - 1973,1974,1,0,0,0,1974,1979,3,274,137,0,1975,1976,5,263,0,0,1976, - 1978,3,274,137,0,1977,1975,1,0,0,0,1978,1981,1,0,0,0,1979,1977,1, - 0,0,0,1979,1980,1,0,0,0,1980,273,1,0,0,0,1981,1979,1,0,0,0,1982, - 1983,3,276,138,0,1983,275,1,0,0,0,1984,1993,5,265,0,0,1985,1990, - 3,306,153,0,1986,1987,5,263,0,0,1987,1989,3,306,153,0,1988,1986, - 1,0,0,0,1989,1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991, - 1994,1,0,0,0,1992,1990,1,0,0,0,1993,1985,1,0,0,0,1993,1994,1,0,0, - 0,1994,1995,1,0,0,0,1995,1998,5,266,0,0,1996,1998,3,306,153,0,1997, - 1984,1,0,0,0,1997,1996,1,0,0,0,1998,277,1,0,0,0,1999,2001,3,362, - 181,0,2000,2002,3,296,148,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0, - 2002,2003,1,0,0,0,2003,2004,5,9,0,0,2004,2005,3,300,150,0,2005,279, - 1,0,0,0,2006,2007,7,16,0,0,2007,281,1,0,0,0,2008,2013,3,306,153, - 0,2009,2011,5,9,0,0,2010,2009,1,0,0,0,2010,2011,1,0,0,0,2011,2012, - 1,0,0,0,2012,2014,3,362,181,0,2013,2010,1,0,0,0,2013,2014,1,0,0, - 0,2014,2021,1,0,0,0,2015,2016,3,358,179,0,2016,2017,5,261,0,0,2017, - 2018,5,257,0,0,2018,2021,1,0,0,0,2019,2021,5,257,0,0,2020,2008,1, - 0,0,0,2020,2015,1,0,0,0,2020,2019,1,0,0,0,2021,283,1,0,0,0,2022, - 2023,6,142,-1,0,2023,2024,3,290,145,0,2024,2038,1,0,0,0,2025,2034, - 10,2,0,0,2026,2027,5,38,0,0,2027,2028,5,109,0,0,2028,2035,3,290, - 145,0,2029,2030,3,286,143,0,2030,2031,5,109,0,0,2031,2032,3,284, - 142,0,2032,2033,3,288,144,0,2033,2035,1,0,0,0,2034,2026,1,0,0,0, - 2034,2029,1,0,0,0,2035,2037,1,0,0,0,2036,2025,1,0,0,0,2037,2040, - 1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,285,1,0,0,0,2040, - 2038,1,0,0,0,2041,2043,5,97,0,0,2042,2041,1,0,0,0,2042,2043,1,0, - 0,0,2043,2073,1,0,0,0,2044,2046,5,114,0,0,2045,2047,5,97,0,0,2046, - 2045,1,0,0,0,2046,2047,1,0,0,0,2047,2073,1,0,0,0,2048,2050,5,165, - 0,0,2049,2051,5,97,0,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051, - 2073,1,0,0,0,2052,2054,5,114,0,0,2053,2055,5,141,0,0,2054,2053,1, - 0,0,0,2054,2055,1,0,0,0,2055,2073,1,0,0,0,2056,2058,5,165,0,0,2057, - 2059,5,141,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2073,1,0, - 0,0,2060,2062,5,83,0,0,2061,2063,5,141,0,0,2062,2061,1,0,0,0,2062, - 2063,1,0,0,0,2063,2073,1,0,0,0,2064,2065,5,114,0,0,2065,2073,5,177, - 0,0,2066,2067,5,165,0,0,2067,2073,5,177,0,0,2068,2069,5,114,0,0, - 2069,2073,5,7,0,0,2070,2071,5,165,0,0,2071,2073,5,7,0,0,2072,2042, - 1,0,0,0,2072,2044,1,0,0,0,2072,2048,1,0,0,0,2072,2052,1,0,0,0,2072, - 2056,1,0,0,0,2072,2060,1,0,0,0,2072,2064,1,0,0,0,2072,2066,1,0,0, - 0,2072,2068,1,0,0,0,2072,2070,1,0,0,0,2073,287,1,0,0,0,2074,2075, - 5,136,0,0,2075,2089,3,310,155,0,2076,2077,5,205,0,0,2077,2078,5, - 265,0,0,2078,2083,3,362,181,0,2079,2080,5,263,0,0,2080,2082,3,362, - 181,0,2081,2079,1,0,0,0,2082,2085,1,0,0,0,2083,2081,1,0,0,0,2083, - 2084,1,0,0,0,2084,2086,1,0,0,0,2085,2083,1,0,0,0,2086,2087,5,266, - 0,0,2087,2089,1,0,0,0,2088,2074,1,0,0,0,2088,2076,1,0,0,0,2089,289, - 1,0,0,0,2090,2103,3,294,147,0,2091,2092,5,190,0,0,2092,2093,3,292, - 146,0,2093,2094,5,265,0,0,2094,2095,3,308,154,0,2095,2101,5,266, - 0,0,2096,2097,5,157,0,0,2097,2098,5,265,0,0,2098,2099,3,308,154, - 0,2099,2100,5,266,0,0,2100,2102,1,0,0,0,2101,2096,1,0,0,0,2101,2102, - 1,0,0,0,2102,2104,1,0,0,0,2103,2091,1,0,0,0,2103,2104,1,0,0,0,2104, - 291,1,0,0,0,2105,2106,7,17,0,0,2106,293,1,0,0,0,2107,2115,3,298, - 149,0,2108,2110,5,9,0,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110, - 2111,1,0,0,0,2111,2113,3,362,181,0,2112,2114,3,296,148,0,2113,2112, - 1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115,2109,1,0,0,0,2115, - 2116,1,0,0,0,2116,295,1,0,0,0,2117,2118,5,265,0,0,2118,2123,3,192, - 96,0,2119,2120,5,263,0,0,2120,2122,3,192,96,0,2121,2119,1,0,0,0, - 2122,2125,1,0,0,0,2123,2121,1,0,0,0,2123,2124,1,0,0,0,2124,2126, - 1,0,0,0,2125,2123,1,0,0,0,2126,2127,5,266,0,0,2127,297,1,0,0,0,2128, - 2136,3,194,97,0,2129,2131,5,113,0,0,2130,2129,1,0,0,0,2130,2131, - 1,0,0,0,2131,2132,1,0,0,0,2132,2136,3,300,150,0,2133,2136,3,302, - 151,0,2134,2136,3,304,152,0,2135,2128,1,0,0,0,2135,2130,1,0,0,0, - 2135,2133,1,0,0,0,2135,2134,1,0,0,0,2136,299,1,0,0,0,2137,2138,5, - 265,0,0,2138,2139,3,206,103,0,2139,2140,5,266,0,0,2140,301,1,0,0, - 0,2141,2142,5,201,0,0,2142,2143,5,265,0,0,2143,2148,3,308,154,0, - 2144,2145,5,263,0,0,2145,2147,3,308,154,0,2146,2144,1,0,0,0,2147, - 2150,1,0,0,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2151,1,0,0, - 0,2150,2148,1,0,0,0,2151,2154,5,266,0,0,2152,2153,5,216,0,0,2153, - 2155,5,140,0,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,303,1,0, - 0,0,2156,2157,5,265,0,0,2157,2158,3,284,142,0,2158,2159,5,266,0, - 0,2159,305,1,0,0,0,2160,2163,3,192,96,0,2161,2163,3,308,154,0,2162, - 2160,1,0,0,0,2162,2161,1,0,0,0,2163,307,1,0,0,0,2164,2165,3,310, - 155,0,2165,309,1,0,0,0,2166,2167,6,155,-1,0,2167,2169,3,314,157, - 0,2168,2170,3,312,156,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170, - 2174,1,0,0,0,2171,2172,5,132,0,0,2172,2174,3,310,155,3,2173,2166, - 1,0,0,0,2173,2171,1,0,0,0,2174,2183,1,0,0,0,2175,2176,10,2,0,0,2176, - 2177,5,5,0,0,2177,2182,3,310,155,3,2178,2179,10,1,0,0,2179,2180, - 5,138,0,0,2180,2182,3,310,155,2,2181,2175,1,0,0,0,2181,2178,1,0, - 0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184,1,0,0,0,2184,311, - 1,0,0,0,2185,2183,1,0,0,0,2186,2187,3,320,160,0,2187,2188,3,314, - 157,0,2188,2245,1,0,0,0,2189,2190,3,320,160,0,2190,2191,3,322,161, - 0,2191,2192,3,300,150,0,2192,2245,1,0,0,0,2193,2195,5,132,0,0,2194, - 2193,1,0,0,0,2194,2195,1,0,0,0,2195,2196,1,0,0,0,2196,2197,5,15, - 0,0,2197,2198,3,314,157,0,2198,2199,5,5,0,0,2199,2200,3,314,157, - 0,2200,2245,1,0,0,0,2201,2203,5,132,0,0,2202,2201,1,0,0,0,2202,2203, - 1,0,0,0,2203,2204,1,0,0,0,2204,2205,5,94,0,0,2205,2206,5,265,0,0, - 2206,2211,3,308,154,0,2207,2208,5,263,0,0,2208,2210,3,308,154,0, - 2209,2207,1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212, - 1,0,0,0,2212,2214,1,0,0,0,2213,2211,1,0,0,0,2214,2215,5,266,0,0, - 2215,2245,1,0,0,0,2216,2218,5,132,0,0,2217,2216,1,0,0,0,2217,2218, - 1,0,0,0,2218,2219,1,0,0,0,2219,2220,5,94,0,0,2220,2245,3,300,150, - 0,2221,2223,5,132,0,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2224, - 1,0,0,0,2224,2225,7,18,0,0,2225,2228,3,314,157,0,2226,2227,5,62, - 0,0,2227,2229,3,314,157,0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229, - 2245,1,0,0,0,2230,2231,7,19,0,0,2231,2245,3,314,157,0,2232,2234, - 5,108,0,0,2233,2235,5,132,0,0,2234,2233,1,0,0,0,2234,2235,1,0,0, - 0,2235,2236,1,0,0,0,2236,2245,7,20,0,0,2237,2239,5,108,0,0,2238, - 2240,5,132,0,0,2239,2238,1,0,0,0,2239,2240,1,0,0,0,2240,2241,1,0, - 0,0,2241,2242,5,57,0,0,2242,2243,5,82,0,0,2243,2245,3,314,157,0, - 2244,2186,1,0,0,0,2244,2189,1,0,0,0,2244,2194,1,0,0,0,2244,2202, - 1,0,0,0,2244,2217,1,0,0,0,2244,2222,1,0,0,0,2244,2230,1,0,0,0,2244, - 2232,1,0,0,0,2244,2237,1,0,0,0,2245,313,1,0,0,0,2246,2247,6,157, - -1,0,2247,2251,3,316,158,0,2248,2249,7,21,0,0,2249,2251,3,314,157, - 4,2250,2246,1,0,0,0,2250,2248,1,0,0,0,2251,2263,1,0,0,0,2252,2253, - 10,3,0,0,2253,2254,7,22,0,0,2254,2262,3,314,157,4,2255,2256,10,2, - 0,0,2256,2257,7,21,0,0,2257,2262,3,314,157,3,2258,2259,10,1,0,0, - 2259,2260,5,260,0,0,2260,2262,3,314,157,2,2261,2252,1,0,0,0,2261, - 2255,1,0,0,0,2261,2258,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0, - 0,2263,2264,1,0,0,0,2264,315,1,0,0,0,2265,2263,1,0,0,0,2266,2267, - 6,158,-1,0,2267,2513,5,133,0,0,2268,2513,3,326,163,0,2269,2270,3, - 362,181,0,2270,2271,3,318,159,0,2271,2513,1,0,0,0,2272,2273,5,286, - 0,0,2273,2513,3,318,159,0,2274,2513,3,364,182,0,2275,2513,3,324, - 162,0,2276,2513,3,318,159,0,2277,2513,5,276,0,0,2278,2513,5,272, - 0,0,2279,2280,5,148,0,0,2280,2281,5,265,0,0,2281,2282,3,314,157, - 0,2282,2283,5,94,0,0,2283,2284,3,314,157,0,2284,2285,5,266,0,0,2285, - 2513,1,0,0,0,2286,2287,5,265,0,0,2287,2290,3,308,154,0,2288,2289, - 5,9,0,0,2289,2291,3,332,166,0,2290,2288,1,0,0,0,2290,2291,1,0,0, - 0,2291,2300,1,0,0,0,2292,2293,5,263,0,0,2293,2296,3,308,154,0,2294, - 2295,5,9,0,0,2295,2297,3,332,166,0,2296,2294,1,0,0,0,2296,2297,1, - 0,0,0,2297,2299,1,0,0,0,2298,2292,1,0,0,0,2299,2302,1,0,0,0,2300, - 2301,1,0,0,0,2300,2298,1,0,0,0,2301,2303,1,0,0,0,2302,2300,1,0,0, - 0,2303,2304,5,266,0,0,2304,2513,1,0,0,0,2305,2306,5,168,0,0,2306, - 2307,5,265,0,0,2307,2312,3,308,154,0,2308,2309,5,263,0,0,2309,2311, - 3,308,154,0,2310,2308,1,0,0,0,2311,2314,1,0,0,0,2312,2310,1,0,0, - 0,2312,2313,1,0,0,0,2313,2315,1,0,0,0,2314,2312,1,0,0,0,2315,2316, - 5,266,0,0,2316,2513,1,0,0,0,2317,2318,3,190,95,0,2318,2319,5,265, - 0,0,2319,2320,5,257,0,0,2320,2322,5,266,0,0,2321,2323,3,342,171, - 0,2322,2321,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0,0,2324,2326, - 3,344,172,0,2325,2324,1,0,0,0,2325,2326,1,0,0,0,2326,2513,1,0,0, - 0,2327,2328,3,190,95,0,2328,2340,5,265,0,0,2329,2331,3,280,140,0, - 2330,2329,1,0,0,0,2330,2331,1,0,0,0,2331,2332,1,0,0,0,2332,2337, - 3,308,154,0,2333,2334,5,263,0,0,2334,2336,3,308,154,0,2335,2333, - 1,0,0,0,2336,2339,1,0,0,0,2337,2335,1,0,0,0,2337,2338,1,0,0,0,2338, - 2341,1,0,0,0,2339,2337,1,0,0,0,2340,2330,1,0,0,0,2340,2341,1,0,0, - 0,2341,2352,1,0,0,0,2342,2343,5,139,0,0,2343,2344,5,26,0,0,2344, - 2349,3,268,134,0,2345,2346,5,263,0,0,2346,2348,3,268,134,0,2347, - 2345,1,0,0,0,2348,2351,1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0, - 0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2352,2342,1,0,0,0,2352,2353, - 1,0,0,0,2353,2354,1,0,0,0,2354,2356,5,266,0,0,2355,2357,3,342,171, - 0,2356,2355,1,0,0,0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2360, - 3,344,172,0,2359,2358,1,0,0,0,2359,2360,1,0,0,0,2360,2513,1,0,0, - 0,2361,2362,3,362,181,0,2362,2363,5,273,0,0,2363,2364,3,308,154, - 0,2364,2513,1,0,0,0,2365,2374,5,265,0,0,2366,2371,3,362,181,0,2367, - 2368,5,263,0,0,2368,2370,3,362,181,0,2369,2367,1,0,0,0,2370,2373, - 1,0,0,0,2371,2369,1,0,0,0,2371,2372,1,0,0,0,2372,2375,1,0,0,0,2373, - 2371,1,0,0,0,2374,2366,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0,0, - 0,2376,2377,5,266,0,0,2377,2378,5,273,0,0,2378,2513,3,308,154,0, - 2379,2380,5,265,0,0,2380,2381,3,206,103,0,2381,2382,5,266,0,0,2382, - 2513,1,0,0,0,2383,2384,5,66,0,0,2384,2385,5,265,0,0,2385,2386,3, - 206,103,0,2386,2387,5,266,0,0,2387,2513,1,0,0,0,2388,2389,5,28,0, - 0,2389,2391,3,314,157,0,2390,2392,3,340,170,0,2391,2390,1,0,0,0, - 2392,2393,1,0,0,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2397, - 1,0,0,0,2395,2396,5,59,0,0,2396,2398,3,308,154,0,2397,2395,1,0,0, - 0,2397,2398,1,0,0,0,2398,2399,1,0,0,0,2399,2400,5,61,0,0,2400,2513, - 1,0,0,0,2401,2403,5,28,0,0,2402,2404,3,340,170,0,2403,2402,1,0,0, - 0,2404,2405,1,0,0,0,2405,2403,1,0,0,0,2405,2406,1,0,0,0,2406,2409, - 1,0,0,0,2407,2408,5,59,0,0,2408,2410,3,308,154,0,2409,2407,1,0,0, - 0,2409,2410,1,0,0,0,2410,2411,1,0,0,0,2411,2412,5,61,0,0,2412,2513, - 1,0,0,0,2413,2414,5,29,0,0,2414,2415,5,265,0,0,2415,2416,3,308,154, - 0,2416,2417,5,9,0,0,2417,2418,3,332,166,0,2418,2419,5,266,0,0,2419, - 2513,1,0,0,0,2420,2421,5,195,0,0,2421,2422,5,265,0,0,2422,2423,3, - 308,154,0,2423,2424,5,9,0,0,2424,2425,3,332,166,0,2425,2426,5,266, - 0,0,2426,2513,1,0,0,0,2427,2428,5,8,0,0,2428,2437,5,267,0,0,2429, - 2434,3,308,154,0,2430,2431,5,263,0,0,2431,2433,3,308,154,0,2432, - 2430,1,0,0,0,2433,2436,1,0,0,0,2434,2432,1,0,0,0,2434,2435,1,0,0, - 0,2435,2438,1,0,0,0,2436,2434,1,0,0,0,2437,2429,1,0,0,0,2437,2438, - 1,0,0,0,2438,2439,1,0,0,0,2439,2513,5,268,0,0,2440,2513,3,362,181, - 0,2441,2513,5,40,0,0,2442,2446,5,42,0,0,2443,2444,5,265,0,0,2444, - 2445,5,277,0,0,2445,2447,5,266,0,0,2446,2443,1,0,0,0,2446,2447,1, - 0,0,0,2447,2513,1,0,0,0,2448,2452,5,43,0,0,2449,2450,5,265,0,0,2450, - 2451,5,277,0,0,2451,2453,5,266,0,0,2452,2449,1,0,0,0,2452,2453,1, - 0,0,0,2453,2513,1,0,0,0,2454,2458,5,119,0,0,2455,2456,5,265,0,0, - 2456,2457,5,277,0,0,2457,2459,5,266,0,0,2458,2455,1,0,0,0,2458,2459, - 1,0,0,0,2459,2513,1,0,0,0,2460,2464,5,120,0,0,2461,2462,5,265,0, - 0,2462,2463,5,277,0,0,2463,2465,5,266,0,0,2464,2461,1,0,0,0,2464, - 2465,1,0,0,0,2465,2513,1,0,0,0,2466,2513,5,44,0,0,2467,2513,5,41, - 0,0,2468,2469,5,184,0,0,2469,2470,5,265,0,0,2470,2471,3,314,157, - 0,2471,2472,5,82,0,0,2472,2475,3,314,157,0,2473,2474,5,78,0,0,2474, - 2476,3,314,157,0,2475,2473,1,0,0,0,2475,2476,1,0,0,0,2476,2477,1, - 0,0,0,2477,2478,5,266,0,0,2478,2513,1,0,0,0,2479,2480,5,131,0,0, - 2480,2481,5,265,0,0,2481,2484,3,314,157,0,2482,2483,5,263,0,0,2483, - 2485,3,330,165,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1, - 0,0,0,2486,2487,5,266,0,0,2487,2513,1,0,0,0,2488,2489,5,68,0,0,2489, - 2490,5,265,0,0,2490,2491,3,362,181,0,2491,2492,5,82,0,0,2492,2493, - 3,314,157,0,2493,2494,5,266,0,0,2494,2513,1,0,0,0,2495,2496,5,265, - 0,0,2496,2497,3,308,154,0,2497,2498,5,266,0,0,2498,2513,1,0,0,0, - 2499,2500,5,88,0,0,2500,2509,5,265,0,0,2501,2506,3,358,179,0,2502, - 2503,5,263,0,0,2503,2505,3,358,179,0,2504,2502,1,0,0,0,2505,2508, - 1,0,0,0,2506,2504,1,0,0,0,2506,2507,1,0,0,0,2507,2510,1,0,0,0,2508, - 2506,1,0,0,0,2509,2501,1,0,0,0,2509,2510,1,0,0,0,2510,2511,1,0,0, - 0,2511,2513,5,266,0,0,2512,2266,1,0,0,0,2512,2268,1,0,0,0,2512,2269, - 1,0,0,0,2512,2272,1,0,0,0,2512,2274,1,0,0,0,2512,2275,1,0,0,0,2512, - 2276,1,0,0,0,2512,2277,1,0,0,0,2512,2278,1,0,0,0,2512,2279,1,0,0, - 0,2512,2286,1,0,0,0,2512,2305,1,0,0,0,2512,2317,1,0,0,0,2512,2327, - 1,0,0,0,2512,2361,1,0,0,0,2512,2365,1,0,0,0,2512,2379,1,0,0,0,2512, - 2383,1,0,0,0,2512,2388,1,0,0,0,2512,2401,1,0,0,0,2512,2413,1,0,0, - 0,2512,2420,1,0,0,0,2512,2427,1,0,0,0,2512,2440,1,0,0,0,2512,2441, - 1,0,0,0,2512,2442,1,0,0,0,2512,2448,1,0,0,0,2512,2454,1,0,0,0,2512, - 2460,1,0,0,0,2512,2466,1,0,0,0,2512,2467,1,0,0,0,2512,2468,1,0,0, - 0,2512,2479,1,0,0,0,2512,2488,1,0,0,0,2512,2495,1,0,0,0,2512,2499, - 1,0,0,0,2513,2524,1,0,0,0,2514,2515,10,15,0,0,2515,2516,5,267,0, - 0,2516,2517,3,314,157,0,2517,2518,5,268,0,0,2518,2523,1,0,0,0,2519, - 2520,10,13,0,0,2520,2521,5,261,0,0,2521,2523,3,362,181,0,2522,2514, - 1,0,0,0,2522,2519,1,0,0,0,2523,2526,1,0,0,0,2524,2522,1,0,0,0,2524, - 2525,1,0,0,0,2525,317,1,0,0,0,2526,2524,1,0,0,0,2527,2534,5,274, - 0,0,2528,2531,5,275,0,0,2529,2530,5,198,0,0,2530,2532,5,274,0,0, - 2531,2529,1,0,0,0,2531,2532,1,0,0,0,2532,2534,1,0,0,0,2533,2527, - 1,0,0,0,2533,2528,1,0,0,0,2534,319,1,0,0,0,2535,2536,7,23,0,0,2536, - 321,1,0,0,0,2537,2538,7,24,0,0,2538,323,1,0,0,0,2539,2540,7,25,0, - 0,2540,325,1,0,0,0,2541,2542,5,277,0,0,2542,2556,3,328,164,0,2543, - 2544,5,265,0,0,2544,2545,5,277,0,0,2545,2546,5,266,0,0,2546,2556, - 3,328,164,0,2547,2548,5,101,0,0,2548,2549,5,277,0,0,2549,2556,3, - 328,164,0,2550,2551,5,101,0,0,2551,2552,5,265,0,0,2552,2553,5,277, - 0,0,2553,2554,5,266,0,0,2554,2556,3,328,164,0,2555,2541,1,0,0,0, - 2555,2543,1,0,0,0,2555,2547,1,0,0,0,2555,2550,1,0,0,0,2556,327,1, - 0,0,0,2557,2558,7,26,0,0,2558,329,1,0,0,0,2559,2560,7,27,0,0,2560, - 331,1,0,0,0,2561,2562,6,166,-1,0,2562,2563,5,8,0,0,2563,2564,5,251, - 0,0,2564,2565,3,332,166,0,2565,2566,5,253,0,0,2566,2607,1,0,0,0, - 2567,2568,5,235,0,0,2568,2569,5,251,0,0,2569,2570,3,332,166,0,2570, - 2571,5,263,0,0,2571,2572,3,332,166,0,2572,2573,5,253,0,0,2573,2607, - 1,0,0,0,2574,2575,5,240,0,0,2575,2576,5,251,0,0,2576,2577,3,362, - 181,0,2577,2584,3,332,166,0,2578,2579,5,263,0,0,2579,2580,3,362, - 181,0,2580,2581,3,332,166,0,2581,2583,1,0,0,0,2582,2578,1,0,0,0, - 2583,2586,1,0,0,0,2584,2582,1,0,0,0,2584,2585,1,0,0,0,2585,2587, - 1,0,0,0,2586,2584,1,0,0,0,2587,2588,5,253,0,0,2588,2607,1,0,0,0, - 2589,2592,3,338,169,0,2590,2592,3,334,167,0,2591,2589,1,0,0,0,2591, - 2590,1,0,0,0,2592,2604,1,0,0,0,2593,2594,5,265,0,0,2594,2599,3,336, - 168,0,2595,2596,5,263,0,0,2596,2598,3,336,168,0,2597,2595,1,0,0, - 0,2598,2601,1,0,0,0,2599,2597,1,0,0,0,2599,2600,1,0,0,0,2600,2602, - 1,0,0,0,2601,2599,1,0,0,0,2602,2603,5,266,0,0,2603,2605,1,0,0,0, - 2604,2593,1,0,0,0,2604,2605,1,0,0,0,2605,2607,1,0,0,0,2606,2561, - 1,0,0,0,2606,2567,1,0,0,0,2606,2574,1,0,0,0,2606,2591,1,0,0,0,2607, - 2612,1,0,0,0,2608,2609,10,5,0,0,2609,2611,5,8,0,0,2610,2608,1,0, - 0,0,2611,2614,1,0,0,0,2612,2610,1,0,0,0,2612,2613,1,0,0,0,2613,333, - 1,0,0,0,2614,2612,1,0,0,0,2615,2616,7,28,0,0,2616,335,1,0,0,0,2617, - 2620,5,277,0,0,2618,2620,3,332,166,0,2619,2617,1,0,0,0,2619,2618, - 1,0,0,0,2620,337,1,0,0,0,2621,2626,5,284,0,0,2622,2626,5,285,0,0, - 2623,2626,5,286,0,0,2624,2626,3,362,181,0,2625,2621,1,0,0,0,2625, - 2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1,0,0,0,2626,339,1,0,0, - 0,2627,2628,5,214,0,0,2628,2629,3,308,154,0,2629,2630,5,192,0,0, - 2630,2631,3,308,154,0,2631,341,1,0,0,0,2632,2633,5,74,0,0,2633,2634, - 5,265,0,0,2634,2635,5,215,0,0,2635,2636,3,310,155,0,2636,2637,5, - 266,0,0,2637,343,1,0,0,0,2638,2639,5,143,0,0,2639,2650,5,265,0,0, - 2640,2641,5,145,0,0,2641,2642,5,26,0,0,2642,2647,3,308,154,0,2643, - 2644,5,263,0,0,2644,2646,3,308,154,0,2645,2643,1,0,0,0,2646,2649, - 1,0,0,0,2647,2645,1,0,0,0,2647,2648,1,0,0,0,2648,2651,1,0,0,0,2649, - 2647,1,0,0,0,2650,2640,1,0,0,0,2650,2651,1,0,0,0,2651,2662,1,0,0, - 0,2652,2653,5,139,0,0,2653,2654,5,26,0,0,2654,2659,3,268,134,0,2655, - 2656,5,263,0,0,2656,2658,3,268,134,0,2657,2655,1,0,0,0,2658,2661, - 1,0,0,0,2659,2657,1,0,0,0,2659,2660,1,0,0,0,2660,2663,1,0,0,0,2661, - 2659,1,0,0,0,2662,2652,1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0, - 0,2664,2666,3,346,173,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666, - 2667,1,0,0,0,2667,2668,5,266,0,0,2668,345,1,0,0,0,2669,2670,5,154, - 0,0,2670,2686,3,348,174,0,2671,2672,5,169,0,0,2672,2686,3,348,174, - 0,2673,2674,5,154,0,0,2674,2675,5,15,0,0,2675,2676,3,348,174,0,2676, - 2677,5,5,0,0,2677,2678,3,348,174,0,2678,2686,1,0,0,0,2679,2680,5, - 169,0,0,2680,2681,5,15,0,0,2681,2682,3,348,174,0,2682,2683,5,5,0, - 0,2683,2684,3,348,174,0,2684,2686,1,0,0,0,2685,2669,1,0,0,0,2685, - 2671,1,0,0,0,2685,2673,1,0,0,0,2685,2679,1,0,0,0,2686,347,1,0,0, - 0,2687,2688,5,199,0,0,2688,2697,5,149,0,0,2689,2690,5,199,0,0,2690, - 2697,5,77,0,0,2691,2692,5,39,0,0,2692,2697,5,168,0,0,2693,2694,3, - 308,154,0,2694,2695,7,29,0,0,2695,2697,1,0,0,0,2696,2687,1,0,0,0, - 2696,2689,1,0,0,0,2696,2691,1,0,0,0,2696,2693,1,0,0,0,2697,349,1, - 0,0,0,2698,2699,3,362,181,0,2699,2700,5,261,0,0,2700,2701,3,362, - 181,0,2701,2704,1,0,0,0,2702,2704,3,362,181,0,2703,2698,1,0,0,0, - 2703,2702,1,0,0,0,2704,351,1,0,0,0,2705,2710,3,350,175,0,2706,2707, - 5,263,0,0,2707,2709,3,350,175,0,2708,2706,1,0,0,0,2709,2712,1,0, - 0,0,2710,2708,1,0,0,0,2710,2711,1,0,0,0,2711,353,1,0,0,0,2712,2710, - 1,0,0,0,2713,2727,5,2,0,0,2714,2727,5,4,0,0,2715,2727,5,58,0,0,2716, - 2727,5,37,0,0,2717,2727,5,99,0,0,2718,2727,5,162,0,0,2719,2724,5, - 174,0,0,2720,2721,5,265,0,0,2721,2722,3,362,181,0,2722,2723,5,266, - 0,0,2723,2725,1,0,0,0,2724,2720,1,0,0,0,2724,2725,1,0,0,0,2725,2727, - 1,0,0,0,2726,2713,1,0,0,0,2726,2714,1,0,0,0,2726,2715,1,0,0,0,2726, - 2716,1,0,0,0,2726,2717,1,0,0,0,2726,2718,1,0,0,0,2726,2719,1,0,0, - 0,2727,355,1,0,0,0,2728,2729,7,30,0,0,2729,357,1,0,0,0,2730,2735, - 3,362,181,0,2731,2732,5,261,0,0,2732,2734,3,362,181,0,2733,2731, - 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, - 359,1,0,0,0,2737,2735,1,0,0,0,2738,2739,5,166,0,0,2739,2745,3,362, - 181,0,2740,2741,5,204,0,0,2741,2745,3,362,181,0,2742,2743,5,87,0, - 0,2743,2745,3,362,181,0,2744,2738,1,0,0,0,2744,2740,1,0,0,0,2744, - 2742,1,0,0,0,2745,361,1,0,0,0,2746,2752,5,280,0,0,2747,2752,5,274, - 0,0,2748,2752,3,368,184,0,2749,2752,5,283,0,0,2750,2752,5,281,0, - 0,2751,2746,1,0,0,0,2751,2747,1,0,0,0,2751,2748,1,0,0,0,2751,2749, - 1,0,0,0,2751,2750,1,0,0,0,2752,363,1,0,0,0,2753,2755,5,256,0,0,2754, - 2753,1,0,0,0,2754,2755,1,0,0,0,2755,2756,1,0,0,0,2756,2766,5,278, - 0,0,2757,2759,5,256,0,0,2758,2757,1,0,0,0,2758,2759,1,0,0,0,2759, - 2760,1,0,0,0,2760,2766,5,279,0,0,2761,2763,5,256,0,0,2762,2761,1, - 0,0,0,2762,2763,1,0,0,0,2763,2764,1,0,0,0,2764,2766,5,277,0,0,2765, - 2754,1,0,0,0,2765,2758,1,0,0,0,2765,2762,1,0,0,0,2766,365,1,0,0, - 0,2767,2768,7,31,0,0,2768,367,1,0,0,0,2769,2770,7,32,0,0,2770,369, - 1,0,0,0,353,373,380,404,417,421,425,434,439,443,449,451,456,460, - 464,471,476,482,486,495,502,506,511,513,518,521,528,532,537,541, - 544,548,556,560,564,572,576,585,588,591,597,604,615,620,625,630, - 635,644,647,650,654,680,706,715,725,728,742,760,762,771,782,791, - 798,802,809,815,818,823,830,844,857,862,867,873,909,912,918,921, - 927,933,945,947,958,966,971,975,980,987,991,995,1001,1005,1009,1018, - 1021,1024,1032,1046,1053,1066,1072,1077,1080,1083,1088,1092,1101, - 1106,1112,1116,1121,1126,1129,1137,1140,1144,1156,1159,1163,1168, - 1172,1188,1193,1200,1203,1209,1212,1219,1222,1226,1231,1234,1241, - 1244,1268,1282,1286,1290,1310,1312,1314,1323,1325,1334,1336,1345, - 1347,1352,1361,1370,1379,1390,1396,1401,1404,1417,1427,1431,1436, - 1447,1452,1485,1493,1498,1502,1506,1511,1514,1519,1524,1529,1533, - 1542,1545,1549,1556,1565,1569,1573,1580,1583,1593,1600,1605,1610, - 1615,1621,1624,1633,1636,1639,1645,1650,1660,1663,1666,1670,1680, - 1683,1689,1695,1698,1701,1705,1715,1726,1731,1734,1738,1745,1755, - 1767,1773,1775,1784,1787,1794,1804,1810,1818,1829,1839,1850,1852, - 1858,1863,1873,1876,1882,1884,1892,1898,1901,1903,1915,1922,1926, - 1930,1934,1937,1944,1953,1956,1960,1965,1969,1972,1979,1990,1993, - 1997,2001,2010,2013,2020,2034,2038,2042,2046,2050,2054,2058,2062, - 2072,2083,2088,2101,2103,2109,2113,2115,2123,2130,2135,2148,2154, - 2162,2169,2173,2181,2183,2194,2202,2211,2217,2222,2228,2234,2239, - 2244,2250,2261,2263,2290,2296,2300,2312,2322,2325,2330,2337,2340, - 2349,2352,2356,2359,2371,2374,2393,2397,2405,2409,2434,2437,2446, - 2452,2458,2464,2475,2484,2506,2509,2512,2522,2524,2531,2533,2555, - 2584,2591,2599,2604,2606,2612,2619,2625,2647,2650,2659,2662,2665, - 2685,2696,2703,2710,2724,2726,2735,2744,2751,2754,2758,2762,2765 + 3,13,689,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,3,15,715,8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,724,8, + 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,3,16,734,8,16,1,16,3, + 16,737,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1, + 18,1,18,3,18,751,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1, + 19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,769,8,20,3,20,771,8,20, + 1,20,1,20,1,20,1,20,1,20,5,20,778,8,20,10,20,12,20,781,9,20,1,20, + 1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,791,8,21,1,21,1,21,1,22, + 1,22,1,22,1,22,1,22,3,22,800,8,22,1,22,1,22,1,22,1,22,1,22,3,22, + 807,8,22,1,22,1,22,3,22,811,8,22,1,23,1,23,1,23,1,23,1,23,3,23,818, + 8,23,1,23,1,23,1,23,1,23,3,23,824,8,23,1,23,3,23,827,8,23,1,23,1, + 23,1,23,3,23,832,8,23,1,24,1,24,1,24,1,24,1,24,3,24,839,8,24,1,24, + 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,853, + 8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,3,26, + 866,8,26,1,26,1,26,1,26,3,26,871,8,26,1,26,1,26,1,26,3,26,876,8, + 26,1,27,1,27,1,27,1,27,3,27,882,8,27,1,27,1,27,1,27,1,28,1,28,1, + 28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1, + 31,1,32,1,32,3,32,918,8,32,1,32,3,32,921,8,32,1,32,1,32,1,33,1,33, + 3,33,927,8,33,1,33,3,33,930,8,33,1,33,1,33,1,34,1,34,3,34,936,8, + 34,1,35,1,35,1,35,1,35,3,35,942,8,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,35,1,35,3,35,954,8,35,3,35,956,8,35,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,36,1,36,3,36,967,8,36,1,37,1,37,1,37,1,37, + 1,37,1,37,3,37,975,8,37,1,38,1,38,1,38,3,38,980,8,38,1,38,1,38,3, + 38,984,8,38,1,39,1,39,1,39,3,39,989,8,39,1,39,1,39,1,40,1,40,1,40, + 3,40,996,8,40,1,40,1,40,3,40,1000,8,40,1,41,1,41,3,41,1004,8,41, + 1,41,1,41,1,41,1,41,3,41,1010,8,41,1,42,1,42,3,42,1014,8,42,1,42, + 1,42,3,42,1018,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1025,8,42,10,42, + 12,42,1028,9,42,3,42,1030,8,42,1,42,3,42,1033,8,42,1,43,1,43,1,43, + 1,43,1,44,1,44,3,44,1041,8,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45, + 1,46,1,46,1,46,1,46,1,46,3,46,1055,8,46,1,46,1,46,1,46,1,47,1,47, + 3,47,1062,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49, + 1,49,3,49,1075,8,49,1,49,1,49,1,49,1,49,3,49,1081,8,49,1,49,1,49, + 1,49,3,49,1086,8,49,1,49,3,49,1089,8,49,1,50,3,50,1092,8,50,1,50, + 1,50,1,50,3,50,1097,8,50,1,50,1,50,3,50,1101,8,50,1,50,1,50,1,50, + 1,50,1,50,5,50,1108,8,50,10,50,12,50,1111,9,50,1,50,1,50,3,50,1115, + 8,50,1,50,1,50,1,51,1,51,3,51,1121,8,51,1,52,1,52,3,52,1125,8,52, + 1,52,1,52,3,52,1129,8,52,1,53,1,53,1,53,3,53,1134,8,53,1,53,3,53, + 1137,8,53,1,53,1,53,1,53,1,53,5,53,1143,8,53,10,53,12,53,1146,9, + 53,3,53,1148,8,53,1,53,3,53,1151,8,53,1,54,1,54,1,54,1,54,1,54,1, + 54,1,54,1,54,5,54,1161,8,54,10,54,12,54,1164,9,54,3,54,1166,8,54, + 1,54,3,54,1169,8,54,1,55,1,55,1,55,3,55,1174,8,55,1,55,1,55,3,55, + 1178,8,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,1,56,3,56,1194,8,56,1,57,1,57,1,57,3,57,1199,8,57,1,57, + 1,57,1,57,5,57,1204,8,57,10,57,12,57,1207,9,57,3,57,1209,8,57,1, + 58,1,58,1,58,1,58,3,58,1215,8,58,1,58,3,58,1218,8,58,1,58,1,58,1, + 58,5,58,1223,8,58,10,58,12,58,1226,9,58,3,58,1228,8,58,1,59,1,59, + 3,59,1232,8,59,1,59,1,59,1,59,3,59,1237,8,59,1,59,3,59,1240,8,59, + 1,59,1,59,1,59,5,59,1245,8,59,10,59,12,59,1248,9,59,3,59,1250,8, + 59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1, + 62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3,64,1274,8,64,1, + 64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1288, + 8,65,1,65,1,65,3,65,1292,8,65,1,66,1,66,3,66,1296,8,66,1,66,1,66, + 1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68, + 1,68,1,68,1,68,3,68,1316,8,68,3,68,1318,8,68,3,68,1320,8,68,1,69, + 1,69,1,69,1,69,1,69,1,69,1,69,3,69,1329,8,69,3,69,1331,8,69,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,3,70,1340,8,70,3,70,1342,8,70,1,71, + 1,71,1,71,1,71,1,71,1,71,1,71,3,71,1351,8,71,3,71,1353,8,71,1,72, + 1,72,1,72,3,72,1358,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, + 1367,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1376,8,74,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,3,75,1385,8,75,1,76,1,76,1,76,1,77, + 1,77,1,77,1,77,1,77,1,77,3,77,1396,8,77,1,78,1,78,1,78,1,78,3,78, + 1402,8,78,1,78,1,78,1,78,3,78,1407,8,78,1,78,3,78,1410,8,78,1,78, + 1,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,3,80,1423,8,80, + 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1433,8,80,1,80,1,80, + 3,80,1437,8,80,1,81,1,81,1,81,3,81,1442,8,81,1,82,1,82,1,82,1,82, + 1,82,1,82,1,82,5,82,1451,8,82,10,82,12,82,1454,9,82,1,82,1,82,3, + 82,1458,8,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1, + 86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1, + 91,1,92,1,92,1,93,1,93,1,93,5,93,1489,8,93,10,93,12,93,1492,9,93, + 1,94,1,94,1,94,5,94,1497,8,94,10,94,12,94,1500,9,94,1,95,1,95,3, + 95,1504,8,95,1,96,1,96,3,96,1508,8,96,1,97,1,97,1,98,1,98,3,98,1514, + 8,98,1,99,1,99,1,99,3,99,1519,8,99,1,99,3,99,1522,8,99,1,99,1,99, + 1,99,3,99,1527,8,99,1,99,1,99,1,99,3,99,1532,8,99,1,99,1,99,1,99, + 3,99,1537,8,99,1,99,1,99,3,99,1541,8,99,1,99,1,99,1,99,1,99,1,99, + 1,99,1,99,3,99,1550,8,99,1,99,3,99,1553,8,99,1,99,1,99,3,99,1557, + 8,99,1,100,1,100,1,100,5,100,1562,8,100,10,100,12,100,1565,9,100, + 1,101,1,101,1,101,1,101,1,102,1,102,3,102,1573,8,102,1,102,1,102, + 3,102,1577,8,102,5,102,1579,8,102,10,102,12,102,1582,9,102,1,102, + 1,102,1,103,1,103,3,103,1588,8,103,1,104,3,104,1591,8,104,1,104, + 1,104,1,105,1,105,1,105,1,105,5,105,1599,8,105,10,105,12,105,1602, + 9,105,1,106,1,106,1,106,1,106,3,106,1608,8,106,1,106,1,106,1,106, + 3,106,1613,8,106,1,106,1,106,1,106,3,106,1618,8,106,1,106,1,106, + 1,106,3,106,1623,8,106,1,106,1,106,5,106,1627,8,106,10,106,12,106, + 1630,9,106,3,106,1632,8,106,1,107,1,107,1,107,1,107,1,107,1,107, + 1,107,3,107,1641,8,107,1,107,3,107,1644,8,107,1,107,3,107,1647,8, + 107,1,108,1,108,1,108,1,108,3,108,1653,8,108,1,109,1,109,1,109,3, + 109,1658,8,109,1,110,1,110,1,111,1,111,1,111,1,111,5,111,1666,8, + 111,10,111,12,111,1669,9,111,3,111,1671,8,111,1,111,3,111,1674,8, + 111,1,111,1,111,3,111,1678,8,111,1,112,1,112,1,112,1,113,1,113,1, + 113,5,113,1686,8,113,10,113,12,113,1689,9,113,3,113,1691,8,113,1, + 114,1,114,1,114,1,114,3,114,1697,8,114,1,114,1,114,5,114,1701,8, + 114,10,114,12,114,1704,9,114,3,114,1706,8,114,1,115,3,115,1709,8, + 115,1,115,1,115,3,115,1713,8,115,1,116,1,116,1,116,1,116,1,116,1, + 116,1,116,1,116,3,116,1723,8,116,1,117,1,117,1,118,1,118,1,119,1, + 119,1,119,5,119,1732,8,119,10,119,12,119,1735,9,119,1,119,1,119, + 3,119,1739,8,119,1,119,3,119,1742,8,119,1,120,1,120,3,120,1746,8, + 120,1,120,1,120,1,120,1,121,1,121,3,121,1753,8,121,1,121,1,121,1, + 121,1,121,1,121,1,121,5,121,1761,8,121,10,121,12,121,1764,9,121, + 1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1775, + 8,122,1,122,1,122,1,122,1,122,3,122,1781,8,122,3,122,1783,8,122, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,1792,8,123,1,123, + 3,123,1795,8,123,1,124,1,124,1,124,1,124,1,124,3,124,1802,8,124, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,1812,8,125, + 1,126,1,126,1,126,1,126,3,126,1818,8,126,1,127,1,127,1,127,1,127, + 5,127,1824,8,127,10,127,12,127,1827,9,127,1,127,1,127,1,128,1,128, + 1,128,1,128,5,128,1835,8,128,10,128,12,128,1838,9,128,1,128,1,128, + 1,129,1,129,1,129,5,129,1845,8,129,10,129,12,129,1848,9,129,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1858,8,130,3,130, + 1860,8,130,1,130,1,130,1,130,1,130,3,130,1866,8,130,1,131,1,131, + 1,131,3,131,1871,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, + 1879,8,132,10,132,12,132,1882,9,132,3,132,1884,8,132,1,132,1,132, + 1,132,1,132,3,132,1890,8,132,3,132,1892,8,132,1,133,1,133,1,133, + 1,133,1,133,1,133,3,133,1900,8,133,1,133,1,133,1,133,1,133,3,133, + 1906,8,133,1,133,5,133,1909,8,133,10,133,12,133,1912,9,133,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,5,134,1921,8,134,10,134,12,134, + 1924,9,134,1,134,1,134,1,134,1,134,3,134,1930,8,134,1,135,1,135, + 3,135,1934,8,135,1,135,1,135,3,135,1938,8,135,1,136,1,136,3,136, + 1942,8,136,1,136,3,136,1945,8,136,1,136,1,136,1,136,5,136,1950,8, + 136,10,136,12,136,1953,9,136,1,136,1,136,1,136,1,136,5,136,1959, + 8,136,10,136,12,136,1962,9,136,3,136,1964,8,136,1,136,3,136,1967, + 8,136,1,136,1,136,1,136,3,136,1972,8,136,1,136,3,136,1975,8,136, + 1,137,1,137,1,137,1,138,1,138,1,138,1,139,3,139,1984,8,139,1,139, + 1,139,1,139,5,139,1989,8,139,10,139,12,139,1992,9,139,1,140,1,140, + 1,141,1,141,1,141,1,141,5,141,2000,8,141,10,141,12,141,2003,9,141, + 3,141,2005,8,141,1,141,1,141,3,141,2009,8,141,1,142,1,142,3,142, + 2013,8,142,1,142,1,142,1,142,1,143,1,143,1,144,1,144,3,144,2022, + 8,144,1,144,3,144,2025,8,144,1,144,1,144,1,144,1,144,1,144,3,144, + 2032,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,3,145,2046,8,145,5,145,2048,8,145,10,145,12,145, + 2051,9,145,1,146,3,146,2054,8,146,1,146,1,146,3,146,2058,8,146,1, + 146,1,146,3,146,2062,8,146,1,146,1,146,3,146,2066,8,146,1,146,1, + 146,3,146,2070,8,146,1,146,1,146,3,146,2074,8,146,1,146,1,146,1, + 146,1,146,1,146,1,146,1,146,1,146,3,146,2084,8,146,1,147,1,147,1, + 147,1,147,1,147,1,147,1,147,5,147,2093,8,147,10,147,12,147,2096, + 9,147,1,147,1,147,3,147,2100,8,147,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,3,148,2113,8,148,3,148,2115, + 8,148,1,149,1,149,1,150,1,150,3,150,2121,8,150,1,150,1,150,3,150, + 2125,8,150,3,150,2127,8,150,1,151,1,151,1,151,1,151,5,151,2133,8, + 151,10,151,12,151,2136,9,151,1,151,1,151,1,152,1,152,3,152,2142, + 8,152,1,152,1,152,1,152,3,152,2147,8,152,1,153,1,153,1,153,1,153, + 1,154,1,154,1,154,1,154,1,154,5,154,2158,8,154,10,154,12,154,2161, + 9,154,1,154,1,154,1,154,3,154,2166,8,154,1,155,1,155,1,155,1,155, + 1,156,1,156,3,156,2174,8,156,1,157,1,157,1,158,1,158,1,158,3,158, + 2181,8,158,1,158,1,158,3,158,2185,8,158,1,158,1,158,1,158,1,158, + 1,158,1,158,5,158,2193,8,158,10,158,12,158,2196,9,158,1,159,1,159, + 1,159,1,159,1,159,1,159,1,159,1,159,3,159,2206,8,159,1,159,1,159, + 1,159,1,159,1,159,1,159,3,159,2214,8,159,1,159,1,159,1,159,1,159, + 1,159,5,159,2221,8,159,10,159,12,159,2224,9,159,1,159,1,159,1,159, + 3,159,2229,8,159,1,159,1,159,1,159,3,159,2234,8,159,1,159,1,159, + 1,159,1,159,3,159,2240,8,159,1,159,1,159,1,159,1,159,3,159,2246, + 8,159,1,159,1,159,1,159,3,159,2251,8,159,1,159,1,159,1,159,3,159, + 2256,8,159,1,160,1,160,1,160,1,160,3,160,2262,8,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,5,160,2273,8,160,10,160, + 12,160,2276,9,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,3,161,2302,8,161,1,161,1,161,1,161, + 1,161,3,161,2308,8,161,5,161,2310,8,161,10,161,12,161,2313,9,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161,2322,8,161,10,161, + 12,161,2325,9,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,3,161, + 2334,8,161,1,161,3,161,2337,8,161,1,161,1,161,1,161,3,161,2342,8, + 161,1,161,1,161,1,161,5,161,2347,8,161,10,161,12,161,2350,9,161, + 3,161,2352,8,161,1,161,1,161,1,161,1,161,1,161,5,161,2359,8,161, + 10,161,12,161,2362,9,161,3,161,2364,8,161,1,161,1,161,3,161,2368, + 8,161,1,161,3,161,2371,8,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,5,161,2381,8,161,10,161,12,161,2384,9,161,3,161,2386, + 8,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,4,161,2403,8,161,11,161,12,161,2404, + 1,161,1,161,3,161,2409,8,161,1,161,1,161,1,161,1,161,4,161,2415, + 8,161,11,161,12,161,2416,1,161,1,161,3,161,2421,8,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161,2444,8,161, + 10,161,12,161,2447,9,161,3,161,2449,8,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,3,161,2458,8,161,1,161,1,161,1,161,1,161,3,161, + 2464,8,161,1,161,1,161,1,161,1,161,3,161,2470,8,161,1,161,1,161, + 1,161,1,161,3,161,2476,8,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,3,161,2487,8,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,3,161,2496,8,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,5,161,2516,8,161,10,161,12,161,2519,9,161,3,161,2521,8,161, + 1,161,3,161,2524,8,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,5,161,2534,8,161,10,161,12,161,2537,9,161,1,162,1,162,1,162, + 1,162,3,162,2543,8,162,3,162,2545,8,162,1,163,1,163,1,164,1,164, + 1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,3,166,2567,8,166,1,167,1,167,1,168, + 1,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 5,169,2594,8,169,10,169,12,169,2597,9,169,1,169,1,169,1,169,1,169, + 3,169,2603,8,169,1,169,1,169,1,169,1,169,5,169,2609,8,169,10,169, + 12,169,2612,9,169,1,169,1,169,3,169,2616,8,169,3,169,2618,8,169, + 1,169,1,169,5,169,2622,8,169,10,169,12,169,2625,9,169,1,170,1,170, + 1,171,1,171,3,171,2631,8,171,1,172,1,172,1,172,1,172,3,172,2637, + 8,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174, + 1,175,1,175,1,175,5,175,2652,8,175,10,175,12,175,2655,9,175,1,176, + 1,176,1,176,1,176,1,176,3,176,2662,8,176,1,176,1,176,1,176,1,176, + 1,176,5,176,2669,8,176,10,176,12,176,2672,9,176,3,176,2674,8,176, + 1,176,3,176,2677,8,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177, + 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, + 3,177,2697,8,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,3,178,2708,8,178,1,179,1,179,1,179,1,179,1,179,3,179,2715, + 8,179,1,180,1,180,1,180,5,180,2720,8,180,10,180,12,180,2723,9,180, + 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 3,181,2736,8,181,3,181,2738,8,181,1,182,1,182,1,183,1,183,1,183, + 5,183,2745,8,183,10,183,12,183,2748,9,183,1,184,1,184,1,184,1,184, + 1,184,1,184,3,184,2756,8,184,1,185,1,185,1,185,1,185,1,185,3,185, + 2763,8,185,1,186,3,186,2766,8,186,1,186,1,186,3,186,2770,8,186,1, + 186,1,186,3,186,2774,8,186,1,186,3,186,2777,8,186,1,187,1,187,1, + 188,1,188,1,188,10,779,1452,1628,1667,1687,1702,1733,1762,1836,2311, + 6,266,290,316,320,322,338,189,0,2,4,6,8,10,12,14,16,18,20,22,24, + 26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68, + 70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108, + 110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140, + 142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172, + 174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, + 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236, + 238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, + 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, + 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, + 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, + 366,368,370,372,374,376,0,33,2,0,46,46,170,170,2,0,166,166,204,204, + 2,0,176,176,202,202,2,0,69,69,80,80,2,0,27,27,159,159,2,0,103,103, + 144,144,2,0,47,47,171,171,2,0,3,3,12,12,3,0,87,87,166,166,204,204, + 2,0,178,178,209,209,1,0,245,248,2,0,147,147,219,223,2,0,65,65,95, + 95,2,0,64,64,200,200,2,0,10,10,55,55,2,0,75,75,112,112,2,0,2,2,57, + 57,2,0,14,14,185,185,3,0,106,106,115,115,164,164,2,0,105,105,163, + 163,4,0,70,70,133,133,194,194,208,208,1,0,255,256,1,0,257,259,1, + 0,249,254,3,0,2,2,6,6,181,181,2,0,70,70,194,194,5,0,48,49,91,92, + 122,125,172,173,217,218,1,0,127,130,2,0,8,8,227,244,2,0,77,77,149, + 149,4,0,46,46,178,178,188,188,209,209,16,0,28,29,40,40,43,43,48, + 48,68,68,91,91,114,114,122,122,124,124,158,158,165,165,172,172,184, + 184,196,196,204,204,217,217,23,0,14,14,43,44,48,49,65,65,68,68,91, + 91,95,95,110,110,119,119,122,125,127,130,137,137,140,140,152,153, + 172,173,180,180,184,185,195,195,204,204,213,213,217,217,220,220, + 231,231,3100,0,381,1,0,0,0,2,386,1,0,0,0,4,412,1,0,0,0,6,414,1,0, + 0,0,8,425,1,0,0,0,10,427,1,0,0,0,12,466,1,0,0,0,14,488,1,0,0,0,16, + 542,1,0,0,0,18,561,1,0,0,0,20,574,1,0,0,0,22,578,1,0,0,0,24,640, + 1,0,0,0,26,688,1,0,0,0,28,690,1,0,0,0,30,698,1,0,0,0,32,718,1,0, + 0,0,34,738,1,0,0,0,36,745,1,0,0,0,38,754,1,0,0,0,40,762,1,0,0,0, + 42,784,1,0,0,0,44,794,1,0,0,0,46,812,1,0,0,0,48,833,1,0,0,0,50,854, + 1,0,0,0,52,860,1,0,0,0,54,877,1,0,0,0,56,886,1,0,0,0,58,893,1,0, + 0,0,60,901,1,0,0,0,62,908,1,0,0,0,64,915,1,0,0,0,66,924,1,0,0,0, + 68,935,1,0,0,0,70,937,1,0,0,0,72,957,1,0,0,0,74,974,1,0,0,0,76,976, + 1,0,0,0,78,985,1,0,0,0,80,992,1,0,0,0,82,1001,1,0,0,0,84,1011,1, + 0,0,0,86,1034,1,0,0,0,88,1040,1,0,0,0,90,1042,1,0,0,0,92,1049,1, + 0,0,0,94,1061,1,0,0,0,96,1063,1,0,0,0,98,1070,1,0,0,0,100,1091,1, + 0,0,0,102,1120,1,0,0,0,104,1122,1,0,0,0,106,1130,1,0,0,0,108,1152, + 1,0,0,0,110,1170,1,0,0,0,112,1193,1,0,0,0,114,1195,1,0,0,0,116,1210, + 1,0,0,0,118,1229,1,0,0,0,120,1251,1,0,0,0,122,1256,1,0,0,0,124,1261, + 1,0,0,0,126,1266,1,0,0,0,128,1271,1,0,0,0,130,1278,1,0,0,0,132,1293, + 1,0,0,0,134,1299,1,0,0,0,136,1319,1,0,0,0,138,1321,1,0,0,0,140,1332, + 1,0,0,0,142,1343,1,0,0,0,144,1357,1,0,0,0,146,1359,1,0,0,0,148,1368, + 1,0,0,0,150,1377,1,0,0,0,152,1386,1,0,0,0,154,1389,1,0,0,0,156,1397, + 1,0,0,0,158,1413,1,0,0,0,160,1417,1,0,0,0,162,1441,1,0,0,0,164,1443, + 1,0,0,0,166,1459,1,0,0,0,168,1462,1,0,0,0,170,1466,1,0,0,0,172,1469, + 1,0,0,0,174,1473,1,0,0,0,176,1475,1,0,0,0,178,1477,1,0,0,0,180,1479, + 1,0,0,0,182,1481,1,0,0,0,184,1483,1,0,0,0,186,1485,1,0,0,0,188,1493, + 1,0,0,0,190,1503,1,0,0,0,192,1507,1,0,0,0,194,1509,1,0,0,0,196,1513, + 1,0,0,0,198,1518,1,0,0,0,200,1558,1,0,0,0,202,1566,1,0,0,0,204,1570, + 1,0,0,0,206,1585,1,0,0,0,208,1590,1,0,0,0,210,1594,1,0,0,0,212,1603, + 1,0,0,0,214,1633,1,0,0,0,216,1648,1,0,0,0,218,1654,1,0,0,0,220,1659, + 1,0,0,0,222,1661,1,0,0,0,224,1679,1,0,0,0,226,1682,1,0,0,0,228,1692, + 1,0,0,0,230,1712,1,0,0,0,232,1722,1,0,0,0,234,1724,1,0,0,0,236,1726, + 1,0,0,0,238,1741,1,0,0,0,240,1743,1,0,0,0,242,1750,1,0,0,0,244,1782, + 1,0,0,0,246,1794,1,0,0,0,248,1801,1,0,0,0,250,1811,1,0,0,0,252,1813, + 1,0,0,0,254,1819,1,0,0,0,256,1830,1,0,0,0,258,1841,1,0,0,0,260,1849, + 1,0,0,0,262,1867,1,0,0,0,264,1872,1,0,0,0,266,1893,1,0,0,0,268,1929, + 1,0,0,0,270,1931,1,0,0,0,272,1939,1,0,0,0,274,1976,1,0,0,0,276,1979, + 1,0,0,0,278,1983,1,0,0,0,280,1993,1,0,0,0,282,2008,1,0,0,0,284,2010, + 1,0,0,0,286,2017,1,0,0,0,288,2031,1,0,0,0,290,2033,1,0,0,0,292,2083, + 1,0,0,0,294,2099,1,0,0,0,296,2101,1,0,0,0,298,2116,1,0,0,0,300,2118, + 1,0,0,0,302,2128,1,0,0,0,304,2146,1,0,0,0,306,2148,1,0,0,0,308,2152, + 1,0,0,0,310,2167,1,0,0,0,312,2173,1,0,0,0,314,2175,1,0,0,0,316,2184, + 1,0,0,0,318,2255,1,0,0,0,320,2261,1,0,0,0,322,2523,1,0,0,0,324,2544, + 1,0,0,0,326,2546,1,0,0,0,328,2548,1,0,0,0,330,2550,1,0,0,0,332,2566, + 1,0,0,0,334,2568,1,0,0,0,336,2570,1,0,0,0,338,2617,1,0,0,0,340,2626, + 1,0,0,0,342,2630,1,0,0,0,344,2636,1,0,0,0,346,2638,1,0,0,0,348,2643, + 1,0,0,0,350,2648,1,0,0,0,352,2656,1,0,0,0,354,2696,1,0,0,0,356,2707, + 1,0,0,0,358,2714,1,0,0,0,360,2716,1,0,0,0,362,2737,1,0,0,0,364,2739, + 1,0,0,0,366,2741,1,0,0,0,368,2755,1,0,0,0,370,2762,1,0,0,0,372,2776, + 1,0,0,0,374,2778,1,0,0,0,376,2780,1,0,0,0,378,380,3,2,1,0,379,378, + 1,0,0,0,380,383,1,0,0,0,381,379,1,0,0,0,381,382,1,0,0,0,382,384, + 1,0,0,0,383,381,1,0,0,0,384,385,5,0,0,1,385,1,1,0,0,0,386,388,3, + 4,2,0,387,389,5,262,0,0,388,387,1,0,0,0,388,389,1,0,0,0,389,3,1, + 0,0,0,390,413,3,208,104,0,391,413,3,6,3,0,392,413,3,8,4,0,393,413, + 3,26,13,0,394,413,3,64,32,0,395,413,3,66,33,0,396,413,3,68,34,0, + 397,413,3,74,37,0,398,413,3,88,44,0,399,413,3,94,47,0,400,413,3, + 100,50,0,401,413,3,102,51,0,402,413,3,108,54,0,403,413,3,110,55, + 0,404,413,3,112,56,0,405,413,3,144,72,0,406,413,3,152,76,0,407,413, + 3,154,77,0,408,413,3,156,78,0,409,413,3,158,79,0,410,413,3,160,80, + 0,411,413,3,162,81,0,412,390,1,0,0,0,412,391,1,0,0,0,412,392,1,0, + 0,0,412,393,1,0,0,0,412,394,1,0,0,0,412,395,1,0,0,0,412,396,1,0, + 0,0,412,397,1,0,0,0,412,398,1,0,0,0,412,399,1,0,0,0,412,400,1,0, + 0,0,412,401,1,0,0,0,412,402,1,0,0,0,412,403,1,0,0,0,412,404,1,0, + 0,0,412,405,1,0,0,0,412,406,1,0,0,0,412,407,1,0,0,0,412,408,1,0, + 0,0,412,409,1,0,0,0,412,410,1,0,0,0,412,411,1,0,0,0,413,5,1,0,0, + 0,414,415,5,203,0,0,415,416,3,184,92,0,416,7,1,0,0,0,417,426,3,18, + 9,0,418,426,3,20,10,0,419,426,3,22,11,0,420,426,3,24,12,0,421,426, + 3,16,8,0,422,426,3,14,7,0,423,426,3,12,6,0,424,426,3,10,5,0,425, + 417,1,0,0,0,425,418,1,0,0,0,425,419,1,0,0,0,425,420,1,0,0,0,425, + 421,1,0,0,0,425,422,1,0,0,0,425,423,1,0,0,0,425,424,1,0,0,0,426, + 9,1,0,0,0,427,429,5,37,0,0,428,430,5,19,0,0,429,428,1,0,0,0,429, + 430,1,0,0,0,430,431,1,0,0,0,431,433,5,188,0,0,432,434,3,172,86,0, + 433,432,1,0,0,0,433,434,1,0,0,0,434,435,1,0,0,0,435,451,3,174,87, + 0,436,437,5,265,0,0,437,442,3,218,109,0,438,439,5,263,0,0,439,441, + 3,218,109,0,440,438,1,0,0,0,441,444,1,0,0,0,442,440,1,0,0,0,442, + 443,1,0,0,0,443,447,1,0,0,0,444,442,1,0,0,0,445,446,5,263,0,0,446, + 448,3,212,106,0,447,445,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0, + 449,450,5,266,0,0,450,452,1,0,0,0,451,436,1,0,0,0,451,452,1,0,0, + 0,452,459,1,0,0,0,453,454,5,17,0,0,454,457,5,26,0,0,455,458,3,302, + 151,0,456,458,3,256,128,0,457,455,1,0,0,0,457,456,1,0,0,0,458,460, + 1,0,0,0,459,453,1,0,0,0,459,460,1,0,0,0,460,461,1,0,0,0,461,464, + 3,198,99,0,462,463,5,9,0,0,463,465,3,208,104,0,464,462,1,0,0,0,464, + 465,1,0,0,0,465,11,1,0,0,0,466,468,5,37,0,0,467,469,5,19,0,0,468, + 467,1,0,0,0,468,469,1,0,0,0,469,470,1,0,0,0,470,472,5,188,0,0,471, + 473,3,172,86,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1,0,0,0,474, + 475,3,174,87,0,475,479,5,115,0,0,476,480,3,186,93,0,477,478,5,147, + 0,0,478,480,3,324,162,0,479,476,1,0,0,0,479,477,1,0,0,0,480,484, + 1,0,0,0,481,482,5,17,0,0,482,483,5,26,0,0,483,485,3,256,128,0,484, + 481,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,487,3,198,99,0,487, + 13,1,0,0,0,488,490,5,37,0,0,489,491,5,19,0,0,490,489,1,0,0,0,490, + 491,1,0,0,0,491,492,1,0,0,0,492,494,5,188,0,0,493,495,3,172,86,0, + 494,493,1,0,0,0,494,495,1,0,0,0,495,496,1,0,0,0,496,514,3,174,87, + 0,497,498,5,265,0,0,498,503,3,220,110,0,499,500,5,263,0,0,500,502, + 3,220,110,0,501,499,1,0,0,0,502,505,1,0,0,0,503,501,1,0,0,0,503, + 504,1,0,0,0,504,510,1,0,0,0,505,503,1,0,0,0,506,507,5,263,0,0,507, + 508,5,150,0,0,508,509,5,110,0,0,509,511,3,302,151,0,510,506,1,0, + 0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,513,5,266,0,0,513,515,1, + 0,0,0,514,497,1,0,0,0,514,515,1,0,0,0,515,521,1,0,0,0,516,517,5, + 150,0,0,517,519,5,110,0,0,518,520,3,302,151,0,519,518,1,0,0,0,519, + 520,1,0,0,0,520,522,1,0,0,0,521,516,1,0,0,0,521,522,1,0,0,0,522, + 526,1,0,0,0,523,524,5,145,0,0,524,525,5,26,0,0,525,527,3,238,119, + 0,526,523,1,0,0,0,526,527,1,0,0,0,527,529,1,0,0,0,528,530,3,224, + 112,0,529,528,1,0,0,0,529,530,1,0,0,0,530,531,1,0,0,0,531,532,5, + 23,0,0,532,533,5,9,0,0,533,536,5,111,0,0,534,535,5,25,0,0,535,537, + 3,254,127,0,536,534,1,0,0,0,536,537,1,0,0,0,537,540,1,0,0,0,538, + 539,5,9,0,0,539,541,3,208,104,0,540,538,1,0,0,0,540,541,1,0,0,0, + 541,15,1,0,0,0,542,543,5,37,0,0,543,545,5,212,0,0,544,546,3,172, + 86,0,545,544,1,0,0,0,545,546,1,0,0,0,546,547,1,0,0,0,547,549,3,178, + 89,0,548,550,3,204,102,0,549,548,1,0,0,0,549,550,1,0,0,0,550,552, + 1,0,0,0,551,553,3,224,112,0,552,551,1,0,0,0,552,553,1,0,0,0,553, + 556,1,0,0,0,554,555,5,25,0,0,555,557,3,254,127,0,556,554,1,0,0,0, + 556,557,1,0,0,0,557,558,1,0,0,0,558,559,5,9,0,0,559,560,3,208,104, + 0,560,17,1,0,0,0,561,562,5,37,0,0,562,564,7,0,0,0,563,565,3,172, + 86,0,564,563,1,0,0,0,564,565,1,0,0,0,565,566,1,0,0,0,566,568,3,176, + 88,0,567,569,3,224,112,0,568,567,1,0,0,0,568,569,1,0,0,0,569,572, + 1,0,0,0,570,571,5,24,0,0,571,573,3,324,162,0,572,570,1,0,0,0,572, + 573,1,0,0,0,573,19,1,0,0,0,574,575,5,37,0,0,575,576,5,166,0,0,576, + 577,3,370,185,0,577,21,1,0,0,0,578,580,5,37,0,0,579,581,5,12,0,0, + 580,579,1,0,0,0,580,581,1,0,0,0,581,582,1,0,0,0,582,584,5,84,0,0, + 583,585,3,172,86,0,584,583,1,0,0,0,584,585,1,0,0,0,585,586,1,0,0, + 0,586,599,3,180,90,0,587,596,5,265,0,0,588,593,3,338,169,0,589,590, + 5,263,0,0,590,592,3,338,169,0,591,589,1,0,0,0,592,595,1,0,0,0,593, + 591,1,0,0,0,593,594,1,0,0,0,594,597,1,0,0,0,595,593,1,0,0,0,596, + 588,1,0,0,0,596,597,1,0,0,0,597,598,1,0,0,0,598,600,5,266,0,0,599, + 587,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,602,5,160,0,0,602, + 605,3,338,169,0,603,604,5,102,0,0,604,606,3,338,169,0,605,603,1, + 0,0,0,605,606,1,0,0,0,606,607,1,0,0,0,607,608,5,24,0,0,608,612,5, + 274,0,0,609,610,5,104,0,0,610,611,5,249,0,0,611,613,5,274,0,0,612, + 609,1,0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,615,5,206,0,0,615, + 616,5,249,0,0,616,617,5,274,0,0,617,618,5,126,0,0,618,619,5,249, + 0,0,619,623,5,274,0,0,620,621,5,18,0,0,621,622,5,249,0,0,622,624, + 5,274,0,0,623,620,1,0,0,0,623,624,1,0,0,0,624,628,1,0,0,0,625,626, + 5,20,0,0,626,627,5,249,0,0,627,629,5,274,0,0,628,625,1,0,0,0,628, + 629,1,0,0,0,629,633,1,0,0,0,630,631,5,187,0,0,631,632,5,249,0,0, + 632,634,5,274,0,0,633,630,1,0,0,0,633,634,1,0,0,0,634,638,1,0,0, + 0,635,636,5,76,0,0,636,637,5,249,0,0,637,639,5,274,0,0,638,635,1, + 0,0,0,638,639,1,0,0,0,639,23,1,0,0,0,640,641,5,37,0,0,641,643,5, + 84,0,0,642,644,3,172,86,0,643,642,1,0,0,0,643,644,1,0,0,0,644,645, + 1,0,0,0,645,658,3,180,90,0,646,655,5,265,0,0,647,652,3,338,169,0, + 648,649,5,263,0,0,649,651,3,338,169,0,650,648,1,0,0,0,651,654,1, + 0,0,0,652,650,1,0,0,0,652,653,1,0,0,0,653,656,1,0,0,0,654,652,1, + 0,0,0,655,647,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,659,5, + 266,0,0,658,646,1,0,0,0,658,659,1,0,0,0,659,662,1,0,0,0,660,661, + 5,160,0,0,661,663,3,338,169,0,662,660,1,0,0,0,662,663,1,0,0,0,663, + 664,1,0,0,0,664,665,5,24,0,0,665,666,5,274,0,0,666,667,5,186,0,0, + 667,668,5,249,0,0,668,669,3,324,162,0,669,25,1,0,0,0,670,689,3,28, + 14,0,671,689,3,62,31,0,672,689,3,60,30,0,673,689,3,58,29,0,674,689, + 3,54,27,0,675,689,3,56,28,0,676,689,3,52,26,0,677,689,3,48,24,0, + 678,689,3,50,25,0,679,689,3,46,23,0,680,689,3,44,22,0,681,689,3, + 42,21,0,682,689,3,40,20,0,683,689,3,34,17,0,684,689,3,30,15,0,685, + 689,3,32,16,0,686,689,3,36,18,0,687,689,3,38,19,0,688,670,1,0,0, + 0,688,671,1,0,0,0,688,672,1,0,0,0,688,673,1,0,0,0,688,674,1,0,0, + 0,688,675,1,0,0,0,688,676,1,0,0,0,688,677,1,0,0,0,688,678,1,0,0, + 0,688,679,1,0,0,0,688,680,1,0,0,0,688,681,1,0,0,0,688,682,1,0,0, + 0,688,683,1,0,0,0,688,684,1,0,0,0,688,685,1,0,0,0,688,686,1,0,0, + 0,688,687,1,0,0,0,689,27,1,0,0,0,690,691,5,4,0,0,691,692,5,46,0, + 0,692,693,3,184,92,0,693,694,5,176,0,0,694,695,5,142,0,0,695,696, + 7,1,0,0,696,697,3,370,185,0,697,29,1,0,0,0,698,699,5,4,0,0,699,700, + 5,188,0,0,700,701,3,186,93,0,701,702,5,176,0,0,702,703,5,32,0,0, + 703,704,5,182,0,0,704,705,3,192,96,0,705,706,5,265,0,0,706,707,3, + 234,117,0,707,708,5,249,0,0,708,714,3,324,162,0,709,710,5,263,0, + 0,710,711,3,234,117,0,711,712,5,249,0,0,712,713,3,324,162,0,713, + 715,1,0,0,0,714,709,1,0,0,0,714,715,1,0,0,0,715,716,1,0,0,0,716, + 717,5,266,0,0,717,31,1,0,0,0,718,719,5,4,0,0,719,720,5,188,0,0,720, + 723,3,186,93,0,721,722,5,145,0,0,722,724,3,314,157,0,723,721,1,0, + 0,0,723,724,1,0,0,0,724,725,1,0,0,0,725,736,5,176,0,0,726,727,5, + 30,0,0,727,728,5,94,0,0,728,733,3,324,162,0,729,730,5,216,0,0,730, + 731,5,151,0,0,731,732,5,249,0,0,732,734,3,372,186,0,733,729,1,0, + 0,0,733,734,1,0,0,0,734,737,1,0,0,0,735,737,5,197,0,0,736,726,1, + 0,0,0,736,735,1,0,0,0,737,33,1,0,0,0,738,739,5,4,0,0,739,740,5,188, + 0,0,740,741,3,186,93,0,741,742,5,31,0,0,742,743,3,192,96,0,743,744, + 3,226,113,0,744,35,1,0,0,0,745,746,5,4,0,0,746,747,5,188,0,0,747, + 748,3,186,93,0,748,750,5,58,0,0,749,751,5,32,0,0,750,749,1,0,0,0, + 750,751,1,0,0,0,751,752,1,0,0,0,752,753,3,192,96,0,753,37,1,0,0, + 0,754,755,5,4,0,0,755,756,5,188,0,0,756,757,3,186,93,0,757,758,5, + 176,0,0,758,759,5,142,0,0,759,760,7,1,0,0,760,761,3,370,185,0,761, + 39,1,0,0,0,762,763,5,4,0,0,763,764,5,188,0,0,764,770,3,186,93,0, + 765,771,5,158,0,0,766,768,5,1,0,0,767,769,3,172,86,0,768,767,1,0, + 0,0,768,769,1,0,0,0,769,771,1,0,0,0,770,765,1,0,0,0,770,766,1,0, + 0,0,771,772,1,0,0,0,772,773,5,33,0,0,773,774,5,265,0,0,774,779,3, + 226,113,0,775,776,5,263,0,0,776,778,3,226,113,0,777,775,1,0,0,0, + 778,781,1,0,0,0,779,780,1,0,0,0,779,777,1,0,0,0,780,782,1,0,0,0, + 781,779,1,0,0,0,782,783,5,266,0,0,783,41,1,0,0,0,784,785,5,4,0,0, + 785,786,5,188,0,0,786,787,3,186,93,0,787,788,5,1,0,0,788,790,5,32, + 0,0,789,791,3,172,86,0,790,789,1,0,0,0,790,791,1,0,0,0,791,792,1, + 0,0,0,792,793,3,228,114,0,793,43,1,0,0,0,794,795,5,4,0,0,795,796, + 5,188,0,0,796,797,3,186,93,0,797,799,5,4,0,0,798,800,5,32,0,0,799, + 798,1,0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,810,3,192,96,0,802, + 806,5,176,0,0,803,807,3,232,116,0,804,805,5,34,0,0,805,807,3,324, + 162,0,806,803,1,0,0,0,806,804,1,0,0,0,807,811,1,0,0,0,808,809,5, + 58,0,0,809,811,5,51,0,0,810,802,1,0,0,0,810,808,1,0,0,0,811,45,1, + 0,0,0,812,813,5,4,0,0,813,814,5,188,0,0,814,815,3,186,93,0,815,817, + 5,1,0,0,816,818,3,172,86,0,817,816,1,0,0,0,817,818,1,0,0,0,818,831, + 1,0,0,0,819,820,5,145,0,0,820,823,3,314,157,0,821,822,5,24,0,0,822, + 824,3,324,162,0,823,821,1,0,0,0,823,824,1,0,0,0,824,826,1,0,0,0, + 825,827,3,246,123,0,826,825,1,0,0,0,826,827,1,0,0,0,827,832,1,0, + 0,0,828,829,5,154,0,0,829,830,5,145,0,0,830,832,3,244,122,0,831, + 819,1,0,0,0,831,828,1,0,0,0,832,47,1,0,0,0,833,834,5,4,0,0,834,835, + 5,188,0,0,835,838,3,186,93,0,836,837,5,145,0,0,837,839,3,314,157, + 0,838,836,1,0,0,0,838,839,1,0,0,0,839,840,1,0,0,0,840,852,5,176, + 0,0,841,842,5,72,0,0,842,853,3,236,118,0,843,844,5,168,0,0,844,845, + 5,79,0,0,845,853,3,260,130,0,846,847,5,24,0,0,847,853,3,324,162, + 0,848,849,5,25,0,0,849,853,3,254,127,0,850,851,5,175,0,0,851,853, + 3,254,127,0,852,841,1,0,0,0,852,843,1,0,0,0,852,846,1,0,0,0,852, + 848,1,0,0,0,852,850,1,0,0,0,853,49,1,0,0,0,854,855,5,4,0,0,855,856, + 5,188,0,0,856,857,3,186,93,0,857,858,5,155,0,0,858,859,5,146,0,0, + 859,51,1,0,0,0,860,861,5,4,0,0,861,862,5,188,0,0,862,863,3,186,93, + 0,863,865,5,58,0,0,864,866,3,170,85,0,865,864,1,0,0,0,865,866,1, + 0,0,0,866,875,1,0,0,0,867,868,5,145,0,0,868,870,3,314,157,0,869, + 871,5,22,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,876,1,0,0,0,872, + 873,5,154,0,0,873,874,5,145,0,0,874,876,3,244,122,0,875,867,1,0, + 0,0,875,872,1,0,0,0,876,53,1,0,0,0,877,878,5,4,0,0,878,879,5,212, + 0,0,879,881,3,188,94,0,880,882,3,204,102,0,881,880,1,0,0,0,881,882, + 1,0,0,0,882,883,1,0,0,0,883,884,5,9,0,0,884,885,3,208,104,0,885, + 55,1,0,0,0,886,887,5,4,0,0,887,888,5,212,0,0,888,889,3,188,94,0, + 889,890,5,156,0,0,890,891,5,193,0,0,891,892,3,188,94,0,892,57,1, + 0,0,0,893,894,5,4,0,0,894,895,5,212,0,0,895,896,3,188,94,0,896,897, + 5,176,0,0,897,898,5,142,0,0,898,899,7,1,0,0,899,900,3,366,183,0, + 900,59,1,0,0,0,901,902,5,4,0,0,902,903,5,188,0,0,903,904,3,186,93, + 0,904,905,5,156,0,0,905,906,5,193,0,0,906,907,3,186,93,0,907,61, + 1,0,0,0,908,909,5,4,0,0,909,910,5,212,0,0,910,911,3,188,94,0,911, + 912,7,2,0,0,912,913,5,25,0,0,913,914,3,254,127,0,914,63,1,0,0,0, + 915,917,5,196,0,0,916,918,5,188,0,0,917,916,1,0,0,0,917,918,1,0, + 0,0,918,920,1,0,0,0,919,921,3,170,85,0,920,919,1,0,0,0,920,921,1, + 0,0,0,921,922,1,0,0,0,922,923,3,186,93,0,923,65,1,0,0,0,924,926, + 5,56,0,0,925,927,5,46,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,929, + 1,0,0,0,928,930,7,3,0,0,929,928,1,0,0,0,929,930,1,0,0,0,930,931, + 1,0,0,0,931,932,3,366,183,0,932,67,1,0,0,0,933,936,3,70,35,0,934, + 936,3,72,36,0,935,933,1,0,0,0,935,934,1,0,0,0,936,69,1,0,0,0,937, + 938,5,36,0,0,938,939,5,182,0,0,939,941,3,186,93,0,940,942,3,302, + 151,0,941,940,1,0,0,0,941,942,1,0,0,0,942,955,1,0,0,0,943,944,5, + 190,0,0,944,945,5,185,0,0,945,946,5,265,0,0,946,947,3,372,186,0, + 947,953,5,266,0,0,948,949,5,157,0,0,949,950,5,265,0,0,950,951,3, + 372,186,0,951,952,5,266,0,0,952,954,1,0,0,0,953,948,1,0,0,0,953, + 954,1,0,0,0,954,956,1,0,0,0,955,943,1,0,0,0,955,956,1,0,0,0,956, + 71,1,0,0,0,957,958,5,36,0,0,958,959,5,96,0,0,959,960,5,182,0,0,960, + 966,3,186,93,0,961,962,5,145,0,0,962,963,5,265,0,0,963,964,3,314, + 157,0,964,965,5,266,0,0,965,967,1,0,0,0,966,961,1,0,0,0,966,967, + 1,0,0,0,967,73,1,0,0,0,968,975,3,86,43,0,969,975,3,84,42,0,970,975, + 3,82,41,0,971,975,3,78,39,0,972,975,3,80,40,0,973,975,3,76,38,0, + 974,968,1,0,0,0,974,969,1,0,0,0,974,970,1,0,0,0,974,971,1,0,0,0, + 974,972,1,0,0,0,974,973,1,0,0,0,975,75,1,0,0,0,976,977,5,58,0,0, + 977,979,7,0,0,0,978,980,3,170,85,0,979,978,1,0,0,0,979,980,1,0,0, + 0,980,981,1,0,0,0,981,983,3,184,92,0,982,984,7,4,0,0,983,982,1,0, + 0,0,983,984,1,0,0,0,984,77,1,0,0,0,985,986,5,58,0,0,986,988,5,212, + 0,0,987,989,3,170,85,0,988,987,1,0,0,0,988,989,1,0,0,0,989,990,1, + 0,0,0,990,991,3,188,94,0,991,79,1,0,0,0,992,993,5,58,0,0,993,995, + 5,188,0,0,994,996,3,170,85,0,995,994,1,0,0,0,995,996,1,0,0,0,996, + 997,1,0,0,0,997,999,3,186,93,0,998,1000,5,22,0,0,999,998,1,0,0,0, + 999,1000,1,0,0,0,1000,81,1,0,0,0,1001,1003,5,58,0,0,1002,1004,5, + 96,0,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005, + 1006,5,182,0,0,1006,1009,3,186,93,0,1007,1008,5,145,0,0,1008,1010, + 3,314,157,0,1009,1007,1,0,0,0,1009,1010,1,0,0,0,1010,83,1,0,0,0, + 1011,1013,5,58,0,0,1012,1014,5,12,0,0,1013,1012,1,0,0,0,1013,1014, + 1,0,0,0,1014,1015,1,0,0,0,1015,1017,5,84,0,0,1016,1018,3,170,85, + 0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0,0,0,1019,1032, + 3,190,95,0,1020,1029,5,265,0,0,1021,1026,3,338,169,0,1022,1023,5, + 263,0,0,1023,1025,3,338,169,0,1024,1022,1,0,0,0,1025,1028,1,0,0, + 0,1026,1024,1,0,0,0,1026,1027,1,0,0,0,1027,1030,1,0,0,0,1028,1026, + 1,0,0,0,1029,1021,1,0,0,0,1029,1030,1,0,0,0,1030,1031,1,0,0,0,1031, + 1033,5,266,0,0,1032,1020,1,0,0,0,1032,1033,1,0,0,0,1033,85,1,0,0, + 0,1034,1035,5,58,0,0,1035,1036,5,166,0,0,1036,1037,3,370,185,0,1037, + 87,1,0,0,0,1038,1041,3,90,45,0,1039,1041,3,92,46,0,1040,1038,1,0, + 0,0,1040,1039,1,0,0,0,1041,89,1,0,0,0,1042,1043,5,86,0,0,1043,1044, + 5,166,0,0,1044,1045,3,370,185,0,1045,1046,5,193,0,0,1046,1047,5, + 87,0,0,1047,1048,3,370,185,0,1048,91,1,0,0,0,1049,1050,5,86,0,0, + 1050,1051,3,362,181,0,1051,1052,5,136,0,0,1052,1054,3,364,182,0, + 1053,1055,3,366,183,0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056, + 1,0,0,0,1056,1057,5,193,0,0,1057,1058,3,368,184,0,1058,93,1,0,0, + 0,1059,1062,3,96,48,0,1060,1062,3,98,49,0,1061,1059,1,0,0,0,1061, + 1060,1,0,0,0,1062,95,1,0,0,0,1063,1064,5,161,0,0,1064,1065,5,166, + 0,0,1065,1066,3,370,185,0,1066,1067,5,82,0,0,1067,1068,5,87,0,0, + 1068,1069,3,370,185,0,1069,97,1,0,0,0,1070,1074,5,161,0,0,1071,1072, + 5,86,0,0,1072,1073,5,137,0,0,1073,1075,5,78,0,0,1074,1071,1,0,0, + 0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1077,3,362,181,0,1077, + 1078,5,136,0,0,1078,1080,3,364,182,0,1079,1081,3,366,183,0,1080, + 1079,1,0,0,0,1080,1081,1,0,0,0,1081,1082,1,0,0,0,1082,1088,5,82, + 0,0,1083,1089,3,368,184,0,1084,1086,5,166,0,0,1085,1084,1,0,0,0, + 1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1089,3,370,185,0,1088,1083, + 1,0,0,0,1088,1085,1,0,0,0,1089,99,1,0,0,0,1090,1092,3,210,105,0, + 1091,1090,1,0,0,0,1091,1092,1,0,0,0,1092,1093,1,0,0,0,1093,1094, + 5,99,0,0,1094,1096,7,5,0,0,1095,1097,5,188,0,0,1096,1095,1,0,0,0, + 1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098,1100,3,186,93,0,1099,1101, + 3,302,151,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1114,1,0,0, + 0,1102,1103,5,145,0,0,1103,1104,5,265,0,0,1104,1109,3,314,157,0, + 1105,1106,5,263,0,0,1106,1108,3,314,157,0,1107,1105,1,0,0,0,1108, + 1111,1,0,0,0,1109,1107,1,0,0,0,1109,1110,1,0,0,0,1110,1112,1,0,0, + 0,1111,1109,1,0,0,0,1112,1113,5,266,0,0,1113,1115,1,0,0,0,1114,1102, + 1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1117,3,208,104, + 0,1117,101,1,0,0,0,1118,1121,3,104,52,0,1119,1121,3,106,53,0,1120, + 1118,1,0,0,0,1120,1119,1,0,0,0,1121,103,1,0,0,0,1122,1124,5,50,0, + 0,1123,1125,5,82,0,0,1124,1123,1,0,0,0,1124,1125,1,0,0,0,1125,1126, + 1,0,0,0,1126,1128,3,186,93,0,1127,1129,3,274,137,0,1128,1127,1,0, + 0,0,1128,1129,1,0,0,0,1129,105,1,0,0,0,1130,1131,5,50,0,0,1131,1136, + 3,186,93,0,1132,1134,5,9,0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0, + 1134,1135,1,0,0,0,1135,1137,3,370,185,0,1136,1133,1,0,0,0,1136,1137, + 1,0,0,0,1137,1138,1,0,0,0,1138,1147,5,82,0,0,1139,1144,3,290,145, + 0,1140,1141,5,263,0,0,1141,1143,3,290,145,0,1142,1140,1,0,0,0,1143, + 1146,1,0,0,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,1148,1,0,0, + 0,1146,1144,1,0,0,0,1147,1139,1,0,0,0,1147,1148,1,0,0,0,1148,1150, + 1,0,0,0,1149,1151,3,274,137,0,1150,1149,1,0,0,0,1150,1151,1,0,0, + 0,1151,107,1,0,0,0,1152,1153,5,54,0,0,1153,1154,3,186,93,0,1154, + 1155,5,176,0,0,1155,1165,3,200,100,0,1156,1157,5,82,0,0,1157,1162, + 3,290,145,0,1158,1159,5,263,0,0,1159,1161,3,290,145,0,1160,1158, + 1,0,0,0,1161,1164,1,0,0,0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163, + 1166,1,0,0,0,1164,1162,1,0,0,0,1165,1156,1,0,0,0,1165,1166,1,0,0, + 0,1166,1168,1,0,0,0,1167,1169,3,274,137,0,1168,1167,1,0,0,0,1168, + 1169,1,0,0,0,1169,109,1,0,0,0,1170,1171,5,207,0,0,1171,1173,5,103, + 0,0,1172,1174,5,188,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0,1174, + 1175,1,0,0,0,1175,1177,3,186,93,0,1176,1178,3,302,151,0,1177,1176, + 1,0,0,0,1177,1178,1,0,0,0,1178,1179,1,0,0,0,1179,1180,3,208,104, + 0,1180,111,1,0,0,0,1181,1194,3,132,66,0,1182,1194,3,134,67,0,1183, + 1194,3,136,68,0,1184,1194,3,130,65,0,1185,1194,3,128,64,0,1186,1194, + 3,126,63,0,1187,1194,3,124,62,0,1188,1194,3,122,61,0,1189,1194,3, + 120,60,0,1190,1194,3,118,59,0,1191,1194,3,116,58,0,1192,1194,3,114, + 57,0,1193,1181,1,0,0,0,1193,1182,1,0,0,0,1193,1183,1,0,0,0,1193, + 1184,1,0,0,0,1193,1185,1,0,0,0,1193,1186,1,0,0,0,1193,1187,1,0,0, + 0,1193,1188,1,0,0,0,1193,1189,1,0,0,0,1193,1190,1,0,0,0,1193,1191, + 1,0,0,0,1193,1192,1,0,0,0,1194,113,1,0,0,0,1195,1196,5,179,0,0,1196, + 1208,7,6,0,0,1197,1199,5,115,0,0,1198,1197,1,0,0,0,1198,1199,1,0, + 0,0,1199,1200,1,0,0,0,1200,1205,3,324,162,0,1201,1202,5,271,0,0, + 1202,1204,3,324,162,0,1203,1201,1,0,0,0,1204,1207,1,0,0,0,1205,1203, + 1,0,0,0,1205,1206,1,0,0,0,1206,1209,1,0,0,0,1207,1205,1,0,0,0,1208, + 1198,1,0,0,0,1208,1209,1,0,0,0,1209,115,1,0,0,0,1210,1211,5,179, + 0,0,1211,1214,5,189,0,0,1212,1213,5,94,0,0,1213,1215,3,186,93,0, + 1214,1212,1,0,0,0,1214,1215,1,0,0,0,1215,1227,1,0,0,0,1216,1218, + 5,115,0,0,1217,1216,1,0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0, + 1219,1224,3,324,162,0,1220,1221,5,271,0,0,1221,1223,3,324,162,0, + 1222,1220,1,0,0,0,1223,1226,1,0,0,0,1224,1222,1,0,0,0,1224,1225, + 1,0,0,0,1225,1228,1,0,0,0,1226,1224,1,0,0,0,1227,1217,1,0,0,0,1227, + 1228,1,0,0,0,1228,117,1,0,0,0,1229,1231,5,179,0,0,1230,1232,7,7, + 0,0,1231,1230,1,0,0,0,1231,1232,1,0,0,0,1232,1233,1,0,0,0,1233,1236, + 5,85,0,0,1234,1235,5,94,0,0,1235,1237,3,184,92,0,1236,1234,1,0,0, + 0,1236,1237,1,0,0,0,1237,1249,1,0,0,0,1238,1240,5,115,0,0,1239,1238, + 1,0,0,0,1239,1240,1,0,0,0,1240,1241,1,0,0,0,1241,1246,3,324,162, + 0,1242,1243,5,271,0,0,1243,1245,3,324,162,0,1244,1242,1,0,0,0,1245, + 1248,1,0,0,0,1246,1244,1,0,0,0,1246,1247,1,0,0,0,1247,1250,1,0,0, + 0,1248,1246,1,0,0,0,1249,1239,1,0,0,0,1249,1250,1,0,0,0,1250,119, + 1,0,0,0,1251,1252,5,179,0,0,1252,1253,5,37,0,0,1253,1254,5,188,0, + 0,1254,1255,3,186,93,0,1255,121,1,0,0,0,1256,1257,5,179,0,0,1257, + 1258,5,37,0,0,1258,1259,5,212,0,0,1259,1260,3,188,94,0,1260,123, + 1,0,0,0,1261,1262,5,179,0,0,1262,1263,5,188,0,0,1263,1264,5,182, + 0,0,1264,1265,3,186,93,0,1265,125,1,0,0,0,1266,1267,5,179,0,0,1267, + 1268,5,32,0,0,1268,1269,5,182,0,0,1269,1270,3,186,93,0,1270,127, + 1,0,0,0,1271,1273,5,179,0,0,1272,1274,5,154,0,0,1273,1272,1,0,0, + 0,1273,1274,1,0,0,0,1274,1275,1,0,0,0,1275,1276,5,146,0,0,1276,1277, + 3,186,93,0,1277,129,1,0,0,0,1278,1279,5,179,0,0,1279,1280,5,73,0, + 0,1280,1281,5,94,0,0,1281,1291,3,186,93,0,1282,1283,5,145,0,0,1283, + 1284,5,265,0,0,1284,1287,3,314,157,0,1285,1286,5,263,0,0,1286,1288, + 3,314,157,0,1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,1289,1,0,0, + 0,1289,1290,5,266,0,0,1290,1292,1,0,0,0,1291,1282,1,0,0,0,1291,1292, + 1,0,0,0,1292,131,1,0,0,0,1293,1295,5,179,0,0,1294,1296,5,39,0,0, + 1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1298, + 5,167,0,0,1298,133,1,0,0,0,1299,1300,5,179,0,0,1300,1301,5,166,0, + 0,1301,1302,5,86,0,0,1302,1303,5,87,0,0,1303,1304,3,370,185,0,1304, + 135,1,0,0,0,1305,1320,3,138,69,0,1306,1320,3,140,70,0,1307,1320, + 3,142,71,0,1308,1309,5,179,0,0,1309,1310,5,86,0,0,1310,1311,7,8, + 0,0,1311,1317,3,370,185,0,1312,1313,5,136,0,0,1313,1315,7,9,0,0, + 1314,1316,3,366,183,0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1318, + 1,0,0,0,1317,1312,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0,0,1319, + 1305,1,0,0,0,1319,1306,1,0,0,0,1319,1307,1,0,0,0,1319,1308,1,0,0, + 0,1320,137,1,0,0,0,1321,1322,5,179,0,0,1322,1323,5,86,0,0,1323,1324, + 7,8,0,0,1324,1330,3,370,185,0,1325,1326,5,136,0,0,1326,1328,5,46, + 0,0,1327,1329,3,184,92,0,1328,1327,1,0,0,0,1328,1329,1,0,0,0,1329, + 1331,1,0,0,0,1330,1325,1,0,0,0,1330,1331,1,0,0,0,1331,139,1,0,0, + 0,1332,1333,5,179,0,0,1333,1334,5,86,0,0,1334,1335,7,8,0,0,1335, + 1341,3,370,185,0,1336,1337,5,136,0,0,1337,1339,5,188,0,0,1338,1340, + 3,186,93,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1342,1,0,0,0, + 1341,1336,1,0,0,0,1341,1342,1,0,0,0,1342,141,1,0,0,0,1343,1344,5, + 179,0,0,1344,1345,5,86,0,0,1345,1346,7,8,0,0,1346,1352,3,370,185, + 0,1347,1348,5,136,0,0,1348,1350,5,32,0,0,1349,1351,3,192,96,0,1350, + 1349,1,0,0,0,1350,1351,1,0,0,0,1351,1353,1,0,0,0,1352,1347,1,0,0, + 0,1352,1353,1,0,0,0,1353,143,1,0,0,0,1354,1358,3,146,73,0,1355,1358, + 3,148,74,0,1356,1358,3,150,75,0,1357,1354,1,0,0,0,1357,1355,1,0, + 0,0,1357,1356,1,0,0,0,1358,145,1,0,0,0,1359,1360,5,34,0,0,1360,1361, + 5,136,0,0,1361,1362,5,46,0,0,1362,1363,3,184,92,0,1363,1366,5,108, + 0,0,1364,1367,3,324,162,0,1365,1367,5,133,0,0,1366,1364,1,0,0,0, + 1366,1365,1,0,0,0,1367,147,1,0,0,0,1368,1369,5,34,0,0,1369,1370, + 5,136,0,0,1370,1371,5,188,0,0,1371,1372,3,186,93,0,1372,1375,5,108, + 0,0,1373,1376,3,324,162,0,1374,1376,5,133,0,0,1375,1373,1,0,0,0, + 1375,1374,1,0,0,0,1376,149,1,0,0,0,1377,1378,5,34,0,0,1378,1379, + 5,136,0,0,1379,1380,5,32,0,0,1380,1381,3,192,96,0,1381,1384,5,108, + 0,0,1382,1385,3,324,162,0,1383,1385,5,133,0,0,1384,1382,1,0,0,0, + 1384,1383,1,0,0,0,1385,151,1,0,0,0,1386,1387,5,67,0,0,1387,1388, + 3,4,2,0,1388,153,1,0,0,0,1389,1395,5,176,0,0,1390,1396,5,2,0,0,1391, + 1392,3,370,185,0,1392,1393,5,249,0,0,1393,1394,3,314,157,0,1394, + 1396,1,0,0,0,1395,1390,1,0,0,0,1395,1391,1,0,0,0,1395,1396,1,0,0, + 0,1396,155,1,0,0,0,1397,1398,5,264,0,0,1398,1399,5,180,0,0,1399, + 1409,5,265,0,0,1400,1402,3,324,162,0,1401,1400,1,0,0,0,1401,1402, + 1,0,0,0,1402,1410,1,0,0,0,1403,1406,3,324,162,0,1404,1405,5,263, + 0,0,1405,1407,3,314,157,0,1406,1404,1,0,0,0,1406,1407,1,0,0,0,1407, + 1410,1,0,0,0,1408,1410,3,314,157,0,1409,1401,1,0,0,0,1409,1403,1, + 0,0,0,1409,1408,1,0,0,0,1410,1411,1,0,0,0,1411,1412,5,266,0,0,1412, + 157,1,0,0,0,1413,1414,5,107,0,0,1414,1415,5,121,0,0,1415,1416,3, + 186,93,0,1416,159,1,0,0,0,1417,1418,5,118,0,0,1418,1419,5,45,0,0, + 1419,1420,5,98,0,0,1420,1422,5,274,0,0,1421,1423,5,144,0,0,1422, + 1421,1,0,0,0,1422,1423,1,0,0,0,1423,1424,1,0,0,0,1424,1425,5,103, + 0,0,1425,1426,5,188,0,0,1426,1436,3,186,93,0,1427,1428,5,145,0,0, + 1428,1429,5,265,0,0,1429,1432,3,314,157,0,1430,1431,5,263,0,0,1431, + 1433,3,314,157,0,1432,1430,1,0,0,0,1432,1433,1,0,0,0,1433,1434,1, + 0,0,0,1434,1435,5,266,0,0,1435,1437,1,0,0,0,1436,1427,1,0,0,0,1436, + 1437,1,0,0,0,1437,161,1,0,0,0,1438,1442,3,164,82,0,1439,1442,3,166, + 83,0,1440,1442,3,168,84,0,1441,1438,1,0,0,0,1441,1439,1,0,0,0,1441, + 1440,1,0,0,0,1442,163,1,0,0,0,1443,1444,5,162,0,0,1444,1457,3,186, + 93,0,1445,1446,5,145,0,0,1446,1447,5,265,0,0,1447,1452,3,314,157, + 0,1448,1449,5,263,0,0,1449,1451,3,314,157,0,1450,1448,1,0,0,0,1451, + 1454,1,0,0,0,1452,1453,1,0,0,0,1452,1450,1,0,0,0,1453,1455,1,0,0, + 0,1454,1452,1,0,0,0,1455,1456,5,266,0,0,1456,1458,1,0,0,0,1457,1445, + 1,0,0,0,1457,1458,1,0,0,0,1458,165,1,0,0,0,1459,1460,5,162,0,0,1460, + 1461,5,13,0,0,1461,167,1,0,0,0,1462,1463,5,162,0,0,1463,1464,5,85, + 0,0,1464,1465,3,190,95,0,1465,169,1,0,0,0,1466,1467,5,93,0,0,1467, + 1468,5,66,0,0,1468,171,1,0,0,0,1469,1470,5,93,0,0,1470,1471,5,132, + 0,0,1471,1472,5,66,0,0,1472,173,1,0,0,0,1473,1474,3,366,183,0,1474, + 175,1,0,0,0,1475,1476,3,366,183,0,1476,177,1,0,0,0,1477,1478,3,366, + 183,0,1478,179,1,0,0,0,1479,1480,3,366,183,0,1480,181,1,0,0,0,1481, + 1482,3,366,183,0,1482,183,1,0,0,0,1483,1484,3,366,183,0,1484,185, + 1,0,0,0,1485,1490,3,370,185,0,1486,1487,5,261,0,0,1487,1489,3,370, + 185,0,1488,1486,1,0,0,0,1489,1492,1,0,0,0,1490,1488,1,0,0,0,1490, + 1491,1,0,0,0,1491,187,1,0,0,0,1492,1490,1,0,0,0,1493,1498,3,370, + 185,0,1494,1495,5,261,0,0,1495,1497,3,370,185,0,1496,1494,1,0,0, + 0,1497,1500,1,0,0,0,1498,1496,1,0,0,0,1498,1499,1,0,0,0,1499,189, + 1,0,0,0,1500,1498,1,0,0,0,1501,1504,3,374,187,0,1502,1504,3,366, + 183,0,1503,1501,1,0,0,0,1503,1502,1,0,0,0,1504,191,1,0,0,0,1505, + 1508,3,366,183,0,1506,1508,4,96,0,0,1507,1505,1,0,0,0,1507,1506, + 1,0,0,0,1508,193,1,0,0,0,1509,1510,3,366,183,0,1510,195,1,0,0,0, + 1511,1514,3,186,93,0,1512,1514,3,188,94,0,1513,1511,1,0,0,0,1513, + 1512,1,0,0,0,1514,197,1,0,0,0,1515,1516,5,21,0,0,1516,1517,5,26, + 0,0,1517,1519,3,302,151,0,1518,1515,1,0,0,0,1518,1519,1,0,0,0,1519, + 1521,1,0,0,0,1520,1522,3,224,112,0,1521,1520,1,0,0,0,1521,1522,1, + 0,0,0,1522,1526,1,0,0,0,1523,1524,5,168,0,0,1524,1525,5,79,0,0,1525, + 1527,3,260,130,0,1526,1523,1,0,0,0,1526,1527,1,0,0,0,1527,1531,1, + 0,0,0,1528,1529,5,216,0,0,1529,1530,5,175,0,0,1530,1532,3,254,127, + 0,1531,1528,1,0,0,0,1531,1532,1,0,0,0,1532,1536,1,0,0,0,1533,1534, + 5,23,0,0,1534,1535,5,9,0,0,1535,1537,3,236,118,0,1536,1533,1,0,0, + 0,1536,1537,1,0,0,0,1537,1540,1,0,0,0,1538,1539,5,24,0,0,1539,1541, + 3,324,162,0,1540,1538,1,0,0,0,1540,1541,1,0,0,0,1541,1552,1,0,0, + 0,1542,1543,5,30,0,0,1543,1544,5,94,0,0,1544,1549,3,366,183,0,1545, + 1546,5,216,0,0,1546,1547,5,151,0,0,1547,1548,5,249,0,0,1548,1550, + 5,277,0,0,1549,1545,1,0,0,0,1549,1550,1,0,0,0,1550,1553,1,0,0,0, + 1551,1553,5,197,0,0,1552,1542,1,0,0,0,1552,1551,1,0,0,0,1552,1553, + 1,0,0,0,1553,1556,1,0,0,0,1554,1555,5,25,0,0,1555,1557,3,254,127, + 0,1556,1554,1,0,0,0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1563, + 3,202,101,0,1559,1560,5,263,0,0,1560,1562,3,202,101,0,1561,1559, + 1,0,0,0,1562,1565,1,0,0,0,1563,1561,1,0,0,0,1563,1564,1,0,0,0,1564, + 201,1,0,0,0,1565,1563,1,0,0,0,1566,1567,3,366,183,0,1567,1568,5, + 249,0,0,1568,1569,3,314,157,0,1569,203,1,0,0,0,1570,1572,5,265,0, + 0,1571,1573,3,206,103,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573, + 1580,1,0,0,0,1574,1576,5,263,0,0,1575,1577,3,206,103,0,1576,1575, + 1,0,0,0,1576,1577,1,0,0,0,1577,1579,1,0,0,0,1578,1574,1,0,0,0,1579, + 1582,1,0,0,0,1580,1578,1,0,0,0,1580,1581,1,0,0,0,1581,1583,1,0,0, + 0,1582,1580,1,0,0,0,1583,1584,5,266,0,0,1584,205,1,0,0,0,1585,1587, + 3,182,91,0,1586,1588,3,224,112,0,1587,1586,1,0,0,0,1587,1588,1,0, + 0,0,1588,207,1,0,0,0,1589,1591,3,210,105,0,1590,1589,1,0,0,0,1590, + 1591,1,0,0,0,1591,1592,1,0,0,0,1592,1593,3,264,132,0,1593,209,1, + 0,0,0,1594,1595,5,216,0,0,1595,1600,3,284,142,0,1596,1597,5,263, + 0,0,1597,1599,3,284,142,0,1598,1596,1,0,0,0,1599,1602,1,0,0,0,1600, + 1598,1,0,0,0,1600,1601,1,0,0,0,1601,211,1,0,0,0,1602,1600,1,0,0, + 0,1603,1604,5,150,0,0,1604,1605,5,110,0,0,1605,1607,3,302,151,0, + 1606,1608,5,53,0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1612, + 1,0,0,0,1609,1613,5,225,0,0,1610,1611,5,263,0,0,1611,1613,5,225, + 0,0,1612,1609,1,0,0,0,1612,1610,1,0,0,0,1612,1613,1,0,0,0,1613,1617, + 1,0,0,0,1614,1618,5,226,0,0,1615,1616,5,263,0,0,1616,1618,5,226, + 0,0,1617,1614,1,0,0,0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,1631, + 1,0,0,0,1619,1620,5,263,0,0,1620,1623,3,214,107,0,1621,1623,3,214, + 107,0,1622,1619,1,0,0,0,1622,1621,1,0,0,0,1623,1628,1,0,0,0,1624, + 1625,5,263,0,0,1625,1627,3,214,107,0,1626,1624,1,0,0,0,1627,1630, + 1,0,0,0,1628,1629,1,0,0,0,1628,1626,1,0,0,0,1629,1632,1,0,0,0,1630, + 1628,1,0,0,0,1631,1622,1,0,0,0,1631,1632,1,0,0,0,1632,213,1,0,0, + 0,1633,1634,5,81,0,0,1634,1635,5,110,0,0,1635,1636,3,302,151,0,1636, + 1637,5,224,0,0,1637,1638,3,186,93,0,1638,1640,3,302,151,0,1639,1641, + 5,53,0,0,1640,1639,1,0,0,0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642, + 1644,5,225,0,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0,1644,1646,1,0, + 0,0,1645,1647,5,226,0,0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647, + 215,1,0,0,0,1648,1649,3,192,96,0,1649,1652,3,338,169,0,1650,1651, + 5,34,0,0,1651,1653,3,324,162,0,1652,1650,1,0,0,0,1652,1653,1,0,0, + 0,1653,217,1,0,0,0,1654,1655,3,182,91,0,1655,1657,3,338,169,0,1656, + 1658,3,224,112,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,219,1, + 0,0,0,1659,1660,3,222,111,0,1660,221,1,0,0,0,1661,1662,3,182,91, + 0,1662,1670,3,338,169,0,1663,1667,3,230,115,0,1664,1666,3,230,115, + 0,1665,1664,1,0,0,0,1666,1669,1,0,0,0,1667,1668,1,0,0,0,1667,1665, + 1,0,0,0,1668,1671,1,0,0,0,1669,1667,1,0,0,0,1670,1663,1,0,0,0,1670, + 1671,1,0,0,0,1671,1673,1,0,0,0,1672,1674,3,224,112,0,1673,1672,1, + 0,0,0,1673,1674,1,0,0,0,1674,1677,1,0,0,0,1675,1676,5,150,0,0,1676, + 1678,5,110,0,0,1677,1675,1,0,0,0,1677,1678,1,0,0,0,1678,223,1,0, + 0,0,1679,1680,5,34,0,0,1680,1681,3,324,162,0,1681,225,1,0,0,0,1682, + 1690,3,216,108,0,1683,1687,3,230,115,0,1684,1686,3,230,115,0,1685, + 1684,1,0,0,0,1686,1689,1,0,0,0,1687,1688,1,0,0,0,1687,1685,1,0,0, + 0,1688,1691,1,0,0,0,1689,1687,1,0,0,0,1690,1683,1,0,0,0,1690,1691, + 1,0,0,0,1691,227,1,0,0,0,1692,1693,3,182,91,0,1693,1696,3,338,169, + 0,1694,1695,5,34,0,0,1695,1697,3,324,162,0,1696,1694,1,0,0,0,1696, + 1697,1,0,0,0,1697,1705,1,0,0,0,1698,1702,3,230,115,0,1699,1701,3, + 230,115,0,1700,1699,1,0,0,0,1701,1704,1,0,0,0,1702,1703,1,0,0,0, + 1702,1700,1,0,0,0,1703,1706,1,0,0,0,1704,1702,1,0,0,0,1705,1698, + 1,0,0,0,1705,1706,1,0,0,0,1706,229,1,0,0,0,1707,1709,5,132,0,0,1708, + 1707,1,0,0,0,1708,1709,1,0,0,0,1709,1710,1,0,0,0,1710,1713,5,133, + 0,0,1711,1713,3,232,116,0,1712,1708,1,0,0,0,1712,1711,1,0,0,0,1713, + 231,1,0,0,0,1714,1715,5,60,0,0,1715,1723,3,314,157,0,1716,1717,5, + 35,0,0,1717,1723,3,314,157,0,1718,1719,5,51,0,0,1719,1723,3,314, + 157,0,1720,1721,5,16,0,0,1721,1723,3,372,186,0,1722,1714,1,0,0,0, + 1722,1716,1,0,0,0,1722,1718,1,0,0,0,1722,1720,1,0,0,0,1723,233,1, + 0,0,0,1724,1725,7,10,0,0,1725,235,1,0,0,0,1726,1727,7,11,0,0,1727, + 237,1,0,0,0,1728,1733,3,240,120,0,1729,1730,5,263,0,0,1730,1732, + 3,240,120,0,1731,1729,1,0,0,0,1732,1735,1,0,0,0,1733,1734,1,0,0, + 0,1733,1731,1,0,0,0,1734,1738,1,0,0,0,1735,1733,1,0,0,0,1736,1737, + 5,263,0,0,1737,1739,3,242,121,0,1738,1736,1,0,0,0,1738,1739,1,0, + 0,0,1739,1742,1,0,0,0,1740,1742,3,242,121,0,1741,1728,1,0,0,0,1741, + 1740,1,0,0,0,1742,239,1,0,0,0,1743,1745,5,89,0,0,1744,1746,3,302, + 151,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, + 1748,5,146,0,0,1748,1749,3,372,186,0,1749,241,1,0,0,0,1750,1752, + 5,154,0,0,1751,1753,3,302,151,0,1752,1751,1,0,0,0,1752,1753,1,0, + 0,0,1753,1754,1,0,0,0,1754,1755,5,265,0,0,1755,1756,5,145,0,0,1756, + 1762,3,244,122,0,1757,1758,5,263,0,0,1758,1759,5,145,0,0,1759,1761, + 3,244,122,0,1760,1757,1,0,0,0,1761,1764,1,0,0,0,1762,1763,1,0,0, + 0,1762,1760,1,0,0,0,1763,1765,1,0,0,0,1764,1762,1,0,0,0,1765,1766, + 5,266,0,0,1766,243,1,0,0,0,1767,1768,5,210,0,0,1768,1769,3,250,125, + 0,1769,1770,3,314,157,0,1770,1783,1,0,0,0,1771,1772,3,314,157,0, + 1772,1773,3,248,124,0,1773,1775,1,0,0,0,1774,1771,1,0,0,0,1774,1775, + 1,0,0,0,1775,1776,1,0,0,0,1776,1780,5,211,0,0,1777,1778,3,248,124, + 0,1778,1779,3,314,157,0,1779,1781,1,0,0,0,1780,1777,1,0,0,0,1780, + 1781,1,0,0,0,1781,1783,1,0,0,0,1782,1767,1,0,0,0,1782,1774,1,0,0, + 0,1783,245,1,0,0,0,1784,1785,5,30,0,0,1785,1786,5,94,0,0,1786,1791, + 3,370,185,0,1787,1788,5,216,0,0,1788,1789,5,151,0,0,1789,1790,5, + 249,0,0,1790,1792,3,372,186,0,1791,1787,1,0,0,0,1791,1792,1,0,0, + 0,1792,1795,1,0,0,0,1793,1795,5,197,0,0,1794,1784,1,0,0,0,1794,1793, + 1,0,0,0,1795,247,1,0,0,0,1796,1802,1,0,0,0,1797,1802,5,251,0,0,1798, + 1802,5,252,0,0,1799,1802,5,253,0,0,1800,1802,5,254,0,0,1801,1796, + 1,0,0,0,1801,1797,1,0,0,0,1801,1798,1,0,0,0,1801,1799,1,0,0,0,1801, + 1800,1,0,0,0,1802,249,1,0,0,0,1803,1812,5,249,0,0,1804,1812,5,250, + 0,0,1805,1812,5,115,0,0,1806,1812,5,164,0,0,1807,1812,5,163,0,0, + 1808,1812,5,15,0,0,1809,1812,5,94,0,0,1810,1812,3,248,124,0,1811, + 1803,1,0,0,0,1811,1804,1,0,0,0,1811,1805,1,0,0,0,1811,1806,1,0,0, + 0,1811,1807,1,0,0,0,1811,1808,1,0,0,0,1811,1809,1,0,0,0,1811,1810, + 1,0,0,0,1812,251,1,0,0,0,1813,1814,5,115,0,0,1814,1817,3,366,183, + 0,1815,1816,7,12,0,0,1816,1818,5,153,0,0,1817,1815,1,0,0,0,1817, + 1818,1,0,0,0,1818,253,1,0,0,0,1819,1820,5,265,0,0,1820,1825,3,262, + 131,0,1821,1822,5,263,0,0,1822,1824,3,262,131,0,1823,1821,1,0,0, + 0,1824,1827,1,0,0,0,1825,1823,1,0,0,0,1825,1826,1,0,0,0,1826,1828, + 1,0,0,0,1827,1825,1,0,0,0,1828,1829,5,266,0,0,1829,255,1,0,0,0,1830, + 1831,5,265,0,0,1831,1836,3,216,108,0,1832,1833,5,263,0,0,1833,1835, + 3,216,108,0,1834,1832,1,0,0,0,1835,1838,1,0,0,0,1836,1837,1,0,0, + 0,1836,1834,1,0,0,0,1837,1839,1,0,0,0,1838,1836,1,0,0,0,1839,1840, + 5,266,0,0,1840,257,1,0,0,0,1841,1846,3,314,157,0,1842,1843,5,263, + 0,0,1843,1845,3,314,157,0,1844,1842,1,0,0,0,1845,1848,1,0,0,0,1846, + 1844,1,0,0,0,1846,1847,1,0,0,0,1847,259,1,0,0,0,1848,1846,1,0,0, + 0,1849,1859,5,52,0,0,1850,1851,5,71,0,0,1851,1852,5,191,0,0,1852, + 1853,5,26,0,0,1853,1857,3,324,162,0,1854,1855,5,63,0,0,1855,1856, + 5,26,0,0,1856,1858,3,324,162,0,1857,1854,1,0,0,0,1857,1858,1,0,0, + 0,1858,1860,1,0,0,0,1859,1850,1,0,0,0,1859,1860,1,0,0,0,1860,1865, + 1,0,0,0,1861,1862,5,117,0,0,1862,1863,5,191,0,0,1863,1864,5,26,0, + 0,1864,1866,3,324,162,0,1865,1861,1,0,0,0,1865,1866,1,0,0,0,1866, + 261,1,0,0,0,1867,1870,3,370,185,0,1868,1869,5,249,0,0,1869,1871, + 3,314,157,0,1870,1868,1,0,0,0,1870,1871,1,0,0,0,1871,263,1,0,0,0, + 1872,1883,3,266,133,0,1873,1874,5,139,0,0,1874,1875,5,26,0,0,1875, + 1880,3,270,135,0,1876,1877,5,263,0,0,1877,1879,3,270,135,0,1878, + 1876,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0, + 0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1883,1873,1,0,0,0,1883,1884, + 1,0,0,0,1884,1891,1,0,0,0,1885,1886,5,116,0,0,1886,1889,3,314,157, + 0,1887,1888,5,135,0,0,1888,1890,5,277,0,0,1889,1887,1,0,0,0,1889, + 1890,1,0,0,0,1890,1892,1,0,0,0,1891,1885,1,0,0,0,1891,1892,1,0,0, + 0,1892,265,1,0,0,0,1893,1894,6,133,-1,0,1894,1895,3,268,134,0,1895, + 1910,1,0,0,0,1896,1897,10,2,0,0,1897,1899,5,100,0,0,1898,1900,3, + 286,143,0,1899,1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0, + 1901,1909,3,266,133,3,1902,1903,10,1,0,0,1903,1905,7,13,0,0,1904, + 1906,3,286,143,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906,1907,1, + 0,0,0,1907,1909,3,266,133,2,1908,1896,1,0,0,0,1908,1902,1,0,0,0, + 1909,1912,1,0,0,0,1910,1908,1,0,0,0,1910,1911,1,0,0,0,1911,267,1, + 0,0,0,1912,1910,1,0,0,0,1913,1930,3,272,136,0,1914,1915,5,188,0, + 0,1915,1930,3,186,93,0,1916,1917,5,211,0,0,1917,1922,3,314,157,0, + 1918,1919,5,263,0,0,1919,1921,3,314,157,0,1920,1918,1,0,0,0,1921, + 1924,1,0,0,0,1922,1920,1,0,0,0,1922,1923,1,0,0,0,1923,1930,1,0,0, + 0,1924,1922,1,0,0,0,1925,1926,5,265,0,0,1926,1927,3,264,132,0,1927, + 1928,5,266,0,0,1928,1930,1,0,0,0,1929,1913,1,0,0,0,1929,1914,1,0, + 0,0,1929,1916,1,0,0,0,1929,1925,1,0,0,0,1930,269,1,0,0,0,1931,1933, + 3,312,156,0,1932,1934,7,14,0,0,1933,1932,1,0,0,0,1933,1934,1,0,0, + 0,1934,1937,1,0,0,0,1935,1936,5,134,0,0,1936,1938,7,15,0,0,1937, + 1935,1,0,0,0,1937,1938,1,0,0,0,1938,271,1,0,0,0,1939,1941,5,174, + 0,0,1940,1942,3,286,143,0,1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942, + 1944,1,0,0,0,1943,1945,5,183,0,0,1944,1943,1,0,0,0,1944,1945,1,0, + 0,0,1945,1946,1,0,0,0,1946,1951,3,288,144,0,1947,1948,5,263,0,0, + 1948,1950,3,288,144,0,1949,1947,1,0,0,0,1950,1953,1,0,0,0,1951,1949, + 1,0,0,0,1951,1952,1,0,0,0,1952,1963,1,0,0,0,1953,1951,1,0,0,0,1954, + 1955,5,82,0,0,1955,1960,3,290,145,0,1956,1957,5,263,0,0,1957,1959, + 3,290,145,0,1958,1956,1,0,0,0,1959,1962,1,0,0,0,1960,1958,1,0,0, + 0,1960,1961,1,0,0,0,1961,1964,1,0,0,0,1962,1960,1,0,0,0,1963,1954, + 1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0,1965,1967,3,274,137, + 0,1966,1965,1,0,0,0,1966,1967,1,0,0,0,1967,1971,1,0,0,0,1968,1969, + 5,87,0,0,1969,1970,5,26,0,0,1970,1972,3,278,139,0,1971,1968,1,0, + 0,0,1971,1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,3,276,138,0,1974, + 1973,1,0,0,0,1974,1975,1,0,0,0,1975,273,1,0,0,0,1976,1977,5,215, + 0,0,1977,1978,3,316,158,0,1978,275,1,0,0,0,1979,1980,5,90,0,0,1980, + 1981,3,316,158,0,1981,277,1,0,0,0,1982,1984,3,286,143,0,1983,1982, + 1,0,0,0,1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,1990,3,280,140, + 0,1986,1987,5,263,0,0,1987,1989,3,280,140,0,1988,1986,1,0,0,0,1989, + 1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991,279,1,0,0, + 0,1992,1990,1,0,0,0,1993,1994,3,282,141,0,1994,281,1,0,0,0,1995, + 2004,5,265,0,0,1996,2001,3,312,156,0,1997,1998,5,263,0,0,1998,2000, + 3,312,156,0,1999,1997,1,0,0,0,2000,2003,1,0,0,0,2001,1999,1,0,0, + 0,2001,2002,1,0,0,0,2002,2005,1,0,0,0,2003,2001,1,0,0,0,2004,1996, + 1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006,2009,5,266,0,0, + 2007,2009,3,312,156,0,2008,1995,1,0,0,0,2008,2007,1,0,0,0,2009,283, + 1,0,0,0,2010,2012,3,370,185,0,2011,2013,3,302,151,0,2012,2011,1, + 0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,9,0,0,2015, + 2016,3,306,153,0,2016,285,1,0,0,0,2017,2018,7,16,0,0,2018,287,1, + 0,0,0,2019,2024,3,312,156,0,2020,2022,5,9,0,0,2021,2020,1,0,0,0, + 2021,2022,1,0,0,0,2022,2023,1,0,0,0,2023,2025,3,370,185,0,2024,2021, + 1,0,0,0,2024,2025,1,0,0,0,2025,2032,1,0,0,0,2026,2027,3,366,183, + 0,2027,2028,5,261,0,0,2028,2029,5,257,0,0,2029,2032,1,0,0,0,2030, + 2032,5,257,0,0,2031,2019,1,0,0,0,2031,2026,1,0,0,0,2031,2030,1,0, + 0,0,2032,289,1,0,0,0,2033,2034,6,145,-1,0,2034,2035,3,296,148,0, + 2035,2049,1,0,0,0,2036,2045,10,2,0,0,2037,2038,5,38,0,0,2038,2039, + 5,109,0,0,2039,2046,3,296,148,0,2040,2041,3,292,146,0,2041,2042, + 5,109,0,0,2042,2043,3,290,145,0,2043,2044,3,294,147,0,2044,2046, + 1,0,0,0,2045,2037,1,0,0,0,2045,2040,1,0,0,0,2046,2048,1,0,0,0,2047, + 2036,1,0,0,0,2048,2051,1,0,0,0,2049,2047,1,0,0,0,2049,2050,1,0,0, + 0,2050,291,1,0,0,0,2051,2049,1,0,0,0,2052,2054,5,97,0,0,2053,2052, + 1,0,0,0,2053,2054,1,0,0,0,2054,2084,1,0,0,0,2055,2057,5,114,0,0, + 2056,2058,5,97,0,0,2057,2056,1,0,0,0,2057,2058,1,0,0,0,2058,2084, + 1,0,0,0,2059,2061,5,165,0,0,2060,2062,5,97,0,0,2061,2060,1,0,0,0, + 2061,2062,1,0,0,0,2062,2084,1,0,0,0,2063,2065,5,114,0,0,2064,2066, + 5,141,0,0,2065,2064,1,0,0,0,2065,2066,1,0,0,0,2066,2084,1,0,0,0, + 2067,2069,5,165,0,0,2068,2070,5,141,0,0,2069,2068,1,0,0,0,2069,2070, + 1,0,0,0,2070,2084,1,0,0,0,2071,2073,5,83,0,0,2072,2074,5,141,0,0, + 2073,2072,1,0,0,0,2073,2074,1,0,0,0,2074,2084,1,0,0,0,2075,2076, + 5,114,0,0,2076,2084,5,177,0,0,2077,2078,5,165,0,0,2078,2084,5,177, + 0,0,2079,2080,5,114,0,0,2080,2084,5,7,0,0,2081,2082,5,165,0,0,2082, + 2084,5,7,0,0,2083,2053,1,0,0,0,2083,2055,1,0,0,0,2083,2059,1,0,0, + 0,2083,2063,1,0,0,0,2083,2067,1,0,0,0,2083,2071,1,0,0,0,2083,2075, + 1,0,0,0,2083,2077,1,0,0,0,2083,2079,1,0,0,0,2083,2081,1,0,0,0,2084, + 293,1,0,0,0,2085,2086,5,136,0,0,2086,2100,3,316,158,0,2087,2088, + 5,205,0,0,2088,2089,5,265,0,0,2089,2094,3,370,185,0,2090,2091,5, + 263,0,0,2091,2093,3,370,185,0,2092,2090,1,0,0,0,2093,2096,1,0,0, + 0,2094,2092,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096,2094, + 1,0,0,0,2097,2098,5,266,0,0,2098,2100,1,0,0,0,2099,2085,1,0,0,0, + 2099,2087,1,0,0,0,2100,295,1,0,0,0,2101,2114,3,300,150,0,2102,2103, + 5,190,0,0,2103,2104,3,298,149,0,2104,2105,5,265,0,0,2105,2106,3, + 314,157,0,2106,2112,5,266,0,0,2107,2108,5,157,0,0,2108,2109,5,265, + 0,0,2109,2110,3,314,157,0,2110,2111,5,266,0,0,2111,2113,1,0,0,0, + 2112,2107,1,0,0,0,2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2102, + 1,0,0,0,2114,2115,1,0,0,0,2115,297,1,0,0,0,2116,2117,7,17,0,0,2117, + 299,1,0,0,0,2118,2126,3,304,152,0,2119,2121,5,9,0,0,2120,2119,1, + 0,0,0,2120,2121,1,0,0,0,2121,2122,1,0,0,0,2122,2124,3,370,185,0, + 2123,2125,3,302,151,0,2124,2123,1,0,0,0,2124,2125,1,0,0,0,2125,2127, + 1,0,0,0,2126,2120,1,0,0,0,2126,2127,1,0,0,0,2127,301,1,0,0,0,2128, + 2129,5,265,0,0,2129,2134,3,192,96,0,2130,2131,5,263,0,0,2131,2133, + 3,192,96,0,2132,2130,1,0,0,0,2133,2136,1,0,0,0,2134,2132,1,0,0,0, + 2134,2135,1,0,0,0,2135,2137,1,0,0,0,2136,2134,1,0,0,0,2137,2138, + 5,266,0,0,2138,303,1,0,0,0,2139,2147,3,196,98,0,2140,2142,5,113, + 0,0,2141,2140,1,0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2147, + 3,306,153,0,2144,2147,3,308,154,0,2145,2147,3,310,155,0,2146,2139, + 1,0,0,0,2146,2141,1,0,0,0,2146,2144,1,0,0,0,2146,2145,1,0,0,0,2147, + 305,1,0,0,0,2148,2149,5,265,0,0,2149,2150,3,208,104,0,2150,2151, + 5,266,0,0,2151,307,1,0,0,0,2152,2153,5,201,0,0,2153,2154,5,265,0, + 0,2154,2159,3,314,157,0,2155,2156,5,263,0,0,2156,2158,3,314,157, + 0,2157,2155,1,0,0,0,2158,2161,1,0,0,0,2159,2157,1,0,0,0,2159,2160, + 1,0,0,0,2160,2162,1,0,0,0,2161,2159,1,0,0,0,2162,2165,5,266,0,0, + 2163,2164,5,216,0,0,2164,2166,5,140,0,0,2165,2163,1,0,0,0,2165,2166, + 1,0,0,0,2166,309,1,0,0,0,2167,2168,5,265,0,0,2168,2169,3,290,145, + 0,2169,2170,5,266,0,0,2170,311,1,0,0,0,2171,2174,3,192,96,0,2172, + 2174,3,314,157,0,2173,2171,1,0,0,0,2173,2172,1,0,0,0,2174,313,1, + 0,0,0,2175,2176,3,316,158,0,2176,315,1,0,0,0,2177,2178,6,158,-1, + 0,2178,2180,3,320,160,0,2179,2181,3,318,159,0,2180,2179,1,0,0,0, + 2180,2181,1,0,0,0,2181,2185,1,0,0,0,2182,2183,5,132,0,0,2183,2185, + 3,316,158,3,2184,2177,1,0,0,0,2184,2182,1,0,0,0,2185,2194,1,0,0, + 0,2186,2187,10,2,0,0,2187,2188,5,5,0,0,2188,2193,3,316,158,3,2189, + 2190,10,1,0,0,2190,2191,5,138,0,0,2191,2193,3,316,158,2,2192,2186, + 1,0,0,0,2192,2189,1,0,0,0,2193,2196,1,0,0,0,2194,2192,1,0,0,0,2194, + 2195,1,0,0,0,2195,317,1,0,0,0,2196,2194,1,0,0,0,2197,2198,3,326, + 163,0,2198,2199,3,320,160,0,2199,2256,1,0,0,0,2200,2201,3,326,163, + 0,2201,2202,3,328,164,0,2202,2203,3,306,153,0,2203,2256,1,0,0,0, + 2204,2206,5,132,0,0,2205,2204,1,0,0,0,2205,2206,1,0,0,0,2206,2207, + 1,0,0,0,2207,2208,5,15,0,0,2208,2209,3,320,160,0,2209,2210,5,5,0, + 0,2210,2211,3,320,160,0,2211,2256,1,0,0,0,2212,2214,5,132,0,0,2213, + 2212,1,0,0,0,2213,2214,1,0,0,0,2214,2215,1,0,0,0,2215,2216,5,94, + 0,0,2216,2217,5,265,0,0,2217,2222,3,314,157,0,2218,2219,5,263,0, + 0,2219,2221,3,314,157,0,2220,2218,1,0,0,0,2221,2224,1,0,0,0,2222, + 2220,1,0,0,0,2222,2223,1,0,0,0,2223,2225,1,0,0,0,2224,2222,1,0,0, + 0,2225,2226,5,266,0,0,2226,2256,1,0,0,0,2227,2229,5,132,0,0,2228, + 2227,1,0,0,0,2228,2229,1,0,0,0,2229,2230,1,0,0,0,2230,2231,5,94, + 0,0,2231,2256,3,306,153,0,2232,2234,5,132,0,0,2233,2232,1,0,0,0, + 2233,2234,1,0,0,0,2234,2235,1,0,0,0,2235,2236,7,18,0,0,2236,2239, + 3,320,160,0,2237,2238,5,62,0,0,2238,2240,3,320,160,0,2239,2237,1, + 0,0,0,2239,2240,1,0,0,0,2240,2256,1,0,0,0,2241,2242,7,19,0,0,2242, + 2256,3,320,160,0,2243,2245,5,108,0,0,2244,2246,5,132,0,0,2245,2244, + 1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0,0,0,2247,2256,7,20,0,0,2248, + 2250,5,108,0,0,2249,2251,5,132,0,0,2250,2249,1,0,0,0,2250,2251,1, + 0,0,0,2251,2252,1,0,0,0,2252,2253,5,57,0,0,2253,2254,5,82,0,0,2254, + 2256,3,320,160,0,2255,2197,1,0,0,0,2255,2200,1,0,0,0,2255,2205,1, + 0,0,0,2255,2213,1,0,0,0,2255,2228,1,0,0,0,2255,2233,1,0,0,0,2255, + 2241,1,0,0,0,2255,2243,1,0,0,0,2255,2248,1,0,0,0,2256,319,1,0,0, + 0,2257,2258,6,160,-1,0,2258,2262,3,322,161,0,2259,2260,7,21,0,0, + 2260,2262,3,320,160,4,2261,2257,1,0,0,0,2261,2259,1,0,0,0,2262,2274, + 1,0,0,0,2263,2264,10,3,0,0,2264,2265,7,22,0,0,2265,2273,3,320,160, + 4,2266,2267,10,2,0,0,2267,2268,7,21,0,0,2268,2273,3,320,160,3,2269, + 2270,10,1,0,0,2270,2271,5,260,0,0,2271,2273,3,320,160,2,2272,2263, + 1,0,0,0,2272,2266,1,0,0,0,2272,2269,1,0,0,0,2273,2276,1,0,0,0,2274, + 2272,1,0,0,0,2274,2275,1,0,0,0,2275,321,1,0,0,0,2276,2274,1,0,0, + 0,2277,2278,6,161,-1,0,2278,2524,5,133,0,0,2279,2524,3,332,166,0, + 2280,2281,3,370,185,0,2281,2282,3,324,162,0,2282,2524,1,0,0,0,2283, + 2284,5,286,0,0,2284,2524,3,324,162,0,2285,2524,3,372,186,0,2286, + 2524,3,330,165,0,2287,2524,3,324,162,0,2288,2524,5,276,0,0,2289, + 2524,5,272,0,0,2290,2291,5,148,0,0,2291,2292,5,265,0,0,2292,2293, + 3,320,160,0,2293,2294,5,94,0,0,2294,2295,3,320,160,0,2295,2296,5, + 266,0,0,2296,2524,1,0,0,0,2297,2298,5,265,0,0,2298,2301,3,314,157, + 0,2299,2300,5,9,0,0,2300,2302,3,338,169,0,2301,2299,1,0,0,0,2301, + 2302,1,0,0,0,2302,2311,1,0,0,0,2303,2304,5,263,0,0,2304,2307,3,314, + 157,0,2305,2306,5,9,0,0,2306,2308,3,338,169,0,2307,2305,1,0,0,0, + 2307,2308,1,0,0,0,2308,2310,1,0,0,0,2309,2303,1,0,0,0,2310,2313, + 1,0,0,0,2311,2312,1,0,0,0,2311,2309,1,0,0,0,2312,2314,1,0,0,0,2313, + 2311,1,0,0,0,2314,2315,5,266,0,0,2315,2524,1,0,0,0,2316,2317,5,168, + 0,0,2317,2318,5,265,0,0,2318,2323,3,314,157,0,2319,2320,5,263,0, + 0,2320,2322,3,314,157,0,2321,2319,1,0,0,0,2322,2325,1,0,0,0,2323, + 2321,1,0,0,0,2323,2324,1,0,0,0,2324,2326,1,0,0,0,2325,2323,1,0,0, + 0,2326,2327,5,266,0,0,2327,2524,1,0,0,0,2328,2329,3,190,95,0,2329, + 2330,5,265,0,0,2330,2331,5,257,0,0,2331,2333,5,266,0,0,2332,2334, + 3,348,174,0,2333,2332,1,0,0,0,2333,2334,1,0,0,0,2334,2336,1,0,0, + 0,2335,2337,3,352,176,0,2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337, + 2524,1,0,0,0,2338,2339,3,190,95,0,2339,2351,5,265,0,0,2340,2342, + 3,286,143,0,2341,2340,1,0,0,0,2341,2342,1,0,0,0,2342,2343,1,0,0, + 0,2343,2348,3,314,157,0,2344,2345,5,263,0,0,2345,2347,3,314,157, + 0,2346,2344,1,0,0,0,2347,2350,1,0,0,0,2348,2346,1,0,0,0,2348,2349, + 1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2351,2341,1,0,0,0,2351, + 2352,1,0,0,0,2352,2363,1,0,0,0,2353,2354,5,139,0,0,2354,2355,5,26, + 0,0,2355,2360,3,270,135,0,2356,2357,5,263,0,0,2357,2359,3,270,135, + 0,2358,2356,1,0,0,0,2359,2362,1,0,0,0,2360,2358,1,0,0,0,2360,2361, + 1,0,0,0,2361,2364,1,0,0,0,2362,2360,1,0,0,0,2363,2353,1,0,0,0,2363, + 2364,1,0,0,0,2364,2365,1,0,0,0,2365,2367,5,266,0,0,2366,2368,3,348, + 174,0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2370,1,0,0,0,2369, + 2371,3,352,176,0,2370,2369,1,0,0,0,2370,2371,1,0,0,0,2371,2524,1, + 0,0,0,2372,2373,3,370,185,0,2373,2374,5,273,0,0,2374,2375,3,314, + 157,0,2375,2524,1,0,0,0,2376,2385,5,265,0,0,2377,2382,3,370,185, + 0,2378,2379,5,263,0,0,2379,2381,3,370,185,0,2380,2378,1,0,0,0,2381, + 2384,1,0,0,0,2382,2380,1,0,0,0,2382,2383,1,0,0,0,2383,2386,1,0,0, + 0,2384,2382,1,0,0,0,2385,2377,1,0,0,0,2385,2386,1,0,0,0,2386,2387, + 1,0,0,0,2387,2388,5,266,0,0,2388,2389,5,273,0,0,2389,2524,3,314, + 157,0,2390,2391,5,265,0,0,2391,2392,3,208,104,0,2392,2393,5,266, + 0,0,2393,2524,1,0,0,0,2394,2395,5,66,0,0,2395,2396,5,265,0,0,2396, + 2397,3,208,104,0,2397,2398,5,266,0,0,2398,2524,1,0,0,0,2399,2400, + 5,28,0,0,2400,2402,3,320,160,0,2401,2403,3,346,173,0,2402,2401,1, + 0,0,0,2403,2404,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, + 2408,1,0,0,0,2406,2407,5,59,0,0,2407,2409,3,314,157,0,2408,2406, + 1,0,0,0,2408,2409,1,0,0,0,2409,2410,1,0,0,0,2410,2411,5,61,0,0,2411, + 2524,1,0,0,0,2412,2414,5,28,0,0,2413,2415,3,346,173,0,2414,2413, + 1,0,0,0,2415,2416,1,0,0,0,2416,2414,1,0,0,0,2416,2417,1,0,0,0,2417, + 2420,1,0,0,0,2418,2419,5,59,0,0,2419,2421,3,314,157,0,2420,2418, + 1,0,0,0,2420,2421,1,0,0,0,2421,2422,1,0,0,0,2422,2423,5,61,0,0,2423, + 2524,1,0,0,0,2424,2425,5,29,0,0,2425,2426,5,265,0,0,2426,2427,3, + 314,157,0,2427,2428,5,9,0,0,2428,2429,3,338,169,0,2429,2430,5,266, + 0,0,2430,2524,1,0,0,0,2431,2432,5,195,0,0,2432,2433,5,265,0,0,2433, + 2434,3,314,157,0,2434,2435,5,9,0,0,2435,2436,3,338,169,0,2436,2437, + 5,266,0,0,2437,2524,1,0,0,0,2438,2439,5,8,0,0,2439,2448,5,267,0, + 0,2440,2445,3,314,157,0,2441,2442,5,263,0,0,2442,2444,3,314,157, + 0,2443,2441,1,0,0,0,2444,2447,1,0,0,0,2445,2443,1,0,0,0,2445,2446, + 1,0,0,0,2446,2449,1,0,0,0,2447,2445,1,0,0,0,2448,2440,1,0,0,0,2448, + 2449,1,0,0,0,2449,2450,1,0,0,0,2450,2524,5,268,0,0,2451,2524,3,194, + 97,0,2452,2524,5,40,0,0,2453,2457,5,42,0,0,2454,2455,5,265,0,0,2455, + 2456,5,277,0,0,2456,2458,5,266,0,0,2457,2454,1,0,0,0,2457,2458,1, + 0,0,0,2458,2524,1,0,0,0,2459,2463,5,43,0,0,2460,2461,5,265,0,0,2461, + 2462,5,277,0,0,2462,2464,5,266,0,0,2463,2460,1,0,0,0,2463,2464,1, + 0,0,0,2464,2524,1,0,0,0,2465,2469,5,119,0,0,2466,2467,5,265,0,0, + 2467,2468,5,277,0,0,2468,2470,5,266,0,0,2469,2466,1,0,0,0,2469,2470, + 1,0,0,0,2470,2524,1,0,0,0,2471,2475,5,120,0,0,2472,2473,5,265,0, + 0,2473,2474,5,277,0,0,2474,2476,5,266,0,0,2475,2472,1,0,0,0,2475, + 2476,1,0,0,0,2476,2524,1,0,0,0,2477,2524,5,44,0,0,2478,2524,5,41, + 0,0,2479,2480,5,184,0,0,2480,2481,5,265,0,0,2481,2482,3,320,160, + 0,2482,2483,5,82,0,0,2483,2486,3,320,160,0,2484,2485,5,78,0,0,2485, + 2487,3,320,160,0,2486,2484,1,0,0,0,2486,2487,1,0,0,0,2487,2488,1, + 0,0,0,2488,2489,5,266,0,0,2489,2524,1,0,0,0,2490,2491,5,131,0,0, + 2491,2492,5,265,0,0,2492,2495,3,320,160,0,2493,2494,5,263,0,0,2494, + 2496,3,336,168,0,2495,2493,1,0,0,0,2495,2496,1,0,0,0,2496,2497,1, + 0,0,0,2497,2498,5,266,0,0,2498,2524,1,0,0,0,2499,2500,5,68,0,0,2500, + 2501,5,265,0,0,2501,2502,3,370,185,0,2502,2503,5,82,0,0,2503,2504, + 3,320,160,0,2504,2505,5,266,0,0,2505,2524,1,0,0,0,2506,2507,5,265, + 0,0,2507,2508,3,314,157,0,2508,2509,5,266,0,0,2509,2524,1,0,0,0, + 2510,2511,5,88,0,0,2511,2520,5,265,0,0,2512,2517,3,366,183,0,2513, + 2514,5,263,0,0,2514,2516,3,366,183,0,2515,2513,1,0,0,0,2516,2519, + 1,0,0,0,2517,2515,1,0,0,0,2517,2518,1,0,0,0,2518,2521,1,0,0,0,2519, + 2517,1,0,0,0,2520,2512,1,0,0,0,2520,2521,1,0,0,0,2521,2522,1,0,0, + 0,2522,2524,5,266,0,0,2523,2277,1,0,0,0,2523,2279,1,0,0,0,2523,2280, + 1,0,0,0,2523,2283,1,0,0,0,2523,2285,1,0,0,0,2523,2286,1,0,0,0,2523, + 2287,1,0,0,0,2523,2288,1,0,0,0,2523,2289,1,0,0,0,2523,2290,1,0,0, + 0,2523,2297,1,0,0,0,2523,2316,1,0,0,0,2523,2328,1,0,0,0,2523,2338, + 1,0,0,0,2523,2372,1,0,0,0,2523,2376,1,0,0,0,2523,2390,1,0,0,0,2523, + 2394,1,0,0,0,2523,2399,1,0,0,0,2523,2412,1,0,0,0,2523,2424,1,0,0, + 0,2523,2431,1,0,0,0,2523,2438,1,0,0,0,2523,2451,1,0,0,0,2523,2452, + 1,0,0,0,2523,2453,1,0,0,0,2523,2459,1,0,0,0,2523,2465,1,0,0,0,2523, + 2471,1,0,0,0,2523,2477,1,0,0,0,2523,2478,1,0,0,0,2523,2479,1,0,0, + 0,2523,2490,1,0,0,0,2523,2499,1,0,0,0,2523,2506,1,0,0,0,2523,2510, + 1,0,0,0,2524,2535,1,0,0,0,2525,2526,10,15,0,0,2526,2527,5,267,0, + 0,2527,2528,3,320,160,0,2528,2529,5,268,0,0,2529,2534,1,0,0,0,2530, + 2531,10,13,0,0,2531,2532,5,261,0,0,2532,2534,3,370,185,0,2533,2525, + 1,0,0,0,2533,2530,1,0,0,0,2534,2537,1,0,0,0,2535,2533,1,0,0,0,2535, + 2536,1,0,0,0,2536,323,1,0,0,0,2537,2535,1,0,0,0,2538,2545,5,274, + 0,0,2539,2542,5,275,0,0,2540,2541,5,198,0,0,2541,2543,5,274,0,0, + 2542,2540,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2538, + 1,0,0,0,2544,2539,1,0,0,0,2545,325,1,0,0,0,2546,2547,7,23,0,0,2547, + 327,1,0,0,0,2548,2549,7,24,0,0,2549,329,1,0,0,0,2550,2551,7,25,0, + 0,2551,331,1,0,0,0,2552,2553,5,277,0,0,2553,2567,3,334,167,0,2554, + 2555,5,265,0,0,2555,2556,5,277,0,0,2556,2557,5,266,0,0,2557,2567, + 3,334,167,0,2558,2559,5,101,0,0,2559,2560,5,277,0,0,2560,2567,3, + 334,167,0,2561,2562,5,101,0,0,2562,2563,5,265,0,0,2563,2564,5,277, + 0,0,2564,2565,5,266,0,0,2565,2567,3,334,167,0,2566,2552,1,0,0,0, + 2566,2554,1,0,0,0,2566,2558,1,0,0,0,2566,2561,1,0,0,0,2567,333,1, + 0,0,0,2568,2569,7,26,0,0,2569,335,1,0,0,0,2570,2571,7,27,0,0,2571, + 337,1,0,0,0,2572,2573,6,169,-1,0,2573,2574,5,8,0,0,2574,2575,5,251, + 0,0,2575,2576,3,338,169,0,2576,2577,5,253,0,0,2577,2618,1,0,0,0, + 2578,2579,5,235,0,0,2579,2580,5,251,0,0,2580,2581,3,338,169,0,2581, + 2582,5,263,0,0,2582,2583,3,338,169,0,2583,2584,5,253,0,0,2584,2618, + 1,0,0,0,2585,2586,5,240,0,0,2586,2587,5,251,0,0,2587,2588,3,370, + 185,0,2588,2595,3,338,169,0,2589,2590,5,263,0,0,2590,2591,3,370, + 185,0,2591,2592,3,338,169,0,2592,2594,1,0,0,0,2593,2589,1,0,0,0, + 2594,2597,1,0,0,0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2598, + 1,0,0,0,2597,2595,1,0,0,0,2598,2599,5,253,0,0,2599,2618,1,0,0,0, + 2600,2603,3,344,172,0,2601,2603,3,340,170,0,2602,2600,1,0,0,0,2602, + 2601,1,0,0,0,2603,2615,1,0,0,0,2604,2605,5,265,0,0,2605,2610,3,342, + 171,0,2606,2607,5,263,0,0,2607,2609,3,342,171,0,2608,2606,1,0,0, + 0,2609,2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2613, + 1,0,0,0,2612,2610,1,0,0,0,2613,2614,5,266,0,0,2614,2616,1,0,0,0, + 2615,2604,1,0,0,0,2615,2616,1,0,0,0,2616,2618,1,0,0,0,2617,2572, + 1,0,0,0,2617,2578,1,0,0,0,2617,2585,1,0,0,0,2617,2602,1,0,0,0,2618, + 2623,1,0,0,0,2619,2620,10,5,0,0,2620,2622,5,8,0,0,2621,2619,1,0, + 0,0,2622,2625,1,0,0,0,2623,2621,1,0,0,0,2623,2624,1,0,0,0,2624,339, + 1,0,0,0,2625,2623,1,0,0,0,2626,2627,7,28,0,0,2627,341,1,0,0,0,2628, + 2631,5,277,0,0,2629,2631,3,338,169,0,2630,2628,1,0,0,0,2630,2629, + 1,0,0,0,2631,343,1,0,0,0,2632,2637,5,284,0,0,2633,2637,5,285,0,0, + 2634,2637,5,286,0,0,2635,2637,3,370,185,0,2636,2632,1,0,0,0,2636, + 2633,1,0,0,0,2636,2634,1,0,0,0,2636,2635,1,0,0,0,2637,345,1,0,0, + 0,2638,2639,5,214,0,0,2639,2640,3,314,157,0,2640,2641,5,192,0,0, + 2641,2642,3,314,157,0,2642,347,1,0,0,0,2643,2644,5,74,0,0,2644,2645, + 5,265,0,0,2645,2646,3,274,137,0,2646,2647,5,266,0,0,2647,349,1,0, + 0,0,2648,2653,3,314,157,0,2649,2650,5,263,0,0,2650,2652,3,314,157, + 0,2651,2649,1,0,0,0,2652,2655,1,0,0,0,2653,2651,1,0,0,0,2653,2654, + 1,0,0,0,2654,351,1,0,0,0,2655,2653,1,0,0,0,2656,2657,5,143,0,0,2657, + 2661,5,265,0,0,2658,2659,5,145,0,0,2659,2660,5,26,0,0,2660,2662, + 3,350,175,0,2661,2658,1,0,0,0,2661,2662,1,0,0,0,2662,2673,1,0,0, + 0,2663,2664,5,139,0,0,2664,2665,5,26,0,0,2665,2670,3,270,135,0,2666, + 2667,5,263,0,0,2667,2669,3,270,135,0,2668,2666,1,0,0,0,2669,2672, + 1,0,0,0,2670,2668,1,0,0,0,2670,2671,1,0,0,0,2671,2674,1,0,0,0,2672, + 2670,1,0,0,0,2673,2663,1,0,0,0,2673,2674,1,0,0,0,2674,2676,1,0,0, + 0,2675,2677,3,354,177,0,2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677, + 2678,1,0,0,0,2678,2679,5,266,0,0,2679,353,1,0,0,0,2680,2681,5,154, + 0,0,2681,2697,3,356,178,0,2682,2683,5,169,0,0,2683,2697,3,356,178, + 0,2684,2685,5,154,0,0,2685,2686,5,15,0,0,2686,2687,3,356,178,0,2687, + 2688,5,5,0,0,2688,2689,3,356,178,0,2689,2697,1,0,0,0,2690,2691,5, + 169,0,0,2691,2692,5,15,0,0,2692,2693,3,356,178,0,2693,2694,5,5,0, + 0,2694,2695,3,356,178,0,2695,2697,1,0,0,0,2696,2680,1,0,0,0,2696, + 2682,1,0,0,0,2696,2684,1,0,0,0,2696,2690,1,0,0,0,2697,355,1,0,0, + 0,2698,2699,5,199,0,0,2699,2708,5,149,0,0,2700,2701,5,199,0,0,2701, + 2708,5,77,0,0,2702,2703,5,39,0,0,2703,2708,5,168,0,0,2704,2705,3, + 314,157,0,2705,2706,7,29,0,0,2706,2708,1,0,0,0,2707,2698,1,0,0,0, + 2707,2700,1,0,0,0,2707,2702,1,0,0,0,2707,2704,1,0,0,0,2708,357,1, + 0,0,0,2709,2710,3,370,185,0,2710,2711,5,261,0,0,2711,2712,3,370, + 185,0,2712,2715,1,0,0,0,2713,2715,3,370,185,0,2714,2709,1,0,0,0, + 2714,2713,1,0,0,0,2715,359,1,0,0,0,2716,2721,3,358,179,0,2717,2718, + 5,263,0,0,2718,2720,3,358,179,0,2719,2717,1,0,0,0,2720,2723,1,0, + 0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722,361,1,0,0,0,2723,2721, + 1,0,0,0,2724,2738,5,2,0,0,2725,2738,5,4,0,0,2726,2738,5,58,0,0,2727, + 2738,5,37,0,0,2728,2738,5,99,0,0,2729,2738,5,162,0,0,2730,2735,5, + 174,0,0,2731,2732,5,265,0,0,2732,2733,3,370,185,0,2733,2734,5,266, + 0,0,2734,2736,1,0,0,0,2735,2731,1,0,0,0,2735,2736,1,0,0,0,2736,2738, + 1,0,0,0,2737,2724,1,0,0,0,2737,2725,1,0,0,0,2737,2726,1,0,0,0,2737, + 2727,1,0,0,0,2737,2728,1,0,0,0,2737,2729,1,0,0,0,2737,2730,1,0,0, + 0,2738,363,1,0,0,0,2739,2740,7,30,0,0,2740,365,1,0,0,0,2741,2746, + 3,370,185,0,2742,2743,5,261,0,0,2743,2745,3,370,185,0,2744,2742, + 1,0,0,0,2745,2748,1,0,0,0,2746,2744,1,0,0,0,2746,2747,1,0,0,0,2747, + 367,1,0,0,0,2748,2746,1,0,0,0,2749,2750,5,166,0,0,2750,2756,3,370, + 185,0,2751,2752,5,204,0,0,2752,2756,3,370,185,0,2753,2754,5,87,0, + 0,2754,2756,3,370,185,0,2755,2749,1,0,0,0,2755,2751,1,0,0,0,2755, + 2753,1,0,0,0,2756,369,1,0,0,0,2757,2763,5,280,0,0,2758,2763,5,274, + 0,0,2759,2763,3,376,188,0,2760,2763,5,283,0,0,2761,2763,5,281,0, + 0,2762,2757,1,0,0,0,2762,2758,1,0,0,0,2762,2759,1,0,0,0,2762,2760, + 1,0,0,0,2762,2761,1,0,0,0,2763,371,1,0,0,0,2764,2766,5,256,0,0,2765, + 2764,1,0,0,0,2765,2766,1,0,0,0,2766,2767,1,0,0,0,2767,2777,5,278, + 0,0,2768,2770,5,256,0,0,2769,2768,1,0,0,0,2769,2770,1,0,0,0,2770, + 2771,1,0,0,0,2771,2777,5,279,0,0,2772,2774,5,256,0,0,2773,2772,1, + 0,0,0,2773,2774,1,0,0,0,2774,2775,1,0,0,0,2775,2777,5,277,0,0,2776, + 2765,1,0,0,0,2776,2769,1,0,0,0,2776,2773,1,0,0,0,2777,373,1,0,0, + 0,2778,2779,7,31,0,0,2779,375,1,0,0,0,2780,2781,7,32,0,0,2781,377, + 1,0,0,0,353,381,388,412,425,429,433,442,447,451,457,459,464,468, + 472,479,484,490,494,503,510,514,519,521,526,529,536,540,545,549, + 552,556,564,568,572,580,584,593,596,599,605,612,623,628,633,638, + 643,652,655,658,662,688,714,723,733,736,750,768,770,779,790,799, + 806,810,817,823,826,831,838,852,865,870,875,881,917,920,926,929, + 935,941,953,955,966,974,979,983,988,995,999,1003,1009,1013,1017, + 1026,1029,1032,1040,1054,1061,1074,1080,1085,1088,1091,1096,1100, + 1109,1114,1120,1124,1128,1133,1136,1144,1147,1150,1162,1165,1168, + 1173,1177,1193,1198,1205,1208,1214,1217,1224,1227,1231,1236,1239, + 1246,1249,1273,1287,1291,1295,1315,1317,1319,1328,1330,1339,1341, + 1350,1352,1357,1366,1375,1384,1395,1401,1406,1409,1422,1432,1436, + 1441,1452,1457,1490,1498,1503,1507,1513,1518,1521,1526,1531,1536, + 1540,1549,1552,1556,1563,1572,1576,1580,1587,1590,1600,1607,1612, + 1617,1622,1628,1631,1640,1643,1646,1652,1657,1667,1670,1673,1677, + 1687,1690,1696,1702,1705,1708,1712,1722,1733,1738,1741,1745,1752, + 1762,1774,1780,1782,1791,1794,1801,1811,1817,1825,1836,1846,1857, + 1859,1865,1870,1880,1883,1889,1891,1899,1905,1908,1910,1922,1929, + 1933,1937,1941,1944,1951,1960,1963,1966,1971,1974,1983,1990,2001, + 2004,2008,2012,2021,2024,2031,2045,2049,2053,2057,2061,2065,2069, + 2073,2083,2094,2099,2112,2114,2120,2124,2126,2134,2141,2146,2159, + 2165,2173,2180,2184,2192,2194,2205,2213,2222,2228,2233,2239,2245, + 2250,2255,2261,2272,2274,2301,2307,2311,2323,2333,2336,2341,2348, + 2351,2360,2363,2367,2370,2382,2385,2404,2408,2416,2420,2445,2448, + 2457,2463,2469,2475,2486,2495,2517,2520,2523,2533,2535,2542,2544, + 2566,2595,2602,2610,2615,2617,2623,2630,2636,2653,2661,2670,2673, + 2676,2696,2707,2714,2721,2735,2737,2746,2755,2762,2765,2769,2773, + 2776 ]; private static __ATN: antlr.ATN; @@ -17163,11 +17261,8 @@ export class DeleteContext extends antlr.ParserRuleContext { public KW_FROM(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_FROM, 0); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_delete; @@ -17217,11 +17312,8 @@ export class DeleteTableRefContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_AS, 0); @@ -17286,11 +17378,8 @@ export class UpdateStatementContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -19157,6 +19246,36 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { } +export class ColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_columnName; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterColumnName) { + listener.enterColumnName(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitColumnName) { + listener.exitColumnName(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitColumnName) { + return visitor.visitColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TableOrViewPathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21098,8 +21217,6 @@ export class SortItemContext extends antlr.ParserRuleContext { export class QuerySpecificationContext extends antlr.ParserRuleContext { - public _where?: BooleanExpressionContext; - public _having?: BooleanExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -21142,8 +21259,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public KW_GROUP(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_GROUP, 0); @@ -21154,17 +21271,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public groupBy(): GroupByContext | null { return this.getRuleContext(0, GroupByContext); } - public KW_HAVING(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_HAVING, 0); - } - public booleanExpression(): BooleanExpressionContext[]; - public booleanExpression(i: number): BooleanExpressionContext | null; - public booleanExpression(i?: number): BooleanExpressionContext[] | BooleanExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(BooleanExpressionContext); - } - - return this.getRuleContext(i, BooleanExpressionContext); + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_querySpecification; @@ -21189,6 +21297,74 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { } +export class WhereClauseContext extends antlr.ParserRuleContext { + public _where?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_WHERE(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.KW_WHERE, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_whereClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterWhereClause) { + listener.enterWhereClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitWhereClause) { + listener.exitWhereClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitWhereClause) { + return visitor.visitWhereClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class HavingClauseContext extends antlr.ParserRuleContext { + public _having?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_HAVING(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.KW_HAVING, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_havingClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterHavingClause) { + listener.enterHavingClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitHavingClause) { + listener.exitHavingClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23269,8 +23445,8 @@ export class ColumnReferenceContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; } public override enterRule(listener: ImpalaSqlParserListener): void { if(listener.enterColumnReference) { @@ -24506,11 +24682,8 @@ export class FilterContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.LPAREN, 0)!; } - public KW_WHERE(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0)!; - } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.RPAREN, 0)!; @@ -24538,9 +24711,54 @@ export class FilterContext extends antlr.ParserRuleContext { } -export class OverContext extends antlr.ParserRuleContext { +export class PartitionByClauseContext extends antlr.ParserRuleContext { public _expression?: ExpressionContext; public _partition: ExpressionContext[] = []; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ImpalaSqlParser.COMMA); + } else { + return this.getToken(ImpalaSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_partitionByClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterPartitionByClause) { + listener.enterPartitionByClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitPartitionByClause) { + listener.exitPartitionByClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitPartitionByClause) { + return visitor.visitPartitionByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class OverContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -24565,6 +24783,9 @@ export class OverContext extends antlr.ParserRuleContext { return this.getToken(ImpalaSqlParser.KW_BY, i); } } + public partitionByClause(): PartitionByClauseContext | null { + return this.getRuleContext(0, PartitionByClauseContext); + } public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_ORDER, 0); } @@ -24580,15 +24801,6 @@ export class OverContext extends antlr.ParserRuleContext { public windowFrame(): WindowFrameContext | null { return this.getRuleContext(0, WindowFrameContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -24900,7 +25112,7 @@ export class PathSpecificationContext extends antlr.ParserRuleContext { export class PrivilegeContext extends antlr.ParserRuleContext { - public _columnName?: IdentifierContext; + public _name?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index bb825fcf..dca15473 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -105,6 +105,7 @@ import { TableNamePathContext } from "./ImpalaSqlParser.js"; import { ViewNamePathContext } from "./ImpalaSqlParser.js"; import { FunctionNamePathContext } from "./ImpalaSqlParser.js"; import { ColumnNamePathContext } from "./ImpalaSqlParser.js"; +import { ColumnNameContext } from "./ImpalaSqlParser.js"; import { TableOrViewPathContext } from "./ImpalaSqlParser.js"; import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; @@ -148,6 +149,8 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { WhereClauseContext } from "./ImpalaSqlParser.js"; +import { HavingClauseContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; @@ -228,6 +231,7 @@ import { TypeParameterContext } from "./ImpalaSqlParser.js"; import { BaseTypeContext } from "./ImpalaSqlParser.js"; import { WhenClauseContext } from "./ImpalaSqlParser.js"; import { FilterContext } from "./ImpalaSqlParser.js"; +import { PartitionByClauseContext } from "./ImpalaSqlParser.js"; import { OverContext } from "./ImpalaSqlParser.js"; import { WindowFrameContext } from "./ImpalaSqlParser.js"; import { UnboundedFrameContext } from "./ImpalaSqlParser.js"; @@ -1228,6 +1232,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.columnName`. + * @param ctx the parse tree + */ + enterColumnName?: (ctx: ColumnNameContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.columnName`. + * @param ctx the parse tree + */ + exitColumnName?: (ctx: ColumnNameContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.tableOrViewPath`. * @param ctx the parse tree @@ -1670,6 +1684,26 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.whereClause`. + * @param ctx the parse tree + */ + enterWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.whereClause`. + * @param ctx the parse tree + */ + exitWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.havingClause`. + * @param ctx the parse tree + */ + enterHavingClause?: (ctx: HavingClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.havingClause`. + * @param ctx the parse tree + */ + exitHavingClause?: (ctx: HavingClauseContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.groupBy`. * @param ctx the parse tree @@ -2574,6 +2608,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFilter?: (ctx: FilterContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.partitionByClause`. + * @param ctx the parse tree + */ + enterPartitionByClause?: (ctx: PartitionByClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.partitionByClause`. + * @param ctx the parse tree + */ + exitPartitionByClause?: (ctx: PartitionByClauseContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.over`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index b97a3764..25a4f946 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -105,6 +105,7 @@ import { TableNamePathContext } from "./ImpalaSqlParser.js"; import { ViewNamePathContext } from "./ImpalaSqlParser.js"; import { FunctionNamePathContext } from "./ImpalaSqlParser.js"; import { ColumnNamePathContext } from "./ImpalaSqlParser.js"; +import { ColumnNameContext } from "./ImpalaSqlParser.js"; import { TableOrViewPathContext } from "./ImpalaSqlParser.js"; import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; @@ -148,6 +149,8 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { WhereClauseContext } from "./ImpalaSqlParser.js"; +import { HavingClauseContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; @@ -228,6 +231,7 @@ import { TypeParameterContext } from "./ImpalaSqlParser.js"; import { BaseTypeContext } from "./ImpalaSqlParser.js"; import { WhenClauseContext } from "./ImpalaSqlParser.js"; import { FilterContext } from "./ImpalaSqlParser.js"; +import { PartitionByClauseContext } from "./ImpalaSqlParser.js"; import { OverContext } from "./ImpalaSqlParser.js"; import { WindowFrameContext } from "./ImpalaSqlParser.js"; import { UnboundedFrameContext } from "./ImpalaSqlParser.js"; @@ -843,6 +847,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.columnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnName?: (ctx: ColumnNameContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.tableOrViewPath`. * @param ctx the parse tree @@ -1107,6 +1117,18 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.whereClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWhereClause?: (ctx: WhereClauseContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.havingClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHavingClause?: (ctx: HavingClauseContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.groupBy`. * @param ctx the parse tree @@ -1639,6 +1661,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.partitionByClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPartitionByClause?: (ctx: PartitionByClauseContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.over`. * @param ctx the parse tree diff --git a/src/parser/impala/ImpalaErrorListener.ts b/src/parser/impala/ImpalaErrorListener.ts index c09dc724..f6ef726f 100644 --- a/src/parser/impala/ImpalaErrorListener.ts +++ b/src/parser/impala/ImpalaErrorListener.ts @@ -16,6 +16,7 @@ export class ImpalaErrorListener extends ParseErrorListener { [ImpalaSqlParser.RULE_viewNameCreate, 'view'], [ImpalaSqlParser.RULE_functionNamePath, 'function'], [ImpalaSqlParser.RULE_functionNameCreate, 'function'], + [ImpalaSqlParser.RULE_columnName, 'column'], [ImpalaSqlParser.RULE_columnNamePath, 'column'], [ImpalaSqlParser.RULE_columnNamePathCreate, 'column'], ]); @@ -48,6 +49,7 @@ export class ImpalaErrorListener extends ParseErrorListener { case ImpalaSqlParser.RULE_tableNamePath: case ImpalaSqlParser.RULE_functionNamePath: case ImpalaSqlParser.RULE_viewNamePath: + case ImpalaSqlParser.RULE_columnName: case ImpalaSqlParser.RULE_columnNamePath: { result.push(`{existing}${name}`); break; diff --git a/src/parser/impala/index.ts b/src/parser/impala/index.ts index 9902507e..df1cfa39 100644 --- a/src/parser/impala/index.ts +++ b/src/parser/impala/index.ts @@ -32,6 +32,7 @@ export class ImpalaSQL extends BasicSQL { const impala = new ImpalaSQL(); @@ -55,6 +56,14 @@ describe('ImpalaSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql6', () => { + const errors = impala.validate(sql6); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `'<' is not valid at this position, expecting an existing column or a keyword` + ); + }); + test('validate random text cn', () => { impala.locale = 'zh_CN'; const errors = impala.validate(randomText); @@ -88,4 +97,10 @@ describe('ImpalaSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'froma' 在此位置无效,期望一个关键字`); }); + + test('validate unComplete sql6', () => { + const errors = impala.validate(sql6); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe(`'<' 在此位置无效,期望一个存在的column或者一个关键字`); + }); }); diff --git a/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql index 234f2fa9..039227b0 100644 --- a/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql +++ b/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql @@ -9,3 +9,13 @@ INSERT INTO insert_tb SELECT id, FROM from_tb; CREATE TABLE sorted_census_data AS SELECT FROM unsorted_census_data; CREATE TABLE sorted_census_data AS SELECT id, FROM unsorted_census_data; + +SELECT t1.c1, t2.c2 FROM t1, t2 WHERE t1.id = t2.id AND t1.type_flag = t2.type_flag AND t1.c1 > 100; + +SELECT * FROM t1 LEFT OUTER JOIN t2 ON t1.int_col < t2.int_col; + +SELECT user_id AS "Top 10 Visitors", SUM(page_views) FROM web_stats GROUP BY page_views, user_id having times_purchased >= 100 ORDER BY SUM(page_views) DESC LIMIT 10; + +UPDATE my_table SET col1 = CASE WHEN col2 > 10 THEN 'High' WHEN col2 > 5 THEN 'Medium' ELSE 'Low' END WHERE col3 = 'value'; + +create table million_rows_one_range (id string primary key, s string) partition by hash(id) partitions 50, range (partition 'a' <= values < '{') stored as kudu; \ No newline at end of file diff --git a/test/parser/impala/suggestion/suggestionWithEntity.test.ts b/test/parser/impala/suggestion/suggestionWithEntity.test.ts index 679cb2b8..1e34d11b 100644 --- a/test/parser/impala/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/impala/suggestion/suggestionWithEntity.test.ts @@ -155,4 +155,124 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); + + test('Where expression column', () => { + const pos: CaretPosition = { + lineNumber: 13, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t2', '.', 'id']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 15, + column: 63, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t2', '.', 'int_col']); + }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['page_views']); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 97, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['user_id']); + }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 151, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['page_views']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 120, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['times_purchased']); + }); + + test('When case expression column', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 69, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col2']); + }); + + test('Partition by expression column', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 91, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['id']); + }); });