diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 7170d2f2..67eedfe2 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -20,7 +20,7 @@ program singleStatement : sqlStatement SEMICOLON? - | emptyStatement + | SEMICOLON ; sqlStatement @@ -38,10 +38,6 @@ sqlStatement | dtAddStatement ; -emptyStatement - : SEMICOLON - ; - ddlStatement : createTable | createDatabase @@ -124,7 +120,7 @@ resetStatement ; jarStatement - : (KW_ADD | KW_REMOVE) KW_JAR jarFileName + : (KW_ADD | KW_REMOVE) KW_JAR STRING_LITERAL ; // 数栈平台自研的添加文件语法 @@ -158,7 +154,7 @@ simpleCreateTable COMMA columnOptionDefinition )* (COMMA watermarkDefinition)? (COMMA tableConstraint)? (COMMA selfDefinitionClause)? RR_BRACKET ( KW_COMMENT comment=STRING_LITERAL - )? partitionDefinition? withOption likeDefinition? + )? (KW_PARTITIONED KW_BY LR_BRACKET transform (COMMA transform)* RR_BRACKET)? withOption likeDefinition? ; /* @@ -263,22 +259,14 @@ columnConstraint ; metadataColumnDefinition - : columnNameCreate columnType KW_METADATA (KW_FROM metadataKey)? KW_VIRTUAL? - ; - -metadataKey - : STRING_LITERAL + : columnNameCreate columnType KW_METADATA (KW_FROM STRING_LITERAL)? KW_VIRTUAL? ; computedColumnDefinition - : columnNameCreate KW_AS computedColumnExpression (KW_COMMENT comment=STRING_LITERAL)? + : columnNameCreate KW_AS expression (KW_COMMENT comment=STRING_LITERAL)? ; // 计算表达式 -computedColumnExpression - : expression - ; - watermarkDefinition : KW_WATERMARK KW_FOR columnName KW_AS expression ; @@ -295,14 +283,6 @@ selfDefinitionClause // 数栈自定义语句 ‘PERIOD KW_FOR SYSTEM_TIME’ : KW_PERIOD KW_FOR KW_SYSTEM_TIME ; -partitionDefinition - : KW_PARTITIONED KW_BY transformList - ; - -transformList - : LR_BRACKET transform (COMMA transform)* RR_BRACKET - ; - transform : columnName # identityTransform | LR_BRACKET transformArgument (COMMA transformArgument)* RR_BRACKET # applyTransform @@ -343,11 +323,7 @@ createFunction ; usingClause - : KW_USING KW_JAR jarFileName (COMMA KW_JAR jarFileName)* - ; - -jarFileName - : STRING_LITERAL + : KW_USING KW_JAR STRING_LITERAL (COMMA KW_JAR STRING_LITERAL)* ; // Alter statements @@ -373,7 +349,7 @@ setKeyValueDefinition ; addConstraint - : KW_ADD KW_CONSTRAINT constraintName KW_PRIMARY KW_KEY columnNameList notForced? + : KW_ADD KW_CONSTRAINT constraintName KW_PRIMARY KW_KEY columnNameList (KW_NOT KW_ENFORCED)? ; dropConstraint @@ -384,10 +360,6 @@ addUnique : KW_ADD KW_UNIQUE columnNameList ; -notForced - : KW_NOT KW_ENFORCED - ; - alterView : KW_ALTER KW_VIEW viewPath (renameDefinition | KW_AS queryStatement) ; @@ -434,15 +406,11 @@ insertStatement insertSimpleStatement : KW_INSERT (KW_INTO | KW_OVERWRITE) tablePath ( - insertPartitionDefinition? columnNameList? queryStatement + (KW_PARTITION tablePropertyList)? columnNameList? queryStatement | valuesDefinition ) ; -insertPartitionDefinition - : KW_PARTITION tablePropertyList - ; - valuesDefinition : KW_VALUES valuesRowDefinition (COMMA valuesRowDefinition)* ; @@ -484,11 +452,7 @@ withClause ; withItem - : withItemName (LR_BRACKET columnName (COMMA columnName)* RR_BRACKET)? KW_AS LR_BRACKET queryStatement RR_BRACKET - ; - -withItemName - : identifier + : identifier (LR_BRACKET columnName (COMMA columnName)* RR_BRACKET)? KW_AS LR_BRACKET queryStatement RR_BRACKET ; selectStatement @@ -576,11 +540,7 @@ atomExpressionTable ; systemTimePeriod - : KW_FOR KW_SYSTEM_TIME KW_AS KW_OF dateTimeExpression - ; - -dateTimeExpression - : expression + : KW_FOR KW_SYSTEM_TIME KW_AS KW_OF expression ; inlineDataValueClause @@ -602,10 +562,10 @@ windowTVFName ; windowTVFParam - : KW_TABLE timeAttrColumn + : KW_TABLE uid | columnDescriptor | timeIntervalExpression - | KW_DATA DOUBLE_RIGHT_ARROW KW_TABLE timeAttrColumn + | KW_DATA DOUBLE_RIGHT_ARROW KW_TABLE uid | KW_TIMECOL DOUBLE_RIGHT_ARROW columnDescriptor | timeIntervalParamName DOUBLE_RIGHT_ARROW timeIntervalExpression ; @@ -641,22 +601,13 @@ groupItemDefinition | groupWindowFunction | LR_BRACKET RR_BRACKET | LR_BRACKET expression (COMMA expression)* RR_BRACKET - | groupingSetsNotationName LR_BRACKET expression (COMMA expression)* RR_BRACKET - | groupingSets LR_BRACKET groupItemDefinition (COMMA groupItemDefinition)* RR_BRACKET + | (KW_CUBE | KW_ROLLUP) LR_BRACKET expression (COMMA expression)* RR_BRACKET + | KW_GROUPING KW_SETS LR_BRACKET groupItemDefinition (COMMA groupItemDefinition)* RR_BRACKET | expression ; -groupingSets - : KW_GROUPING KW_SETS - ; - -groupingSetsNotationName - : KW_CUBE - | KW_ROLLUP - ; - groupWindowFunction - : groupWindowFunctionName LR_BRACKET timeAttrColumn COMMA timeIntervalExpression RR_BRACKET + : groupWindowFunctionName LR_BRACKET uid COMMA timeIntervalExpression RR_BRACKET ; groupWindowFunctionName @@ -665,10 +616,6 @@ groupWindowFunctionName | KW_SESSION ; -timeAttrColumn - : uid - ; - havingClause : KW_HAVING booleanExpression ; @@ -933,10 +880,6 @@ dereferenceDefinition // base common -correlationName - : identifier - ; - qualifiedName : identifier | dereferenceDefinition diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 6b00ec87..1f065e13 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1096,7 +1096,6 @@ rule names: program singleStatement sqlStatement -emptyStatement ddlStatement dmlStatement describeStatement @@ -1133,15 +1132,11 @@ mapTypeDimension rowTypeDimension columnConstraint metadataColumnDefinition -metadataKey computedColumnDefinition -computedColumnExpression watermarkDefinition tableConstraint constraintName selfDefinitionClause -partitionDefinition -transformList transform transformArgument likeDefinition @@ -1151,14 +1146,12 @@ createDatabase createView createFunction usingClause -jarFileName alterTable renameDefinition setKeyValueDefinition addConstraint dropConstraint addUnique -notForced alterView alterDatabase alterFunction @@ -1169,7 +1162,6 @@ dropView dropFunction insertStatement insertSimpleStatement -insertPartitionDefinition valuesDefinition valuesRowDefinition valueDefinition @@ -1179,7 +1171,6 @@ queryStatement valuesClause withClause withItem -withItemName selectStatement selectClause selectList @@ -1198,7 +1189,6 @@ tablePrimary atomFunctionTable atomExpressionTable systemTimePeriod -dateTimeExpression inlineDataValueClause windowTVFClause windowTVFExpression @@ -1210,11 +1200,8 @@ joinCondition whereClause groupByClause groupItemDefinition -groupingSets -groupingSetsNotationName groupWindowFunction groupWindowFunctionName -timeAttrColumn havingClause windowClause namedWindow @@ -1254,7 +1241,6 @@ jsonQueryParams jsonObjectParams jsonArrayParams dereferenceDefinition -correlationName qualifiedName timeIntervalExpression errorCapturingMultiUnitsInterval @@ -1309,4 +1295,4 @@ nonReservedKeywords atn: -[4, 1, 544, 2586, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 1, 0, 5, 0, 428, 8, 0, 10, 0, 12, 0, 431, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 437, 8, 1, 1, 1, 3, 1, 440, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 454, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 472, 8, 4, 1, 5, 1, 5, 3, 5, 476, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 485, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 490, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 495, 8, 8, 10, 8, 12, 8, 498, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 508, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 515, 8, 11, 10, 11, 12, 11, 518, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 529, 8, 12, 1, 12, 3, 12, 532, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 539, 8, 12, 1, 12, 3, 12, 542, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 550, 8, 12, 1, 12, 1, 12, 3, 12, 554, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 559, 8, 12, 1, 12, 3, 12, 562, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 569, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 577, 8, 15, 1, 16, 1, 16, 3, 16, 581, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 593, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 601, 8, 18, 1, 18, 1, 18, 3, 18, 605, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 637, 8, 18, 1, 19, 3, 19, 640, 8, 19, 1, 19, 4, 19, 643, 8, 19, 11, 19, 12, 19, 644, 1, 20, 1, 20, 3, 20, 649, 8, 20, 1, 21, 1, 21, 3, 21, 653, 8, 21, 1, 21, 1, 21, 3, 21, 657, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 664, 8, 21, 10, 21, 12, 21, 667, 9, 21, 1, 21, 1, 21, 3, 21, 671, 8, 21, 1, 21, 1, 21, 3, 21, 675, 8, 21, 1, 21, 1, 21, 3, 21, 679, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 684, 8, 21, 1, 21, 3, 21, 687, 8, 21, 1, 21, 1, 21, 3, 21, 691, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 696, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 702, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 707, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 712, 8, 24, 1, 24, 1, 24, 3, 24, 716, 8, 24, 1, 25, 1, 25, 3, 25, 720, 8, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 727, 8, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 740, 8, 30, 10, 30, 12, 30, 743, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 750, 8, 31, 1, 31, 1, 31, 3, 31, 754, 8, 31, 1, 31, 1, 31, 3, 31, 758, 8, 31, 1, 31, 1, 31, 3, 31, 762, 8, 31, 1, 31, 1, 31, 3, 31, 766, 8, 31, 1, 31, 1, 31, 3, 31, 770, 8, 31, 1, 31, 1, 31, 3, 31, 774, 8, 31, 1, 31, 1, 31, 3, 31, 778, 8, 31, 1, 31, 1, 31, 3, 31, 782, 8, 31, 3, 31, 784, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 794, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 802, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 824, 8, 37, 10, 37, 12, 37, 827, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 838, 8, 37, 10, 37, 12, 37, 841, 9, 37, 1, 37, 1, 37, 3, 37, 845, 8, 37, 1, 38, 1, 38, 3, 38, 849, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 855, 8, 38, 1, 38, 3, 38, 858, 8, 38, 1, 38, 3, 38, 861, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 868, 8, 39, 1, 39, 3, 39, 871, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 880, 8, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 892, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 914, 8, 48, 10, 48, 12, 48, 917, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 926, 8, 49, 10, 49, 12, 49, 929, 9, 49, 1, 49, 1, 49, 3, 49, 933, 8, 49, 1, 50, 1, 50, 3, 50, 937, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 943, 8, 51, 10, 51, 12, 51, 946, 9, 51, 1, 51, 3, 51, 949, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 955, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 3, 54, 965, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 970, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 976, 8, 55, 1, 55, 1, 55, 3, 55, 980, 8, 55, 1, 55, 1, 55, 3, 55, 984, 8, 55, 1, 55, 1, 55, 3, 55, 988, 8, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 997, 8, 56, 1, 56, 1, 56, 3, 56, 1001, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1008, 8, 56, 1, 56, 3, 56, 1011, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1019, 8, 57, 10, 57, 12, 57, 1022, 9, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 3, 59, 1029, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1037, 8, 59, 1, 60, 1, 60, 3, 60, 1041, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1056, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1075, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1086, 8, 68, 1, 68, 1, 68, 3, 68, 1090, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1097, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1102, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 1108, 8, 70, 1, 70, 1, 70, 3, 70, 1112, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 1119, 8, 71, 1, 71, 1, 71, 3, 71, 1123, 8, 71, 1, 72, 1, 72, 3, 72, 1127, 8, 72, 1, 72, 1, 72, 3, 72, 1131, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1139, 8, 73, 1, 73, 1, 73, 3, 73, 1143, 8, 73, 1, 73, 1, 73, 1, 74, 3, 74, 1148, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1154, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1160, 8, 75, 1, 75, 3, 75, 1163, 8, 75, 1, 75, 1, 75, 3, 75, 1167, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1176, 8, 77, 10, 77, 12, 77, 1179, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 1185, 8, 78, 10, 78, 12, 78, 1188, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1194, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 4, 80, 1203, 8, 80, 11, 80, 12, 80, 1204, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 1215, 8, 81, 11, 81, 12, 81, 1216, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1232, 8, 82, 1, 82, 3, 82, 1235, 8, 82, 1, 82, 1, 82, 3, 82, 1239, 8, 82, 1, 82, 3, 82, 1242, 8, 82, 3, 82, 1244, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1249, 8, 82, 1, 82, 1, 82, 3, 82, 1253, 8, 82, 1, 82, 3, 82, 1256, 8, 82, 5, 82, 1258, 8, 82, 10, 82, 12, 82, 1261, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1267, 8, 83, 10, 83, 12, 83, 1270, 9, 83, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1276, 8, 84, 10, 84, 12, 84, 1279, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1286, 8, 85, 10, 85, 12, 85, 1289, 9, 85, 1, 85, 1, 85, 3, 85, 1293, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 1304, 8, 87, 1, 87, 3, 87, 1307, 8, 87, 1, 87, 3, 87, 1310, 8, 87, 1, 87, 3, 87, 1313, 8, 87, 1, 87, 3, 87, 1316, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1322, 8, 87, 1, 88, 1, 88, 3, 88, 1326, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 1333, 8, 89, 10, 89, 12, 89, 1336, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1342, 8, 90, 1, 90, 3, 90, 1345, 8, 90, 1, 90, 1, 90, 3, 90, 1349, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1354, 8, 90, 1, 90, 3, 90, 1357, 8, 90, 1, 90, 1, 90, 3, 90, 1361, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 3, 94, 1370, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 1377, 8, 95, 1, 95, 3, 95, 1380, 8, 95, 1, 95, 1, 95, 3, 95, 1384, 8, 95, 1, 95, 3, 95, 1387, 8, 95, 3, 95, 1389, 8, 95, 1, 96, 1, 96, 1, 96, 5, 96, 1394, 8, 96, 10, 96, 12, 96, 1397, 9, 96, 1, 96, 1, 96, 3, 96, 1401, 8, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1417, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 1426, 8, 99, 10, 99, 12, 99, 1429, 9, 99, 1, 99, 1, 99, 3, 99, 1433, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1441, 8, 99, 1, 99, 3, 99, 1444, 8, 99, 1, 99, 3, 99, 1447, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1452, 8, 99, 5, 99, 1454, 8, 99, 10, 99, 12, 99, 1457, 9, 99, 1, 100, 1, 100, 3, 100, 1461, 8, 100, 1, 101, 3, 101, 1464, 8, 101, 1, 101, 1, 101, 3, 101, 1468, 8, 101, 1, 101, 1, 101, 3, 101, 1472, 8, 101, 1, 101, 1, 101, 3, 101, 1476, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 3, 103, 1485, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1496, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1521, 8, 108, 10, 108, 12, 108, 1524, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1545, 8, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1559, 8, 113, 3, 113, 1561, 8, 113, 1, 113, 1, 113, 3, 113, 1565, 8, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1570, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1577, 8, 115, 10, 115, 12, 115, 1580, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1590, 8, 116, 10, 116, 12, 116, 1593, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1602, 8, 116, 10, 116, 12, 116, 1605, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1614, 8, 116, 10, 116, 12, 116, 1617, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1622, 8, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1647, 8, 123, 10, 123, 12, 123, 1650, 9, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 3, 125, 1657, 8, 125, 1, 125, 1, 125, 3, 125, 1661, 8, 125, 1, 125, 3, 125, 1664, 8, 125, 1, 125, 3, 125, 1667, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 1674, 8, 126, 1, 126, 3, 126, 1677, 8, 126, 1, 126, 3, 126, 1680, 8, 126, 1, 126, 3, 126, 1683, 8, 126, 1, 126, 3, 126, 1686, 8, 126, 1, 126, 3, 126, 1689, 8, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1694, 8, 126, 1, 126, 3, 126, 1697, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1704, 8, 127, 10, 127, 12, 127, 1707, 9, 127, 1, 128, 1, 128, 3, 128, 1711, 8, 128, 1, 128, 3, 128, 1714, 8, 128, 1, 128, 1, 128, 3, 128, 1718, 8, 128, 1, 129, 1, 129, 1, 129, 3, 129, 1723, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1729, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1734, 8, 130, 5, 130, 1736, 8, 130, 10, 130, 12, 130, 1739, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1757, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1763, 8, 132, 10, 132, 12, 132, 1766, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1771, 8, 133, 11, 133, 12, 133, 1772, 1, 133, 1, 133, 3, 133, 1777, 8, 133, 1, 134, 1, 134, 3, 134, 1781, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1791, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1817, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 1823, 8, 137, 10, 137, 12, 137, 1826, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1843, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1856, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1864, 8, 141, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1881, 8, 144, 3, 144, 1883, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1894, 8, 144, 1, 144, 5, 144, 1897, 8, 144, 10, 144, 12, 144, 1900, 9, 144, 1, 145, 3, 145, 1903, 8, 145, 1, 145, 1, 145, 3, 145, 1907, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1914, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 1921, 8, 145, 10, 145, 12, 145, 1924, 9, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1929, 8, 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, 1942, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1949, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1954, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1960, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1967, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1974, 8, 145, 3, 145, 1976, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 1986, 8, 146, 1, 147, 3, 147, 1989, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 1999, 8, 147, 10, 147, 12, 147, 2002, 9, 147, 1, 147, 1, 147, 3, 147, 2006, 8, 147, 1, 147, 3, 147, 2009, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2015, 8, 147, 3, 147, 2017, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2023, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 2044, 8, 148, 10, 148, 12, 148, 2047, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2054, 8, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2059, 8, 149, 10, 149, 12, 149, 2062, 9, 149, 3, 149, 2064, 8, 149, 1, 149, 1, 149, 3, 149, 2068, 8, 149, 1, 150, 1, 150, 1, 150, 4, 150, 2073, 8, 150, 11, 150, 12, 150, 2074, 1, 150, 1, 150, 3, 150, 2079, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 4, 150, 2086, 8, 150, 11, 150, 12, 150, 2087, 1, 150, 1, 150, 3, 150, 2092, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2108, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2117, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2152, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 5, 150, 2159, 8, 150, 10, 150, 12, 150, 2162, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2170, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2176, 8, 153, 1, 154, 1, 154, 3, 154, 2180, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2190, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2196, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2202, 8, 156, 1, 156, 1, 156, 3, 156, 2206, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2212, 8, 156, 1, 156, 1, 156, 3, 156, 2216, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2222, 8, 157, 3, 157, 2224, 8, 157, 1, 157, 3, 157, 2227, 8, 157, 1, 157, 3, 157, 2230, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2236, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2242, 8, 157, 1, 158, 3, 158, 2245, 8, 158, 1, 158, 1, 158, 3, 158, 2249, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2255, 8, 158, 10, 158, 12, 158, 2258, 9, 158, 1, 158, 3, 158, 2261, 8, 158, 5, 158, 2263, 8, 158, 10, 158, 12, 158, 2266, 9, 158, 1, 158, 1, 158, 3, 158, 2270, 8, 158, 1, 158, 1, 158, 3, 158, 2274, 8, 158, 1, 159, 5, 159, 2277, 8, 159, 10, 159, 12, 159, 2280, 9, 159, 1, 159, 1, 159, 3, 159, 2284, 8, 159, 1, 159, 1, 159, 3, 159, 2288, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2296, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2301, 8, 163, 1, 164, 1, 164, 3, 164, 2305, 8, 164, 1, 165, 1, 165, 1, 165, 4, 165, 2310, 8, 165, 11, 165, 12, 165, 2311, 1, 166, 1, 166, 1, 166, 3, 166, 2317, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 3, 168, 2325, 8, 168, 1, 168, 1, 168, 3, 168, 2329, 8, 168, 1, 169, 3, 169, 2332, 8, 169, 1, 169, 1, 169, 3, 169, 2336, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 4, 171, 2343, 8, 171, 11, 171, 12, 171, 2344, 1, 171, 3, 171, 2348, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2357, 8, 173, 10, 173, 12, 173, 2360, 9, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2365, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 3, 180, 2383, 8, 180, 1, 181, 1, 181, 1, 181, 3, 181, 2388, 8, 181, 1, 182, 1, 182, 1, 182, 3, 182, 2393, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2400, 8, 182, 3, 182, 2402, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2407, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2414, 8, 183, 3, 183, 2416, 8, 183, 1, 184, 1, 184, 1, 184, 3, 184, 2421, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2428, 8, 184, 3, 184, 2430, 8, 184, 1, 185, 1, 185, 1, 185, 3, 185, 2435, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2442, 8, 185, 3, 185, 2444, 8, 185, 1, 186, 1, 186, 1, 186, 5, 186, 2449, 8, 186, 10, 186, 12, 186, 2452, 9, 186, 1, 187, 1, 187, 1, 187, 5, 187, 2457, 8, 187, 10, 187, 12, 187, 2460, 9, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2467, 8, 187, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, 2483, 8, 191, 10, 191, 12, 191, 2486, 9, 191, 1, 191, 1, 191, 1, 192, 1, 192, 3, 192, 2492, 8, 192, 1, 192, 3, 192, 2495, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 2500, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2506, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2514, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 2530, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 2539, 8, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2549, 8, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2556, 8, 200, 1, 200, 3, 200, 2559, 8, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 0, 5, 164, 198, 288, 296, 300, 213, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 0, 48, 2, 0, 109, 109, 453, 453, 3, 0, 45, 45, 128, 128, 190, 190, 4, 0, 42, 42, 90, 90, 425, 425, 467, 467, 2, 0, 444, 444, 450, 450, 2, 0, 152, 152, 171, 171, 2, 0, 440, 440, 492, 492, 2, 0, 485, 488, 490, 490, 3, 0, 32, 32, 91, 91, 246, 246, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 179, 180, 346, 346, 362, 362, 380, 380, 383, 383, 389, 389, 419, 420, 2, 0, 436, 436, 438, 438, 4, 0, 101, 102, 115, 115, 144, 144, 248, 248, 2, 0, 13, 13, 233, 233, 2, 0, 458, 458, 465, 465, 3, 0, 5, 5, 272, 272, 447, 447, 3, 0, 268, 268, 458, 458, 465, 465, 3, 0, 428, 428, 461, 461, 480, 480, 3, 0, 332, 332, 468, 468, 484, 484, 2, 0, 443, 443, 493, 493, 2, 0, 184, 184, 267, 267, 3, 0, 130, 130, 181, 181, 405, 405, 4, 0, 153, 153, 175, 175, 203, 203, 319, 319, 3, 0, 448, 448, 462, 462, 502, 502, 4, 0, 252, 252, 449, 449, 497, 499, 501, 501, 2, 0, 74, 74, 322, 322, 3, 0, 462, 462, 495, 495, 502, 502, 2, 0, 442, 442, 453, 453, 2, 0, 460, 460, 470, 470, 2, 0, 294, 294, 324, 324, 4, 0, 140, 140, 246, 246, 399, 399, 407, 407, 2, 0, 19, 19, 371, 371, 2, 0, 5, 5, 11, 11, 2, 0, 512, 512, 532, 533, 4, 0, 455, 455, 530, 530, 534, 534, 537, 537, 2, 0, 532, 533, 535, 535, 1, 0, 532, 533, 1, 0, 541, 542, 2, 0, 541, 541, 544, 544, 4, 0, 455, 455, 530, 530, 532, 534, 536, 537, 3, 0, 243, 243, 511, 512, 532, 533, 2, 0, 140, 140, 399, 399, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 166, 166, 224, 224, 231, 231, 336, 336, 439, 439, 473, 473, 475, 475, 491, 491, 505, 505, 15, 0, 97, 97, 166, 166, 224, 224, 231, 231, 336, 336, 430, 430, 439, 439, 445, 445, 451, 452, 457, 457, 463, 463, 473, 478, 491, 491, 494, 494, 505, 506, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 202, 202, 209, 210, 391, 391, 416, 416, 530, 530, 3, 0, 78, 78, 84, 85, 209, 210, 2, 0, 91, 91, 380, 381, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 161, 161, 166, 166, 168, 168, 188, 189, 191, 196, 199, 199, 201, 201, 203, 203, 207, 207, 211, 211, 216, 216, 222, 222, 224, 225, 231, 231, 245, 245, 247, 247, 266, 266, 278, 278, 283, 283, 285, 285, 295, 295, 319, 319, 323, 325, 336, 336, 359, 360, 366, 366, 369, 369, 382, 382, 397, 397, 400, 401, 411, 411, 422, 423, 439, 439, 472, 472, 491, 491, 505, 505, 1, 0, 440, 507, 2831, 0, 429, 1, 0, 0, 0, 2, 439, 1, 0, 0, 0, 4, 453, 1, 0, 0, 0, 6, 455, 1, 0, 0, 0, 8, 471, 1, 0, 0, 0, 10, 475, 1, 0, 0, 0, 12, 477, 1, 0, 0, 0, 14, 480, 1, 0, 0, 0, 16, 491, 1, 0, 0, 0, 18, 499, 1, 0, 0, 0, 20, 507, 1, 0, 0, 0, 22, 509, 1, 0, 0, 0, 24, 561, 1, 0, 0, 0, 26, 563, 1, 0, 0, 0, 28, 570, 1, 0, 0, 0, 30, 574, 1, 0, 0, 0, 32, 578, 1, 0, 0, 0, 34, 582, 1, 0, 0, 0, 36, 636, 1, 0, 0, 0, 38, 642, 1, 0, 0, 0, 40, 648, 1, 0, 0, 0, 42, 650, 1, 0, 0, 0, 44, 692, 1, 0, 0, 0, 46, 706, 1, 0, 0, 0, 48, 708, 1, 0, 0, 0, 50, 719, 1, 0, 0, 0, 52, 721, 1, 0, 0, 0, 54, 726, 1, 0, 0, 0, 56, 728, 1, 0, 0, 0, 58, 733, 1, 0, 0, 0, 60, 735, 1, 0, 0, 0, 62, 783, 1, 0, 0, 0, 64, 785, 1, 0, 0, 0, 66, 789, 1, 0, 0, 0, 68, 797, 1, 0, 0, 0, 70, 805, 1, 0, 0, 0, 72, 809, 1, 0, 0, 0, 74, 844, 1, 0, 0, 0, 76, 860, 1, 0, 0, 0, 78, 862, 1, 0, 0, 0, 80, 872, 1, 0, 0, 0, 82, 874, 1, 0, 0, 0, 84, 881, 1, 0, 0, 0, 86, 883, 1, 0, 0, 0, 88, 891, 1, 0, 0, 0, 90, 899, 1, 0, 0, 0, 92, 901, 1, 0, 0, 0, 94, 905, 1, 0, 0, 0, 96, 909, 1, 0, 0, 0, 98, 932, 1, 0, 0, 0, 100, 936, 1, 0, 0, 0, 102, 938, 1, 0, 0, 0, 104, 954, 1, 0, 0, 0, 106, 956, 1, 0, 0, 0, 108, 961, 1, 0, 0, 0, 110, 973, 1, 0, 0, 0, 112, 992, 1, 0, 0, 0, 114, 1012, 1, 0, 0, 0, 116, 1023, 1, 0, 0, 0, 118, 1025, 1, 0, 0, 0, 120, 1038, 1, 0, 0, 0, 122, 1045, 1, 0, 0, 0, 124, 1048, 1, 0, 0, 0, 126, 1057, 1, 0, 0, 0, 128, 1061, 1, 0, 0, 0, 130, 1065, 1, 0, 0, 0, 132, 1068, 1, 0, 0, 0, 134, 1076, 1, 0, 0, 0, 136, 1081, 1, 0, 0, 0, 138, 1098, 1, 0, 0, 0, 140, 1105, 1, 0, 0, 0, 142, 1115, 1, 0, 0, 0, 144, 1124, 1, 0, 0, 0, 146, 1134, 1, 0, 0, 0, 148, 1153, 1, 0, 0, 0, 150, 1155, 1, 0, 0, 0, 152, 1168, 1, 0, 0, 0, 154, 1171, 1, 0, 0, 0, 156, 1180, 1, 0, 0, 0, 158, 1193, 1, 0, 0, 0, 160, 1195, 1, 0, 0, 0, 162, 1208, 1, 0, 0, 0, 164, 1243, 1, 0, 0, 0, 166, 1262, 1, 0, 0, 0, 168, 1271, 1, 0, 0, 0, 170, 1280, 1, 0, 0, 0, 172, 1299, 1, 0, 0, 0, 174, 1321, 1, 0, 0, 0, 176, 1323, 1, 0, 0, 0, 178, 1329, 1, 0, 0, 0, 180, 1360, 1, 0, 0, 0, 182, 1362, 1, 0, 0, 0, 184, 1364, 1, 0, 0, 0, 186, 1366, 1, 0, 0, 0, 188, 1369, 1, 0, 0, 0, 190, 1388, 1, 0, 0, 0, 192, 1400, 1, 0, 0, 0, 194, 1416, 1, 0, 0, 0, 196, 1418, 1, 0, 0, 0, 198, 1432, 1, 0, 0, 0, 200, 1458, 1, 0, 0, 0, 202, 1475, 1, 0, 0, 0, 204, 1477, 1, 0, 0, 0, 206, 1495, 1, 0, 0, 0, 208, 1497, 1, 0, 0, 0, 210, 1503, 1, 0, 0, 0, 212, 1505, 1, 0, 0, 0, 214, 1510, 1, 0, 0, 0, 216, 1515, 1, 0, 0, 0, 218, 1527, 1, 0, 0, 0, 220, 1544, 1, 0, 0, 0, 222, 1546, 1, 0, 0, 0, 224, 1548, 1, 0, 0, 0, 226, 1564, 1, 0, 0, 0, 228, 1566, 1, 0, 0, 0, 230, 1571, 1, 0, 0, 0, 232, 1621, 1, 0, 0, 0, 234, 1623, 1, 0, 0, 0, 236, 1626, 1, 0, 0, 0, 238, 1628, 1, 0, 0, 0, 240, 1635, 1, 0, 0, 0, 242, 1637, 1, 0, 0, 0, 244, 1639, 1, 0, 0, 0, 246, 1642, 1, 0, 0, 0, 248, 1651, 1, 0, 0, 0, 250, 1656, 1, 0, 0, 0, 252, 1670, 1, 0, 0, 0, 254, 1698, 1, 0, 0, 0, 256, 1710, 1, 0, 0, 0, 258, 1719, 1, 0, 0, 0, 260, 1724, 1, 0, 0, 0, 262, 1756, 1, 0, 0, 0, 264, 1758, 1, 0, 0, 0, 266, 1767, 1, 0, 0, 0, 268, 1778, 1, 0, 0, 0, 270, 1790, 1, 0, 0, 0, 272, 1816, 1, 0, 0, 0, 274, 1818, 1, 0, 0, 0, 276, 1842, 1, 0, 0, 0, 278, 1844, 1, 0, 0, 0, 280, 1855, 1, 0, 0, 0, 282, 1863, 1, 0, 0, 0, 284, 1865, 1, 0, 0, 0, 286, 1868, 1, 0, 0, 0, 288, 1882, 1, 0, 0, 0, 290, 1975, 1, 0, 0, 0, 292, 1985, 1, 0, 0, 0, 294, 2016, 1, 0, 0, 0, 296, 2022, 1, 0, 0, 0, 298, 2067, 1, 0, 0, 0, 300, 2151, 1, 0, 0, 0, 302, 2163, 1, 0, 0, 0, 304, 2169, 1, 0, 0, 0, 306, 2175, 1, 0, 0, 0, 308, 2179, 1, 0, 0, 0, 310, 2189, 1, 0, 0, 0, 312, 2191, 1, 0, 0, 0, 314, 2217, 1, 0, 0, 0, 316, 2264, 1, 0, 0, 0, 318, 2278, 1, 0, 0, 0, 320, 2289, 1, 0, 0, 0, 322, 2291, 1, 0, 0, 0, 324, 2295, 1, 0, 0, 0, 326, 2297, 1, 0, 0, 0, 328, 2302, 1, 0, 0, 0, 330, 2309, 1, 0, 0, 0, 332, 2313, 1, 0, 0, 0, 334, 2318, 1, 0, 0, 0, 336, 2328, 1, 0, 0, 0, 338, 2331, 1, 0, 0, 0, 340, 2337, 1, 0, 0, 0, 342, 2347, 1, 0, 0, 0, 344, 2349, 1, 0, 0, 0, 346, 2353, 1, 0, 0, 0, 348, 2364, 1, 0, 0, 0, 350, 2366, 1, 0, 0, 0, 352, 2368, 1, 0, 0, 0, 354, 2370, 1, 0, 0, 0, 356, 2375, 1, 0, 0, 0, 358, 2377, 1, 0, 0, 0, 360, 2379, 1, 0, 0, 0, 362, 2384, 1, 0, 0, 0, 364, 2401, 1, 0, 0, 0, 366, 2415, 1, 0, 0, 0, 368, 2429, 1, 0, 0, 0, 370, 2443, 1, 0, 0, 0, 372, 2445, 1, 0, 0, 0, 374, 2466, 1, 0, 0, 0, 376, 2468, 1, 0, 0, 0, 378, 2471, 1, 0, 0, 0, 380, 2475, 1, 0, 0, 0, 382, 2478, 1, 0, 0, 0, 384, 2489, 1, 0, 0, 0, 386, 2499, 1, 0, 0, 0, 388, 2505, 1, 0, 0, 0, 390, 2513, 1, 0, 0, 0, 392, 2529, 1, 0, 0, 0, 394, 2538, 1, 0, 0, 0, 396, 2540, 1, 0, 0, 0, 398, 2542, 1, 0, 0, 0, 400, 2558, 1, 0, 0, 0, 402, 2560, 1, 0, 0, 0, 404, 2563, 1, 0, 0, 0, 406, 2565, 1, 0, 0, 0, 408, 2567, 1, 0, 0, 0, 410, 2569, 1, 0, 0, 0, 412, 2571, 1, 0, 0, 0, 414, 2573, 1, 0, 0, 0, 416, 2575, 1, 0, 0, 0, 418, 2577, 1, 0, 0, 0, 420, 2579, 1, 0, 0, 0, 422, 2581, 1, 0, 0, 0, 424, 2583, 1, 0, 0, 0, 426, 428, 3, 2, 1, 0, 427, 426, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 432, 433, 5, 0, 0, 1, 433, 1, 1, 0, 0, 0, 434, 436, 3, 4, 2, 0, 435, 437, 5, 524, 0, 0, 436, 435, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 440, 3, 6, 3, 0, 439, 434, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 3, 1, 0, 0, 0, 441, 454, 3, 8, 4, 0, 442, 454, 3, 10, 5, 0, 443, 454, 3, 12, 6, 0, 444, 454, 3, 14, 7, 0, 445, 454, 3, 20, 10, 0, 446, 454, 3, 24, 12, 0, 447, 454, 3, 26, 13, 0, 448, 454, 3, 28, 14, 0, 449, 454, 3, 30, 15, 0, 450, 454, 3, 32, 16, 0, 451, 454, 3, 34, 17, 0, 452, 454, 3, 36, 18, 0, 453, 441, 1, 0, 0, 0, 453, 442, 1, 0, 0, 0, 453, 443, 1, 0, 0, 0, 453, 444, 1, 0, 0, 0, 453, 445, 1, 0, 0, 0, 453, 446, 1, 0, 0, 0, 453, 447, 1, 0, 0, 0, 453, 448, 1, 0, 0, 0, 453, 449, 1, 0, 0, 0, 453, 450, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 452, 1, 0, 0, 0, 454, 5, 1, 0, 0, 0, 455, 456, 5, 524, 0, 0, 456, 7, 1, 0, 0, 0, 457, 472, 3, 40, 20, 0, 458, 472, 3, 108, 54, 0, 459, 472, 3, 110, 55, 0, 460, 472, 3, 112, 56, 0, 461, 472, 3, 106, 53, 0, 462, 472, 3, 118, 59, 0, 463, 472, 3, 132, 66, 0, 464, 472, 3, 134, 67, 0, 465, 472, 3, 136, 68, 0, 466, 472, 3, 138, 69, 0, 467, 472, 3, 140, 70, 0, 468, 472, 3, 142, 71, 0, 469, 472, 3, 144, 72, 0, 470, 472, 3, 146, 73, 0, 471, 457, 1, 0, 0, 0, 471, 458, 1, 0, 0, 0, 471, 459, 1, 0, 0, 0, 471, 460, 1, 0, 0, 0, 471, 461, 1, 0, 0, 0, 471, 462, 1, 0, 0, 0, 471, 463, 1, 0, 0, 0, 471, 464, 1, 0, 0, 0, 471, 465, 1, 0, 0, 0, 471, 466, 1, 0, 0, 0, 471, 467, 1, 0, 0, 0, 471, 468, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 470, 1, 0, 0, 0, 472, 9, 1, 0, 0, 0, 473, 476, 3, 164, 82, 0, 474, 476, 3, 148, 74, 0, 475, 473, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 11, 1, 0, 0, 0, 477, 478, 7, 0, 0, 0, 478, 479, 3, 366, 183, 0, 479, 13, 1, 0, 0, 0, 480, 484, 5, 135, 0, 0, 481, 485, 3, 16, 8, 0, 482, 483, 5, 482, 0, 0, 483, 485, 5, 147, 0, 0, 484, 481, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 489, 1, 0, 0, 0, 486, 490, 3, 10, 5, 0, 487, 490, 3, 150, 75, 0, 488, 490, 3, 162, 81, 0, 489, 486, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 488, 1, 0, 0, 0, 490, 15, 1, 0, 0, 0, 491, 496, 3, 18, 9, 0, 492, 493, 5, 523, 0, 0, 493, 495, 3, 18, 9, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 17, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 7, 1, 0, 0, 500, 19, 1, 0, 0, 0, 501, 502, 5, 413, 0, 0, 502, 503, 5, 444, 0, 0, 503, 508, 3, 356, 178, 0, 504, 505, 5, 413, 0, 0, 505, 508, 3, 360, 180, 0, 506, 508, 3, 22, 11, 0, 507, 501, 1, 0, 0, 0, 507, 504, 1, 0, 0, 0, 507, 506, 1, 0, 0, 0, 508, 21, 1, 0, 0, 0, 509, 510, 5, 413, 0, 0, 510, 511, 5, 229, 0, 0, 511, 516, 3, 372, 186, 0, 512, 513, 5, 523, 0, 0, 513, 515, 3, 372, 186, 0, 514, 512, 1, 0, 0, 0, 515, 518, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 23, 1, 0, 0, 0, 518, 516, 1, 0, 0, 0, 519, 520, 5, 343, 0, 0, 520, 562, 7, 2, 0, 0, 521, 522, 5, 343, 0, 0, 522, 523, 5, 76, 0, 0, 523, 562, 7, 3, 0, 0, 524, 525, 5, 343, 0, 0, 525, 528, 5, 376, 0, 0, 526, 527, 7, 4, 0, 0, 527, 529, 3, 360, 180, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 1, 0, 0, 0, 530, 532, 3, 294, 147, 0, 531, 530, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 562, 1, 0, 0, 0, 533, 534, 5, 343, 0, 0, 534, 535, 5, 58, 0, 0, 535, 538, 7, 4, 0, 0, 536, 539, 3, 368, 184, 0, 537, 539, 3, 366, 183, 0, 538, 536, 1, 0, 0, 0, 538, 537, 1, 0, 0, 0, 539, 541, 1, 0, 0, 0, 540, 542, 3, 294, 147, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 562, 1, 0, 0, 0, 543, 544, 5, 343, 0, 0, 544, 549, 5, 72, 0, 0, 545, 546, 5, 375, 0, 0, 546, 550, 3, 366, 183, 0, 547, 548, 5, 504, 0, 0, 548, 550, 3, 368, 184, 0, 549, 545, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 550, 562, 1, 0, 0, 0, 551, 553, 5, 343, 0, 0, 552, 554, 5, 414, 0, 0, 553, 552, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 562, 5, 155, 0, 0, 556, 558, 5, 343, 0, 0, 557, 559, 5, 153, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 562, 5, 229, 0, 0, 561, 519, 1, 0, 0, 0, 561, 521, 1, 0, 0, 0, 561, 524, 1, 0, 0, 0, 561, 533, 1, 0, 0, 0, 561, 543, 1, 0, 0, 0, 561, 551, 1, 0, 0, 0, 561, 556, 1, 0, 0, 0, 562, 25, 1, 0, 0, 0, 563, 564, 5, 471, 0, 0, 564, 565, 5, 228, 0, 0, 565, 568, 3, 372, 186, 0, 566, 567, 5, 436, 0, 0, 567, 569, 3, 382, 191, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 27, 1, 0, 0, 0, 570, 571, 5, 503, 0, 0, 571, 572, 5, 228, 0, 0, 572, 573, 3, 372, 186, 0, 573, 29, 1, 0, 0, 0, 574, 576, 5, 342, 0, 0, 575, 577, 3, 384, 192, 0, 576, 575, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 31, 1, 0, 0, 0, 578, 580, 5, 314, 0, 0, 579, 581, 3, 386, 193, 0, 580, 579, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 33, 1, 0, 0, 0, 582, 583, 7, 5, 0, 0, 583, 584, 5, 466, 0, 0, 584, 585, 3, 116, 58, 0, 585, 35, 1, 0, 0, 0, 586, 587, 5, 440, 0, 0, 587, 588, 5, 466, 0, 0, 588, 589, 5, 436, 0, 0, 589, 592, 3, 38, 19, 0, 590, 591, 5, 17, 0, 0, 591, 593, 3, 372, 186, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 637, 1, 0, 0, 0, 594, 595, 5, 440, 0, 0, 595, 596, 5, 459, 0, 0, 596, 597, 5, 436, 0, 0, 597, 600, 3, 38, 19, 0, 598, 599, 5, 17, 0, 0, 599, 601, 3, 372, 186, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 604, 1, 0, 0, 0, 602, 603, 5, 313, 0, 0, 603, 605, 3, 372, 186, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 637, 1, 0, 0, 0, 606, 607, 5, 440, 0, 0, 607, 608, 7, 6, 0, 0, 608, 609, 5, 436, 0, 0, 609, 610, 3, 38, 19, 0, 610, 611, 5, 313, 0, 0, 611, 612, 3, 372, 186, 0, 612, 637, 1, 0, 0, 0, 613, 614, 5, 440, 0, 0, 614, 615, 5, 489, 0, 0, 615, 637, 3, 38, 19, 0, 616, 617, 5, 440, 0, 0, 617, 618, 5, 456, 0, 0, 618, 619, 5, 459, 0, 0, 619, 620, 5, 436, 0, 0, 620, 621, 3, 38, 19, 0, 621, 622, 5, 313, 0, 0, 622, 623, 3, 372, 186, 0, 623, 624, 5, 469, 0, 0, 624, 625, 3, 372, 186, 0, 625, 637, 1, 0, 0, 0, 626, 627, 5, 440, 0, 0, 627, 628, 5, 446, 0, 0, 628, 629, 5, 459, 0, 0, 629, 630, 5, 436, 0, 0, 630, 631, 3, 38, 19, 0, 631, 632, 5, 147, 0, 0, 632, 633, 3, 372, 186, 0, 633, 634, 5, 17, 0, 0, 634, 635, 3, 372, 186, 0, 635, 637, 1, 0, 0, 0, 636, 586, 1, 0, 0, 0, 636, 594, 1, 0, 0, 0, 636, 606, 1, 0, 0, 0, 636, 613, 1, 0, 0, 0, 636, 616, 1, 0, 0, 0, 636, 626, 1, 0, 0, 0, 637, 37, 1, 0, 0, 0, 638, 640, 5, 537, 0, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 643, 3, 372, 186, 0, 642, 639, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 39, 1, 0, 0, 0, 646, 649, 3, 42, 21, 0, 647, 649, 3, 44, 22, 0, 648, 646, 1, 0, 0, 0, 648, 647, 1, 0, 0, 0, 649, 41, 1, 0, 0, 0, 650, 652, 5, 72, 0, 0, 651, 653, 5, 500, 0, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 656, 5, 375, 0, 0, 655, 657, 3, 378, 189, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 3, 364, 182, 0, 659, 660, 5, 519, 0, 0, 660, 665, 3, 46, 23, 0, 661, 662, 5, 523, 0, 0, 662, 664, 3, 46, 23, 0, 663, 661, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 670, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 669, 5, 523, 0, 0, 669, 671, 3, 86, 43, 0, 670, 668, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, 672, 673, 5, 523, 0, 0, 673, 675, 3, 88, 44, 0, 674, 672, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 678, 1, 0, 0, 0, 676, 677, 5, 523, 0, 0, 677, 679, 3, 92, 46, 0, 678, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 683, 5, 520, 0, 0, 681, 682, 5, 59, 0, 0, 682, 684, 5, 540, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 687, 3, 94, 47, 0, 686, 685, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 690, 3, 376, 188, 0, 689, 691, 3, 102, 51, 0, 690, 689, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 43, 1, 0, 0, 0, 692, 693, 5, 72, 0, 0, 693, 695, 5, 375, 0, 0, 694, 696, 3, 378, 189, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 3, 364, 182, 0, 698, 701, 3, 376, 188, 0, 699, 700, 5, 17, 0, 0, 700, 702, 3, 164, 82, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 45, 1, 0, 0, 0, 703, 707, 3, 48, 24, 0, 704, 707, 3, 78, 39, 0, 705, 707, 3, 82, 41, 0, 706, 703, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 47, 1, 0, 0, 0, 708, 709, 3, 50, 25, 0, 709, 711, 3, 62, 31, 0, 710, 712, 3, 76, 38, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 714, 5, 59, 0, 0, 714, 716, 5, 540, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 49, 1, 0, 0, 0, 717, 720, 3, 372, 186, 0, 718, 720, 3, 286, 143, 0, 719, 717, 1, 0, 0, 0, 719, 718, 1, 0, 0, 0, 720, 51, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 53, 1, 0, 0, 0, 723, 727, 3, 374, 187, 0, 724, 725, 4, 27, 0, 0, 725, 727, 3, 52, 26, 0, 726, 723, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 55, 1, 0, 0, 0, 728, 729, 3, 372, 186, 0, 729, 57, 1, 0, 0, 0, 730, 734, 3, 374, 187, 0, 731, 732, 4, 29, 1, 0, 732, 734, 3, 52, 26, 0, 733, 730, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 59, 1, 0, 0, 0, 735, 736, 5, 519, 0, 0, 736, 741, 3, 54, 27, 0, 737, 738, 5, 523, 0, 0, 738, 740, 3, 54, 27, 0, 739, 737, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 745, 5, 520, 0, 0, 745, 61, 1, 0, 0, 0, 746, 784, 7, 7, 0, 0, 747, 749, 7, 8, 0, 0, 748, 750, 3, 64, 32, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 784, 1, 0, 0, 0, 751, 753, 5, 381, 0, 0, 752, 754, 3, 64, 32, 0, 753, 752, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 761, 1, 0, 0, 0, 755, 757, 7, 9, 0, 0, 756, 758, 5, 208, 0, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 5, 380, 0, 0, 760, 762, 5, 507, 0, 0, 761, 755, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 784, 1, 0, 0, 0, 763, 765, 7, 10, 0, 0, 764, 766, 3, 66, 33, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 784, 1, 0, 0, 0, 767, 769, 7, 11, 0, 0, 768, 770, 3, 70, 35, 0, 769, 768, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 784, 1, 0, 0, 0, 771, 773, 5, 472, 0, 0, 772, 774, 3, 72, 36, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 784, 1, 0, 0, 0, 775, 777, 5, 323, 0, 0, 776, 778, 3, 74, 37, 0, 777, 776, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 784, 1, 0, 0, 0, 779, 781, 5, 296, 0, 0, 780, 782, 3, 68, 34, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 784, 1, 0, 0, 0, 783, 746, 1, 0, 0, 0, 783, 747, 1, 0, 0, 0, 783, 751, 1, 0, 0, 0, 783, 763, 1, 0, 0, 0, 783, 767, 1, 0, 0, 0, 783, 771, 1, 0, 0, 0, 783, 775, 1, 0, 0, 0, 783, 779, 1, 0, 0, 0, 784, 63, 1, 0, 0, 0, 785, 786, 5, 519, 0, 0, 786, 787, 3, 406, 203, 0, 787, 788, 5, 520, 0, 0, 788, 65, 1, 0, 0, 0, 789, 790, 5, 519, 0, 0, 790, 793, 3, 406, 203, 0, 791, 792, 5, 523, 0, 0, 792, 794, 3, 406, 203, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 5, 520, 0, 0, 796, 67, 1, 0, 0, 0, 797, 798, 5, 519, 0, 0, 798, 801, 3, 404, 202, 0, 799, 800, 5, 523, 0, 0, 800, 802, 3, 404, 202, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 5, 520, 0, 0, 804, 69, 1, 0, 0, 0, 805, 806, 5, 510, 0, 0, 806, 807, 3, 62, 31, 0, 807, 808, 5, 509, 0, 0, 808, 71, 1, 0, 0, 0, 809, 810, 5, 510, 0, 0, 810, 811, 3, 62, 31, 0, 811, 812, 5, 523, 0, 0, 812, 813, 3, 62, 31, 0, 813, 814, 1, 0, 0, 0, 814, 815, 5, 509, 0, 0, 815, 73, 1, 0, 0, 0, 816, 817, 5, 510, 0, 0, 817, 818, 3, 54, 27, 0, 818, 825, 3, 62, 31, 0, 819, 820, 5, 523, 0, 0, 820, 821, 3, 54, 27, 0, 821, 822, 3, 62, 31, 0, 822, 824, 1, 0, 0, 0, 823, 819, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 509, 0, 0, 829, 845, 1, 0, 0, 0, 830, 831, 5, 519, 0, 0, 831, 832, 3, 54, 27, 0, 832, 839, 3, 62, 31, 0, 833, 834, 5, 523, 0, 0, 834, 835, 3, 54, 27, 0, 835, 836, 3, 62, 31, 0, 836, 838, 1, 0, 0, 0, 837, 833, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 843, 5, 520, 0, 0, 843, 845, 1, 0, 0, 0, 844, 816, 1, 0, 0, 0, 844, 830, 1, 0, 0, 0, 845, 75, 1, 0, 0, 0, 846, 847, 5, 64, 0, 0, 847, 849, 3, 90, 45, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 5, 290, 0, 0, 851, 854, 5, 469, 0, 0, 852, 853, 5, 243, 0, 0, 853, 855, 5, 125, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 861, 1, 0, 0, 0, 856, 858, 5, 243, 0, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 5, 246, 0, 0, 860, 848, 1, 0, 0, 0, 860, 857, 1, 0, 0, 0, 861, 77, 1, 0, 0, 0, 862, 863, 3, 50, 25, 0, 863, 864, 3, 62, 31, 0, 864, 867, 5, 220, 0, 0, 865, 866, 5, 152, 0, 0, 866, 868, 3, 80, 40, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 5, 426, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 79, 1, 0, 0, 0, 872, 873, 5, 540, 0, 0, 873, 81, 1, 0, 0, 0, 874, 875, 3, 50, 25, 0, 875, 876, 5, 17, 0, 0, 876, 879, 3, 84, 42, 0, 877, 878, 5, 59, 0, 0, 878, 880, 5, 540, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 83, 1, 0, 0, 0, 881, 882, 3, 286, 143, 0, 882, 85, 1, 0, 0, 0, 883, 884, 5, 427, 0, 0, 884, 885, 5, 147, 0, 0, 885, 886, 3, 54, 27, 0, 886, 887, 5, 17, 0, 0, 887, 888, 3, 286, 143, 0, 888, 87, 1, 0, 0, 0, 889, 890, 5, 64, 0, 0, 890, 892, 3, 90, 45, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 290, 0, 0, 894, 895, 5, 469, 0, 0, 895, 896, 3, 60, 30, 0, 896, 897, 5, 243, 0, 0, 897, 898, 5, 125, 0, 0, 898, 89, 1, 0, 0, 0, 899, 900, 3, 348, 174, 0, 900, 91, 1, 0, 0, 0, 901, 902, 5, 279, 0, 0, 902, 903, 5, 147, 0, 0, 903, 904, 5, 373, 0, 0, 904, 93, 1, 0, 0, 0, 905, 906, 5, 271, 0, 0, 906, 907, 5, 34, 0, 0, 907, 908, 3, 96, 48, 0, 908, 95, 1, 0, 0, 0, 909, 910, 5, 519, 0, 0, 910, 915, 3, 98, 49, 0, 911, 912, 5, 523, 0, 0, 912, 914, 3, 98, 49, 0, 913, 911, 1, 0, 0, 0, 914, 917, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 520, 0, 0, 919, 97, 1, 0, 0, 0, 920, 933, 3, 54, 27, 0, 921, 922, 5, 519, 0, 0, 922, 927, 3, 100, 50, 0, 923, 924, 5, 523, 0, 0, 924, 926, 3, 100, 50, 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, 930, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 520, 0, 0, 931, 933, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 921, 1, 0, 0, 0, 933, 99, 1, 0, 0, 0, 934, 937, 3, 324, 162, 0, 935, 937, 3, 400, 200, 0, 936, 934, 1, 0, 0, 0, 936, 935, 1, 0, 0, 0, 937, 101, 1, 0, 0, 0, 938, 939, 5, 204, 0, 0, 939, 948, 3, 366, 183, 0, 940, 944, 5, 519, 0, 0, 941, 943, 3, 104, 52, 0, 942, 941, 1, 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 949, 5, 520, 0, 0, 948, 940, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 103, 1, 0, 0, 0, 950, 951, 7, 12, 0, 0, 951, 955, 7, 13, 0, 0, 952, 953, 7, 14, 0, 0, 953, 955, 7, 15, 0, 0, 954, 950, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 955, 105, 1, 0, 0, 0, 956, 957, 5, 72, 0, 0, 957, 958, 5, 444, 0, 0, 958, 959, 3, 358, 179, 0, 959, 960, 3, 376, 188, 0, 960, 107, 1, 0, 0, 0, 961, 962, 5, 72, 0, 0, 962, 964, 5, 450, 0, 0, 963, 965, 3, 378, 189, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 969, 3, 362, 181, 0, 967, 968, 5, 59, 0, 0, 968, 970, 5, 540, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 3, 376, 188, 0, 972, 109, 1, 0, 0, 0, 973, 975, 5, 72, 0, 0, 974, 976, 5, 500, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 979, 5, 504, 0, 0, 978, 980, 3, 378, 189, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 983, 3, 370, 185, 0, 982, 984, 3, 60, 30, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 987, 1, 0, 0, 0, 985, 986, 5, 59, 0, 0, 986, 988, 5, 540, 0, 0, 987, 985, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 17, 0, 0, 990, 991, 3, 164, 82, 0, 991, 111, 1, 0, 0, 0, 992, 996, 5, 72, 0, 0, 993, 997, 5, 500, 0, 0, 994, 995, 5, 500, 0, 0, 995, 997, 5, 372, 0, 0, 996, 993, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1000, 5, 154, 0, 0, 999, 1001, 3, 378, 189, 0, 1000, 999, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 3, 302, 151, 0, 1003, 1004, 5, 17, 0, 0, 1004, 1007, 3, 348, 174, 0, 1005, 1006, 5, 197, 0, 0, 1006, 1008, 7, 16, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1010, 1, 0, 0, 0, 1009, 1011, 3, 114, 57, 0, 1010, 1009, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 113, 1, 0, 0, 0, 1012, 1013, 5, 415, 0, 0, 1013, 1014, 5, 466, 0, 0, 1014, 1020, 3, 116, 58, 0, 1015, 1016, 5, 523, 0, 0, 1016, 1017, 5, 466, 0, 0, 1017, 1019, 3, 116, 58, 0, 1018, 1015, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 115, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 1024, 5, 540, 0, 0, 1024, 117, 1, 0, 0, 0, 1025, 1026, 5, 8, 0, 0, 1026, 1028, 5, 375, 0, 0, 1027, 1029, 3, 380, 190, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1036, 3, 366, 183, 0, 1031, 1037, 3, 120, 60, 0, 1032, 1037, 3, 122, 61, 0, 1033, 1037, 3, 124, 62, 0, 1034, 1037, 3, 126, 63, 0, 1035, 1037, 3, 128, 64, 0, 1036, 1031, 1, 0, 0, 0, 1036, 1032, 1, 0, 0, 0, 1036, 1033, 1, 0, 0, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1035, 1, 0, 0, 0, 1037, 119, 1, 0, 0, 0, 1038, 1040, 5, 313, 0, 0, 1039, 1041, 3, 372, 186, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 5, 390, 0, 0, 1043, 1044, 3, 372, 186, 0, 1044, 121, 1, 0, 0, 0, 1045, 1046, 5, 342, 0, 0, 1046, 1047, 3, 382, 191, 0, 1047, 123, 1, 0, 0, 0, 1048, 1049, 5, 440, 0, 0, 1049, 1050, 5, 64, 0, 0, 1050, 1051, 3, 90, 45, 0, 1051, 1052, 5, 290, 0, 0, 1052, 1053, 5, 469, 0, 0, 1053, 1055, 3, 60, 30, 0, 1054, 1056, 3, 130, 65, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 125, 1, 0, 0, 0, 1057, 1058, 5, 116, 0, 0, 1058, 1059, 5, 64, 0, 0, 1059, 1060, 3, 90, 45, 0, 1060, 127, 1, 0, 0, 0, 1061, 1062, 5, 440, 0, 0, 1062, 1063, 5, 406, 0, 0, 1063, 1064, 3, 60, 30, 0, 1064, 129, 1, 0, 0, 0, 1065, 1066, 5, 243, 0, 0, 1066, 1067, 5, 125, 0, 0, 1067, 131, 1, 0, 0, 0, 1068, 1069, 5, 8, 0, 0, 1069, 1070, 5, 504, 0, 0, 1070, 1074, 3, 368, 184, 0, 1071, 1075, 3, 120, 60, 0, 1072, 1073, 5, 17, 0, 0, 1073, 1075, 3, 164, 82, 0, 1074, 1071, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 133, 1, 0, 0, 0, 1076, 1077, 5, 8, 0, 0, 1077, 1078, 5, 450, 0, 0, 1078, 1079, 3, 360, 180, 0, 1079, 1080, 3, 122, 61, 0, 1080, 135, 1, 0, 0, 0, 1081, 1085, 5, 8, 0, 0, 1082, 1086, 5, 500, 0, 0, 1083, 1084, 5, 500, 0, 0, 1084, 1086, 5, 372, 0, 0, 1085, 1082, 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 5, 154, 0, 0, 1088, 1090, 3, 380, 190, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 3, 304, 152, 0, 1092, 1093, 5, 17, 0, 0, 1093, 1096, 3, 348, 174, 0, 1094, 1095, 5, 197, 0, 0, 1095, 1097, 7, 16, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 137, 1, 0, 0, 0, 1098, 1099, 5, 116, 0, 0, 1099, 1101, 5, 444, 0, 0, 1100, 1102, 3, 380, 190, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 3, 356, 178, 0, 1104, 139, 1, 0, 0, 0, 1105, 1107, 5, 116, 0, 0, 1106, 1108, 5, 500, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 5, 375, 0, 0, 1110, 1112, 3, 380, 190, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 3, 366, 183, 0, 1114, 141, 1, 0, 0, 0, 1115, 1116, 5, 116, 0, 0, 1116, 1118, 5, 450, 0, 0, 1117, 1119, 3, 380, 190, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 3, 360, 180, 0, 1121, 1123, 7, 17, 0, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 143, 1, 0, 0, 0, 1124, 1126, 5, 116, 0, 0, 1125, 1127, 5, 500, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 5, 504, 0, 0, 1129, 1131, 3, 380, 190, 0, 1130, 1129, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 3, 368, 184, 0, 1133, 145, 1, 0, 0, 0, 1134, 1138, 5, 116, 0, 0, 1135, 1139, 5, 500, 0, 0, 1136, 1137, 5, 500, 0, 0, 1137, 1139, 5, 372, 0, 0, 1138, 1135, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1142, 5, 154, 0, 0, 1141, 1143, 3, 380, 190, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 3, 304, 152, 0, 1145, 147, 1, 0, 0, 0, 1146, 1148, 5, 132, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1154, 3, 150, 75, 0, 1150, 1154, 3, 160, 80, 0, 1151, 1152, 5, 132, 0, 0, 1152, 1154, 3, 162, 81, 0, 1153, 1147, 1, 0, 0, 0, 1153, 1150, 1, 0, 0, 0, 1153, 1151, 1, 0, 0, 0, 1154, 149, 1, 0, 0, 0, 1155, 1156, 5, 178, 0, 0, 1156, 1157, 7, 18, 0, 0, 1157, 1166, 3, 366, 183, 0, 1158, 1160, 3, 152, 76, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1163, 3, 60, 30, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1167, 3, 164, 82, 0, 1165, 1167, 3, 154, 77, 0, 1166, 1159, 1, 0, 0, 0, 1166, 1165, 1, 0, 0, 0, 1167, 151, 1, 0, 0, 0, 1168, 1169, 5, 270, 0, 0, 1169, 1170, 3, 382, 191, 0, 1170, 153, 1, 0, 0, 0, 1171, 1172, 5, 417, 0, 0, 1172, 1177, 3, 156, 78, 0, 1173, 1174, 5, 523, 0, 0, 1174, 1176, 3, 156, 78, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 155, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 5, 519, 0, 0, 1181, 1186, 3, 158, 79, 0, 1182, 1183, 5, 523, 0, 0, 1183, 1185, 3, 158, 79, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1190, 5, 520, 0, 0, 1190, 157, 1, 0, 0, 0, 1191, 1194, 3, 400, 200, 0, 1192, 1194, 3, 298, 149, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1194, 159, 1, 0, 0, 0, 1195, 1196, 5, 24, 0, 0, 1196, 1197, 5, 356, 0, 0, 1197, 1198, 5, 342, 0, 0, 1198, 1202, 5, 524, 0, 0, 1199, 1200, 3, 150, 75, 0, 1200, 1201, 5, 524, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1199, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 5, 122, 0, 0, 1207, 161, 1, 0, 0, 0, 1208, 1209, 5, 356, 0, 0, 1209, 1210, 5, 342, 0, 0, 1210, 1214, 5, 24, 0, 0, 1211, 1212, 3, 150, 75, 0, 1212, 1213, 5, 524, 0, 0, 1213, 1215, 1, 0, 0, 0, 1214, 1211, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 5, 122, 0, 0, 1219, 163, 1, 0, 0, 0, 1220, 1221, 6, 82, -1, 0, 1221, 1244, 3, 166, 83, 0, 1222, 1223, 3, 168, 84, 0, 1223, 1224, 3, 164, 82, 5, 1224, 1244, 1, 0, 0, 0, 1225, 1226, 5, 519, 0, 0, 1226, 1227, 3, 164, 82, 0, 1227, 1228, 5, 520, 0, 0, 1228, 1244, 1, 0, 0, 0, 1229, 1231, 3, 176, 88, 0, 1230, 1232, 3, 254, 127, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1234, 1, 0, 0, 0, 1233, 1235, 3, 258, 129, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1244, 1, 0, 0, 0, 1236, 1238, 3, 174, 87, 0, 1237, 1239, 3, 254, 127, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 258, 129, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1220, 1, 0, 0, 0, 1243, 1222, 1, 0, 0, 0, 1243, 1225, 1, 0, 0, 0, 1243, 1229, 1, 0, 0, 0, 1243, 1236, 1, 0, 0, 0, 1244, 1259, 1, 0, 0, 0, 1245, 1246, 10, 3, 0, 0, 1246, 1248, 7, 19, 0, 0, 1247, 1249, 5, 5, 0, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1252, 3, 164, 82, 0, 1251, 1253, 3, 254, 127, 0, 1252, 1251, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1255, 1, 0, 0, 0, 1254, 1256, 3, 258, 129, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 1, 0, 0, 0, 1257, 1245, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 165, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 417, 0, 0, 1263, 1268, 3, 286, 143, 0, 1264, 1265, 5, 523, 0, 0, 1265, 1267, 3, 286, 143, 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, 167, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 436, 0, 0, 1272, 1277, 3, 170, 85, 0, 1273, 1274, 5, 523, 0, 0, 1274, 1276, 3, 170, 85, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 169, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1292, 3, 172, 86, 0, 1281, 1282, 5, 519, 0, 0, 1282, 1287, 3, 54, 27, 0, 1283, 1284, 5, 523, 0, 0, 1284, 1286, 3, 54, 27, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1291, 5, 520, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1281, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 5, 17, 0, 0, 1295, 1296, 5, 519, 0, 0, 1296, 1297, 3, 164, 82, 0, 1297, 1298, 5, 520, 0, 0, 1298, 171, 1, 0, 0, 0, 1299, 1300, 3, 348, 174, 0, 1300, 173, 1, 0, 0, 0, 1301, 1303, 3, 176, 88, 0, 1302, 1304, 3, 196, 98, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1306, 1, 0, 0, 0, 1305, 1307, 3, 228, 114, 0, 1306, 1305, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 1, 0, 0, 0, 1308, 1310, 3, 230, 115, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1313, 3, 244, 122, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 3, 246, 123, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1322, 1, 0, 0, 0, 1317, 1318, 3, 176, 88, 0, 1318, 1319, 3, 196, 98, 0, 1319, 1320, 3, 252, 126, 0, 1320, 1322, 1, 0, 0, 0, 1321, 1301, 1, 0, 0, 0, 1321, 1317, 1, 0, 0, 0, 1322, 175, 1, 0, 0, 0, 1323, 1325, 5, 338, 0, 0, 1324, 1326, 3, 410, 205, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 3, 178, 89, 0, 1328, 177, 1, 0, 0, 0, 1329, 1334, 3, 180, 90, 0, 1330, 1331, 5, 523, 0, 0, 1331, 1333, 3, 180, 90, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 179, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 1361, 3, 182, 91, 0, 1338, 1344, 3, 186, 93, 0, 1339, 1345, 3, 188, 94, 0, 1340, 1342, 5, 17, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 3, 286, 143, 0, 1344, 1339, 1, 0, 0, 0, 1344, 1341, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1361, 1, 0, 0, 0, 1346, 1348, 3, 192, 96, 0, 1347, 1349, 3, 188, 94, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1361, 1, 0, 0, 0, 1350, 1356, 3, 184, 92, 0, 1351, 1357, 3, 188, 94, 0, 1352, 1354, 5, 17, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 54, 27, 0, 1356, 1351, 1, 0, 0, 0, 1356, 1353, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1361, 1, 0, 0, 0, 1358, 1359, 4, 90, 3, 0, 1359, 1361, 3, 52, 26, 0, 1360, 1337, 1, 0, 0, 0, 1360, 1338, 1, 0, 0, 0, 1360, 1346, 1, 0, 0, 0, 1360, 1350, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1361, 181, 1, 0, 0, 0, 1362, 1363, 3, 194, 97, 0, 1363, 183, 1, 0, 0, 0, 1364, 1365, 3, 286, 143, 0, 1365, 185, 1, 0, 0, 0, 1366, 1367, 3, 54, 27, 0, 1367, 187, 1, 0, 0, 0, 1368, 1370, 5, 17, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 3, 348, 174, 0, 1372, 189, 1, 0, 0, 0, 1373, 1389, 3, 194, 97, 0, 1374, 1379, 3, 286, 143, 0, 1375, 1377, 5, 17, 0, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1380, 3, 54, 27, 0, 1379, 1376, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1389, 1, 0, 0, 0, 1381, 1386, 3, 54, 27, 0, 1382, 1384, 5, 17, 0, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1387, 3, 286, 143, 0, 1386, 1383, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1373, 1, 0, 0, 0, 1388, 1374, 1, 0, 0, 0, 1388, 1381, 1, 0, 0, 0, 1389, 191, 1, 0, 0, 0, 1390, 1395, 3, 348, 174, 0, 1391, 1392, 5, 516, 0, 0, 1392, 1394, 3, 348, 174, 0, 1393, 1391, 1, 0, 0, 0, 1394, 1397, 1, 0, 0, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1398, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1398, 1399, 5, 516, 0, 0, 1399, 1401, 1, 0, 0, 0, 1400, 1390, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 5, 530, 0, 0, 1403, 193, 1, 0, 0, 0, 1404, 1405, 3, 300, 150, 0, 1405, 1406, 5, 264, 0, 0, 1406, 1407, 3, 250, 125, 0, 1407, 1408, 5, 17, 0, 0, 1408, 1409, 3, 348, 174, 0, 1409, 1417, 1, 0, 0, 0, 1410, 1411, 3, 300, 150, 0, 1411, 1412, 5, 264, 0, 0, 1412, 1413, 3, 340, 170, 0, 1413, 1414, 5, 17, 0, 0, 1414, 1415, 3, 348, 174, 0, 1415, 1417, 1, 0, 0, 0, 1416, 1404, 1, 0, 0, 0, 1416, 1410, 1, 0, 0, 0, 1417, 195, 1, 0, 0, 0, 1418, 1419, 5, 152, 0, 0, 1419, 1420, 3, 198, 99, 0, 1420, 197, 1, 0, 0, 0, 1421, 1422, 6, 99, -1, 0, 1422, 1427, 3, 200, 100, 0, 1423, 1424, 5, 523, 0, 0, 1424, 1426, 3, 200, 100, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1429, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1433, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1433, 3, 212, 106, 0, 1431, 1433, 3, 214, 107, 0, 1432, 1421, 1, 0, 0, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 1455, 1, 0, 0, 0, 1434, 1435, 10, 3, 0, 0, 1435, 1436, 5, 73, 0, 0, 1436, 1437, 5, 186, 0, 0, 1437, 1454, 3, 198, 99, 4, 1438, 1440, 10, 4, 0, 0, 1439, 1441, 5, 235, 0, 0, 1440, 1439, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1443, 1, 0, 0, 0, 1442, 1444, 7, 20, 0, 0, 1443, 1442, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1446, 1, 0, 0, 0, 1445, 1447, 5, 263, 0, 0, 1446, 1445, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 5, 186, 0, 0, 1449, 1451, 3, 198, 99, 0, 1450, 1452, 3, 226, 113, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1454, 1, 0, 0, 0, 1453, 1434, 1, 0, 0, 0, 1453, 1438, 1, 0, 0, 0, 1454, 1457, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 199, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1460, 3, 202, 101, 0, 1459, 1461, 3, 338, 169, 0, 1460, 1459, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 201, 1, 0, 0, 0, 1462, 1464, 5, 375, 0, 0, 1463, 1462, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1467, 3, 366, 183, 0, 1466, 1468, 3, 208, 104, 0, 1467, 1466, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1476, 1, 0, 0, 0, 1469, 1471, 3, 368, 184, 0, 1470, 1472, 3, 208, 104, 0, 1471, 1470, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1476, 1, 0, 0, 0, 1473, 1476, 3, 204, 102, 0, 1474, 1476, 3, 206, 103, 0, 1475, 1463, 1, 0, 0, 0, 1475, 1469, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1474, 1, 0, 0, 0, 1476, 203, 1, 0, 0, 0, 1477, 1478, 5, 200, 0, 0, 1478, 1479, 5, 375, 0, 0, 1479, 1480, 5, 519, 0, 0, 1480, 1481, 3, 298, 149, 0, 1481, 1482, 5, 520, 0, 0, 1482, 205, 1, 0, 0, 0, 1483, 1485, 5, 200, 0, 0, 1484, 1483, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 5, 519, 0, 0, 1487, 1488, 3, 164, 82, 0, 1488, 1489, 5, 520, 0, 0, 1489, 1496, 1, 0, 0, 0, 1490, 1491, 5, 408, 0, 0, 1491, 1492, 5, 519, 0, 0, 1492, 1493, 3, 286, 143, 0, 1493, 1494, 5, 520, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1484, 1, 0, 0, 0, 1495, 1490, 1, 0, 0, 0, 1496, 207, 1, 0, 0, 0, 1497, 1498, 5, 147, 0, 0, 1498, 1499, 5, 373, 0, 0, 1499, 1500, 5, 17, 0, 0, 1500, 1501, 5, 251, 0, 0, 1501, 1502, 3, 210, 105, 0, 1502, 209, 1, 0, 0, 0, 1503, 1504, 3, 286, 143, 0, 1504, 211, 1, 0, 0, 0, 1505, 1506, 5, 519, 0, 0, 1506, 1507, 3, 154, 77, 0, 1507, 1508, 5, 520, 0, 0, 1508, 1509, 3, 338, 169, 0, 1509, 213, 1, 0, 0, 0, 1510, 1511, 5, 375, 0, 0, 1511, 1512, 5, 519, 0, 0, 1512, 1513, 3, 216, 108, 0, 1513, 1514, 5, 520, 0, 0, 1514, 215, 1, 0, 0, 0, 1515, 1516, 3, 218, 109, 0, 1516, 1517, 5, 519, 0, 0, 1517, 1522, 3, 220, 110, 0, 1518, 1519, 5, 523, 0, 0, 1519, 1521, 3, 220, 110, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1526, 5, 520, 0, 0, 1526, 217, 1, 0, 0, 0, 1527, 1528, 7, 21, 0, 0, 1528, 219, 1, 0, 0, 0, 1529, 1530, 5, 375, 0, 0, 1530, 1545, 3, 242, 121, 0, 1531, 1545, 3, 224, 112, 0, 1532, 1545, 3, 326, 163, 0, 1533, 1534, 5, 449, 0, 0, 1534, 1535, 5, 539, 0, 0, 1535, 1536, 5, 375, 0, 0, 1536, 1545, 3, 242, 121, 0, 1537, 1538, 5, 501, 0, 0, 1538, 1539, 5, 539, 0, 0, 1539, 1545, 3, 224, 112, 0, 1540, 1541, 3, 222, 111, 0, 1541, 1542, 5, 539, 0, 0, 1542, 1543, 3, 326, 163, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1529, 1, 0, 0, 0, 1544, 1531, 1, 0, 0, 0, 1544, 1532, 1, 0, 0, 0, 1544, 1533, 1, 0, 0, 0, 1544, 1537, 1, 0, 0, 0, 1544, 1540, 1, 0, 0, 0, 1545, 221, 1, 0, 0, 0, 1546, 1547, 7, 22, 0, 0, 1547, 223, 1, 0, 0, 0, 1548, 1549, 5, 454, 0, 0, 1549, 1550, 5, 519, 0, 0, 1550, 1551, 3, 54, 27, 0, 1551, 1552, 5, 520, 0, 0, 1552, 225, 1, 0, 0, 0, 1553, 1560, 5, 255, 0, 0, 1554, 1561, 3, 288, 144, 0, 1555, 1558, 3, 58, 29, 0, 1556, 1557, 5, 508, 0, 0, 1557, 1559, 3, 58, 29, 0, 1558, 1556, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1554, 1, 0, 0, 0, 1560, 1555, 1, 0, 0, 0, 1561, 1565, 1, 0, 0, 0, 1562, 1563, 5, 415, 0, 0, 1563, 1565, 3, 60, 30, 0, 1564, 1553, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1565, 227, 1, 0, 0, 0, 1566, 1569, 5, 433, 0, 0, 1567, 1570, 3, 288, 144, 0, 1568, 1570, 3, 58, 29, 0, 1569, 1567, 1, 0, 0, 0, 1569, 1568, 1, 0, 0, 0, 1570, 229, 1, 0, 0, 0, 1571, 1572, 5, 160, 0, 0, 1572, 1573, 5, 34, 0, 0, 1573, 1578, 3, 232, 116, 0, 1574, 1575, 5, 523, 0, 0, 1575, 1577, 3, 232, 116, 0, 1576, 1574, 1, 0, 0, 0, 1577, 1580, 1, 0, 0, 0, 1578, 1576, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 231, 1, 0, 0, 0, 1580, 1578, 1, 0, 0, 0, 1581, 1622, 3, 54, 27, 0, 1582, 1622, 3, 238, 119, 0, 1583, 1584, 5, 519, 0, 0, 1584, 1622, 5, 520, 0, 0, 1585, 1586, 5, 519, 0, 0, 1586, 1591, 3, 286, 143, 0, 1587, 1588, 5, 523, 0, 0, 1588, 1590, 3, 286, 143, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 5, 520, 0, 0, 1595, 1622, 1, 0, 0, 0, 1596, 1597, 3, 236, 118, 0, 1597, 1598, 5, 519, 0, 0, 1598, 1603, 3, 286, 143, 0, 1599, 1600, 5, 523, 0, 0, 1600, 1602, 3, 286, 143, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1605, 1, 0, 0, 0, 1603, 1601, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1606, 1607, 5, 520, 0, 0, 1607, 1622, 1, 0, 0, 0, 1608, 1609, 3, 234, 117, 0, 1609, 1610, 5, 519, 0, 0, 1610, 1615, 3, 232, 116, 0, 1611, 1612, 5, 523, 0, 0, 1612, 1614, 3, 232, 116, 0, 1613, 1611, 1, 0, 0, 0, 1614, 1617, 1, 0, 0, 0, 1615, 1613, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1618, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1618, 1619, 5, 520, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1622, 3, 286, 143, 0, 1621, 1581, 1, 0, 0, 0, 1621, 1582, 1, 0, 0, 0, 1621, 1583, 1, 0, 0, 0, 1621, 1585, 1, 0, 0, 0, 1621, 1596, 1, 0, 0, 0, 1621, 1608, 1, 0, 0, 0, 1621, 1620, 1, 0, 0, 0, 1622, 233, 1, 0, 0, 0, 1623, 1624, 5, 161, 0, 0, 1624, 1625, 5, 496, 0, 0, 1625, 235, 1, 0, 0, 0, 1626, 1627, 7, 23, 0, 0, 1627, 237, 1, 0, 0, 0, 1628, 1629, 3, 240, 120, 0, 1629, 1630, 5, 519, 0, 0, 1630, 1631, 3, 242, 121, 0, 1631, 1632, 5, 523, 0, 0, 1632, 1633, 3, 326, 163, 0, 1633, 1634, 5, 520, 0, 0, 1634, 239, 1, 0, 0, 0, 1635, 1636, 7, 24, 0, 0, 1636, 241, 1, 0, 0, 0, 1637, 1638, 3, 372, 186, 0, 1638, 243, 1, 0, 0, 0, 1639, 1640, 5, 164, 0, 0, 1640, 1641, 3, 288, 144, 0, 1641, 245, 1, 0, 0, 0, 1642, 1643, 5, 435, 0, 0, 1643, 1648, 3, 248, 124, 0, 1644, 1645, 5, 523, 0, 0, 1645, 1647, 3, 248, 124, 0, 1646, 1644, 1, 0, 0, 0, 1647, 1650, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 247, 1, 0, 0, 0, 1650, 1648, 1, 0, 0, 0, 1651, 1652, 3, 340, 170, 0, 1652, 1653, 5, 17, 0, 0, 1653, 1654, 3, 250, 125, 0, 1654, 249, 1, 0, 0, 0, 1655, 1657, 3, 340, 170, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 5, 519, 0, 0, 1659, 1661, 3, 260, 130, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1664, 3, 254, 127, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 276, 138, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1669, 5, 520, 0, 0, 1669, 251, 1, 0, 0, 0, 1670, 1671, 5, 215, 0, 0, 1671, 1673, 5, 519, 0, 0, 1672, 1674, 3, 260, 130, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 1, 0, 0, 0, 1675, 1677, 3, 254, 127, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1680, 3, 264, 132, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 1, 0, 0, 0, 1681, 1683, 3, 270, 135, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1685, 1, 0, 0, 0, 1684, 1686, 3, 272, 136, 0, 1685, 1684, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1688, 1, 0, 0, 0, 1687, 1689, 3, 266, 133, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 3, 274, 137, 0, 1691, 1696, 5, 520, 0, 0, 1692, 1694, 5, 17, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 3, 348, 174, 0, 1696, 1693, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 253, 1, 0, 0, 0, 1698, 1699, 5, 260, 0, 0, 1699, 1700, 5, 34, 0, 0, 1700, 1705, 3, 256, 128, 0, 1701, 1702, 5, 523, 0, 0, 1702, 1704, 3, 256, 128, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 255, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1711, 3, 54, 27, 0, 1709, 1711, 3, 296, 148, 0, 1710, 1708, 1, 0, 0, 0, 1710, 1709, 1, 0, 0, 0, 1711, 1713, 1, 0, 0, 0, 1712, 1714, 7, 25, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1716, 5, 479, 0, 0, 1716, 1718, 7, 26, 0, 0, 1717, 1715, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 257, 1, 0, 0, 0, 1719, 1722, 5, 206, 0, 0, 1720, 1723, 5, 5, 0, 0, 1721, 1723, 3, 286, 143, 0, 1722, 1720, 1, 0, 0, 0, 1722, 1721, 1, 0, 0, 0, 1723, 259, 1, 0, 0, 0, 1724, 1725, 5, 270, 0, 0, 1725, 1728, 5, 34, 0, 0, 1726, 1729, 3, 54, 27, 0, 1727, 1729, 3, 300, 150, 0, 1728, 1726, 1, 0, 0, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1737, 1, 0, 0, 0, 1730, 1733, 5, 523, 0, 0, 1731, 1734, 3, 54, 27, 0, 1732, 1734, 3, 300, 150, 0, 1733, 1731, 1, 0, 0, 0, 1733, 1732, 1, 0, 0, 0, 1734, 1736, 1, 0, 0, 0, 1735, 1730, 1, 0, 0, 0, 1736, 1739, 1, 0, 0, 0, 1737, 1735, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 261, 1, 0, 0, 0, 1739, 1737, 1, 0, 0, 0, 1740, 1757, 5, 530, 0, 0, 1741, 1757, 5, 533, 0, 0, 1742, 1757, 5, 538, 0, 0, 1743, 1744, 5, 521, 0, 0, 1744, 1745, 5, 541, 0, 0, 1745, 1746, 5, 523, 0, 0, 1746, 1747, 5, 541, 0, 0, 1747, 1757, 5, 522, 0, 0, 1748, 1749, 5, 521, 0, 0, 1749, 1750, 5, 541, 0, 0, 1750, 1751, 5, 523, 0, 0, 1751, 1757, 5, 522, 0, 0, 1752, 1753, 5, 521, 0, 0, 1753, 1754, 5, 523, 0, 0, 1754, 1755, 5, 541, 0, 0, 1755, 1757, 5, 522, 0, 0, 1756, 1740, 1, 0, 0, 0, 1756, 1741, 1, 0, 0, 0, 1756, 1742, 1, 0, 0, 0, 1756, 1743, 1, 0, 0, 0, 1756, 1748, 1, 0, 0, 0, 1756, 1752, 1, 0, 0, 0, 1757, 263, 1, 0, 0, 0, 1758, 1759, 5, 217, 0, 0, 1759, 1764, 3, 190, 95, 0, 1760, 1761, 5, 523, 0, 0, 1761, 1763, 3, 190, 95, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1766, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 265, 1, 0, 0, 0, 1766, 1764, 1, 0, 0, 0, 1767, 1768, 5, 273, 0, 0, 1768, 1770, 5, 519, 0, 0, 1769, 1771, 3, 268, 134, 0, 1770, 1769, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1770, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 5, 520, 0, 0, 1775, 1777, 3, 284, 142, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 267, 1, 0, 0, 0, 1778, 1780, 3, 350, 175, 0, 1779, 1781, 3, 262, 131, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 269, 1, 0, 0, 0, 1782, 1783, 5, 5, 0, 0, 1783, 1784, 5, 324, 0, 0, 1784, 1785, 5, 274, 0, 0, 1785, 1791, 5, 212, 0, 0, 1786, 1787, 5, 256, 0, 0, 1787, 1788, 5, 323, 0, 0, 1788, 1789, 5, 274, 0, 0, 1789, 1791, 5, 212, 0, 0, 1790, 1782, 1, 0, 0, 0, 1790, 1786, 1, 0, 0, 0, 1791, 271, 1, 0, 0, 0, 1792, 1793, 5, 441, 0, 0, 1793, 1794, 5, 212, 0, 0, 1794, 1795, 5, 345, 0, 0, 1795, 1796, 5, 481, 0, 0, 1796, 1797, 5, 470, 0, 0, 1797, 1817, 5, 323, 0, 0, 1798, 1799, 5, 441, 0, 0, 1799, 1800, 5, 212, 0, 0, 1800, 1801, 5, 345, 0, 0, 1801, 1802, 5, 390, 0, 0, 1802, 1803, 5, 239, 0, 0, 1803, 1817, 5, 323, 0, 0, 1804, 1805, 5, 441, 0, 0, 1805, 1806, 5, 212, 0, 0, 1806, 1807, 5, 345, 0, 0, 1807, 1808, 5, 390, 0, 0, 1808, 1809, 5, 470, 0, 0, 1809, 1817, 3, 350, 175, 0, 1810, 1811, 5, 441, 0, 0, 1811, 1812, 5, 212, 0, 0, 1812, 1813, 5, 345, 0, 0, 1813, 1814, 5, 390, 0, 0, 1814, 1815, 5, 460, 0, 0, 1815, 1817, 3, 350, 175, 0, 1816, 1792, 1, 0, 0, 0, 1816, 1798, 1, 0, 0, 0, 1816, 1804, 1, 0, 0, 0, 1816, 1810, 1, 0, 0, 0, 1817, 273, 1, 0, 0, 0, 1818, 1819, 5, 105, 0, 0, 1819, 1824, 3, 190, 95, 0, 1820, 1821, 5, 523, 0, 0, 1821, 1823, 3, 190, 95, 0, 1822, 1820, 1, 0, 0, 0, 1823, 1826, 1, 0, 0, 0, 1824, 1822, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 275, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1827, 1828, 5, 294, 0, 0, 1828, 1829, 5, 27, 0, 0, 1829, 1830, 3, 326, 163, 0, 1830, 1831, 3, 278, 139, 0, 1831, 1843, 1, 0, 0, 0, 1832, 1833, 7, 27, 0, 0, 1833, 1834, 5, 27, 0, 0, 1834, 1835, 3, 280, 140, 0, 1835, 1836, 5, 10, 0, 0, 1836, 1837, 3, 282, 141, 0, 1837, 1843, 1, 0, 0, 0, 1838, 1839, 5, 324, 0, 0, 1839, 1840, 5, 27, 0, 0, 1840, 1841, 5, 541, 0, 0, 1841, 1843, 3, 278, 139, 0, 1842, 1827, 1, 0, 0, 0, 1842, 1832, 1, 0, 0, 0, 1842, 1838, 1, 0, 0, 0, 1843, 277, 1, 0, 0, 0, 1844, 1845, 5, 483, 0, 0, 1845, 1846, 5, 10, 0, 0, 1846, 1847, 5, 76, 0, 0, 1847, 1848, 5, 323, 0, 0, 1848, 279, 1, 0, 0, 0, 1849, 1850, 5, 404, 0, 0, 1850, 1856, 5, 483, 0, 0, 1851, 1852, 5, 541, 0, 0, 1852, 1856, 5, 483, 0, 0, 1853, 1854, 5, 76, 0, 0, 1854, 1856, 5, 323, 0, 0, 1855, 1849, 1, 0, 0, 0, 1855, 1851, 1, 0, 0, 0, 1855, 1853, 1, 0, 0, 0, 1856, 281, 1, 0, 0, 0, 1857, 1858, 5, 76, 0, 0, 1858, 1864, 5, 323, 0, 0, 1859, 1860, 5, 541, 0, 0, 1860, 1864, 5, 146, 0, 0, 1861, 1862, 5, 404, 0, 0, 1862, 1864, 5, 146, 0, 0, 1863, 1857, 1, 0, 0, 0, 1863, 1859, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 283, 1, 0, 0, 0, 1865, 1866, 5, 437, 0, 0, 1866, 1867, 3, 326, 163, 0, 1867, 285, 1, 0, 0, 0, 1868, 1869, 3, 288, 144, 0, 1869, 287, 1, 0, 0, 0, 1870, 1871, 6, 144, -1, 0, 1871, 1872, 5, 243, 0, 0, 1872, 1883, 3, 288, 144, 6, 1873, 1874, 5, 133, 0, 0, 1874, 1875, 5, 519, 0, 0, 1875, 1876, 3, 164, 82, 0, 1876, 1877, 5, 520, 0, 0, 1877, 1883, 1, 0, 0, 0, 1878, 1880, 3, 296, 148, 0, 1879, 1881, 3, 290, 145, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1883, 1, 0, 0, 0, 1882, 1870, 1, 0, 0, 0, 1882, 1873, 1, 0, 0, 0, 1882, 1878, 1, 0, 0, 0, 1883, 1898, 1, 0, 0, 0, 1884, 1885, 10, 3, 0, 0, 1885, 1886, 5, 10, 0, 0, 1886, 1897, 3, 288, 144, 4, 1887, 1888, 10, 2, 0, 0, 1888, 1889, 5, 259, 0, 0, 1889, 1897, 3, 288, 144, 3, 1890, 1891, 10, 1, 0, 0, 1891, 1893, 5, 185, 0, 0, 1892, 1894, 5, 243, 0, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1897, 7, 28, 0, 0, 1896, 1884, 1, 0, 0, 0, 1896, 1887, 1, 0, 0, 0, 1896, 1890, 1, 0, 0, 0, 1897, 1900, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 289, 1, 0, 0, 0, 1900, 1898, 1, 0, 0, 0, 1901, 1903, 5, 243, 0, 0, 1902, 1901, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1906, 5, 27, 0, 0, 1905, 1907, 7, 29, 0, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 3, 296, 148, 0, 1909, 1910, 5, 10, 0, 0, 1910, 1911, 3, 296, 148, 0, 1911, 1976, 1, 0, 0, 0, 1912, 1914, 5, 243, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 5, 171, 0, 0, 1916, 1917, 5, 519, 0, 0, 1917, 1922, 3, 286, 143, 0, 1918, 1919, 5, 523, 0, 0, 1919, 1921, 3, 286, 143, 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, 1925, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1926, 5, 520, 0, 0, 1926, 1976, 1, 0, 0, 0, 1927, 1929, 5, 243, 0, 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 5, 171, 0, 0, 1931, 1932, 5, 519, 0, 0, 1932, 1933, 3, 164, 82, 0, 1933, 1934, 5, 520, 0, 0, 1934, 1976, 1, 0, 0, 0, 1935, 1936, 5, 133, 0, 0, 1936, 1937, 5, 519, 0, 0, 1937, 1938, 3, 164, 82, 0, 1938, 1939, 5, 520, 0, 0, 1939, 1976, 1, 0, 0, 0, 1940, 1942, 5, 243, 0, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 5, 320, 0, 0, 1944, 1976, 3, 296, 148, 0, 1945, 1976, 3, 294, 147, 0, 1946, 1948, 5, 185, 0, 0, 1947, 1949, 5, 243, 0, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1976, 7, 28, 0, 0, 1951, 1953, 5, 185, 0, 0, 1952, 1954, 5, 243, 0, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 5, 113, 0, 0, 1956, 1957, 5, 152, 0, 0, 1957, 1976, 3, 296, 148, 0, 1958, 1960, 5, 243, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1962, 5, 344, 0, 0, 1962, 1963, 5, 390, 0, 0, 1963, 1966, 3, 296, 148, 0, 1964, 1965, 5, 127, 0, 0, 1965, 1967, 3, 404, 202, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1976, 1, 0, 0, 0, 1968, 1969, 5, 185, 0, 0, 1969, 1973, 5, 187, 0, 0, 1970, 1974, 5, 416, 0, 0, 1971, 1974, 5, 13, 0, 0, 1972, 1974, 3, 348, 174, 0, 1973, 1970, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1902, 1, 0, 0, 0, 1975, 1913, 1, 0, 0, 0, 1975, 1928, 1, 0, 0, 0, 1975, 1935, 1, 0, 0, 0, 1975, 1941, 1, 0, 0, 0, 1975, 1945, 1, 0, 0, 0, 1975, 1946, 1, 0, 0, 0, 1975, 1951, 1, 0, 0, 0, 1975, 1959, 1, 0, 0, 0, 1975, 1968, 1, 0, 0, 0, 1976, 291, 1, 0, 0, 0, 1977, 1986, 5, 246, 0, 0, 1978, 1979, 5, 121, 0, 0, 1979, 1986, 5, 13, 0, 0, 1980, 1981, 5, 121, 0, 0, 1981, 1986, 3, 372, 186, 0, 1982, 1986, 5, 399, 0, 0, 1983, 1986, 5, 140, 0, 0, 1984, 1986, 5, 407, 0, 0, 1985, 1977, 1, 0, 0, 0, 1985, 1978, 1, 0, 0, 0, 1985, 1980, 1, 0, 0, 0, 1985, 1982, 1, 0, 0, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1984, 1, 0, 0, 0, 1986, 293, 1, 0, 0, 0, 1987, 1989, 5, 243, 0, 0, 1988, 1987, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 5, 204, 0, 0, 1991, 2005, 7, 30, 0, 0, 1992, 1993, 5, 519, 0, 0, 1993, 2006, 5, 520, 0, 0, 1994, 1995, 5, 519, 0, 0, 1995, 2000, 3, 286, 143, 0, 1996, 1997, 5, 523, 0, 0, 1997, 1999, 3, 286, 143, 0, 1998, 1996, 1, 0, 0, 0, 1999, 2002, 1, 0, 0, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2003, 2004, 5, 520, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 1992, 1, 0, 0, 0, 2005, 1994, 1, 0, 0, 0, 2006, 2017, 1, 0, 0, 0, 2007, 2009, 5, 243, 0, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 5, 204, 0, 0, 2011, 2014, 3, 296, 148, 0, 2012, 2013, 5, 127, 0, 0, 2013, 2015, 3, 404, 202, 0, 2014, 2012, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2017, 1, 0, 0, 0, 2016, 1988, 1, 0, 0, 0, 2016, 2008, 1, 0, 0, 0, 2017, 295, 1, 0, 0, 0, 2018, 2019, 6, 148, -1, 0, 2019, 2023, 3, 300, 150, 0, 2020, 2021, 7, 31, 0, 0, 2021, 2023, 3, 296, 148, 7, 2022, 2018, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2023, 2045, 1, 0, 0, 0, 2024, 2025, 10, 6, 0, 0, 2025, 2026, 7, 32, 0, 0, 2026, 2044, 3, 296, 148, 7, 2027, 2028, 10, 5, 0, 0, 2028, 2029, 7, 33, 0, 0, 2029, 2044, 3, 296, 148, 6, 2030, 2031, 10, 4, 0, 0, 2031, 2032, 5, 514, 0, 0, 2032, 2044, 3, 296, 148, 5, 2033, 2034, 10, 3, 0, 0, 2034, 2035, 5, 515, 0, 0, 2035, 2044, 3, 296, 148, 4, 2036, 2037, 10, 2, 0, 0, 2037, 2038, 5, 513, 0, 0, 2038, 2044, 3, 296, 148, 3, 2039, 2040, 10, 1, 0, 0, 2040, 2041, 3, 392, 196, 0, 2041, 2042, 3, 296, 148, 2, 2042, 2044, 1, 0, 0, 0, 2043, 2024, 1, 0, 0, 0, 2043, 2027, 1, 0, 0, 0, 2043, 2030, 1, 0, 0, 0, 2043, 2033, 1, 0, 0, 0, 2043, 2036, 1, 0, 0, 0, 2043, 2039, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 297, 1, 0, 0, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2068, 3, 418, 209, 0, 2049, 2068, 3, 306, 153, 0, 2050, 2051, 3, 308, 154, 0, 2051, 2063, 5, 519, 0, 0, 2052, 2054, 3, 410, 205, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2060, 3, 310, 155, 0, 2056, 2057, 5, 523, 0, 0, 2057, 2059, 3, 310, 155, 0, 2058, 2056, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2063, 2053, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 5, 520, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 2048, 1, 0, 0, 0, 2067, 2049, 1, 0, 0, 0, 2067, 2050, 1, 0, 0, 0, 2068, 299, 1, 0, 0, 0, 2069, 2070, 6, 150, -1, 0, 2070, 2072, 5, 40, 0, 0, 2071, 2073, 3, 354, 177, 0, 2072, 2071, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2077, 5, 120, 0, 0, 2077, 2079, 3, 286, 143, 0, 2078, 2076, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 5, 122, 0, 0, 2081, 2152, 1, 0, 0, 0, 2082, 2083, 5, 40, 0, 0, 2083, 2085, 3, 286, 143, 0, 2084, 2086, 3, 354, 177, 0, 2085, 2084, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2090, 5, 120, 0, 0, 2090, 2092, 3, 286, 143, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2094, 5, 122, 0, 0, 2094, 2152, 1, 0, 0, 0, 2095, 2096, 5, 41, 0, 0, 2096, 2097, 5, 519, 0, 0, 2097, 2098, 3, 286, 143, 0, 2098, 2099, 5, 17, 0, 0, 2099, 2100, 3, 62, 31, 0, 2100, 2101, 5, 520, 0, 0, 2101, 2152, 1, 0, 0, 0, 2102, 2103, 5, 460, 0, 0, 2103, 2104, 5, 519, 0, 0, 2104, 2107, 3, 286, 143, 0, 2105, 2106, 5, 464, 0, 0, 2106, 2108, 5, 479, 0, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 5, 520, 0, 0, 2110, 2152, 1, 0, 0, 0, 2111, 2112, 5, 470, 0, 0, 2112, 2113, 5, 519, 0, 0, 2113, 2116, 3, 286, 143, 0, 2114, 2115, 5, 464, 0, 0, 2115, 2117, 5, 479, 0, 0, 2116, 2114, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 5, 520, 0, 0, 2119, 2152, 1, 0, 0, 0, 2120, 2121, 5, 283, 0, 0, 2121, 2122, 5, 519, 0, 0, 2122, 2123, 3, 296, 148, 0, 2123, 2124, 5, 171, 0, 0, 2124, 2125, 3, 296, 148, 0, 2125, 2126, 5, 520, 0, 0, 2126, 2152, 1, 0, 0, 0, 2127, 2152, 3, 400, 200, 0, 2128, 2152, 5, 530, 0, 0, 2129, 2130, 3, 372, 186, 0, 2130, 2131, 5, 516, 0, 0, 2131, 2132, 5, 530, 0, 0, 2132, 2152, 1, 0, 0, 0, 2133, 2134, 5, 519, 0, 0, 2134, 2135, 3, 164, 82, 0, 2135, 2136, 5, 520, 0, 0, 2136, 2152, 1, 0, 0, 0, 2137, 2152, 3, 298, 149, 0, 2138, 2152, 3, 56, 28, 0, 2139, 2152, 3, 320, 160, 0, 2140, 2141, 5, 519, 0, 0, 2141, 2142, 3, 286, 143, 0, 2142, 2143, 5, 520, 0, 0, 2143, 2152, 1, 0, 0, 0, 2144, 2145, 5, 139, 0, 0, 2145, 2146, 5, 519, 0, 0, 2146, 2147, 3, 348, 174, 0, 2147, 2148, 5, 152, 0, 0, 2148, 2149, 3, 296, 148, 0, 2149, 2150, 5, 520, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2069, 1, 0, 0, 0, 2151, 2082, 1, 0, 0, 0, 2151, 2095, 1, 0, 0, 0, 2151, 2102, 1, 0, 0, 0, 2151, 2111, 1, 0, 0, 0, 2151, 2120, 1, 0, 0, 0, 2151, 2127, 1, 0, 0, 0, 2151, 2128, 1, 0, 0, 0, 2151, 2129, 1, 0, 0, 0, 2151, 2133, 1, 0, 0, 0, 2151, 2137, 1, 0, 0, 0, 2151, 2138, 1, 0, 0, 0, 2151, 2139, 1, 0, 0, 0, 2151, 2140, 1, 0, 0, 0, 2151, 2144, 1, 0, 0, 0, 2152, 2160, 1, 0, 0, 0, 2153, 2154, 10, 5, 0, 0, 2154, 2155, 5, 517, 0, 0, 2155, 2156, 3, 296, 148, 0, 2156, 2157, 5, 518, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2153, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 301, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 3, 372, 186, 0, 2164, 303, 1, 0, 0, 0, 2165, 2170, 3, 422, 211, 0, 2166, 2170, 3, 418, 209, 0, 2167, 2170, 3, 420, 210, 0, 2168, 2170, 3, 372, 186, 0, 2169, 2165, 1, 0, 0, 0, 2169, 2166, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2168, 1, 0, 0, 0, 2170, 305, 1, 0, 0, 0, 2171, 2172, 3, 420, 210, 0, 2172, 2173, 5, 540, 0, 0, 2173, 2176, 1, 0, 0, 0, 2174, 2176, 3, 326, 163, 0, 2175, 2171, 1, 0, 0, 0, 2175, 2174, 1, 0, 0, 0, 2176, 307, 1, 0, 0, 0, 2177, 2180, 3, 422, 211, 0, 2178, 2180, 3, 372, 186, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2178, 1, 0, 0, 0, 2180, 309, 1, 0, 0, 0, 2181, 2190, 3, 416, 208, 0, 2182, 2190, 3, 414, 207, 0, 2183, 2190, 3, 412, 206, 0, 2184, 2190, 3, 286, 143, 0, 2185, 2190, 3, 312, 156, 0, 2186, 2190, 3, 314, 157, 0, 2187, 2190, 3, 316, 158, 0, 2188, 2190, 3, 318, 159, 0, 2189, 2181, 1, 0, 0, 0, 2189, 2182, 1, 0, 0, 0, 2189, 2183, 1, 0, 0, 0, 2189, 2184, 1, 0, 0, 0, 2189, 2185, 1, 0, 0, 0, 2189, 2186, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 311, 1, 0, 0, 0, 2191, 2195, 3, 56, 28, 0, 2192, 2193, 3, 372, 186, 0, 2193, 2194, 3, 62, 31, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2192, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2205, 1, 0, 0, 0, 2197, 2202, 3, 372, 186, 0, 2198, 2202, 5, 246, 0, 0, 2199, 2200, 5, 104, 0, 0, 2200, 2202, 3, 296, 148, 0, 2201, 2197, 1, 0, 0, 0, 2201, 2198, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 5, 255, 0, 0, 2204, 2206, 5, 121, 0, 0, 2205, 2201, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2215, 1, 0, 0, 0, 2207, 2212, 3, 372, 186, 0, 2208, 2212, 5, 246, 0, 0, 2209, 2210, 5, 104, 0, 0, 2210, 2212, 3, 296, 148, 0, 2211, 2207, 1, 0, 0, 0, 2211, 2208, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2214, 5, 255, 0, 0, 2214, 2216, 3, 372, 186, 0, 2215, 2211, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 313, 1, 0, 0, 0, 2217, 2229, 3, 56, 28, 0, 2218, 2224, 5, 438, 0, 0, 2219, 2221, 5, 436, 0, 0, 2220, 2222, 3, 372, 186, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2224, 1, 0, 0, 0, 2223, 2218, 1, 0, 0, 0, 2223, 2219, 1, 0, 0, 0, 2224, 2226, 1, 0, 0, 0, 2225, 2227, 5, 13, 0, 0, 2226, 2225, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2230, 3, 372, 186, 0, 2229, 2223, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2235, 1, 0, 0, 0, 2231, 2232, 3, 292, 146, 0, 2232, 2233, 5, 255, 0, 0, 2233, 2234, 5, 121, 0, 0, 2234, 2236, 1, 0, 0, 0, 2235, 2231, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2241, 1, 0, 0, 0, 2237, 2238, 3, 292, 146, 0, 2238, 2239, 5, 255, 0, 0, 2239, 2240, 3, 372, 186, 0, 2240, 2242, 1, 0, 0, 0, 2241, 2237, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 315, 1, 0, 0, 0, 2243, 2245, 5, 469, 0, 0, 2244, 2243, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2248, 3, 56, 28, 0, 2247, 2249, 5, 416, 0, 0, 2248, 2247, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2260, 1, 0, 0, 0, 2250, 2261, 3, 296, 148, 0, 2251, 2252, 5, 187, 0, 0, 2252, 2256, 5, 519, 0, 0, 2253, 2255, 3, 296, 148, 0, 2254, 2253, 1, 0, 0, 0, 2255, 2258, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2261, 5, 520, 0, 0, 2260, 2250, 1, 0, 0, 0, 2260, 2251, 1, 0, 0, 0, 2261, 2263, 1, 0, 0, 0, 2262, 2244, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2273, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2270, 5, 246, 0, 0, 2268, 2270, 3, 372, 186, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 5, 255, 0, 0, 2272, 2274, 5, 246, 0, 0, 2273, 2269, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 317, 1, 0, 0, 0, 2275, 2277, 3, 296, 148, 0, 2276, 2275, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2287, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2281, 2284, 5, 246, 0, 0, 2282, 2284, 3, 372, 186, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2282, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 5, 255, 0, 0, 2286, 2288, 5, 246, 0, 0, 2287, 2283, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 319, 1, 0, 0, 0, 2289, 2290, 3, 372, 186, 0, 2290, 321, 1, 0, 0, 0, 2291, 2292, 3, 348, 174, 0, 2292, 323, 1, 0, 0, 0, 2293, 2296, 3, 348, 174, 0, 2294, 2296, 3, 320, 160, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2294, 1, 0, 0, 0, 2296, 325, 1, 0, 0, 0, 2297, 2300, 5, 183, 0, 0, 2298, 2301, 3, 328, 164, 0, 2299, 2301, 3, 332, 166, 0, 2300, 2298, 1, 0, 0, 0, 2300, 2299, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2301, 327, 1, 0, 0, 0, 2302, 2304, 3, 330, 165, 0, 2303, 2305, 3, 334, 167, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 329, 1, 0, 0, 0, 2306, 2307, 3, 336, 168, 0, 2307, 2308, 3, 414, 207, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2306, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 331, 1, 0, 0, 0, 2313, 2316, 3, 334, 167, 0, 2314, 2317, 3, 330, 165, 0, 2315, 2317, 3, 334, 167, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 333, 1, 0, 0, 0, 2318, 2319, 3, 336, 168, 0, 2319, 2320, 3, 414, 207, 0, 2320, 2321, 5, 390, 0, 0, 2321, 2322, 3, 414, 207, 0, 2322, 335, 1, 0, 0, 0, 2323, 2325, 7, 34, 0, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2329, 7, 35, 0, 0, 2327, 2329, 5, 540, 0, 0, 2328, 2324, 1, 0, 0, 0, 2328, 2327, 1, 0, 0, 0, 2329, 337, 1, 0, 0, 0, 2330, 2332, 5, 17, 0, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2335, 3, 348, 174, 0, 2334, 2336, 3, 344, 172, 0, 2335, 2334, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 339, 1, 0, 0, 0, 2337, 2338, 3, 348, 174, 0, 2338, 2339, 3, 342, 171, 0, 2339, 341, 1, 0, 0, 0, 2340, 2341, 5, 223, 0, 0, 2341, 2343, 3, 348, 174, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2348, 1, 0, 0, 0, 2347, 2342, 1, 0, 0, 0, 2347, 2346, 1, 0, 0, 0, 2348, 343, 1, 0, 0, 0, 2349, 2350, 5, 519, 0, 0, 2350, 2351, 3, 346, 173, 0, 2351, 2352, 5, 520, 0, 0, 2352, 345, 1, 0, 0, 0, 2353, 2358, 3, 348, 174, 0, 2354, 2355, 5, 523, 0, 0, 2355, 2357, 3, 348, 174, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 347, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2365, 3, 350, 175, 0, 2362, 2365, 3, 352, 176, 0, 2363, 2365, 3, 424, 212, 0, 2364, 2361, 1, 0, 0, 0, 2364, 2362, 1, 0, 0, 0, 2364, 2363, 1, 0, 0, 0, 2365, 349, 1, 0, 0, 0, 2366, 2367, 7, 36, 0, 0, 2367, 351, 1, 0, 0, 0, 2368, 2369, 5, 540, 0, 0, 2369, 353, 1, 0, 0, 0, 2370, 2371, 5, 431, 0, 0, 2371, 2372, 3, 286, 143, 0, 2372, 2373, 5, 378, 0, 0, 2373, 2374, 3, 286, 143, 0, 2374, 355, 1, 0, 0, 0, 2375, 2376, 3, 348, 174, 0, 2376, 357, 1, 0, 0, 0, 2377, 2378, 3, 348, 174, 0, 2378, 359, 1, 0, 0, 0, 2379, 2382, 3, 348, 174, 0, 2380, 2381, 5, 516, 0, 0, 2381, 2383, 3, 348, 174, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 361, 1, 0, 0, 0, 2384, 2387, 3, 348, 174, 0, 2385, 2386, 5, 516, 0, 0, 2386, 2388, 3, 348, 174, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 363, 1, 0, 0, 0, 2389, 2392, 3, 348, 174, 0, 2390, 2391, 5, 516, 0, 0, 2391, 2393, 3, 348, 174, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2402, 1, 0, 0, 0, 2394, 2395, 3, 348, 174, 0, 2395, 2396, 5, 516, 0, 0, 2396, 2399, 3, 348, 174, 0, 2397, 2398, 5, 516, 0, 0, 2398, 2400, 3, 348, 174, 0, 2399, 2397, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2402, 1, 0, 0, 0, 2401, 2389, 1, 0, 0, 0, 2401, 2394, 1, 0, 0, 0, 2402, 365, 1, 0, 0, 0, 2403, 2406, 3, 348, 174, 0, 2404, 2405, 5, 516, 0, 0, 2405, 2407, 3, 348, 174, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2416, 1, 0, 0, 0, 2408, 2409, 3, 348, 174, 0, 2409, 2410, 5, 516, 0, 0, 2410, 2413, 3, 348, 174, 0, 2411, 2412, 5, 516, 0, 0, 2412, 2414, 3, 348, 174, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2403, 1, 0, 0, 0, 2415, 2408, 1, 0, 0, 0, 2416, 367, 1, 0, 0, 0, 2417, 2420, 3, 348, 174, 0, 2418, 2419, 5, 516, 0, 0, 2419, 2421, 3, 348, 174, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2430, 1, 0, 0, 0, 2422, 2423, 3, 348, 174, 0, 2423, 2424, 5, 516, 0, 0, 2424, 2427, 3, 348, 174, 0, 2425, 2426, 5, 516, 0, 0, 2426, 2428, 3, 348, 174, 0, 2427, 2425, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2430, 1, 0, 0, 0, 2429, 2417, 1, 0, 0, 0, 2429, 2422, 1, 0, 0, 0, 2430, 369, 1, 0, 0, 0, 2431, 2434, 3, 348, 174, 0, 2432, 2433, 5, 516, 0, 0, 2433, 2435, 3, 348, 174, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2444, 1, 0, 0, 0, 2436, 2437, 3, 348, 174, 0, 2437, 2438, 5, 516, 0, 0, 2438, 2441, 3, 348, 174, 0, 2439, 2440, 5, 516, 0, 0, 2440, 2442, 3, 348, 174, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2444, 1, 0, 0, 0, 2443, 2431, 1, 0, 0, 0, 2443, 2436, 1, 0, 0, 0, 2444, 371, 1, 0, 0, 0, 2445, 2450, 3, 348, 174, 0, 2446, 2447, 5, 516, 0, 0, 2447, 2449, 3, 348, 174, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2452, 1, 0, 0, 0, 2450, 2448, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 373, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 2458, 3, 348, 174, 0, 2454, 2455, 5, 516, 0, 0, 2455, 2457, 3, 348, 174, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2460, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2467, 1, 0, 0, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2462, 4, 187, 16, 0, 2462, 2463, 3, 348, 174, 0, 2463, 2464, 5, 516, 0, 0, 2464, 2465, 3, 52, 26, 0, 2465, 2467, 1, 0, 0, 0, 2466, 2453, 1, 0, 0, 0, 2466, 2461, 1, 0, 0, 0, 2467, 375, 1, 0, 0, 0, 2468, 2469, 5, 436, 0, 0, 2469, 2470, 3, 382, 191, 0, 2470, 377, 1, 0, 0, 0, 2471, 2472, 5, 168, 0, 0, 2472, 2473, 5, 243, 0, 0, 2473, 2474, 5, 133, 0, 0, 2474, 379, 1, 0, 0, 0, 2475, 2476, 5, 168, 0, 0, 2476, 2477, 5, 133, 0, 0, 2477, 381, 1, 0, 0, 0, 2478, 2479, 5, 519, 0, 0, 2479, 2484, 3, 384, 192, 0, 2480, 2481, 5, 523, 0, 0, 2481, 2483, 3, 384, 192, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2486, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2487, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2487, 2488, 5, 520, 0, 0, 2488, 383, 1, 0, 0, 0, 2489, 2494, 3, 386, 193, 0, 2490, 2492, 5, 508, 0, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2495, 3, 388, 194, 0, 2494, 2491, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 385, 1, 0, 0, 0, 2496, 2500, 3, 348, 174, 0, 2497, 2500, 3, 320, 160, 0, 2498, 2500, 5, 540, 0, 0, 2499, 2496, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2499, 2498, 1, 0, 0, 0, 2500, 387, 1, 0, 0, 0, 2501, 2506, 5, 541, 0, 0, 2502, 2506, 5, 542, 0, 0, 2503, 2506, 3, 408, 204, 0, 2504, 2506, 5, 540, 0, 0, 2505, 2501, 1, 0, 0, 0, 2505, 2502, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2504, 1, 0, 0, 0, 2506, 389, 1, 0, 0, 0, 2507, 2514, 5, 10, 0, 0, 2508, 2509, 5, 514, 0, 0, 2509, 2514, 5, 514, 0, 0, 2510, 2514, 5, 259, 0, 0, 2511, 2512, 5, 513, 0, 0, 2512, 2514, 5, 513, 0, 0, 2513, 2507, 1, 0, 0, 0, 2513, 2508, 1, 0, 0, 0, 2513, 2510, 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2514, 391, 1, 0, 0, 0, 2515, 2530, 5, 508, 0, 0, 2516, 2530, 5, 509, 0, 0, 2517, 2530, 5, 510, 0, 0, 2518, 2519, 5, 510, 0, 0, 2519, 2530, 5, 508, 0, 0, 2520, 2521, 5, 509, 0, 0, 2521, 2530, 5, 508, 0, 0, 2522, 2523, 5, 510, 0, 0, 2523, 2530, 5, 509, 0, 0, 2524, 2525, 5, 511, 0, 0, 2525, 2530, 5, 508, 0, 0, 2526, 2527, 5, 510, 0, 0, 2527, 2528, 5, 508, 0, 0, 2528, 2530, 5, 509, 0, 0, 2529, 2515, 1, 0, 0, 0, 2529, 2516, 1, 0, 0, 0, 2529, 2517, 1, 0, 0, 0, 2529, 2518, 1, 0, 0, 0, 2529, 2520, 1, 0, 0, 0, 2529, 2522, 1, 0, 0, 0, 2529, 2524, 1, 0, 0, 0, 2529, 2526, 1, 0, 0, 0, 2530, 393, 1, 0, 0, 0, 2531, 2532, 5, 510, 0, 0, 2532, 2539, 5, 510, 0, 0, 2533, 2534, 5, 509, 0, 0, 2534, 2539, 5, 509, 0, 0, 2535, 2539, 5, 514, 0, 0, 2536, 2539, 5, 515, 0, 0, 2537, 2539, 5, 513, 0, 0, 2538, 2531, 1, 0, 0, 0, 2538, 2533, 1, 0, 0, 0, 2538, 2535, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2537, 1, 0, 0, 0, 2539, 395, 1, 0, 0, 0, 2540, 2541, 7, 37, 0, 0, 2541, 397, 1, 0, 0, 0, 2542, 2543, 7, 38, 0, 0, 2543, 399, 1, 0, 0, 0, 2544, 2559, 3, 326, 163, 0, 2545, 2559, 3, 402, 201, 0, 2546, 2559, 3, 404, 202, 0, 2547, 2549, 5, 532, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2559, 3, 406, 203, 0, 2551, 2559, 3, 408, 204, 0, 2552, 2559, 5, 542, 0, 0, 2553, 2559, 5, 543, 0, 0, 2554, 2556, 5, 243, 0, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2559, 5, 246, 0, 0, 2558, 2544, 1, 0, 0, 0, 2558, 2545, 1, 0, 0, 0, 2558, 2546, 1, 0, 0, 0, 2558, 2548, 1, 0, 0, 0, 2558, 2551, 1, 0, 0, 0, 2558, 2552, 1, 0, 0, 0, 2558, 2553, 1, 0, 0, 0, 2558, 2555, 1, 0, 0, 0, 2559, 401, 1, 0, 0, 0, 2560, 2561, 3, 412, 206, 0, 2561, 2562, 3, 404, 202, 0, 2562, 403, 1, 0, 0, 0, 2563, 2564, 5, 540, 0, 0, 2564, 405, 1, 0, 0, 0, 2565, 2566, 5, 541, 0, 0, 2566, 407, 1, 0, 0, 0, 2567, 2568, 7, 39, 0, 0, 2568, 409, 1, 0, 0, 0, 2569, 2570, 7, 40, 0, 0, 2570, 411, 1, 0, 0, 0, 2571, 2572, 7, 41, 0, 0, 2572, 413, 1, 0, 0, 0, 2573, 2574, 7, 42, 0, 0, 2574, 415, 1, 0, 0, 0, 2575, 2576, 7, 43, 0, 0, 2576, 417, 1, 0, 0, 0, 2577, 2578, 7, 44, 0, 0, 2578, 419, 1, 0, 0, 0, 2579, 2580, 7, 45, 0, 0, 2580, 421, 1, 0, 0, 0, 2581, 2582, 7, 46, 0, 0, 2582, 423, 1, 0, 0, 0, 2583, 2584, 7, 47, 0, 0, 2584, 425, 1, 0, 0, 0, 314, 429, 436, 439, 453, 471, 475, 484, 489, 496, 507, 516, 528, 531, 538, 541, 549, 553, 558, 561, 568, 576, 580, 592, 600, 604, 636, 639, 644, 648, 652, 656, 665, 670, 674, 678, 683, 686, 690, 695, 701, 706, 711, 715, 719, 726, 733, 741, 749, 753, 757, 761, 765, 769, 773, 777, 781, 783, 793, 801, 825, 839, 844, 848, 854, 857, 860, 867, 870, 879, 891, 915, 927, 932, 936, 944, 948, 954, 964, 969, 975, 979, 983, 987, 996, 1000, 1007, 1010, 1020, 1028, 1036, 1040, 1055, 1074, 1085, 1089, 1096, 1101, 1107, 1111, 1118, 1122, 1126, 1130, 1138, 1142, 1147, 1153, 1159, 1162, 1166, 1177, 1186, 1193, 1204, 1216, 1231, 1234, 1238, 1241, 1243, 1248, 1252, 1255, 1259, 1268, 1277, 1287, 1292, 1303, 1306, 1309, 1312, 1315, 1321, 1325, 1334, 1341, 1344, 1348, 1353, 1356, 1360, 1369, 1376, 1379, 1383, 1386, 1388, 1395, 1400, 1416, 1427, 1432, 1440, 1443, 1446, 1451, 1453, 1455, 1460, 1463, 1467, 1471, 1475, 1484, 1495, 1522, 1544, 1558, 1560, 1564, 1569, 1578, 1591, 1603, 1615, 1621, 1648, 1656, 1660, 1663, 1666, 1673, 1676, 1679, 1682, 1685, 1688, 1693, 1696, 1705, 1710, 1713, 1717, 1722, 1728, 1733, 1737, 1756, 1764, 1772, 1776, 1780, 1790, 1816, 1824, 1842, 1855, 1863, 1880, 1882, 1893, 1896, 1898, 1902, 1906, 1913, 1922, 1928, 1941, 1948, 1953, 1959, 1966, 1973, 1975, 1985, 1988, 2000, 2005, 2008, 2014, 2016, 2022, 2043, 2045, 2053, 2060, 2063, 2067, 2074, 2078, 2087, 2091, 2107, 2116, 2151, 2160, 2169, 2175, 2179, 2189, 2195, 2201, 2205, 2211, 2215, 2221, 2223, 2226, 2229, 2235, 2241, 2244, 2248, 2256, 2260, 2264, 2269, 2273, 2278, 2283, 2287, 2295, 2300, 2304, 2311, 2316, 2324, 2328, 2331, 2335, 2344, 2347, 2358, 2364, 2382, 2387, 2392, 2399, 2401, 2406, 2413, 2415, 2420, 2427, 2429, 2434, 2441, 2443, 2450, 2458, 2466, 2484, 2491, 2494, 2499, 2505, 2513, 2529, 2538, 2548, 2555, 2558] \ No newline at end of file +[4, 1, 544, 2531, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 1, 3, 1, 412, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 426, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 442, 8, 3, 1, 4, 1, 4, 3, 4, 446, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 455, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 460, 8, 6, 1, 7, 1, 7, 1, 7, 5, 7, 465, 8, 7, 10, 7, 12, 7, 468, 9, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 478, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 485, 8, 10, 10, 10, 12, 10, 488, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 499, 8, 11, 1, 11, 3, 11, 502, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 509, 8, 11, 1, 11, 3, 11, 512, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 520, 8, 11, 1, 11, 1, 11, 3, 11, 524, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 529, 8, 11, 1, 11, 3, 11, 532, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 539, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 547, 8, 14, 1, 15, 1, 15, 3, 15, 551, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 563, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 571, 8, 17, 1, 17, 1, 17, 3, 17, 575, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 607, 8, 17, 1, 18, 3, 18, 610, 8, 18, 1, 18, 4, 18, 613, 8, 18, 11, 18, 12, 18, 614, 1, 19, 1, 19, 3, 19, 619, 8, 19, 1, 20, 1, 20, 3, 20, 623, 8, 20, 1, 20, 1, 20, 3, 20, 627, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 634, 8, 20, 10, 20, 12, 20, 637, 9, 20, 1, 20, 1, 20, 3, 20, 641, 8, 20, 1, 20, 1, 20, 3, 20, 645, 8, 20, 1, 20, 1, 20, 3, 20, 649, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 654, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 662, 8, 20, 10, 20, 12, 20, 665, 9, 20, 1, 20, 1, 20, 3, 20, 669, 8, 20, 1, 20, 1, 20, 3, 20, 673, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 678, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 684, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 689, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 694, 8, 23, 1, 23, 1, 23, 3, 23, 698, 8, 23, 1, 24, 1, 24, 3, 24, 702, 8, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 3, 26, 709, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 722, 8, 29, 10, 29, 12, 29, 725, 9, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 3, 30, 736, 8, 30, 1, 30, 1, 30, 3, 30, 740, 8, 30, 1, 30, 1, 30, 3, 30, 744, 8, 30, 1, 30, 1, 30, 3, 30, 748, 8, 30, 1, 30, 1, 30, 3, 30, 752, 8, 30, 1, 30, 1, 30, 3, 30, 756, 8, 30, 1, 30, 1, 30, 3, 30, 760, 8, 30, 1, 30, 1, 30, 3, 30, 764, 8, 30, 3, 30, 766, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 776, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 784, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 806, 8, 36, 10, 36, 12, 36, 809, 9, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 820, 8, 36, 10, 36, 12, 36, 823, 9, 36, 1, 36, 1, 36, 3, 36, 827, 8, 36, 1, 37, 1, 37, 3, 37, 831, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 837, 8, 37, 1, 37, 3, 37, 840, 8, 37, 1, 37, 3, 37, 843, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 850, 8, 38, 1, 38, 3, 38, 853, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 860, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 870, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 889, 8, 44, 10, 44, 12, 44, 892, 9, 44, 1, 44, 1, 44, 3, 44, 896, 8, 44, 1, 45, 1, 45, 3, 45, 900, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 906, 8, 46, 10, 46, 12, 46, 909, 9, 46, 1, 46, 3, 46, 912, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 918, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 3, 49, 928, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 933, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 3, 50, 939, 8, 50, 1, 50, 1, 50, 3, 50, 943, 8, 50, 1, 50, 1, 50, 3, 50, 947, 8, 50, 1, 50, 1, 50, 3, 50, 951, 8, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 960, 8, 51, 1, 51, 1, 51, 3, 51, 964, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 971, 8, 51, 1, 51, 3, 51, 974, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 982, 8, 52, 10, 52, 12, 52, 985, 9, 52, 1, 53, 1, 53, 1, 53, 3, 53, 990, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 998, 8, 53, 1, 54, 1, 54, 3, 54, 1002, 8, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1018, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1034, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1045, 8, 61, 1, 61, 1, 61, 3, 61, 1049, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1056, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 1061, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 1067, 8, 63, 1, 63, 1, 63, 3, 63, 1071, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1078, 8, 64, 1, 64, 1, 64, 3, 64, 1082, 8, 64, 1, 65, 1, 65, 3, 65, 1086, 8, 65, 1, 65, 1, 65, 3, 65, 1090, 8, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1098, 8, 66, 1, 66, 1, 66, 3, 66, 1102, 8, 66, 1, 66, 1, 66, 1, 67, 3, 67, 1107, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1113, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1120, 8, 68, 1, 68, 3, 68, 1123, 8, 68, 1, 68, 1, 68, 3, 68, 1127, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 1133, 8, 69, 10, 69, 12, 69, 1136, 9, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 1142, 8, 70, 10, 70, 12, 70, 1145, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 3, 71, 1151, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 1160, 8, 72, 11, 72, 12, 72, 1161, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 4, 73, 1172, 8, 73, 11, 73, 12, 73, 1173, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1189, 8, 74, 1, 74, 3, 74, 1192, 8, 74, 1, 74, 1, 74, 3, 74, 1196, 8, 74, 1, 74, 3, 74, 1199, 8, 74, 3, 74, 1201, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1206, 8, 74, 1, 74, 1, 74, 3, 74, 1210, 8, 74, 1, 74, 3, 74, 1213, 8, 74, 5, 74, 1215, 8, 74, 10, 74, 12, 74, 1218, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1224, 8, 75, 10, 75, 12, 75, 1227, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1233, 8, 76, 10, 76, 12, 76, 1236, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1243, 8, 77, 10, 77, 12, 77, 1246, 9, 77, 1, 77, 1, 77, 3, 77, 1250, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 3, 78, 1259, 8, 78, 1, 78, 3, 78, 1262, 8, 78, 1, 78, 3, 78, 1265, 8, 78, 1, 78, 3, 78, 1268, 8, 78, 1, 78, 3, 78, 1271, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1277, 8, 78, 1, 79, 1, 79, 3, 79, 1281, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 5, 80, 1288, 8, 80, 10, 80, 12, 80, 1291, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1297, 8, 81, 1, 81, 3, 81, 1300, 8, 81, 1, 81, 1, 81, 3, 81, 1304, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1309, 8, 81, 1, 81, 3, 81, 1312, 8, 81, 1, 81, 1, 81, 3, 81, 1316, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 3, 85, 1325, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1332, 8, 86, 1, 86, 3, 86, 1335, 8, 86, 1, 86, 1, 86, 3, 86, 1339, 8, 86, 1, 86, 3, 86, 1342, 8, 86, 3, 86, 1344, 8, 86, 1, 87, 1, 87, 1, 87, 5, 87, 1349, 8, 87, 10, 87, 12, 87, 1352, 9, 87, 1, 87, 1, 87, 3, 87, 1356, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1372, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1381, 8, 90, 10, 90, 12, 90, 1384, 9, 90, 1, 90, 1, 90, 3, 90, 1388, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1396, 8, 90, 1, 90, 3, 90, 1399, 8, 90, 1, 90, 3, 90, 1402, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1407, 8, 90, 5, 90, 1409, 8, 90, 10, 90, 12, 90, 1412, 9, 90, 1, 91, 1, 91, 3, 91, 1416, 8, 91, 1, 92, 3, 92, 1419, 8, 92, 1, 92, 1, 92, 3, 92, 1423, 8, 92, 1, 92, 1, 92, 3, 92, 1427, 8, 92, 1, 92, 1, 92, 3, 92, 1431, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 3, 94, 1440, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1451, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 1474, 8, 98, 10, 98, 12, 98, 1477, 9, 98, 1, 98, 1, 98, 1, 99, 1, 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, 3, 100, 1498, 8, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1512, 8, 103, 3, 103, 1514, 8, 103, 1, 103, 1, 103, 3, 103, 1518, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 1523, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1530, 8, 105, 10, 105, 12, 105, 1533, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1543, 8, 106, 10, 106, 12, 106, 1546, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1555, 8, 106, 10, 106, 12, 106, 1558, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1568, 8, 106, 10, 106, 12, 106, 1571, 9, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1576, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1594, 8, 110, 10, 110, 12, 110, 1597, 9, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 3, 112, 1604, 8, 112, 1, 112, 1, 112, 3, 112, 1608, 8, 112, 1, 112, 3, 112, 1611, 8, 112, 1, 112, 3, 112, 1614, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 1621, 8, 113, 1, 113, 3, 113, 1624, 8, 113, 1, 113, 3, 113, 1627, 8, 113, 1, 113, 3, 113, 1630, 8, 113, 1, 113, 3, 113, 1633, 8, 113, 1, 113, 3, 113, 1636, 8, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1641, 8, 113, 1, 113, 3, 113, 1644, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1651, 8, 114, 10, 114, 12, 114, 1654, 9, 114, 1, 115, 1, 115, 3, 115, 1658, 8, 115, 1, 115, 3, 115, 1661, 8, 115, 1, 115, 1, 115, 3, 115, 1665, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1670, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1676, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1681, 8, 117, 5, 117, 1683, 8, 117, 10, 117, 12, 117, 1686, 9, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1704, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1710, 8, 119, 10, 119, 12, 119, 1713, 9, 119, 1, 120, 1, 120, 1, 120, 4, 120, 1718, 8, 120, 11, 120, 12, 120, 1719, 1, 120, 1, 120, 3, 120, 1724, 8, 120, 1, 121, 1, 121, 3, 121, 1728, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1738, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1764, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1770, 8, 124, 10, 124, 12, 124, 1773, 9, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1790, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1803, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1811, 8, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1828, 8, 131, 3, 131, 1830, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1841, 8, 131, 1, 131, 5, 131, 1844, 8, 131, 10, 131, 12, 131, 1847, 9, 131, 1, 132, 3, 132, 1850, 8, 132, 1, 132, 1, 132, 3, 132, 1854, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1861, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1868, 8, 132, 10, 132, 12, 132, 1871, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1876, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1889, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1896, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1901, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1907, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1914, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1921, 8, 132, 3, 132, 1923, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1933, 8, 133, 1, 134, 3, 134, 1936, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1946, 8, 134, 10, 134, 12, 134, 1949, 9, 134, 1, 134, 1, 134, 3, 134, 1953, 8, 134, 1, 134, 3, 134, 1956, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1962, 8, 134, 3, 134, 1964, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1970, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1991, 8, 135, 10, 135, 12, 135, 1994, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2001, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 2006, 8, 136, 10, 136, 12, 136, 2009, 9, 136, 3, 136, 2011, 8, 136, 1, 136, 1, 136, 3, 136, 2015, 8, 136, 1, 137, 1, 137, 1, 137, 4, 137, 2020, 8, 137, 11, 137, 12, 137, 2021, 1, 137, 1, 137, 3, 137, 2026, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 2033, 8, 137, 11, 137, 12, 137, 2034, 1, 137, 1, 137, 3, 137, 2039, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2055, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2064, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2099, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 2106, 8, 137, 10, 137, 12, 137, 2109, 9, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2117, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2123, 8, 140, 1, 141, 1, 141, 3, 141, 2127, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2137, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2143, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2149, 8, 143, 1, 143, 1, 143, 3, 143, 2153, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2159, 8, 143, 1, 143, 1, 143, 3, 143, 2163, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2169, 8, 144, 3, 144, 2171, 8, 144, 1, 144, 3, 144, 2174, 8, 144, 1, 144, 3, 144, 2177, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2183, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2189, 8, 144, 1, 145, 3, 145, 2192, 8, 145, 1, 145, 1, 145, 3, 145, 2196, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 2202, 8, 145, 10, 145, 12, 145, 2205, 9, 145, 1, 145, 3, 145, 2208, 8, 145, 5, 145, 2210, 8, 145, 10, 145, 12, 145, 2213, 9, 145, 1, 145, 1, 145, 3, 145, 2217, 8, 145, 1, 145, 1, 145, 3, 145, 2221, 8, 145, 1, 146, 5, 146, 2224, 8, 146, 10, 146, 12, 146, 2227, 9, 146, 1, 146, 1, 146, 3, 146, 2231, 8, 146, 1, 146, 1, 146, 3, 146, 2235, 8, 146, 1, 147, 1, 147, 1, 148, 1, 148, 3, 148, 2241, 8, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2246, 8, 149, 1, 150, 1, 150, 3, 150, 2250, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 2255, 8, 151, 11, 151, 12, 151, 2256, 1, 152, 1, 152, 1, 152, 3, 152, 2262, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 2270, 8, 154, 1, 154, 1, 154, 3, 154, 2274, 8, 154, 1, 155, 3, 155, 2277, 8, 155, 1, 155, 1, 155, 3, 155, 2281, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 4, 157, 2288, 8, 157, 11, 157, 12, 157, 2289, 1, 157, 3, 157, 2293, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 5, 159, 2302, 8, 159, 10, 159, 12, 159, 2305, 9, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2310, 8, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2328, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2333, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2338, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2345, 8, 168, 3, 168, 2347, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2352, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2359, 8, 169, 3, 169, 2361, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2366, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2373, 8, 170, 3, 170, 2375, 8, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2380, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2387, 8, 171, 3, 171, 2389, 8, 171, 1, 172, 1, 172, 1, 172, 5, 172, 2394, 8, 172, 10, 172, 12, 172, 2397, 9, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2402, 8, 173, 10, 173, 12, 173, 2405, 9, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2412, 8, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 2428, 8, 177, 10, 177, 12, 177, 2431, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 2437, 8, 178, 1, 178, 3, 178, 2440, 8, 178, 1, 179, 1, 179, 1, 179, 3, 179, 2445, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2451, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2459, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2475, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2484, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2494, 8, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2501, 8, 186, 1, 186, 3, 186, 2504, 8, 186, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 0, 5, 148, 180, 262, 270, 274, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 48, 2, 0, 109, 109, 453, 453, 3, 0, 45, 45, 128, 128, 190, 190, 4, 0, 42, 42, 90, 90, 425, 425, 467, 467, 2, 0, 444, 444, 450, 450, 2, 0, 152, 152, 171, 171, 2, 0, 440, 440, 492, 492, 2, 0, 485, 488, 490, 490, 3, 0, 32, 32, 91, 91, 246, 246, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 179, 180, 346, 346, 362, 362, 380, 380, 383, 383, 389, 389, 419, 420, 2, 0, 436, 436, 438, 438, 4, 0, 101, 102, 115, 115, 144, 144, 248, 248, 2, 0, 13, 13, 233, 233, 2, 0, 458, 458, 465, 465, 3, 0, 5, 5, 272, 272, 447, 447, 3, 0, 268, 268, 458, 458, 465, 465, 3, 0, 428, 428, 461, 461, 480, 480, 3, 0, 332, 332, 468, 468, 484, 484, 2, 0, 443, 443, 493, 493, 2, 0, 184, 184, 267, 267, 3, 0, 130, 130, 181, 181, 405, 405, 4, 0, 153, 153, 175, 175, 203, 203, 319, 319, 3, 0, 448, 448, 462, 462, 502, 502, 4, 0, 252, 252, 449, 449, 497, 499, 501, 501, 2, 0, 74, 74, 322, 322, 3, 0, 462, 462, 495, 495, 502, 502, 2, 0, 442, 442, 453, 453, 2, 0, 460, 460, 470, 470, 2, 0, 294, 294, 324, 324, 4, 0, 140, 140, 246, 246, 399, 399, 407, 407, 2, 0, 19, 19, 371, 371, 2, 0, 5, 5, 11, 11, 2, 0, 512, 512, 532, 533, 4, 0, 455, 455, 530, 530, 534, 534, 537, 537, 2, 0, 532, 533, 535, 535, 1, 0, 532, 533, 1, 0, 541, 542, 2, 0, 541, 541, 544, 544, 4, 0, 455, 455, 530, 530, 532, 534, 536, 537, 3, 0, 243, 243, 511, 512, 532, 533, 2, 0, 140, 140, 399, 399, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 166, 166, 224, 224, 231, 231, 336, 336, 439, 439, 473, 473, 475, 475, 491, 491, 505, 505, 15, 0, 97, 97, 166, 166, 224, 224, 231, 231, 336, 336, 430, 430, 439, 439, 445, 445, 451, 452, 457, 457, 463, 463, 473, 478, 491, 491, 494, 494, 505, 506, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 202, 202, 209, 210, 391, 391, 416, 416, 530, 530, 3, 0, 78, 78, 84, 85, 209, 210, 2, 0, 91, 91, 380, 381, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 161, 161, 166, 166, 168, 168, 188, 189, 191, 196, 199, 199, 201, 201, 203, 203, 207, 207, 211, 211, 216, 216, 222, 222, 224, 225, 231, 231, 245, 245, 247, 247, 266, 266, 278, 278, 283, 283, 285, 285, 295, 295, 319, 319, 323, 325, 336, 336, 359, 360, 366, 366, 369, 369, 382, 382, 397, 397, 400, 401, 411, 411, 422, 423, 439, 439, 472, 472, 491, 491, 505, 505, 1, 0, 440, 507, 2790, 0, 401, 1, 0, 0, 0, 2, 411, 1, 0, 0, 0, 4, 425, 1, 0, 0, 0, 6, 441, 1, 0, 0, 0, 8, 445, 1, 0, 0, 0, 10, 447, 1, 0, 0, 0, 12, 450, 1, 0, 0, 0, 14, 461, 1, 0, 0, 0, 16, 469, 1, 0, 0, 0, 18, 477, 1, 0, 0, 0, 20, 479, 1, 0, 0, 0, 22, 531, 1, 0, 0, 0, 24, 533, 1, 0, 0, 0, 26, 540, 1, 0, 0, 0, 28, 544, 1, 0, 0, 0, 30, 548, 1, 0, 0, 0, 32, 552, 1, 0, 0, 0, 34, 606, 1, 0, 0, 0, 36, 612, 1, 0, 0, 0, 38, 618, 1, 0, 0, 0, 40, 620, 1, 0, 0, 0, 42, 674, 1, 0, 0, 0, 44, 688, 1, 0, 0, 0, 46, 690, 1, 0, 0, 0, 48, 701, 1, 0, 0, 0, 50, 703, 1, 0, 0, 0, 52, 708, 1, 0, 0, 0, 54, 710, 1, 0, 0, 0, 56, 715, 1, 0, 0, 0, 58, 717, 1, 0, 0, 0, 60, 765, 1, 0, 0, 0, 62, 767, 1, 0, 0, 0, 64, 771, 1, 0, 0, 0, 66, 779, 1, 0, 0, 0, 68, 787, 1, 0, 0, 0, 70, 791, 1, 0, 0, 0, 72, 826, 1, 0, 0, 0, 74, 842, 1, 0, 0, 0, 76, 844, 1, 0, 0, 0, 78, 854, 1, 0, 0, 0, 80, 861, 1, 0, 0, 0, 82, 869, 1, 0, 0, 0, 84, 877, 1, 0, 0, 0, 86, 879, 1, 0, 0, 0, 88, 895, 1, 0, 0, 0, 90, 899, 1, 0, 0, 0, 92, 901, 1, 0, 0, 0, 94, 917, 1, 0, 0, 0, 96, 919, 1, 0, 0, 0, 98, 924, 1, 0, 0, 0, 100, 936, 1, 0, 0, 0, 102, 955, 1, 0, 0, 0, 104, 975, 1, 0, 0, 0, 106, 986, 1, 0, 0, 0, 108, 999, 1, 0, 0, 0, 110, 1006, 1, 0, 0, 0, 112, 1009, 1, 0, 0, 0, 114, 1019, 1, 0, 0, 0, 116, 1023, 1, 0, 0, 0, 118, 1027, 1, 0, 0, 0, 120, 1035, 1, 0, 0, 0, 122, 1040, 1, 0, 0, 0, 124, 1057, 1, 0, 0, 0, 126, 1064, 1, 0, 0, 0, 128, 1074, 1, 0, 0, 0, 130, 1083, 1, 0, 0, 0, 132, 1093, 1, 0, 0, 0, 134, 1112, 1, 0, 0, 0, 136, 1114, 1, 0, 0, 0, 138, 1128, 1, 0, 0, 0, 140, 1137, 1, 0, 0, 0, 142, 1150, 1, 0, 0, 0, 144, 1152, 1, 0, 0, 0, 146, 1165, 1, 0, 0, 0, 148, 1200, 1, 0, 0, 0, 150, 1219, 1, 0, 0, 0, 152, 1228, 1, 0, 0, 0, 154, 1237, 1, 0, 0, 0, 156, 1276, 1, 0, 0, 0, 158, 1278, 1, 0, 0, 0, 160, 1284, 1, 0, 0, 0, 162, 1315, 1, 0, 0, 0, 164, 1317, 1, 0, 0, 0, 166, 1319, 1, 0, 0, 0, 168, 1321, 1, 0, 0, 0, 170, 1324, 1, 0, 0, 0, 172, 1343, 1, 0, 0, 0, 174, 1355, 1, 0, 0, 0, 176, 1371, 1, 0, 0, 0, 178, 1373, 1, 0, 0, 0, 180, 1387, 1, 0, 0, 0, 182, 1413, 1, 0, 0, 0, 184, 1430, 1, 0, 0, 0, 186, 1432, 1, 0, 0, 0, 188, 1450, 1, 0, 0, 0, 190, 1452, 1, 0, 0, 0, 192, 1458, 1, 0, 0, 0, 194, 1463, 1, 0, 0, 0, 196, 1468, 1, 0, 0, 0, 198, 1480, 1, 0, 0, 0, 200, 1497, 1, 0, 0, 0, 202, 1499, 1, 0, 0, 0, 204, 1501, 1, 0, 0, 0, 206, 1517, 1, 0, 0, 0, 208, 1519, 1, 0, 0, 0, 210, 1524, 1, 0, 0, 0, 212, 1575, 1, 0, 0, 0, 214, 1577, 1, 0, 0, 0, 216, 1584, 1, 0, 0, 0, 218, 1586, 1, 0, 0, 0, 220, 1589, 1, 0, 0, 0, 222, 1598, 1, 0, 0, 0, 224, 1603, 1, 0, 0, 0, 226, 1617, 1, 0, 0, 0, 228, 1645, 1, 0, 0, 0, 230, 1657, 1, 0, 0, 0, 232, 1666, 1, 0, 0, 0, 234, 1671, 1, 0, 0, 0, 236, 1703, 1, 0, 0, 0, 238, 1705, 1, 0, 0, 0, 240, 1714, 1, 0, 0, 0, 242, 1725, 1, 0, 0, 0, 244, 1737, 1, 0, 0, 0, 246, 1763, 1, 0, 0, 0, 248, 1765, 1, 0, 0, 0, 250, 1789, 1, 0, 0, 0, 252, 1791, 1, 0, 0, 0, 254, 1802, 1, 0, 0, 0, 256, 1810, 1, 0, 0, 0, 258, 1812, 1, 0, 0, 0, 260, 1815, 1, 0, 0, 0, 262, 1829, 1, 0, 0, 0, 264, 1922, 1, 0, 0, 0, 266, 1932, 1, 0, 0, 0, 268, 1963, 1, 0, 0, 0, 270, 1969, 1, 0, 0, 0, 272, 2014, 1, 0, 0, 0, 274, 2098, 1, 0, 0, 0, 276, 2110, 1, 0, 0, 0, 278, 2116, 1, 0, 0, 0, 280, 2122, 1, 0, 0, 0, 282, 2126, 1, 0, 0, 0, 284, 2136, 1, 0, 0, 0, 286, 2138, 1, 0, 0, 0, 288, 2164, 1, 0, 0, 0, 290, 2211, 1, 0, 0, 0, 292, 2225, 1, 0, 0, 0, 294, 2236, 1, 0, 0, 0, 296, 2240, 1, 0, 0, 0, 298, 2242, 1, 0, 0, 0, 300, 2247, 1, 0, 0, 0, 302, 2254, 1, 0, 0, 0, 304, 2258, 1, 0, 0, 0, 306, 2263, 1, 0, 0, 0, 308, 2273, 1, 0, 0, 0, 310, 2276, 1, 0, 0, 0, 312, 2282, 1, 0, 0, 0, 314, 2292, 1, 0, 0, 0, 316, 2294, 1, 0, 0, 0, 318, 2298, 1, 0, 0, 0, 320, 2309, 1, 0, 0, 0, 322, 2311, 1, 0, 0, 0, 324, 2313, 1, 0, 0, 0, 326, 2315, 1, 0, 0, 0, 328, 2320, 1, 0, 0, 0, 330, 2322, 1, 0, 0, 0, 332, 2324, 1, 0, 0, 0, 334, 2329, 1, 0, 0, 0, 336, 2346, 1, 0, 0, 0, 338, 2360, 1, 0, 0, 0, 340, 2374, 1, 0, 0, 0, 342, 2388, 1, 0, 0, 0, 344, 2390, 1, 0, 0, 0, 346, 2411, 1, 0, 0, 0, 348, 2413, 1, 0, 0, 0, 350, 2416, 1, 0, 0, 0, 352, 2420, 1, 0, 0, 0, 354, 2423, 1, 0, 0, 0, 356, 2434, 1, 0, 0, 0, 358, 2444, 1, 0, 0, 0, 360, 2450, 1, 0, 0, 0, 362, 2458, 1, 0, 0, 0, 364, 2474, 1, 0, 0, 0, 366, 2483, 1, 0, 0, 0, 368, 2485, 1, 0, 0, 0, 370, 2487, 1, 0, 0, 0, 372, 2503, 1, 0, 0, 0, 374, 2505, 1, 0, 0, 0, 376, 2508, 1, 0, 0, 0, 378, 2510, 1, 0, 0, 0, 380, 2512, 1, 0, 0, 0, 382, 2514, 1, 0, 0, 0, 384, 2516, 1, 0, 0, 0, 386, 2518, 1, 0, 0, 0, 388, 2520, 1, 0, 0, 0, 390, 2522, 1, 0, 0, 0, 392, 2524, 1, 0, 0, 0, 394, 2526, 1, 0, 0, 0, 396, 2528, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 524, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 412, 5, 524, 0, 0, 411, 406, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 3, 1, 0, 0, 0, 413, 426, 3, 6, 3, 0, 414, 426, 3, 8, 4, 0, 415, 426, 3, 10, 5, 0, 416, 426, 3, 12, 6, 0, 417, 426, 3, 18, 9, 0, 418, 426, 3, 22, 11, 0, 419, 426, 3, 24, 12, 0, 420, 426, 3, 26, 13, 0, 421, 426, 3, 28, 14, 0, 422, 426, 3, 30, 15, 0, 423, 426, 3, 32, 16, 0, 424, 426, 3, 34, 17, 0, 425, 413, 1, 0, 0, 0, 425, 414, 1, 0, 0, 0, 425, 415, 1, 0, 0, 0, 425, 416, 1, 0, 0, 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, 5, 1, 0, 0, 0, 427, 442, 3, 38, 19, 0, 428, 442, 3, 98, 49, 0, 429, 442, 3, 100, 50, 0, 430, 442, 3, 102, 51, 0, 431, 442, 3, 96, 48, 0, 432, 442, 3, 106, 53, 0, 433, 442, 3, 118, 59, 0, 434, 442, 3, 120, 60, 0, 435, 442, 3, 122, 61, 0, 436, 442, 3, 124, 62, 0, 437, 442, 3, 126, 63, 0, 438, 442, 3, 128, 64, 0, 439, 442, 3, 130, 65, 0, 440, 442, 3, 132, 66, 0, 441, 427, 1, 0, 0, 0, 441, 428, 1, 0, 0, 0, 441, 429, 1, 0, 0, 0, 441, 430, 1, 0, 0, 0, 441, 431, 1, 0, 0, 0, 441, 432, 1, 0, 0, 0, 441, 433, 1, 0, 0, 0, 441, 434, 1, 0, 0, 0, 441, 435, 1, 0, 0, 0, 441, 436, 1, 0, 0, 0, 441, 437, 1, 0, 0, 0, 441, 438, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 441, 440, 1, 0, 0, 0, 442, 7, 1, 0, 0, 0, 443, 446, 3, 148, 74, 0, 444, 446, 3, 134, 67, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 9, 1, 0, 0, 0, 447, 448, 7, 0, 0, 0, 448, 449, 3, 338, 169, 0, 449, 11, 1, 0, 0, 0, 450, 454, 5, 135, 0, 0, 451, 455, 3, 14, 7, 0, 452, 453, 5, 482, 0, 0, 453, 455, 5, 147, 0, 0, 454, 451, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 459, 1, 0, 0, 0, 456, 460, 3, 8, 4, 0, 457, 460, 3, 136, 68, 0, 458, 460, 3, 146, 73, 0, 459, 456, 1, 0, 0, 0, 459, 457, 1, 0, 0, 0, 459, 458, 1, 0, 0, 0, 460, 13, 1, 0, 0, 0, 461, 466, 3, 16, 8, 0, 462, 463, 5, 523, 0, 0, 463, 465, 3, 16, 8, 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, 15, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 470, 7, 1, 0, 0, 470, 17, 1, 0, 0, 0, 471, 472, 5, 413, 0, 0, 472, 473, 5, 444, 0, 0, 473, 478, 3, 328, 164, 0, 474, 475, 5, 413, 0, 0, 475, 478, 3, 332, 166, 0, 476, 478, 3, 20, 10, 0, 477, 471, 1, 0, 0, 0, 477, 474, 1, 0, 0, 0, 477, 476, 1, 0, 0, 0, 478, 19, 1, 0, 0, 0, 479, 480, 5, 413, 0, 0, 480, 481, 5, 229, 0, 0, 481, 486, 3, 344, 172, 0, 482, 483, 5, 523, 0, 0, 483, 485, 3, 344, 172, 0, 484, 482, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 21, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 490, 5, 343, 0, 0, 490, 532, 7, 2, 0, 0, 491, 492, 5, 343, 0, 0, 492, 493, 5, 76, 0, 0, 493, 532, 7, 3, 0, 0, 494, 495, 5, 343, 0, 0, 495, 498, 5, 376, 0, 0, 496, 497, 7, 4, 0, 0, 497, 499, 3, 332, 166, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 3, 268, 134, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 532, 1, 0, 0, 0, 503, 504, 5, 343, 0, 0, 504, 505, 5, 58, 0, 0, 505, 508, 7, 4, 0, 0, 506, 509, 3, 340, 170, 0, 507, 509, 3, 338, 169, 0, 508, 506, 1, 0, 0, 0, 508, 507, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 512, 3, 268, 134, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 532, 1, 0, 0, 0, 513, 514, 5, 343, 0, 0, 514, 519, 5, 72, 0, 0, 515, 516, 5, 375, 0, 0, 516, 520, 3, 338, 169, 0, 517, 518, 5, 504, 0, 0, 518, 520, 3, 340, 170, 0, 519, 515, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 532, 1, 0, 0, 0, 521, 523, 5, 343, 0, 0, 522, 524, 5, 414, 0, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 532, 5, 155, 0, 0, 526, 528, 5, 343, 0, 0, 527, 529, 5, 153, 0, 0, 528, 527, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 532, 5, 229, 0, 0, 531, 489, 1, 0, 0, 0, 531, 491, 1, 0, 0, 0, 531, 494, 1, 0, 0, 0, 531, 503, 1, 0, 0, 0, 531, 513, 1, 0, 0, 0, 531, 521, 1, 0, 0, 0, 531, 526, 1, 0, 0, 0, 532, 23, 1, 0, 0, 0, 533, 534, 5, 471, 0, 0, 534, 535, 5, 228, 0, 0, 535, 538, 3, 344, 172, 0, 536, 537, 5, 436, 0, 0, 537, 539, 3, 354, 177, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 25, 1, 0, 0, 0, 540, 541, 5, 503, 0, 0, 541, 542, 5, 228, 0, 0, 542, 543, 3, 344, 172, 0, 543, 27, 1, 0, 0, 0, 544, 546, 5, 342, 0, 0, 545, 547, 3, 356, 178, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 29, 1, 0, 0, 0, 548, 550, 5, 314, 0, 0, 549, 551, 3, 358, 179, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 31, 1, 0, 0, 0, 552, 553, 7, 5, 0, 0, 553, 554, 5, 466, 0, 0, 554, 555, 5, 540, 0, 0, 555, 33, 1, 0, 0, 0, 556, 557, 5, 440, 0, 0, 557, 558, 5, 466, 0, 0, 558, 559, 5, 436, 0, 0, 559, 562, 3, 36, 18, 0, 560, 561, 5, 17, 0, 0, 561, 563, 3, 344, 172, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 607, 1, 0, 0, 0, 564, 565, 5, 440, 0, 0, 565, 566, 5, 459, 0, 0, 566, 567, 5, 436, 0, 0, 567, 570, 3, 36, 18, 0, 568, 569, 5, 17, 0, 0, 569, 571, 3, 344, 172, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 574, 1, 0, 0, 0, 572, 573, 5, 313, 0, 0, 573, 575, 3, 344, 172, 0, 574, 572, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 607, 1, 0, 0, 0, 576, 577, 5, 440, 0, 0, 577, 578, 7, 6, 0, 0, 578, 579, 5, 436, 0, 0, 579, 580, 3, 36, 18, 0, 580, 581, 5, 313, 0, 0, 581, 582, 3, 344, 172, 0, 582, 607, 1, 0, 0, 0, 583, 584, 5, 440, 0, 0, 584, 585, 5, 489, 0, 0, 585, 607, 3, 36, 18, 0, 586, 587, 5, 440, 0, 0, 587, 588, 5, 456, 0, 0, 588, 589, 5, 459, 0, 0, 589, 590, 5, 436, 0, 0, 590, 591, 3, 36, 18, 0, 591, 592, 5, 313, 0, 0, 592, 593, 3, 344, 172, 0, 593, 594, 5, 469, 0, 0, 594, 595, 3, 344, 172, 0, 595, 607, 1, 0, 0, 0, 596, 597, 5, 440, 0, 0, 597, 598, 5, 446, 0, 0, 598, 599, 5, 459, 0, 0, 599, 600, 5, 436, 0, 0, 600, 601, 3, 36, 18, 0, 601, 602, 5, 147, 0, 0, 602, 603, 3, 344, 172, 0, 603, 604, 5, 17, 0, 0, 604, 605, 3, 344, 172, 0, 605, 607, 1, 0, 0, 0, 606, 556, 1, 0, 0, 0, 606, 564, 1, 0, 0, 0, 606, 576, 1, 0, 0, 0, 606, 583, 1, 0, 0, 0, 606, 586, 1, 0, 0, 0, 606, 596, 1, 0, 0, 0, 607, 35, 1, 0, 0, 0, 608, 610, 5, 537, 0, 0, 609, 608, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 613, 3, 344, 172, 0, 612, 609, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 37, 1, 0, 0, 0, 616, 619, 3, 40, 20, 0, 617, 619, 3, 42, 21, 0, 618, 616, 1, 0, 0, 0, 618, 617, 1, 0, 0, 0, 619, 39, 1, 0, 0, 0, 620, 622, 5, 72, 0, 0, 621, 623, 5, 500, 0, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 5, 375, 0, 0, 625, 627, 3, 350, 175, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 3, 336, 168, 0, 629, 630, 5, 519, 0, 0, 630, 635, 3, 44, 22, 0, 631, 632, 5, 523, 0, 0, 632, 634, 3, 44, 22, 0, 633, 631, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 640, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 5, 523, 0, 0, 639, 641, 3, 80, 40, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 644, 1, 0, 0, 0, 642, 643, 5, 523, 0, 0, 643, 645, 3, 82, 41, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 647, 5, 523, 0, 0, 647, 649, 3, 86, 43, 0, 648, 646, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 653, 5, 520, 0, 0, 651, 652, 5, 59, 0, 0, 652, 654, 5, 540, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 668, 1, 0, 0, 0, 655, 656, 5, 271, 0, 0, 656, 657, 5, 34, 0, 0, 657, 658, 5, 519, 0, 0, 658, 663, 3, 88, 44, 0, 659, 660, 5, 523, 0, 0, 660, 662, 3, 88, 44, 0, 661, 659, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 666, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 667, 5, 520, 0, 0, 667, 669, 1, 0, 0, 0, 668, 655, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 3, 348, 174, 0, 671, 673, 3, 92, 46, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 41, 1, 0, 0, 0, 674, 675, 5, 72, 0, 0, 675, 677, 5, 375, 0, 0, 676, 678, 3, 350, 175, 0, 677, 676, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 3, 336, 168, 0, 680, 683, 3, 348, 174, 0, 681, 682, 5, 17, 0, 0, 682, 684, 3, 148, 74, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 43, 1, 0, 0, 0, 685, 689, 3, 46, 23, 0, 686, 689, 3, 76, 38, 0, 687, 689, 3, 78, 39, 0, 688, 685, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 688, 687, 1, 0, 0, 0, 689, 45, 1, 0, 0, 0, 690, 691, 3, 48, 24, 0, 691, 693, 3, 60, 30, 0, 692, 694, 3, 74, 37, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 696, 5, 59, 0, 0, 696, 698, 5, 540, 0, 0, 697, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 47, 1, 0, 0, 0, 699, 702, 3, 344, 172, 0, 700, 702, 3, 260, 130, 0, 701, 699, 1, 0, 0, 0, 701, 700, 1, 0, 0, 0, 702, 49, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 51, 1, 0, 0, 0, 705, 709, 3, 346, 173, 0, 706, 707, 4, 26, 0, 0, 707, 709, 3, 50, 25, 0, 708, 705, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 53, 1, 0, 0, 0, 710, 711, 3, 344, 172, 0, 711, 55, 1, 0, 0, 0, 712, 716, 3, 346, 173, 0, 713, 714, 4, 28, 1, 0, 714, 716, 3, 50, 25, 0, 715, 712, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 57, 1, 0, 0, 0, 717, 718, 5, 519, 0, 0, 718, 723, 3, 52, 26, 0, 719, 720, 5, 523, 0, 0, 720, 722, 3, 52, 26, 0, 721, 719, 1, 0, 0, 0, 722, 725, 1, 0, 0, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 726, 1, 0, 0, 0, 725, 723, 1, 0, 0, 0, 726, 727, 5, 520, 0, 0, 727, 59, 1, 0, 0, 0, 728, 766, 7, 7, 0, 0, 729, 731, 7, 8, 0, 0, 730, 732, 3, 62, 31, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 766, 1, 0, 0, 0, 733, 735, 5, 381, 0, 0, 734, 736, 3, 62, 31, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 743, 1, 0, 0, 0, 737, 739, 7, 9, 0, 0, 738, 740, 5, 208, 0, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 380, 0, 0, 742, 744, 5, 507, 0, 0, 743, 737, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 766, 1, 0, 0, 0, 745, 747, 7, 10, 0, 0, 746, 748, 3, 64, 32, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 766, 1, 0, 0, 0, 749, 751, 7, 11, 0, 0, 750, 752, 3, 68, 34, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 766, 1, 0, 0, 0, 753, 755, 5, 472, 0, 0, 754, 756, 3, 70, 35, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 766, 1, 0, 0, 0, 757, 759, 5, 323, 0, 0, 758, 760, 3, 72, 36, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 766, 1, 0, 0, 0, 761, 763, 5, 296, 0, 0, 762, 764, 3, 66, 33, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 728, 1, 0, 0, 0, 765, 729, 1, 0, 0, 0, 765, 733, 1, 0, 0, 0, 765, 745, 1, 0, 0, 0, 765, 749, 1, 0, 0, 0, 765, 753, 1, 0, 0, 0, 765, 757, 1, 0, 0, 0, 765, 761, 1, 0, 0, 0, 766, 61, 1, 0, 0, 0, 767, 768, 5, 519, 0, 0, 768, 769, 3, 378, 189, 0, 769, 770, 5, 520, 0, 0, 770, 63, 1, 0, 0, 0, 771, 772, 5, 519, 0, 0, 772, 775, 3, 378, 189, 0, 773, 774, 5, 523, 0, 0, 774, 776, 3, 378, 189, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 5, 520, 0, 0, 778, 65, 1, 0, 0, 0, 779, 780, 5, 519, 0, 0, 780, 783, 3, 376, 188, 0, 781, 782, 5, 523, 0, 0, 782, 784, 3, 376, 188, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 5, 520, 0, 0, 786, 67, 1, 0, 0, 0, 787, 788, 5, 510, 0, 0, 788, 789, 3, 60, 30, 0, 789, 790, 5, 509, 0, 0, 790, 69, 1, 0, 0, 0, 791, 792, 5, 510, 0, 0, 792, 793, 3, 60, 30, 0, 793, 794, 5, 523, 0, 0, 794, 795, 3, 60, 30, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 509, 0, 0, 797, 71, 1, 0, 0, 0, 798, 799, 5, 510, 0, 0, 799, 800, 3, 52, 26, 0, 800, 807, 3, 60, 30, 0, 801, 802, 5, 523, 0, 0, 802, 803, 3, 52, 26, 0, 803, 804, 3, 60, 30, 0, 804, 806, 1, 0, 0, 0, 805, 801, 1, 0, 0, 0, 806, 809, 1, 0, 0, 0, 807, 805, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 1, 0, 0, 0, 809, 807, 1, 0, 0, 0, 810, 811, 5, 509, 0, 0, 811, 827, 1, 0, 0, 0, 812, 813, 5, 519, 0, 0, 813, 814, 3, 52, 26, 0, 814, 821, 3, 60, 30, 0, 815, 816, 5, 523, 0, 0, 816, 817, 3, 52, 26, 0, 817, 818, 3, 60, 30, 0, 818, 820, 1, 0, 0, 0, 819, 815, 1, 0, 0, 0, 820, 823, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 825, 5, 520, 0, 0, 825, 827, 1, 0, 0, 0, 826, 798, 1, 0, 0, 0, 826, 812, 1, 0, 0, 0, 827, 73, 1, 0, 0, 0, 828, 829, 5, 64, 0, 0, 829, 831, 3, 84, 42, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 5, 290, 0, 0, 833, 836, 5, 469, 0, 0, 834, 835, 5, 243, 0, 0, 835, 837, 5, 125, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 843, 1, 0, 0, 0, 838, 840, 5, 243, 0, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, 5, 246, 0, 0, 842, 830, 1, 0, 0, 0, 842, 839, 1, 0, 0, 0, 843, 75, 1, 0, 0, 0, 844, 845, 3, 48, 24, 0, 845, 846, 3, 60, 30, 0, 846, 849, 5, 220, 0, 0, 847, 848, 5, 152, 0, 0, 848, 850, 5, 540, 0, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 1, 0, 0, 0, 851, 853, 5, 426, 0, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 77, 1, 0, 0, 0, 854, 855, 3, 48, 24, 0, 855, 856, 5, 17, 0, 0, 856, 859, 3, 260, 130, 0, 857, 858, 5, 59, 0, 0, 858, 860, 5, 540, 0, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 79, 1, 0, 0, 0, 861, 862, 5, 427, 0, 0, 862, 863, 5, 147, 0, 0, 863, 864, 3, 52, 26, 0, 864, 865, 5, 17, 0, 0, 865, 866, 3, 260, 130, 0, 866, 81, 1, 0, 0, 0, 867, 868, 5, 64, 0, 0, 868, 870, 3, 84, 42, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 5, 290, 0, 0, 872, 873, 5, 469, 0, 0, 873, 874, 3, 58, 29, 0, 874, 875, 5, 243, 0, 0, 875, 876, 5, 125, 0, 0, 876, 83, 1, 0, 0, 0, 877, 878, 3, 320, 160, 0, 878, 85, 1, 0, 0, 0, 879, 880, 5, 279, 0, 0, 880, 881, 5, 147, 0, 0, 881, 882, 5, 373, 0, 0, 882, 87, 1, 0, 0, 0, 883, 896, 3, 52, 26, 0, 884, 885, 5, 519, 0, 0, 885, 890, 3, 90, 45, 0, 886, 887, 5, 523, 0, 0, 887, 889, 3, 90, 45, 0, 888, 886, 1, 0, 0, 0, 889, 892, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 893, 894, 5, 520, 0, 0, 894, 896, 1, 0, 0, 0, 895, 883, 1, 0, 0, 0, 895, 884, 1, 0, 0, 0, 896, 89, 1, 0, 0, 0, 897, 900, 3, 296, 148, 0, 898, 900, 3, 372, 186, 0, 899, 897, 1, 0, 0, 0, 899, 898, 1, 0, 0, 0, 900, 91, 1, 0, 0, 0, 901, 902, 5, 204, 0, 0, 902, 911, 3, 338, 169, 0, 903, 907, 5, 519, 0, 0, 904, 906, 3, 94, 47, 0, 905, 904, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 910, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 910, 912, 5, 520, 0, 0, 911, 903, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 93, 1, 0, 0, 0, 913, 914, 7, 12, 0, 0, 914, 918, 7, 13, 0, 0, 915, 916, 7, 14, 0, 0, 916, 918, 7, 15, 0, 0, 917, 913, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 95, 1, 0, 0, 0, 919, 920, 5, 72, 0, 0, 920, 921, 5, 444, 0, 0, 921, 922, 3, 330, 165, 0, 922, 923, 3, 348, 174, 0, 923, 97, 1, 0, 0, 0, 924, 925, 5, 72, 0, 0, 925, 927, 5, 450, 0, 0, 926, 928, 3, 350, 175, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 932, 3, 334, 167, 0, 930, 931, 5, 59, 0, 0, 931, 933, 5, 540, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 3, 348, 174, 0, 935, 99, 1, 0, 0, 0, 936, 938, 5, 72, 0, 0, 937, 939, 5, 500, 0, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 5, 504, 0, 0, 941, 943, 3, 350, 175, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 3, 342, 171, 0, 945, 947, 3, 58, 29, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 950, 1, 0, 0, 0, 948, 949, 5, 59, 0, 0, 949, 951, 5, 540, 0, 0, 950, 948, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 5, 17, 0, 0, 953, 954, 3, 148, 74, 0, 954, 101, 1, 0, 0, 0, 955, 959, 5, 72, 0, 0, 956, 960, 5, 500, 0, 0, 957, 958, 5, 500, 0, 0, 958, 960, 5, 372, 0, 0, 959, 956, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 963, 5, 154, 0, 0, 962, 964, 3, 350, 175, 0, 963, 962, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 3, 276, 138, 0, 966, 967, 5, 17, 0, 0, 967, 970, 3, 320, 160, 0, 968, 969, 5, 197, 0, 0, 969, 971, 7, 16, 0, 0, 970, 968, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 973, 1, 0, 0, 0, 972, 974, 3, 104, 52, 0, 973, 972, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 103, 1, 0, 0, 0, 975, 976, 5, 415, 0, 0, 976, 977, 5, 466, 0, 0, 977, 983, 5, 540, 0, 0, 978, 979, 5, 523, 0, 0, 979, 980, 5, 466, 0, 0, 980, 982, 5, 540, 0, 0, 981, 978, 1, 0, 0, 0, 982, 985, 1, 0, 0, 0, 983, 981, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 105, 1, 0, 0, 0, 985, 983, 1, 0, 0, 0, 986, 987, 5, 8, 0, 0, 987, 989, 5, 375, 0, 0, 988, 990, 3, 352, 176, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 997, 3, 338, 169, 0, 992, 998, 3, 108, 54, 0, 993, 998, 3, 110, 55, 0, 994, 998, 3, 112, 56, 0, 995, 998, 3, 114, 57, 0, 996, 998, 3, 116, 58, 0, 997, 992, 1, 0, 0, 0, 997, 993, 1, 0, 0, 0, 997, 994, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 997, 996, 1, 0, 0, 0, 998, 107, 1, 0, 0, 0, 999, 1001, 5, 313, 0, 0, 1000, 1002, 3, 344, 172, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1004, 5, 390, 0, 0, 1004, 1005, 3, 344, 172, 0, 1005, 109, 1, 0, 0, 0, 1006, 1007, 5, 342, 0, 0, 1007, 1008, 3, 354, 177, 0, 1008, 111, 1, 0, 0, 0, 1009, 1010, 5, 440, 0, 0, 1010, 1011, 5, 64, 0, 0, 1011, 1012, 3, 84, 42, 0, 1012, 1013, 5, 290, 0, 0, 1013, 1014, 5, 469, 0, 0, 1014, 1017, 3, 58, 29, 0, 1015, 1016, 5, 243, 0, 0, 1016, 1018, 5, 125, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 113, 1, 0, 0, 0, 1019, 1020, 5, 116, 0, 0, 1020, 1021, 5, 64, 0, 0, 1021, 1022, 3, 84, 42, 0, 1022, 115, 1, 0, 0, 0, 1023, 1024, 5, 440, 0, 0, 1024, 1025, 5, 406, 0, 0, 1025, 1026, 3, 58, 29, 0, 1026, 117, 1, 0, 0, 0, 1027, 1028, 5, 8, 0, 0, 1028, 1029, 5, 504, 0, 0, 1029, 1033, 3, 340, 170, 0, 1030, 1034, 3, 108, 54, 0, 1031, 1032, 5, 17, 0, 0, 1032, 1034, 3, 148, 74, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1034, 119, 1, 0, 0, 0, 1035, 1036, 5, 8, 0, 0, 1036, 1037, 5, 450, 0, 0, 1037, 1038, 3, 332, 166, 0, 1038, 1039, 3, 110, 55, 0, 1039, 121, 1, 0, 0, 0, 1040, 1044, 5, 8, 0, 0, 1041, 1045, 5, 500, 0, 0, 1042, 1043, 5, 500, 0, 0, 1043, 1045, 5, 372, 0, 0, 1044, 1041, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 5, 154, 0, 0, 1047, 1049, 3, 352, 176, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 3, 278, 139, 0, 1051, 1052, 5, 17, 0, 0, 1052, 1055, 3, 320, 160, 0, 1053, 1054, 5, 197, 0, 0, 1054, 1056, 7, 16, 0, 0, 1055, 1053, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 123, 1, 0, 0, 0, 1057, 1058, 5, 116, 0, 0, 1058, 1060, 5, 444, 0, 0, 1059, 1061, 3, 352, 176, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 3, 328, 164, 0, 1063, 125, 1, 0, 0, 0, 1064, 1066, 5, 116, 0, 0, 1065, 1067, 5, 500, 0, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 5, 375, 0, 0, 1069, 1071, 3, 352, 176, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 3, 338, 169, 0, 1073, 127, 1, 0, 0, 0, 1074, 1075, 5, 116, 0, 0, 1075, 1077, 5, 450, 0, 0, 1076, 1078, 3, 352, 176, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 332, 166, 0, 1080, 1082, 7, 17, 0, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 129, 1, 0, 0, 0, 1083, 1085, 5, 116, 0, 0, 1084, 1086, 5, 500, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 5, 504, 0, 0, 1088, 1090, 3, 352, 176, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 3, 340, 170, 0, 1092, 131, 1, 0, 0, 0, 1093, 1097, 5, 116, 0, 0, 1094, 1098, 5, 500, 0, 0, 1095, 1096, 5, 500, 0, 0, 1096, 1098, 5, 372, 0, 0, 1097, 1094, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 5, 154, 0, 0, 1100, 1102, 3, 352, 176, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 3, 278, 139, 0, 1104, 133, 1, 0, 0, 0, 1105, 1107, 5, 132, 0, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1113, 3, 136, 68, 0, 1109, 1113, 3, 144, 72, 0, 1110, 1111, 5, 132, 0, 0, 1111, 1113, 3, 146, 73, 0, 1112, 1106, 1, 0, 0, 0, 1112, 1109, 1, 0, 0, 0, 1112, 1110, 1, 0, 0, 0, 1113, 135, 1, 0, 0, 0, 1114, 1115, 5, 178, 0, 0, 1115, 1116, 7, 18, 0, 0, 1116, 1126, 3, 338, 169, 0, 1117, 1118, 5, 270, 0, 0, 1118, 1120, 3, 354, 177, 0, 1119, 1117, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1123, 3, 58, 29, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1127, 3, 148, 74, 0, 1125, 1127, 3, 138, 69, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 137, 1, 0, 0, 0, 1128, 1129, 5, 417, 0, 0, 1129, 1134, 3, 140, 70, 0, 1130, 1131, 5, 523, 0, 0, 1131, 1133, 3, 140, 70, 0, 1132, 1130, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 139, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1138, 5, 519, 0, 0, 1138, 1143, 3, 142, 71, 0, 1139, 1140, 5, 523, 0, 0, 1140, 1142, 3, 142, 71, 0, 1141, 1139, 1, 0, 0, 0, 1142, 1145, 1, 0, 0, 0, 1143, 1141, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1146, 1147, 5, 520, 0, 0, 1147, 141, 1, 0, 0, 0, 1148, 1151, 3, 372, 186, 0, 1149, 1151, 3, 272, 136, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1149, 1, 0, 0, 0, 1151, 143, 1, 0, 0, 0, 1152, 1153, 5, 24, 0, 0, 1153, 1154, 5, 356, 0, 0, 1154, 1155, 5, 342, 0, 0, 1155, 1159, 5, 524, 0, 0, 1156, 1157, 3, 136, 68, 0, 1157, 1158, 5, 524, 0, 0, 1158, 1160, 1, 0, 0, 0, 1159, 1156, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 5, 122, 0, 0, 1164, 145, 1, 0, 0, 0, 1165, 1166, 5, 356, 0, 0, 1166, 1167, 5, 342, 0, 0, 1167, 1171, 5, 24, 0, 0, 1168, 1169, 3, 136, 68, 0, 1169, 1170, 5, 524, 0, 0, 1170, 1172, 1, 0, 0, 0, 1171, 1168, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 122, 0, 0, 1176, 147, 1, 0, 0, 0, 1177, 1178, 6, 74, -1, 0, 1178, 1201, 3, 150, 75, 0, 1179, 1180, 3, 152, 76, 0, 1180, 1181, 3, 148, 74, 5, 1181, 1201, 1, 0, 0, 0, 1182, 1183, 5, 519, 0, 0, 1183, 1184, 3, 148, 74, 0, 1184, 1185, 5, 520, 0, 0, 1185, 1201, 1, 0, 0, 0, 1186, 1188, 3, 158, 79, 0, 1187, 1189, 3, 228, 114, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1192, 3, 232, 116, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1201, 1, 0, 0, 0, 1193, 1195, 3, 156, 78, 0, 1194, 1196, 3, 228, 114, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1199, 3, 232, 116, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1177, 1, 0, 0, 0, 1200, 1179, 1, 0, 0, 0, 1200, 1182, 1, 0, 0, 0, 1200, 1186, 1, 0, 0, 0, 1200, 1193, 1, 0, 0, 0, 1201, 1216, 1, 0, 0, 0, 1202, 1203, 10, 3, 0, 0, 1203, 1205, 7, 19, 0, 0, 1204, 1206, 5, 5, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 3, 148, 74, 0, 1208, 1210, 3, 228, 114, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1213, 3, 232, 116, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1215, 1, 0, 0, 0, 1214, 1202, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 149, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 417, 0, 0, 1220, 1225, 3, 260, 130, 0, 1221, 1222, 5, 523, 0, 0, 1222, 1224, 3, 260, 130, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 151, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1229, 5, 436, 0, 0, 1229, 1234, 3, 154, 77, 0, 1230, 1231, 5, 523, 0, 0, 1231, 1233, 3, 154, 77, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1236, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 153, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1249, 3, 320, 160, 0, 1238, 1239, 5, 519, 0, 0, 1239, 1244, 3, 52, 26, 0, 1240, 1241, 5, 523, 0, 0, 1241, 1243, 3, 52, 26, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1247, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1248, 5, 520, 0, 0, 1248, 1250, 1, 0, 0, 0, 1249, 1238, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 5, 17, 0, 0, 1252, 1253, 5, 519, 0, 0, 1253, 1254, 3, 148, 74, 0, 1254, 1255, 5, 520, 0, 0, 1255, 155, 1, 0, 0, 0, 1256, 1258, 3, 158, 79, 0, 1257, 1259, 3, 178, 89, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1261, 1, 0, 0, 0, 1260, 1262, 3, 208, 104, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1265, 3, 210, 105, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1268, 3, 218, 109, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1271, 3, 220, 110, 0, 1270, 1269, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1277, 1, 0, 0, 0, 1272, 1273, 3, 158, 79, 0, 1273, 1274, 3, 178, 89, 0, 1274, 1275, 3, 226, 113, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1256, 1, 0, 0, 0, 1276, 1272, 1, 0, 0, 0, 1277, 157, 1, 0, 0, 0, 1278, 1280, 5, 338, 0, 0, 1279, 1281, 3, 382, 191, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 3, 160, 80, 0, 1283, 159, 1, 0, 0, 0, 1284, 1289, 3, 162, 81, 0, 1285, 1286, 5, 523, 0, 0, 1286, 1288, 3, 162, 81, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 161, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1316, 3, 164, 82, 0, 1293, 1299, 3, 168, 84, 0, 1294, 1300, 3, 170, 85, 0, 1295, 1297, 5, 17, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 3, 260, 130, 0, 1299, 1294, 1, 0, 0, 0, 1299, 1296, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1316, 1, 0, 0, 0, 1301, 1303, 3, 174, 87, 0, 1302, 1304, 3, 170, 85, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1316, 1, 0, 0, 0, 1305, 1311, 3, 166, 83, 0, 1306, 1312, 3, 170, 85, 0, 1307, 1309, 5, 17, 0, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 3, 52, 26, 0, 1311, 1306, 1, 0, 0, 0, 1311, 1308, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1316, 1, 0, 0, 0, 1313, 1314, 4, 81, 3, 0, 1314, 1316, 3, 50, 25, 0, 1315, 1292, 1, 0, 0, 0, 1315, 1293, 1, 0, 0, 0, 1315, 1301, 1, 0, 0, 0, 1315, 1305, 1, 0, 0, 0, 1315, 1313, 1, 0, 0, 0, 1316, 163, 1, 0, 0, 0, 1317, 1318, 3, 176, 88, 0, 1318, 165, 1, 0, 0, 0, 1319, 1320, 3, 260, 130, 0, 1320, 167, 1, 0, 0, 0, 1321, 1322, 3, 52, 26, 0, 1322, 169, 1, 0, 0, 0, 1323, 1325, 5, 17, 0, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 3, 320, 160, 0, 1327, 171, 1, 0, 0, 0, 1328, 1344, 3, 176, 88, 0, 1329, 1334, 3, 260, 130, 0, 1330, 1332, 5, 17, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1335, 3, 52, 26, 0, 1334, 1331, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1344, 1, 0, 0, 0, 1336, 1341, 3, 52, 26, 0, 1337, 1339, 5, 17, 0, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 3, 260, 130, 0, 1341, 1338, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1344, 1, 0, 0, 0, 1343, 1328, 1, 0, 0, 0, 1343, 1329, 1, 0, 0, 0, 1343, 1336, 1, 0, 0, 0, 1344, 173, 1, 0, 0, 0, 1345, 1350, 3, 320, 160, 0, 1346, 1347, 5, 516, 0, 0, 1347, 1349, 3, 320, 160, 0, 1348, 1346, 1, 0, 0, 0, 1349, 1352, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1354, 5, 516, 0, 0, 1354, 1356, 1, 0, 0, 0, 1355, 1345, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1358, 5, 530, 0, 0, 1358, 175, 1, 0, 0, 0, 1359, 1360, 3, 274, 137, 0, 1360, 1361, 5, 264, 0, 0, 1361, 1362, 3, 224, 112, 0, 1362, 1363, 5, 17, 0, 0, 1363, 1364, 3, 320, 160, 0, 1364, 1372, 1, 0, 0, 0, 1365, 1366, 3, 274, 137, 0, 1366, 1367, 5, 264, 0, 0, 1367, 1368, 3, 312, 156, 0, 1368, 1369, 5, 17, 0, 0, 1369, 1370, 3, 320, 160, 0, 1370, 1372, 1, 0, 0, 0, 1371, 1359, 1, 0, 0, 0, 1371, 1365, 1, 0, 0, 0, 1372, 177, 1, 0, 0, 0, 1373, 1374, 5, 152, 0, 0, 1374, 1375, 3, 180, 90, 0, 1375, 179, 1, 0, 0, 0, 1376, 1377, 6, 90, -1, 0, 1377, 1382, 3, 182, 91, 0, 1378, 1379, 5, 523, 0, 0, 1379, 1381, 3, 182, 91, 0, 1380, 1378, 1, 0, 0, 0, 1381, 1384, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1388, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1385, 1388, 3, 192, 96, 0, 1386, 1388, 3, 194, 97, 0, 1387, 1376, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1387, 1386, 1, 0, 0, 0, 1388, 1410, 1, 0, 0, 0, 1389, 1390, 10, 3, 0, 0, 1390, 1391, 5, 73, 0, 0, 1391, 1392, 5, 186, 0, 0, 1392, 1409, 3, 180, 90, 4, 1393, 1395, 10, 4, 0, 0, 1394, 1396, 5, 235, 0, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1398, 1, 0, 0, 0, 1397, 1399, 7, 20, 0, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, 1, 0, 0, 0, 1400, 1402, 5, 263, 0, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 5, 186, 0, 0, 1404, 1406, 3, 180, 90, 0, 1405, 1407, 3, 206, 103, 0, 1406, 1405, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1409, 1, 0, 0, 0, 1408, 1389, 1, 0, 0, 0, 1408, 1393, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 181, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1415, 3, 184, 92, 0, 1414, 1416, 3, 310, 155, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 183, 1, 0, 0, 0, 1417, 1419, 5, 375, 0, 0, 1418, 1417, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 3, 338, 169, 0, 1421, 1423, 3, 190, 95, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1431, 1, 0, 0, 0, 1424, 1426, 3, 340, 170, 0, 1425, 1427, 3, 190, 95, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1431, 1, 0, 0, 0, 1428, 1431, 3, 186, 93, 0, 1429, 1431, 3, 188, 94, 0, 1430, 1418, 1, 0, 0, 0, 1430, 1424, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 185, 1, 0, 0, 0, 1432, 1433, 5, 200, 0, 0, 1433, 1434, 5, 375, 0, 0, 1434, 1435, 5, 519, 0, 0, 1435, 1436, 3, 272, 136, 0, 1436, 1437, 5, 520, 0, 0, 1437, 187, 1, 0, 0, 0, 1438, 1440, 5, 200, 0, 0, 1439, 1438, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 5, 519, 0, 0, 1442, 1443, 3, 148, 74, 0, 1443, 1444, 5, 520, 0, 0, 1444, 1451, 1, 0, 0, 0, 1445, 1446, 5, 408, 0, 0, 1446, 1447, 5, 519, 0, 0, 1447, 1448, 3, 260, 130, 0, 1448, 1449, 5, 520, 0, 0, 1449, 1451, 1, 0, 0, 0, 1450, 1439, 1, 0, 0, 0, 1450, 1445, 1, 0, 0, 0, 1451, 189, 1, 0, 0, 0, 1452, 1453, 5, 147, 0, 0, 1453, 1454, 5, 373, 0, 0, 1454, 1455, 5, 17, 0, 0, 1455, 1456, 5, 251, 0, 0, 1456, 1457, 3, 260, 130, 0, 1457, 191, 1, 0, 0, 0, 1458, 1459, 5, 519, 0, 0, 1459, 1460, 3, 138, 69, 0, 1460, 1461, 5, 520, 0, 0, 1461, 1462, 3, 310, 155, 0, 1462, 193, 1, 0, 0, 0, 1463, 1464, 5, 375, 0, 0, 1464, 1465, 5, 519, 0, 0, 1465, 1466, 3, 196, 98, 0, 1466, 1467, 5, 520, 0, 0, 1467, 195, 1, 0, 0, 0, 1468, 1469, 3, 198, 99, 0, 1469, 1470, 5, 519, 0, 0, 1470, 1475, 3, 200, 100, 0, 1471, 1472, 5, 523, 0, 0, 1472, 1474, 3, 200, 100, 0, 1473, 1471, 1, 0, 0, 0, 1474, 1477, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1478, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1479, 5, 520, 0, 0, 1479, 197, 1, 0, 0, 0, 1480, 1481, 7, 21, 0, 0, 1481, 199, 1, 0, 0, 0, 1482, 1483, 5, 375, 0, 0, 1483, 1498, 3, 344, 172, 0, 1484, 1498, 3, 204, 102, 0, 1485, 1498, 3, 298, 149, 0, 1486, 1487, 5, 449, 0, 0, 1487, 1488, 5, 539, 0, 0, 1488, 1489, 5, 375, 0, 0, 1489, 1498, 3, 344, 172, 0, 1490, 1491, 5, 501, 0, 0, 1491, 1492, 5, 539, 0, 0, 1492, 1498, 3, 204, 102, 0, 1493, 1494, 3, 202, 101, 0, 1494, 1495, 5, 539, 0, 0, 1495, 1496, 3, 298, 149, 0, 1496, 1498, 1, 0, 0, 0, 1497, 1482, 1, 0, 0, 0, 1497, 1484, 1, 0, 0, 0, 1497, 1485, 1, 0, 0, 0, 1497, 1486, 1, 0, 0, 0, 1497, 1490, 1, 0, 0, 0, 1497, 1493, 1, 0, 0, 0, 1498, 201, 1, 0, 0, 0, 1499, 1500, 7, 22, 0, 0, 1500, 203, 1, 0, 0, 0, 1501, 1502, 5, 454, 0, 0, 1502, 1503, 5, 519, 0, 0, 1503, 1504, 3, 52, 26, 0, 1504, 1505, 5, 520, 0, 0, 1505, 205, 1, 0, 0, 0, 1506, 1513, 5, 255, 0, 0, 1507, 1514, 3, 262, 131, 0, 1508, 1511, 3, 56, 28, 0, 1509, 1510, 5, 508, 0, 0, 1510, 1512, 3, 56, 28, 0, 1511, 1509, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1507, 1, 0, 0, 0, 1513, 1508, 1, 0, 0, 0, 1514, 1518, 1, 0, 0, 0, 1515, 1516, 5, 415, 0, 0, 1516, 1518, 3, 58, 29, 0, 1517, 1506, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1518, 207, 1, 0, 0, 0, 1519, 1522, 5, 433, 0, 0, 1520, 1523, 3, 262, 131, 0, 1521, 1523, 3, 56, 28, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, 1, 0, 0, 0, 1523, 209, 1, 0, 0, 0, 1524, 1525, 5, 160, 0, 0, 1525, 1526, 5, 34, 0, 0, 1526, 1531, 3, 212, 106, 0, 1527, 1528, 5, 523, 0, 0, 1528, 1530, 3, 212, 106, 0, 1529, 1527, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 211, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, 1534, 1576, 3, 52, 26, 0, 1535, 1576, 3, 214, 107, 0, 1536, 1537, 5, 519, 0, 0, 1537, 1576, 5, 520, 0, 0, 1538, 1539, 5, 519, 0, 0, 1539, 1544, 3, 260, 130, 0, 1540, 1541, 5, 523, 0, 0, 1541, 1543, 3, 260, 130, 0, 1542, 1540, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1548, 5, 520, 0, 0, 1548, 1576, 1, 0, 0, 0, 1549, 1550, 7, 23, 0, 0, 1550, 1551, 5, 519, 0, 0, 1551, 1556, 3, 260, 130, 0, 1552, 1553, 5, 523, 0, 0, 1553, 1555, 3, 260, 130, 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, 1559, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 5, 520, 0, 0, 1560, 1576, 1, 0, 0, 0, 1561, 1562, 5, 161, 0, 0, 1562, 1563, 5, 496, 0, 0, 1563, 1564, 5, 519, 0, 0, 1564, 1569, 3, 212, 106, 0, 1565, 1566, 5, 523, 0, 0, 1566, 1568, 3, 212, 106, 0, 1567, 1565, 1, 0, 0, 0, 1568, 1571, 1, 0, 0, 0, 1569, 1567, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1569, 1, 0, 0, 0, 1572, 1573, 5, 520, 0, 0, 1573, 1576, 1, 0, 0, 0, 1574, 1576, 3, 260, 130, 0, 1575, 1534, 1, 0, 0, 0, 1575, 1535, 1, 0, 0, 0, 1575, 1536, 1, 0, 0, 0, 1575, 1538, 1, 0, 0, 0, 1575, 1549, 1, 0, 0, 0, 1575, 1561, 1, 0, 0, 0, 1575, 1574, 1, 0, 0, 0, 1576, 213, 1, 0, 0, 0, 1577, 1578, 3, 216, 108, 0, 1578, 1579, 5, 519, 0, 0, 1579, 1580, 3, 344, 172, 0, 1580, 1581, 5, 523, 0, 0, 1581, 1582, 3, 298, 149, 0, 1582, 1583, 5, 520, 0, 0, 1583, 215, 1, 0, 0, 0, 1584, 1585, 7, 24, 0, 0, 1585, 217, 1, 0, 0, 0, 1586, 1587, 5, 164, 0, 0, 1587, 1588, 3, 262, 131, 0, 1588, 219, 1, 0, 0, 0, 1589, 1590, 5, 435, 0, 0, 1590, 1595, 3, 222, 111, 0, 1591, 1592, 5, 523, 0, 0, 1592, 1594, 3, 222, 111, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 221, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1599, 3, 312, 156, 0, 1599, 1600, 5, 17, 0, 0, 1600, 1601, 3, 224, 112, 0, 1601, 223, 1, 0, 0, 0, 1602, 1604, 3, 312, 156, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1607, 5, 519, 0, 0, 1606, 1608, 3, 234, 117, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1610, 1, 0, 0, 0, 1609, 1611, 3, 228, 114, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1613, 1, 0, 0, 0, 1612, 1614, 3, 250, 125, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 5, 520, 0, 0, 1616, 225, 1, 0, 0, 0, 1617, 1618, 5, 215, 0, 0, 1618, 1620, 5, 519, 0, 0, 1619, 1621, 3, 234, 117, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 1, 0, 0, 0, 1622, 1624, 3, 228, 114, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1627, 3, 238, 119, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1630, 3, 244, 122, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1633, 3, 246, 123, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 240, 120, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 3, 248, 124, 0, 1638, 1643, 5, 520, 0, 0, 1639, 1641, 5, 17, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 3, 320, 160, 0, 1643, 1640, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 227, 1, 0, 0, 0, 1645, 1646, 5, 260, 0, 0, 1646, 1647, 5, 34, 0, 0, 1647, 1652, 3, 230, 115, 0, 1648, 1649, 5, 523, 0, 0, 1649, 1651, 3, 230, 115, 0, 1650, 1648, 1, 0, 0, 0, 1651, 1654, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 229, 1, 0, 0, 0, 1654, 1652, 1, 0, 0, 0, 1655, 1658, 3, 52, 26, 0, 1656, 1658, 3, 270, 135, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1656, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1661, 7, 25, 0, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1663, 5, 479, 0, 0, 1663, 1665, 7, 26, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 231, 1, 0, 0, 0, 1666, 1669, 5, 206, 0, 0, 1667, 1670, 5, 5, 0, 0, 1668, 1670, 3, 260, 130, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1668, 1, 0, 0, 0, 1670, 233, 1, 0, 0, 0, 1671, 1672, 5, 270, 0, 0, 1672, 1675, 5, 34, 0, 0, 1673, 1676, 3, 52, 26, 0, 1674, 1676, 3, 274, 137, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1674, 1, 0, 0, 0, 1676, 1684, 1, 0, 0, 0, 1677, 1680, 5, 523, 0, 0, 1678, 1681, 3, 52, 26, 0, 1679, 1681, 3, 274, 137, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1679, 1, 0, 0, 0, 1681, 1683, 1, 0, 0, 0, 1682, 1677, 1, 0, 0, 0, 1683, 1686, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 235, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1687, 1704, 5, 530, 0, 0, 1688, 1704, 5, 533, 0, 0, 1689, 1704, 5, 538, 0, 0, 1690, 1691, 5, 521, 0, 0, 1691, 1692, 5, 541, 0, 0, 1692, 1693, 5, 523, 0, 0, 1693, 1694, 5, 541, 0, 0, 1694, 1704, 5, 522, 0, 0, 1695, 1696, 5, 521, 0, 0, 1696, 1697, 5, 541, 0, 0, 1697, 1698, 5, 523, 0, 0, 1698, 1704, 5, 522, 0, 0, 1699, 1700, 5, 521, 0, 0, 1700, 1701, 5, 523, 0, 0, 1701, 1702, 5, 541, 0, 0, 1702, 1704, 5, 522, 0, 0, 1703, 1687, 1, 0, 0, 0, 1703, 1688, 1, 0, 0, 0, 1703, 1689, 1, 0, 0, 0, 1703, 1690, 1, 0, 0, 0, 1703, 1695, 1, 0, 0, 0, 1703, 1699, 1, 0, 0, 0, 1704, 237, 1, 0, 0, 0, 1705, 1706, 5, 217, 0, 0, 1706, 1711, 3, 172, 86, 0, 1707, 1708, 5, 523, 0, 0, 1708, 1710, 3, 172, 86, 0, 1709, 1707, 1, 0, 0, 0, 1710, 1713, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 239, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1714, 1715, 5, 273, 0, 0, 1715, 1717, 5, 519, 0, 0, 1716, 1718, 3, 242, 121, 0, 1717, 1716, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 5, 520, 0, 0, 1722, 1724, 3, 258, 129, 0, 1723, 1722, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 241, 1, 0, 0, 0, 1725, 1727, 3, 322, 161, 0, 1726, 1728, 3, 236, 118, 0, 1727, 1726, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 243, 1, 0, 0, 0, 1729, 1730, 5, 5, 0, 0, 1730, 1731, 5, 324, 0, 0, 1731, 1732, 5, 274, 0, 0, 1732, 1738, 5, 212, 0, 0, 1733, 1734, 5, 256, 0, 0, 1734, 1735, 5, 323, 0, 0, 1735, 1736, 5, 274, 0, 0, 1736, 1738, 5, 212, 0, 0, 1737, 1729, 1, 0, 0, 0, 1737, 1733, 1, 0, 0, 0, 1738, 245, 1, 0, 0, 0, 1739, 1740, 5, 441, 0, 0, 1740, 1741, 5, 212, 0, 0, 1741, 1742, 5, 345, 0, 0, 1742, 1743, 5, 481, 0, 0, 1743, 1744, 5, 470, 0, 0, 1744, 1764, 5, 323, 0, 0, 1745, 1746, 5, 441, 0, 0, 1746, 1747, 5, 212, 0, 0, 1747, 1748, 5, 345, 0, 0, 1748, 1749, 5, 390, 0, 0, 1749, 1750, 5, 239, 0, 0, 1750, 1764, 5, 323, 0, 0, 1751, 1752, 5, 441, 0, 0, 1752, 1753, 5, 212, 0, 0, 1753, 1754, 5, 345, 0, 0, 1754, 1755, 5, 390, 0, 0, 1755, 1756, 5, 470, 0, 0, 1756, 1764, 3, 322, 161, 0, 1757, 1758, 5, 441, 0, 0, 1758, 1759, 5, 212, 0, 0, 1759, 1760, 5, 345, 0, 0, 1760, 1761, 5, 390, 0, 0, 1761, 1762, 5, 460, 0, 0, 1762, 1764, 3, 322, 161, 0, 1763, 1739, 1, 0, 0, 0, 1763, 1745, 1, 0, 0, 0, 1763, 1751, 1, 0, 0, 0, 1763, 1757, 1, 0, 0, 0, 1764, 247, 1, 0, 0, 0, 1765, 1766, 5, 105, 0, 0, 1766, 1771, 3, 172, 86, 0, 1767, 1768, 5, 523, 0, 0, 1768, 1770, 3, 172, 86, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1773, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 249, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1774, 1775, 5, 294, 0, 0, 1775, 1776, 5, 27, 0, 0, 1776, 1777, 3, 298, 149, 0, 1777, 1778, 3, 252, 126, 0, 1778, 1790, 1, 0, 0, 0, 1779, 1780, 7, 27, 0, 0, 1780, 1781, 5, 27, 0, 0, 1781, 1782, 3, 254, 127, 0, 1782, 1783, 5, 10, 0, 0, 1783, 1784, 3, 256, 128, 0, 1784, 1790, 1, 0, 0, 0, 1785, 1786, 5, 324, 0, 0, 1786, 1787, 5, 27, 0, 0, 1787, 1788, 5, 541, 0, 0, 1788, 1790, 3, 252, 126, 0, 1789, 1774, 1, 0, 0, 0, 1789, 1779, 1, 0, 0, 0, 1789, 1785, 1, 0, 0, 0, 1790, 251, 1, 0, 0, 0, 1791, 1792, 5, 483, 0, 0, 1792, 1793, 5, 10, 0, 0, 1793, 1794, 5, 76, 0, 0, 1794, 1795, 5, 323, 0, 0, 1795, 253, 1, 0, 0, 0, 1796, 1797, 5, 404, 0, 0, 1797, 1803, 5, 483, 0, 0, 1798, 1799, 5, 541, 0, 0, 1799, 1803, 5, 483, 0, 0, 1800, 1801, 5, 76, 0, 0, 1801, 1803, 5, 323, 0, 0, 1802, 1796, 1, 0, 0, 0, 1802, 1798, 1, 0, 0, 0, 1802, 1800, 1, 0, 0, 0, 1803, 255, 1, 0, 0, 0, 1804, 1805, 5, 76, 0, 0, 1805, 1811, 5, 323, 0, 0, 1806, 1807, 5, 541, 0, 0, 1807, 1811, 5, 146, 0, 0, 1808, 1809, 5, 404, 0, 0, 1809, 1811, 5, 146, 0, 0, 1810, 1804, 1, 0, 0, 0, 1810, 1806, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1811, 257, 1, 0, 0, 0, 1812, 1813, 5, 437, 0, 0, 1813, 1814, 3, 298, 149, 0, 1814, 259, 1, 0, 0, 0, 1815, 1816, 3, 262, 131, 0, 1816, 261, 1, 0, 0, 0, 1817, 1818, 6, 131, -1, 0, 1818, 1819, 5, 243, 0, 0, 1819, 1830, 3, 262, 131, 6, 1820, 1821, 5, 133, 0, 0, 1821, 1822, 5, 519, 0, 0, 1822, 1823, 3, 148, 74, 0, 1823, 1824, 5, 520, 0, 0, 1824, 1830, 1, 0, 0, 0, 1825, 1827, 3, 270, 135, 0, 1826, 1828, 3, 264, 132, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 1, 0, 0, 0, 1829, 1817, 1, 0, 0, 0, 1829, 1820, 1, 0, 0, 0, 1829, 1825, 1, 0, 0, 0, 1830, 1845, 1, 0, 0, 0, 1831, 1832, 10, 3, 0, 0, 1832, 1833, 5, 10, 0, 0, 1833, 1844, 3, 262, 131, 4, 1834, 1835, 10, 2, 0, 0, 1835, 1836, 5, 259, 0, 0, 1836, 1844, 3, 262, 131, 3, 1837, 1838, 10, 1, 0, 0, 1838, 1840, 5, 185, 0, 0, 1839, 1841, 5, 243, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1844, 7, 28, 0, 0, 1843, 1831, 1, 0, 0, 0, 1843, 1834, 1, 0, 0, 0, 1843, 1837, 1, 0, 0, 0, 1844, 1847, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 263, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1848, 1850, 5, 243, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 27, 0, 0, 1852, 1854, 7, 29, 0, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 3, 270, 135, 0, 1856, 1857, 5, 10, 0, 0, 1857, 1858, 3, 270, 135, 0, 1858, 1923, 1, 0, 0, 0, 1859, 1861, 5, 243, 0, 0, 1860, 1859, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 5, 171, 0, 0, 1863, 1864, 5, 519, 0, 0, 1864, 1869, 3, 260, 130, 0, 1865, 1866, 5, 523, 0, 0, 1866, 1868, 3, 260, 130, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1871, 1, 0, 0, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1872, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1873, 5, 520, 0, 0, 1873, 1923, 1, 0, 0, 0, 1874, 1876, 5, 243, 0, 0, 1875, 1874, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1878, 5, 171, 0, 0, 1878, 1879, 5, 519, 0, 0, 1879, 1880, 3, 148, 74, 0, 1880, 1881, 5, 520, 0, 0, 1881, 1923, 1, 0, 0, 0, 1882, 1883, 5, 133, 0, 0, 1883, 1884, 5, 519, 0, 0, 1884, 1885, 3, 148, 74, 0, 1885, 1886, 5, 520, 0, 0, 1886, 1923, 1, 0, 0, 0, 1887, 1889, 5, 243, 0, 0, 1888, 1887, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 5, 320, 0, 0, 1891, 1923, 3, 270, 135, 0, 1892, 1923, 3, 268, 134, 0, 1893, 1895, 5, 185, 0, 0, 1894, 1896, 5, 243, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1923, 7, 28, 0, 0, 1898, 1900, 5, 185, 0, 0, 1899, 1901, 5, 243, 0, 0, 1900, 1899, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 5, 113, 0, 0, 1903, 1904, 5, 152, 0, 0, 1904, 1923, 3, 270, 135, 0, 1905, 1907, 5, 243, 0, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 5, 344, 0, 0, 1909, 1910, 5, 390, 0, 0, 1910, 1913, 3, 270, 135, 0, 1911, 1912, 5, 127, 0, 0, 1912, 1914, 3, 376, 188, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1923, 1, 0, 0, 0, 1915, 1916, 5, 185, 0, 0, 1916, 1920, 5, 187, 0, 0, 1917, 1921, 5, 416, 0, 0, 1918, 1921, 5, 13, 0, 0, 1919, 1921, 3, 320, 160, 0, 1920, 1917, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1919, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1849, 1, 0, 0, 0, 1922, 1860, 1, 0, 0, 0, 1922, 1875, 1, 0, 0, 0, 1922, 1882, 1, 0, 0, 0, 1922, 1888, 1, 0, 0, 0, 1922, 1892, 1, 0, 0, 0, 1922, 1893, 1, 0, 0, 0, 1922, 1898, 1, 0, 0, 0, 1922, 1906, 1, 0, 0, 0, 1922, 1915, 1, 0, 0, 0, 1923, 265, 1, 0, 0, 0, 1924, 1933, 5, 246, 0, 0, 1925, 1926, 5, 121, 0, 0, 1926, 1933, 5, 13, 0, 0, 1927, 1928, 5, 121, 0, 0, 1928, 1933, 3, 344, 172, 0, 1929, 1933, 5, 399, 0, 0, 1930, 1933, 5, 140, 0, 0, 1931, 1933, 5, 407, 0, 0, 1932, 1924, 1, 0, 0, 0, 1932, 1925, 1, 0, 0, 0, 1932, 1927, 1, 0, 0, 0, 1932, 1929, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1931, 1, 0, 0, 0, 1933, 267, 1, 0, 0, 0, 1934, 1936, 5, 243, 0, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 5, 204, 0, 0, 1938, 1952, 7, 30, 0, 0, 1939, 1940, 5, 519, 0, 0, 1940, 1953, 5, 520, 0, 0, 1941, 1942, 5, 519, 0, 0, 1942, 1947, 3, 260, 130, 0, 1943, 1944, 5, 523, 0, 0, 1944, 1946, 3, 260, 130, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1949, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1950, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1951, 5, 520, 0, 0, 1951, 1953, 1, 0, 0, 0, 1952, 1939, 1, 0, 0, 0, 1952, 1941, 1, 0, 0, 0, 1953, 1964, 1, 0, 0, 0, 1954, 1956, 5, 243, 0, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 5, 204, 0, 0, 1958, 1961, 3, 270, 135, 0, 1959, 1960, 5, 127, 0, 0, 1960, 1962, 3, 376, 188, 0, 1961, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1935, 1, 0, 0, 0, 1963, 1955, 1, 0, 0, 0, 1964, 269, 1, 0, 0, 0, 1965, 1966, 6, 135, -1, 0, 1966, 1970, 3, 274, 137, 0, 1967, 1968, 7, 31, 0, 0, 1968, 1970, 3, 270, 135, 7, 1969, 1965, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1992, 1, 0, 0, 0, 1971, 1972, 10, 6, 0, 0, 1972, 1973, 7, 32, 0, 0, 1973, 1991, 3, 270, 135, 7, 1974, 1975, 10, 5, 0, 0, 1975, 1976, 7, 33, 0, 0, 1976, 1991, 3, 270, 135, 6, 1977, 1978, 10, 4, 0, 0, 1978, 1979, 5, 514, 0, 0, 1979, 1991, 3, 270, 135, 5, 1980, 1981, 10, 3, 0, 0, 1981, 1982, 5, 515, 0, 0, 1982, 1991, 3, 270, 135, 4, 1983, 1984, 10, 2, 0, 0, 1984, 1985, 5, 513, 0, 0, 1985, 1991, 3, 270, 135, 3, 1986, 1987, 10, 1, 0, 0, 1987, 1988, 3, 364, 182, 0, 1988, 1989, 3, 270, 135, 2, 1989, 1991, 1, 0, 0, 0, 1990, 1971, 1, 0, 0, 0, 1990, 1974, 1, 0, 0, 0, 1990, 1977, 1, 0, 0, 0, 1990, 1980, 1, 0, 0, 0, 1990, 1983, 1, 0, 0, 0, 1990, 1986, 1, 0, 0, 0, 1991, 1994, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 271, 1, 0, 0, 0, 1994, 1992, 1, 0, 0, 0, 1995, 2015, 3, 390, 195, 0, 1996, 2015, 3, 280, 140, 0, 1997, 1998, 3, 282, 141, 0, 1998, 2010, 5, 519, 0, 0, 1999, 2001, 3, 382, 191, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2007, 3, 284, 142, 0, 2003, 2004, 5, 523, 0, 0, 2004, 2006, 3, 284, 142, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2009, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2010, 2000, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 5, 520, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 1995, 1, 0, 0, 0, 2014, 1996, 1, 0, 0, 0, 2014, 1997, 1, 0, 0, 0, 2015, 273, 1, 0, 0, 0, 2016, 2017, 6, 137, -1, 0, 2017, 2019, 5, 40, 0, 0, 2018, 2020, 3, 326, 163, 0, 2019, 2018, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2024, 5, 120, 0, 0, 2024, 2026, 3, 260, 130, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2028, 5, 122, 0, 0, 2028, 2099, 1, 0, 0, 0, 2029, 2030, 5, 40, 0, 0, 2030, 2032, 3, 260, 130, 0, 2031, 2033, 3, 326, 163, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2037, 5, 120, 0, 0, 2037, 2039, 3, 260, 130, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 5, 122, 0, 0, 2041, 2099, 1, 0, 0, 0, 2042, 2043, 5, 41, 0, 0, 2043, 2044, 5, 519, 0, 0, 2044, 2045, 3, 260, 130, 0, 2045, 2046, 5, 17, 0, 0, 2046, 2047, 3, 60, 30, 0, 2047, 2048, 5, 520, 0, 0, 2048, 2099, 1, 0, 0, 0, 2049, 2050, 5, 460, 0, 0, 2050, 2051, 5, 519, 0, 0, 2051, 2054, 3, 260, 130, 0, 2052, 2053, 5, 464, 0, 0, 2053, 2055, 5, 479, 0, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 520, 0, 0, 2057, 2099, 1, 0, 0, 0, 2058, 2059, 5, 470, 0, 0, 2059, 2060, 5, 519, 0, 0, 2060, 2063, 3, 260, 130, 0, 2061, 2062, 5, 464, 0, 0, 2062, 2064, 5, 479, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 5, 520, 0, 0, 2066, 2099, 1, 0, 0, 0, 2067, 2068, 5, 283, 0, 0, 2068, 2069, 5, 519, 0, 0, 2069, 2070, 3, 270, 135, 0, 2070, 2071, 5, 171, 0, 0, 2071, 2072, 3, 270, 135, 0, 2072, 2073, 5, 520, 0, 0, 2073, 2099, 1, 0, 0, 0, 2074, 2099, 3, 372, 186, 0, 2075, 2099, 5, 530, 0, 0, 2076, 2077, 3, 344, 172, 0, 2077, 2078, 5, 516, 0, 0, 2078, 2079, 5, 530, 0, 0, 2079, 2099, 1, 0, 0, 0, 2080, 2081, 5, 519, 0, 0, 2081, 2082, 3, 148, 74, 0, 2082, 2083, 5, 520, 0, 0, 2083, 2099, 1, 0, 0, 0, 2084, 2099, 3, 272, 136, 0, 2085, 2099, 3, 54, 27, 0, 2086, 2099, 3, 294, 147, 0, 2087, 2088, 5, 519, 0, 0, 2088, 2089, 3, 260, 130, 0, 2089, 2090, 5, 520, 0, 0, 2090, 2099, 1, 0, 0, 0, 2091, 2092, 5, 139, 0, 0, 2092, 2093, 5, 519, 0, 0, 2093, 2094, 3, 320, 160, 0, 2094, 2095, 5, 152, 0, 0, 2095, 2096, 3, 270, 135, 0, 2096, 2097, 5, 520, 0, 0, 2097, 2099, 1, 0, 0, 0, 2098, 2016, 1, 0, 0, 0, 2098, 2029, 1, 0, 0, 0, 2098, 2042, 1, 0, 0, 0, 2098, 2049, 1, 0, 0, 0, 2098, 2058, 1, 0, 0, 0, 2098, 2067, 1, 0, 0, 0, 2098, 2074, 1, 0, 0, 0, 2098, 2075, 1, 0, 0, 0, 2098, 2076, 1, 0, 0, 0, 2098, 2080, 1, 0, 0, 0, 2098, 2084, 1, 0, 0, 0, 2098, 2085, 1, 0, 0, 0, 2098, 2086, 1, 0, 0, 0, 2098, 2087, 1, 0, 0, 0, 2098, 2091, 1, 0, 0, 0, 2099, 2107, 1, 0, 0, 0, 2100, 2101, 10, 5, 0, 0, 2101, 2102, 5, 517, 0, 0, 2102, 2103, 3, 270, 135, 0, 2103, 2104, 5, 518, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2100, 1, 0, 0, 0, 2106, 2109, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 275, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2111, 3, 344, 172, 0, 2111, 277, 1, 0, 0, 0, 2112, 2117, 3, 394, 197, 0, 2113, 2117, 3, 390, 195, 0, 2114, 2117, 3, 392, 196, 0, 2115, 2117, 3, 344, 172, 0, 2116, 2112, 1, 0, 0, 0, 2116, 2113, 1, 0, 0, 0, 2116, 2114, 1, 0, 0, 0, 2116, 2115, 1, 0, 0, 0, 2117, 279, 1, 0, 0, 0, 2118, 2119, 3, 392, 196, 0, 2119, 2120, 5, 540, 0, 0, 2120, 2123, 1, 0, 0, 0, 2121, 2123, 3, 298, 149, 0, 2122, 2118, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 281, 1, 0, 0, 0, 2124, 2127, 3, 394, 197, 0, 2125, 2127, 3, 344, 172, 0, 2126, 2124, 1, 0, 0, 0, 2126, 2125, 1, 0, 0, 0, 2127, 283, 1, 0, 0, 0, 2128, 2137, 3, 388, 194, 0, 2129, 2137, 3, 386, 193, 0, 2130, 2137, 3, 384, 192, 0, 2131, 2137, 3, 260, 130, 0, 2132, 2137, 3, 286, 143, 0, 2133, 2137, 3, 288, 144, 0, 2134, 2137, 3, 290, 145, 0, 2135, 2137, 3, 292, 146, 0, 2136, 2128, 1, 0, 0, 0, 2136, 2129, 1, 0, 0, 0, 2136, 2130, 1, 0, 0, 0, 2136, 2131, 1, 0, 0, 0, 2136, 2132, 1, 0, 0, 0, 2136, 2133, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2136, 2135, 1, 0, 0, 0, 2137, 285, 1, 0, 0, 0, 2138, 2142, 3, 54, 27, 0, 2139, 2140, 3, 344, 172, 0, 2140, 2141, 3, 60, 30, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2139, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2152, 1, 0, 0, 0, 2144, 2149, 3, 344, 172, 0, 2145, 2149, 5, 246, 0, 0, 2146, 2147, 5, 104, 0, 0, 2147, 2149, 3, 270, 135, 0, 2148, 2144, 1, 0, 0, 0, 2148, 2145, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 5, 255, 0, 0, 2151, 2153, 5, 121, 0, 0, 2152, 2148, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2162, 1, 0, 0, 0, 2154, 2159, 3, 344, 172, 0, 2155, 2159, 5, 246, 0, 0, 2156, 2157, 5, 104, 0, 0, 2157, 2159, 3, 270, 135, 0, 2158, 2154, 1, 0, 0, 0, 2158, 2155, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 5, 255, 0, 0, 2161, 2163, 3, 344, 172, 0, 2162, 2158, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 287, 1, 0, 0, 0, 2164, 2176, 3, 54, 27, 0, 2165, 2171, 5, 438, 0, 0, 2166, 2168, 5, 436, 0, 0, 2167, 2169, 3, 344, 172, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2165, 1, 0, 0, 0, 2170, 2166, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2174, 5, 13, 0, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 3, 344, 172, 0, 2176, 2170, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2182, 1, 0, 0, 0, 2178, 2179, 3, 266, 133, 0, 2179, 2180, 5, 255, 0, 0, 2180, 2181, 5, 121, 0, 0, 2181, 2183, 1, 0, 0, 0, 2182, 2178, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2188, 1, 0, 0, 0, 2184, 2185, 3, 266, 133, 0, 2185, 2186, 5, 255, 0, 0, 2186, 2187, 3, 344, 172, 0, 2187, 2189, 1, 0, 0, 0, 2188, 2184, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 289, 1, 0, 0, 0, 2190, 2192, 5, 469, 0, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2195, 3, 54, 27, 0, 2194, 2196, 5, 416, 0, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2207, 1, 0, 0, 0, 2197, 2208, 3, 270, 135, 0, 2198, 2199, 5, 187, 0, 0, 2199, 2203, 5, 519, 0, 0, 2200, 2202, 3, 270, 135, 0, 2201, 2200, 1, 0, 0, 0, 2202, 2205, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2206, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2206, 2208, 5, 520, 0, 0, 2207, 2197, 1, 0, 0, 0, 2207, 2198, 1, 0, 0, 0, 2208, 2210, 1, 0, 0, 0, 2209, 2191, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2220, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2217, 5, 246, 0, 0, 2215, 2217, 3, 344, 172, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2219, 5, 255, 0, 0, 2219, 2221, 5, 246, 0, 0, 2220, 2216, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 291, 1, 0, 0, 0, 2222, 2224, 3, 270, 135, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2234, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2231, 5, 246, 0, 0, 2229, 2231, 3, 344, 172, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2229, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 5, 255, 0, 0, 2233, 2235, 5, 246, 0, 0, 2234, 2230, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 293, 1, 0, 0, 0, 2236, 2237, 3, 344, 172, 0, 2237, 295, 1, 0, 0, 0, 2238, 2241, 3, 320, 160, 0, 2239, 2241, 3, 294, 147, 0, 2240, 2238, 1, 0, 0, 0, 2240, 2239, 1, 0, 0, 0, 2241, 297, 1, 0, 0, 0, 2242, 2245, 5, 183, 0, 0, 2243, 2246, 3, 300, 150, 0, 2244, 2246, 3, 304, 152, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 299, 1, 0, 0, 0, 2247, 2249, 3, 302, 151, 0, 2248, 2250, 3, 306, 153, 0, 2249, 2248, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 301, 1, 0, 0, 0, 2251, 2252, 3, 308, 154, 0, 2252, 2253, 3, 386, 193, 0, 2253, 2255, 1, 0, 0, 0, 2254, 2251, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 303, 1, 0, 0, 0, 2258, 2261, 3, 306, 153, 0, 2259, 2262, 3, 302, 151, 0, 2260, 2262, 3, 306, 153, 0, 2261, 2259, 1, 0, 0, 0, 2261, 2260, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 305, 1, 0, 0, 0, 2263, 2264, 3, 308, 154, 0, 2264, 2265, 3, 386, 193, 0, 2265, 2266, 5, 390, 0, 0, 2266, 2267, 3, 386, 193, 0, 2267, 307, 1, 0, 0, 0, 2268, 2270, 7, 34, 0, 0, 2269, 2268, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2274, 7, 35, 0, 0, 2272, 2274, 5, 540, 0, 0, 2273, 2269, 1, 0, 0, 0, 2273, 2272, 1, 0, 0, 0, 2274, 309, 1, 0, 0, 0, 2275, 2277, 5, 17, 0, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2280, 3, 320, 160, 0, 2279, 2281, 3, 316, 158, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 311, 1, 0, 0, 0, 2282, 2283, 3, 320, 160, 0, 2283, 2284, 3, 314, 157, 0, 2284, 313, 1, 0, 0, 0, 2285, 2286, 5, 223, 0, 0, 2286, 2288, 3, 320, 160, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2287, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2293, 1, 0, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2287, 1, 0, 0, 0, 2292, 2291, 1, 0, 0, 0, 2293, 315, 1, 0, 0, 0, 2294, 2295, 5, 519, 0, 0, 2295, 2296, 3, 318, 159, 0, 2296, 2297, 5, 520, 0, 0, 2297, 317, 1, 0, 0, 0, 2298, 2303, 3, 320, 160, 0, 2299, 2300, 5, 523, 0, 0, 2300, 2302, 3, 320, 160, 0, 2301, 2299, 1, 0, 0, 0, 2302, 2305, 1, 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 319, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2306, 2310, 3, 322, 161, 0, 2307, 2310, 3, 324, 162, 0, 2308, 2310, 3, 396, 198, 0, 2309, 2306, 1, 0, 0, 0, 2309, 2307, 1, 0, 0, 0, 2309, 2308, 1, 0, 0, 0, 2310, 321, 1, 0, 0, 0, 2311, 2312, 7, 36, 0, 0, 2312, 323, 1, 0, 0, 0, 2313, 2314, 5, 540, 0, 0, 2314, 325, 1, 0, 0, 0, 2315, 2316, 5, 431, 0, 0, 2316, 2317, 3, 260, 130, 0, 2317, 2318, 5, 378, 0, 0, 2318, 2319, 3, 260, 130, 0, 2319, 327, 1, 0, 0, 0, 2320, 2321, 3, 320, 160, 0, 2321, 329, 1, 0, 0, 0, 2322, 2323, 3, 320, 160, 0, 2323, 331, 1, 0, 0, 0, 2324, 2327, 3, 320, 160, 0, 2325, 2326, 5, 516, 0, 0, 2326, 2328, 3, 320, 160, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 333, 1, 0, 0, 0, 2329, 2332, 3, 320, 160, 0, 2330, 2331, 5, 516, 0, 0, 2331, 2333, 3, 320, 160, 0, 2332, 2330, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 335, 1, 0, 0, 0, 2334, 2337, 3, 320, 160, 0, 2335, 2336, 5, 516, 0, 0, 2336, 2338, 3, 320, 160, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2347, 1, 0, 0, 0, 2339, 2340, 3, 320, 160, 0, 2340, 2341, 5, 516, 0, 0, 2341, 2344, 3, 320, 160, 0, 2342, 2343, 5, 516, 0, 0, 2343, 2345, 3, 320, 160, 0, 2344, 2342, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2347, 1, 0, 0, 0, 2346, 2334, 1, 0, 0, 0, 2346, 2339, 1, 0, 0, 0, 2347, 337, 1, 0, 0, 0, 2348, 2351, 3, 320, 160, 0, 2349, 2350, 5, 516, 0, 0, 2350, 2352, 3, 320, 160, 0, 2351, 2349, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2361, 1, 0, 0, 0, 2353, 2354, 3, 320, 160, 0, 2354, 2355, 5, 516, 0, 0, 2355, 2358, 3, 320, 160, 0, 2356, 2357, 5, 516, 0, 0, 2357, 2359, 3, 320, 160, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 1, 0, 0, 0, 2360, 2348, 1, 0, 0, 0, 2360, 2353, 1, 0, 0, 0, 2361, 339, 1, 0, 0, 0, 2362, 2365, 3, 320, 160, 0, 2363, 2364, 5, 516, 0, 0, 2364, 2366, 3, 320, 160, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2375, 1, 0, 0, 0, 2367, 2368, 3, 320, 160, 0, 2368, 2369, 5, 516, 0, 0, 2369, 2372, 3, 320, 160, 0, 2370, 2371, 5, 516, 0, 0, 2371, 2373, 3, 320, 160, 0, 2372, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2375, 1, 0, 0, 0, 2374, 2362, 1, 0, 0, 0, 2374, 2367, 1, 0, 0, 0, 2375, 341, 1, 0, 0, 0, 2376, 2379, 3, 320, 160, 0, 2377, 2378, 5, 516, 0, 0, 2378, 2380, 3, 320, 160, 0, 2379, 2377, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2389, 1, 0, 0, 0, 2381, 2382, 3, 320, 160, 0, 2382, 2383, 5, 516, 0, 0, 2383, 2386, 3, 320, 160, 0, 2384, 2385, 5, 516, 0, 0, 2385, 2387, 3, 320, 160, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2376, 1, 0, 0, 0, 2388, 2381, 1, 0, 0, 0, 2389, 343, 1, 0, 0, 0, 2390, 2395, 3, 320, 160, 0, 2391, 2392, 5, 516, 0, 0, 2392, 2394, 3, 320, 160, 0, 2393, 2391, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 345, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2398, 2403, 3, 320, 160, 0, 2399, 2400, 5, 516, 0, 0, 2400, 2402, 3, 320, 160, 0, 2401, 2399, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2412, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2407, 4, 173, 16, 0, 2407, 2408, 3, 320, 160, 0, 2408, 2409, 5, 516, 0, 0, 2409, 2410, 3, 50, 25, 0, 2410, 2412, 1, 0, 0, 0, 2411, 2398, 1, 0, 0, 0, 2411, 2406, 1, 0, 0, 0, 2412, 347, 1, 0, 0, 0, 2413, 2414, 5, 436, 0, 0, 2414, 2415, 3, 354, 177, 0, 2415, 349, 1, 0, 0, 0, 2416, 2417, 5, 168, 0, 0, 2417, 2418, 5, 243, 0, 0, 2418, 2419, 5, 133, 0, 0, 2419, 351, 1, 0, 0, 0, 2420, 2421, 5, 168, 0, 0, 2421, 2422, 5, 133, 0, 0, 2422, 353, 1, 0, 0, 0, 2423, 2424, 5, 519, 0, 0, 2424, 2429, 3, 356, 178, 0, 2425, 2426, 5, 523, 0, 0, 2426, 2428, 3, 356, 178, 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, 2432, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2433, 5, 520, 0, 0, 2433, 355, 1, 0, 0, 0, 2434, 2439, 3, 358, 179, 0, 2435, 2437, 5, 508, 0, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2440, 3, 360, 180, 0, 2439, 2436, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 357, 1, 0, 0, 0, 2441, 2445, 3, 320, 160, 0, 2442, 2445, 3, 294, 147, 0, 2443, 2445, 5, 540, 0, 0, 2444, 2441, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2444, 2443, 1, 0, 0, 0, 2445, 359, 1, 0, 0, 0, 2446, 2451, 5, 541, 0, 0, 2447, 2451, 5, 542, 0, 0, 2448, 2451, 3, 380, 190, 0, 2449, 2451, 5, 540, 0, 0, 2450, 2446, 1, 0, 0, 0, 2450, 2447, 1, 0, 0, 0, 2450, 2448, 1, 0, 0, 0, 2450, 2449, 1, 0, 0, 0, 2451, 361, 1, 0, 0, 0, 2452, 2459, 5, 10, 0, 0, 2453, 2454, 5, 514, 0, 0, 2454, 2459, 5, 514, 0, 0, 2455, 2459, 5, 259, 0, 0, 2456, 2457, 5, 513, 0, 0, 2457, 2459, 5, 513, 0, 0, 2458, 2452, 1, 0, 0, 0, 2458, 2453, 1, 0, 0, 0, 2458, 2455, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 363, 1, 0, 0, 0, 2460, 2475, 5, 508, 0, 0, 2461, 2475, 5, 509, 0, 0, 2462, 2475, 5, 510, 0, 0, 2463, 2464, 5, 510, 0, 0, 2464, 2475, 5, 508, 0, 0, 2465, 2466, 5, 509, 0, 0, 2466, 2475, 5, 508, 0, 0, 2467, 2468, 5, 510, 0, 0, 2468, 2475, 5, 509, 0, 0, 2469, 2470, 5, 511, 0, 0, 2470, 2475, 5, 508, 0, 0, 2471, 2472, 5, 510, 0, 0, 2472, 2473, 5, 508, 0, 0, 2473, 2475, 5, 509, 0, 0, 2474, 2460, 1, 0, 0, 0, 2474, 2461, 1, 0, 0, 0, 2474, 2462, 1, 0, 0, 0, 2474, 2463, 1, 0, 0, 0, 2474, 2465, 1, 0, 0, 0, 2474, 2467, 1, 0, 0, 0, 2474, 2469, 1, 0, 0, 0, 2474, 2471, 1, 0, 0, 0, 2475, 365, 1, 0, 0, 0, 2476, 2477, 5, 510, 0, 0, 2477, 2484, 5, 510, 0, 0, 2478, 2479, 5, 509, 0, 0, 2479, 2484, 5, 509, 0, 0, 2480, 2484, 5, 514, 0, 0, 2481, 2484, 5, 515, 0, 0, 2482, 2484, 5, 513, 0, 0, 2483, 2476, 1, 0, 0, 0, 2483, 2478, 1, 0, 0, 0, 2483, 2480, 1, 0, 0, 0, 2483, 2481, 1, 0, 0, 0, 2483, 2482, 1, 0, 0, 0, 2484, 367, 1, 0, 0, 0, 2485, 2486, 7, 37, 0, 0, 2486, 369, 1, 0, 0, 0, 2487, 2488, 7, 38, 0, 0, 2488, 371, 1, 0, 0, 0, 2489, 2504, 3, 298, 149, 0, 2490, 2504, 3, 374, 187, 0, 2491, 2504, 3, 376, 188, 0, 2492, 2494, 5, 532, 0, 0, 2493, 2492, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2504, 3, 378, 189, 0, 2496, 2504, 3, 380, 190, 0, 2497, 2504, 5, 542, 0, 0, 2498, 2504, 5, 543, 0, 0, 2499, 2501, 5, 243, 0, 0, 2500, 2499, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 5, 246, 0, 0, 2503, 2489, 1, 0, 0, 0, 2503, 2490, 1, 0, 0, 0, 2503, 2491, 1, 0, 0, 0, 2503, 2493, 1, 0, 0, 0, 2503, 2496, 1, 0, 0, 0, 2503, 2497, 1, 0, 0, 0, 2503, 2498, 1, 0, 0, 0, 2503, 2500, 1, 0, 0, 0, 2504, 373, 1, 0, 0, 0, 2505, 2506, 3, 384, 192, 0, 2506, 2507, 3, 376, 188, 0, 2507, 375, 1, 0, 0, 0, 2508, 2509, 5, 540, 0, 0, 2509, 377, 1, 0, 0, 0, 2510, 2511, 5, 541, 0, 0, 2511, 379, 1, 0, 0, 0, 2512, 2513, 7, 39, 0, 0, 2513, 381, 1, 0, 0, 0, 2514, 2515, 7, 40, 0, 0, 2515, 383, 1, 0, 0, 0, 2516, 2517, 7, 41, 0, 0, 2517, 385, 1, 0, 0, 0, 2518, 2519, 7, 42, 0, 0, 2519, 387, 1, 0, 0, 0, 2520, 2521, 7, 43, 0, 0, 2521, 389, 1, 0, 0, 0, 2522, 2523, 7, 44, 0, 0, 2523, 391, 1, 0, 0, 0, 2524, 2525, 7, 45, 0, 0, 2525, 393, 1, 0, 0, 0, 2526, 2527, 7, 46, 0, 0, 2527, 395, 1, 0, 0, 0, 2528, 2529, 7, 47, 0, 0, 2529, 397, 1, 0, 0, 0, 314, 401, 408, 411, 425, 441, 445, 454, 459, 466, 477, 486, 498, 501, 508, 511, 519, 523, 528, 531, 538, 546, 550, 562, 570, 574, 606, 609, 614, 618, 622, 626, 635, 640, 644, 648, 653, 663, 668, 672, 677, 683, 688, 693, 697, 701, 708, 715, 723, 731, 735, 739, 743, 747, 751, 755, 759, 763, 765, 775, 783, 807, 821, 826, 830, 836, 839, 842, 849, 852, 859, 869, 890, 895, 899, 907, 911, 917, 927, 932, 938, 942, 946, 950, 959, 963, 970, 973, 983, 989, 997, 1001, 1017, 1033, 1044, 1048, 1055, 1060, 1066, 1070, 1077, 1081, 1085, 1089, 1097, 1101, 1106, 1112, 1119, 1122, 1126, 1134, 1143, 1150, 1161, 1173, 1188, 1191, 1195, 1198, 1200, 1205, 1209, 1212, 1216, 1225, 1234, 1244, 1249, 1258, 1261, 1264, 1267, 1270, 1276, 1280, 1289, 1296, 1299, 1303, 1308, 1311, 1315, 1324, 1331, 1334, 1338, 1341, 1343, 1350, 1355, 1371, 1382, 1387, 1395, 1398, 1401, 1406, 1408, 1410, 1415, 1418, 1422, 1426, 1430, 1439, 1450, 1475, 1497, 1511, 1513, 1517, 1522, 1531, 1544, 1556, 1569, 1575, 1595, 1603, 1607, 1610, 1613, 1620, 1623, 1626, 1629, 1632, 1635, 1640, 1643, 1652, 1657, 1660, 1664, 1669, 1675, 1680, 1684, 1703, 1711, 1719, 1723, 1727, 1737, 1763, 1771, 1789, 1802, 1810, 1827, 1829, 1840, 1843, 1845, 1849, 1853, 1860, 1869, 1875, 1888, 1895, 1900, 1906, 1913, 1920, 1922, 1932, 1935, 1947, 1952, 1955, 1961, 1963, 1969, 1990, 1992, 2000, 2007, 2010, 2014, 2021, 2025, 2034, 2038, 2054, 2063, 2098, 2107, 2116, 2122, 2126, 2136, 2142, 2148, 2152, 2158, 2162, 2168, 2170, 2173, 2176, 2182, 2188, 2191, 2195, 2203, 2207, 2211, 2216, 2220, 2225, 2230, 2234, 2240, 2245, 2249, 2256, 2261, 2269, 2273, 2276, 2280, 2289, 2292, 2303, 2309, 2327, 2332, 2337, 2344, 2346, 2351, 2358, 2360, 2365, 2372, 2374, 2379, 2386, 2388, 2395, 2403, 2411, 2429, 2436, 2439, 2444, 2450, 2458, 2474, 2483, 2493, 2500, 2503] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 1b0406a4..dd6421c0 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -564,216 +564,202 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_sqlStatement = 2; - public static readonly RULE_emptyStatement = 3; - public static readonly RULE_ddlStatement = 4; - public static readonly RULE_dmlStatement = 5; - public static readonly RULE_describeStatement = 6; - public static readonly RULE_explainStatement = 7; - public static readonly RULE_explainDetails = 8; - public static readonly RULE_explainDetail = 9; - public static readonly RULE_useStatement = 10; - public static readonly RULE_useModuleStatement = 11; - public static readonly RULE_showStatement = 12; - public static readonly RULE_loadStatement = 13; - public static readonly RULE_unloadStatement = 14; - public static readonly RULE_setStatement = 15; - public static readonly RULE_resetStatement = 16; - public static readonly RULE_jarStatement = 17; - public static readonly RULE_dtAddStatement = 18; - public static readonly RULE_dtFilePath = 19; - public static readonly RULE_createTable = 20; - public static readonly RULE_simpleCreateTable = 21; - public static readonly RULE_createTableAsSelect = 22; - public static readonly RULE_columnOptionDefinition = 23; - public static readonly RULE_physicalColumnDefinition = 24; - public static readonly RULE_columnNameCreate = 25; - public static readonly RULE_emptyColumn = 26; - public static readonly RULE_columnName = 27; - public static readonly RULE_columnNamePath = 28; - public static readonly RULE_columnNamePathAllowEmpty = 29; - public static readonly RULE_columnNameList = 30; - public static readonly RULE_columnType = 31; - public static readonly RULE_lengthOneDimension = 32; - public static readonly RULE_lengthTwoOptionalDimension = 33; - public static readonly RULE_lengthTwoStringDimension = 34; - public static readonly RULE_lengthOneTypeDimension = 35; - public static readonly RULE_mapTypeDimension = 36; - public static readonly RULE_rowTypeDimension = 37; - public static readonly RULE_columnConstraint = 38; - public static readonly RULE_metadataColumnDefinition = 39; - public static readonly RULE_metadataKey = 40; - public static readonly RULE_computedColumnDefinition = 41; - public static readonly RULE_computedColumnExpression = 42; - public static readonly RULE_watermarkDefinition = 43; - public static readonly RULE_tableConstraint = 44; - public static readonly RULE_constraintName = 45; - public static readonly RULE_selfDefinitionClause = 46; - public static readonly RULE_partitionDefinition = 47; - public static readonly RULE_transformList = 48; - public static readonly RULE_transform = 49; - public static readonly RULE_transformArgument = 50; - public static readonly RULE_likeDefinition = 51; - public static readonly RULE_likeOption = 52; - public static readonly RULE_createCatalog = 53; - public static readonly RULE_createDatabase = 54; - public static readonly RULE_createView = 55; - public static readonly RULE_createFunction = 56; - public static readonly RULE_usingClause = 57; - public static readonly RULE_jarFileName = 58; - public static readonly RULE_alterTable = 59; - public static readonly RULE_renameDefinition = 60; - public static readonly RULE_setKeyValueDefinition = 61; - public static readonly RULE_addConstraint = 62; - public static readonly RULE_dropConstraint = 63; - public static readonly RULE_addUnique = 64; - public static readonly RULE_notForced = 65; - public static readonly RULE_alterView = 66; - public static readonly RULE_alterDatabase = 67; - public static readonly RULE_alterFunction = 68; - public static readonly RULE_dropCatalog = 69; - public static readonly RULE_dropTable = 70; - public static readonly RULE_dropDatabase = 71; - public static readonly RULE_dropView = 72; - public static readonly RULE_dropFunction = 73; - public static readonly RULE_insertStatement = 74; - public static readonly RULE_insertSimpleStatement = 75; - public static readonly RULE_insertPartitionDefinition = 76; - public static readonly RULE_valuesDefinition = 77; - public static readonly RULE_valuesRowDefinition = 78; - public static readonly RULE_valueDefinition = 79; - public static readonly RULE_insertMulStatementCompatibility = 80; - public static readonly RULE_insertMulStatement = 81; - public static readonly RULE_queryStatement = 82; - public static readonly RULE_valuesClause = 83; - public static readonly RULE_withClause = 84; - public static readonly RULE_withItem = 85; - public static readonly RULE_withItemName = 86; - public static readonly RULE_selectStatement = 87; - public static readonly RULE_selectClause = 88; - public static readonly RULE_selectList = 89; - public static readonly RULE_columnProjectItem = 90; - public static readonly RULE_selectWindowItemColumnName = 91; - public static readonly RULE_selectExpressionColumnName = 92; - public static readonly RULE_selectLiteralColumnName = 93; - public static readonly RULE_columnAlias = 94; - public static readonly RULE_projectItemDefinition = 95; - public static readonly RULE_tableAllColumns = 96; - public static readonly RULE_overWindowItem = 97; - public static readonly RULE_fromClause = 98; - public static readonly RULE_tableExpression = 99; - public static readonly RULE_tableReference = 100; - public static readonly RULE_tablePrimary = 101; - public static readonly RULE_atomFunctionTable = 102; - public static readonly RULE_atomExpressionTable = 103; - public static readonly RULE_systemTimePeriod = 104; - public static readonly RULE_dateTimeExpression = 105; - public static readonly RULE_inlineDataValueClause = 106; - public static readonly RULE_windowTVFClause = 107; - public static readonly RULE_windowTVFExpression = 108; - public static readonly RULE_windowTVFName = 109; - public static readonly RULE_windowTVFParam = 110; - public static readonly RULE_timeIntervalParamName = 111; - public static readonly RULE_columnDescriptor = 112; - public static readonly RULE_joinCondition = 113; - public static readonly RULE_whereClause = 114; - public static readonly RULE_groupByClause = 115; - public static readonly RULE_groupItemDefinition = 116; - public static readonly RULE_groupingSets = 117; - public static readonly RULE_groupingSetsNotationName = 118; - public static readonly RULE_groupWindowFunction = 119; - public static readonly RULE_groupWindowFunctionName = 120; - public static readonly RULE_timeAttrColumn = 121; - public static readonly RULE_havingClause = 122; - public static readonly RULE_windowClause = 123; - public static readonly RULE_namedWindow = 124; - public static readonly RULE_windowSpec = 125; - public static readonly RULE_matchRecognizeClause = 126; - public static readonly RULE_orderByClause = 127; - public static readonly RULE_orderItemDefinition = 128; - public static readonly RULE_limitClause = 129; - public static readonly RULE_partitionByClause = 130; - public static readonly RULE_quantifiers = 131; - public static readonly RULE_measuresClause = 132; - public static readonly RULE_patternDefinition = 133; - public static readonly RULE_patternVariable = 134; - public static readonly RULE_outputMode = 135; - public static readonly RULE_afterMatchStrategy = 136; - public static readonly RULE_patternVariablesDefinition = 137; - public static readonly RULE_windowFrame = 138; - public static readonly RULE_frameBound = 139; - public static readonly RULE_frameStart = 140; - public static readonly RULE_frameEnd = 141; - public static readonly RULE_withinClause = 142; - public static readonly RULE_expression = 143; - public static readonly RULE_booleanExpression = 144; - public static readonly RULE_predicate = 145; - public static readonly RULE_jsonFunctionBranch = 146; - public static readonly RULE_likePredicate = 147; - public static readonly RULE_valueExpression = 148; - public static readonly RULE_functionCallExpression = 149; - public static readonly RULE_primaryExpression = 150; - public static readonly RULE_functionNameCreate = 151; - public static readonly RULE_functionName = 152; - public static readonly RULE_functionNameAndParams = 153; - public static readonly RULE_functionNameWithParams = 154; - public static readonly RULE_functionParam = 155; - public static readonly RULE_jsonValueParams = 156; - public static readonly RULE_jsonQueryParams = 157; - public static readonly RULE_jsonObjectParams = 158; - public static readonly RULE_jsonArrayParams = 159; - public static readonly RULE_dereferenceDefinition = 160; - public static readonly RULE_correlationName = 161; - public static readonly RULE_qualifiedName = 162; - public static readonly RULE_timeIntervalExpression = 163; - public static readonly RULE_errorCapturingMultiUnitsInterval = 164; - public static readonly RULE_multiUnitsInterval = 165; - public static readonly RULE_errorCapturingUnitToUnitInterval = 166; - public static readonly RULE_unitToUnitInterval = 167; - public static readonly RULE_intervalValue = 168; - public static readonly RULE_tableAlias = 169; - public static readonly RULE_errorCapturingIdentifier = 170; - public static readonly RULE_errorCapturingIdentifierExtra = 171; - public static readonly RULE_identifierList = 172; - public static readonly RULE_identifierSeq = 173; - public static readonly RULE_identifier = 174; - public static readonly RULE_unquotedIdentifier = 175; - public static readonly RULE_quotedIdentifier = 176; - public static readonly RULE_whenClause = 177; - public static readonly RULE_catalogPath = 178; - public static readonly RULE_catalogPathCreate = 179; - public static readonly RULE_databasePath = 180; - public static readonly RULE_databasePathCreate = 181; - public static readonly RULE_tablePathCreate = 182; - public static readonly RULE_tablePath = 183; - public static readonly RULE_viewPath = 184; - public static readonly RULE_viewPathCreate = 185; - public static readonly RULE_uid = 186; - public static readonly RULE_uidAllowEmpty = 187; - public static readonly RULE_withOption = 188; - public static readonly RULE_ifNotExists = 189; - public static readonly RULE_ifExists = 190; - public static readonly RULE_tablePropertyList = 191; - public static readonly RULE_tableProperty = 192; - public static readonly RULE_tablePropertyKey = 193; - public static readonly RULE_tablePropertyValue = 194; - public static readonly RULE_logicalOperator = 195; - public static readonly RULE_comparisonOperator = 196; - public static readonly RULE_bitOperator = 197; - public static readonly RULE_mathOperator = 198; - public static readonly RULE_unaryOperator = 199; - public static readonly RULE_constant = 200; - public static readonly RULE_timePointLiteral = 201; - public static readonly RULE_stringLiteral = 202; - public static readonly RULE_decimalLiteral = 203; - public static readonly RULE_booleanLiteral = 204; - public static readonly RULE_setQuantifier = 205; - public static readonly RULE_timePointUnit = 206; - public static readonly RULE_timeIntervalUnit = 207; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 208; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 209; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 210; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 211; - public static readonly RULE_nonReservedKeywords = 212; + public static readonly RULE_ddlStatement = 3; + public static readonly RULE_dmlStatement = 4; + public static readonly RULE_describeStatement = 5; + public static readonly RULE_explainStatement = 6; + public static readonly RULE_explainDetails = 7; + public static readonly RULE_explainDetail = 8; + public static readonly RULE_useStatement = 9; + public static readonly RULE_useModuleStatement = 10; + public static readonly RULE_showStatement = 11; + public static readonly RULE_loadStatement = 12; + public static readonly RULE_unloadStatement = 13; + public static readonly RULE_setStatement = 14; + public static readonly RULE_resetStatement = 15; + public static readonly RULE_jarStatement = 16; + public static readonly RULE_dtAddStatement = 17; + public static readonly RULE_dtFilePath = 18; + public static readonly RULE_createTable = 19; + public static readonly RULE_simpleCreateTable = 20; + public static readonly RULE_createTableAsSelect = 21; + public static readonly RULE_columnOptionDefinition = 22; + public static readonly RULE_physicalColumnDefinition = 23; + public static readonly RULE_columnNameCreate = 24; + public static readonly RULE_emptyColumn = 25; + public static readonly RULE_columnName = 26; + public static readonly RULE_columnNamePath = 27; + public static readonly RULE_columnNamePathAllowEmpty = 28; + public static readonly RULE_columnNameList = 29; + public static readonly RULE_columnType = 30; + public static readonly RULE_lengthOneDimension = 31; + public static readonly RULE_lengthTwoOptionalDimension = 32; + public static readonly RULE_lengthTwoStringDimension = 33; + public static readonly RULE_lengthOneTypeDimension = 34; + public static readonly RULE_mapTypeDimension = 35; + public static readonly RULE_rowTypeDimension = 36; + public static readonly RULE_columnConstraint = 37; + public static readonly RULE_metadataColumnDefinition = 38; + public static readonly RULE_computedColumnDefinition = 39; + public static readonly RULE_watermarkDefinition = 40; + public static readonly RULE_tableConstraint = 41; + public static readonly RULE_constraintName = 42; + public static readonly RULE_selfDefinitionClause = 43; + public static readonly RULE_transform = 44; + public static readonly RULE_transformArgument = 45; + public static readonly RULE_likeDefinition = 46; + public static readonly RULE_likeOption = 47; + public static readonly RULE_createCatalog = 48; + public static readonly RULE_createDatabase = 49; + public static readonly RULE_createView = 50; + public static readonly RULE_createFunction = 51; + public static readonly RULE_usingClause = 52; + public static readonly RULE_alterTable = 53; + public static readonly RULE_renameDefinition = 54; + public static readonly RULE_setKeyValueDefinition = 55; + public static readonly RULE_addConstraint = 56; + public static readonly RULE_dropConstraint = 57; + public static readonly RULE_addUnique = 58; + public static readonly RULE_alterView = 59; + public static readonly RULE_alterDatabase = 60; + public static readonly RULE_alterFunction = 61; + public static readonly RULE_dropCatalog = 62; + public static readonly RULE_dropTable = 63; + public static readonly RULE_dropDatabase = 64; + public static readonly RULE_dropView = 65; + public static readonly RULE_dropFunction = 66; + public static readonly RULE_insertStatement = 67; + public static readonly RULE_insertSimpleStatement = 68; + public static readonly RULE_valuesDefinition = 69; + public static readonly RULE_valuesRowDefinition = 70; + public static readonly RULE_valueDefinition = 71; + public static readonly RULE_insertMulStatementCompatibility = 72; + public static readonly RULE_insertMulStatement = 73; + public static readonly RULE_queryStatement = 74; + public static readonly RULE_valuesClause = 75; + public static readonly RULE_withClause = 76; + public static readonly RULE_withItem = 77; + public static readonly RULE_selectStatement = 78; + public static readonly RULE_selectClause = 79; + public static readonly RULE_selectList = 80; + public static readonly RULE_columnProjectItem = 81; + public static readonly RULE_selectWindowItemColumnName = 82; + public static readonly RULE_selectExpressionColumnName = 83; + public static readonly RULE_selectLiteralColumnName = 84; + public static readonly RULE_columnAlias = 85; + public static readonly RULE_projectItemDefinition = 86; + public static readonly RULE_tableAllColumns = 87; + public static readonly RULE_overWindowItem = 88; + public static readonly RULE_fromClause = 89; + public static readonly RULE_tableExpression = 90; + public static readonly RULE_tableReference = 91; + public static readonly RULE_tablePrimary = 92; + public static readonly RULE_atomFunctionTable = 93; + public static readonly RULE_atomExpressionTable = 94; + public static readonly RULE_systemTimePeriod = 95; + public static readonly RULE_inlineDataValueClause = 96; + public static readonly RULE_windowTVFClause = 97; + public static readonly RULE_windowTVFExpression = 98; + public static readonly RULE_windowTVFName = 99; + public static readonly RULE_windowTVFParam = 100; + public static readonly RULE_timeIntervalParamName = 101; + public static readonly RULE_columnDescriptor = 102; + public static readonly RULE_joinCondition = 103; + public static readonly RULE_whereClause = 104; + public static readonly RULE_groupByClause = 105; + public static readonly RULE_groupItemDefinition = 106; + public static readonly RULE_groupWindowFunction = 107; + public static readonly RULE_groupWindowFunctionName = 108; + public static readonly RULE_havingClause = 109; + public static readonly RULE_windowClause = 110; + public static readonly RULE_namedWindow = 111; + public static readonly RULE_windowSpec = 112; + public static readonly RULE_matchRecognizeClause = 113; + public static readonly RULE_orderByClause = 114; + public static readonly RULE_orderItemDefinition = 115; + public static readonly RULE_limitClause = 116; + public static readonly RULE_partitionByClause = 117; + public static readonly RULE_quantifiers = 118; + public static readonly RULE_measuresClause = 119; + public static readonly RULE_patternDefinition = 120; + public static readonly RULE_patternVariable = 121; + public static readonly RULE_outputMode = 122; + public static readonly RULE_afterMatchStrategy = 123; + public static readonly RULE_patternVariablesDefinition = 124; + public static readonly RULE_windowFrame = 125; + public static readonly RULE_frameBound = 126; + public static readonly RULE_frameStart = 127; + public static readonly RULE_frameEnd = 128; + public static readonly RULE_withinClause = 129; + public static readonly RULE_expression = 130; + public static readonly RULE_booleanExpression = 131; + public static readonly RULE_predicate = 132; + public static readonly RULE_jsonFunctionBranch = 133; + public static readonly RULE_likePredicate = 134; + public static readonly RULE_valueExpression = 135; + public static readonly RULE_functionCallExpression = 136; + public static readonly RULE_primaryExpression = 137; + public static readonly RULE_functionNameCreate = 138; + public static readonly RULE_functionName = 139; + public static readonly RULE_functionNameAndParams = 140; + public static readonly RULE_functionNameWithParams = 141; + public static readonly RULE_functionParam = 142; + public static readonly RULE_jsonValueParams = 143; + public static readonly RULE_jsonQueryParams = 144; + public static readonly RULE_jsonObjectParams = 145; + public static readonly RULE_jsonArrayParams = 146; + public static readonly RULE_dereferenceDefinition = 147; + public static readonly RULE_qualifiedName = 148; + public static readonly RULE_timeIntervalExpression = 149; + public static readonly RULE_errorCapturingMultiUnitsInterval = 150; + public static readonly RULE_multiUnitsInterval = 151; + public static readonly RULE_errorCapturingUnitToUnitInterval = 152; + public static readonly RULE_unitToUnitInterval = 153; + public static readonly RULE_intervalValue = 154; + public static readonly RULE_tableAlias = 155; + public static readonly RULE_errorCapturingIdentifier = 156; + public static readonly RULE_errorCapturingIdentifierExtra = 157; + public static readonly RULE_identifierList = 158; + public static readonly RULE_identifierSeq = 159; + public static readonly RULE_identifier = 160; + public static readonly RULE_unquotedIdentifier = 161; + public static readonly RULE_quotedIdentifier = 162; + public static readonly RULE_whenClause = 163; + public static readonly RULE_catalogPath = 164; + public static readonly RULE_catalogPathCreate = 165; + public static readonly RULE_databasePath = 166; + public static readonly RULE_databasePathCreate = 167; + public static readonly RULE_tablePathCreate = 168; + public static readonly RULE_tablePath = 169; + public static readonly RULE_viewPath = 170; + public static readonly RULE_viewPathCreate = 171; + public static readonly RULE_uid = 172; + public static readonly RULE_uidAllowEmpty = 173; + public static readonly RULE_withOption = 174; + public static readonly RULE_ifNotExists = 175; + public static readonly RULE_ifExists = 176; + public static readonly RULE_tablePropertyList = 177; + public static readonly RULE_tableProperty = 178; + public static readonly RULE_tablePropertyKey = 179; + public static readonly RULE_tablePropertyValue = 180; + public static readonly RULE_logicalOperator = 181; + public static readonly RULE_comparisonOperator = 182; + public static readonly RULE_bitOperator = 183; + public static readonly RULE_mathOperator = 184; + public static readonly RULE_unaryOperator = 185; + public static readonly RULE_constant = 186; + public static readonly RULE_timePointLiteral = 187; + public static readonly RULE_stringLiteral = 188; + public static readonly RULE_decimalLiteral = 189; + public static readonly RULE_booleanLiteral = 190; + public static readonly RULE_setQuantifier = 191; + public static readonly RULE_timePointUnit = 192; + public static readonly RULE_timeIntervalUnit = 193; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 194; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 195; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 196; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 197; + public static readonly RULE_nonReservedKeywords = 198; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -990,39 +976,35 @@ export class FlinkSqlParser extends SQLParserBase { "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL" ]; public static readonly ruleNames = [ - "program", "singleStatement", "sqlStatement", "emptyStatement", - "ddlStatement", "dmlStatement", "describeStatement", "explainStatement", - "explainDetails", "explainDetail", "useStatement", "useModuleStatement", - "showStatement", "loadStatement", "unloadStatement", "setStatement", - "resetStatement", "jarStatement", "dtAddStatement", "dtFilePath", - "createTable", "simpleCreateTable", "createTableAsSelect", "columnOptionDefinition", - "physicalColumnDefinition", "columnNameCreate", "emptyColumn", "columnName", - "columnNamePath", "columnNamePathAllowEmpty", "columnNameList", - "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", - "lengthTwoStringDimension", "lengthOneTypeDimension", "mapTypeDimension", - "rowTypeDimension", "columnConstraint", "metadataColumnDefinition", - "metadataKey", "computedColumnDefinition", "computedColumnExpression", - "watermarkDefinition", "tableConstraint", "constraintName", "selfDefinitionClause", - "partitionDefinition", "transformList", "transform", "transformArgument", + "program", "singleStatement", "sqlStatement", "ddlStatement", "dmlStatement", + "describeStatement", "explainStatement", "explainDetails", "explainDetail", + "useStatement", "useModuleStatement", "showStatement", "loadStatement", + "unloadStatement", "setStatement", "resetStatement", "jarStatement", + "dtAddStatement", "dtFilePath", "createTable", "simpleCreateTable", + "createTableAsSelect", "columnOptionDefinition", "physicalColumnDefinition", + "columnNameCreate", "emptyColumn", "columnName", "columnNamePath", + "columnNamePathAllowEmpty", "columnNameList", "columnType", "lengthOneDimension", + "lengthTwoOptionalDimension", "lengthTwoStringDimension", "lengthOneTypeDimension", + "mapTypeDimension", "rowTypeDimension", "columnConstraint", "metadataColumnDefinition", + "computedColumnDefinition", "watermarkDefinition", "tableConstraint", + "constraintName", "selfDefinitionClause", "transform", "transformArgument", "likeDefinition", "likeOption", "createCatalog", "createDatabase", - "createView", "createFunction", "usingClause", "jarFileName", "alterTable", - "renameDefinition", "setKeyValueDefinition", "addConstraint", "dropConstraint", - "addUnique", "notForced", "alterView", "alterDatabase", "alterFunction", - "dropCatalog", "dropTable", "dropDatabase", "dropView", "dropFunction", - "insertStatement", "insertSimpleStatement", "insertPartitionDefinition", + "createView", "createFunction", "usingClause", "alterTable", "renameDefinition", + "setKeyValueDefinition", "addConstraint", "dropConstraint", "addUnique", + "alterView", "alterDatabase", "alterFunction", "dropCatalog", "dropTable", + "dropDatabase", "dropView", "dropFunction", "insertStatement", "insertSimpleStatement", "valuesDefinition", "valuesRowDefinition", "valueDefinition", "insertMulStatementCompatibility", "insertMulStatement", "queryStatement", "valuesClause", "withClause", - "withItem", "withItemName", "selectStatement", "selectClause", "selectList", - "columnProjectItem", "selectWindowItemColumnName", "selectExpressionColumnName", - "selectLiteralColumnName", "columnAlias", "projectItemDefinition", - "tableAllColumns", "overWindowItem", "fromClause", "tableExpression", - "tableReference", "tablePrimary", "atomFunctionTable", "atomExpressionTable", - "systemTimePeriod", "dateTimeExpression", "inlineDataValueClause", - "windowTVFClause", "windowTVFExpression", "windowTVFName", "windowTVFParam", - "timeIntervalParamName", "columnDescriptor", "joinCondition", "whereClause", - "groupByClause", "groupItemDefinition", "groupingSets", "groupingSetsNotationName", - "groupWindowFunction", "groupWindowFunctionName", "timeAttrColumn", - "havingClause", "windowClause", "namedWindow", "windowSpec", "matchRecognizeClause", + "withItem", "selectStatement", "selectClause", "selectList", "columnProjectItem", + "selectWindowItemColumnName", "selectExpressionColumnName", "selectLiteralColumnName", + "columnAlias", "projectItemDefinition", "tableAllColumns", "overWindowItem", + "fromClause", "tableExpression", "tableReference", "tablePrimary", + "atomFunctionTable", "atomExpressionTable", "systemTimePeriod", + "inlineDataValueClause", "windowTVFClause", "windowTVFExpression", + "windowTVFName", "windowTVFParam", "timeIntervalParamName", "columnDescriptor", + "joinCondition", "whereClause", "groupByClause", "groupItemDefinition", + "groupWindowFunction", "groupWindowFunctionName", "havingClause", + "windowClause", "namedWindow", "windowSpec", "matchRecognizeClause", "orderByClause", "orderItemDefinition", "limitClause", "partitionByClause", "quantifiers", "measuresClause", "patternDefinition", "patternVariable", "outputMode", "afterMatchStrategy", "patternVariablesDefinition", @@ -1031,21 +1013,21 @@ export class FlinkSqlParser extends SQLParserBase { "likePredicate", "valueExpression", "functionCallExpression", "primaryExpression", "functionNameCreate", "functionName", "functionNameAndParams", "functionNameWithParams", "functionParam", "jsonValueParams", "jsonQueryParams", "jsonObjectParams", - "jsonArrayParams", "dereferenceDefinition", "correlationName", "qualifiedName", - "timeIntervalExpression", "errorCapturingMultiUnitsInterval", "multiUnitsInterval", - "errorCapturingUnitToUnitInterval", "unitToUnitInterval", "intervalValue", - "tableAlias", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", - "identifierList", "identifierSeq", "identifier", "unquotedIdentifier", - "quotedIdentifier", "whenClause", "catalogPath", "catalogPathCreate", - "databasePath", "databasePathCreate", "tablePathCreate", "tablePath", - "viewPath", "viewPathCreate", "uid", "uidAllowEmpty", "withOption", - "ifNotExists", "ifExists", "tablePropertyList", "tableProperty", - "tablePropertyKey", "tablePropertyValue", "logicalOperator", "comparisonOperator", - "bitOperator", "mathOperator", "unaryOperator", "constant", "timePointLiteral", - "stringLiteral", "decimalLiteral", "booleanLiteral", "setQuantifier", - "timePointUnit", "timeIntervalUnit", "reservedKeywordsUsedAsFuncParam", - "reservedKeywordsNoParamsUsedAsFuncName", "reservedKeywordsFollowParamsUsedAsFuncName", - "reservedKeywordsUsedAsFuncName", "nonReservedKeywords", + "jsonArrayParams", "dereferenceDefinition", "qualifiedName", "timeIntervalExpression", + "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", + "unitToUnitInterval", "intervalValue", "tableAlias", "errorCapturingIdentifier", + "errorCapturingIdentifierExtra", "identifierList", "identifierSeq", + "identifier", "unquotedIdentifier", "quotedIdentifier", "whenClause", + "catalogPath", "catalogPathCreate", "databasePath", "databasePathCreate", + "tablePathCreate", "tablePath", "viewPath", "viewPathCreate", "uid", + "uidAllowEmpty", "withOption", "ifNotExists", "ifExists", "tablePropertyList", + "tableProperty", "tablePropertyKey", "tablePropertyValue", "logicalOperator", + "comparisonOperator", "bitOperator", "mathOperator", "unaryOperator", + "constant", "timePointLiteral", "stringLiteral", "decimalLiteral", + "booleanLiteral", "setQuantifier", "timePointUnit", "timeIntervalUnit", + "reservedKeywordsUsedAsFuncParam", "reservedKeywordsNoParamsUsedAsFuncName", + "reservedKeywordsFollowParamsUsedAsFuncName", "reservedKeywordsUsedAsFuncName", + "nonReservedKeywords", ]; public get grammarFileName(): string { return "FlinkSqlParser.g4"; } @@ -1069,21 +1051,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 429; + this.state = 401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 178 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 822083585) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 142606353) !== 0) || _la === 453 || _la === 471 || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 134219777) !== 0) || _la === 524) { { { - this.state = 426; + this.state = 398; this.singleStatement(); } } - this.state = 431; + this.state = 403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 432; + this.state = 404; this.match(FlinkSqlParser.EOF); } } @@ -1105,7 +1087,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 439; + this.state = 411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1131,14 +1113,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 434; + this.state = 406; this.sqlStatement(); - this.state = 436; + this.state = 408; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 435; + this.state = 407; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1148,8 +1130,8 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 438; - this.emptyStatement(); + this.state = 410; + this.match(FlinkSqlParser.SEMICOLON); } break; default: @@ -1174,90 +1156,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 453; + this.state = 425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 441; + this.state = 413; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 442; + this.state = 414; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 443; + this.state = 415; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 444; + this.state = 416; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 445; + this.state = 417; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 446; + this.state = 418; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 447; + this.state = 419; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 448; + this.state = 420; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 449; + this.state = 421; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 450; + this.state = 422; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 451; + this.state = 423; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 452; + this.state = 424; this.dtAddStatement(); } break; @@ -1277,132 +1259,108 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public emptyStatement(): EmptyStatementContext { - let localContext = new EmptyStatementContext(this.context, this.state); - this.enterRule(localContext, 6, FlinkSqlParser.RULE_emptyStatement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 455; - this.match(FlinkSqlParser.SEMICOLON); - } - } - 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 ddlStatement(): DdlStatementContext { let localContext = new DdlStatementContext(this.context, this.state); - this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); + this.enterRule(localContext, 6, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 471; + this.state = 441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 457; + this.state = 427; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 458; + this.state = 428; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 459; + this.state = 429; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 460; + this.state = 430; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 461; + this.state = 431; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 462; + this.state = 432; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 463; + this.state = 433; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 464; + this.state = 434; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 465; + this.state = 435; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 466; + this.state = 436; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 467; + this.state = 437; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 468; + this.state = 438; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 469; + this.state = 439; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 470; + this.state = 440; this.dropFunction(); } break; @@ -1424,9 +1382,9 @@ export class FlinkSqlParser extends SQLParserBase { } public dmlStatement(): DmlStatementContext { let localContext = new DmlStatementContext(this.context, this.state); - this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); + this.enterRule(localContext, 8, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 475; + this.state = 445; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1435,7 +1393,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 473; + this.state = 443; this.queryStatement(0); } break; @@ -1444,7 +1402,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 474; + this.state = 444; this.insertStatement(); } break; @@ -1468,12 +1426,12 @@ export class FlinkSqlParser extends SQLParserBase { } public describeStatement(): DescribeStatementContext { let localContext = new DescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 12, FlinkSqlParser.RULE_describeStatement); + this.enterRule(localContext, 10, FlinkSqlParser.RULE_describeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 477; + this.state = 447; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 453)) { this.errorHandler.recoverInline(this); @@ -1482,7 +1440,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 478; + this.state = 448; this.tablePath(); } } @@ -1502,28 +1460,28 @@ export class FlinkSqlParser extends SQLParserBase { } public explainStatement(): ExplainStatementContext { let localContext = new ExplainStatementContext(this.context, this.state); - this.enterRule(localContext, 14, FlinkSqlParser.RULE_explainStatement); + this.enterRule(localContext, 12, FlinkSqlParser.RULE_explainStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 480; + this.state = 450; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 484; + this.state = 454; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 481; + this.state = 451; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 482; + this.state = 452; this.match(FlinkSqlParser.KW_PLAN); - this.state = 483; + this.state = 453; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1539,24 +1497,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 489; + this.state = 459; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 486; + this.state = 456; this.dmlStatement(); } break; case 2: { - this.state = 487; + this.state = 457; this.insertSimpleStatement(); } break; case 3: { - this.state = 488; + this.state = 458; this.insertMulStatement(); } break; @@ -1579,26 +1537,26 @@ export class FlinkSqlParser extends SQLParserBase { } public explainDetails(): ExplainDetailsContext { let localContext = new ExplainDetailsContext(this.context, this.state); - this.enterRule(localContext, 16, FlinkSqlParser.RULE_explainDetails); + this.enterRule(localContext, 14, FlinkSqlParser.RULE_explainDetails); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 491; + this.state = 461; this.explainDetail(); - this.state = 496; + this.state = 466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 492; + this.state = 462; this.match(FlinkSqlParser.COMMA); - this.state = 493; + this.state = 463; this.explainDetail(); } } - this.state = 498; + this.state = 468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1620,12 +1578,12 @@ export class FlinkSqlParser extends SQLParserBase { } public explainDetail(): ExplainDetailContext { let localContext = new ExplainDetailContext(this.context, this.state); - this.enterRule(localContext, 18, FlinkSqlParser.RULE_explainDetail); + this.enterRule(localContext, 16, FlinkSqlParser.RULE_explainDetail); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 499; + this.state = 469; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 190)) { this.errorHandler.recoverInline(this); @@ -1652,35 +1610,35 @@ export class FlinkSqlParser extends SQLParserBase { } public useStatement(): UseStatementContext { let localContext = new UseStatementContext(this.context, this.state); - this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); + this.enterRule(localContext, 18, FlinkSqlParser.RULE_useStatement); try { - this.state = 507; + this.state = 477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 501; + this.state = 471; this.match(FlinkSqlParser.KW_USE); - this.state = 502; + this.state = 472; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 503; + this.state = 473; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 504; + this.state = 474; this.match(FlinkSqlParser.KW_USE); - this.state = 505; + this.state = 475; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 506; + this.state = 476; this.useModuleStatement(); } break; @@ -1702,30 +1660,30 @@ export class FlinkSqlParser extends SQLParserBase { } public useModuleStatement(): UseModuleStatementContext { let localContext = new UseModuleStatementContext(this.context, this.state); - this.enterRule(localContext, 22, FlinkSqlParser.RULE_useModuleStatement); + this.enterRule(localContext, 20, FlinkSqlParser.RULE_useModuleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 509; + this.state = 479; this.match(FlinkSqlParser.KW_USE); - this.state = 510; + this.state = 480; this.match(FlinkSqlParser.KW_MODULES); - this.state = 511; + this.state = 481; this.uid(); - this.state = 516; + this.state = 486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 512; + this.state = 482; this.match(FlinkSqlParser.COMMA); - this.state = 513; + this.state = 483; this.uid(); } } - this.state = 518; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1747,18 +1705,18 @@ export class FlinkSqlParser extends SQLParserBase { } public showStatement(): ShowStatementContext { let localContext = new ShowStatementContext(this.context, this.state); - this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); + this.enterRule(localContext, 22, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 561; + this.state = 531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 519; + this.state = 489; this.match(FlinkSqlParser.KW_SHOW); - this.state = 520; + this.state = 490; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 425 || _la === 467)) { this.errorHandler.recoverInline(this); @@ -1772,11 +1730,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 521; + this.state = 491; this.match(FlinkSqlParser.KW_SHOW); - this.state = 522; + this.state = 492; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 523; + this.state = 493; _la = this.tokenStream.LA(1); if(!(_la === 444 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -1790,16 +1748,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 524; + this.state = 494; this.match(FlinkSqlParser.KW_SHOW); - this.state = 525; + this.state = 495; this.match(FlinkSqlParser.KW_TABLES); - this.state = 528; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 171) { { - this.state = 526; + this.state = 496; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -1808,17 +1766,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 527; + this.state = 497; this.databasePath(); } } - this.state = 531; + this.state = 501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204 || _la === 243) { { - this.state = 530; + this.state = 500; this.likePredicate(); } } @@ -1828,11 +1786,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 533; + this.state = 503; this.match(FlinkSqlParser.KW_SHOW); - this.state = 534; + this.state = 504; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 535; + this.state = 505; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -1841,28 +1799,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 538; + this.state = 508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 536; + this.state = 506; this.viewPath(); } break; case 2: { - this.state = 537; + this.state = 507; this.tablePath(); } break; } - this.state = 541; + this.state = 511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204 || _la === 243) { { - this.state = 540; + this.state = 510; this.likePredicate(); } } @@ -1872,26 +1830,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 543; + this.state = 513; this.match(FlinkSqlParser.KW_SHOW); - this.state = 544; + this.state = 514; this.match(FlinkSqlParser.KW_CREATE); - this.state = 549; + this.state = 519; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 545; + this.state = 515; this.match(FlinkSqlParser.KW_TABLE); - this.state = 546; + this.state = 516; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 547; + this.state = 517; this.match(FlinkSqlParser.KW_VIEW); - this.state = 548; + this.state = 518; this.viewPath(); } break; @@ -1903,38 +1861,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 551; + this.state = 521; this.match(FlinkSqlParser.KW_SHOW); - this.state = 553; + this.state = 523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 414) { { - this.state = 552; + this.state = 522; this.match(FlinkSqlParser.KW_USER); } } - this.state = 555; + this.state = 525; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 556; + this.state = 526; this.match(FlinkSqlParser.KW_SHOW); - this.state = 558; + this.state = 528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 153) { { - this.state = 557; + this.state = 527; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 560; + this.state = 530; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1956,24 +1914,24 @@ export class FlinkSqlParser extends SQLParserBase { } public loadStatement(): LoadStatementContext { let localContext = new LoadStatementContext(this.context, this.state); - this.enterRule(localContext, 26, FlinkSqlParser.RULE_loadStatement); + this.enterRule(localContext, 24, FlinkSqlParser.RULE_loadStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 563; + this.state = 533; this.match(FlinkSqlParser.KW_LOAD); - this.state = 564; + this.state = 534; this.match(FlinkSqlParser.KW_MODULE); - this.state = 565; + this.state = 535; this.uid(); - this.state = 568; + this.state = 538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 566; + this.state = 536; this.match(FlinkSqlParser.KW_WITH); - this.state = 567; + this.state = 537; this.tablePropertyList(); } break; @@ -1996,15 +1954,15 @@ export class FlinkSqlParser extends SQLParserBase { } public unloadStatement(): UnloadStatementContext { let localContext = new UnloadStatementContext(this.context, this.state); - this.enterRule(localContext, 28, FlinkSqlParser.RULE_unloadStatement); + this.enterRule(localContext, 26, FlinkSqlParser.RULE_unloadStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 570; + this.state = 540; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 571; + this.state = 541; this.match(FlinkSqlParser.KW_MODULE); - this.state = 572; + this.state = 542; this.uid(); } } @@ -2024,18 +1982,18 @@ export class FlinkSqlParser extends SQLParserBase { } public setStatement(): SetStatementContext { let localContext = new SetStatementContext(this.context, this.state); - this.enterRule(localContext, 30, FlinkSqlParser.RULE_setStatement); + this.enterRule(localContext, 28, FlinkSqlParser.RULE_setStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 574; + this.state = 544; this.match(FlinkSqlParser.KW_SET); - this.state = 576; + this.state = 546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 575; + this.state = 545; this.tableProperty(); } break; @@ -2058,18 +2016,18 @@ export class FlinkSqlParser extends SQLParserBase { } public resetStatement(): ResetStatementContext { let localContext = new ResetStatementContext(this.context, this.state); - this.enterRule(localContext, 32, FlinkSqlParser.RULE_resetStatement); + this.enterRule(localContext, 30, FlinkSqlParser.RULE_resetStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 578; + this.state = 548; this.match(FlinkSqlParser.KW_RESET); - this.state = 580; + this.state = 550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 579; + this.state = 549; this.tablePropertyKey(); } break; @@ -2092,12 +2050,12 @@ export class FlinkSqlParser extends SQLParserBase { } public jarStatement(): JarStatementContext { let localContext = new JarStatementContext(this.context, this.state); - this.enterRule(localContext, 34, FlinkSqlParser.RULE_jarStatement); + this.enterRule(localContext, 32, FlinkSqlParser.RULE_jarStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 582; + this.state = 552; _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -2106,10 +2064,10 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 583; + this.state = 553; this.match(FlinkSqlParser.KW_JAR); - this.state = 584; - this.jarFileName(); + this.state = 554; + this.match(FlinkSqlParser.STRING_LITERAL); } } catch (re) { @@ -2128,31 +2086,31 @@ export class FlinkSqlParser extends SQLParserBase { } public dtAddStatement(): DtAddStatementContext { let localContext = new DtAddStatementContext(this.context, this.state); - this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); + this.enterRule(localContext, 34, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 636; + this.state = 606; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 586; + this.state = 556; this.match(FlinkSqlParser.KW_ADD); - this.state = 587; + this.state = 557; this.match(FlinkSqlParser.KW_JAR); - this.state = 588; + this.state = 558; this.match(FlinkSqlParser.KW_WITH); - this.state = 589; + this.state = 559; this.dtFilePath(); - this.state = 592; + this.state = 562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 590; + this.state = 560; this.match(FlinkSqlParser.KW_AS); - this.state = 591; + this.state = 561; this.uid(); } } @@ -2162,34 +2120,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 594; + this.state = 564; this.match(FlinkSqlParser.KW_ADD); - this.state = 595; + this.state = 565; this.match(FlinkSqlParser.KW_FILE); - this.state = 596; + this.state = 566; this.match(FlinkSqlParser.KW_WITH); - this.state = 597; + this.state = 567; this.dtFilePath(); - this.state = 600; + this.state = 570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 598; + this.state = 568; this.match(FlinkSqlParser.KW_AS); - this.state = 599; + this.state = 569; this.uid(); } } - this.state = 604; + this.state = 574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 313) { { - this.state = 602; + this.state = 572; this.match(FlinkSqlParser.KW_RENAME); - this.state = 603; + this.state = 573; this.uid(); } } @@ -2199,9 +2157,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 606; + this.state = 576; this.match(FlinkSqlParser.KW_ADD); - this.state = 607; + this.state = 577; _la = this.tokenStream.LA(1); if(!(((((_la - 485)) & ~0x1F) === 0 && ((1 << (_la - 485)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2210,70 +2168,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 608; + this.state = 578; this.match(FlinkSqlParser.KW_WITH); - this.state = 609; + this.state = 579; this.dtFilePath(); - this.state = 610; + this.state = 580; this.match(FlinkSqlParser.KW_RENAME); - this.state = 611; + this.state = 581; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 613; + this.state = 583; this.match(FlinkSqlParser.KW_ADD); - this.state = 614; + this.state = 584; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 615; + this.state = 585; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 616; + this.state = 586; this.match(FlinkSqlParser.KW_ADD); - this.state = 617; + this.state = 587; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 618; + this.state = 588; this.match(FlinkSqlParser.KW_FILE); - this.state = 619; + this.state = 589; this.match(FlinkSqlParser.KW_WITH); - this.state = 620; + this.state = 590; this.dtFilePath(); - this.state = 621; + this.state = 591; this.match(FlinkSqlParser.KW_RENAME); - this.state = 622; + this.state = 592; this.uid(); - this.state = 623; + this.state = 593; this.match(FlinkSqlParser.KW_KEY); - this.state = 624; + this.state = 594; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 626; + this.state = 596; this.match(FlinkSqlParser.KW_ADD); - this.state = 627; + this.state = 597; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 628; + this.state = 598; this.match(FlinkSqlParser.KW_FILE); - this.state = 629; + this.state = 599; this.match(FlinkSqlParser.KW_WITH); - this.state = 630; + this.state = 600; this.dtFilePath(); - this.state = 631; + this.state = 601; this.match(FlinkSqlParser.KW_FOR); - this.state = 632; + this.state = 602; this.uid(); - this.state = 633; + this.state = 603; this.match(FlinkSqlParser.KW_AS); - this.state = 634; + this.state = 604; this.uid(); } break; @@ -2295,13 +2253,13 @@ export class FlinkSqlParser extends SQLParserBase { } public dtFilePath(): DtFilePathContext { let localContext = new DtFilePathContext(this.context, this.state); - this.enterRule(localContext, 38, FlinkSqlParser.RULE_dtFilePath); + this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtFilePath); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 642; + this.state = 612; this.errorHandler.sync(this); alternative = 1; do { @@ -2309,17 +2267,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 639; + this.state = 609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 537) { { - this.state = 638; + this.state = 608; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 641; + this.state = 611; this.uid(); } } @@ -2327,7 +2285,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 644; + this.state = 614; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2349,22 +2307,22 @@ export class FlinkSqlParser extends SQLParserBase { } public createTable(): CreateTableContext { let localContext = new CreateTableContext(this.context, this.state); - this.enterRule(localContext, 40, FlinkSqlParser.RULE_createTable); + this.enterRule(localContext, 38, FlinkSqlParser.RULE_createTable); try { this.enterOuterAlt(localContext, 1); { - this.state = 648; + this.state = 618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 646; + this.state = 616; this.simpleCreateTable(); } break; case 2: { - this.state = 647; + this.state = 617; this.createTableAsSelect(); } break; @@ -2387,128 +2345,152 @@ export class FlinkSqlParser extends SQLParserBase { } public simpleCreateTable(): SimpleCreateTableContext { let localContext = new SimpleCreateTableContext(this.context, this.state); - this.enterRule(localContext, 42, FlinkSqlParser.RULE_simpleCreateTable); + this.enterRule(localContext, 40, FlinkSqlParser.RULE_simpleCreateTable); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 650; + this.state = 620; this.match(FlinkSqlParser.KW_CREATE); - this.state = 652; + this.state = 622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 500) { { - this.state = 651; + this.state = 621; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 654; + this.state = 624; this.match(FlinkSqlParser.KW_TABLE); - this.state = 656; + this.state = 626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 655; + this.state = 625; this.ifNotExists(); } } - this.state = 658; + this.state = 628; this.tablePathCreate(); - this.state = 659; + this.state = 629; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 660; + this.state = 630; this.columnOptionDefinition(); - this.state = 665; + this.state = 635; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 661; + this.state = 631; this.match(FlinkSqlParser.COMMA); - this.state = 662; + this.state = 632; this.columnOptionDefinition(); } } } - this.state = 667; + this.state = 637; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 670; + this.state = 640; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 668; + this.state = 638; this.match(FlinkSqlParser.COMMA); - this.state = 669; + this.state = 639; this.watermarkDefinition(); } break; } - this.state = 674; + this.state = 644; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 672; + this.state = 642; this.match(FlinkSqlParser.COMMA); - this.state = 673; + this.state = 643; this.tableConstraint(); } break; } - this.state = 678; + this.state = 648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 523) { { - this.state = 676; + this.state = 646; this.match(FlinkSqlParser.COMMA); - this.state = 677; + this.state = 647; this.selfDefinitionClause(); } } - this.state = 680; + this.state = 650; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 683; + this.state = 653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 681; + this.state = 651; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 682; + this.state = 652; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 686; + this.state = 668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 271) { { - this.state = 685; - this.partitionDefinition(); + this.state = 655; + this.match(FlinkSqlParser.KW_PARTITIONED); + this.state = 656; + this.match(FlinkSqlParser.KW_BY); + this.state = 657; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 658; + this.transform(); + this.state = 663; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 523) { + { + { + this.state = 659; + this.match(FlinkSqlParser.COMMA); + this.state = 660; + this.transform(); + } + } + this.state = 665; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 666; + this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 688; + this.state = 670; this.withOption(); - this.state = 690; + this.state = 672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 689; + this.state = 671; this.likeDefinition(); } } @@ -2531,37 +2513,37 @@ export class FlinkSqlParser extends SQLParserBase { } public createTableAsSelect(): CreateTableAsSelectContext { let localContext = new CreateTableAsSelectContext(this.context, this.state); - this.enterRule(localContext, 44, FlinkSqlParser.RULE_createTableAsSelect); + this.enterRule(localContext, 42, FlinkSqlParser.RULE_createTableAsSelect); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 692; + this.state = 674; this.match(FlinkSqlParser.KW_CREATE); - this.state = 693; + this.state = 675; this.match(FlinkSqlParser.KW_TABLE); - this.state = 695; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 694; + this.state = 676; this.ifNotExists(); } } - this.state = 697; + this.state = 679; this.tablePathCreate(); - this.state = 698; + this.state = 680; this.withOption(); - this.state = 701; + this.state = 683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 699; + this.state = 681; this.match(FlinkSqlParser.KW_AS); - this.state = 700; + this.state = 682; this.queryStatement(0); } } @@ -2584,29 +2566,29 @@ export class FlinkSqlParser extends SQLParserBase { } public columnOptionDefinition(): ColumnOptionDefinitionContext { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); + this.enterRule(localContext, 44, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 706; + this.state = 688; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 703; + this.state = 685; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 704; + this.state = 686; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 705; + this.state = 687; this.computedColumnDefinition(); } break; @@ -2628,33 +2610,33 @@ export class FlinkSqlParser extends SQLParserBase { } public physicalColumnDefinition(): PhysicalColumnDefinitionContext { let localContext = new PhysicalColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 48, FlinkSqlParser.RULE_physicalColumnDefinition); + this.enterRule(localContext, 46, FlinkSqlParser.RULE_physicalColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 708; + this.state = 690; this.columnNameCreate(); - this.state = 709; + this.state = 691; this.columnType(); - this.state = 711; + this.state = 693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 243 || _la === 246 || _la === 290) { { - this.state = 710; + this.state = 692; this.columnConstraint(); } } - this.state = 715; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 713; + this.state = 695; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 714; + this.state = 696; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2677,22 +2659,22 @@ export class FlinkSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 48, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 719; + this.state = 701; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 717; + this.state = 699; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 718; + this.state = 700; this.expression(); } break; @@ -2714,7 +2696,7 @@ export class FlinkSqlParser extends SQLParserBase { } public emptyColumn(): EmptyColumnContext { let localContext = new EmptyColumnContext(this.context, this.state); - this.enterRule(localContext, 52, FlinkSqlParser.RULE_emptyColumn); + this.enterRule(localContext, 50, FlinkSqlParser.RULE_emptyColumn); try { this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -2737,26 +2719,26 @@ export class FlinkSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 54, FlinkSqlParser.RULE_columnName); + this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 726; + this.state = 708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 723; + this.state = 705; this.uidAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 724; + this.state = 706; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 725; + this.state = 707; this.emptyColumn(); } break; @@ -2778,11 +2760,11 @@ export class FlinkSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 54, FlinkSqlParser.RULE_columnNamePath); try { this.enterOuterAlt(localContext, 1); { - this.state = 728; + this.state = 710; this.uid(); } } @@ -2802,26 +2784,26 @@ export class FlinkSqlParser extends SQLParserBase { } public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnNamePathAllowEmpty); + this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnNamePathAllowEmpty); try { - this.state = 733; + this.state = 715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 730; + this.state = 712; this.uidAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 731; + this.state = 713; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 732; + this.state = 714; this.emptyColumn(); } break; @@ -2843,32 +2825,32 @@ export class FlinkSqlParser extends SQLParserBase { } public columnNameList(): ColumnNameListContext { let localContext = new ColumnNameListContext(this.context, this.state); - this.enterRule(localContext, 60, FlinkSqlParser.RULE_columnNameList); + this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 735; + this.state = 717; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 736; + this.state = 718; this.columnName(); - this.state = 741; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 737; + this.state = 719; this.match(FlinkSqlParser.COMMA); - this.state = 738; + this.state = 720; this.columnName(); } } - this.state = 743; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 744; + this.state = 726; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2888,10 +2870,10 @@ export class FlinkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 62, FlinkSqlParser.RULE_columnType); + this.enterRule(localContext, 60, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 783; + this.state = 765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2899,7 +2881,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 746; + this.state = 728; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 246)) { @@ -2927,7 +2909,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 747; + this.state = 729; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 179 || _la === 180 || _la === 346 || _la === 362 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 521) !== 0) || _la === 419 || _la === 420)) { @@ -2937,12 +2919,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 749; + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 519) { { - this.state = 748; + this.state = 730; this.lengthOneDimension(); } } @@ -2952,24 +2934,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 751; + this.state = 733; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 753; + this.state = 735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 519) { { - this.state = 752; + this.state = 734; this.lengthOneDimension(); } } - this.state = 761; + this.state = 743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436 || _la === 438) { { - this.state = 755; + this.state = 737; _la = this.tokenStream.LA(1); if(!(_la === 436 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -2978,19 +2960,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 757; + this.state = 739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 756; + this.state = 738; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 759; + this.state = 741; this.match(FlinkSqlParser.KW_TIME); - this.state = 760; + this.state = 742; this.match(FlinkSqlParser.KW_ZONE); } } @@ -3004,7 +2986,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 763; + this.state = 745; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 248)) { @@ -3014,12 +2996,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 765; + this.state = 747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 519) { { - this.state = 764; + this.state = 746; this.lengthTwoOptionalDimension(); } } @@ -3030,7 +3012,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 767; + this.state = 749; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 233)) { @@ -3040,12 +3022,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 769; + this.state = 751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 510) { { - this.state = 768; + this.state = 750; this.lengthOneTypeDimension(); } } @@ -3055,14 +3037,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 771; + this.state = 753; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 773; + this.state = 755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 510) { { - this.state = 772; + this.state = 754; this.mapTypeDimension(); } } @@ -3072,14 +3054,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 775; + this.state = 757; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 777; + this.state = 759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 510 || _la === 519) { { - this.state = 776; + this.state = 758; this.rowTypeDimension(); } } @@ -3089,14 +3071,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 779; + this.state = 761; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 781; + this.state = 763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 519) { { - this.state = 780; + this.state = 762; this.lengthTwoStringDimension(); } } @@ -3123,15 +3105,15 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 64, FlinkSqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 62, FlinkSqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 785; + this.state = 767; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 786; + this.state = 768; this.decimalLiteral(); - this.state = 787; + this.state = 769; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3151,28 +3133,28 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 66, FlinkSqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 64, FlinkSqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 789; + this.state = 771; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 790; + this.state = 772; this.decimalLiteral(); - this.state = 793; + this.state = 775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 523) { { - this.state = 791; + this.state = 773; this.match(FlinkSqlParser.COMMA); - this.state = 792; + this.state = 774; this.decimalLiteral(); } } - this.state = 795; + this.state = 777; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3192,28 +3174,28 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthTwoStringDimension(): LengthTwoStringDimensionContext { let localContext = new LengthTwoStringDimensionContext(this.context, this.state); - this.enterRule(localContext, 68, FlinkSqlParser.RULE_lengthTwoStringDimension); + this.enterRule(localContext, 66, FlinkSqlParser.RULE_lengthTwoStringDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 797; + this.state = 779; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 798; + this.state = 780; this.stringLiteral(); - this.state = 801; + this.state = 783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 523) { { - this.state = 799; + this.state = 781; this.match(FlinkSqlParser.COMMA); - this.state = 800; + this.state = 782; this.stringLiteral(); } } - this.state = 803; + this.state = 785; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3233,15 +3215,15 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthOneTypeDimension(): LengthOneTypeDimensionContext { let localContext = new LengthOneTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 70, FlinkSqlParser.RULE_lengthOneTypeDimension); + this.enterRule(localContext, 68, FlinkSqlParser.RULE_lengthOneTypeDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 805; + this.state = 787; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 806; + this.state = 788; this.columnType(); - this.state = 807; + this.state = 789; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3261,21 +3243,21 @@ export class FlinkSqlParser extends SQLParserBase { } public mapTypeDimension(): MapTypeDimensionContext { let localContext = new MapTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 72, FlinkSqlParser.RULE_mapTypeDimension); + this.enterRule(localContext, 70, FlinkSqlParser.RULE_mapTypeDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 809; + this.state = 791; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 810; + this.state = 792; this.columnType(); { - this.state = 811; + this.state = 793; this.match(FlinkSqlParser.COMMA); - this.state = 812; + this.state = 794; this.columnType(); } - this.state = 814; + this.state = 796; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3295,71 +3277,71 @@ export class FlinkSqlParser extends SQLParserBase { } public rowTypeDimension(): RowTypeDimensionContext { let localContext = new RowTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 74, FlinkSqlParser.RULE_rowTypeDimension); + this.enterRule(localContext, 72, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 844; + this.state = 826; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 816; + this.state = 798; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 817; + this.state = 799; this.columnName(); - this.state = 818; + this.state = 800; this.columnType(); - this.state = 825; + this.state = 807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 819; + this.state = 801; this.match(FlinkSqlParser.COMMA); - this.state = 820; + this.state = 802; this.columnName(); - this.state = 821; + this.state = 803; this.columnType(); } } - this.state = 827; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 828; + this.state = 810; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 830; + this.state = 812; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 831; + this.state = 813; this.columnName(); - this.state = 832; + this.state = 814; this.columnType(); - this.state = 839; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 833; + this.state = 815; this.match(FlinkSqlParser.COMMA); - this.state = 834; + this.state = 816; this.columnName(); - this.state = 835; + this.state = 817; this.columnType(); } } - this.state = 841; + this.state = 823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 842; + this.state = 824; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3383,40 +3365,40 @@ export class FlinkSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 76, FlinkSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 74, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 860; + this.state = 842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 848; + this.state = 830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 846; + this.state = 828; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 847; + this.state = 829; this.constraintName(); } } - this.state = 850; + this.state = 832; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 851; + this.state = 833; this.match(FlinkSqlParser.KW_KEY); - this.state = 854; + this.state = 836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 852; + this.state = 834; this.match(FlinkSqlParser.KW_NOT); - this.state = 853; + this.state = 835; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3427,17 +3409,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 857; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 856; + this.state = 838; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 859; + this.state = 841; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3461,35 +3443,35 @@ export class FlinkSqlParser extends SQLParserBase { } public metadataColumnDefinition(): MetadataColumnDefinitionContext { let localContext = new MetadataColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 78, FlinkSqlParser.RULE_metadataColumnDefinition); + this.enterRule(localContext, 76, FlinkSqlParser.RULE_metadataColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 862; + this.state = 844; this.columnNameCreate(); - this.state = 863; + this.state = 845; this.columnType(); - this.state = 864; + this.state = 846; this.match(FlinkSqlParser.KW_METADATA); - this.state = 867; + this.state = 849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 865; + this.state = 847; this.match(FlinkSqlParser.KW_FROM); - this.state = 866; - this.metadataKey(); + this.state = 848; + this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 870; + this.state = 852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 426) { { - this.state = 869; + this.state = 851; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3510,51 +3492,27 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public metadataKey(): MetadataKeyContext { - let localContext = new MetadataKeyContext(this.context, this.state); - this.enterRule(localContext, 80, FlinkSqlParser.RULE_metadataKey); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 872; - this.match(FlinkSqlParser.STRING_LITERAL); - } - } - 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 computedColumnDefinition(): ComputedColumnDefinitionContext { let localContext = new ComputedColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 82, FlinkSqlParser.RULE_computedColumnDefinition); + this.enterRule(localContext, 78, FlinkSqlParser.RULE_computedColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 874; + this.state = 854; this.columnNameCreate(); - this.state = 875; + this.state = 855; this.match(FlinkSqlParser.KW_AS); - this.state = 876; - this.computedColumnExpression(); - this.state = 879; + this.state = 856; + this.expression(); + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 877; + this.state = 857; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 878; + this.state = 858; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3575,45 +3533,21 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public computedColumnExpression(): ComputedColumnExpressionContext { - let localContext = new ComputedColumnExpressionContext(this.context, this.state); - this.enterRule(localContext, 84, FlinkSqlParser.RULE_computedColumnExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 881; - this.expression(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public watermarkDefinition(): WatermarkDefinitionContext { let localContext = new WatermarkDefinitionContext(this.context, this.state); - this.enterRule(localContext, 86, FlinkSqlParser.RULE_watermarkDefinition); + this.enterRule(localContext, 80, FlinkSqlParser.RULE_watermarkDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 883; + this.state = 861; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 884; + this.state = 862; this.match(FlinkSqlParser.KW_FOR); - this.state = 885; + this.state = 863; this.columnName(); - this.state = 886; + this.state = 864; this.match(FlinkSqlParser.KW_AS); - this.state = 887; + this.state = 865; this.expression(); } } @@ -3633,32 +3567,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 88, FlinkSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 82, FlinkSqlParser.RULE_tableConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 891; + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 889; + this.state = 867; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 890; + this.state = 868; this.constraintName(); } } - this.state = 893; + this.state = 871; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 894; + this.state = 872; this.match(FlinkSqlParser.KW_KEY); - this.state = 895; + this.state = 873; this.columnNameList(); - this.state = 896; + this.state = 874; this.match(FlinkSqlParser.KW_NOT); - this.state = 897; + this.state = 875; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3678,11 +3612,11 @@ export class FlinkSqlParser extends SQLParserBase { } public constraintName(): ConstraintNameContext { let localContext = new ConstraintNameContext(this.context, this.state); - this.enterRule(localContext, 90, FlinkSqlParser.RULE_constraintName); + this.enterRule(localContext, 84, FlinkSqlParser.RULE_constraintName); try { this.enterOuterAlt(localContext, 1); { - this.state = 899; + this.state = 877; this.identifier(); } } @@ -3702,15 +3636,15 @@ export class FlinkSqlParser extends SQLParserBase { } public selfDefinitionClause(): SelfDefinitionClauseContext { let localContext = new SelfDefinitionClauseContext(this.context, this.state); - this.enterRule(localContext, 92, FlinkSqlParser.RULE_selfDefinitionClause); + this.enterRule(localContext, 86, FlinkSqlParser.RULE_selfDefinitionClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 901; + this.state = 879; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 902; + this.state = 880; this.match(FlinkSqlParser.KW_FOR); - this.state = 903; + this.state = 881; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3728,92 +3662,19 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public partitionDefinition(): PartitionDefinitionContext { - let localContext = new PartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 94, FlinkSqlParser.RULE_partitionDefinition); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 905; - this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 906; - this.match(FlinkSqlParser.KW_BY); - this.state = 907; - this.transformList(); - } - } - 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 transformList(): TransformListContext { - let localContext = new TransformListContext(this.context, this.state); - this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformList); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 909; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 910; - this.transform(); - this.state = 915; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 523) { - { - { - this.state = 911; - this.match(FlinkSqlParser.COMMA); - this.state = 912; - this.transform(); - } - } - this.state = 917; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 918; - this.match(FlinkSqlParser.RR_BRACKET); - } - } - 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 transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 98, FlinkSqlParser.RULE_transform); + this.enterRule(localContext, 88, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 932; + this.state = 895; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 920; + this.state = 883; this.columnName(); } break; @@ -3821,27 +3682,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 921; + this.state = 884; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 922; + this.state = 885; this.transformArgument(); - this.state = 927; + this.state = 890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 923; + this.state = 886; this.match(FlinkSqlParser.COMMA); - this.state = 924; + this.state = 887; this.transformArgument(); } } - this.state = 929; + this.state = 892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 930; + this.state = 893; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3863,22 +3724,22 @@ export class FlinkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 100, FlinkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 90, FlinkSqlParser.RULE_transformArgument); try { - this.state = 936; + this.state = 899; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 934; + this.state = 897; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 935; + this.state = 898; this.constant(); } break; @@ -3900,37 +3761,37 @@ export class FlinkSqlParser extends SQLParserBase { } public likeDefinition(): LikeDefinitionContext { let localContext = new LikeDefinitionContext(this.context, this.state); - this.enterRule(localContext, 102, FlinkSqlParser.RULE_likeDefinition); + this.enterRule(localContext, 92, FlinkSqlParser.RULE_likeDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 938; + this.state = 901; this.match(FlinkSqlParser.KW_LIKE); - this.state = 939; + this.state = 902; this.tablePath(); - this.state = 948; + this.state = 911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 940; + this.state = 903; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 944; + this.state = 907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 268 || _la === 458 || _la === 465) { { { - this.state = 941; + this.state = 904; this.likeOption(); } } - this.state = 946; + this.state = 909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 947; + this.state = 910; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3953,17 +3814,17 @@ export class FlinkSqlParser extends SQLParserBase { } public likeOption(): LikeOptionContext { let localContext = new LikeOptionContext(this.context, this.state); - this.enterRule(localContext, 104, FlinkSqlParser.RULE_likeOption); + this.enterRule(localContext, 94, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 954; + this.state = 917; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 950; + this.state = 913; _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -3972,7 +3833,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 951; + this.state = 914; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 272 || _la === 447)) { this.errorHandler.recoverInline(this); @@ -3988,7 +3849,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 952; + this.state = 915; _la = this.tokenStream.LA(1); if(!(_la === 268 || _la === 458 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -3997,7 +3858,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 953; + this.state = 916; _la = this.tokenStream.LA(1); if(!(_la === 428 || _la === 461 || _la === 480)) { this.errorHandler.recoverInline(this); @@ -4027,17 +3888,17 @@ export class FlinkSqlParser extends SQLParserBase { } public createCatalog(): CreateCatalogContext { let localContext = new CreateCatalogContext(this.context, this.state); - this.enterRule(localContext, 106, FlinkSqlParser.RULE_createCatalog); + this.enterRule(localContext, 96, FlinkSqlParser.RULE_createCatalog); try { this.enterOuterAlt(localContext, 1); { - this.state = 956; + this.state = 919; this.match(FlinkSqlParser.KW_CREATE); - this.state = 957; + this.state = 920; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 958; + this.state = 921; this.catalogPathCreate(); - this.state = 959; + this.state = 922; this.withOption(); } } @@ -4057,40 +3918,40 @@ export class FlinkSqlParser extends SQLParserBase { } public createDatabase(): CreateDatabaseContext { let localContext = new CreateDatabaseContext(this.context, this.state); - this.enterRule(localContext, 108, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localContext, 98, FlinkSqlParser.RULE_createDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 924; this.match(FlinkSqlParser.KW_CREATE); - this.state = 962; + this.state = 925; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 964; + this.state = 927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 963; + this.state = 926; this.ifNotExists(); } } - this.state = 966; + this.state = 929; this.databasePathCreate(); - this.state = 969; + this.state = 932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 967; + this.state = 930; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 968; + this.state = 931; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 971; + this.state = 934; this.withOption(); } } @@ -4110,62 +3971,62 @@ export class FlinkSqlParser extends SQLParserBase { } public createView(): CreateViewContext { let localContext = new CreateViewContext(this.context, this.state); - this.enterRule(localContext, 110, FlinkSqlParser.RULE_createView); + this.enterRule(localContext, 100, FlinkSqlParser.RULE_createView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 973; + this.state = 936; this.match(FlinkSqlParser.KW_CREATE); - this.state = 975; + this.state = 938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 500) { { - this.state = 974; + this.state = 937; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 977; + this.state = 940; this.match(FlinkSqlParser.KW_VIEW); - this.state = 979; + this.state = 942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 978; + this.state = 941; this.ifNotExists(); } } - this.state = 981; + this.state = 944; this.viewPathCreate(); - this.state = 983; + this.state = 946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 519) { { - this.state = 982; + this.state = 945; this.columnNameList(); } } - this.state = 987; + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 985; + this.state = 948; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 986; + this.state = 949; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 989; + this.state = 952; this.match(FlinkSqlParser.KW_AS); - this.state = 990; + this.state = 953; this.queryStatement(0); } } @@ -4185,57 +4046,57 @@ export class FlinkSqlParser extends SQLParserBase { } public createFunction(): CreateFunctionContext { let localContext = new CreateFunctionContext(this.context, this.state); - this.enterRule(localContext, 112, FlinkSqlParser.RULE_createFunction); + this.enterRule(localContext, 102, FlinkSqlParser.RULE_createFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 992; + this.state = 955; this.match(FlinkSqlParser.KW_CREATE); - this.state = 996; + this.state = 959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 993; + this.state = 956; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 994; + this.state = 957; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 995; + this.state = 958; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 998; + this.state = 961; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1000; + this.state = 963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 999; + this.state = 962; this.ifNotExists(); } } - this.state = 1002; + this.state = 965; this.functionNameCreate(); - this.state = 1003; + this.state = 966; this.match(FlinkSqlParser.KW_AS); - this.state = 1004; + this.state = 967; this.identifier(); - this.state = 1007; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1005; + this.state = 968; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1006; + this.state = 969; _la = this.tokenStream.LA(1); if(!(_la === 332 || _la === 468 || _la === 484)) { this.errorHandler.recoverInline(this); @@ -4247,12 +4108,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1010; + this.state = 973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 1009; + this.state = 972; this.usingClause(); } } @@ -4275,32 +4136,32 @@ export class FlinkSqlParser extends SQLParserBase { } public usingClause(): UsingClauseContext { let localContext = new UsingClauseContext(this.context, this.state); - this.enterRule(localContext, 114, FlinkSqlParser.RULE_usingClause); + this.enterRule(localContext, 104, FlinkSqlParser.RULE_usingClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1012; + this.state = 975; this.match(FlinkSqlParser.KW_USING); - this.state = 1013; + this.state = 976; this.match(FlinkSqlParser.KW_JAR); - this.state = 1014; - this.jarFileName(); - this.state = 1020; + this.state = 977; + this.match(FlinkSqlParser.STRING_LITERAL); + this.state = 983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1015; + this.state = 978; this.match(FlinkSqlParser.COMMA); - this.state = 1016; + this.state = 979; this.match(FlinkSqlParser.KW_JAR); - this.state = 1017; - this.jarFileName(); + this.state = 980; + this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 1022; + this.state = 985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4320,83 +4181,59 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public jarFileName(): JarFileNameContext { - let localContext = new JarFileNameContext(this.context, this.state); - this.enterRule(localContext, 116, FlinkSqlParser.RULE_jarFileName); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1023; - this.match(FlinkSqlParser.STRING_LITERAL); - } - } - 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 alterTable(): AlterTableContext { let localContext = new AlterTableContext(this.context, this.state); - this.enterRule(localContext, 118, FlinkSqlParser.RULE_alterTable); + this.enterRule(localContext, 106, FlinkSqlParser.RULE_alterTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1025; + this.state = 986; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1026; + this.state = 987; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1028; + this.state = 989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1027; + this.state = 988; this.ifExists(); } } - this.state = 1030; + this.state = 991; this.tablePath(); - this.state = 1036; + this.state = 997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1031; + this.state = 992; this.renameDefinition(); } break; case 2: { - this.state = 1032; + this.state = 993; this.setKeyValueDefinition(); } break; case 3: { - this.state = 1033; + this.state = 994; this.addConstraint(); } break; case 4: { - this.state = 1034; + this.state = 995; this.dropConstraint(); } break; case 5: { - this.state = 1035; + this.state = 996; this.addUnique(); } break; @@ -4419,26 +4256,26 @@ export class FlinkSqlParser extends SQLParserBase { } public renameDefinition(): RenameDefinitionContext { let localContext = new RenameDefinitionContext(this.context, this.state); - this.enterRule(localContext, 120, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localContext, 108, FlinkSqlParser.RULE_renameDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1038; + this.state = 999; this.match(FlinkSqlParser.KW_RENAME); - this.state = 1040; + this.state = 1001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 1039; + this.state = 1000; this.uid(); } } - this.state = 1042; + this.state = 1003; this.match(FlinkSqlParser.KW_TO); - this.state = 1043; + this.state = 1004; this.uid(); } } @@ -4458,13 +4295,13 @@ export class FlinkSqlParser extends SQLParserBase { } public setKeyValueDefinition(): SetKeyValueDefinitionContext { let localContext = new SetKeyValueDefinitionContext(this.context, this.state); - this.enterRule(localContext, 122, FlinkSqlParser.RULE_setKeyValueDefinition); + this.enterRule(localContext, 110, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1045; + this.state = 1006; this.match(FlinkSqlParser.KW_SET); - this.state = 1046; + this.state = 1007; this.tablePropertyList(); } } @@ -4484,30 +4321,32 @@ export class FlinkSqlParser extends SQLParserBase { } public addConstraint(): AddConstraintContext { let localContext = new AddConstraintContext(this.context, this.state); - this.enterRule(localContext, 124, FlinkSqlParser.RULE_addConstraint); + this.enterRule(localContext, 112, FlinkSqlParser.RULE_addConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1048; + this.state = 1009; this.match(FlinkSqlParser.KW_ADD); - this.state = 1049; + this.state = 1010; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1050; + this.state = 1011; this.constraintName(); - this.state = 1051; + this.state = 1012; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1052; + this.state = 1013; this.match(FlinkSqlParser.KW_KEY); - this.state = 1053; + this.state = 1014; this.columnNameList(); - this.state = 1055; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1054; - this.notForced(); + this.state = 1015; + this.match(FlinkSqlParser.KW_NOT); + this.state = 1016; + this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4529,15 +4368,15 @@ export class FlinkSqlParser extends SQLParserBase { } public dropConstraint(): DropConstraintContext { let localContext = new DropConstraintContext(this.context, this.state); - this.enterRule(localContext, 126, FlinkSqlParser.RULE_dropConstraint); + this.enterRule(localContext, 114, FlinkSqlParser.RULE_dropConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 1057; + this.state = 1019; this.match(FlinkSqlParser.KW_DROP); - this.state = 1058; + this.state = 1020; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1059; + this.state = 1021; this.constraintName(); } } @@ -4557,15 +4396,15 @@ export class FlinkSqlParser extends SQLParserBase { } public addUnique(): AddUniqueContext { let localContext = new AddUniqueContext(this.context, this.state); - this.enterRule(localContext, 128, FlinkSqlParser.RULE_addUnique); + this.enterRule(localContext, 116, FlinkSqlParser.RULE_addUnique); try { this.enterOuterAlt(localContext, 1); { - this.state = 1061; + this.state = 1023; this.match(FlinkSqlParser.KW_ADD); - this.state = 1062; + this.state = 1024; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1063; + this.state = 1025; this.columnNameList(); } } @@ -4583,58 +4422,32 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public notForced(): NotForcedContext { - let localContext = new NotForcedContext(this.context, this.state); - this.enterRule(localContext, 130, FlinkSqlParser.RULE_notForced); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1065; - this.match(FlinkSqlParser.KW_NOT); - this.state = 1066; - this.match(FlinkSqlParser.KW_ENFORCED); - } - } - 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 alterView(): AlterViewContext { let localContext = new AlterViewContext(this.context, this.state); - this.enterRule(localContext, 132, FlinkSqlParser.RULE_alterView); + this.enterRule(localContext, 118, FlinkSqlParser.RULE_alterView); try { this.enterOuterAlt(localContext, 1); { - this.state = 1068; + this.state = 1027; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1069; + this.state = 1028; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1070; + this.state = 1029; this.viewPath(); - this.state = 1074; + this.state = 1033; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1071; + this.state = 1030; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1072; + this.state = 1031; this.match(FlinkSqlParser.KW_AS); - this.state = 1073; + this.state = 1032; this.queryStatement(0); } break; @@ -4659,17 +4472,17 @@ export class FlinkSqlParser extends SQLParserBase { } public alterDatabase(): AlterDatabaseContext { let localContext = new AlterDatabaseContext(this.context, this.state); - this.enterRule(localContext, 134, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localContext, 120, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localContext, 1); { - this.state = 1076; + this.state = 1035; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1077; + this.state = 1036; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1078; + this.state = 1037; this.databasePath(); - this.state = 1079; + this.state = 1038; this.setKeyValueDefinition(); } } @@ -4689,57 +4502,57 @@ export class FlinkSqlParser extends SQLParserBase { } public alterFunction(): AlterFunctionContext { let localContext = new AlterFunctionContext(this.context, this.state); - this.enterRule(localContext, 136, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localContext, 122, FlinkSqlParser.RULE_alterFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1081; + this.state = 1040; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1085; + this.state = 1044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1082; + this.state = 1041; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1083; + this.state = 1042; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1084; + this.state = 1043; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1087; + this.state = 1046; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1089; + this.state = 1048; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1088; + this.state = 1047; this.ifExists(); } break; } - this.state = 1091; + this.state = 1050; this.functionName(); - this.state = 1092; + this.state = 1051; this.match(FlinkSqlParser.KW_AS); - this.state = 1093; + this.state = 1052; this.identifier(); - this.state = 1096; + this.state = 1055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1094; + this.state = 1053; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1095; + this.state = 1054; _la = this.tokenStream.LA(1); if(!(_la === 332 || _la === 468 || _la === 484)) { this.errorHandler.recoverInline(this); @@ -4769,26 +4582,26 @@ export class FlinkSqlParser extends SQLParserBase { } public dropCatalog(): DropCatalogContext { let localContext = new DropCatalogContext(this.context, this.state); - this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropCatalog); + this.enterRule(localContext, 124, FlinkSqlParser.RULE_dropCatalog); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1098; + this.state = 1057; this.match(FlinkSqlParser.KW_DROP); - this.state = 1099; + this.state = 1058; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1101; + this.state = 1060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1100; + this.state = 1059; this.ifExists(); } } - this.state = 1103; + this.state = 1062; this.catalogPath(); } } @@ -4808,36 +4621,36 @@ export class FlinkSqlParser extends SQLParserBase { } public dropTable(): DropTableContext { let localContext = new DropTableContext(this.context, this.state); - this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropTable); + this.enterRule(localContext, 126, FlinkSqlParser.RULE_dropTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1105; + this.state = 1064; this.match(FlinkSqlParser.KW_DROP); - this.state = 1107; + this.state = 1066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 500) { { - this.state = 1106; + this.state = 1065; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1109; + this.state = 1068; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1111; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1110; + this.state = 1069; this.ifExists(); } } - this.state = 1113; + this.state = 1072; this.tablePath(); } } @@ -4857,33 +4670,33 @@ export class FlinkSqlParser extends SQLParserBase { } public dropDatabase(): DropDatabaseContext { let localContext = new DropDatabaseContext(this.context, this.state); - this.enterRule(localContext, 142, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localContext, 128, FlinkSqlParser.RULE_dropDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1115; + this.state = 1074; this.match(FlinkSqlParser.KW_DROP); - this.state = 1116; + this.state = 1075; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1118; + this.state = 1077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1117; + this.state = 1076; this.ifExists(); } } - this.state = 1120; + this.state = 1079; this.databasePath(); - this.state = 1122; + this.state = 1081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 443 || _la === 493) { { - this.state = 1121; + this.state = 1080; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 443 || _la === 493)) { @@ -4914,36 +4727,36 @@ export class FlinkSqlParser extends SQLParserBase { } public dropView(): DropViewContext { let localContext = new DropViewContext(this.context, this.state); - this.enterRule(localContext, 144, FlinkSqlParser.RULE_dropView); + this.enterRule(localContext, 130, FlinkSqlParser.RULE_dropView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1124; + this.state = 1083; this.match(FlinkSqlParser.KW_DROP); - this.state = 1126; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 500) { { - this.state = 1125; + this.state = 1084; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1128; + this.state = 1087; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1130; + this.state = 1089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1129; + this.state = 1088; this.ifExists(); } } - this.state = 1132; + this.state = 1091; this.viewPath(); } } @@ -4963,43 +4776,43 @@ export class FlinkSqlParser extends SQLParserBase { } public dropFunction(): DropFunctionContext { let localContext = new DropFunctionContext(this.context, this.state); - this.enterRule(localContext, 146, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localContext, 132, FlinkSqlParser.RULE_dropFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1134; + this.state = 1093; this.match(FlinkSqlParser.KW_DROP); - this.state = 1138; + this.state = 1097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1135; + this.state = 1094; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1136; + this.state = 1095; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1137; + this.state = 1096; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1140; + this.state = 1099; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1142; + this.state = 1101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1141; + this.state = 1100; this.ifExists(); } break; } - this.state = 1144; + this.state = 1103; this.functionName(); } } @@ -5019,27 +4832,27 @@ export class FlinkSqlParser extends SQLParserBase { } public insertStatement(): InsertStatementContext { let localContext = new InsertStatementContext(this.context, this.state); - this.enterRule(localContext, 148, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localContext, 134, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1153; + this.state = 1112; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1147; + this.state = 1106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1146; + this.state = 1105; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1149; + this.state = 1108; this.insertSimpleStatement(); } } @@ -5047,7 +4860,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1150; + this.state = 1109; this.insertMulStatementCompatibility(); } break; @@ -5055,9 +4868,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1151; + this.state = 1110; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1152; + this.state = 1111; this.insertMulStatement(); } } @@ -5080,14 +4893,14 @@ export class FlinkSqlParser extends SQLParserBase { } public insertSimpleStatement(): InsertSimpleStatementContext { let localContext = new InsertSimpleStatementContext(this.context, this.state); - this.enterRule(localContext, 150, FlinkSqlParser.RULE_insertSimpleStatement); + this.enterRule(localContext, 136, FlinkSqlParser.RULE_insertSimpleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1155; + this.state = 1114; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1156; + this.state = 1115; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 267)) { this.errorHandler.recoverInline(this); @@ -5096,40 +4909,42 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1157; + this.state = 1116; this.tablePath(); - this.state = 1166; + this.state = 1126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1159; + this.state = 1119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 1158; - this.insertPartitionDefinition(); + this.state = 1117; + this.match(FlinkSqlParser.KW_PARTITION); + this.state = 1118; + this.tablePropertyList(); } } - this.state = 1162; + this.state = 1122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1161; + this.state = 1121; this.columnNameList(); } break; } - this.state = 1164; + this.state = 1124; this.queryStatement(0); } break; case 2: { - this.state = 1165; + this.state = 1125; this.valuesDefinition(); } break; @@ -5150,56 +4965,30 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public insertPartitionDefinition(): InsertPartitionDefinitionContext { - let localContext = new InsertPartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 152, FlinkSqlParser.RULE_insertPartitionDefinition); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1168; - this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1169; - this.tablePropertyList(); - } - } - 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 valuesDefinition(): ValuesDefinitionContext { let localContext = new ValuesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 154, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localContext, 138, FlinkSqlParser.RULE_valuesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1171; + this.state = 1128; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1172; + this.state = 1129; this.valuesRowDefinition(); - this.state = 1177; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1173; + this.state = 1130; this.match(FlinkSqlParser.COMMA); - this.state = 1174; + this.state = 1131; this.valuesRowDefinition(); } } - this.state = 1179; + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5221,32 +5010,32 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesRowDefinition(): ValuesRowDefinitionContext { let localContext = new ValuesRowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 156, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localContext, 140, FlinkSqlParser.RULE_valuesRowDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1180; + this.state = 1137; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1181; + this.state = 1138; this.valueDefinition(); - this.state = 1186; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1182; + this.state = 1139; this.match(FlinkSqlParser.COMMA); - this.state = 1183; + this.state = 1140; this.valueDefinition(); } } - this.state = 1188; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1189; + this.state = 1146; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5266,22 +5055,22 @@ export class FlinkSqlParser extends SQLParserBase { } public valueDefinition(): ValueDefinitionContext { let localContext = new ValueDefinitionContext(this.context, this.state); - this.enterRule(localContext, 158, FlinkSqlParser.RULE_valueDefinition); + this.enterRule(localContext, 142, FlinkSqlParser.RULE_valueDefinition); try { - this.state = 1193; + this.state = 1150; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1191; + this.state = 1148; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1192; + this.state = 1149; this.functionCallExpression(); } break; @@ -5303,36 +5092,36 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatementCompatibility(): InsertMulStatementCompatibilityContext { let localContext = new InsertMulStatementCompatibilityContext(this.context, this.state); - this.enterRule(localContext, 160, FlinkSqlParser.RULE_insertMulStatementCompatibility); + this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertMulStatementCompatibility); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1195; + this.state = 1152; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1196; + this.state = 1153; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1197; + this.state = 1154; this.match(FlinkSqlParser.KW_SET); - this.state = 1198; + this.state = 1155; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1202; + this.state = 1159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1199; + this.state = 1156; this.insertSimpleStatement(); - this.state = 1200; + this.state = 1157; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1204; + this.state = 1161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 178); - this.state = 1206; + this.state = 1163; this.match(FlinkSqlParser.KW_END); } } @@ -5352,34 +5141,34 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatement(): InsertMulStatementContext { let localContext = new InsertMulStatementContext(this.context, this.state); - this.enterRule(localContext, 162, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localContext, 146, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1208; + this.state = 1165; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1209; + this.state = 1166; this.match(FlinkSqlParser.KW_SET); - this.state = 1210; + this.state = 1167; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1214; + this.state = 1171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1211; + this.state = 1168; this.insertSimpleStatement(); - this.state = 1212; + this.state = 1169; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1216; + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 178); - this.state = 1218; + this.state = 1175; this.match(FlinkSqlParser.KW_END); } } @@ -5409,60 +5198,60 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryStatementContext(this.context, parentState); let previousContext = localContext; - let _startState = 164; - this.enterRecursionRule(localContext, 164, FlinkSqlParser.RULE_queryStatement, _p); + let _startState = 148; + this.enterRecursionRule(localContext, 148, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1243; + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1221; + this.state = 1178; this.valuesClause(); } break; case 2: { - this.state = 1222; + this.state = 1179; this.withClause(); - this.state = 1223; + this.state = 1180; this.queryStatement(5); } break; case 3: { - this.state = 1225; + this.state = 1182; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1226; + this.state = 1183; this.queryStatement(0); - this.state = 1227; + this.state = 1184; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1229; + this.state = 1186; this.selectClause(); - this.state = 1231; + this.state = 1188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1230; + this.state = 1187; this.orderByClause(); } break; } - this.state = 1234; + this.state = 1191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1233; + this.state = 1190; this.limitClause(); } break; @@ -5471,24 +5260,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1236; + this.state = 1193; this.selectStatement(); - this.state = 1238; + this.state = 1195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1237; + this.state = 1194; this.orderByClause(); } break; } - this.state = 1241; + this.state = 1198; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1240; + this.state = 1197; this.limitClause(); } break; @@ -5497,7 +5286,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1259; + this.state = 1216; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5511,11 +5300,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1245; + this.state = 1202; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1246; + this.state = 1203; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 181 || _la === 405)) { @@ -5525,34 +5314,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1248; + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1247; + this.state = 1204; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1250; + this.state = 1207; localContext._right = this.queryStatement(0); - this.state = 1252; + this.state = 1209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1251; + this.state = 1208; this.orderByClause(); } break; } - this.state = 1255; + this.state = 1212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1254; + this.state = 1211; this.limitClause(); } break; @@ -5560,7 +5349,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1261; + this.state = 1218; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); } @@ -5582,30 +5371,30 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 166, FlinkSqlParser.RULE_valuesClause); + this.enterRule(localContext, 150, FlinkSqlParser.RULE_valuesClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1262; + this.state = 1219; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1263; + this.state = 1220; this.expression(); - this.state = 1268; + this.state = 1225; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 124, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1264; + this.state = 1221; this.match(FlinkSqlParser.COMMA); - this.state = 1265; + this.state = 1222; this.expression(); } } } - this.state = 1270; + this.state = 1227; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 124, this.context); } @@ -5627,28 +5416,28 @@ export class FlinkSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 168, FlinkSqlParser.RULE_withClause); + this.enterRule(localContext, 152, FlinkSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1228; this.match(FlinkSqlParser.KW_WITH); - this.state = 1272; + this.state = 1229; this.withItem(); - this.state = 1277; + this.state = 1234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1273; + this.state = 1230; this.match(FlinkSqlParser.COMMA); - this.state = 1274; + this.state = 1231; this.withItem(); } } - this.state = 1279; + this.state = 1236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5670,50 +5459,50 @@ export class FlinkSqlParser extends SQLParserBase { } public withItem(): WithItemContext { let localContext = new WithItemContext(this.context, this.state); - this.enterRule(localContext, 170, FlinkSqlParser.RULE_withItem); + this.enterRule(localContext, 154, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1280; - this.withItemName(); - this.state = 1292; + this.state = 1237; + this.identifier(); + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 519) { { - this.state = 1281; + this.state = 1238; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1282; + this.state = 1239; this.columnName(); - this.state = 1287; + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1283; + this.state = 1240; this.match(FlinkSqlParser.COMMA); - this.state = 1284; + this.state = 1241; this.columnName(); } } - this.state = 1289; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1290; + this.state = 1247; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1294; + this.state = 1251; this.match(FlinkSqlParser.KW_AS); - this.state = 1295; + this.state = 1252; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1296; + this.state = 1253; this.queryStatement(0); - this.state = 1297; + this.state = 1254; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5731,88 +5520,64 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public withItemName(): WithItemNameContext { - let localContext = new WithItemNameContext(this.context, this.state); - this.enterRule(localContext, 172, FlinkSqlParser.RULE_withItemName); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1299; - this.identifier(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localContext, 156, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1321; + this.state = 1276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1301; + this.state = 1256; this.selectClause(); - this.state = 1303; + this.state = 1258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1302; + this.state = 1257; this.fromClause(); } break; } - this.state = 1306; + this.state = 1261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1305; + this.state = 1260; this.whereClause(); } break; } - this.state = 1309; + this.state = 1264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1308; + this.state = 1263; this.groupByClause(); } break; } - this.state = 1312; + this.state = 1267; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1311; + this.state = 1266; this.havingClause(); } break; } - this.state = 1315; + this.state = 1270; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1314; + this.state = 1269; this.windowClause(); } break; @@ -5822,11 +5587,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1317; + this.state = 1272; this.selectClause(); - this.state = 1318; + this.state = 1273; this.fromClause(); - this.state = 1319; + this.state = 1274; this.matchRecognizeClause(); } break; @@ -5848,23 +5613,23 @@ export class FlinkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 176, FlinkSqlParser.RULE_selectClause); + this.enterRule(localContext, 158, FlinkSqlParser.RULE_selectClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1323; + this.state = 1278; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1325; + this.state = 1280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1324; + this.state = 1279; this.setQuantifier(); } break; } - this.state = 1327; + this.state = 1282; this.selectList(); } } @@ -5884,28 +5649,28 @@ export class FlinkSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 178, FlinkSqlParser.RULE_selectList); + this.enterRule(localContext, 160, FlinkSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1329; + this.state = 1284; this.columnProjectItem(); - this.state = 1334; + this.state = 1289; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1330; + this.state = 1285; this.match(FlinkSqlParser.COMMA); - this.state = 1331; + this.state = 1286; this.columnProjectItem(); } } } - this.state = 1336; + this.state = 1291; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } @@ -5927,46 +5692,46 @@ export class FlinkSqlParser extends SQLParserBase { } public columnProjectItem(): ColumnProjectItemContext { let localContext = new ColumnProjectItemContext(this.context, this.state); - this.enterRule(localContext, 180, FlinkSqlParser.RULE_columnProjectItem); + this.enterRule(localContext, 162, FlinkSqlParser.RULE_columnProjectItem); let _la: number; try { - this.state = 1360; + this.state = 1315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1337; + this.state = 1292; this.selectWindowItemColumnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1338; + this.state = 1293; this.selectLiteralColumnName(); - this.state = 1344; + this.state = 1299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1339; + this.state = 1294; this.columnAlias(); } break; case 2: { - this.state = 1341; + this.state = 1296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1340; + this.state = 1295; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1343; + this.state = 1298; this.expression(); } break; @@ -5976,14 +5741,14 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1346; + this.state = 1301; this.tableAllColumns(); - this.state = 1348; + this.state = 1303; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1347; + this.state = 1302; this.columnAlias(); } break; @@ -5993,30 +5758,30 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1350; + this.state = 1305; this.selectExpressionColumnName(); - this.state = 1356; + this.state = 1311; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1351; + this.state = 1306; this.columnAlias(); } break; case 2: { - this.state = 1353; + this.state = 1308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: { - this.state = 1352; + this.state = 1307; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1355; + this.state = 1310; this.columnName(); } break; @@ -6026,11 +5791,11 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1358; + this.state = 1313; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 1359; + this.state = 1314; this.emptyColumn(); } break; @@ -6052,11 +5817,11 @@ export class FlinkSqlParser extends SQLParserBase { } public selectWindowItemColumnName(): SelectWindowItemColumnNameContext { let localContext = new SelectWindowItemColumnNameContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_selectWindowItemColumnName); + this.enterRule(localContext, 164, FlinkSqlParser.RULE_selectWindowItemColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1362; + this.state = 1317; this.overWindowItem(); } } @@ -6076,11 +5841,11 @@ export class FlinkSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 166, FlinkSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1364; + this.state = 1319; this.expression(); } } @@ -6100,11 +5865,11 @@ export class FlinkSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1366; + this.state = 1321; this.columnName(); } } @@ -6124,22 +5889,22 @@ export class FlinkSqlParser extends SQLParserBase { } public columnAlias(): ColumnAliasContext { let localContext = new ColumnAliasContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_columnAlias); + this.enterRule(localContext, 170, FlinkSqlParser.RULE_columnAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1369; + this.state = 1324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1368; + this.state = 1323; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1371; + this.state = 1326; localContext._alias = this.identifier(); } } @@ -6159,40 +5924,40 @@ export class FlinkSqlParser extends SQLParserBase { } public projectItemDefinition(): ProjectItemDefinitionContext { let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localContext, 172, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1388; + this.state = 1343; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1373; + this.state = 1328; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1374; + this.state = 1329; this.expression(); - this.state = 1379; + this.state = 1334; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1376; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1375; + this.state = 1330; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1378; + this.state = 1333; this.columnName(); } break; @@ -6202,24 +5967,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1381; + this.state = 1336; this.columnName(); - this.state = 1386; + this.state = 1341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1383; + this.state = 1338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1382; + this.state = 1337; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1385; + this.state = 1340; this.expression(); } break; @@ -6244,43 +6009,43 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_tableAllColumns); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 1390; + this.state = 1345; this.identifier(); - this.state = 1395; + this.state = 1350; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1391; + this.state = 1346; this.match(FlinkSqlParser.DOT); - this.state = 1392; + this.state = 1347; this.identifier(); } } } - this.state = 1397; + this.state = 1352; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); } - this.state = 1398; + this.state = 1353; this.match(FlinkSqlParser.DOT); } } - this.state = 1402; + this.state = 1357; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -6300,38 +6065,38 @@ export class FlinkSqlParser extends SQLParserBase { } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 194, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 176, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1416; + this.state = 1371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1404; + this.state = 1359; this.primaryExpression(0); - this.state = 1405; + this.state = 1360; this.match(FlinkSqlParser.KW_OVER); - this.state = 1406; + this.state = 1361; this.windowSpec(); - this.state = 1407; + this.state = 1362; this.match(FlinkSqlParser.KW_AS); - this.state = 1408; + this.state = 1363; localContext._alias = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1410; + this.state = 1365; this.primaryExpression(0); - this.state = 1411; + this.state = 1366; this.match(FlinkSqlParser.KW_OVER); - this.state = 1412; + this.state = 1367; this.errorCapturingIdentifier(); - this.state = 1413; + this.state = 1368; this.match(FlinkSqlParser.KW_AS); - this.state = 1414; + this.state = 1369; localContext._alias = this.identifier(); } break; @@ -6353,13 +6118,13 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 178, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1418; + this.state = 1373; this.match(FlinkSqlParser.KW_FROM); - this.state = 1419; + this.state = 1374; this.tableExpression(0); } } @@ -6389,35 +6154,35 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 198; - this.enterRecursionRule(localContext, 198, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 180; + this.enterRecursionRule(localContext, 180, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1432; + this.state = 1387; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1422; + this.state = 1377; this.tableReference(); - this.state = 1427; + this.state = 1382; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1423; + this.state = 1378; this.match(FlinkSqlParser.COMMA); - this.state = 1424; + this.state = 1379; this.tableReference(); } } } - this.state = 1429; + this.state = 1384; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); } @@ -6425,19 +6190,19 @@ export class FlinkSqlParser extends SQLParserBase { break; case 2: { - this.state = 1430; + this.state = 1385; this.inlineDataValueClause(); } break; case 3: { - this.state = 1431; + this.state = 1386; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1455; + this.state = 1410; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -6447,22 +6212,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1453; + this.state = 1408; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1434; + this.state = 1389; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1435; + this.state = 1390; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1436; + this.state = 1391; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1437; + this.state = 1392; this.tableExpression(4); } break; @@ -6470,26 +6235,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1438; + this.state = 1393; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1440; + this.state = 1395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 1439; + this.state = 1394; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1443; + this.state = 1398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 153 || _la === 175 || _la === 203 || _la === 319) { { - this.state = 1442; + this.state = 1397; _la = this.tokenStream.LA(1); if(!(_la === 153 || _la === 175 || _la === 203 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -6501,26 +6266,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1446; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1445; + this.state = 1400; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1448; + this.state = 1403; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1449; + this.state = 1404; this.tableExpression(0); - this.state = 1451; + this.state = 1406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1450; + this.state = 1405; this.joinCondition(); } break; @@ -6530,7 +6295,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1457; + this.state = 1412; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } @@ -6552,18 +6317,18 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1413; this.tablePrimary(); - this.state = 1460; + this.state = 1415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1459; + this.state = 1414; this.tableAlias(); } break; @@ -6586,33 +6351,33 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1475; + this.state = 1430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1463; + this.state = 1418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 1462; + this.state = 1417; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1465; + this.state = 1420; this.tablePath(); - this.state = 1467; + this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1466; + this.state = 1421; this.systemTimePeriod(); } break; @@ -6622,14 +6387,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1469; + this.state = 1424; this.viewPath(); - this.state = 1471; + this.state = 1426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 1470; + this.state = 1425; this.systemTimePeriod(); } break; @@ -6639,14 +6404,14 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1473; + this.state = 1428; this.atomFunctionTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1474; + this.state = 1429; this.atomExpressionTable(); } break; @@ -6668,19 +6433,19 @@ export class FlinkSqlParser extends SQLParserBase { } public atomFunctionTable(): AtomFunctionTableContext { let localContext = new AtomFunctionTableContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_atomFunctionTable); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_atomFunctionTable); try { this.enterOuterAlt(localContext, 1); { - this.state = 1477; + this.state = 1432; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1478; + this.state = 1433; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1479; + this.state = 1434; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1480; + this.state = 1435; this.functionCallExpression(); - this.state = 1481; + this.state = 1436; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6700,44 +6465,44 @@ export class FlinkSqlParser extends SQLParserBase { } public atomExpressionTable(): AtomExpressionTableContext { let localContext = new AtomExpressionTableContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_atomExpressionTable); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_atomExpressionTable); let _la: number; try { - this.state = 1495; + this.state = 1450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_LATERAL: case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 1484; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 200) { { - this.state = 1483; + this.state = 1438; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1486; + this.state = 1441; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1487; + this.state = 1442; this.queryStatement(0); - this.state = 1488; + this.state = 1443; this.match(FlinkSqlParser.RR_BRACKET); } break; case FlinkSqlParser.KW_UNNEST: this.enterOuterAlt(localContext, 2); { - this.state = 1490; + this.state = 1445; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1491; + this.state = 1446; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1492; + this.state = 1447; this.expression(); - this.state = 1493; + this.state = 1448; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6761,43 +6526,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 190, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1497; + this.state = 1452; this.match(FlinkSqlParser.KW_FOR); - this.state = 1498; + this.state = 1453; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1499; + this.state = 1454; this.match(FlinkSqlParser.KW_AS); - this.state = 1500; + this.state = 1455; this.match(FlinkSqlParser.KW_OF); - this.state = 1501; - this.dateTimeExpression(); - } - } - 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 dateTimeExpression(): DateTimeExpressionContext { - let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_dateTimeExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1503; + this.state = 1456; this.expression(); } } @@ -6817,17 +6558,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1458; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1506; + this.state = 1459; this.valuesDefinition(); - this.state = 1507; + this.state = 1460; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1508; + this.state = 1461; this.tableAlias(); } } @@ -6847,17 +6588,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFClause(): WindowTVFClauseContext { let localContext = new WindowTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_windowTVFClause); + this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1510; + this.state = 1463; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1511; + this.state = 1464; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1512; + this.state = 1465; this.windowTVFExpression(); - this.state = 1513; + this.state = 1466; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6877,34 +6618,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExpression(): WindowTVFExpressionContext { let localContext = new WindowTVFExpressionContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_windowTVFExpression); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1468; this.windowTVFName(); - this.state = 1516; + this.state = 1469; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1517; + this.state = 1470; this.windowTVFParam(); - this.state = 1522; + this.state = 1475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1518; + this.state = 1471; this.match(FlinkSqlParser.COMMA); - this.state = 1519; + this.state = 1472; this.windowTVFParam(); } } - this.state = 1524; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1525; + this.state = 1478; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6924,12 +6665,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFName(): WindowTVFNameContext { let localContext = new WindowTVFNameContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_windowTVFName); + this.enterRule(localContext, 198, FlinkSqlParser.RULE_windowTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1527; + this.state = 1480; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 462 || _la === 502)) { this.errorHandler.recoverInline(this); @@ -6956,66 +6697,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1544; + this.state = 1497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1482; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1530; - this.timeAttrColumn(); + this.state = 1483; + this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1531; + this.state = 1484; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1532; + this.state = 1485; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1533; + this.state = 1486; this.match(FlinkSqlParser.KW_DATA); - this.state = 1534; + this.state = 1487; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1535; + this.state = 1488; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1536; - this.timeAttrColumn(); + this.state = 1489; + this.uid(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1537; + this.state = 1490; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1538; + this.state = 1491; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1539; + this.state = 1492; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1540; + this.state = 1493; this.timeIntervalParamName(); - this.state = 1541; + this.state = 1494; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1542; + this.state = 1495; this.timeIntervalExpression(); } break; @@ -7037,12 +6778,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1546; + this.state = 1499; _la = this.tokenStream.LA(1); if(!(_la === 252 || _la === 449 || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -7069,17 +6810,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1548; + this.state = 1501; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1549; + this.state = 1502; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1550; + this.state = 1503; this.columnName(); - this.state = 1551; + this.state = 1504; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7099,37 +6840,37 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1564; + this.state = 1517; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1553; + this.state = 1506; this.match(FlinkSqlParser.KW_ON); - this.state = 1560; + this.state = 1513; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { - this.state = 1554; + this.state = 1507; this.booleanExpression(0); } break; case 2: { - this.state = 1555; + this.state = 1508; this.columnNamePathAllowEmpty(); - this.state = 1558; + this.state = 1511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1556; + this.state = 1509; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 1557; + this.state = 1510; this.columnNamePathAllowEmpty(); } break; @@ -7142,9 +6883,9 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1562; + this.state = 1515; this.match(FlinkSqlParser.KW_USING); - this.state = 1563; + this.state = 1516; this.columnNameList(); } break; @@ -7168,24 +6909,24 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1519; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1569; + this.state = 1522; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1567; + this.state = 1520; this.booleanExpression(0); } break; case 2: { - this.state = 1568; + this.state = 1521; this.columnNamePathAllowEmpty(); } break; @@ -7208,32 +6949,32 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1571; + this.state = 1524; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1572; + this.state = 1525; this.match(FlinkSqlParser.KW_BY); - this.state = 1573; + this.state = 1526; this.groupItemDefinition(); - this.state = 1578; + this.state = 1531; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1574; + this.state = 1527; this.match(FlinkSqlParser.COMMA); - this.state = 1575; + this.state = 1528; this.groupItemDefinition(); } } } - this.state = 1580; + this.state = 1533; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } @@ -7255,124 +6996,133 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1621; + this.state = 1575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1581; + this.state = 1534; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1582; + this.state = 1535; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1583; + this.state = 1536; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1584; + this.state = 1537; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1585; + this.state = 1538; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1586; + this.state = 1539; this.expression(); - this.state = 1591; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1587; + this.state = 1540; this.match(FlinkSqlParser.COMMA); - this.state = 1588; + this.state = 1541; this.expression(); } } - this.state = 1593; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1594; + this.state = 1547; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1596; - this.groupingSetsNotationName(); - this.state = 1597; + this.state = 1549; + _la = this.tokenStream.LA(1); + if(!(_la === 74 || _la === 322)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1550; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1598; + this.state = 1551; this.expression(); - this.state = 1603; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1599; + this.state = 1552; this.match(FlinkSqlParser.COMMA); - this.state = 1600; + this.state = 1553; this.expression(); } } - this.state = 1605; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1606; + this.state = 1559; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1608; - this.groupingSets(); - this.state = 1609; + this.state = 1561; + this.match(FlinkSqlParser.KW_GROUPING); + this.state = 1562; + this.match(FlinkSqlParser.KW_SETS); + this.state = 1563; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1610; + this.state = 1564; this.groupItemDefinition(); - this.state = 1615; + this.state = 1569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1611; + this.state = 1565; this.match(FlinkSqlParser.COMMA); - this.state = 1612; + this.state = 1566; this.groupItemDefinition(); } } - this.state = 1617; + this.state = 1571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1618; + this.state = 1572; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1620; + this.state = 1574; this.expression(); } break; @@ -7392,81 +7142,23 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public groupingSets(): GroupingSetsContext { - let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_groupingSets); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1623; - this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1624; - this.match(FlinkSqlParser.KW_SETS); - } - } - 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 groupingSetsNotationName(): GroupingSetsNotationNameContext { - let localContext = new GroupingSetsNotationNameContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_groupingSetsNotationName); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1626; - _la = this.tokenStream.LA(1); - if(!(_la === 74 || _la === 322)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1628; + this.state = 1577; this.groupWindowFunctionName(); - this.state = 1629; + this.state = 1578; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1630; - this.timeAttrColumn(); - this.state = 1631; + this.state = 1579; + this.uid(); + this.state = 1580; this.match(FlinkSqlParser.COMMA); - this.state = 1632; + this.state = 1581; this.timeIntervalExpression(); - this.state = 1633; + this.state = 1582; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7486,12 +7178,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1584; _la = this.tokenStream.LA(1); if(!(_la === 462 || _la === 495 || _la === 502)) { this.errorHandler.recoverInline(this); @@ -7516,39 +7208,15 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public timeAttrColumn(): TimeAttrColumnContext { - let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_timeAttrColumn); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1637; - this.uid(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1639; + this.state = 1586; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1640; + this.state = 1587; this.booleanExpression(0); } } @@ -7568,30 +7236,30 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1642; + this.state = 1589; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1643; + this.state = 1590; this.namedWindow(); - this.state = 1648; + this.state = 1595; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1644; + this.state = 1591; this.match(FlinkSqlParser.COMMA); - this.state = 1645; + this.state = 1592; this.namedWindow(); } } } - this.state = 1650; + this.state = 1597; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); } @@ -7613,15 +7281,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1651; + this.state = 1598; localContext._name = this.errorCapturingIdentifier(); - this.state = 1652; + this.state = 1599; this.match(FlinkSqlParser.KW_AS); - this.state = 1653; + this.state = 1600; this.windowSpec(); } } @@ -7641,54 +7309,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1656; + this.state = 1603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 1655; + this.state = 1602; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1658; + this.state = 1605; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1660; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 1659; + this.state = 1606; this.partitionByClause(); } } - this.state = 1663; + this.state = 1610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260) { { - this.state = 1662; + this.state = 1609; this.orderByClause(); } } - this.state = 1666; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 294 || _la === 324) { { - this.state = 1665; + this.state = 1612; this.windowFrame(); } } - this.state = 1668; + this.state = 1615; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7708,95 +7376,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1617; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1671; + this.state = 1618; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1673; + this.state = 1620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 1672; + this.state = 1619; this.partitionByClause(); } } - this.state = 1676; + this.state = 1623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260) { { - this.state = 1675; + this.state = 1622; this.orderByClause(); } } - this.state = 1679; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1678; + this.state = 1625; this.measuresClause(); } } - this.state = 1682; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 256) { { - this.state = 1681; + this.state = 1628; this.outputMode(); } } - this.state = 1685; + this.state = 1632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 441) { { - this.state = 1684; + this.state = 1631; this.afterMatchStrategy(); } } - this.state = 1688; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 1687; + this.state = 1634; this.patternDefinition(); } } - this.state = 1690; + this.state = 1637; this.patternVariablesDefinition(); - this.state = 1691; + this.state = 1638; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1696; + this.state = 1643; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 1693; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1692; + this.state = 1639; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1695; + this.state = 1642; this.identifier(); } break; @@ -7819,32 +7487,32 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_orderByClause); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_orderByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1698; + this.state = 1645; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1699; + this.state = 1646; this.match(FlinkSqlParser.KW_BY); - this.state = 1700; + this.state = 1647; this.orderItemDefinition(); - this.state = 1705; + this.state = 1652; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1701; + this.state = 1648; this.match(FlinkSqlParser.COMMA); - this.state = 1702; + this.state = 1649; this.orderItemDefinition(); } } } - this.state = 1707; + this.state = 1654; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); } @@ -7866,33 +7534,33 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefinition(): OrderItemDefinitionContext { let localContext = new OrderItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_orderItemDefinition); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderItemDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1710; + this.state = 1657; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1708; + this.state = 1655; this.columnName(); } break; case 2: { - this.state = 1709; + this.state = 1656; this.valueExpression(0); } break; } - this.state = 1713; + this.state = 1660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: { - this.state = 1712; + this.state = 1659; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 453)) { @@ -7905,14 +7573,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1717; + this.state = 1664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 1715; + this.state = 1662; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1716; + this.state = 1663; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 470)) { @@ -7943,18 +7611,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1666; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1722; + this.state = 1669; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1720; + this.state = 1667; this.match(FlinkSqlParser.KW_ALL); } break; @@ -8117,7 +7785,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1721; + this.state = 1668; localContext._limit = this.expression(); } break; @@ -8142,58 +7810,58 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 260, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1724; + this.state = 1671; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1725; + this.state = 1672; this.match(FlinkSqlParser.KW_BY); - this.state = 1728; + this.state = 1675; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 1726; + this.state = 1673; this.columnName(); } break; case 2: { - this.state = 1727; + this.state = 1674; this.primaryExpression(0); } break; } - this.state = 1737; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1730; + this.state = 1677; this.match(FlinkSqlParser.COMMA); - this.state = 1733; + this.state = 1680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { case 1: { - this.state = 1731; + this.state = 1678; this.columnName(); } break; case 2: { - this.state = 1732; + this.state = 1679; this.primaryExpression(0); } break; } } } - this.state = 1739; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8215,16 +7883,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1756; + this.state = 1703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1740; + this.state = 1687; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -8233,7 +7901,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1741; + this.state = 1688; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -8242,7 +7910,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1742; + this.state = 1689; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -8251,15 +7919,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1743; + this.state = 1690; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1744; + this.state = 1691; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1745; + this.state = 1692; this.match(FlinkSqlParser.COMMA); - this.state = 1746; + this.state = 1693; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1747; + this.state = 1694; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8268,13 +7936,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1748; + this.state = 1695; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1749; + this.state = 1696; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1750; + this.state = 1697; this.match(FlinkSqlParser.COMMA); - this.state = 1751; + this.state = 1698; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8283,13 +7951,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1752; + this.state = 1699; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1753; + this.state = 1700; this.match(FlinkSqlParser.COMMA); - this.state = 1754; + this.state = 1701; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1755; + this.state = 1702; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8312,28 +7980,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1758; + this.state = 1705; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1759; + this.state = 1706; this.projectItemDefinition(); - this.state = 1764; + this.state = 1711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1760; + this.state = 1707; this.match(FlinkSqlParser.COMMA); - this.state = 1761; + this.state = 1708; this.projectItemDefinition(); } } - this.state = 1766; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8355,37 +8023,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefinition(): PatternDefinitionContext { let localContext = new PatternDefinitionContext(this.context, this.state); - this.enterRule(localContext, 266, FlinkSqlParser.RULE_patternDefinition); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_patternDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1767; + this.state = 1714; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1768; + this.state = 1715; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1770; + this.state = 1717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1769; + this.state = 1716; this.patternVariable(); } } - this.state = 1772; + this.state = 1719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 541 || _la === 544); - this.state = 1774; + this.state = 1721; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1776; + this.state = 1723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 437) { { - this.state = 1775; + this.state = 1722; this.withinClause(); } } @@ -8408,19 +8076,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1778; + this.state = 1725; this.unquotedIdentifier(); - this.state = 1780; + this.state = 1727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 135681) !== 0)) { { - this.state = 1779; + this.state = 1726; this.quantifiers(); } } @@ -8443,34 +8111,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_outputMode); try { - this.state = 1790; + this.state = 1737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1782; + this.state = 1729; this.match(FlinkSqlParser.KW_ALL); - this.state = 1783; + this.state = 1730; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1784; + this.state = 1731; this.match(FlinkSqlParser.KW_PER); - this.state = 1785; + this.state = 1732; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1786; + this.state = 1733; this.match(FlinkSqlParser.KW_ONE); - this.state = 1787; + this.state = 1734; this.match(FlinkSqlParser.KW_ROW); - this.state = 1788; + this.state = 1735; this.match(FlinkSqlParser.KW_PER); - this.state = 1789; + this.state = 1736; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -8494,76 +8162,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1816; + this.state = 1763; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1792; + this.state = 1739; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1793; + this.state = 1740; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1794; + this.state = 1741; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1795; + this.state = 1742; this.match(FlinkSqlParser.KW_PAST); - this.state = 1796; + this.state = 1743; this.match(FlinkSqlParser.KW_LAST); - this.state = 1797; + this.state = 1744; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1798; + this.state = 1745; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1799; + this.state = 1746; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1800; + this.state = 1747; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1801; + this.state = 1748; this.match(FlinkSqlParser.KW_TO); - this.state = 1802; + this.state = 1749; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1803; + this.state = 1750; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1804; + this.state = 1751; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1805; + this.state = 1752; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1806; + this.state = 1753; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1807; + this.state = 1754; this.match(FlinkSqlParser.KW_TO); - this.state = 1808; + this.state = 1755; this.match(FlinkSqlParser.KW_LAST); - this.state = 1809; + this.state = 1756; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1810; + this.state = 1757; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1811; + this.state = 1758; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1812; + this.state = 1759; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1813; + this.state = 1760; this.match(FlinkSqlParser.KW_TO); - this.state = 1814; + this.state = 1761; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1815; + this.state = 1762; this.unquotedIdentifier(); } break; @@ -8585,28 +8253,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefinition(): PatternVariablesDefinitionContext { let localContext = new PatternVariablesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_patternVariablesDefinition); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_patternVariablesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1818; + this.state = 1765; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1819; + this.state = 1766; this.projectItemDefinition(); - this.state = 1824; + this.state = 1771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1820; + this.state = 1767; this.match(FlinkSqlParser.COMMA); - this.state = 1821; + this.state = 1768; this.projectItemDefinition(); } } - this.state = 1826; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8628,29 +8296,29 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_windowFrame); let _la: number; try { - this.state = 1842; + this.state = 1789; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1774; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1828; + this.state = 1775; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1829; + this.state = 1776; this.timeIntervalExpression(); - this.state = 1830; + this.state = 1777; this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1832; + this.state = 1779; _la = this.tokenStream.LA(1); if(!(_la === 294 || _la === 324)) { this.errorHandler.recoverInline(this); @@ -8659,26 +8327,26 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1833; + this.state = 1780; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1834; + this.state = 1781; this.frameStart(); - this.state = 1835; + this.state = 1782; this.match(FlinkSqlParser.KW_AND); - this.state = 1836; + this.state = 1783; this.frameEnd(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1838; + this.state = 1785; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1839; + this.state = 1786; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1840; + this.state = 1787; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1841; + this.state = 1788; this.frameBound(); } break; @@ -8700,17 +8368,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1844; + this.state = 1791; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1845; + this.state = 1792; this.match(FlinkSqlParser.KW_AND); - this.state = 1846; + this.state = 1793; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1847; + this.state = 1794; this.match(FlinkSqlParser.KW_ROW); } } @@ -8730,35 +8398,35 @@ export class FlinkSqlParser extends SQLParserBase { } public frameStart(): FrameStartContext { let localContext = new FrameStartContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_frameStart); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_frameStart); try { - this.state = 1855; + this.state = 1802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_UNBOUNDED: this.enterOuterAlt(localContext, 1); { - this.state = 1849; + this.state = 1796; this.match(FlinkSqlParser.KW_UNBOUNDED); - this.state = 1850; + this.state = 1797; this.match(FlinkSqlParser.KW_PRECEDING); } break; case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 1851; + this.state = 1798; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1852; + this.state = 1799; this.match(FlinkSqlParser.KW_PRECEDING); } break; case FlinkSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 3); { - this.state = 1853; + this.state = 1800; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1854; + this.state = 1801; this.match(FlinkSqlParser.KW_ROW); } break; @@ -8782,35 +8450,35 @@ export class FlinkSqlParser extends SQLParserBase { } public frameEnd(): FrameEndContext { let localContext = new FrameEndContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_frameEnd); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_frameEnd); try { - this.state = 1863; + this.state = 1810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 1); { - this.state = 1857; + this.state = 1804; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1858; + this.state = 1805; this.match(FlinkSqlParser.KW_ROW); } break; case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 1859; + this.state = 1806; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1860; + this.state = 1807; this.match(FlinkSqlParser.KW_FOLLOWING); } break; case FlinkSqlParser.KW_UNBOUNDED: this.enterOuterAlt(localContext, 3); { - this.state = 1861; + this.state = 1808; this.match(FlinkSqlParser.KW_UNBOUNDED); - this.state = 1862; + this.state = 1809; this.match(FlinkSqlParser.KW_FOLLOWING); } break; @@ -8834,13 +8502,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1812; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1866; + this.state = 1813; this.timeIntervalExpression(); } } @@ -8860,11 +8528,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1868; + this.state = 1815; this.booleanExpression(0); } } @@ -8894,14 +8562,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 288; - this.enterRecursionRule(localContext, 288, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 262; + this.enterRecursionRule(localContext, 262, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1882; + this.state = 1829; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: @@ -8910,9 +8578,9 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1871; + this.state = 1818; this.match(FlinkSqlParser.KW_NOT); - this.state = 1872; + this.state = 1819; this.booleanExpression(6); } break; @@ -8921,13 +8589,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1873; + this.state = 1820; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1874; + this.state = 1821; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1875; + this.state = 1822; this.queryStatement(0); - this.state = 1876; + this.state = 1823; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8936,14 +8604,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1878; + this.state = 1825; this.valueExpression(0); - this.state = 1880; + this.state = 1827; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 1879; + this.state = 1826; this.predicate(); } break; @@ -8952,7 +8620,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1898; + this.state = 1845; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 213, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8962,7 +8630,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1896; + this.state = 1843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: @@ -8970,13 +8638,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1884; + this.state = 1831; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1885; + this.state = 1832; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1886; + this.state = 1833; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8985,13 +8653,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1887; + this.state = 1834; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1888; + this.state = 1835; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1889; + this.state = 1836; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8999,23 +8667,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1890; + this.state = 1837; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1891; + this.state = 1838; this.match(FlinkSqlParser.KW_IS); - this.state = 1893; + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1892; + this.state = 1839; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1895; + this.state = 1842; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 246 || _la === 399 || _la === 407)) { @@ -9030,7 +8698,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1900; + this.state = 1847; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 213, this.context); } @@ -9052,33 +8720,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1975; + this.state = 1922; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1901; + this.state = 1848; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1904; + this.state = 1851; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1906; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 371) { { - this.state = 1905; + this.state = 1852; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 371)) { this.errorHandler.recoverInline(this); @@ -9090,131 +8758,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1908; + this.state = 1855; localContext._lower = this.valueExpression(0); - this.state = 1909; + this.state = 1856; this.match(FlinkSqlParser.KW_AND); - this.state = 1910; + this.state = 1857; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1913; + this.state = 1860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1912; + this.state = 1859; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1915; + this.state = 1862; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1916; + this.state = 1863; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1917; + this.state = 1864; this.expression(); - this.state = 1922; + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1918; + this.state = 1865; this.match(FlinkSqlParser.COMMA); - this.state = 1919; + this.state = 1866; this.expression(); } } - this.state = 1924; + this.state = 1871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1925; + this.state = 1872; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1928; + this.state = 1875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1927; + this.state = 1874; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1930; + this.state = 1877; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1931; + this.state = 1878; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1932; + this.state = 1879; this.queryStatement(0); - this.state = 1933; + this.state = 1880; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1935; + this.state = 1882; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1936; + this.state = 1883; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1937; + this.state = 1884; this.queryStatement(0); - this.state = 1938; + this.state = 1885; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1941; + this.state = 1888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1940; + this.state = 1887; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1943; + this.state = 1890; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1944; + this.state = 1891; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1945; + this.state = 1892; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1946; + this.state = 1893; this.match(FlinkSqlParser.KW_IS); - this.state = 1948; + this.state = 1895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1947; + this.state = 1894; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1950; + this.state = 1897; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 246 || _la === 399 || _la === 407)) { @@ -9229,53 +8897,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1951; + this.state = 1898; this.match(FlinkSqlParser.KW_IS); - this.state = 1953; + this.state = 1900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1952; + this.state = 1899; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1955; + this.state = 1902; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1956; + this.state = 1903; this.match(FlinkSqlParser.KW_FROM); - this.state = 1957; + this.state = 1904; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1959; + this.state = 1906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1958; + this.state = 1905; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1961; + this.state = 1908; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1962; + this.state = 1909; this.match(FlinkSqlParser.KW_TO); - this.state = 1963; + this.state = 1910; localContext._right = this.valueExpression(0); - this.state = 1966; + this.state = 1913; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1964; + this.state = 1911; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1965; + this.state = 1912; this.stringLiteral(); } break; @@ -9285,28 +8953,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1968; + this.state = 1915; this.match(FlinkSqlParser.KW_IS); - this.state = 1969; + this.state = 1916; this.match(FlinkSqlParser.KW_JSON); - this.state = 1973; + this.state = 1920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1970; + this.state = 1917; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1971; + this.state = 1918; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1972; + this.state = 1919; this.identifier(); } break; @@ -9331,54 +8999,54 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonFunctionBranch(): JsonFunctionBranchContext { let localContext = new JsonFunctionBranchContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_jsonFunctionBranch); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_jsonFunctionBranch); try { - this.state = 1985; + this.state = 1932; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1977; + this.state = 1924; this.match(FlinkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1978; + this.state = 1925; this.match(FlinkSqlParser.KW_EMPTY); - this.state = 1979; + this.state = 1926; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1980; + this.state = 1927; this.match(FlinkSqlParser.KW_EMPTY); - this.state = 1981; + this.state = 1928; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1982; + this.state = 1929; this.match(FlinkSqlParser.KW_TRUE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1983; + this.state = 1930; this.match(FlinkSqlParser.KW_FALSE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1984; + this.state = 1931; this.match(FlinkSqlParser.KW_UNKNOWN); } break; @@ -9400,28 +9068,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 2016; + this.state = 1963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1988; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 1987; + this.state = 1934; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1990; + this.state = 1937; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1991; + this.state = 1938; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -9431,40 +9099,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2005; + this.state = 1952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { - this.state = 1992; + this.state = 1939; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1993; + this.state = 1940; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1994; + this.state = 1941; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1995; + this.state = 1942; this.expression(); - this.state = 2000; + this.state = 1947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 1996; + this.state = 1943; this.match(FlinkSqlParser.COMMA); - this.state = 1997; + this.state = 1944; this.expression(); } } - this.state = 2002; + this.state = 1949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2003; + this.state = 1950; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9474,28 +9142,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2008; + this.state = 1955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 2007; + this.state = 1954; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2010; + this.state = 1957; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 2011; + this.state = 1958; localContext._pattern = this.valueExpression(0); - this.state = 2014; + this.state = 1961; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2012; + this.state = 1959; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 2013; + this.state = 1960; this.stringLiteral(); } break; @@ -9530,14 +9198,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 296; - this.enterRecursionRule(localContext, 296, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 270; + this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2022; + this.state = 1969; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: @@ -9546,7 +9214,7 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2019; + this.state = 1966; this.primaryExpression(0); } break; @@ -9555,7 +9223,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2020; + this.state = 1967; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 3145729) !== 0))) { @@ -9565,13 +9233,13 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2021; + this.state = 1968; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2045; + this.state = 1992; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9581,7 +9249,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2043; + this.state = 1990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: @@ -9589,11 +9257,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 2024; + this.state = 1971; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 2025; + this.state = 1972; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 455 || ((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 145) !== 0))) { @@ -9603,7 +9271,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2026; + this.state = 1973; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -9612,11 +9280,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 2027; + this.state = 1974; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2028; + this.state = 1975; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 532)) & ~0x1F) === 0 && ((1 << (_la - 532)) & 11) !== 0))) { @@ -9626,7 +9294,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2029; + this.state = 1976; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -9635,13 +9303,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 2030; + this.state = 1977; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 2031; + this.state = 1978; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2032; + this.state = 1979; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -9650,13 +9318,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 2033; + this.state = 1980; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2034; + this.state = 1981; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 2035; + this.state = 1982; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9665,13 +9333,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 2036; + this.state = 1983; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2037; + this.state = 1984; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2038; + this.state = 1985; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9680,20 +9348,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 2039; + this.state = 1986; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2040; + this.state = 1987; this.comparisonOperator(); - this.state = 2041; + this.state = 1988; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 2047; + this.state = 1994; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); } @@ -9715,10 +9383,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 2067; + this.state = 2014; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -9728,7 +9396,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2048; + this.state = 1995; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9738,7 +9406,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 2049; + this.state = 1996; this.functionNameAndParams(); } break; @@ -9879,47 +9547,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2050; + this.state = 1997; this.functionNameWithParams(); - this.state = 2051; + this.state = 1998; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2063; + this.state = 2010; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2053; + this.state = 2000; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2052; + this.state = 1999; this.setQuantifier(); } break; } - this.state = 2055; + this.state = 2002; this.functionParam(); - this.state = 2060; + this.state = 2007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 2056; + this.state = 2003; this.match(FlinkSqlParser.COMMA); - this.state = 2057; + this.state = 2004; this.functionParam(); } } - this.state = 2062; + this.state = 2009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2065; + this.state = 2012; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9953,14 +9621,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 300; - this.enterRecursionRule(localContext, 300, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 274; + this.enterRecursionRule(localContext, 274, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2151; + this.state = 2098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: @@ -9969,35 +9637,35 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2070; + this.state = 2017; this.match(FlinkSqlParser.KW_CASE); - this.state = 2072; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2071; + this.state = 2018; this.whenClause(); } } - this.state = 2074; + this.state = 2021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); - this.state = 2078; + this.state = 2025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 2076; + this.state = 2023; this.match(FlinkSqlParser.KW_ELSE); - this.state = 2077; + this.state = 2024; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2080; + this.state = 2027; this.match(FlinkSqlParser.KW_END); } break; @@ -10006,37 +9674,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2082; + this.state = 2029; this.match(FlinkSqlParser.KW_CASE); - this.state = 2083; + this.state = 2030; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 2085; + this.state = 2032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2084; + this.state = 2031; this.whenClause(); } } - this.state = 2087; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); - this.state = 2091; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 2089; + this.state = 2036; this.match(FlinkSqlParser.KW_ELSE); - this.state = 2090; + this.state = 2037; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2093; + this.state = 2040; this.match(FlinkSqlParser.KW_END); } break; @@ -10045,17 +9713,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2095; + this.state = 2042; this.match(FlinkSqlParser.KW_CAST); - this.state = 2096; + this.state = 2043; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2097; + this.state = 2044; this.expression(); - this.state = 2098; + this.state = 2045; this.match(FlinkSqlParser.KW_AS); - this.state = 2099; + this.state = 2046; this.columnType(); - this.state = 2100; + this.state = 2047; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10064,25 +9732,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2102; + this.state = 2049; this.match(FlinkSqlParser.KW_FIRST); - this.state = 2103; + this.state = 2050; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2104; + this.state = 2051; this.expression(); - this.state = 2107; + this.state = 2054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 464) { { - this.state = 2105; + this.state = 2052; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 2106; + this.state = 2053; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 2109; + this.state = 2056; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10091,25 +9759,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2111; + this.state = 2058; this.match(FlinkSqlParser.KW_LAST); - this.state = 2112; + this.state = 2059; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2113; + this.state = 2060; this.expression(); - this.state = 2116; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 464) { { - this.state = 2114; + this.state = 2061; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 2115; + this.state = 2062; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 2118; + this.state = 2065; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10118,17 +9786,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2120; + this.state = 2067; this.match(FlinkSqlParser.KW_POSITION); - this.state = 2121; + this.state = 2068; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2122; + this.state = 2069; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 2123; + this.state = 2070; this.match(FlinkSqlParser.KW_IN); - this.state = 2124; + this.state = 2071; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 2125; + this.state = 2072; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10137,7 +9805,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2127; + this.state = 2074; this.constant(); } break; @@ -10146,7 +9814,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2128; + this.state = 2075; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -10155,11 +9823,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2129; + this.state = 2076; this.uid(); - this.state = 2130; + this.state = 2077; this.match(FlinkSqlParser.DOT); - this.state = 2131; + this.state = 2078; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -10168,11 +9836,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2133; + this.state = 2080; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2134; + this.state = 2081; this.queryStatement(0); - this.state = 2135; + this.state = 2082; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10181,7 +9849,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2137; + this.state = 2084; this.functionCallExpression(); } break; @@ -10190,7 +9858,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2138; + this.state = 2085; this.columnNamePath(); } break; @@ -10199,7 +9867,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2139; + this.state = 2086; this.dereferenceDefinition(); } break; @@ -10208,11 +9876,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2140; + this.state = 2087; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2141; + this.state = 2088; this.expression(); - this.state = 2142; + this.state = 2089; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10221,23 +9889,23 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2144; + this.state = 2091; this.match(FlinkSqlParser.KW_EXTRACT); - this.state = 2145; + this.state = 2092; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2146; + this.state = 2093; (localContext as ExtractContext)._field = this.identifier(); - this.state = 2147; + this.state = 2094; this.match(FlinkSqlParser.KW_FROM); - this.state = 2148; + this.state = 2095; (localContext as ExtractContext)._source = this.valueExpression(0); - this.state = 2149; + this.state = 2096; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2160; + this.state = 2107; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 247, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10251,20 +9919,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 2153; + this.state = 2100; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2154; + this.state = 2101; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 2155; + this.state = 2102; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2156; + this.state = 2103; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2162; + this.state = 2109; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 247, this.context); } @@ -10286,11 +9954,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2110; this.uid(); } } @@ -10310,36 +9978,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionName); try { - this.state = 2169; + this.state = 2116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2112; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2166; + this.state = 2113; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2167; + this.state = 2114; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2168; + this.state = 2115; this.uid(); } break; @@ -10361,9 +10029,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2175; + this.state = 2122; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -10371,16 +10039,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2118; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2172; + this.state = 2119; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2174; + this.state = 2121; this.timeIntervalExpression(); } break; @@ -10404,22 +10072,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2179; + this.state = 2126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2177; + this.state = 2124; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2178; + this.state = 2125; this.uid(); } break; @@ -10441,64 +10109,64 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_functionParam); try { - this.state = 2189; + this.state = 2136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2128; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2182; + this.state = 2129; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2183; + this.state = 2130; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2184; + this.state = 2131; this.expression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2185; + this.state = 2132; this.jsonValueParams(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2186; + this.state = 2133; this.jsonQueryParams(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2187; + this.state = 2134; this.jsonObjectParams(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2188; + this.state = 2135; this.jsonArrayParams(); } break; @@ -10520,31 +10188,31 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonValueParams(): JsonValueParamsContext { let localContext = new JsonValueParamsContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_jsonValueParams); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_jsonValueParams); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2191; + this.state = 2138; this.columnNamePath(); - this.state = 2195; + this.state = 2142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2192; + this.state = 2139; this.uid(); - this.state = 2193; + this.state = 2140; this.columnType(); } break; } - this.state = 2205; + this.state = 2152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2201; + this.state = 2148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ADD: @@ -10619,40 +10287,40 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2197; + this.state = 2144; this.uid(); } break; case FlinkSqlParser.KW_NULL: { - this.state = 2198; + this.state = 2145; this.match(FlinkSqlParser.KW_NULL); } break; case FlinkSqlParser.KW_DEFAULT: { - this.state = 2199; + this.state = 2146; this.match(FlinkSqlParser.KW_DEFAULT); - this.state = 2200; + this.state = 2147; this.valueExpression(0); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2203; + this.state = 2150; this.match(FlinkSqlParser.KW_ON); - this.state = 2204; + this.state = 2151; this.match(FlinkSqlParser.KW_EMPTY); } break; } - this.state = 2215; + this.state = 2162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 246 || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 2211; + this.state = 2158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ADD: @@ -10727,30 +10395,30 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2207; + this.state = 2154; this.uid(); } break; case FlinkSqlParser.KW_NULL: { - this.state = 2208; + this.state = 2155; this.match(FlinkSqlParser.KW_NULL); } break; case FlinkSqlParser.KW_DEFAULT: { - this.state = 2209; + this.state = 2156; this.match(FlinkSqlParser.KW_DEFAULT); - this.state = 2210; + this.state = 2157; this.valueExpression(0); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2213; + this.state = 2160; this.match(FlinkSqlParser.KW_ON); - this.state = 2214; + this.state = 2161; this.uid(); } } @@ -10773,37 +10441,37 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonQueryParams(): JsonQueryParamsContext { let localContext = new JsonQueryParamsContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_jsonQueryParams); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_jsonQueryParams); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2217; + this.state = 2164; this.columnNamePath(); - this.state = 2229; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436 || _la === 438) { { - this.state = 2223; + this.state = 2170; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_WITHOUT: { - this.state = 2218; + this.state = 2165; this.match(FlinkSqlParser.KW_WITHOUT); } break; case FlinkSqlParser.KW_WITH: { - this.state = 2219; + this.state = 2166; this.match(FlinkSqlParser.KW_WITH); - this.state = 2221; + this.state = 2168; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2220; + this.state = 2167; this.uid(); } break; @@ -10813,45 +10481,45 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2226; + this.state = 2173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 2225; + this.state = 2172; this.match(FlinkSqlParser.KW_ARRAY); } } - this.state = 2228; + this.state = 2175; this.uid(); } } - this.state = 2235; + this.state = 2182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2231; + this.state = 2178; this.jsonFunctionBranch(); - this.state = 2232; + this.state = 2179; this.match(FlinkSqlParser.KW_ON); - this.state = 2233; + this.state = 2180; this.match(FlinkSqlParser.KW_EMPTY); } break; } - this.state = 2241; + this.state = 2188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 121 || _la === 140 || _la === 246 || _la === 399 || _la === 407) { { - this.state = 2237; + this.state = 2184; this.jsonFunctionBranch(); - this.state = 2238; + this.state = 2185; this.match(FlinkSqlParser.KW_ON); - this.state = 2239; + this.state = 2186; this.uid(); } } @@ -10874,42 +10542,42 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonObjectParams(): JsonObjectParamsContext { let localContext = new JsonObjectParamsContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_jsonObjectParams); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_jsonObjectParams); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2264; + this.state = 2211; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2244; + this.state = 2191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2243; + this.state = 2190; this.match(FlinkSqlParser.KW_KEY); } break; } - this.state = 2246; + this.state = 2193; this.columnNamePath(); - this.state = 2248; + this.state = 2195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 416) { { - this.state = 2247; + this.state = 2194; this.match(FlinkSqlParser.KW_VALUE); } } - this.state = 2260; + this.state = 2207; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ABS: @@ -11070,31 +10738,31 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 2250; + this.state = 2197; this.valueExpression(0); } break; case FlinkSqlParser.KW_JSON: { - this.state = 2251; + this.state = 2198; this.match(FlinkSqlParser.KW_JSON); - this.state = 2252; + this.state = 2199; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2256; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811437) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 29427209) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 675283027) !== 0) || ((((_la - 183)) & ~0x1F) === 0 && ((1 << (_la - 183)) & 487931745) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 3892347713) !== 0) || ((((_la - 266)) & ~0x1F) === 0 && ((1 << (_la - 266)) & 537530369) !== 0) || ((((_la - 319)) & ~0x1F) === 0 && ((1 << (_la - 319)) & 131185) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 14681219) !== 0) || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 100679709) !== 0) || ((((_la - 439)) & ~0x1F) === 0 && ((1 << (_la - 439)) & 4294967295) !== 0) || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 4294967295) !== 0) || ((((_la - 503)) & ~0x1F) === 0 && ((1 << (_la - 503)) & 1744896543) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 31) !== 0)) { { { - this.state = 2253; + this.state = 2200; this.valueExpression(0); } } - this.state = 2258; + this.state = 2205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2259; + this.state = 2206; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -11104,21 +10772,21 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 2266; + this.state = 2213; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); } - this.state = 2273; + this.state = 2220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246 || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 2269; + this.state = 2216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_NULL: { - this.state = 2267; + this.state = 2214; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11194,16 +10862,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2268; + this.state = 2215; this.uid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2271; + this.state = 2218; this.match(FlinkSqlParser.KW_ON); - this.state = 2272; + this.state = 2219; this.match(FlinkSqlParser.KW_NULL); } } @@ -11226,39 +10894,39 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonArrayParams(): JsonArrayParamsContext { let localContext = new JsonArrayParamsContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_jsonArrayParams); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_jsonArrayParams); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2278; + this.state = 2225; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 270, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2275; + this.state = 2222; this.valueExpression(0); } } } - this.state = 2280; + this.state = 2227; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 270, this.context); } - this.state = 2287; + this.state = 2234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246 || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 2283; + this.state = 2230; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_NULL: { - this.state = 2281; + this.state = 2228; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11334,16 +11002,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2282; + this.state = 2229; this.uid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2285; + this.state = 2232; this.match(FlinkSqlParser.KW_ON); - this.state = 2286; + this.state = 2233; this.match(FlinkSqlParser.KW_NULL); } } @@ -11366,11 +11034,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2289; + this.state = 2236; this.uid(); } } @@ -11388,48 +11056,24 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public correlationName(): CorrelationNameContext { - let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_correlationName); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2291; - this.identifier(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2295; + this.state = 2240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2238; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2294; + this.state = 2239; this.dereferenceDefinition(); } break; @@ -11451,24 +11095,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2242; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2300; + this.state = 2245; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2298; + this.state = 2243; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2299; + this.state = 2244; this.errorCapturingUnitToUnitInterval(); } break; @@ -11491,18 +11135,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2247; this.multiUnitsInterval(); - this.state = 2304; + this.state = 2249; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2303; + this.state = 2248; this.unitToUnitInterval(); } break; @@ -11525,12 +11169,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2309; + this.state = 2254; this.errorHandler.sync(this); alternative = 1; do { @@ -11538,9 +11182,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2306; + this.state = 2251; this.intervalValue(); - this.state = 2307; + this.state = 2252; this.timeIntervalUnit(); } } @@ -11548,7 +11192,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2311; + this.state = 2256; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -11570,24 +11214,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2313; + this.state = 2258; localContext._body = this.unitToUnitInterval(); - this.state = 2316; + this.state = 2261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2314; + this.state = 2259; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2315; + this.state = 2260; localContext._error2 = this.unitToUnitInterval(); } break; @@ -11610,17 +11254,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2318; + this.state = 2263; localContext._value = this.intervalValue(); - this.state = 2319; + this.state = 2264; localContext._from_ = this.timeIntervalUnit(); - this.state = 2320; + this.state = 2265; this.match(FlinkSqlParser.KW_TO); - this.state = 2321; + this.state = 2266; localContext._to = this.timeIntervalUnit(); } } @@ -11640,10 +11284,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2328; + this.state = 2273; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -11652,12 +11296,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2324; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 532 || _la === 533) { { - this.state = 2323; + this.state = 2268; _la = this.tokenStream.LA(1); if(!(_la === 532 || _la === 533)) { this.errorHandler.recoverInline(this); @@ -11669,7 +11313,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2326; + this.state = 2271; _la = this.tokenStream.LA(1); if(!(_la === 541 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -11683,7 +11327,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2327; + this.state = 2272; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11707,29 +11351,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2331; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2330; + this.state = 2275; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2333; + this.state = 2278; localContext._alias = this.identifier(); - this.state = 2335; + this.state = 2280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 2334; + this.state = 2279; this.identifierList(); } break; @@ -11752,13 +11396,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2337; + this.state = 2282; this.identifier(); - this.state = 2338; + this.state = 2283; this.errorCapturingIdentifierExtra(); } } @@ -11778,29 +11422,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2347; + this.state = 2292; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2342; + this.state = 2287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2340; + this.state = 2285; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2341; + this.state = 2286; this.identifier(); } } - this.state = 2344; + this.state = 2289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 223); @@ -11834,15 +11478,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2349; + this.state = 2294; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2350; + this.state = 2295; this.identifierSeq(); - this.state = 2351; + this.state = 2296; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11862,26 +11506,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2353; + this.state = 2298; this.identifier(); - this.state = 2358; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 2354; + this.state = 2299; this.match(FlinkSqlParser.COMMA); - this.state = 2355; + this.state = 2300; this.identifier(); } } - this.state = 2360; + this.state = 2305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11903,9 +11547,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_identifier); try { - this.state = 2364; + this.state = 2309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -11913,7 +11557,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2361; + this.state = 2306; this.unquotedIdentifier(); } break; @@ -11921,7 +11565,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2362; + this.state = 2307; this.quotedIdentifier(); } break; @@ -11996,7 +11640,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2363; + this.state = 2308; this.nonReservedKeywords(); } break; @@ -12020,12 +11664,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2366; + this.state = 2311; _la = this.tokenStream.LA(1); if(!(_la === 541 || _la === 544)) { this.errorHandler.recoverInline(this); @@ -12052,11 +11696,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2368; + this.state = 2313; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -12076,17 +11720,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2370; + this.state = 2315; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2371; + this.state = 2316; localContext._condition = this.expression(); - this.state = 2372; + this.state = 2317; this.match(FlinkSqlParser.KW_THEN); - this.state = 2373; + this.state = 2318; localContext._result = this.expression(); } } @@ -12106,11 +11750,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2375; + this.state = 2320; this.identifier(); } } @@ -12130,11 +11774,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2377; + this.state = 2322; this.identifier(); } } @@ -12154,21 +11798,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2379; + this.state = 2324; this.identifier(); - this.state = 2382; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 2380; + this.state = 2325; this.match(FlinkSqlParser.DOT); - this.state = 2381; + this.state = 2326; this.identifier(); } } @@ -12191,21 +11835,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2384; + this.state = 2329; this.identifier(); - this.state = 2387; + this.state = 2332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 2385; + this.state = 2330; this.match(FlinkSqlParser.DOT); - this.state = 2386; + this.state = 2331; this.identifier(); } } @@ -12228,25 +11872,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2401; + this.state = 2346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2389; + this.state = 2334; this.identifier(); - this.state = 2392; + this.state = 2337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 2390; + this.state = 2335; this.match(FlinkSqlParser.DOT); - this.state = 2391; + this.state = 2336; this.identifier(); } } @@ -12256,20 +11900,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2394; + this.state = 2339; this.identifier(); - this.state = 2395; + this.state = 2340; this.match(FlinkSqlParser.DOT); - this.state = 2396; + this.state = 2341; this.identifier(); - this.state = 2399; + this.state = 2344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 2397; + this.state = 2342; this.match(FlinkSqlParser.DOT); - this.state = 2398; + this.state = 2343; this.identifier(); } } @@ -12294,24 +11938,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePath); try { - this.state = 2415; + this.state = 2360; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2403; + this.state = 2348; this.identifier(); - this.state = 2406; + this.state = 2351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2404; + this.state = 2349; this.match(FlinkSqlParser.DOT); - this.state = 2405; + this.state = 2350; this.identifier(); } break; @@ -12321,20 +11965,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2408; + this.state = 2353; this.identifier(); - this.state = 2409; + this.state = 2354; this.match(FlinkSqlParser.DOT); - this.state = 2410; + this.state = 2355; this.identifier(); - this.state = 2413; + this.state = 2358; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2411; + this.state = 2356; this.match(FlinkSqlParser.DOT); - this.state = 2412; + this.state = 2357; this.identifier(); } break; @@ -12359,24 +12003,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_viewPath); try { - this.state = 2429; + this.state = 2374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2417; + this.state = 2362; this.identifier(); - this.state = 2420; + this.state = 2365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2418; + this.state = 2363; this.match(FlinkSqlParser.DOT); - this.state = 2419; + this.state = 2364; this.identifier(); } break; @@ -12386,20 +12030,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2422; + this.state = 2367; this.identifier(); - this.state = 2423; + this.state = 2368; this.match(FlinkSqlParser.DOT); - this.state = 2424; + this.state = 2369; this.identifier(); - this.state = 2427; + this.state = 2372; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2425; + this.state = 2370; this.match(FlinkSqlParser.DOT); - this.state = 2426; + this.state = 2371; this.identifier(); } break; @@ -12424,25 +12068,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2443; + this.state = 2388; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2431; + this.state = 2376; this.identifier(); - this.state = 2434; + this.state = 2379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 2432; + this.state = 2377; this.match(FlinkSqlParser.DOT); - this.state = 2433; + this.state = 2378; this.identifier(); } } @@ -12452,20 +12096,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2436; + this.state = 2381; this.identifier(); - this.state = 2437; + this.state = 2382; this.match(FlinkSqlParser.DOT); - this.state = 2438; + this.state = 2383; this.identifier(); - this.state = 2441; + this.state = 2386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 2439; + this.state = 2384; this.match(FlinkSqlParser.DOT); - this.state = 2440; + this.state = 2385; this.identifier(); } } @@ -12490,28 +12134,28 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2445; + this.state = 2390; this.identifier(); - this.state = 2450; + this.state = 2395; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 300, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2446; + this.state = 2391; this.match(FlinkSqlParser.DOT); - this.state = 2447; + this.state = 2392; this.identifier(); } } } - this.state = 2452; + this.state = 2397; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 300, this.context); } @@ -12533,32 +12177,32 @@ export class FlinkSqlParser extends SQLParserBase { } public uidAllowEmpty(): UidAllowEmptyContext { let localContext = new UidAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_uidAllowEmpty); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_uidAllowEmpty); try { let alternative: number; - this.state = 2466; + this.state = 2411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2453; + this.state = 2398; this.identifier(); - this.state = 2458; + this.state = 2403; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 301, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2454; + this.state = 2399; this.match(FlinkSqlParser.DOT); - this.state = 2455; + this.state = 2400; this.identifier(); } } } - this.state = 2460; + this.state = 2405; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 301, this.context); } @@ -12567,15 +12211,15 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2461; + this.state = 2406; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2462; + this.state = 2407; this.identifier(); - this.state = 2463; + this.state = 2408; this.match(FlinkSqlParser.DOT); - this.state = 2464; + this.state = 2409; this.emptyColumn(); } break; @@ -12597,13 +12241,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2468; + this.state = 2413; this.match(FlinkSqlParser.KW_WITH); - this.state = 2469; + this.state = 2414; this.tablePropertyList(); } } @@ -12623,15 +12267,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2416; this.match(FlinkSqlParser.KW_IF); - this.state = 2472; + this.state = 2417; this.match(FlinkSqlParser.KW_NOT); - this.state = 2473; + this.state = 2418; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -12651,13 +12295,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2475; + this.state = 2420; this.match(FlinkSqlParser.KW_IF); - this.state = 2476; + this.state = 2421; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -12677,32 +12321,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2478; + this.state = 2423; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2479; + this.state = 2424; this.tableProperty(); - this.state = 2484; + this.state = 2429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 523) { { { - this.state = 2480; + this.state = 2425; this.match(FlinkSqlParser.COMMA); - this.state = 2481; + this.state = 2426; this.tableProperty(); } } - this.state = 2486; + this.state = 2431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2487; + this.state = 2432; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -12722,29 +12366,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2489; + this.state = 2434; localContext._key = this.tablePropertyKey(); - this.state = 2494; + this.state = 2439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 399 || _la === 508 || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 7) !== 0)) { { - this.state = 2491; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 2490; + this.state = 2435; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2493; + this.state = 2438; localContext._value = this.tablePropertyValue(); } } @@ -12767,29 +12411,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 386, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2499; + this.state = 2444; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2496; + this.state = 2441; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2497; + this.state = 2442; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2498; + this.state = 2443; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -12811,22 +12455,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 388, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2505; + this.state = 2450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2501; + this.state = 2446; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2502; + this.state = 2447; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -12834,14 +12478,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2503; + this.state = 2448; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2504; + this.state = 2449; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -12865,40 +12509,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 390, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2513; + this.state = 2458; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2507; + this.state = 2452; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2508; + this.state = 2453; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2509; + this.state = 2454; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2510; + this.state = 2455; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2511; + this.state = 2456; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2512; + this.state = 2457; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -12922,76 +12566,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 392, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2529; + this.state = 2474; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2515; + this.state = 2460; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2516; + this.state = 2461; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2517; + this.state = 2462; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2518; + this.state = 2463; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2519; + this.state = 2464; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2520; + this.state = 2465; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2521; + this.state = 2466; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2522; + this.state = 2467; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2523; + this.state = 2468; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2524; + this.state = 2469; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2525; + this.state = 2470; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2526; + this.state = 2471; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2527; + this.state = 2472; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2528; + this.state = 2473; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -13013,47 +12657,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 394, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2538; + this.state = 2483; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2531; + this.state = 2476; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2532; + this.state = 2477; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2533; + this.state = 2478; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2534; + this.state = 2479; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2535; + this.state = 2480; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2536; + this.state = 2481; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2537; + this.state = 2482; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -13077,12 +12721,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 396, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2540; + this.state = 2485; _la = this.tokenStream.LA(1); if(!(_la === 455 || ((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -13109,12 +12753,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 398, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2542; + this.state = 2487; _la = this.tokenStream.LA(1); if(!(_la === 243 || ((((_la - 511)) & ~0x1F) === 0 && ((1 << (_la - 511)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -13141,16 +12785,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 400, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2558; + this.state = 2503; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2544; + this.state = 2489; this.timeIntervalExpression(); } break; @@ -13166,14 +12810,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2545; + this.state = 2490; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2546; + this.state = 2491; this.stringLiteral(); } break; @@ -13181,17 +12825,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2548; + this.state = 2493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 532) { { - this.state = 2547; + this.state = 2492; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2550; + this.state = 2495; this.decimalLiteral(); } break; @@ -13199,21 +12843,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2551; + this.state = 2496; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2552; + this.state = 2497; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2553; + this.state = 2498; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -13221,17 +12865,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2555; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 243) { { - this.state = 2554; + this.state = 2499; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2557; + this.state = 2502; this.match(FlinkSqlParser.KW_NULL); } break; @@ -13255,13 +12899,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 402, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2560; + this.state = 2505; this.timePointUnit(); - this.state = 2561; + this.state = 2506; this.stringLiteral(); } } @@ -13281,11 +12925,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 404, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2563; + this.state = 2508; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -13305,11 +12949,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 406, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2565; + this.state = 2510; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -13329,12 +12973,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 408, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2567; + this.state = 2512; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 399)) { this.errorHandler.recoverInline(this); @@ -13361,12 +13005,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 410, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2514; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -13393,12 +13037,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 412, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2571; + this.state = 2516; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 166 || _la === 224 || _la === 231 || _la === 336 || _la === 439 || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 262149) !== 0) || _la === 505)) { this.errorHandler.recoverInline(this); @@ -13425,12 +13069,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 414, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2573; + this.state = 2518; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 166 || _la === 224 || _la === 231 || _la === 336 || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 140542465) !== 0) || ((((_la - 463)) & ~0x1F) === 0 && ((1 << (_la - 463)) & 2415983617) !== 0) || _la === 505 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -13457,12 +13101,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 416, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2575; + this.state = 2520; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 385) !== 0) || _la === 391 || _la === 416 || _la === 530)) { this.errorHandler.recoverInline(this); @@ -13489,12 +13133,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 418, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2577; + this.state = 2522; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 209 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -13521,12 +13165,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 420, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 392, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2579; + this.state = 2524; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 380 || _la === 381)) { this.errorHandler.recoverInline(this); @@ -13553,12 +13197,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 422, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 394, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2581; + this.state = 2526; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 675283025) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 277391867) !== 0) || ((((_la - 222)) & ~0x1F) === 0 && ((1 << (_la - 222)) & 41943565) !== 0) || ((((_la - 266)) & ~0x1F) === 0 && ((1 << (_la - 266)) & 537530369) !== 0) || ((((_la - 319)) & ~0x1F) === 0 && ((1 << (_la - 319)) & 131185) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 8389763) !== 0) || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 100679705) !== 0) || _la === 439 || _la === 472 || _la === 491 || _la === 505)) { this.errorHandler.recoverInline(this); @@ -13585,12 +13229,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 424, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 396, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2528; _la = this.tokenStream.LA(1); if(!(((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -13618,23 +13262,23 @@ export class FlinkSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 27: + case 26: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 29: + case 28: return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); - case 82: + case 74: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 90: + case 81: return this.columnProjectItem_sempred(localContext as ColumnProjectItemContext, predIndex); - case 99: + case 90: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 144: + case 131: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 148: + case 135: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 150: + case 137: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 187: + case 173: return this.uidAllowEmpty_sempred(localContext as UidAllowEmptyContext, predIndex); } return true; @@ -13720,7 +13364,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,544,2586,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,544,2531,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, @@ -13753,1080 +13397,1061 @@ export class FlinkSqlParser extends SQLParserBase { 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, - 7,197,2,198,7,198,2,199,7,199,2,200,7,200,2,201,7,201,2,202,7,202, - 2,203,7,203,2,204,7,204,2,205,7,205,2,206,7,206,2,207,7,207,2,208, - 7,208,2,209,7,209,2,210,7,210,2,211,7,211,2,212,7,212,1,0,5,0,428, - 8,0,10,0,12,0,431,9,0,1,0,1,0,1,1,1,1,3,1,437,8,1,1,1,3,1,440,8, - 1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,454,8,2,1, - 3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3, - 4,472,8,4,1,5,1,5,3,5,476,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,485, - 8,7,1,7,1,7,1,7,3,7,490,8,7,1,8,1,8,1,8,5,8,495,8,8,10,8,12,8,498, - 9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,508,8,10,1,11,1,11, - 1,11,1,11,1,11,5,11,515,8,11,10,11,12,11,518,9,11,1,12,1,12,1,12, - 1,12,1,12,1,12,1,12,1,12,1,12,3,12,529,8,12,1,12,3,12,532,8,12,1, - 12,1,12,1,12,1,12,1,12,3,12,539,8,12,1,12,3,12,542,8,12,1,12,1,12, - 1,12,1,12,1,12,1,12,3,12,550,8,12,1,12,1,12,3,12,554,8,12,1,12,1, - 12,1,12,3,12,559,8,12,1,12,3,12,562,8,12,1,13,1,13,1,13,1,13,1,13, - 3,13,569,8,13,1,14,1,14,1,14,1,14,1,15,1,15,3,15,577,8,15,1,16,1, - 16,3,16,581,8,16,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1, - 18,3,18,593,8,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,601,8,18,1,18, - 1,18,3,18,605,8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,637,8,18,1,19,3,19, - 640,8,19,1,19,4,19,643,8,19,11,19,12,19,644,1,20,1,20,3,20,649,8, - 20,1,21,1,21,3,21,653,8,21,1,21,1,21,3,21,657,8,21,1,21,1,21,1,21, - 1,21,1,21,5,21,664,8,21,10,21,12,21,667,9,21,1,21,1,21,3,21,671, - 8,21,1,21,1,21,3,21,675,8,21,1,21,1,21,3,21,679,8,21,1,21,1,21,1, - 21,3,21,684,8,21,1,21,3,21,687,8,21,1,21,1,21,3,21,691,8,21,1,22, - 1,22,1,22,3,22,696,8,22,1,22,1,22,1,22,1,22,3,22,702,8,22,1,23,1, - 23,1,23,3,23,707,8,23,1,24,1,24,1,24,3,24,712,8,24,1,24,1,24,3,24, - 716,8,24,1,25,1,25,3,25,720,8,25,1,26,1,26,1,27,1,27,1,27,3,27,727, - 8,27,1,28,1,28,1,29,1,29,1,29,3,29,734,8,29,1,30,1,30,1,30,1,30, - 5,30,740,8,30,10,30,12,30,743,9,30,1,30,1,30,1,31,1,31,1,31,3,31, - 750,8,31,1,31,1,31,3,31,754,8,31,1,31,1,31,3,31,758,8,31,1,31,1, - 31,3,31,762,8,31,1,31,1,31,3,31,766,8,31,1,31,1,31,3,31,770,8,31, - 1,31,1,31,3,31,774,8,31,1,31,1,31,3,31,778,8,31,1,31,1,31,3,31,782, - 8,31,3,31,784,8,31,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,3,33, - 794,8,33,1,33,1,33,1,34,1,34,1,34,1,34,3,34,802,8,34,1,34,1,34,1, - 35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1, - 37,1,37,1,37,1,37,1,37,5,37,824,8,37,10,37,12,37,827,9,37,1,37,1, - 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,5,37,838,8,37,10,37,12,37, - 841,9,37,1,37,1,37,3,37,845,8,37,1,38,1,38,3,38,849,8,38,1,38,1, - 38,1,38,1,38,3,38,855,8,38,1,38,3,38,858,8,38,1,38,3,38,861,8,38, - 1,39,1,39,1,39,1,39,1,39,3,39,868,8,39,1,39,3,39,871,8,39,1,40,1, - 40,1,41,1,41,1,41,1,41,1,41,3,41,880,8,41,1,42,1,42,1,43,1,43,1, - 43,1,43,1,43,1,43,1,44,1,44,3,44,892,8,44,1,44,1,44,1,44,1,44,1, - 44,1,44,1,45,1,45,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,48,1, - 48,1,48,1,48,5,48,914,8,48,10,48,12,48,917,9,48,1,48,1,48,1,49,1, - 49,1,49,1,49,1,49,5,49,926,8,49,10,49,12,49,929,9,49,1,49,1,49,3, - 49,933,8,49,1,50,1,50,3,50,937,8,50,1,51,1,51,1,51,1,51,5,51,943, - 8,51,10,51,12,51,946,9,51,1,51,3,51,949,8,51,1,52,1,52,1,52,1,52, - 3,52,955,8,52,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,3,54,965,8, - 54,1,54,1,54,1,54,3,54,970,8,54,1,54,1,54,1,55,1,55,3,55,976,8,55, - 1,55,1,55,3,55,980,8,55,1,55,1,55,3,55,984,8,55,1,55,1,55,3,55,988, - 8,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,3,56,997,8,56,1,56,1,56, - 3,56,1001,8,56,1,56,1,56,1,56,1,56,1,56,3,56,1008,8,56,1,56,3,56, - 1011,8,56,1,57,1,57,1,57,1,57,1,57,1,57,5,57,1019,8,57,10,57,12, - 57,1022,9,57,1,58,1,58,1,59,1,59,1,59,3,59,1029,8,59,1,59,1,59,1, - 59,1,59,1,59,1,59,3,59,1037,8,59,1,60,1,60,3,60,1041,8,60,1,60,1, - 60,1,60,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,3,62,1056, - 8,62,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,66, - 1,66,1,66,1,66,1,66,1,66,3,66,1075,8,66,1,67,1,67,1,67,1,67,1,67, - 1,68,1,68,1,68,1,68,3,68,1086,8,68,1,68,1,68,3,68,1090,8,68,1,68, - 1,68,1,68,1,68,1,68,3,68,1097,8,68,1,69,1,69,1,69,3,69,1102,8,69, - 1,69,1,69,1,70,1,70,3,70,1108,8,70,1,70,1,70,3,70,1112,8,70,1,70, - 1,70,1,71,1,71,1,71,3,71,1119,8,71,1,71,1,71,3,71,1123,8,71,1,72, - 1,72,3,72,1127,8,72,1,72,1,72,3,72,1131,8,72,1,72,1,72,1,73,1,73, - 1,73,1,73,3,73,1139,8,73,1,73,1,73,3,73,1143,8,73,1,73,1,73,1,74, - 3,74,1148,8,74,1,74,1,74,1,74,1,74,3,74,1154,8,74,1,75,1,75,1,75, - 1,75,3,75,1160,8,75,1,75,3,75,1163,8,75,1,75,1,75,3,75,1167,8,75, - 1,76,1,76,1,76,1,77,1,77,1,77,1,77,5,77,1176,8,77,10,77,12,77,1179, - 9,77,1,78,1,78,1,78,1,78,5,78,1185,8,78,10,78,12,78,1188,9,78,1, - 78,1,78,1,79,1,79,3,79,1194,8,79,1,80,1,80,1,80,1,80,1,80,1,80,1, - 80,4,80,1203,8,80,11,80,12,80,1204,1,80,1,80,1,81,1,81,1,81,1,81, - 1,81,1,81,4,81,1215,8,81,11,81,12,81,1216,1,81,1,81,1,82,1,82,1, - 82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,3,82,1232,8,82,1,82,3, - 82,1235,8,82,1,82,1,82,3,82,1239,8,82,1,82,3,82,1242,8,82,3,82,1244, - 8,82,1,82,1,82,1,82,3,82,1249,8,82,1,82,1,82,3,82,1253,8,82,1,82, - 3,82,1256,8,82,5,82,1258,8,82,10,82,12,82,1261,9,82,1,83,1,83,1, - 83,1,83,5,83,1267,8,83,10,83,12,83,1270,9,83,1,84,1,84,1,84,1,84, - 5,84,1276,8,84,10,84,12,84,1279,9,84,1,85,1,85,1,85,1,85,1,85,5, - 85,1286,8,85,10,85,12,85,1289,9,85,1,85,1,85,3,85,1293,8,85,1,85, - 1,85,1,85,1,85,1,85,1,86,1,86,1,87,1,87,3,87,1304,8,87,1,87,3,87, - 1307,8,87,1,87,3,87,1310,8,87,1,87,3,87,1313,8,87,1,87,3,87,1316, - 8,87,1,87,1,87,1,87,1,87,3,87,1322,8,87,1,88,1,88,3,88,1326,8,88, - 1,88,1,88,1,89,1,89,1,89,5,89,1333,8,89,10,89,12,89,1336,9,89,1, - 90,1,90,1,90,1,90,3,90,1342,8,90,1,90,3,90,1345,8,90,1,90,1,90,3, - 90,1349,8,90,1,90,1,90,1,90,3,90,1354,8,90,1,90,3,90,1357,8,90,1, - 90,1,90,3,90,1361,8,90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,3,94,1370, - 8,94,1,94,1,94,1,95,1,95,1,95,3,95,1377,8,95,1,95,3,95,1380,8,95, - 1,95,1,95,3,95,1384,8,95,1,95,3,95,1387,8,95,3,95,1389,8,95,1,96, - 1,96,1,96,5,96,1394,8,96,10,96,12,96,1397,9,96,1,96,1,96,3,96,1401, - 8,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, - 1,97,1,97,3,97,1417,8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,99,5,99, - 1426,8,99,10,99,12,99,1429,9,99,1,99,1,99,3,99,1433,8,99,1,99,1, - 99,1,99,1,99,1,99,1,99,3,99,1441,8,99,1,99,3,99,1444,8,99,1,99,3, - 99,1447,8,99,1,99,1,99,1,99,3,99,1452,8,99,5,99,1454,8,99,10,99, - 12,99,1457,9,99,1,100,1,100,3,100,1461,8,100,1,101,3,101,1464,8, - 101,1,101,1,101,3,101,1468,8,101,1,101,1,101,3,101,1472,8,101,1, - 101,1,101,3,101,1476,8,101,1,102,1,102,1,102,1,102,1,102,1,102,1, - 103,3,103,1485,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1, - 103,1,103,3,103,1496,8,103,1,104,1,104,1,104,1,104,1,104,1,104,1, - 105,1,105,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107, - 1,107,1,108,1,108,1,108,1,108,1,108,5,108,1521,8,108,10,108,12,108, - 1524,9,108,1,108,1,108,1,109,1,109,1,110,1,110,1,110,1,110,1,110, - 1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110, - 1545,8,110,1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,113,1,113, - 1,113,1,113,1,113,3,113,1559,8,113,3,113,1561,8,113,1,113,1,113, - 3,113,1565,8,113,1,114,1,114,1,114,3,114,1570,8,114,1,115,1,115, - 1,115,1,115,1,115,5,115,1577,8,115,10,115,12,115,1580,9,115,1,116, - 1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116,1590,8,116,10,116, - 12,116,1593,9,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116, - 1602,8,116,10,116,12,116,1605,9,116,1,116,1,116,1,116,1,116,1,116, - 1,116,1,116,5,116,1614,8,116,10,116,12,116,1617,9,116,1,116,1,116, - 1,116,3,116,1622,8,116,1,117,1,117,1,117,1,118,1,118,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,121,1,121,1,122,1,122, - 1,122,1,123,1,123,1,123,1,123,5,123,1647,8,123,10,123,12,123,1650, - 9,123,1,124,1,124,1,124,1,124,1,125,3,125,1657,8,125,1,125,1,125, - 3,125,1661,8,125,1,125,3,125,1664,8,125,1,125,3,125,1667,8,125,1, - 125,1,125,1,126,1,126,1,126,3,126,1674,8,126,1,126,3,126,1677,8, - 126,1,126,3,126,1680,8,126,1,126,3,126,1683,8,126,1,126,3,126,1686, - 8,126,1,126,3,126,1689,8,126,1,126,1,126,1,126,3,126,1694,8,126, - 1,126,3,126,1697,8,126,1,127,1,127,1,127,1,127,1,127,5,127,1704, - 8,127,10,127,12,127,1707,9,127,1,128,1,128,3,128,1711,8,128,1,128, - 3,128,1714,8,128,1,128,1,128,3,128,1718,8,128,1,129,1,129,1,129, - 3,129,1723,8,129,1,130,1,130,1,130,1,130,3,130,1729,8,130,1,130, - 1,130,1,130,3,130,1734,8,130,5,130,1736,8,130,10,130,12,130,1739, - 9,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,1,131,3,131,1757,8,131,1,132,1,132, - 1,132,1,132,5,132,1763,8,132,10,132,12,132,1766,9,132,1,133,1,133, - 1,133,4,133,1771,8,133,11,133,12,133,1772,1,133,1,133,3,133,1777, - 8,133,1,134,1,134,3,134,1781,8,134,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,3,135,1791,8,135,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136,1817,8,136, - 1,137,1,137,1,137,1,137,5,137,1823,8,137,10,137,12,137,1826,9,137, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,3,138,1843,8,138,1,139,1,139,1,139,1,139, - 1,139,1,140,1,140,1,140,1,140,1,140,1,140,3,140,1856,8,140,1,141, - 1,141,1,141,1,141,1,141,1,141,3,141,1864,8,141,1,142,1,142,1,142, - 1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,3,144,1881,8,144,3,144,1883,8,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,1,144,3,144,1894,8,144,1,144,5,144,1897, - 8,144,10,144,12,144,1900,9,144,1,145,3,145,1903,8,145,1,145,1,145, - 3,145,1907,8,145,1,145,1,145,1,145,1,145,1,145,3,145,1914,8,145, - 1,145,1,145,1,145,1,145,1,145,5,145,1921,8,145,10,145,12,145,1924, - 9,145,1,145,1,145,1,145,3,145,1929,8,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,1942,8,145,1,145, - 1,145,1,145,1,145,1,145,3,145,1949,8,145,1,145,1,145,1,145,3,145, - 1954,8,145,1,145,1,145,1,145,1,145,3,145,1960,8,145,1,145,1,145, - 1,145,1,145,1,145,3,145,1967,8,145,1,145,1,145,1,145,1,145,1,145, - 3,145,1974,8,145,3,145,1976,8,145,1,146,1,146,1,146,1,146,1,146, - 1,146,1,146,1,146,3,146,1986,8,146,1,147,3,147,1989,8,147,1,147, - 1,147,1,147,1,147,1,147,1,147,1,147,1,147,5,147,1999,8,147,10,147, - 12,147,2002,9,147,1,147,1,147,3,147,2006,8,147,1,147,3,147,2009, - 8,147,1,147,1,147,1,147,1,147,3,147,2015,8,147,3,147,2017,8,147, - 1,148,1,148,1,148,1,148,3,148,2023,8,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,5,148,2044,8,148,10,148,12,148,2047,9,148, - 1,149,1,149,1,149,1,149,1,149,3,149,2054,8,149,1,149,1,149,1,149, - 5,149,2059,8,149,10,149,12,149,2062,9,149,3,149,2064,8,149,1,149, - 1,149,3,149,2068,8,149,1,150,1,150,1,150,4,150,2073,8,150,11,150, - 12,150,2074,1,150,1,150,3,150,2079,8,150,1,150,1,150,1,150,1,150, - 1,150,4,150,2086,8,150,11,150,12,150,2087,1,150,1,150,3,150,2092, - 8,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,1,150,3,150,2108,8,150,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,3,150,2117,8,150,1,150,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,1,150,1,150,1,150,3,150,2152,8,150,1,150,1,150, - 1,150,1,150,1,150,5,150,2159,8,150,10,150,12,150,2162,9,150,1,151, - 1,151,1,152,1,152,1,152,1,152,3,152,2170,8,152,1,153,1,153,1,153, - 1,153,3,153,2176,8,153,1,154,1,154,3,154,2180,8,154,1,155,1,155, - 1,155,1,155,1,155,1,155,1,155,1,155,3,155,2190,8,155,1,156,1,156, - 1,156,1,156,3,156,2196,8,156,1,156,1,156,1,156,1,156,3,156,2202, - 8,156,1,156,1,156,3,156,2206,8,156,1,156,1,156,1,156,1,156,3,156, - 2212,8,156,1,156,1,156,3,156,2216,8,156,1,157,1,157,1,157,1,157, - 3,157,2222,8,157,3,157,2224,8,157,1,157,3,157,2227,8,157,1,157,3, - 157,2230,8,157,1,157,1,157,1,157,1,157,3,157,2236,8,157,1,157,1, - 157,1,157,1,157,3,157,2242,8,157,1,158,3,158,2245,8,158,1,158,1, - 158,3,158,2249,8,158,1,158,1,158,1,158,1,158,5,158,2255,8,158,10, - 158,12,158,2258,9,158,1,158,3,158,2261,8,158,5,158,2263,8,158,10, - 158,12,158,2266,9,158,1,158,1,158,3,158,2270,8,158,1,158,1,158,3, - 158,2274,8,158,1,159,5,159,2277,8,159,10,159,12,159,2280,9,159,1, - 159,1,159,3,159,2284,8,159,1,159,1,159,3,159,2288,8,159,1,160,1, - 160,1,161,1,161,1,162,1,162,3,162,2296,8,162,1,163,1,163,1,163,3, - 163,2301,8,163,1,164,1,164,3,164,2305,8,164,1,165,1,165,1,165,4, - 165,2310,8,165,11,165,12,165,2311,1,166,1,166,1,166,3,166,2317,8, - 166,1,167,1,167,1,167,1,167,1,167,1,168,3,168,2325,8,168,1,168,1, - 168,3,168,2329,8,168,1,169,3,169,2332,8,169,1,169,1,169,3,169,2336, - 8,169,1,170,1,170,1,170,1,171,1,171,4,171,2343,8,171,11,171,12,171, - 2344,1,171,3,171,2348,8,171,1,172,1,172,1,172,1,172,1,173,1,173, - 1,173,5,173,2357,8,173,10,173,12,173,2360,9,173,1,174,1,174,1,174, - 3,174,2365,8,174,1,175,1,175,1,176,1,176,1,177,1,177,1,177,1,177, - 1,177,1,178,1,178,1,179,1,179,1,180,1,180,1,180,3,180,2383,8,180, - 1,181,1,181,1,181,3,181,2388,8,181,1,182,1,182,1,182,3,182,2393, - 8,182,1,182,1,182,1,182,1,182,1,182,3,182,2400,8,182,3,182,2402, - 8,182,1,183,1,183,1,183,3,183,2407,8,183,1,183,1,183,1,183,1,183, - 1,183,3,183,2414,8,183,3,183,2416,8,183,1,184,1,184,1,184,3,184, - 2421,8,184,1,184,1,184,1,184,1,184,1,184,3,184,2428,8,184,3,184, - 2430,8,184,1,185,1,185,1,185,3,185,2435,8,185,1,185,1,185,1,185, - 1,185,1,185,3,185,2442,8,185,3,185,2444,8,185,1,186,1,186,1,186, - 5,186,2449,8,186,10,186,12,186,2452,9,186,1,187,1,187,1,187,5,187, - 2457,8,187,10,187,12,187,2460,9,187,1,187,1,187,1,187,1,187,1,187, - 3,187,2467,8,187,1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,190, - 1,190,1,190,1,191,1,191,1,191,1,191,5,191,2483,8,191,10,191,12,191, - 2486,9,191,1,191,1,191,1,192,1,192,3,192,2492,8,192,1,192,3,192, - 2495,8,192,1,193,1,193,1,193,3,193,2500,8,193,1,194,1,194,1,194, - 1,194,3,194,2506,8,194,1,195,1,195,1,195,1,195,1,195,1,195,3,195, - 2514,8,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,3,196,2530,8,196,1,197,1,197,1,197, - 1,197,1,197,1,197,1,197,3,197,2539,8,197,1,198,1,198,1,199,1,199, - 1,200,1,200,1,200,1,200,3,200,2549,8,200,1,200,1,200,1,200,1,200, - 1,200,3,200,2556,8,200,1,200,3,200,2559,8,200,1,201,1,201,1,201, - 1,202,1,202,1,203,1,203,1,204,1,204,1,205,1,205,1,206,1,206,1,207, - 1,207,1,208,1,208,1,209,1,209,1,210,1,210,1,211,1,211,1,212,1,212, - 1,212,0,5,164,198,288,296,300,213,0,2,4,6,8,10,12,14,16,18,20,22, - 24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66, - 68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106, - 108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138, - 140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170, - 172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202, - 204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234, - 236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266, - 268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298, - 300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330, - 332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362, - 364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394, - 396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,0,48, - 2,0,109,109,453,453,3,0,45,45,128,128,190,190,4,0,42,42,90,90,425, - 425,467,467,2,0,444,444,450,450,2,0,152,152,171,171,2,0,440,440, - 492,492,2,0,485,488,490,490,3,0,32,32,91,91,246,246,11,0,28,29,35, - 35,46,46,92,92,179,180,346,346,362,362,380,380,383,383,389,389,419, - 420,2,0,436,436,438,438,4,0,101,102,115,115,144,144,248,248,2,0, - 13,13,233,233,2,0,458,458,465,465,3,0,5,5,272,272,447,447,3,0,268, - 268,458,458,465,465,3,0,428,428,461,461,480,480,3,0,332,332,468, - 468,484,484,2,0,443,443,493,493,2,0,184,184,267,267,3,0,130,130, - 181,181,405,405,4,0,153,153,175,175,203,203,319,319,3,0,448,448, - 462,462,502,502,4,0,252,252,449,449,497,499,501,501,2,0,74,74,322, - 322,3,0,462,462,495,495,502,502,2,0,442,442,453,453,2,0,460,460, - 470,470,2,0,294,294,324,324,4,0,140,140,246,246,399,399,407,407, - 2,0,19,19,371,371,2,0,5,5,11,11,2,0,512,512,532,533,4,0,455,455, - 530,530,534,534,537,537,2,0,532,533,535,535,1,0,532,533,1,0,541, - 542,2,0,541,541,544,544,4,0,455,455,530,530,532,534,536,537,3,0, - 243,243,511,512,532,533,2,0,140,140,399,399,2,0,5,5,113,113,10,0, - 97,97,166,166,224,224,231,231,336,336,439,439,473,473,475,475,491, - 491,505,505,15,0,97,97,166,166,224,224,231,231,336,336,430,430,439, - 439,445,445,451,452,457,457,463,463,473,478,491,491,494,494,505, - 506,11,0,5,5,13,13,33,33,78,78,84,85,113,113,202,202,209,210,391, - 391,416,416,530,530,3,0,78,78,84,85,209,210,2,0,91,91,380,381,53, - 0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,98,99, - 107,107,119,119,134,134,139,139,143,143,145,145,161,161,166,166, - 168,168,188,189,191,196,199,199,201,201,203,203,207,207,211,211, - 216,216,222,222,224,225,231,231,245,245,247,247,266,266,278,278, - 283,283,285,285,295,295,319,319,323,325,336,336,359,360,366,366, - 369,369,382,382,397,397,400,401,411,411,422,423,439,439,472,472, - 491,491,505,505,1,0,440,507,2831,0,429,1,0,0,0,2,439,1,0,0,0,4,453, - 1,0,0,0,6,455,1,0,0,0,8,471,1,0,0,0,10,475,1,0,0,0,12,477,1,0,0, - 0,14,480,1,0,0,0,16,491,1,0,0,0,18,499,1,0,0,0,20,507,1,0,0,0,22, - 509,1,0,0,0,24,561,1,0,0,0,26,563,1,0,0,0,28,570,1,0,0,0,30,574, - 1,0,0,0,32,578,1,0,0,0,34,582,1,0,0,0,36,636,1,0,0,0,38,642,1,0, - 0,0,40,648,1,0,0,0,42,650,1,0,0,0,44,692,1,0,0,0,46,706,1,0,0,0, - 48,708,1,0,0,0,50,719,1,0,0,0,52,721,1,0,0,0,54,726,1,0,0,0,56,728, - 1,0,0,0,58,733,1,0,0,0,60,735,1,0,0,0,62,783,1,0,0,0,64,785,1,0, - 0,0,66,789,1,0,0,0,68,797,1,0,0,0,70,805,1,0,0,0,72,809,1,0,0,0, - 74,844,1,0,0,0,76,860,1,0,0,0,78,862,1,0,0,0,80,872,1,0,0,0,82,874, - 1,0,0,0,84,881,1,0,0,0,86,883,1,0,0,0,88,891,1,0,0,0,90,899,1,0, - 0,0,92,901,1,0,0,0,94,905,1,0,0,0,96,909,1,0,0,0,98,932,1,0,0,0, - 100,936,1,0,0,0,102,938,1,0,0,0,104,954,1,0,0,0,106,956,1,0,0,0, - 108,961,1,0,0,0,110,973,1,0,0,0,112,992,1,0,0,0,114,1012,1,0,0,0, - 116,1023,1,0,0,0,118,1025,1,0,0,0,120,1038,1,0,0,0,122,1045,1,0, - 0,0,124,1048,1,0,0,0,126,1057,1,0,0,0,128,1061,1,0,0,0,130,1065, - 1,0,0,0,132,1068,1,0,0,0,134,1076,1,0,0,0,136,1081,1,0,0,0,138,1098, - 1,0,0,0,140,1105,1,0,0,0,142,1115,1,0,0,0,144,1124,1,0,0,0,146,1134, - 1,0,0,0,148,1153,1,0,0,0,150,1155,1,0,0,0,152,1168,1,0,0,0,154,1171, - 1,0,0,0,156,1180,1,0,0,0,158,1193,1,0,0,0,160,1195,1,0,0,0,162,1208, - 1,0,0,0,164,1243,1,0,0,0,166,1262,1,0,0,0,168,1271,1,0,0,0,170,1280, - 1,0,0,0,172,1299,1,0,0,0,174,1321,1,0,0,0,176,1323,1,0,0,0,178,1329, - 1,0,0,0,180,1360,1,0,0,0,182,1362,1,0,0,0,184,1364,1,0,0,0,186,1366, - 1,0,0,0,188,1369,1,0,0,0,190,1388,1,0,0,0,192,1400,1,0,0,0,194,1416, - 1,0,0,0,196,1418,1,0,0,0,198,1432,1,0,0,0,200,1458,1,0,0,0,202,1475, - 1,0,0,0,204,1477,1,0,0,0,206,1495,1,0,0,0,208,1497,1,0,0,0,210,1503, - 1,0,0,0,212,1505,1,0,0,0,214,1510,1,0,0,0,216,1515,1,0,0,0,218,1527, - 1,0,0,0,220,1544,1,0,0,0,222,1546,1,0,0,0,224,1548,1,0,0,0,226,1564, - 1,0,0,0,228,1566,1,0,0,0,230,1571,1,0,0,0,232,1621,1,0,0,0,234,1623, - 1,0,0,0,236,1626,1,0,0,0,238,1628,1,0,0,0,240,1635,1,0,0,0,242,1637, - 1,0,0,0,244,1639,1,0,0,0,246,1642,1,0,0,0,248,1651,1,0,0,0,250,1656, - 1,0,0,0,252,1670,1,0,0,0,254,1698,1,0,0,0,256,1710,1,0,0,0,258,1719, - 1,0,0,0,260,1724,1,0,0,0,262,1756,1,0,0,0,264,1758,1,0,0,0,266,1767, - 1,0,0,0,268,1778,1,0,0,0,270,1790,1,0,0,0,272,1816,1,0,0,0,274,1818, - 1,0,0,0,276,1842,1,0,0,0,278,1844,1,0,0,0,280,1855,1,0,0,0,282,1863, - 1,0,0,0,284,1865,1,0,0,0,286,1868,1,0,0,0,288,1882,1,0,0,0,290,1975, - 1,0,0,0,292,1985,1,0,0,0,294,2016,1,0,0,0,296,2022,1,0,0,0,298,2067, - 1,0,0,0,300,2151,1,0,0,0,302,2163,1,0,0,0,304,2169,1,0,0,0,306,2175, - 1,0,0,0,308,2179,1,0,0,0,310,2189,1,0,0,0,312,2191,1,0,0,0,314,2217, - 1,0,0,0,316,2264,1,0,0,0,318,2278,1,0,0,0,320,2289,1,0,0,0,322,2291, - 1,0,0,0,324,2295,1,0,0,0,326,2297,1,0,0,0,328,2302,1,0,0,0,330,2309, - 1,0,0,0,332,2313,1,0,0,0,334,2318,1,0,0,0,336,2328,1,0,0,0,338,2331, - 1,0,0,0,340,2337,1,0,0,0,342,2347,1,0,0,0,344,2349,1,0,0,0,346,2353, - 1,0,0,0,348,2364,1,0,0,0,350,2366,1,0,0,0,352,2368,1,0,0,0,354,2370, - 1,0,0,0,356,2375,1,0,0,0,358,2377,1,0,0,0,360,2379,1,0,0,0,362,2384, - 1,0,0,0,364,2401,1,0,0,0,366,2415,1,0,0,0,368,2429,1,0,0,0,370,2443, - 1,0,0,0,372,2445,1,0,0,0,374,2466,1,0,0,0,376,2468,1,0,0,0,378,2471, - 1,0,0,0,380,2475,1,0,0,0,382,2478,1,0,0,0,384,2489,1,0,0,0,386,2499, - 1,0,0,0,388,2505,1,0,0,0,390,2513,1,0,0,0,392,2529,1,0,0,0,394,2538, - 1,0,0,0,396,2540,1,0,0,0,398,2542,1,0,0,0,400,2558,1,0,0,0,402,2560, - 1,0,0,0,404,2563,1,0,0,0,406,2565,1,0,0,0,408,2567,1,0,0,0,410,2569, - 1,0,0,0,412,2571,1,0,0,0,414,2573,1,0,0,0,416,2575,1,0,0,0,418,2577, - 1,0,0,0,420,2579,1,0,0,0,422,2581,1,0,0,0,424,2583,1,0,0,0,426,428, - 3,2,1,0,427,426,1,0,0,0,428,431,1,0,0,0,429,427,1,0,0,0,429,430, - 1,0,0,0,430,432,1,0,0,0,431,429,1,0,0,0,432,433,5,0,0,1,433,1,1, - 0,0,0,434,436,3,4,2,0,435,437,5,524,0,0,436,435,1,0,0,0,436,437, - 1,0,0,0,437,440,1,0,0,0,438,440,3,6,3,0,439,434,1,0,0,0,439,438, - 1,0,0,0,440,3,1,0,0,0,441,454,3,8,4,0,442,454,3,10,5,0,443,454,3, - 12,6,0,444,454,3,14,7,0,445,454,3,20,10,0,446,454,3,24,12,0,447, - 454,3,26,13,0,448,454,3,28,14,0,449,454,3,30,15,0,450,454,3,32,16, - 0,451,454,3,34,17,0,452,454,3,36,18,0,453,441,1,0,0,0,453,442,1, - 0,0,0,453,443,1,0,0,0,453,444,1,0,0,0,453,445,1,0,0,0,453,446,1, - 0,0,0,453,447,1,0,0,0,453,448,1,0,0,0,453,449,1,0,0,0,453,450,1, - 0,0,0,453,451,1,0,0,0,453,452,1,0,0,0,454,5,1,0,0,0,455,456,5,524, - 0,0,456,7,1,0,0,0,457,472,3,40,20,0,458,472,3,108,54,0,459,472,3, - 110,55,0,460,472,3,112,56,0,461,472,3,106,53,0,462,472,3,118,59, - 0,463,472,3,132,66,0,464,472,3,134,67,0,465,472,3,136,68,0,466,472, - 3,138,69,0,467,472,3,140,70,0,468,472,3,142,71,0,469,472,3,144,72, - 0,470,472,3,146,73,0,471,457,1,0,0,0,471,458,1,0,0,0,471,459,1,0, - 0,0,471,460,1,0,0,0,471,461,1,0,0,0,471,462,1,0,0,0,471,463,1,0, - 0,0,471,464,1,0,0,0,471,465,1,0,0,0,471,466,1,0,0,0,471,467,1,0, - 0,0,471,468,1,0,0,0,471,469,1,0,0,0,471,470,1,0,0,0,472,9,1,0,0, - 0,473,476,3,164,82,0,474,476,3,148,74,0,475,473,1,0,0,0,475,474, - 1,0,0,0,476,11,1,0,0,0,477,478,7,0,0,0,478,479,3,366,183,0,479,13, - 1,0,0,0,480,484,5,135,0,0,481,485,3,16,8,0,482,483,5,482,0,0,483, - 485,5,147,0,0,484,481,1,0,0,0,484,482,1,0,0,0,484,485,1,0,0,0,485, - 489,1,0,0,0,486,490,3,10,5,0,487,490,3,150,75,0,488,490,3,162,81, - 0,489,486,1,0,0,0,489,487,1,0,0,0,489,488,1,0,0,0,490,15,1,0,0,0, - 491,496,3,18,9,0,492,493,5,523,0,0,493,495,3,18,9,0,494,492,1,0, - 0,0,495,498,1,0,0,0,496,494,1,0,0,0,496,497,1,0,0,0,497,17,1,0,0, - 0,498,496,1,0,0,0,499,500,7,1,0,0,500,19,1,0,0,0,501,502,5,413,0, - 0,502,503,5,444,0,0,503,508,3,356,178,0,504,505,5,413,0,0,505,508, - 3,360,180,0,506,508,3,22,11,0,507,501,1,0,0,0,507,504,1,0,0,0,507, - 506,1,0,0,0,508,21,1,0,0,0,509,510,5,413,0,0,510,511,5,229,0,0,511, - 516,3,372,186,0,512,513,5,523,0,0,513,515,3,372,186,0,514,512,1, - 0,0,0,515,518,1,0,0,0,516,514,1,0,0,0,516,517,1,0,0,0,517,23,1,0, - 0,0,518,516,1,0,0,0,519,520,5,343,0,0,520,562,7,2,0,0,521,522,5, - 343,0,0,522,523,5,76,0,0,523,562,7,3,0,0,524,525,5,343,0,0,525,528, - 5,376,0,0,526,527,7,4,0,0,527,529,3,360,180,0,528,526,1,0,0,0,528, - 529,1,0,0,0,529,531,1,0,0,0,530,532,3,294,147,0,531,530,1,0,0,0, - 531,532,1,0,0,0,532,562,1,0,0,0,533,534,5,343,0,0,534,535,5,58,0, - 0,535,538,7,4,0,0,536,539,3,368,184,0,537,539,3,366,183,0,538,536, - 1,0,0,0,538,537,1,0,0,0,539,541,1,0,0,0,540,542,3,294,147,0,541, - 540,1,0,0,0,541,542,1,0,0,0,542,562,1,0,0,0,543,544,5,343,0,0,544, - 549,5,72,0,0,545,546,5,375,0,0,546,550,3,366,183,0,547,548,5,504, - 0,0,548,550,3,368,184,0,549,545,1,0,0,0,549,547,1,0,0,0,550,562, - 1,0,0,0,551,553,5,343,0,0,552,554,5,414,0,0,553,552,1,0,0,0,553, - 554,1,0,0,0,554,555,1,0,0,0,555,562,5,155,0,0,556,558,5,343,0,0, - 557,559,5,153,0,0,558,557,1,0,0,0,558,559,1,0,0,0,559,560,1,0,0, - 0,560,562,5,229,0,0,561,519,1,0,0,0,561,521,1,0,0,0,561,524,1,0, - 0,0,561,533,1,0,0,0,561,543,1,0,0,0,561,551,1,0,0,0,561,556,1,0, - 0,0,562,25,1,0,0,0,563,564,5,471,0,0,564,565,5,228,0,0,565,568,3, - 372,186,0,566,567,5,436,0,0,567,569,3,382,191,0,568,566,1,0,0,0, - 568,569,1,0,0,0,569,27,1,0,0,0,570,571,5,503,0,0,571,572,5,228,0, - 0,572,573,3,372,186,0,573,29,1,0,0,0,574,576,5,342,0,0,575,577,3, - 384,192,0,576,575,1,0,0,0,576,577,1,0,0,0,577,31,1,0,0,0,578,580, - 5,314,0,0,579,581,3,386,193,0,580,579,1,0,0,0,580,581,1,0,0,0,581, - 33,1,0,0,0,582,583,7,5,0,0,583,584,5,466,0,0,584,585,3,116,58,0, - 585,35,1,0,0,0,586,587,5,440,0,0,587,588,5,466,0,0,588,589,5,436, - 0,0,589,592,3,38,19,0,590,591,5,17,0,0,591,593,3,372,186,0,592,590, - 1,0,0,0,592,593,1,0,0,0,593,637,1,0,0,0,594,595,5,440,0,0,595,596, - 5,459,0,0,596,597,5,436,0,0,597,600,3,38,19,0,598,599,5,17,0,0,599, - 601,3,372,186,0,600,598,1,0,0,0,600,601,1,0,0,0,601,604,1,0,0,0, - 602,603,5,313,0,0,603,605,3,372,186,0,604,602,1,0,0,0,604,605,1, - 0,0,0,605,637,1,0,0,0,606,607,5,440,0,0,607,608,7,6,0,0,608,609, - 5,436,0,0,609,610,3,38,19,0,610,611,5,313,0,0,611,612,3,372,186, - 0,612,637,1,0,0,0,613,614,5,440,0,0,614,615,5,489,0,0,615,637,3, - 38,19,0,616,617,5,440,0,0,617,618,5,456,0,0,618,619,5,459,0,0,619, - 620,5,436,0,0,620,621,3,38,19,0,621,622,5,313,0,0,622,623,3,372, - 186,0,623,624,5,469,0,0,624,625,3,372,186,0,625,637,1,0,0,0,626, - 627,5,440,0,0,627,628,5,446,0,0,628,629,5,459,0,0,629,630,5,436, - 0,0,630,631,3,38,19,0,631,632,5,147,0,0,632,633,3,372,186,0,633, - 634,5,17,0,0,634,635,3,372,186,0,635,637,1,0,0,0,636,586,1,0,0,0, - 636,594,1,0,0,0,636,606,1,0,0,0,636,613,1,0,0,0,636,616,1,0,0,0, - 636,626,1,0,0,0,637,37,1,0,0,0,638,640,5,537,0,0,639,638,1,0,0,0, - 639,640,1,0,0,0,640,641,1,0,0,0,641,643,3,372,186,0,642,639,1,0, - 0,0,643,644,1,0,0,0,644,642,1,0,0,0,644,645,1,0,0,0,645,39,1,0,0, - 0,646,649,3,42,21,0,647,649,3,44,22,0,648,646,1,0,0,0,648,647,1, - 0,0,0,649,41,1,0,0,0,650,652,5,72,0,0,651,653,5,500,0,0,652,651, - 1,0,0,0,652,653,1,0,0,0,653,654,1,0,0,0,654,656,5,375,0,0,655,657, - 3,378,189,0,656,655,1,0,0,0,656,657,1,0,0,0,657,658,1,0,0,0,658, - 659,3,364,182,0,659,660,5,519,0,0,660,665,3,46,23,0,661,662,5,523, - 0,0,662,664,3,46,23,0,663,661,1,0,0,0,664,667,1,0,0,0,665,663,1, - 0,0,0,665,666,1,0,0,0,666,670,1,0,0,0,667,665,1,0,0,0,668,669,5, - 523,0,0,669,671,3,86,43,0,670,668,1,0,0,0,670,671,1,0,0,0,671,674, - 1,0,0,0,672,673,5,523,0,0,673,675,3,88,44,0,674,672,1,0,0,0,674, - 675,1,0,0,0,675,678,1,0,0,0,676,677,5,523,0,0,677,679,3,92,46,0, - 678,676,1,0,0,0,678,679,1,0,0,0,679,680,1,0,0,0,680,683,5,520,0, - 0,681,682,5,59,0,0,682,684,5,540,0,0,683,681,1,0,0,0,683,684,1,0, - 0,0,684,686,1,0,0,0,685,687,3,94,47,0,686,685,1,0,0,0,686,687,1, - 0,0,0,687,688,1,0,0,0,688,690,3,376,188,0,689,691,3,102,51,0,690, - 689,1,0,0,0,690,691,1,0,0,0,691,43,1,0,0,0,692,693,5,72,0,0,693, - 695,5,375,0,0,694,696,3,378,189,0,695,694,1,0,0,0,695,696,1,0,0, - 0,696,697,1,0,0,0,697,698,3,364,182,0,698,701,3,376,188,0,699,700, - 5,17,0,0,700,702,3,164,82,0,701,699,1,0,0,0,701,702,1,0,0,0,702, - 45,1,0,0,0,703,707,3,48,24,0,704,707,3,78,39,0,705,707,3,82,41,0, - 706,703,1,0,0,0,706,704,1,0,0,0,706,705,1,0,0,0,707,47,1,0,0,0,708, - 709,3,50,25,0,709,711,3,62,31,0,710,712,3,76,38,0,711,710,1,0,0, - 0,711,712,1,0,0,0,712,715,1,0,0,0,713,714,5,59,0,0,714,716,5,540, - 0,0,715,713,1,0,0,0,715,716,1,0,0,0,716,49,1,0,0,0,717,720,3,372, - 186,0,718,720,3,286,143,0,719,717,1,0,0,0,719,718,1,0,0,0,720,51, - 1,0,0,0,721,722,1,0,0,0,722,53,1,0,0,0,723,727,3,374,187,0,724,725, - 4,27,0,0,725,727,3,52,26,0,726,723,1,0,0,0,726,724,1,0,0,0,727,55, - 1,0,0,0,728,729,3,372,186,0,729,57,1,0,0,0,730,734,3,374,187,0,731, - 732,4,29,1,0,732,734,3,52,26,0,733,730,1,0,0,0,733,731,1,0,0,0,734, - 59,1,0,0,0,735,736,5,519,0,0,736,741,3,54,27,0,737,738,5,523,0,0, - 738,740,3,54,27,0,739,737,1,0,0,0,740,743,1,0,0,0,741,739,1,0,0, - 0,741,742,1,0,0,0,742,744,1,0,0,0,743,741,1,0,0,0,744,745,5,520, - 0,0,745,61,1,0,0,0,746,784,7,7,0,0,747,749,7,8,0,0,748,750,3,64, - 32,0,749,748,1,0,0,0,749,750,1,0,0,0,750,784,1,0,0,0,751,753,5,381, - 0,0,752,754,3,64,32,0,753,752,1,0,0,0,753,754,1,0,0,0,754,761,1, - 0,0,0,755,757,7,9,0,0,756,758,5,208,0,0,757,756,1,0,0,0,757,758, - 1,0,0,0,758,759,1,0,0,0,759,760,5,380,0,0,760,762,5,507,0,0,761, - 755,1,0,0,0,761,762,1,0,0,0,762,784,1,0,0,0,763,765,7,10,0,0,764, - 766,3,66,33,0,765,764,1,0,0,0,765,766,1,0,0,0,766,784,1,0,0,0,767, - 769,7,11,0,0,768,770,3,70,35,0,769,768,1,0,0,0,769,770,1,0,0,0,770, - 784,1,0,0,0,771,773,5,472,0,0,772,774,3,72,36,0,773,772,1,0,0,0, - 773,774,1,0,0,0,774,784,1,0,0,0,775,777,5,323,0,0,776,778,3,74,37, - 0,777,776,1,0,0,0,777,778,1,0,0,0,778,784,1,0,0,0,779,781,5,296, - 0,0,780,782,3,68,34,0,781,780,1,0,0,0,781,782,1,0,0,0,782,784,1, - 0,0,0,783,746,1,0,0,0,783,747,1,0,0,0,783,751,1,0,0,0,783,763,1, - 0,0,0,783,767,1,0,0,0,783,771,1,0,0,0,783,775,1,0,0,0,783,779,1, - 0,0,0,784,63,1,0,0,0,785,786,5,519,0,0,786,787,3,406,203,0,787,788, - 5,520,0,0,788,65,1,0,0,0,789,790,5,519,0,0,790,793,3,406,203,0,791, - 792,5,523,0,0,792,794,3,406,203,0,793,791,1,0,0,0,793,794,1,0,0, - 0,794,795,1,0,0,0,795,796,5,520,0,0,796,67,1,0,0,0,797,798,5,519, - 0,0,798,801,3,404,202,0,799,800,5,523,0,0,800,802,3,404,202,0,801, - 799,1,0,0,0,801,802,1,0,0,0,802,803,1,0,0,0,803,804,5,520,0,0,804, - 69,1,0,0,0,805,806,5,510,0,0,806,807,3,62,31,0,807,808,5,509,0,0, - 808,71,1,0,0,0,809,810,5,510,0,0,810,811,3,62,31,0,811,812,5,523, - 0,0,812,813,3,62,31,0,813,814,1,0,0,0,814,815,5,509,0,0,815,73,1, - 0,0,0,816,817,5,510,0,0,817,818,3,54,27,0,818,825,3,62,31,0,819, - 820,5,523,0,0,820,821,3,54,27,0,821,822,3,62,31,0,822,824,1,0,0, - 0,823,819,1,0,0,0,824,827,1,0,0,0,825,823,1,0,0,0,825,826,1,0,0, - 0,826,828,1,0,0,0,827,825,1,0,0,0,828,829,5,509,0,0,829,845,1,0, - 0,0,830,831,5,519,0,0,831,832,3,54,27,0,832,839,3,62,31,0,833,834, - 5,523,0,0,834,835,3,54,27,0,835,836,3,62,31,0,836,838,1,0,0,0,837, - 833,1,0,0,0,838,841,1,0,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840, - 842,1,0,0,0,841,839,1,0,0,0,842,843,5,520,0,0,843,845,1,0,0,0,844, - 816,1,0,0,0,844,830,1,0,0,0,845,75,1,0,0,0,846,847,5,64,0,0,847, - 849,3,90,45,0,848,846,1,0,0,0,848,849,1,0,0,0,849,850,1,0,0,0,850, - 851,5,290,0,0,851,854,5,469,0,0,852,853,5,243,0,0,853,855,5,125, - 0,0,854,852,1,0,0,0,854,855,1,0,0,0,855,861,1,0,0,0,856,858,5,243, - 0,0,857,856,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859,861,5,246, - 0,0,860,848,1,0,0,0,860,857,1,0,0,0,861,77,1,0,0,0,862,863,3,50, - 25,0,863,864,3,62,31,0,864,867,5,220,0,0,865,866,5,152,0,0,866,868, - 3,80,40,0,867,865,1,0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,871, - 5,426,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,79,1,0,0,0,872,873, - 5,540,0,0,873,81,1,0,0,0,874,875,3,50,25,0,875,876,5,17,0,0,876, - 879,3,84,42,0,877,878,5,59,0,0,878,880,5,540,0,0,879,877,1,0,0,0, - 879,880,1,0,0,0,880,83,1,0,0,0,881,882,3,286,143,0,882,85,1,0,0, - 0,883,884,5,427,0,0,884,885,5,147,0,0,885,886,3,54,27,0,886,887, - 5,17,0,0,887,888,3,286,143,0,888,87,1,0,0,0,889,890,5,64,0,0,890, - 892,3,90,45,0,891,889,1,0,0,0,891,892,1,0,0,0,892,893,1,0,0,0,893, - 894,5,290,0,0,894,895,5,469,0,0,895,896,3,60,30,0,896,897,5,243, - 0,0,897,898,5,125,0,0,898,89,1,0,0,0,899,900,3,348,174,0,900,91, - 1,0,0,0,901,902,5,279,0,0,902,903,5,147,0,0,903,904,5,373,0,0,904, - 93,1,0,0,0,905,906,5,271,0,0,906,907,5,34,0,0,907,908,3,96,48,0, - 908,95,1,0,0,0,909,910,5,519,0,0,910,915,3,98,49,0,911,912,5,523, - 0,0,912,914,3,98,49,0,913,911,1,0,0,0,914,917,1,0,0,0,915,913,1, - 0,0,0,915,916,1,0,0,0,916,918,1,0,0,0,917,915,1,0,0,0,918,919,5, - 520,0,0,919,97,1,0,0,0,920,933,3,54,27,0,921,922,5,519,0,0,922,927, - 3,100,50,0,923,924,5,523,0,0,924,926,3,100,50,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,930,1,0,0,0, - 929,927,1,0,0,0,930,931,5,520,0,0,931,933,1,0,0,0,932,920,1,0,0, - 0,932,921,1,0,0,0,933,99,1,0,0,0,934,937,3,324,162,0,935,937,3,400, - 200,0,936,934,1,0,0,0,936,935,1,0,0,0,937,101,1,0,0,0,938,939,5, - 204,0,0,939,948,3,366,183,0,940,944,5,519,0,0,941,943,3,104,52,0, - 942,941,1,0,0,0,943,946,1,0,0,0,944,942,1,0,0,0,944,945,1,0,0,0, - 945,947,1,0,0,0,946,944,1,0,0,0,947,949,5,520,0,0,948,940,1,0,0, - 0,948,949,1,0,0,0,949,103,1,0,0,0,950,951,7,12,0,0,951,955,7,13, - 0,0,952,953,7,14,0,0,953,955,7,15,0,0,954,950,1,0,0,0,954,952,1, - 0,0,0,955,105,1,0,0,0,956,957,5,72,0,0,957,958,5,444,0,0,958,959, - 3,358,179,0,959,960,3,376,188,0,960,107,1,0,0,0,961,962,5,72,0,0, - 962,964,5,450,0,0,963,965,3,378,189,0,964,963,1,0,0,0,964,965,1, - 0,0,0,965,966,1,0,0,0,966,969,3,362,181,0,967,968,5,59,0,0,968,970, - 5,540,0,0,969,967,1,0,0,0,969,970,1,0,0,0,970,971,1,0,0,0,971,972, - 3,376,188,0,972,109,1,0,0,0,973,975,5,72,0,0,974,976,5,500,0,0,975, - 974,1,0,0,0,975,976,1,0,0,0,976,977,1,0,0,0,977,979,5,504,0,0,978, - 980,3,378,189,0,979,978,1,0,0,0,979,980,1,0,0,0,980,981,1,0,0,0, - 981,983,3,370,185,0,982,984,3,60,30,0,983,982,1,0,0,0,983,984,1, - 0,0,0,984,987,1,0,0,0,985,986,5,59,0,0,986,988,5,540,0,0,987,985, - 1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,990,5,17,0,0,990,991, - 3,164,82,0,991,111,1,0,0,0,992,996,5,72,0,0,993,997,5,500,0,0,994, - 995,5,500,0,0,995,997,5,372,0,0,996,993,1,0,0,0,996,994,1,0,0,0, - 996,997,1,0,0,0,997,998,1,0,0,0,998,1000,5,154,0,0,999,1001,3,378, - 189,0,1000,999,1,0,0,0,1000,1001,1,0,0,0,1001,1002,1,0,0,0,1002, - 1003,3,302,151,0,1003,1004,5,17,0,0,1004,1007,3,348,174,0,1005,1006, - 5,197,0,0,1006,1008,7,16,0,0,1007,1005,1,0,0,0,1007,1008,1,0,0,0, - 1008,1010,1,0,0,0,1009,1011,3,114,57,0,1010,1009,1,0,0,0,1010,1011, - 1,0,0,0,1011,113,1,0,0,0,1012,1013,5,415,0,0,1013,1014,5,466,0,0, - 1014,1020,3,116,58,0,1015,1016,5,523,0,0,1016,1017,5,466,0,0,1017, - 1019,3,116,58,0,1018,1015,1,0,0,0,1019,1022,1,0,0,0,1020,1018,1, - 0,0,0,1020,1021,1,0,0,0,1021,115,1,0,0,0,1022,1020,1,0,0,0,1023, - 1024,5,540,0,0,1024,117,1,0,0,0,1025,1026,5,8,0,0,1026,1028,5,375, - 0,0,1027,1029,3,380,190,0,1028,1027,1,0,0,0,1028,1029,1,0,0,0,1029, - 1030,1,0,0,0,1030,1036,3,366,183,0,1031,1037,3,120,60,0,1032,1037, - 3,122,61,0,1033,1037,3,124,62,0,1034,1037,3,126,63,0,1035,1037,3, - 128,64,0,1036,1031,1,0,0,0,1036,1032,1,0,0,0,1036,1033,1,0,0,0,1036, - 1034,1,0,0,0,1036,1035,1,0,0,0,1037,119,1,0,0,0,1038,1040,5,313, - 0,0,1039,1041,3,372,186,0,1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041, - 1042,1,0,0,0,1042,1043,5,390,0,0,1043,1044,3,372,186,0,1044,121, - 1,0,0,0,1045,1046,5,342,0,0,1046,1047,3,382,191,0,1047,123,1,0,0, - 0,1048,1049,5,440,0,0,1049,1050,5,64,0,0,1050,1051,3,90,45,0,1051, - 1052,5,290,0,0,1052,1053,5,469,0,0,1053,1055,3,60,30,0,1054,1056, - 3,130,65,0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,125,1,0,0,0, - 1057,1058,5,116,0,0,1058,1059,5,64,0,0,1059,1060,3,90,45,0,1060, - 127,1,0,0,0,1061,1062,5,440,0,0,1062,1063,5,406,0,0,1063,1064,3, - 60,30,0,1064,129,1,0,0,0,1065,1066,5,243,0,0,1066,1067,5,125,0,0, - 1067,131,1,0,0,0,1068,1069,5,8,0,0,1069,1070,5,504,0,0,1070,1074, - 3,368,184,0,1071,1075,3,120,60,0,1072,1073,5,17,0,0,1073,1075,3, - 164,82,0,1074,1071,1,0,0,0,1074,1072,1,0,0,0,1075,133,1,0,0,0,1076, - 1077,5,8,0,0,1077,1078,5,450,0,0,1078,1079,3,360,180,0,1079,1080, - 3,122,61,0,1080,135,1,0,0,0,1081,1085,5,8,0,0,1082,1086,5,500,0, - 0,1083,1084,5,500,0,0,1084,1086,5,372,0,0,1085,1082,1,0,0,0,1085, - 1083,1,0,0,0,1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1089,5,154, - 0,0,1088,1090,3,380,190,0,1089,1088,1,0,0,0,1089,1090,1,0,0,0,1090, - 1091,1,0,0,0,1091,1092,3,304,152,0,1092,1093,5,17,0,0,1093,1096, - 3,348,174,0,1094,1095,5,197,0,0,1095,1097,7,16,0,0,1096,1094,1,0, - 0,0,1096,1097,1,0,0,0,1097,137,1,0,0,0,1098,1099,5,116,0,0,1099, - 1101,5,444,0,0,1100,1102,3,380,190,0,1101,1100,1,0,0,0,1101,1102, - 1,0,0,0,1102,1103,1,0,0,0,1103,1104,3,356,178,0,1104,139,1,0,0,0, - 1105,1107,5,116,0,0,1106,1108,5,500,0,0,1107,1106,1,0,0,0,1107,1108, - 1,0,0,0,1108,1109,1,0,0,0,1109,1111,5,375,0,0,1110,1112,3,380,190, - 0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0,1113,1114, - 3,366,183,0,1114,141,1,0,0,0,1115,1116,5,116,0,0,1116,1118,5,450, - 0,0,1117,1119,3,380,190,0,1118,1117,1,0,0,0,1118,1119,1,0,0,0,1119, - 1120,1,0,0,0,1120,1122,3,360,180,0,1121,1123,7,17,0,0,1122,1121, - 1,0,0,0,1122,1123,1,0,0,0,1123,143,1,0,0,0,1124,1126,5,116,0,0,1125, - 1127,5,500,0,0,1126,1125,1,0,0,0,1126,1127,1,0,0,0,1127,1128,1,0, - 0,0,1128,1130,5,504,0,0,1129,1131,3,380,190,0,1130,1129,1,0,0,0, - 1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1133,3,368,184,0,1133,145, - 1,0,0,0,1134,1138,5,116,0,0,1135,1139,5,500,0,0,1136,1137,5,500, - 0,0,1137,1139,5,372,0,0,1138,1135,1,0,0,0,1138,1136,1,0,0,0,1138, - 1139,1,0,0,0,1139,1140,1,0,0,0,1140,1142,5,154,0,0,1141,1143,3,380, - 190,0,1142,1141,1,0,0,0,1142,1143,1,0,0,0,1143,1144,1,0,0,0,1144, - 1145,3,304,152,0,1145,147,1,0,0,0,1146,1148,5,132,0,0,1147,1146, - 1,0,0,0,1147,1148,1,0,0,0,1148,1149,1,0,0,0,1149,1154,3,150,75,0, - 1150,1154,3,160,80,0,1151,1152,5,132,0,0,1152,1154,3,162,81,0,1153, - 1147,1,0,0,0,1153,1150,1,0,0,0,1153,1151,1,0,0,0,1154,149,1,0,0, - 0,1155,1156,5,178,0,0,1156,1157,7,18,0,0,1157,1166,3,366,183,0,1158, - 1160,3,152,76,0,1159,1158,1,0,0,0,1159,1160,1,0,0,0,1160,1162,1, - 0,0,0,1161,1163,3,60,30,0,1162,1161,1,0,0,0,1162,1163,1,0,0,0,1163, - 1164,1,0,0,0,1164,1167,3,164,82,0,1165,1167,3,154,77,0,1166,1159, - 1,0,0,0,1166,1165,1,0,0,0,1167,151,1,0,0,0,1168,1169,5,270,0,0,1169, - 1170,3,382,191,0,1170,153,1,0,0,0,1171,1172,5,417,0,0,1172,1177, - 3,156,78,0,1173,1174,5,523,0,0,1174,1176,3,156,78,0,1175,1173,1, - 0,0,0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1177,1178,1,0,0,0,1178, - 155,1,0,0,0,1179,1177,1,0,0,0,1180,1181,5,519,0,0,1181,1186,3,158, - 79,0,1182,1183,5,523,0,0,1183,1185,3,158,79,0,1184,1182,1,0,0,0, - 1185,1188,1,0,0,0,1186,1184,1,0,0,0,1186,1187,1,0,0,0,1187,1189, - 1,0,0,0,1188,1186,1,0,0,0,1189,1190,5,520,0,0,1190,157,1,0,0,0,1191, - 1194,3,400,200,0,1192,1194,3,298,149,0,1193,1191,1,0,0,0,1193,1192, - 1,0,0,0,1194,159,1,0,0,0,1195,1196,5,24,0,0,1196,1197,5,356,0,0, - 1197,1198,5,342,0,0,1198,1202,5,524,0,0,1199,1200,3,150,75,0,1200, - 1201,5,524,0,0,1201,1203,1,0,0,0,1202,1199,1,0,0,0,1203,1204,1,0, - 0,0,1204,1202,1,0,0,0,1204,1205,1,0,0,0,1205,1206,1,0,0,0,1206,1207, - 5,122,0,0,1207,161,1,0,0,0,1208,1209,5,356,0,0,1209,1210,5,342,0, - 0,1210,1214,5,24,0,0,1211,1212,3,150,75,0,1212,1213,5,524,0,0,1213, - 1215,1,0,0,0,1214,1211,1,0,0,0,1215,1216,1,0,0,0,1216,1214,1,0,0, - 0,1216,1217,1,0,0,0,1217,1218,1,0,0,0,1218,1219,5,122,0,0,1219,163, - 1,0,0,0,1220,1221,6,82,-1,0,1221,1244,3,166,83,0,1222,1223,3,168, - 84,0,1223,1224,3,164,82,5,1224,1244,1,0,0,0,1225,1226,5,519,0,0, - 1226,1227,3,164,82,0,1227,1228,5,520,0,0,1228,1244,1,0,0,0,1229, - 1231,3,176,88,0,1230,1232,3,254,127,0,1231,1230,1,0,0,0,1231,1232, - 1,0,0,0,1232,1234,1,0,0,0,1233,1235,3,258,129,0,1234,1233,1,0,0, - 0,1234,1235,1,0,0,0,1235,1244,1,0,0,0,1236,1238,3,174,87,0,1237, - 1239,3,254,127,0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1, - 0,0,0,1240,1242,3,258,129,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0, - 1242,1244,1,0,0,0,1243,1220,1,0,0,0,1243,1222,1,0,0,0,1243,1225, - 1,0,0,0,1243,1229,1,0,0,0,1243,1236,1,0,0,0,1244,1259,1,0,0,0,1245, - 1246,10,3,0,0,1246,1248,7,19,0,0,1247,1249,5,5,0,0,1248,1247,1,0, - 0,0,1248,1249,1,0,0,0,1249,1250,1,0,0,0,1250,1252,3,164,82,0,1251, - 1253,3,254,127,0,1252,1251,1,0,0,0,1252,1253,1,0,0,0,1253,1255,1, - 0,0,0,1254,1256,3,258,129,0,1255,1254,1,0,0,0,1255,1256,1,0,0,0, - 1256,1258,1,0,0,0,1257,1245,1,0,0,0,1258,1261,1,0,0,0,1259,1257, - 1,0,0,0,1259,1260,1,0,0,0,1260,165,1,0,0,0,1261,1259,1,0,0,0,1262, - 1263,5,417,0,0,1263,1268,3,286,143,0,1264,1265,5,523,0,0,1265,1267, - 3,286,143,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,167,1,0,0,0,1270,1268,1,0,0,0,1271,1272, - 5,436,0,0,1272,1277,3,170,85,0,1273,1274,5,523,0,0,1274,1276,3,170, - 85,0,1275,1273,1,0,0,0,1276,1279,1,0,0,0,1277,1275,1,0,0,0,1277, - 1278,1,0,0,0,1278,169,1,0,0,0,1279,1277,1,0,0,0,1280,1292,3,172, - 86,0,1281,1282,5,519,0,0,1282,1287,3,54,27,0,1283,1284,5,523,0,0, - 1284,1286,3,54,27,0,1285,1283,1,0,0,0,1286,1289,1,0,0,0,1287,1285, - 1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0,1289,1287,1,0,0,0,1290, - 1291,5,520,0,0,1291,1293,1,0,0,0,1292,1281,1,0,0,0,1292,1293,1,0, - 0,0,1293,1294,1,0,0,0,1294,1295,5,17,0,0,1295,1296,5,519,0,0,1296, - 1297,3,164,82,0,1297,1298,5,520,0,0,1298,171,1,0,0,0,1299,1300,3, - 348,174,0,1300,173,1,0,0,0,1301,1303,3,176,88,0,1302,1304,3,196, - 98,0,1303,1302,1,0,0,0,1303,1304,1,0,0,0,1304,1306,1,0,0,0,1305, - 1307,3,228,114,0,1306,1305,1,0,0,0,1306,1307,1,0,0,0,1307,1309,1, - 0,0,0,1308,1310,3,230,115,0,1309,1308,1,0,0,0,1309,1310,1,0,0,0, - 1310,1312,1,0,0,0,1311,1313,3,244,122,0,1312,1311,1,0,0,0,1312,1313, - 1,0,0,0,1313,1315,1,0,0,0,1314,1316,3,246,123,0,1315,1314,1,0,0, - 0,1315,1316,1,0,0,0,1316,1322,1,0,0,0,1317,1318,3,176,88,0,1318, - 1319,3,196,98,0,1319,1320,3,252,126,0,1320,1322,1,0,0,0,1321,1301, - 1,0,0,0,1321,1317,1,0,0,0,1322,175,1,0,0,0,1323,1325,5,338,0,0,1324, - 1326,3,410,205,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326,1327,1, - 0,0,0,1327,1328,3,178,89,0,1328,177,1,0,0,0,1329,1334,3,180,90,0, - 1330,1331,5,523,0,0,1331,1333,3,180,90,0,1332,1330,1,0,0,0,1333, - 1336,1,0,0,0,1334,1332,1,0,0,0,1334,1335,1,0,0,0,1335,179,1,0,0, - 0,1336,1334,1,0,0,0,1337,1361,3,182,91,0,1338,1344,3,186,93,0,1339, - 1345,3,188,94,0,1340,1342,5,17,0,0,1341,1340,1,0,0,0,1341,1342,1, - 0,0,0,1342,1343,1,0,0,0,1343,1345,3,286,143,0,1344,1339,1,0,0,0, - 1344,1341,1,0,0,0,1344,1345,1,0,0,0,1345,1361,1,0,0,0,1346,1348, - 3,192,96,0,1347,1349,3,188,94,0,1348,1347,1,0,0,0,1348,1349,1,0, - 0,0,1349,1361,1,0,0,0,1350,1356,3,184,92,0,1351,1357,3,188,94,0, - 1352,1354,5,17,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355, - 1,0,0,0,1355,1357,3,54,27,0,1356,1351,1,0,0,0,1356,1353,1,0,0,0, - 1356,1357,1,0,0,0,1357,1361,1,0,0,0,1358,1359,4,90,3,0,1359,1361, - 3,52,26,0,1360,1337,1,0,0,0,1360,1338,1,0,0,0,1360,1346,1,0,0,0, - 1360,1350,1,0,0,0,1360,1358,1,0,0,0,1361,181,1,0,0,0,1362,1363,3, - 194,97,0,1363,183,1,0,0,0,1364,1365,3,286,143,0,1365,185,1,0,0,0, - 1366,1367,3,54,27,0,1367,187,1,0,0,0,1368,1370,5,17,0,0,1369,1368, - 1,0,0,0,1369,1370,1,0,0,0,1370,1371,1,0,0,0,1371,1372,3,348,174, - 0,1372,189,1,0,0,0,1373,1389,3,194,97,0,1374,1379,3,286,143,0,1375, - 1377,5,17,0,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377,1378,1,0, - 0,0,1378,1380,3,54,27,0,1379,1376,1,0,0,0,1379,1380,1,0,0,0,1380, - 1389,1,0,0,0,1381,1386,3,54,27,0,1382,1384,5,17,0,0,1383,1382,1, - 0,0,0,1383,1384,1,0,0,0,1384,1385,1,0,0,0,1385,1387,3,286,143,0, - 1386,1383,1,0,0,0,1386,1387,1,0,0,0,1387,1389,1,0,0,0,1388,1373, - 1,0,0,0,1388,1374,1,0,0,0,1388,1381,1,0,0,0,1389,191,1,0,0,0,1390, - 1395,3,348,174,0,1391,1392,5,516,0,0,1392,1394,3,348,174,0,1393, - 1391,1,0,0,0,1394,1397,1,0,0,0,1395,1393,1,0,0,0,1395,1396,1,0,0, - 0,1396,1398,1,0,0,0,1397,1395,1,0,0,0,1398,1399,5,516,0,0,1399,1401, - 1,0,0,0,1400,1390,1,0,0,0,1400,1401,1,0,0,0,1401,1402,1,0,0,0,1402, - 1403,5,530,0,0,1403,193,1,0,0,0,1404,1405,3,300,150,0,1405,1406, - 5,264,0,0,1406,1407,3,250,125,0,1407,1408,5,17,0,0,1408,1409,3,348, - 174,0,1409,1417,1,0,0,0,1410,1411,3,300,150,0,1411,1412,5,264,0, - 0,1412,1413,3,340,170,0,1413,1414,5,17,0,0,1414,1415,3,348,174,0, - 1415,1417,1,0,0,0,1416,1404,1,0,0,0,1416,1410,1,0,0,0,1417,195,1, - 0,0,0,1418,1419,5,152,0,0,1419,1420,3,198,99,0,1420,197,1,0,0,0, - 1421,1422,6,99,-1,0,1422,1427,3,200,100,0,1423,1424,5,523,0,0,1424, - 1426,3,200,100,0,1425,1423,1,0,0,0,1426,1429,1,0,0,0,1427,1425,1, - 0,0,0,1427,1428,1,0,0,0,1428,1433,1,0,0,0,1429,1427,1,0,0,0,1430, - 1433,3,212,106,0,1431,1433,3,214,107,0,1432,1421,1,0,0,0,1432,1430, - 1,0,0,0,1432,1431,1,0,0,0,1433,1455,1,0,0,0,1434,1435,10,3,0,0,1435, - 1436,5,73,0,0,1436,1437,5,186,0,0,1437,1454,3,198,99,4,1438,1440, - 10,4,0,0,1439,1441,5,235,0,0,1440,1439,1,0,0,0,1440,1441,1,0,0,0, - 1441,1443,1,0,0,0,1442,1444,7,20,0,0,1443,1442,1,0,0,0,1443,1444, - 1,0,0,0,1444,1446,1,0,0,0,1445,1447,5,263,0,0,1446,1445,1,0,0,0, - 1446,1447,1,0,0,0,1447,1448,1,0,0,0,1448,1449,5,186,0,0,1449,1451, - 3,198,99,0,1450,1452,3,226,113,0,1451,1450,1,0,0,0,1451,1452,1,0, - 0,0,1452,1454,1,0,0,0,1453,1434,1,0,0,0,1453,1438,1,0,0,0,1454,1457, - 1,0,0,0,1455,1453,1,0,0,0,1455,1456,1,0,0,0,1456,199,1,0,0,0,1457, - 1455,1,0,0,0,1458,1460,3,202,101,0,1459,1461,3,338,169,0,1460,1459, - 1,0,0,0,1460,1461,1,0,0,0,1461,201,1,0,0,0,1462,1464,5,375,0,0,1463, - 1462,1,0,0,0,1463,1464,1,0,0,0,1464,1465,1,0,0,0,1465,1467,3,366, - 183,0,1466,1468,3,208,104,0,1467,1466,1,0,0,0,1467,1468,1,0,0,0, - 1468,1476,1,0,0,0,1469,1471,3,368,184,0,1470,1472,3,208,104,0,1471, - 1470,1,0,0,0,1471,1472,1,0,0,0,1472,1476,1,0,0,0,1473,1476,3,204, - 102,0,1474,1476,3,206,103,0,1475,1463,1,0,0,0,1475,1469,1,0,0,0, - 1475,1473,1,0,0,0,1475,1474,1,0,0,0,1476,203,1,0,0,0,1477,1478,5, - 200,0,0,1478,1479,5,375,0,0,1479,1480,5,519,0,0,1480,1481,3,298, - 149,0,1481,1482,5,520,0,0,1482,205,1,0,0,0,1483,1485,5,200,0,0,1484, - 1483,1,0,0,0,1484,1485,1,0,0,0,1485,1486,1,0,0,0,1486,1487,5,519, - 0,0,1487,1488,3,164,82,0,1488,1489,5,520,0,0,1489,1496,1,0,0,0,1490, - 1491,5,408,0,0,1491,1492,5,519,0,0,1492,1493,3,286,143,0,1493,1494, - 5,520,0,0,1494,1496,1,0,0,0,1495,1484,1,0,0,0,1495,1490,1,0,0,0, - 1496,207,1,0,0,0,1497,1498,5,147,0,0,1498,1499,5,373,0,0,1499,1500, - 5,17,0,0,1500,1501,5,251,0,0,1501,1502,3,210,105,0,1502,209,1,0, - 0,0,1503,1504,3,286,143,0,1504,211,1,0,0,0,1505,1506,5,519,0,0,1506, - 1507,3,154,77,0,1507,1508,5,520,0,0,1508,1509,3,338,169,0,1509,213, - 1,0,0,0,1510,1511,5,375,0,0,1511,1512,5,519,0,0,1512,1513,3,216, - 108,0,1513,1514,5,520,0,0,1514,215,1,0,0,0,1515,1516,3,218,109,0, - 1516,1517,5,519,0,0,1517,1522,3,220,110,0,1518,1519,5,523,0,0,1519, - 1521,3,220,110,0,1520,1518,1,0,0,0,1521,1524,1,0,0,0,1522,1520,1, - 0,0,0,1522,1523,1,0,0,0,1523,1525,1,0,0,0,1524,1522,1,0,0,0,1525, - 1526,5,520,0,0,1526,217,1,0,0,0,1527,1528,7,21,0,0,1528,219,1,0, - 0,0,1529,1530,5,375,0,0,1530,1545,3,242,121,0,1531,1545,3,224,112, - 0,1532,1545,3,326,163,0,1533,1534,5,449,0,0,1534,1535,5,539,0,0, - 1535,1536,5,375,0,0,1536,1545,3,242,121,0,1537,1538,5,501,0,0,1538, - 1539,5,539,0,0,1539,1545,3,224,112,0,1540,1541,3,222,111,0,1541, - 1542,5,539,0,0,1542,1543,3,326,163,0,1543,1545,1,0,0,0,1544,1529, - 1,0,0,0,1544,1531,1,0,0,0,1544,1532,1,0,0,0,1544,1533,1,0,0,0,1544, - 1537,1,0,0,0,1544,1540,1,0,0,0,1545,221,1,0,0,0,1546,1547,7,22,0, - 0,1547,223,1,0,0,0,1548,1549,5,454,0,0,1549,1550,5,519,0,0,1550, - 1551,3,54,27,0,1551,1552,5,520,0,0,1552,225,1,0,0,0,1553,1560,5, - 255,0,0,1554,1561,3,288,144,0,1555,1558,3,58,29,0,1556,1557,5,508, - 0,0,1557,1559,3,58,29,0,1558,1556,1,0,0,0,1558,1559,1,0,0,0,1559, - 1561,1,0,0,0,1560,1554,1,0,0,0,1560,1555,1,0,0,0,1561,1565,1,0,0, - 0,1562,1563,5,415,0,0,1563,1565,3,60,30,0,1564,1553,1,0,0,0,1564, - 1562,1,0,0,0,1565,227,1,0,0,0,1566,1569,5,433,0,0,1567,1570,3,288, - 144,0,1568,1570,3,58,29,0,1569,1567,1,0,0,0,1569,1568,1,0,0,0,1570, - 229,1,0,0,0,1571,1572,5,160,0,0,1572,1573,5,34,0,0,1573,1578,3,232, - 116,0,1574,1575,5,523,0,0,1575,1577,3,232,116,0,1576,1574,1,0,0, - 0,1577,1580,1,0,0,0,1578,1576,1,0,0,0,1578,1579,1,0,0,0,1579,231, - 1,0,0,0,1580,1578,1,0,0,0,1581,1622,3,54,27,0,1582,1622,3,238,119, - 0,1583,1584,5,519,0,0,1584,1622,5,520,0,0,1585,1586,5,519,0,0,1586, - 1591,3,286,143,0,1587,1588,5,523,0,0,1588,1590,3,286,143,0,1589, - 1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1,0,0,0,1591,1592,1,0,0, - 0,1592,1594,1,0,0,0,1593,1591,1,0,0,0,1594,1595,5,520,0,0,1595,1622, - 1,0,0,0,1596,1597,3,236,118,0,1597,1598,5,519,0,0,1598,1603,3,286, - 143,0,1599,1600,5,523,0,0,1600,1602,3,286,143,0,1601,1599,1,0,0, - 0,1602,1605,1,0,0,0,1603,1601,1,0,0,0,1603,1604,1,0,0,0,1604,1606, - 1,0,0,0,1605,1603,1,0,0,0,1606,1607,5,520,0,0,1607,1622,1,0,0,0, - 1608,1609,3,234,117,0,1609,1610,5,519,0,0,1610,1615,3,232,116,0, - 1611,1612,5,523,0,0,1612,1614,3,232,116,0,1613,1611,1,0,0,0,1614, - 1617,1,0,0,0,1615,1613,1,0,0,0,1615,1616,1,0,0,0,1616,1618,1,0,0, - 0,1617,1615,1,0,0,0,1618,1619,5,520,0,0,1619,1622,1,0,0,0,1620,1622, - 3,286,143,0,1621,1581,1,0,0,0,1621,1582,1,0,0,0,1621,1583,1,0,0, - 0,1621,1585,1,0,0,0,1621,1596,1,0,0,0,1621,1608,1,0,0,0,1621,1620, - 1,0,0,0,1622,233,1,0,0,0,1623,1624,5,161,0,0,1624,1625,5,496,0,0, - 1625,235,1,0,0,0,1626,1627,7,23,0,0,1627,237,1,0,0,0,1628,1629,3, - 240,120,0,1629,1630,5,519,0,0,1630,1631,3,242,121,0,1631,1632,5, - 523,0,0,1632,1633,3,326,163,0,1633,1634,5,520,0,0,1634,239,1,0,0, - 0,1635,1636,7,24,0,0,1636,241,1,0,0,0,1637,1638,3,372,186,0,1638, - 243,1,0,0,0,1639,1640,5,164,0,0,1640,1641,3,288,144,0,1641,245,1, - 0,0,0,1642,1643,5,435,0,0,1643,1648,3,248,124,0,1644,1645,5,523, - 0,0,1645,1647,3,248,124,0,1646,1644,1,0,0,0,1647,1650,1,0,0,0,1648, - 1646,1,0,0,0,1648,1649,1,0,0,0,1649,247,1,0,0,0,1650,1648,1,0,0, - 0,1651,1652,3,340,170,0,1652,1653,5,17,0,0,1653,1654,3,250,125,0, - 1654,249,1,0,0,0,1655,1657,3,340,170,0,1656,1655,1,0,0,0,1656,1657, - 1,0,0,0,1657,1658,1,0,0,0,1658,1660,5,519,0,0,1659,1661,3,260,130, - 0,1660,1659,1,0,0,0,1660,1661,1,0,0,0,1661,1663,1,0,0,0,1662,1664, - 3,254,127,0,1663,1662,1,0,0,0,1663,1664,1,0,0,0,1664,1666,1,0,0, - 0,1665,1667,3,276,138,0,1666,1665,1,0,0,0,1666,1667,1,0,0,0,1667, - 1668,1,0,0,0,1668,1669,5,520,0,0,1669,251,1,0,0,0,1670,1671,5,215, - 0,0,1671,1673,5,519,0,0,1672,1674,3,260,130,0,1673,1672,1,0,0,0, - 1673,1674,1,0,0,0,1674,1676,1,0,0,0,1675,1677,3,254,127,0,1676,1675, - 1,0,0,0,1676,1677,1,0,0,0,1677,1679,1,0,0,0,1678,1680,3,264,132, - 0,1679,1678,1,0,0,0,1679,1680,1,0,0,0,1680,1682,1,0,0,0,1681,1683, - 3,270,135,0,1682,1681,1,0,0,0,1682,1683,1,0,0,0,1683,1685,1,0,0, - 0,1684,1686,3,272,136,0,1685,1684,1,0,0,0,1685,1686,1,0,0,0,1686, - 1688,1,0,0,0,1687,1689,3,266,133,0,1688,1687,1,0,0,0,1688,1689,1, - 0,0,0,1689,1690,1,0,0,0,1690,1691,3,274,137,0,1691,1696,5,520,0, - 0,1692,1694,5,17,0,0,1693,1692,1,0,0,0,1693,1694,1,0,0,0,1694,1695, - 1,0,0,0,1695,1697,3,348,174,0,1696,1693,1,0,0,0,1696,1697,1,0,0, - 0,1697,253,1,0,0,0,1698,1699,5,260,0,0,1699,1700,5,34,0,0,1700,1705, - 3,256,128,0,1701,1702,5,523,0,0,1702,1704,3,256,128,0,1703,1701, - 1,0,0,0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1705,1706,1,0,0,0,1706, - 255,1,0,0,0,1707,1705,1,0,0,0,1708,1711,3,54,27,0,1709,1711,3,296, - 148,0,1710,1708,1,0,0,0,1710,1709,1,0,0,0,1711,1713,1,0,0,0,1712, - 1714,7,25,0,0,1713,1712,1,0,0,0,1713,1714,1,0,0,0,1714,1717,1,0, - 0,0,1715,1716,5,479,0,0,1716,1718,7,26,0,0,1717,1715,1,0,0,0,1717, - 1718,1,0,0,0,1718,257,1,0,0,0,1719,1722,5,206,0,0,1720,1723,5,5, - 0,0,1721,1723,3,286,143,0,1722,1720,1,0,0,0,1722,1721,1,0,0,0,1723, - 259,1,0,0,0,1724,1725,5,270,0,0,1725,1728,5,34,0,0,1726,1729,3,54, - 27,0,1727,1729,3,300,150,0,1728,1726,1,0,0,0,1728,1727,1,0,0,0,1729, - 1737,1,0,0,0,1730,1733,5,523,0,0,1731,1734,3,54,27,0,1732,1734,3, - 300,150,0,1733,1731,1,0,0,0,1733,1732,1,0,0,0,1734,1736,1,0,0,0, - 1735,1730,1,0,0,0,1736,1739,1,0,0,0,1737,1735,1,0,0,0,1737,1738, - 1,0,0,0,1738,261,1,0,0,0,1739,1737,1,0,0,0,1740,1757,5,530,0,0,1741, - 1757,5,533,0,0,1742,1757,5,538,0,0,1743,1744,5,521,0,0,1744,1745, - 5,541,0,0,1745,1746,5,523,0,0,1746,1747,5,541,0,0,1747,1757,5,522, - 0,0,1748,1749,5,521,0,0,1749,1750,5,541,0,0,1750,1751,5,523,0,0, - 1751,1757,5,522,0,0,1752,1753,5,521,0,0,1753,1754,5,523,0,0,1754, - 1755,5,541,0,0,1755,1757,5,522,0,0,1756,1740,1,0,0,0,1756,1741,1, - 0,0,0,1756,1742,1,0,0,0,1756,1743,1,0,0,0,1756,1748,1,0,0,0,1756, - 1752,1,0,0,0,1757,263,1,0,0,0,1758,1759,5,217,0,0,1759,1764,3,190, - 95,0,1760,1761,5,523,0,0,1761,1763,3,190,95,0,1762,1760,1,0,0,0, - 1763,1766,1,0,0,0,1764,1762,1,0,0,0,1764,1765,1,0,0,0,1765,265,1, - 0,0,0,1766,1764,1,0,0,0,1767,1768,5,273,0,0,1768,1770,5,519,0,0, - 1769,1771,3,268,134,0,1770,1769,1,0,0,0,1771,1772,1,0,0,0,1772,1770, - 1,0,0,0,1772,1773,1,0,0,0,1773,1774,1,0,0,0,1774,1776,5,520,0,0, - 1775,1777,3,284,142,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777,267, - 1,0,0,0,1778,1780,3,350,175,0,1779,1781,3,262,131,0,1780,1779,1, - 0,0,0,1780,1781,1,0,0,0,1781,269,1,0,0,0,1782,1783,5,5,0,0,1783, - 1784,5,324,0,0,1784,1785,5,274,0,0,1785,1791,5,212,0,0,1786,1787, - 5,256,0,0,1787,1788,5,323,0,0,1788,1789,5,274,0,0,1789,1791,5,212, - 0,0,1790,1782,1,0,0,0,1790,1786,1,0,0,0,1791,271,1,0,0,0,1792,1793, - 5,441,0,0,1793,1794,5,212,0,0,1794,1795,5,345,0,0,1795,1796,5,481, - 0,0,1796,1797,5,470,0,0,1797,1817,5,323,0,0,1798,1799,5,441,0,0, - 1799,1800,5,212,0,0,1800,1801,5,345,0,0,1801,1802,5,390,0,0,1802, - 1803,5,239,0,0,1803,1817,5,323,0,0,1804,1805,5,441,0,0,1805,1806, - 5,212,0,0,1806,1807,5,345,0,0,1807,1808,5,390,0,0,1808,1809,5,470, - 0,0,1809,1817,3,350,175,0,1810,1811,5,441,0,0,1811,1812,5,212,0, - 0,1812,1813,5,345,0,0,1813,1814,5,390,0,0,1814,1815,5,460,0,0,1815, - 1817,3,350,175,0,1816,1792,1,0,0,0,1816,1798,1,0,0,0,1816,1804,1, - 0,0,0,1816,1810,1,0,0,0,1817,273,1,0,0,0,1818,1819,5,105,0,0,1819, - 1824,3,190,95,0,1820,1821,5,523,0,0,1821,1823,3,190,95,0,1822,1820, - 1,0,0,0,1823,1826,1,0,0,0,1824,1822,1,0,0,0,1824,1825,1,0,0,0,1825, - 275,1,0,0,0,1826,1824,1,0,0,0,1827,1828,5,294,0,0,1828,1829,5,27, - 0,0,1829,1830,3,326,163,0,1830,1831,3,278,139,0,1831,1843,1,0,0, - 0,1832,1833,7,27,0,0,1833,1834,5,27,0,0,1834,1835,3,280,140,0,1835, - 1836,5,10,0,0,1836,1837,3,282,141,0,1837,1843,1,0,0,0,1838,1839, - 5,324,0,0,1839,1840,5,27,0,0,1840,1841,5,541,0,0,1841,1843,3,278, - 139,0,1842,1827,1,0,0,0,1842,1832,1,0,0,0,1842,1838,1,0,0,0,1843, - 277,1,0,0,0,1844,1845,5,483,0,0,1845,1846,5,10,0,0,1846,1847,5,76, - 0,0,1847,1848,5,323,0,0,1848,279,1,0,0,0,1849,1850,5,404,0,0,1850, - 1856,5,483,0,0,1851,1852,5,541,0,0,1852,1856,5,483,0,0,1853,1854, - 5,76,0,0,1854,1856,5,323,0,0,1855,1849,1,0,0,0,1855,1851,1,0,0,0, - 1855,1853,1,0,0,0,1856,281,1,0,0,0,1857,1858,5,76,0,0,1858,1864, - 5,323,0,0,1859,1860,5,541,0,0,1860,1864,5,146,0,0,1861,1862,5,404, - 0,0,1862,1864,5,146,0,0,1863,1857,1,0,0,0,1863,1859,1,0,0,0,1863, - 1861,1,0,0,0,1864,283,1,0,0,0,1865,1866,5,437,0,0,1866,1867,3,326, - 163,0,1867,285,1,0,0,0,1868,1869,3,288,144,0,1869,287,1,0,0,0,1870, - 1871,6,144,-1,0,1871,1872,5,243,0,0,1872,1883,3,288,144,6,1873,1874, - 5,133,0,0,1874,1875,5,519,0,0,1875,1876,3,164,82,0,1876,1877,5,520, - 0,0,1877,1883,1,0,0,0,1878,1880,3,296,148,0,1879,1881,3,290,145, - 0,1880,1879,1,0,0,0,1880,1881,1,0,0,0,1881,1883,1,0,0,0,1882,1870, - 1,0,0,0,1882,1873,1,0,0,0,1882,1878,1,0,0,0,1883,1898,1,0,0,0,1884, - 1885,10,3,0,0,1885,1886,5,10,0,0,1886,1897,3,288,144,4,1887,1888, - 10,2,0,0,1888,1889,5,259,0,0,1889,1897,3,288,144,3,1890,1891,10, - 1,0,0,1891,1893,5,185,0,0,1892,1894,5,243,0,0,1893,1892,1,0,0,0, - 1893,1894,1,0,0,0,1894,1895,1,0,0,0,1895,1897,7,28,0,0,1896,1884, - 1,0,0,0,1896,1887,1,0,0,0,1896,1890,1,0,0,0,1897,1900,1,0,0,0,1898, - 1896,1,0,0,0,1898,1899,1,0,0,0,1899,289,1,0,0,0,1900,1898,1,0,0, - 0,1901,1903,5,243,0,0,1902,1901,1,0,0,0,1902,1903,1,0,0,0,1903,1904, - 1,0,0,0,1904,1906,5,27,0,0,1905,1907,7,29,0,0,1906,1905,1,0,0,0, - 1906,1907,1,0,0,0,1907,1908,1,0,0,0,1908,1909,3,296,148,0,1909,1910, - 5,10,0,0,1910,1911,3,296,148,0,1911,1976,1,0,0,0,1912,1914,5,243, - 0,0,1913,1912,1,0,0,0,1913,1914,1,0,0,0,1914,1915,1,0,0,0,1915,1916, - 5,171,0,0,1916,1917,5,519,0,0,1917,1922,3,286,143,0,1918,1919,5, - 523,0,0,1919,1921,3,286,143,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,1925,1,0,0,0,1924,1922, - 1,0,0,0,1925,1926,5,520,0,0,1926,1976,1,0,0,0,1927,1929,5,243,0, - 0,1928,1927,1,0,0,0,1928,1929,1,0,0,0,1929,1930,1,0,0,0,1930,1931, - 5,171,0,0,1931,1932,5,519,0,0,1932,1933,3,164,82,0,1933,1934,5,520, - 0,0,1934,1976,1,0,0,0,1935,1936,5,133,0,0,1936,1937,5,519,0,0,1937, - 1938,3,164,82,0,1938,1939,5,520,0,0,1939,1976,1,0,0,0,1940,1942, - 5,243,0,0,1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942,1943,1,0,0,0, - 1943,1944,5,320,0,0,1944,1976,3,296,148,0,1945,1976,3,294,147,0, - 1946,1948,5,185,0,0,1947,1949,5,243,0,0,1948,1947,1,0,0,0,1948,1949, - 1,0,0,0,1949,1950,1,0,0,0,1950,1976,7,28,0,0,1951,1953,5,185,0,0, - 1952,1954,5,243,0,0,1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954,1955, - 1,0,0,0,1955,1956,5,113,0,0,1956,1957,5,152,0,0,1957,1976,3,296, - 148,0,1958,1960,5,243,0,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960, - 1961,1,0,0,0,1961,1962,5,344,0,0,1962,1963,5,390,0,0,1963,1966,3, - 296,148,0,1964,1965,5,127,0,0,1965,1967,3,404,202,0,1966,1964,1, - 0,0,0,1966,1967,1,0,0,0,1967,1976,1,0,0,0,1968,1969,5,185,0,0,1969, - 1973,5,187,0,0,1970,1974,5,416,0,0,1971,1974,5,13,0,0,1972,1974, - 3,348,174,0,1973,1970,1,0,0,0,1973,1971,1,0,0,0,1973,1972,1,0,0, - 0,1973,1974,1,0,0,0,1974,1976,1,0,0,0,1975,1902,1,0,0,0,1975,1913, - 1,0,0,0,1975,1928,1,0,0,0,1975,1935,1,0,0,0,1975,1941,1,0,0,0,1975, - 1945,1,0,0,0,1975,1946,1,0,0,0,1975,1951,1,0,0,0,1975,1959,1,0,0, - 0,1975,1968,1,0,0,0,1976,291,1,0,0,0,1977,1986,5,246,0,0,1978,1979, - 5,121,0,0,1979,1986,5,13,0,0,1980,1981,5,121,0,0,1981,1986,3,372, - 186,0,1982,1986,5,399,0,0,1983,1986,5,140,0,0,1984,1986,5,407,0, - 0,1985,1977,1,0,0,0,1985,1978,1,0,0,0,1985,1980,1,0,0,0,1985,1982, - 1,0,0,0,1985,1983,1,0,0,0,1985,1984,1,0,0,0,1986,293,1,0,0,0,1987, - 1989,5,243,0,0,1988,1987,1,0,0,0,1988,1989,1,0,0,0,1989,1990,1,0, - 0,0,1990,1991,5,204,0,0,1991,2005,7,30,0,0,1992,1993,5,519,0,0,1993, - 2006,5,520,0,0,1994,1995,5,519,0,0,1995,2000,3,286,143,0,1996,1997, - 5,523,0,0,1997,1999,3,286,143,0,1998,1996,1,0,0,0,1999,2002,1,0, - 0,0,2000,1998,1,0,0,0,2000,2001,1,0,0,0,2001,2003,1,0,0,0,2002,2000, - 1,0,0,0,2003,2004,5,520,0,0,2004,2006,1,0,0,0,2005,1992,1,0,0,0, - 2005,1994,1,0,0,0,2006,2017,1,0,0,0,2007,2009,5,243,0,0,2008,2007, - 1,0,0,0,2008,2009,1,0,0,0,2009,2010,1,0,0,0,2010,2011,5,204,0,0, - 2011,2014,3,296,148,0,2012,2013,5,127,0,0,2013,2015,3,404,202,0, - 2014,2012,1,0,0,0,2014,2015,1,0,0,0,2015,2017,1,0,0,0,2016,1988, - 1,0,0,0,2016,2008,1,0,0,0,2017,295,1,0,0,0,2018,2019,6,148,-1,0, - 2019,2023,3,300,150,0,2020,2021,7,31,0,0,2021,2023,3,296,148,7,2022, - 2018,1,0,0,0,2022,2020,1,0,0,0,2023,2045,1,0,0,0,2024,2025,10,6, - 0,0,2025,2026,7,32,0,0,2026,2044,3,296,148,7,2027,2028,10,5,0,0, - 2028,2029,7,33,0,0,2029,2044,3,296,148,6,2030,2031,10,4,0,0,2031, - 2032,5,514,0,0,2032,2044,3,296,148,5,2033,2034,10,3,0,0,2034,2035, - 5,515,0,0,2035,2044,3,296,148,4,2036,2037,10,2,0,0,2037,2038,5,513, - 0,0,2038,2044,3,296,148,3,2039,2040,10,1,0,0,2040,2041,3,392,196, - 0,2041,2042,3,296,148,2,2042,2044,1,0,0,0,2043,2024,1,0,0,0,2043, - 2027,1,0,0,0,2043,2030,1,0,0,0,2043,2033,1,0,0,0,2043,2036,1,0,0, - 0,2043,2039,1,0,0,0,2044,2047,1,0,0,0,2045,2043,1,0,0,0,2045,2046, - 1,0,0,0,2046,297,1,0,0,0,2047,2045,1,0,0,0,2048,2068,3,418,209,0, - 2049,2068,3,306,153,0,2050,2051,3,308,154,0,2051,2063,5,519,0,0, - 2052,2054,3,410,205,0,2053,2052,1,0,0,0,2053,2054,1,0,0,0,2054,2055, - 1,0,0,0,2055,2060,3,310,155,0,2056,2057,5,523,0,0,2057,2059,3,310, - 155,0,2058,2056,1,0,0,0,2059,2062,1,0,0,0,2060,2058,1,0,0,0,2060, - 2061,1,0,0,0,2061,2064,1,0,0,0,2062,2060,1,0,0,0,2063,2053,1,0,0, - 0,2063,2064,1,0,0,0,2064,2065,1,0,0,0,2065,2066,5,520,0,0,2066,2068, - 1,0,0,0,2067,2048,1,0,0,0,2067,2049,1,0,0,0,2067,2050,1,0,0,0,2068, - 299,1,0,0,0,2069,2070,6,150,-1,0,2070,2072,5,40,0,0,2071,2073,3, - 354,177,0,2072,2071,1,0,0,0,2073,2074,1,0,0,0,2074,2072,1,0,0,0, - 2074,2075,1,0,0,0,2075,2078,1,0,0,0,2076,2077,5,120,0,0,2077,2079, - 3,286,143,0,2078,2076,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0, - 0,2080,2081,5,122,0,0,2081,2152,1,0,0,0,2082,2083,5,40,0,0,2083, - 2085,3,286,143,0,2084,2086,3,354,177,0,2085,2084,1,0,0,0,2086,2087, - 1,0,0,0,2087,2085,1,0,0,0,2087,2088,1,0,0,0,2088,2091,1,0,0,0,2089, - 2090,5,120,0,0,2090,2092,3,286,143,0,2091,2089,1,0,0,0,2091,2092, - 1,0,0,0,2092,2093,1,0,0,0,2093,2094,5,122,0,0,2094,2152,1,0,0,0, - 2095,2096,5,41,0,0,2096,2097,5,519,0,0,2097,2098,3,286,143,0,2098, - 2099,5,17,0,0,2099,2100,3,62,31,0,2100,2101,5,520,0,0,2101,2152, - 1,0,0,0,2102,2103,5,460,0,0,2103,2104,5,519,0,0,2104,2107,3,286, - 143,0,2105,2106,5,464,0,0,2106,2108,5,479,0,0,2107,2105,1,0,0,0, - 2107,2108,1,0,0,0,2108,2109,1,0,0,0,2109,2110,5,520,0,0,2110,2152, - 1,0,0,0,2111,2112,5,470,0,0,2112,2113,5,519,0,0,2113,2116,3,286, - 143,0,2114,2115,5,464,0,0,2115,2117,5,479,0,0,2116,2114,1,0,0,0, - 2116,2117,1,0,0,0,2117,2118,1,0,0,0,2118,2119,5,520,0,0,2119,2152, - 1,0,0,0,2120,2121,5,283,0,0,2121,2122,5,519,0,0,2122,2123,3,296, - 148,0,2123,2124,5,171,0,0,2124,2125,3,296,148,0,2125,2126,5,520, - 0,0,2126,2152,1,0,0,0,2127,2152,3,400,200,0,2128,2152,5,530,0,0, - 2129,2130,3,372,186,0,2130,2131,5,516,0,0,2131,2132,5,530,0,0,2132, - 2152,1,0,0,0,2133,2134,5,519,0,0,2134,2135,3,164,82,0,2135,2136, - 5,520,0,0,2136,2152,1,0,0,0,2137,2152,3,298,149,0,2138,2152,3,56, - 28,0,2139,2152,3,320,160,0,2140,2141,5,519,0,0,2141,2142,3,286,143, - 0,2142,2143,5,520,0,0,2143,2152,1,0,0,0,2144,2145,5,139,0,0,2145, - 2146,5,519,0,0,2146,2147,3,348,174,0,2147,2148,5,152,0,0,2148,2149, - 3,296,148,0,2149,2150,5,520,0,0,2150,2152,1,0,0,0,2151,2069,1,0, - 0,0,2151,2082,1,0,0,0,2151,2095,1,0,0,0,2151,2102,1,0,0,0,2151,2111, - 1,0,0,0,2151,2120,1,0,0,0,2151,2127,1,0,0,0,2151,2128,1,0,0,0,2151, - 2129,1,0,0,0,2151,2133,1,0,0,0,2151,2137,1,0,0,0,2151,2138,1,0,0, - 0,2151,2139,1,0,0,0,2151,2140,1,0,0,0,2151,2144,1,0,0,0,2152,2160, - 1,0,0,0,2153,2154,10,5,0,0,2154,2155,5,517,0,0,2155,2156,3,296,148, - 0,2156,2157,5,518,0,0,2157,2159,1,0,0,0,2158,2153,1,0,0,0,2159,2162, - 1,0,0,0,2160,2158,1,0,0,0,2160,2161,1,0,0,0,2161,301,1,0,0,0,2162, - 2160,1,0,0,0,2163,2164,3,372,186,0,2164,303,1,0,0,0,2165,2170,3, - 422,211,0,2166,2170,3,418,209,0,2167,2170,3,420,210,0,2168,2170, - 3,372,186,0,2169,2165,1,0,0,0,2169,2166,1,0,0,0,2169,2167,1,0,0, - 0,2169,2168,1,0,0,0,2170,305,1,0,0,0,2171,2172,3,420,210,0,2172, - 2173,5,540,0,0,2173,2176,1,0,0,0,2174,2176,3,326,163,0,2175,2171, - 1,0,0,0,2175,2174,1,0,0,0,2176,307,1,0,0,0,2177,2180,3,422,211,0, - 2178,2180,3,372,186,0,2179,2177,1,0,0,0,2179,2178,1,0,0,0,2180,309, - 1,0,0,0,2181,2190,3,416,208,0,2182,2190,3,414,207,0,2183,2190,3, - 412,206,0,2184,2190,3,286,143,0,2185,2190,3,312,156,0,2186,2190, - 3,314,157,0,2187,2190,3,316,158,0,2188,2190,3,318,159,0,2189,2181, - 1,0,0,0,2189,2182,1,0,0,0,2189,2183,1,0,0,0,2189,2184,1,0,0,0,2189, - 2185,1,0,0,0,2189,2186,1,0,0,0,2189,2187,1,0,0,0,2189,2188,1,0,0, - 0,2190,311,1,0,0,0,2191,2195,3,56,28,0,2192,2193,3,372,186,0,2193, - 2194,3,62,31,0,2194,2196,1,0,0,0,2195,2192,1,0,0,0,2195,2196,1,0, - 0,0,2196,2205,1,0,0,0,2197,2202,3,372,186,0,2198,2202,5,246,0,0, - 2199,2200,5,104,0,0,2200,2202,3,296,148,0,2201,2197,1,0,0,0,2201, - 2198,1,0,0,0,2201,2199,1,0,0,0,2202,2203,1,0,0,0,2203,2204,5,255, - 0,0,2204,2206,5,121,0,0,2205,2201,1,0,0,0,2205,2206,1,0,0,0,2206, - 2215,1,0,0,0,2207,2212,3,372,186,0,2208,2212,5,246,0,0,2209,2210, - 5,104,0,0,2210,2212,3,296,148,0,2211,2207,1,0,0,0,2211,2208,1,0, - 0,0,2211,2209,1,0,0,0,2212,2213,1,0,0,0,2213,2214,5,255,0,0,2214, - 2216,3,372,186,0,2215,2211,1,0,0,0,2215,2216,1,0,0,0,2216,313,1, - 0,0,0,2217,2229,3,56,28,0,2218,2224,5,438,0,0,2219,2221,5,436,0, - 0,2220,2222,3,372,186,0,2221,2220,1,0,0,0,2221,2222,1,0,0,0,2222, - 2224,1,0,0,0,2223,2218,1,0,0,0,2223,2219,1,0,0,0,2224,2226,1,0,0, - 0,2225,2227,5,13,0,0,2226,2225,1,0,0,0,2226,2227,1,0,0,0,2227,2228, - 1,0,0,0,2228,2230,3,372,186,0,2229,2223,1,0,0,0,2229,2230,1,0,0, - 0,2230,2235,1,0,0,0,2231,2232,3,292,146,0,2232,2233,5,255,0,0,2233, - 2234,5,121,0,0,2234,2236,1,0,0,0,2235,2231,1,0,0,0,2235,2236,1,0, - 0,0,2236,2241,1,0,0,0,2237,2238,3,292,146,0,2238,2239,5,255,0,0, - 2239,2240,3,372,186,0,2240,2242,1,0,0,0,2241,2237,1,0,0,0,2241,2242, - 1,0,0,0,2242,315,1,0,0,0,2243,2245,5,469,0,0,2244,2243,1,0,0,0,2244, - 2245,1,0,0,0,2245,2246,1,0,0,0,2246,2248,3,56,28,0,2247,2249,5,416, - 0,0,2248,2247,1,0,0,0,2248,2249,1,0,0,0,2249,2260,1,0,0,0,2250,2261, - 3,296,148,0,2251,2252,5,187,0,0,2252,2256,5,519,0,0,2253,2255,3, - 296,148,0,2254,2253,1,0,0,0,2255,2258,1,0,0,0,2256,2254,1,0,0,0, - 2256,2257,1,0,0,0,2257,2259,1,0,0,0,2258,2256,1,0,0,0,2259,2261, - 5,520,0,0,2260,2250,1,0,0,0,2260,2251,1,0,0,0,2261,2263,1,0,0,0, - 2262,2244,1,0,0,0,2263,2266,1,0,0,0,2264,2262,1,0,0,0,2264,2265, - 1,0,0,0,2265,2273,1,0,0,0,2266,2264,1,0,0,0,2267,2270,5,246,0,0, - 2268,2270,3,372,186,0,2269,2267,1,0,0,0,2269,2268,1,0,0,0,2270,2271, - 1,0,0,0,2271,2272,5,255,0,0,2272,2274,5,246,0,0,2273,2269,1,0,0, - 0,2273,2274,1,0,0,0,2274,317,1,0,0,0,2275,2277,3,296,148,0,2276, - 2275,1,0,0,0,2277,2280,1,0,0,0,2278,2276,1,0,0,0,2278,2279,1,0,0, - 0,2279,2287,1,0,0,0,2280,2278,1,0,0,0,2281,2284,5,246,0,0,2282,2284, - 3,372,186,0,2283,2281,1,0,0,0,2283,2282,1,0,0,0,2284,2285,1,0,0, - 0,2285,2286,5,255,0,0,2286,2288,5,246,0,0,2287,2283,1,0,0,0,2287, - 2288,1,0,0,0,2288,319,1,0,0,0,2289,2290,3,372,186,0,2290,321,1,0, - 0,0,2291,2292,3,348,174,0,2292,323,1,0,0,0,2293,2296,3,348,174,0, - 2294,2296,3,320,160,0,2295,2293,1,0,0,0,2295,2294,1,0,0,0,2296,325, - 1,0,0,0,2297,2300,5,183,0,0,2298,2301,3,328,164,0,2299,2301,3,332, - 166,0,2300,2298,1,0,0,0,2300,2299,1,0,0,0,2300,2301,1,0,0,0,2301, - 327,1,0,0,0,2302,2304,3,330,165,0,2303,2305,3,334,167,0,2304,2303, - 1,0,0,0,2304,2305,1,0,0,0,2305,329,1,0,0,0,2306,2307,3,336,168,0, - 2307,2308,3,414,207,0,2308,2310,1,0,0,0,2309,2306,1,0,0,0,2310,2311, - 1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0,0,2312,331,1,0,0,0,2313, - 2316,3,334,167,0,2314,2317,3,330,165,0,2315,2317,3,334,167,0,2316, - 2314,1,0,0,0,2316,2315,1,0,0,0,2316,2317,1,0,0,0,2317,333,1,0,0, - 0,2318,2319,3,336,168,0,2319,2320,3,414,207,0,2320,2321,5,390,0, - 0,2321,2322,3,414,207,0,2322,335,1,0,0,0,2323,2325,7,34,0,0,2324, - 2323,1,0,0,0,2324,2325,1,0,0,0,2325,2326,1,0,0,0,2326,2329,7,35, - 0,0,2327,2329,5,540,0,0,2328,2324,1,0,0,0,2328,2327,1,0,0,0,2329, - 337,1,0,0,0,2330,2332,5,17,0,0,2331,2330,1,0,0,0,2331,2332,1,0,0, - 0,2332,2333,1,0,0,0,2333,2335,3,348,174,0,2334,2336,3,344,172,0, - 2335,2334,1,0,0,0,2335,2336,1,0,0,0,2336,339,1,0,0,0,2337,2338,3, - 348,174,0,2338,2339,3,342,171,0,2339,341,1,0,0,0,2340,2341,5,223, - 0,0,2341,2343,3,348,174,0,2342,2340,1,0,0,0,2343,2344,1,0,0,0,2344, - 2342,1,0,0,0,2344,2345,1,0,0,0,2345,2348,1,0,0,0,2346,2348,1,0,0, - 0,2347,2342,1,0,0,0,2347,2346,1,0,0,0,2348,343,1,0,0,0,2349,2350, - 5,519,0,0,2350,2351,3,346,173,0,2351,2352,5,520,0,0,2352,345,1,0, - 0,0,2353,2358,3,348,174,0,2354,2355,5,523,0,0,2355,2357,3,348,174, - 0,2356,2354,1,0,0,0,2357,2360,1,0,0,0,2358,2356,1,0,0,0,2358,2359, - 1,0,0,0,2359,347,1,0,0,0,2360,2358,1,0,0,0,2361,2365,3,350,175,0, - 2362,2365,3,352,176,0,2363,2365,3,424,212,0,2364,2361,1,0,0,0,2364, - 2362,1,0,0,0,2364,2363,1,0,0,0,2365,349,1,0,0,0,2366,2367,7,36,0, - 0,2367,351,1,0,0,0,2368,2369,5,540,0,0,2369,353,1,0,0,0,2370,2371, - 5,431,0,0,2371,2372,3,286,143,0,2372,2373,5,378,0,0,2373,2374,3, - 286,143,0,2374,355,1,0,0,0,2375,2376,3,348,174,0,2376,357,1,0,0, - 0,2377,2378,3,348,174,0,2378,359,1,0,0,0,2379,2382,3,348,174,0,2380, - 2381,5,516,0,0,2381,2383,3,348,174,0,2382,2380,1,0,0,0,2382,2383, - 1,0,0,0,2383,361,1,0,0,0,2384,2387,3,348,174,0,2385,2386,5,516,0, - 0,2386,2388,3,348,174,0,2387,2385,1,0,0,0,2387,2388,1,0,0,0,2388, - 363,1,0,0,0,2389,2392,3,348,174,0,2390,2391,5,516,0,0,2391,2393, - 3,348,174,0,2392,2390,1,0,0,0,2392,2393,1,0,0,0,2393,2402,1,0,0, - 0,2394,2395,3,348,174,0,2395,2396,5,516,0,0,2396,2399,3,348,174, - 0,2397,2398,5,516,0,0,2398,2400,3,348,174,0,2399,2397,1,0,0,0,2399, - 2400,1,0,0,0,2400,2402,1,0,0,0,2401,2389,1,0,0,0,2401,2394,1,0,0, - 0,2402,365,1,0,0,0,2403,2406,3,348,174,0,2404,2405,5,516,0,0,2405, - 2407,3,348,174,0,2406,2404,1,0,0,0,2406,2407,1,0,0,0,2407,2416,1, - 0,0,0,2408,2409,3,348,174,0,2409,2410,5,516,0,0,2410,2413,3,348, - 174,0,2411,2412,5,516,0,0,2412,2414,3,348,174,0,2413,2411,1,0,0, - 0,2413,2414,1,0,0,0,2414,2416,1,0,0,0,2415,2403,1,0,0,0,2415,2408, - 1,0,0,0,2416,367,1,0,0,0,2417,2420,3,348,174,0,2418,2419,5,516,0, - 0,2419,2421,3,348,174,0,2420,2418,1,0,0,0,2420,2421,1,0,0,0,2421, - 2430,1,0,0,0,2422,2423,3,348,174,0,2423,2424,5,516,0,0,2424,2427, - 3,348,174,0,2425,2426,5,516,0,0,2426,2428,3,348,174,0,2427,2425, - 1,0,0,0,2427,2428,1,0,0,0,2428,2430,1,0,0,0,2429,2417,1,0,0,0,2429, - 2422,1,0,0,0,2430,369,1,0,0,0,2431,2434,3,348,174,0,2432,2433,5, - 516,0,0,2433,2435,3,348,174,0,2434,2432,1,0,0,0,2434,2435,1,0,0, - 0,2435,2444,1,0,0,0,2436,2437,3,348,174,0,2437,2438,5,516,0,0,2438, - 2441,3,348,174,0,2439,2440,5,516,0,0,2440,2442,3,348,174,0,2441, - 2439,1,0,0,0,2441,2442,1,0,0,0,2442,2444,1,0,0,0,2443,2431,1,0,0, - 0,2443,2436,1,0,0,0,2444,371,1,0,0,0,2445,2450,3,348,174,0,2446, - 2447,5,516,0,0,2447,2449,3,348,174,0,2448,2446,1,0,0,0,2449,2452, - 1,0,0,0,2450,2448,1,0,0,0,2450,2451,1,0,0,0,2451,373,1,0,0,0,2452, - 2450,1,0,0,0,2453,2458,3,348,174,0,2454,2455,5,516,0,0,2455,2457, - 3,348,174,0,2456,2454,1,0,0,0,2457,2460,1,0,0,0,2458,2456,1,0,0, - 0,2458,2459,1,0,0,0,2459,2467,1,0,0,0,2460,2458,1,0,0,0,2461,2462, - 4,187,16,0,2462,2463,3,348,174,0,2463,2464,5,516,0,0,2464,2465,3, - 52,26,0,2465,2467,1,0,0,0,2466,2453,1,0,0,0,2466,2461,1,0,0,0,2467, - 375,1,0,0,0,2468,2469,5,436,0,0,2469,2470,3,382,191,0,2470,377,1, - 0,0,0,2471,2472,5,168,0,0,2472,2473,5,243,0,0,2473,2474,5,133,0, - 0,2474,379,1,0,0,0,2475,2476,5,168,0,0,2476,2477,5,133,0,0,2477, - 381,1,0,0,0,2478,2479,5,519,0,0,2479,2484,3,384,192,0,2480,2481, - 5,523,0,0,2481,2483,3,384,192,0,2482,2480,1,0,0,0,2483,2486,1,0, - 0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485,2487,1,0,0,0,2486,2484, - 1,0,0,0,2487,2488,5,520,0,0,2488,383,1,0,0,0,2489,2494,3,386,193, - 0,2490,2492,5,508,0,0,2491,2490,1,0,0,0,2491,2492,1,0,0,0,2492,2493, - 1,0,0,0,2493,2495,3,388,194,0,2494,2491,1,0,0,0,2494,2495,1,0,0, - 0,2495,385,1,0,0,0,2496,2500,3,348,174,0,2497,2500,3,320,160,0,2498, - 2500,5,540,0,0,2499,2496,1,0,0,0,2499,2497,1,0,0,0,2499,2498,1,0, - 0,0,2500,387,1,0,0,0,2501,2506,5,541,0,0,2502,2506,5,542,0,0,2503, - 2506,3,408,204,0,2504,2506,5,540,0,0,2505,2501,1,0,0,0,2505,2502, - 1,0,0,0,2505,2503,1,0,0,0,2505,2504,1,0,0,0,2506,389,1,0,0,0,2507, - 2514,5,10,0,0,2508,2509,5,514,0,0,2509,2514,5,514,0,0,2510,2514, - 5,259,0,0,2511,2512,5,513,0,0,2512,2514,5,513,0,0,2513,2507,1,0, - 0,0,2513,2508,1,0,0,0,2513,2510,1,0,0,0,2513,2511,1,0,0,0,2514,391, - 1,0,0,0,2515,2530,5,508,0,0,2516,2530,5,509,0,0,2517,2530,5,510, - 0,0,2518,2519,5,510,0,0,2519,2530,5,508,0,0,2520,2521,5,509,0,0, - 2521,2530,5,508,0,0,2522,2523,5,510,0,0,2523,2530,5,509,0,0,2524, - 2525,5,511,0,0,2525,2530,5,508,0,0,2526,2527,5,510,0,0,2527,2528, - 5,508,0,0,2528,2530,5,509,0,0,2529,2515,1,0,0,0,2529,2516,1,0,0, - 0,2529,2517,1,0,0,0,2529,2518,1,0,0,0,2529,2520,1,0,0,0,2529,2522, - 1,0,0,0,2529,2524,1,0,0,0,2529,2526,1,0,0,0,2530,393,1,0,0,0,2531, - 2532,5,510,0,0,2532,2539,5,510,0,0,2533,2534,5,509,0,0,2534,2539, - 5,509,0,0,2535,2539,5,514,0,0,2536,2539,5,515,0,0,2537,2539,5,513, - 0,0,2538,2531,1,0,0,0,2538,2533,1,0,0,0,2538,2535,1,0,0,0,2538,2536, - 1,0,0,0,2538,2537,1,0,0,0,2539,395,1,0,0,0,2540,2541,7,37,0,0,2541, - 397,1,0,0,0,2542,2543,7,38,0,0,2543,399,1,0,0,0,2544,2559,3,326, - 163,0,2545,2559,3,402,201,0,2546,2559,3,404,202,0,2547,2549,5,532, - 0,0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549,2550,1,0,0,0,2550,2559, - 3,406,203,0,2551,2559,3,408,204,0,2552,2559,5,542,0,0,2553,2559, - 5,543,0,0,2554,2556,5,243,0,0,2555,2554,1,0,0,0,2555,2556,1,0,0, - 0,2556,2557,1,0,0,0,2557,2559,5,246,0,0,2558,2544,1,0,0,0,2558,2545, - 1,0,0,0,2558,2546,1,0,0,0,2558,2548,1,0,0,0,2558,2551,1,0,0,0,2558, - 2552,1,0,0,0,2558,2553,1,0,0,0,2558,2555,1,0,0,0,2559,401,1,0,0, - 0,2560,2561,3,412,206,0,2561,2562,3,404,202,0,2562,403,1,0,0,0,2563, - 2564,5,540,0,0,2564,405,1,0,0,0,2565,2566,5,541,0,0,2566,407,1,0, - 0,0,2567,2568,7,39,0,0,2568,409,1,0,0,0,2569,2570,7,40,0,0,2570, - 411,1,0,0,0,2571,2572,7,41,0,0,2572,413,1,0,0,0,2573,2574,7,42,0, - 0,2574,415,1,0,0,0,2575,2576,7,43,0,0,2576,417,1,0,0,0,2577,2578, - 7,44,0,0,2578,419,1,0,0,0,2579,2580,7,45,0,0,2580,421,1,0,0,0,2581, - 2582,7,46,0,0,2582,423,1,0,0,0,2583,2584,7,47,0,0,2584,425,1,0,0, - 0,314,429,436,439,453,471,475,484,489,496,507,516,528,531,538,541, - 549,553,558,561,568,576,580,592,600,604,636,639,644,648,652,656, - 665,670,674,678,683,686,690,695,701,706,711,715,719,726,733,741, - 749,753,757,761,765,769,773,777,781,783,793,801,825,839,844,848, - 854,857,860,867,870,879,891,915,927,932,936,944,948,954,964,969, - 975,979,983,987,996,1000,1007,1010,1020,1028,1036,1040,1055,1074, - 1085,1089,1096,1101,1107,1111,1118,1122,1126,1130,1138,1142,1147, - 1153,1159,1162,1166,1177,1186,1193,1204,1216,1231,1234,1238,1241, - 1243,1248,1252,1255,1259,1268,1277,1287,1292,1303,1306,1309,1312, - 1315,1321,1325,1334,1341,1344,1348,1353,1356,1360,1369,1376,1379, - 1383,1386,1388,1395,1400,1416,1427,1432,1440,1443,1446,1451,1453, - 1455,1460,1463,1467,1471,1475,1484,1495,1522,1544,1558,1560,1564, - 1569,1578,1591,1603,1615,1621,1648,1656,1660,1663,1666,1673,1676, - 1679,1682,1685,1688,1693,1696,1705,1710,1713,1717,1722,1728,1733, - 1737,1756,1764,1772,1776,1780,1790,1816,1824,1842,1855,1863,1880, - 1882,1893,1896,1898,1902,1906,1913,1922,1928,1941,1948,1953,1959, - 1966,1973,1975,1985,1988,2000,2005,2008,2014,2016,2022,2043,2045, - 2053,2060,2063,2067,2074,2078,2087,2091,2107,2116,2151,2160,2169, - 2175,2179,2189,2195,2201,2205,2211,2215,2221,2223,2226,2229,2235, - 2241,2244,2248,2256,2260,2264,2269,2273,2278,2283,2287,2295,2300, - 2304,2311,2316,2324,2328,2331,2335,2344,2347,2358,2364,2382,2387, - 2392,2399,2401,2406,2413,2415,2420,2427,2429,2434,2441,2443,2450, - 2458,2466,2484,2491,2494,2499,2505,2513,2529,2538,2548,2555,2558 + 7,197,2,198,7,198,1,0,5,0,400,8,0,10,0,12,0,403,9,0,1,0,1,0,1,1, + 1,1,3,1,409,8,1,1,1,3,1,412,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,426,8,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,3,3,442,8,3,1,4,1,4,3,4,446,8,4,1,5,1,5,1,5, + 1,6,1,6,1,6,1,6,3,6,455,8,6,1,6,1,6,1,6,3,6,460,8,6,1,7,1,7,1,7, + 5,7,465,8,7,10,7,12,7,468,9,7,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3, + 9,478,8,9,1,10,1,10,1,10,1,10,1,10,5,10,485,8,10,10,10,12,10,488, + 9,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,499,8,11, + 1,11,3,11,502,8,11,1,11,1,11,1,11,1,11,1,11,3,11,509,8,11,1,11,3, + 11,512,8,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,520,8,11,1,11,1,11, + 3,11,524,8,11,1,11,1,11,1,11,3,11,529,8,11,1,11,3,11,532,8,11,1, + 12,1,12,1,12,1,12,1,12,3,12,539,8,12,1,13,1,13,1,13,1,13,1,14,1, + 14,3,14,547,8,14,1,15,1,15,3,15,551,8,15,1,16,1,16,1,16,1,16,1,17, + 1,17,1,17,1,17,1,17,1,17,3,17,563,8,17,1,17,1,17,1,17,1,17,1,17, + 1,17,3,17,571,8,17,1,17,1,17,3,17,575,8,17,1,17,1,17,1,17,1,17,1, + 17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1, + 17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,3, + 17,607,8,17,1,18,3,18,610,8,18,1,18,4,18,613,8,18,11,18,12,18,614, + 1,19,1,19,3,19,619,8,19,1,20,1,20,3,20,623,8,20,1,20,1,20,3,20,627, + 8,20,1,20,1,20,1,20,1,20,1,20,5,20,634,8,20,10,20,12,20,637,9,20, + 1,20,1,20,3,20,641,8,20,1,20,1,20,3,20,645,8,20,1,20,1,20,3,20,649, + 8,20,1,20,1,20,1,20,3,20,654,8,20,1,20,1,20,1,20,1,20,1,20,1,20, + 5,20,662,8,20,10,20,12,20,665,9,20,1,20,1,20,3,20,669,8,20,1,20, + 1,20,3,20,673,8,20,1,21,1,21,1,21,3,21,678,8,21,1,21,1,21,1,21,1, + 21,3,21,684,8,21,1,22,1,22,1,22,3,22,689,8,22,1,23,1,23,1,23,3,23, + 694,8,23,1,23,1,23,3,23,698,8,23,1,24,1,24,3,24,702,8,24,1,25,1, + 25,1,26,1,26,1,26,3,26,709,8,26,1,27,1,27,1,28,1,28,1,28,3,28,716, + 8,28,1,29,1,29,1,29,1,29,5,29,722,8,29,10,29,12,29,725,9,29,1,29, + 1,29,1,30,1,30,1,30,3,30,732,8,30,1,30,1,30,3,30,736,8,30,1,30,1, + 30,3,30,740,8,30,1,30,1,30,3,30,744,8,30,1,30,1,30,3,30,748,8,30, + 1,30,1,30,3,30,752,8,30,1,30,1,30,3,30,756,8,30,1,30,1,30,3,30,760, + 8,30,1,30,1,30,3,30,764,8,30,3,30,766,8,30,1,31,1,31,1,31,1,31,1, + 32,1,32,1,32,1,32,3,32,776,8,32,1,32,1,32,1,33,1,33,1,33,1,33,3, + 33,784,8,33,1,33,1,33,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,5,36,806,8,36,10, + 36,12,36,809,9,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,5, + 36,820,8,36,10,36,12,36,823,9,36,1,36,1,36,3,36,827,8,36,1,37,1, + 37,3,37,831,8,37,1,37,1,37,1,37,1,37,3,37,837,8,37,1,37,3,37,840, + 8,37,1,37,3,37,843,8,37,1,38,1,38,1,38,1,38,1,38,3,38,850,8,38,1, + 38,3,38,853,8,38,1,39,1,39,1,39,1,39,1,39,3,39,860,8,39,1,40,1,40, + 1,40,1,40,1,40,1,40,1,41,1,41,3,41,870,8,41,1,41,1,41,1,41,1,41, + 1,41,1,41,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44, + 5,44,889,8,44,10,44,12,44,892,9,44,1,44,1,44,3,44,896,8,44,1,45, + 1,45,3,45,900,8,45,1,46,1,46,1,46,1,46,5,46,906,8,46,10,46,12,46, + 909,9,46,1,46,3,46,912,8,46,1,47,1,47,1,47,1,47,3,47,918,8,47,1, + 48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,3,49,928,8,49,1,49,1,49,1, + 49,3,49,933,8,49,1,49,1,49,1,50,1,50,3,50,939,8,50,1,50,1,50,3,50, + 943,8,50,1,50,1,50,3,50,947,8,50,1,50,1,50,3,50,951,8,50,1,50,1, + 50,1,50,1,51,1,51,1,51,1,51,3,51,960,8,51,1,51,1,51,3,51,964,8,51, + 1,51,1,51,1,51,1,51,1,51,3,51,971,8,51,1,51,3,51,974,8,51,1,52,1, + 52,1,52,1,52,1,52,1,52,5,52,982,8,52,10,52,12,52,985,9,52,1,53,1, + 53,1,53,3,53,990,8,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,998,8,53, + 1,54,1,54,3,54,1002,8,54,1,54,1,54,1,54,1,55,1,55,1,55,1,56,1,56, + 1,56,1,56,1,56,1,56,1,56,1,56,3,56,1018,8,56,1,57,1,57,1,57,1,57, + 1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1034,8,59, + 1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,3,61,1045,8,61,1,61, + 1,61,3,61,1049,8,61,1,61,1,61,1,61,1,61,1,61,3,61,1056,8,61,1,62, + 1,62,1,62,3,62,1061,8,62,1,62,1,62,1,63,1,63,3,63,1067,8,63,1,63, + 1,63,3,63,1071,8,63,1,63,1,63,1,64,1,64,1,64,3,64,1078,8,64,1,64, + 1,64,3,64,1082,8,64,1,65,1,65,3,65,1086,8,65,1,65,1,65,3,65,1090, + 8,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,1098,8,66,1,66,1,66,3,66, + 1102,8,66,1,66,1,66,1,67,3,67,1107,8,67,1,67,1,67,1,67,1,67,3,67, + 1113,8,67,1,68,1,68,1,68,1,68,1,68,3,68,1120,8,68,1,68,3,68,1123, + 8,68,1,68,1,68,3,68,1127,8,68,1,69,1,69,1,69,1,69,5,69,1133,8,69, + 10,69,12,69,1136,9,69,1,70,1,70,1,70,1,70,5,70,1142,8,70,10,70,12, + 70,1145,9,70,1,70,1,70,1,71,1,71,3,71,1151,8,71,1,72,1,72,1,72,1, + 72,1,72,1,72,1,72,4,72,1160,8,72,11,72,12,72,1161,1,72,1,72,1,73, + 1,73,1,73,1,73,1,73,1,73,4,73,1172,8,73,11,73,12,73,1173,1,73,1, + 73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1189, + 8,74,1,74,3,74,1192,8,74,1,74,1,74,3,74,1196,8,74,1,74,3,74,1199, + 8,74,3,74,1201,8,74,1,74,1,74,1,74,3,74,1206,8,74,1,74,1,74,3,74, + 1210,8,74,1,74,3,74,1213,8,74,5,74,1215,8,74,10,74,12,74,1218,9, + 74,1,75,1,75,1,75,1,75,5,75,1224,8,75,10,75,12,75,1227,9,75,1,76, + 1,76,1,76,1,76,5,76,1233,8,76,10,76,12,76,1236,9,76,1,77,1,77,1, + 77,1,77,1,77,5,77,1243,8,77,10,77,12,77,1246,9,77,1,77,1,77,3,77, + 1250,8,77,1,77,1,77,1,77,1,77,1,77,1,78,1,78,3,78,1259,8,78,1,78, + 3,78,1262,8,78,1,78,3,78,1265,8,78,1,78,3,78,1268,8,78,1,78,3,78, + 1271,8,78,1,78,1,78,1,78,1,78,3,78,1277,8,78,1,79,1,79,3,79,1281, + 8,79,1,79,1,79,1,80,1,80,1,80,5,80,1288,8,80,10,80,12,80,1291,9, + 80,1,81,1,81,1,81,1,81,3,81,1297,8,81,1,81,3,81,1300,8,81,1,81,1, + 81,3,81,1304,8,81,1,81,1,81,1,81,3,81,1309,8,81,1,81,3,81,1312,8, + 81,1,81,1,81,3,81,1316,8,81,1,82,1,82,1,83,1,83,1,84,1,84,1,85,3, + 85,1325,8,85,1,85,1,85,1,86,1,86,1,86,3,86,1332,8,86,1,86,3,86,1335, + 8,86,1,86,1,86,3,86,1339,8,86,1,86,3,86,1342,8,86,3,86,1344,8,86, + 1,87,1,87,1,87,5,87,1349,8,87,10,87,12,87,1352,9,87,1,87,1,87,3, + 87,1356,8,87,1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1, + 88,1,88,1,88,1,88,3,88,1372,8,88,1,89,1,89,1,89,1,90,1,90,1,90,1, + 90,5,90,1381,8,90,10,90,12,90,1384,9,90,1,90,1,90,3,90,1388,8,90, + 1,90,1,90,1,90,1,90,1,90,1,90,3,90,1396,8,90,1,90,3,90,1399,8,90, + 1,90,3,90,1402,8,90,1,90,1,90,1,90,3,90,1407,8,90,5,90,1409,8,90, + 10,90,12,90,1412,9,90,1,91,1,91,3,91,1416,8,91,1,92,3,92,1419,8, + 92,1,92,1,92,3,92,1423,8,92,1,92,1,92,3,92,1427,8,92,1,92,1,92,3, + 92,1431,8,92,1,93,1,93,1,93,1,93,1,93,1,93,1,94,3,94,1440,8,94,1, + 94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,3,94,1451,8,94,1,95,1, + 95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1, + 97,1,97,1,98,1,98,1,98,1,98,1,98,5,98,1474,8,98,10,98,12,98,1477, + 9,98,1,98,1,98,1,99,1,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,3,100,1498,8,100, + 1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103,1,103, + 1,103,3,103,1512,8,103,3,103,1514,8,103,1,103,1,103,3,103,1518,8, + 103,1,104,1,104,1,104,3,104,1523,8,104,1,105,1,105,1,105,1,105,1, + 105,5,105,1530,8,105,10,105,12,105,1533,9,105,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,5,106,1543,8,106,10,106,12,106,1546, + 9,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,5,106,1555,8,106, + 10,106,12,106,1558,9,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,5,106,1568,8,106,10,106,12,106,1571,9,106,1,106,1,106,1,106, + 3,106,1576,8,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108, + 1,108,1,109,1,109,1,109,1,110,1,110,1,110,1,110,5,110,1594,8,110, + 10,110,12,110,1597,9,110,1,111,1,111,1,111,1,111,1,112,3,112,1604, + 8,112,1,112,1,112,3,112,1608,8,112,1,112,3,112,1611,8,112,1,112, + 3,112,1614,8,112,1,112,1,112,1,113,1,113,1,113,3,113,1621,8,113, + 1,113,3,113,1624,8,113,1,113,3,113,1627,8,113,1,113,3,113,1630,8, + 113,1,113,3,113,1633,8,113,1,113,3,113,1636,8,113,1,113,1,113,1, + 113,3,113,1641,8,113,1,113,3,113,1644,8,113,1,114,1,114,1,114,1, + 114,1,114,5,114,1651,8,114,10,114,12,114,1654,9,114,1,115,1,115, + 3,115,1658,8,115,1,115,3,115,1661,8,115,1,115,1,115,3,115,1665,8, + 115,1,116,1,116,1,116,3,116,1670,8,116,1,117,1,117,1,117,1,117,3, + 117,1676,8,117,1,117,1,117,1,117,3,117,1681,8,117,5,117,1683,8,117, + 10,117,12,117,1686,9,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,1704, + 8,118,1,119,1,119,1,119,1,119,5,119,1710,8,119,10,119,12,119,1713, + 9,119,1,120,1,120,1,120,4,120,1718,8,120,11,120,12,120,1719,1,120, + 1,120,3,120,1724,8,120,1,121,1,121,3,121,1728,8,121,1,122,1,122, + 1,122,1,122,1,122,1,122,1,122,1,122,3,122,1738,8,122,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, + 3,123,1764,8,123,1,124,1,124,1,124,1,124,5,124,1770,8,124,10,124, + 12,124,1773,9,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,1790,8,125,1,126, + 1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127,3,127, + 1803,8,127,1,128,1,128,1,128,1,128,1,128,1,128,3,128,1811,8,128, + 1,129,1,129,1,129,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,3,131,1828,8,131,3,131,1830,8,131,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1841,8,131, + 1,131,5,131,1844,8,131,10,131,12,131,1847,9,131,1,132,3,132,1850, + 8,132,1,132,1,132,3,132,1854,8,132,1,132,1,132,1,132,1,132,1,132, + 3,132,1861,8,132,1,132,1,132,1,132,1,132,1,132,5,132,1868,8,132, + 10,132,12,132,1871,9,132,1,132,1,132,1,132,3,132,1876,8,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132, + 1889,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1896,8,132,1,132, + 1,132,1,132,3,132,1901,8,132,1,132,1,132,1,132,1,132,3,132,1907, + 8,132,1,132,1,132,1,132,1,132,1,132,3,132,1914,8,132,1,132,1,132, + 1,132,1,132,1,132,3,132,1921,8,132,3,132,1923,8,132,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,3,133,1933,8,133,1,134,3,134, + 1936,8,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134, + 1946,8,134,10,134,12,134,1949,9,134,1,134,1,134,3,134,1953,8,134, + 1,134,3,134,1956,8,134,1,134,1,134,1,134,1,134,3,134,1962,8,134, + 3,134,1964,8,134,1,135,1,135,1,135,1,135,3,135,1970,8,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,5,135,1991,8,135,10,135, + 12,135,1994,9,135,1,136,1,136,1,136,1,136,1,136,3,136,2001,8,136, + 1,136,1,136,1,136,5,136,2006,8,136,10,136,12,136,2009,9,136,3,136, + 2011,8,136,1,136,1,136,3,136,2015,8,136,1,137,1,137,1,137,4,137, + 2020,8,137,11,137,12,137,2021,1,137,1,137,3,137,2026,8,137,1,137, + 1,137,1,137,1,137,1,137,4,137,2033,8,137,11,137,12,137,2034,1,137, + 1,137,3,137,2039,8,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,2055,8,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,3,137,2064,8,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,2099, + 8,137,1,137,1,137,1,137,1,137,1,137,5,137,2106,8,137,10,137,12,137, + 2109,9,137,1,138,1,138,1,139,1,139,1,139,1,139,3,139,2117,8,139, + 1,140,1,140,1,140,1,140,3,140,2123,8,140,1,141,1,141,3,141,2127, + 8,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,2137, + 8,142,1,143,1,143,1,143,1,143,3,143,2143,8,143,1,143,1,143,1,143, + 1,143,3,143,2149,8,143,1,143,1,143,3,143,2153,8,143,1,143,1,143, + 1,143,1,143,3,143,2159,8,143,1,143,1,143,3,143,2163,8,143,1,144, + 1,144,1,144,1,144,3,144,2169,8,144,3,144,2171,8,144,1,144,3,144, + 2174,8,144,1,144,3,144,2177,8,144,1,144,1,144,1,144,1,144,3,144, + 2183,8,144,1,144,1,144,1,144,1,144,3,144,2189,8,144,1,145,3,145, + 2192,8,145,1,145,1,145,3,145,2196,8,145,1,145,1,145,1,145,1,145, + 5,145,2202,8,145,10,145,12,145,2205,9,145,1,145,3,145,2208,8,145, + 5,145,2210,8,145,10,145,12,145,2213,9,145,1,145,1,145,3,145,2217, + 8,145,1,145,1,145,3,145,2221,8,145,1,146,5,146,2224,8,146,10,146, + 12,146,2227,9,146,1,146,1,146,3,146,2231,8,146,1,146,1,146,3,146, + 2235,8,146,1,147,1,147,1,148,1,148,3,148,2241,8,148,1,149,1,149, + 1,149,3,149,2246,8,149,1,150,1,150,3,150,2250,8,150,1,151,1,151, + 1,151,4,151,2255,8,151,11,151,12,151,2256,1,152,1,152,1,152,3,152, + 2262,8,152,1,153,1,153,1,153,1,153,1,153,1,154,3,154,2270,8,154, + 1,154,1,154,3,154,2274,8,154,1,155,3,155,2277,8,155,1,155,1,155, + 3,155,2281,8,155,1,156,1,156,1,156,1,157,1,157,4,157,2288,8,157, + 11,157,12,157,2289,1,157,3,157,2293,8,157,1,158,1,158,1,158,1,158, + 1,159,1,159,1,159,5,159,2302,8,159,10,159,12,159,2305,9,159,1,160, + 1,160,1,160,3,160,2310,8,160,1,161,1,161,1,162,1,162,1,163,1,163, + 1,163,1,163,1,163,1,164,1,164,1,165,1,165,1,166,1,166,1,166,3,166, + 2328,8,166,1,167,1,167,1,167,3,167,2333,8,167,1,168,1,168,1,168, + 3,168,2338,8,168,1,168,1,168,1,168,1,168,1,168,3,168,2345,8,168, + 3,168,2347,8,168,1,169,1,169,1,169,3,169,2352,8,169,1,169,1,169, + 1,169,1,169,1,169,3,169,2359,8,169,3,169,2361,8,169,1,170,1,170, + 1,170,3,170,2366,8,170,1,170,1,170,1,170,1,170,1,170,3,170,2373, + 8,170,3,170,2375,8,170,1,171,1,171,1,171,3,171,2380,8,171,1,171, + 1,171,1,171,1,171,1,171,3,171,2387,8,171,3,171,2389,8,171,1,172, + 1,172,1,172,5,172,2394,8,172,10,172,12,172,2397,9,172,1,173,1,173, + 1,173,5,173,2402,8,173,10,173,12,173,2405,9,173,1,173,1,173,1,173, + 1,173,1,173,3,173,2412,8,173,1,174,1,174,1,174,1,175,1,175,1,175, + 1,175,1,176,1,176,1,176,1,177,1,177,1,177,1,177,5,177,2428,8,177, + 10,177,12,177,2431,9,177,1,177,1,177,1,178,1,178,3,178,2437,8,178, + 1,178,3,178,2440,8,178,1,179,1,179,1,179,3,179,2445,8,179,1,180, + 1,180,1,180,1,180,3,180,2451,8,180,1,181,1,181,1,181,1,181,1,181, + 1,181,3,181,2459,8,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,3,182,2475,8,182,1,183, + 1,183,1,183,1,183,1,183,1,183,1,183,3,183,2484,8,183,1,184,1,184, + 1,185,1,185,1,186,1,186,1,186,1,186,3,186,2494,8,186,1,186,1,186, + 1,186,1,186,1,186,3,186,2501,8,186,1,186,3,186,2504,8,186,1,187, + 1,187,1,187,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191,1,192, + 1,192,1,193,1,193,1,194,1,194,1,195,1,195,1,196,1,196,1,197,1,197, + 1,198,1,198,1,198,0,5,148,180,262,270,274,199,0,2,4,6,8,10,12,14, + 16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58, + 60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100, + 102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132, + 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, + 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, + 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, + 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, + 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, + 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, + 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, + 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, + 390,392,394,396,0,48,2,0,109,109,453,453,3,0,45,45,128,128,190,190, + 4,0,42,42,90,90,425,425,467,467,2,0,444,444,450,450,2,0,152,152, + 171,171,2,0,440,440,492,492,2,0,485,488,490,490,3,0,32,32,91,91, + 246,246,11,0,28,29,35,35,46,46,92,92,179,180,346,346,362,362,380, + 380,383,383,389,389,419,420,2,0,436,436,438,438,4,0,101,102,115, + 115,144,144,248,248,2,0,13,13,233,233,2,0,458,458,465,465,3,0,5, + 5,272,272,447,447,3,0,268,268,458,458,465,465,3,0,428,428,461,461, + 480,480,3,0,332,332,468,468,484,484,2,0,443,443,493,493,2,0,184, + 184,267,267,3,0,130,130,181,181,405,405,4,0,153,153,175,175,203, + 203,319,319,3,0,448,448,462,462,502,502,4,0,252,252,449,449,497, + 499,501,501,2,0,74,74,322,322,3,0,462,462,495,495,502,502,2,0,442, + 442,453,453,2,0,460,460,470,470,2,0,294,294,324,324,4,0,140,140, + 246,246,399,399,407,407,2,0,19,19,371,371,2,0,5,5,11,11,2,0,512, + 512,532,533,4,0,455,455,530,530,534,534,537,537,2,0,532,533,535, + 535,1,0,532,533,1,0,541,542,2,0,541,541,544,544,4,0,455,455,530, + 530,532,534,536,537,3,0,243,243,511,512,532,533,2,0,140,140,399, + 399,2,0,5,5,113,113,10,0,97,97,166,166,224,224,231,231,336,336,439, + 439,473,473,475,475,491,491,505,505,15,0,97,97,166,166,224,224,231, + 231,336,336,430,430,439,439,445,445,451,452,457,457,463,463,473, + 478,491,491,494,494,505,506,11,0,5,5,13,13,33,33,78,78,84,85,113, + 113,202,202,209,210,391,391,416,416,530,530,3,0,78,78,84,85,209, + 210,2,0,91,91,380,381,53,0,4,4,13,13,23,23,38,38,41,41,43,44,54, + 54,56,56,69,69,75,75,98,99,107,107,119,119,134,134,139,139,143,143, + 145,145,161,161,166,166,168,168,188,189,191,196,199,199,201,201, + 203,203,207,207,211,211,216,216,222,222,224,225,231,231,245,245, + 247,247,266,266,278,278,283,283,285,285,295,295,319,319,323,325, + 336,336,359,360,366,366,369,369,382,382,397,397,400,401,411,411, + 422,423,439,439,472,472,491,491,505,505,1,0,440,507,2790,0,401,1, + 0,0,0,2,411,1,0,0,0,4,425,1,0,0,0,6,441,1,0,0,0,8,445,1,0,0,0,10, + 447,1,0,0,0,12,450,1,0,0,0,14,461,1,0,0,0,16,469,1,0,0,0,18,477, + 1,0,0,0,20,479,1,0,0,0,22,531,1,0,0,0,24,533,1,0,0,0,26,540,1,0, + 0,0,28,544,1,0,0,0,30,548,1,0,0,0,32,552,1,0,0,0,34,606,1,0,0,0, + 36,612,1,0,0,0,38,618,1,0,0,0,40,620,1,0,0,0,42,674,1,0,0,0,44,688, + 1,0,0,0,46,690,1,0,0,0,48,701,1,0,0,0,50,703,1,0,0,0,52,708,1,0, + 0,0,54,710,1,0,0,0,56,715,1,0,0,0,58,717,1,0,0,0,60,765,1,0,0,0, + 62,767,1,0,0,0,64,771,1,0,0,0,66,779,1,0,0,0,68,787,1,0,0,0,70,791, + 1,0,0,0,72,826,1,0,0,0,74,842,1,0,0,0,76,844,1,0,0,0,78,854,1,0, + 0,0,80,861,1,0,0,0,82,869,1,0,0,0,84,877,1,0,0,0,86,879,1,0,0,0, + 88,895,1,0,0,0,90,899,1,0,0,0,92,901,1,0,0,0,94,917,1,0,0,0,96,919, + 1,0,0,0,98,924,1,0,0,0,100,936,1,0,0,0,102,955,1,0,0,0,104,975,1, + 0,0,0,106,986,1,0,0,0,108,999,1,0,0,0,110,1006,1,0,0,0,112,1009, + 1,0,0,0,114,1019,1,0,0,0,116,1023,1,0,0,0,118,1027,1,0,0,0,120,1035, + 1,0,0,0,122,1040,1,0,0,0,124,1057,1,0,0,0,126,1064,1,0,0,0,128,1074, + 1,0,0,0,130,1083,1,0,0,0,132,1093,1,0,0,0,134,1112,1,0,0,0,136,1114, + 1,0,0,0,138,1128,1,0,0,0,140,1137,1,0,0,0,142,1150,1,0,0,0,144,1152, + 1,0,0,0,146,1165,1,0,0,0,148,1200,1,0,0,0,150,1219,1,0,0,0,152,1228, + 1,0,0,0,154,1237,1,0,0,0,156,1276,1,0,0,0,158,1278,1,0,0,0,160,1284, + 1,0,0,0,162,1315,1,0,0,0,164,1317,1,0,0,0,166,1319,1,0,0,0,168,1321, + 1,0,0,0,170,1324,1,0,0,0,172,1343,1,0,0,0,174,1355,1,0,0,0,176,1371, + 1,0,0,0,178,1373,1,0,0,0,180,1387,1,0,0,0,182,1413,1,0,0,0,184,1430, + 1,0,0,0,186,1432,1,0,0,0,188,1450,1,0,0,0,190,1452,1,0,0,0,192,1458, + 1,0,0,0,194,1463,1,0,0,0,196,1468,1,0,0,0,198,1480,1,0,0,0,200,1497, + 1,0,0,0,202,1499,1,0,0,0,204,1501,1,0,0,0,206,1517,1,0,0,0,208,1519, + 1,0,0,0,210,1524,1,0,0,0,212,1575,1,0,0,0,214,1577,1,0,0,0,216,1584, + 1,0,0,0,218,1586,1,0,0,0,220,1589,1,0,0,0,222,1598,1,0,0,0,224,1603, + 1,0,0,0,226,1617,1,0,0,0,228,1645,1,0,0,0,230,1657,1,0,0,0,232,1666, + 1,0,0,0,234,1671,1,0,0,0,236,1703,1,0,0,0,238,1705,1,0,0,0,240,1714, + 1,0,0,0,242,1725,1,0,0,0,244,1737,1,0,0,0,246,1763,1,0,0,0,248,1765, + 1,0,0,0,250,1789,1,0,0,0,252,1791,1,0,0,0,254,1802,1,0,0,0,256,1810, + 1,0,0,0,258,1812,1,0,0,0,260,1815,1,0,0,0,262,1829,1,0,0,0,264,1922, + 1,0,0,0,266,1932,1,0,0,0,268,1963,1,0,0,0,270,1969,1,0,0,0,272,2014, + 1,0,0,0,274,2098,1,0,0,0,276,2110,1,0,0,0,278,2116,1,0,0,0,280,2122, + 1,0,0,0,282,2126,1,0,0,0,284,2136,1,0,0,0,286,2138,1,0,0,0,288,2164, + 1,0,0,0,290,2211,1,0,0,0,292,2225,1,0,0,0,294,2236,1,0,0,0,296,2240, + 1,0,0,0,298,2242,1,0,0,0,300,2247,1,0,0,0,302,2254,1,0,0,0,304,2258, + 1,0,0,0,306,2263,1,0,0,0,308,2273,1,0,0,0,310,2276,1,0,0,0,312,2282, + 1,0,0,0,314,2292,1,0,0,0,316,2294,1,0,0,0,318,2298,1,0,0,0,320,2309, + 1,0,0,0,322,2311,1,0,0,0,324,2313,1,0,0,0,326,2315,1,0,0,0,328,2320, + 1,0,0,0,330,2322,1,0,0,0,332,2324,1,0,0,0,334,2329,1,0,0,0,336,2346, + 1,0,0,0,338,2360,1,0,0,0,340,2374,1,0,0,0,342,2388,1,0,0,0,344,2390, + 1,0,0,0,346,2411,1,0,0,0,348,2413,1,0,0,0,350,2416,1,0,0,0,352,2420, + 1,0,0,0,354,2423,1,0,0,0,356,2434,1,0,0,0,358,2444,1,0,0,0,360,2450, + 1,0,0,0,362,2458,1,0,0,0,364,2474,1,0,0,0,366,2483,1,0,0,0,368,2485, + 1,0,0,0,370,2487,1,0,0,0,372,2503,1,0,0,0,374,2505,1,0,0,0,376,2508, + 1,0,0,0,378,2510,1,0,0,0,380,2512,1,0,0,0,382,2514,1,0,0,0,384,2516, + 1,0,0,0,386,2518,1,0,0,0,388,2520,1,0,0,0,390,2522,1,0,0,0,392,2524, + 1,0,0,0,394,2526,1,0,0,0,396,2528,1,0,0,0,398,400,3,2,1,0,399,398, + 1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402,1,0,0,0,402,404, + 1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1,0,0,0,406,408,3, + 4,2,0,407,409,5,524,0,0,408,407,1,0,0,0,408,409,1,0,0,0,409,412, + 1,0,0,0,410,412,5,524,0,0,411,406,1,0,0,0,411,410,1,0,0,0,412,3, + 1,0,0,0,413,426,3,6,3,0,414,426,3,8,4,0,415,426,3,10,5,0,416,426, + 3,12,6,0,417,426,3,18,9,0,418,426,3,22,11,0,419,426,3,24,12,0,420, + 426,3,26,13,0,421,426,3,28,14,0,422,426,3,30,15,0,423,426,3,32,16, + 0,424,426,3,34,17,0,425,413,1,0,0,0,425,414,1,0,0,0,425,415,1,0, + 0,0,425,416,1,0,0,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,5,1,0,0,0,427,442,3,38,19,0,428,442,3,98, + 49,0,429,442,3,100,50,0,430,442,3,102,51,0,431,442,3,96,48,0,432, + 442,3,106,53,0,433,442,3,118,59,0,434,442,3,120,60,0,435,442,3,122, + 61,0,436,442,3,124,62,0,437,442,3,126,63,0,438,442,3,128,64,0,439, + 442,3,130,65,0,440,442,3,132,66,0,441,427,1,0,0,0,441,428,1,0,0, + 0,441,429,1,0,0,0,441,430,1,0,0,0,441,431,1,0,0,0,441,432,1,0,0, + 0,441,433,1,0,0,0,441,434,1,0,0,0,441,435,1,0,0,0,441,436,1,0,0, + 0,441,437,1,0,0,0,441,438,1,0,0,0,441,439,1,0,0,0,441,440,1,0,0, + 0,442,7,1,0,0,0,443,446,3,148,74,0,444,446,3,134,67,0,445,443,1, + 0,0,0,445,444,1,0,0,0,446,9,1,0,0,0,447,448,7,0,0,0,448,449,3,338, + 169,0,449,11,1,0,0,0,450,454,5,135,0,0,451,455,3,14,7,0,452,453, + 5,482,0,0,453,455,5,147,0,0,454,451,1,0,0,0,454,452,1,0,0,0,454, + 455,1,0,0,0,455,459,1,0,0,0,456,460,3,8,4,0,457,460,3,136,68,0,458, + 460,3,146,73,0,459,456,1,0,0,0,459,457,1,0,0,0,459,458,1,0,0,0,460, + 13,1,0,0,0,461,466,3,16,8,0,462,463,5,523,0,0,463,465,3,16,8,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, + 15,1,0,0,0,468,466,1,0,0,0,469,470,7,1,0,0,470,17,1,0,0,0,471,472, + 5,413,0,0,472,473,5,444,0,0,473,478,3,328,164,0,474,475,5,413,0, + 0,475,478,3,332,166,0,476,478,3,20,10,0,477,471,1,0,0,0,477,474, + 1,0,0,0,477,476,1,0,0,0,478,19,1,0,0,0,479,480,5,413,0,0,480,481, + 5,229,0,0,481,486,3,344,172,0,482,483,5,523,0,0,483,485,3,344,172, + 0,484,482,1,0,0,0,485,488,1,0,0,0,486,484,1,0,0,0,486,487,1,0,0, + 0,487,21,1,0,0,0,488,486,1,0,0,0,489,490,5,343,0,0,490,532,7,2,0, + 0,491,492,5,343,0,0,492,493,5,76,0,0,493,532,7,3,0,0,494,495,5,343, + 0,0,495,498,5,376,0,0,496,497,7,4,0,0,497,499,3,332,166,0,498,496, + 1,0,0,0,498,499,1,0,0,0,499,501,1,0,0,0,500,502,3,268,134,0,501, + 500,1,0,0,0,501,502,1,0,0,0,502,532,1,0,0,0,503,504,5,343,0,0,504, + 505,5,58,0,0,505,508,7,4,0,0,506,509,3,340,170,0,507,509,3,338,169, + 0,508,506,1,0,0,0,508,507,1,0,0,0,509,511,1,0,0,0,510,512,3,268, + 134,0,511,510,1,0,0,0,511,512,1,0,0,0,512,532,1,0,0,0,513,514,5, + 343,0,0,514,519,5,72,0,0,515,516,5,375,0,0,516,520,3,338,169,0,517, + 518,5,504,0,0,518,520,3,340,170,0,519,515,1,0,0,0,519,517,1,0,0, + 0,520,532,1,0,0,0,521,523,5,343,0,0,522,524,5,414,0,0,523,522,1, + 0,0,0,523,524,1,0,0,0,524,525,1,0,0,0,525,532,5,155,0,0,526,528, + 5,343,0,0,527,529,5,153,0,0,528,527,1,0,0,0,528,529,1,0,0,0,529, + 530,1,0,0,0,530,532,5,229,0,0,531,489,1,0,0,0,531,491,1,0,0,0,531, + 494,1,0,0,0,531,503,1,0,0,0,531,513,1,0,0,0,531,521,1,0,0,0,531, + 526,1,0,0,0,532,23,1,0,0,0,533,534,5,471,0,0,534,535,5,228,0,0,535, + 538,3,344,172,0,536,537,5,436,0,0,537,539,3,354,177,0,538,536,1, + 0,0,0,538,539,1,0,0,0,539,25,1,0,0,0,540,541,5,503,0,0,541,542,5, + 228,0,0,542,543,3,344,172,0,543,27,1,0,0,0,544,546,5,342,0,0,545, + 547,3,356,178,0,546,545,1,0,0,0,546,547,1,0,0,0,547,29,1,0,0,0,548, + 550,5,314,0,0,549,551,3,358,179,0,550,549,1,0,0,0,550,551,1,0,0, + 0,551,31,1,0,0,0,552,553,7,5,0,0,553,554,5,466,0,0,554,555,5,540, + 0,0,555,33,1,0,0,0,556,557,5,440,0,0,557,558,5,466,0,0,558,559,5, + 436,0,0,559,562,3,36,18,0,560,561,5,17,0,0,561,563,3,344,172,0,562, + 560,1,0,0,0,562,563,1,0,0,0,563,607,1,0,0,0,564,565,5,440,0,0,565, + 566,5,459,0,0,566,567,5,436,0,0,567,570,3,36,18,0,568,569,5,17,0, + 0,569,571,3,344,172,0,570,568,1,0,0,0,570,571,1,0,0,0,571,574,1, + 0,0,0,572,573,5,313,0,0,573,575,3,344,172,0,574,572,1,0,0,0,574, + 575,1,0,0,0,575,607,1,0,0,0,576,577,5,440,0,0,577,578,7,6,0,0,578, + 579,5,436,0,0,579,580,3,36,18,0,580,581,5,313,0,0,581,582,3,344, + 172,0,582,607,1,0,0,0,583,584,5,440,0,0,584,585,5,489,0,0,585,607, + 3,36,18,0,586,587,5,440,0,0,587,588,5,456,0,0,588,589,5,459,0,0, + 589,590,5,436,0,0,590,591,3,36,18,0,591,592,5,313,0,0,592,593,3, + 344,172,0,593,594,5,469,0,0,594,595,3,344,172,0,595,607,1,0,0,0, + 596,597,5,440,0,0,597,598,5,446,0,0,598,599,5,459,0,0,599,600,5, + 436,0,0,600,601,3,36,18,0,601,602,5,147,0,0,602,603,3,344,172,0, + 603,604,5,17,0,0,604,605,3,344,172,0,605,607,1,0,0,0,606,556,1,0, + 0,0,606,564,1,0,0,0,606,576,1,0,0,0,606,583,1,0,0,0,606,586,1,0, + 0,0,606,596,1,0,0,0,607,35,1,0,0,0,608,610,5,537,0,0,609,608,1,0, + 0,0,609,610,1,0,0,0,610,611,1,0,0,0,611,613,3,344,172,0,612,609, + 1,0,0,0,613,614,1,0,0,0,614,612,1,0,0,0,614,615,1,0,0,0,615,37,1, + 0,0,0,616,619,3,40,20,0,617,619,3,42,21,0,618,616,1,0,0,0,618,617, + 1,0,0,0,619,39,1,0,0,0,620,622,5,72,0,0,621,623,5,500,0,0,622,621, + 1,0,0,0,622,623,1,0,0,0,623,624,1,0,0,0,624,626,5,375,0,0,625,627, + 3,350,175,0,626,625,1,0,0,0,626,627,1,0,0,0,627,628,1,0,0,0,628, + 629,3,336,168,0,629,630,5,519,0,0,630,635,3,44,22,0,631,632,5,523, + 0,0,632,634,3,44,22,0,633,631,1,0,0,0,634,637,1,0,0,0,635,633,1, + 0,0,0,635,636,1,0,0,0,636,640,1,0,0,0,637,635,1,0,0,0,638,639,5, + 523,0,0,639,641,3,80,40,0,640,638,1,0,0,0,640,641,1,0,0,0,641,644, + 1,0,0,0,642,643,5,523,0,0,643,645,3,82,41,0,644,642,1,0,0,0,644, + 645,1,0,0,0,645,648,1,0,0,0,646,647,5,523,0,0,647,649,3,86,43,0, + 648,646,1,0,0,0,648,649,1,0,0,0,649,650,1,0,0,0,650,653,5,520,0, + 0,651,652,5,59,0,0,652,654,5,540,0,0,653,651,1,0,0,0,653,654,1,0, + 0,0,654,668,1,0,0,0,655,656,5,271,0,0,656,657,5,34,0,0,657,658,5, + 519,0,0,658,663,3,88,44,0,659,660,5,523,0,0,660,662,3,88,44,0,661, + 659,1,0,0,0,662,665,1,0,0,0,663,661,1,0,0,0,663,664,1,0,0,0,664, + 666,1,0,0,0,665,663,1,0,0,0,666,667,5,520,0,0,667,669,1,0,0,0,668, + 655,1,0,0,0,668,669,1,0,0,0,669,670,1,0,0,0,670,672,3,348,174,0, + 671,673,3,92,46,0,672,671,1,0,0,0,672,673,1,0,0,0,673,41,1,0,0,0, + 674,675,5,72,0,0,675,677,5,375,0,0,676,678,3,350,175,0,677,676,1, + 0,0,0,677,678,1,0,0,0,678,679,1,0,0,0,679,680,3,336,168,0,680,683, + 3,348,174,0,681,682,5,17,0,0,682,684,3,148,74,0,683,681,1,0,0,0, + 683,684,1,0,0,0,684,43,1,0,0,0,685,689,3,46,23,0,686,689,3,76,38, + 0,687,689,3,78,39,0,688,685,1,0,0,0,688,686,1,0,0,0,688,687,1,0, + 0,0,689,45,1,0,0,0,690,691,3,48,24,0,691,693,3,60,30,0,692,694,3, + 74,37,0,693,692,1,0,0,0,693,694,1,0,0,0,694,697,1,0,0,0,695,696, + 5,59,0,0,696,698,5,540,0,0,697,695,1,0,0,0,697,698,1,0,0,0,698,47, + 1,0,0,0,699,702,3,344,172,0,700,702,3,260,130,0,701,699,1,0,0,0, + 701,700,1,0,0,0,702,49,1,0,0,0,703,704,1,0,0,0,704,51,1,0,0,0,705, + 709,3,346,173,0,706,707,4,26,0,0,707,709,3,50,25,0,708,705,1,0,0, + 0,708,706,1,0,0,0,709,53,1,0,0,0,710,711,3,344,172,0,711,55,1,0, + 0,0,712,716,3,346,173,0,713,714,4,28,1,0,714,716,3,50,25,0,715,712, + 1,0,0,0,715,713,1,0,0,0,716,57,1,0,0,0,717,718,5,519,0,0,718,723, + 3,52,26,0,719,720,5,523,0,0,720,722,3,52,26,0,721,719,1,0,0,0,722, + 725,1,0,0,0,723,721,1,0,0,0,723,724,1,0,0,0,724,726,1,0,0,0,725, + 723,1,0,0,0,726,727,5,520,0,0,727,59,1,0,0,0,728,766,7,7,0,0,729, + 731,7,8,0,0,730,732,3,62,31,0,731,730,1,0,0,0,731,732,1,0,0,0,732, + 766,1,0,0,0,733,735,5,381,0,0,734,736,3,62,31,0,735,734,1,0,0,0, + 735,736,1,0,0,0,736,743,1,0,0,0,737,739,7,9,0,0,738,740,5,208,0, + 0,739,738,1,0,0,0,739,740,1,0,0,0,740,741,1,0,0,0,741,742,5,380, + 0,0,742,744,5,507,0,0,743,737,1,0,0,0,743,744,1,0,0,0,744,766,1, + 0,0,0,745,747,7,10,0,0,746,748,3,64,32,0,747,746,1,0,0,0,747,748, + 1,0,0,0,748,766,1,0,0,0,749,751,7,11,0,0,750,752,3,68,34,0,751,750, + 1,0,0,0,751,752,1,0,0,0,752,766,1,0,0,0,753,755,5,472,0,0,754,756, + 3,70,35,0,755,754,1,0,0,0,755,756,1,0,0,0,756,766,1,0,0,0,757,759, + 5,323,0,0,758,760,3,72,36,0,759,758,1,0,0,0,759,760,1,0,0,0,760, + 766,1,0,0,0,761,763,5,296,0,0,762,764,3,66,33,0,763,762,1,0,0,0, + 763,764,1,0,0,0,764,766,1,0,0,0,765,728,1,0,0,0,765,729,1,0,0,0, + 765,733,1,0,0,0,765,745,1,0,0,0,765,749,1,0,0,0,765,753,1,0,0,0, + 765,757,1,0,0,0,765,761,1,0,0,0,766,61,1,0,0,0,767,768,5,519,0,0, + 768,769,3,378,189,0,769,770,5,520,0,0,770,63,1,0,0,0,771,772,5,519, + 0,0,772,775,3,378,189,0,773,774,5,523,0,0,774,776,3,378,189,0,775, + 773,1,0,0,0,775,776,1,0,0,0,776,777,1,0,0,0,777,778,5,520,0,0,778, + 65,1,0,0,0,779,780,5,519,0,0,780,783,3,376,188,0,781,782,5,523,0, + 0,782,784,3,376,188,0,783,781,1,0,0,0,783,784,1,0,0,0,784,785,1, + 0,0,0,785,786,5,520,0,0,786,67,1,0,0,0,787,788,5,510,0,0,788,789, + 3,60,30,0,789,790,5,509,0,0,790,69,1,0,0,0,791,792,5,510,0,0,792, + 793,3,60,30,0,793,794,5,523,0,0,794,795,3,60,30,0,795,796,1,0,0, + 0,796,797,5,509,0,0,797,71,1,0,0,0,798,799,5,510,0,0,799,800,3,52, + 26,0,800,807,3,60,30,0,801,802,5,523,0,0,802,803,3,52,26,0,803,804, + 3,60,30,0,804,806,1,0,0,0,805,801,1,0,0,0,806,809,1,0,0,0,807,805, + 1,0,0,0,807,808,1,0,0,0,808,810,1,0,0,0,809,807,1,0,0,0,810,811, + 5,509,0,0,811,827,1,0,0,0,812,813,5,519,0,0,813,814,3,52,26,0,814, + 821,3,60,30,0,815,816,5,523,0,0,816,817,3,52,26,0,817,818,3,60,30, + 0,818,820,1,0,0,0,819,815,1,0,0,0,820,823,1,0,0,0,821,819,1,0,0, + 0,821,822,1,0,0,0,822,824,1,0,0,0,823,821,1,0,0,0,824,825,5,520, + 0,0,825,827,1,0,0,0,826,798,1,0,0,0,826,812,1,0,0,0,827,73,1,0,0, + 0,828,829,5,64,0,0,829,831,3,84,42,0,830,828,1,0,0,0,830,831,1,0, + 0,0,831,832,1,0,0,0,832,833,5,290,0,0,833,836,5,469,0,0,834,835, + 5,243,0,0,835,837,5,125,0,0,836,834,1,0,0,0,836,837,1,0,0,0,837, + 843,1,0,0,0,838,840,5,243,0,0,839,838,1,0,0,0,839,840,1,0,0,0,840, + 841,1,0,0,0,841,843,5,246,0,0,842,830,1,0,0,0,842,839,1,0,0,0,843, + 75,1,0,0,0,844,845,3,48,24,0,845,846,3,60,30,0,846,849,5,220,0,0, + 847,848,5,152,0,0,848,850,5,540,0,0,849,847,1,0,0,0,849,850,1,0, + 0,0,850,852,1,0,0,0,851,853,5,426,0,0,852,851,1,0,0,0,852,853,1, + 0,0,0,853,77,1,0,0,0,854,855,3,48,24,0,855,856,5,17,0,0,856,859, + 3,260,130,0,857,858,5,59,0,0,858,860,5,540,0,0,859,857,1,0,0,0,859, + 860,1,0,0,0,860,79,1,0,0,0,861,862,5,427,0,0,862,863,5,147,0,0,863, + 864,3,52,26,0,864,865,5,17,0,0,865,866,3,260,130,0,866,81,1,0,0, + 0,867,868,5,64,0,0,868,870,3,84,42,0,869,867,1,0,0,0,869,870,1,0, + 0,0,870,871,1,0,0,0,871,872,5,290,0,0,872,873,5,469,0,0,873,874, + 3,58,29,0,874,875,5,243,0,0,875,876,5,125,0,0,876,83,1,0,0,0,877, + 878,3,320,160,0,878,85,1,0,0,0,879,880,5,279,0,0,880,881,5,147,0, + 0,881,882,5,373,0,0,882,87,1,0,0,0,883,896,3,52,26,0,884,885,5,519, + 0,0,885,890,3,90,45,0,886,887,5,523,0,0,887,889,3,90,45,0,888,886, + 1,0,0,0,889,892,1,0,0,0,890,888,1,0,0,0,890,891,1,0,0,0,891,893, + 1,0,0,0,892,890,1,0,0,0,893,894,5,520,0,0,894,896,1,0,0,0,895,883, + 1,0,0,0,895,884,1,0,0,0,896,89,1,0,0,0,897,900,3,296,148,0,898,900, + 3,372,186,0,899,897,1,0,0,0,899,898,1,0,0,0,900,91,1,0,0,0,901,902, + 5,204,0,0,902,911,3,338,169,0,903,907,5,519,0,0,904,906,3,94,47, + 0,905,904,1,0,0,0,906,909,1,0,0,0,907,905,1,0,0,0,907,908,1,0,0, + 0,908,910,1,0,0,0,909,907,1,0,0,0,910,912,5,520,0,0,911,903,1,0, + 0,0,911,912,1,0,0,0,912,93,1,0,0,0,913,914,7,12,0,0,914,918,7,13, + 0,0,915,916,7,14,0,0,916,918,7,15,0,0,917,913,1,0,0,0,917,915,1, + 0,0,0,918,95,1,0,0,0,919,920,5,72,0,0,920,921,5,444,0,0,921,922, + 3,330,165,0,922,923,3,348,174,0,923,97,1,0,0,0,924,925,5,72,0,0, + 925,927,5,450,0,0,926,928,3,350,175,0,927,926,1,0,0,0,927,928,1, + 0,0,0,928,929,1,0,0,0,929,932,3,334,167,0,930,931,5,59,0,0,931,933, + 5,540,0,0,932,930,1,0,0,0,932,933,1,0,0,0,933,934,1,0,0,0,934,935, + 3,348,174,0,935,99,1,0,0,0,936,938,5,72,0,0,937,939,5,500,0,0,938, + 937,1,0,0,0,938,939,1,0,0,0,939,940,1,0,0,0,940,942,5,504,0,0,941, + 943,3,350,175,0,942,941,1,0,0,0,942,943,1,0,0,0,943,944,1,0,0,0, + 944,946,3,342,171,0,945,947,3,58,29,0,946,945,1,0,0,0,946,947,1, + 0,0,0,947,950,1,0,0,0,948,949,5,59,0,0,949,951,5,540,0,0,950,948, + 1,0,0,0,950,951,1,0,0,0,951,952,1,0,0,0,952,953,5,17,0,0,953,954, + 3,148,74,0,954,101,1,0,0,0,955,959,5,72,0,0,956,960,5,500,0,0,957, + 958,5,500,0,0,958,960,5,372,0,0,959,956,1,0,0,0,959,957,1,0,0,0, + 959,960,1,0,0,0,960,961,1,0,0,0,961,963,5,154,0,0,962,964,3,350, + 175,0,963,962,1,0,0,0,963,964,1,0,0,0,964,965,1,0,0,0,965,966,3, + 276,138,0,966,967,5,17,0,0,967,970,3,320,160,0,968,969,5,197,0,0, + 969,971,7,16,0,0,970,968,1,0,0,0,970,971,1,0,0,0,971,973,1,0,0,0, + 972,974,3,104,52,0,973,972,1,0,0,0,973,974,1,0,0,0,974,103,1,0,0, + 0,975,976,5,415,0,0,976,977,5,466,0,0,977,983,5,540,0,0,978,979, + 5,523,0,0,979,980,5,466,0,0,980,982,5,540,0,0,981,978,1,0,0,0,982, + 985,1,0,0,0,983,981,1,0,0,0,983,984,1,0,0,0,984,105,1,0,0,0,985, + 983,1,0,0,0,986,987,5,8,0,0,987,989,5,375,0,0,988,990,3,352,176, + 0,989,988,1,0,0,0,989,990,1,0,0,0,990,991,1,0,0,0,991,997,3,338, + 169,0,992,998,3,108,54,0,993,998,3,110,55,0,994,998,3,112,56,0,995, + 998,3,114,57,0,996,998,3,116,58,0,997,992,1,0,0,0,997,993,1,0,0, + 0,997,994,1,0,0,0,997,995,1,0,0,0,997,996,1,0,0,0,998,107,1,0,0, + 0,999,1001,5,313,0,0,1000,1002,3,344,172,0,1001,1000,1,0,0,0,1001, + 1002,1,0,0,0,1002,1003,1,0,0,0,1003,1004,5,390,0,0,1004,1005,3,344, + 172,0,1005,109,1,0,0,0,1006,1007,5,342,0,0,1007,1008,3,354,177,0, + 1008,111,1,0,0,0,1009,1010,5,440,0,0,1010,1011,5,64,0,0,1011,1012, + 3,84,42,0,1012,1013,5,290,0,0,1013,1014,5,469,0,0,1014,1017,3,58, + 29,0,1015,1016,5,243,0,0,1016,1018,5,125,0,0,1017,1015,1,0,0,0,1017, + 1018,1,0,0,0,1018,113,1,0,0,0,1019,1020,5,116,0,0,1020,1021,5,64, + 0,0,1021,1022,3,84,42,0,1022,115,1,0,0,0,1023,1024,5,440,0,0,1024, + 1025,5,406,0,0,1025,1026,3,58,29,0,1026,117,1,0,0,0,1027,1028,5, + 8,0,0,1028,1029,5,504,0,0,1029,1033,3,340,170,0,1030,1034,3,108, + 54,0,1031,1032,5,17,0,0,1032,1034,3,148,74,0,1033,1030,1,0,0,0,1033, + 1031,1,0,0,0,1034,119,1,0,0,0,1035,1036,5,8,0,0,1036,1037,5,450, + 0,0,1037,1038,3,332,166,0,1038,1039,3,110,55,0,1039,121,1,0,0,0, + 1040,1044,5,8,0,0,1041,1045,5,500,0,0,1042,1043,5,500,0,0,1043,1045, + 5,372,0,0,1044,1041,1,0,0,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0, + 1045,1046,1,0,0,0,1046,1048,5,154,0,0,1047,1049,3,352,176,0,1048, + 1047,1,0,0,0,1048,1049,1,0,0,0,1049,1050,1,0,0,0,1050,1051,3,278, + 139,0,1051,1052,5,17,0,0,1052,1055,3,320,160,0,1053,1054,5,197,0, + 0,1054,1056,7,16,0,0,1055,1053,1,0,0,0,1055,1056,1,0,0,0,1056,123, + 1,0,0,0,1057,1058,5,116,0,0,1058,1060,5,444,0,0,1059,1061,3,352, + 176,0,1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061,1062,1,0,0,0,1062, + 1063,3,328,164,0,1063,125,1,0,0,0,1064,1066,5,116,0,0,1065,1067, + 5,500,0,0,1066,1065,1,0,0,0,1066,1067,1,0,0,0,1067,1068,1,0,0,0, + 1068,1070,5,375,0,0,1069,1071,3,352,176,0,1070,1069,1,0,0,0,1070, + 1071,1,0,0,0,1071,1072,1,0,0,0,1072,1073,3,338,169,0,1073,127,1, + 0,0,0,1074,1075,5,116,0,0,1075,1077,5,450,0,0,1076,1078,3,352,176, + 0,1077,1076,1,0,0,0,1077,1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081, + 3,332,166,0,1080,1082,7,17,0,0,1081,1080,1,0,0,0,1081,1082,1,0,0, + 0,1082,129,1,0,0,0,1083,1085,5,116,0,0,1084,1086,5,500,0,0,1085, + 1084,1,0,0,0,1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1089,5,504, + 0,0,1088,1090,3,352,176,0,1089,1088,1,0,0,0,1089,1090,1,0,0,0,1090, + 1091,1,0,0,0,1091,1092,3,340,170,0,1092,131,1,0,0,0,1093,1097,5, + 116,0,0,1094,1098,5,500,0,0,1095,1096,5,500,0,0,1096,1098,5,372, + 0,0,1097,1094,1,0,0,0,1097,1095,1,0,0,0,1097,1098,1,0,0,0,1098,1099, + 1,0,0,0,1099,1101,5,154,0,0,1100,1102,3,352,176,0,1101,1100,1,0, + 0,0,1101,1102,1,0,0,0,1102,1103,1,0,0,0,1103,1104,3,278,139,0,1104, + 133,1,0,0,0,1105,1107,5,132,0,0,1106,1105,1,0,0,0,1106,1107,1,0, + 0,0,1107,1108,1,0,0,0,1108,1113,3,136,68,0,1109,1113,3,144,72,0, + 1110,1111,5,132,0,0,1111,1113,3,146,73,0,1112,1106,1,0,0,0,1112, + 1109,1,0,0,0,1112,1110,1,0,0,0,1113,135,1,0,0,0,1114,1115,5,178, + 0,0,1115,1116,7,18,0,0,1116,1126,3,338,169,0,1117,1118,5,270,0,0, + 1118,1120,3,354,177,0,1119,1117,1,0,0,0,1119,1120,1,0,0,0,1120,1122, + 1,0,0,0,1121,1123,3,58,29,0,1122,1121,1,0,0,0,1122,1123,1,0,0,0, + 1123,1124,1,0,0,0,1124,1127,3,148,74,0,1125,1127,3,138,69,0,1126, + 1119,1,0,0,0,1126,1125,1,0,0,0,1127,137,1,0,0,0,1128,1129,5,417, + 0,0,1129,1134,3,140,70,0,1130,1131,5,523,0,0,1131,1133,3,140,70, + 0,1132,1130,1,0,0,0,1133,1136,1,0,0,0,1134,1132,1,0,0,0,1134,1135, + 1,0,0,0,1135,139,1,0,0,0,1136,1134,1,0,0,0,1137,1138,5,519,0,0,1138, + 1143,3,142,71,0,1139,1140,5,523,0,0,1140,1142,3,142,71,0,1141,1139, + 1,0,0,0,1142,1145,1,0,0,0,1143,1141,1,0,0,0,1143,1144,1,0,0,0,1144, + 1146,1,0,0,0,1145,1143,1,0,0,0,1146,1147,5,520,0,0,1147,141,1,0, + 0,0,1148,1151,3,372,186,0,1149,1151,3,272,136,0,1150,1148,1,0,0, + 0,1150,1149,1,0,0,0,1151,143,1,0,0,0,1152,1153,5,24,0,0,1153,1154, + 5,356,0,0,1154,1155,5,342,0,0,1155,1159,5,524,0,0,1156,1157,3,136, + 68,0,1157,1158,5,524,0,0,1158,1160,1,0,0,0,1159,1156,1,0,0,0,1160, + 1161,1,0,0,0,1161,1159,1,0,0,0,1161,1162,1,0,0,0,1162,1163,1,0,0, + 0,1163,1164,5,122,0,0,1164,145,1,0,0,0,1165,1166,5,356,0,0,1166, + 1167,5,342,0,0,1167,1171,5,24,0,0,1168,1169,3,136,68,0,1169,1170, + 5,524,0,0,1170,1172,1,0,0,0,1171,1168,1,0,0,0,1172,1173,1,0,0,0, + 1173,1171,1,0,0,0,1173,1174,1,0,0,0,1174,1175,1,0,0,0,1175,1176, + 5,122,0,0,1176,147,1,0,0,0,1177,1178,6,74,-1,0,1178,1201,3,150,75, + 0,1179,1180,3,152,76,0,1180,1181,3,148,74,5,1181,1201,1,0,0,0,1182, + 1183,5,519,0,0,1183,1184,3,148,74,0,1184,1185,5,520,0,0,1185,1201, + 1,0,0,0,1186,1188,3,158,79,0,1187,1189,3,228,114,0,1188,1187,1,0, + 0,0,1188,1189,1,0,0,0,1189,1191,1,0,0,0,1190,1192,3,232,116,0,1191, + 1190,1,0,0,0,1191,1192,1,0,0,0,1192,1201,1,0,0,0,1193,1195,3,156, + 78,0,1194,1196,3,228,114,0,1195,1194,1,0,0,0,1195,1196,1,0,0,0,1196, + 1198,1,0,0,0,1197,1199,3,232,116,0,1198,1197,1,0,0,0,1198,1199,1, + 0,0,0,1199,1201,1,0,0,0,1200,1177,1,0,0,0,1200,1179,1,0,0,0,1200, + 1182,1,0,0,0,1200,1186,1,0,0,0,1200,1193,1,0,0,0,1201,1216,1,0,0, + 0,1202,1203,10,3,0,0,1203,1205,7,19,0,0,1204,1206,5,5,0,0,1205,1204, + 1,0,0,0,1205,1206,1,0,0,0,1206,1207,1,0,0,0,1207,1209,3,148,74,0, + 1208,1210,3,228,114,0,1209,1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212, + 1,0,0,0,1211,1213,3,232,116,0,1212,1211,1,0,0,0,1212,1213,1,0,0, + 0,1213,1215,1,0,0,0,1214,1202,1,0,0,0,1215,1218,1,0,0,0,1216,1214, + 1,0,0,0,1216,1217,1,0,0,0,1217,149,1,0,0,0,1218,1216,1,0,0,0,1219, + 1220,5,417,0,0,1220,1225,3,260,130,0,1221,1222,5,523,0,0,1222,1224, + 3,260,130,0,1223,1221,1,0,0,0,1224,1227,1,0,0,0,1225,1223,1,0,0, + 0,1225,1226,1,0,0,0,1226,151,1,0,0,0,1227,1225,1,0,0,0,1228,1229, + 5,436,0,0,1229,1234,3,154,77,0,1230,1231,5,523,0,0,1231,1233,3,154, + 77,0,1232,1230,1,0,0,0,1233,1236,1,0,0,0,1234,1232,1,0,0,0,1234, + 1235,1,0,0,0,1235,153,1,0,0,0,1236,1234,1,0,0,0,1237,1249,3,320, + 160,0,1238,1239,5,519,0,0,1239,1244,3,52,26,0,1240,1241,5,523,0, + 0,1241,1243,3,52,26,0,1242,1240,1,0,0,0,1243,1246,1,0,0,0,1244,1242, + 1,0,0,0,1244,1245,1,0,0,0,1245,1247,1,0,0,0,1246,1244,1,0,0,0,1247, + 1248,5,520,0,0,1248,1250,1,0,0,0,1249,1238,1,0,0,0,1249,1250,1,0, + 0,0,1250,1251,1,0,0,0,1251,1252,5,17,0,0,1252,1253,5,519,0,0,1253, + 1254,3,148,74,0,1254,1255,5,520,0,0,1255,155,1,0,0,0,1256,1258,3, + 158,79,0,1257,1259,3,178,89,0,1258,1257,1,0,0,0,1258,1259,1,0,0, + 0,1259,1261,1,0,0,0,1260,1262,3,208,104,0,1261,1260,1,0,0,0,1261, + 1262,1,0,0,0,1262,1264,1,0,0,0,1263,1265,3,210,105,0,1264,1263,1, + 0,0,0,1264,1265,1,0,0,0,1265,1267,1,0,0,0,1266,1268,3,218,109,0, + 1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1270,1,0,0,0,1269,1271, + 3,220,110,0,1270,1269,1,0,0,0,1270,1271,1,0,0,0,1271,1277,1,0,0, + 0,1272,1273,3,158,79,0,1273,1274,3,178,89,0,1274,1275,3,226,113, + 0,1275,1277,1,0,0,0,1276,1256,1,0,0,0,1276,1272,1,0,0,0,1277,157, + 1,0,0,0,1278,1280,5,338,0,0,1279,1281,3,382,191,0,1280,1279,1,0, + 0,0,1280,1281,1,0,0,0,1281,1282,1,0,0,0,1282,1283,3,160,80,0,1283, + 159,1,0,0,0,1284,1289,3,162,81,0,1285,1286,5,523,0,0,1286,1288,3, + 162,81,0,1287,1285,1,0,0,0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1289, + 1290,1,0,0,0,1290,161,1,0,0,0,1291,1289,1,0,0,0,1292,1316,3,164, + 82,0,1293,1299,3,168,84,0,1294,1300,3,170,85,0,1295,1297,5,17,0, + 0,1296,1295,1,0,0,0,1296,1297,1,0,0,0,1297,1298,1,0,0,0,1298,1300, + 3,260,130,0,1299,1294,1,0,0,0,1299,1296,1,0,0,0,1299,1300,1,0,0, + 0,1300,1316,1,0,0,0,1301,1303,3,174,87,0,1302,1304,3,170,85,0,1303, + 1302,1,0,0,0,1303,1304,1,0,0,0,1304,1316,1,0,0,0,1305,1311,3,166, + 83,0,1306,1312,3,170,85,0,1307,1309,5,17,0,0,1308,1307,1,0,0,0,1308, + 1309,1,0,0,0,1309,1310,1,0,0,0,1310,1312,3,52,26,0,1311,1306,1,0, + 0,0,1311,1308,1,0,0,0,1311,1312,1,0,0,0,1312,1316,1,0,0,0,1313,1314, + 4,81,3,0,1314,1316,3,50,25,0,1315,1292,1,0,0,0,1315,1293,1,0,0,0, + 1315,1301,1,0,0,0,1315,1305,1,0,0,0,1315,1313,1,0,0,0,1316,163,1, + 0,0,0,1317,1318,3,176,88,0,1318,165,1,0,0,0,1319,1320,3,260,130, + 0,1320,167,1,0,0,0,1321,1322,3,52,26,0,1322,169,1,0,0,0,1323,1325, + 5,17,0,0,1324,1323,1,0,0,0,1324,1325,1,0,0,0,1325,1326,1,0,0,0,1326, + 1327,3,320,160,0,1327,171,1,0,0,0,1328,1344,3,176,88,0,1329,1334, + 3,260,130,0,1330,1332,5,17,0,0,1331,1330,1,0,0,0,1331,1332,1,0,0, + 0,1332,1333,1,0,0,0,1333,1335,3,52,26,0,1334,1331,1,0,0,0,1334,1335, + 1,0,0,0,1335,1344,1,0,0,0,1336,1341,3,52,26,0,1337,1339,5,17,0,0, + 1338,1337,1,0,0,0,1338,1339,1,0,0,0,1339,1340,1,0,0,0,1340,1342, + 3,260,130,0,1341,1338,1,0,0,0,1341,1342,1,0,0,0,1342,1344,1,0,0, + 0,1343,1328,1,0,0,0,1343,1329,1,0,0,0,1343,1336,1,0,0,0,1344,173, + 1,0,0,0,1345,1350,3,320,160,0,1346,1347,5,516,0,0,1347,1349,3,320, + 160,0,1348,1346,1,0,0,0,1349,1352,1,0,0,0,1350,1348,1,0,0,0,1350, + 1351,1,0,0,0,1351,1353,1,0,0,0,1352,1350,1,0,0,0,1353,1354,5,516, + 0,0,1354,1356,1,0,0,0,1355,1345,1,0,0,0,1355,1356,1,0,0,0,1356,1357, + 1,0,0,0,1357,1358,5,530,0,0,1358,175,1,0,0,0,1359,1360,3,274,137, + 0,1360,1361,5,264,0,0,1361,1362,3,224,112,0,1362,1363,5,17,0,0,1363, + 1364,3,320,160,0,1364,1372,1,0,0,0,1365,1366,3,274,137,0,1366,1367, + 5,264,0,0,1367,1368,3,312,156,0,1368,1369,5,17,0,0,1369,1370,3,320, + 160,0,1370,1372,1,0,0,0,1371,1359,1,0,0,0,1371,1365,1,0,0,0,1372, + 177,1,0,0,0,1373,1374,5,152,0,0,1374,1375,3,180,90,0,1375,179,1, + 0,0,0,1376,1377,6,90,-1,0,1377,1382,3,182,91,0,1378,1379,5,523,0, + 0,1379,1381,3,182,91,0,1380,1378,1,0,0,0,1381,1384,1,0,0,0,1382, + 1380,1,0,0,0,1382,1383,1,0,0,0,1383,1388,1,0,0,0,1384,1382,1,0,0, + 0,1385,1388,3,192,96,0,1386,1388,3,194,97,0,1387,1376,1,0,0,0,1387, + 1385,1,0,0,0,1387,1386,1,0,0,0,1388,1410,1,0,0,0,1389,1390,10,3, + 0,0,1390,1391,5,73,0,0,1391,1392,5,186,0,0,1392,1409,3,180,90,4, + 1393,1395,10,4,0,0,1394,1396,5,235,0,0,1395,1394,1,0,0,0,1395,1396, + 1,0,0,0,1396,1398,1,0,0,0,1397,1399,7,20,0,0,1398,1397,1,0,0,0,1398, + 1399,1,0,0,0,1399,1401,1,0,0,0,1400,1402,5,263,0,0,1401,1400,1,0, + 0,0,1401,1402,1,0,0,0,1402,1403,1,0,0,0,1403,1404,5,186,0,0,1404, + 1406,3,180,90,0,1405,1407,3,206,103,0,1406,1405,1,0,0,0,1406,1407, + 1,0,0,0,1407,1409,1,0,0,0,1408,1389,1,0,0,0,1408,1393,1,0,0,0,1409, + 1412,1,0,0,0,1410,1408,1,0,0,0,1410,1411,1,0,0,0,1411,181,1,0,0, + 0,1412,1410,1,0,0,0,1413,1415,3,184,92,0,1414,1416,3,310,155,0,1415, + 1414,1,0,0,0,1415,1416,1,0,0,0,1416,183,1,0,0,0,1417,1419,5,375, + 0,0,1418,1417,1,0,0,0,1418,1419,1,0,0,0,1419,1420,1,0,0,0,1420,1422, + 3,338,169,0,1421,1423,3,190,95,0,1422,1421,1,0,0,0,1422,1423,1,0, + 0,0,1423,1431,1,0,0,0,1424,1426,3,340,170,0,1425,1427,3,190,95,0, + 1426,1425,1,0,0,0,1426,1427,1,0,0,0,1427,1431,1,0,0,0,1428,1431, + 3,186,93,0,1429,1431,3,188,94,0,1430,1418,1,0,0,0,1430,1424,1,0, + 0,0,1430,1428,1,0,0,0,1430,1429,1,0,0,0,1431,185,1,0,0,0,1432,1433, + 5,200,0,0,1433,1434,5,375,0,0,1434,1435,5,519,0,0,1435,1436,3,272, + 136,0,1436,1437,5,520,0,0,1437,187,1,0,0,0,1438,1440,5,200,0,0,1439, + 1438,1,0,0,0,1439,1440,1,0,0,0,1440,1441,1,0,0,0,1441,1442,5,519, + 0,0,1442,1443,3,148,74,0,1443,1444,5,520,0,0,1444,1451,1,0,0,0,1445, + 1446,5,408,0,0,1446,1447,5,519,0,0,1447,1448,3,260,130,0,1448,1449, + 5,520,0,0,1449,1451,1,0,0,0,1450,1439,1,0,0,0,1450,1445,1,0,0,0, + 1451,189,1,0,0,0,1452,1453,5,147,0,0,1453,1454,5,373,0,0,1454,1455, + 5,17,0,0,1455,1456,5,251,0,0,1456,1457,3,260,130,0,1457,191,1,0, + 0,0,1458,1459,5,519,0,0,1459,1460,3,138,69,0,1460,1461,5,520,0,0, + 1461,1462,3,310,155,0,1462,193,1,0,0,0,1463,1464,5,375,0,0,1464, + 1465,5,519,0,0,1465,1466,3,196,98,0,1466,1467,5,520,0,0,1467,195, + 1,0,0,0,1468,1469,3,198,99,0,1469,1470,5,519,0,0,1470,1475,3,200, + 100,0,1471,1472,5,523,0,0,1472,1474,3,200,100,0,1473,1471,1,0,0, + 0,1474,1477,1,0,0,0,1475,1473,1,0,0,0,1475,1476,1,0,0,0,1476,1478, + 1,0,0,0,1477,1475,1,0,0,0,1478,1479,5,520,0,0,1479,197,1,0,0,0,1480, + 1481,7,21,0,0,1481,199,1,0,0,0,1482,1483,5,375,0,0,1483,1498,3,344, + 172,0,1484,1498,3,204,102,0,1485,1498,3,298,149,0,1486,1487,5,449, + 0,0,1487,1488,5,539,0,0,1488,1489,5,375,0,0,1489,1498,3,344,172, + 0,1490,1491,5,501,0,0,1491,1492,5,539,0,0,1492,1498,3,204,102,0, + 1493,1494,3,202,101,0,1494,1495,5,539,0,0,1495,1496,3,298,149,0, + 1496,1498,1,0,0,0,1497,1482,1,0,0,0,1497,1484,1,0,0,0,1497,1485, + 1,0,0,0,1497,1486,1,0,0,0,1497,1490,1,0,0,0,1497,1493,1,0,0,0,1498, + 201,1,0,0,0,1499,1500,7,22,0,0,1500,203,1,0,0,0,1501,1502,5,454, + 0,0,1502,1503,5,519,0,0,1503,1504,3,52,26,0,1504,1505,5,520,0,0, + 1505,205,1,0,0,0,1506,1513,5,255,0,0,1507,1514,3,262,131,0,1508, + 1511,3,56,28,0,1509,1510,5,508,0,0,1510,1512,3,56,28,0,1511,1509, + 1,0,0,0,1511,1512,1,0,0,0,1512,1514,1,0,0,0,1513,1507,1,0,0,0,1513, + 1508,1,0,0,0,1514,1518,1,0,0,0,1515,1516,5,415,0,0,1516,1518,3,58, + 29,0,1517,1506,1,0,0,0,1517,1515,1,0,0,0,1518,207,1,0,0,0,1519,1522, + 5,433,0,0,1520,1523,3,262,131,0,1521,1523,3,56,28,0,1522,1520,1, + 0,0,0,1522,1521,1,0,0,0,1523,209,1,0,0,0,1524,1525,5,160,0,0,1525, + 1526,5,34,0,0,1526,1531,3,212,106,0,1527,1528,5,523,0,0,1528,1530, + 3,212,106,0,1529,1527,1,0,0,0,1530,1533,1,0,0,0,1531,1529,1,0,0, + 0,1531,1532,1,0,0,0,1532,211,1,0,0,0,1533,1531,1,0,0,0,1534,1576, + 3,52,26,0,1535,1576,3,214,107,0,1536,1537,5,519,0,0,1537,1576,5, + 520,0,0,1538,1539,5,519,0,0,1539,1544,3,260,130,0,1540,1541,5,523, + 0,0,1541,1543,3,260,130,0,1542,1540,1,0,0,0,1543,1546,1,0,0,0,1544, + 1542,1,0,0,0,1544,1545,1,0,0,0,1545,1547,1,0,0,0,1546,1544,1,0,0, + 0,1547,1548,5,520,0,0,1548,1576,1,0,0,0,1549,1550,7,23,0,0,1550, + 1551,5,519,0,0,1551,1556,3,260,130,0,1552,1553,5,523,0,0,1553,1555, + 3,260,130,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,1559,1,0,0,0,1558,1556,1,0,0,0,1559,1560, + 5,520,0,0,1560,1576,1,0,0,0,1561,1562,5,161,0,0,1562,1563,5,496, + 0,0,1563,1564,5,519,0,0,1564,1569,3,212,106,0,1565,1566,5,523,0, + 0,1566,1568,3,212,106,0,1567,1565,1,0,0,0,1568,1571,1,0,0,0,1569, + 1567,1,0,0,0,1569,1570,1,0,0,0,1570,1572,1,0,0,0,1571,1569,1,0,0, + 0,1572,1573,5,520,0,0,1573,1576,1,0,0,0,1574,1576,3,260,130,0,1575, + 1534,1,0,0,0,1575,1535,1,0,0,0,1575,1536,1,0,0,0,1575,1538,1,0,0, + 0,1575,1549,1,0,0,0,1575,1561,1,0,0,0,1575,1574,1,0,0,0,1576,213, + 1,0,0,0,1577,1578,3,216,108,0,1578,1579,5,519,0,0,1579,1580,3,344, + 172,0,1580,1581,5,523,0,0,1581,1582,3,298,149,0,1582,1583,5,520, + 0,0,1583,215,1,0,0,0,1584,1585,7,24,0,0,1585,217,1,0,0,0,1586,1587, + 5,164,0,0,1587,1588,3,262,131,0,1588,219,1,0,0,0,1589,1590,5,435, + 0,0,1590,1595,3,222,111,0,1591,1592,5,523,0,0,1592,1594,3,222,111, + 0,1593,1591,1,0,0,0,1594,1597,1,0,0,0,1595,1593,1,0,0,0,1595,1596, + 1,0,0,0,1596,221,1,0,0,0,1597,1595,1,0,0,0,1598,1599,3,312,156,0, + 1599,1600,5,17,0,0,1600,1601,3,224,112,0,1601,223,1,0,0,0,1602,1604, + 3,312,156,0,1603,1602,1,0,0,0,1603,1604,1,0,0,0,1604,1605,1,0,0, + 0,1605,1607,5,519,0,0,1606,1608,3,234,117,0,1607,1606,1,0,0,0,1607, + 1608,1,0,0,0,1608,1610,1,0,0,0,1609,1611,3,228,114,0,1610,1609,1, + 0,0,0,1610,1611,1,0,0,0,1611,1613,1,0,0,0,1612,1614,3,250,125,0, + 1613,1612,1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1616, + 5,520,0,0,1616,225,1,0,0,0,1617,1618,5,215,0,0,1618,1620,5,519,0, + 0,1619,1621,3,234,117,0,1620,1619,1,0,0,0,1620,1621,1,0,0,0,1621, + 1623,1,0,0,0,1622,1624,3,228,114,0,1623,1622,1,0,0,0,1623,1624,1, + 0,0,0,1624,1626,1,0,0,0,1625,1627,3,238,119,0,1626,1625,1,0,0,0, + 1626,1627,1,0,0,0,1627,1629,1,0,0,0,1628,1630,3,244,122,0,1629,1628, + 1,0,0,0,1629,1630,1,0,0,0,1630,1632,1,0,0,0,1631,1633,3,246,123, + 0,1632,1631,1,0,0,0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636, + 3,240,120,0,1635,1634,1,0,0,0,1635,1636,1,0,0,0,1636,1637,1,0,0, + 0,1637,1638,3,248,124,0,1638,1643,5,520,0,0,1639,1641,5,17,0,0,1640, + 1639,1,0,0,0,1640,1641,1,0,0,0,1641,1642,1,0,0,0,1642,1644,3,320, + 160,0,1643,1640,1,0,0,0,1643,1644,1,0,0,0,1644,227,1,0,0,0,1645, + 1646,5,260,0,0,1646,1647,5,34,0,0,1647,1652,3,230,115,0,1648,1649, + 5,523,0,0,1649,1651,3,230,115,0,1650,1648,1,0,0,0,1651,1654,1,0, + 0,0,1652,1650,1,0,0,0,1652,1653,1,0,0,0,1653,229,1,0,0,0,1654,1652, + 1,0,0,0,1655,1658,3,52,26,0,1656,1658,3,270,135,0,1657,1655,1,0, + 0,0,1657,1656,1,0,0,0,1658,1660,1,0,0,0,1659,1661,7,25,0,0,1660, + 1659,1,0,0,0,1660,1661,1,0,0,0,1661,1664,1,0,0,0,1662,1663,5,479, + 0,0,1663,1665,7,26,0,0,1664,1662,1,0,0,0,1664,1665,1,0,0,0,1665, + 231,1,0,0,0,1666,1669,5,206,0,0,1667,1670,5,5,0,0,1668,1670,3,260, + 130,0,1669,1667,1,0,0,0,1669,1668,1,0,0,0,1670,233,1,0,0,0,1671, + 1672,5,270,0,0,1672,1675,5,34,0,0,1673,1676,3,52,26,0,1674,1676, + 3,274,137,0,1675,1673,1,0,0,0,1675,1674,1,0,0,0,1676,1684,1,0,0, + 0,1677,1680,5,523,0,0,1678,1681,3,52,26,0,1679,1681,3,274,137,0, + 1680,1678,1,0,0,0,1680,1679,1,0,0,0,1681,1683,1,0,0,0,1682,1677, + 1,0,0,0,1683,1686,1,0,0,0,1684,1682,1,0,0,0,1684,1685,1,0,0,0,1685, + 235,1,0,0,0,1686,1684,1,0,0,0,1687,1704,5,530,0,0,1688,1704,5,533, + 0,0,1689,1704,5,538,0,0,1690,1691,5,521,0,0,1691,1692,5,541,0,0, + 1692,1693,5,523,0,0,1693,1694,5,541,0,0,1694,1704,5,522,0,0,1695, + 1696,5,521,0,0,1696,1697,5,541,0,0,1697,1698,5,523,0,0,1698,1704, + 5,522,0,0,1699,1700,5,521,0,0,1700,1701,5,523,0,0,1701,1702,5,541, + 0,0,1702,1704,5,522,0,0,1703,1687,1,0,0,0,1703,1688,1,0,0,0,1703, + 1689,1,0,0,0,1703,1690,1,0,0,0,1703,1695,1,0,0,0,1703,1699,1,0,0, + 0,1704,237,1,0,0,0,1705,1706,5,217,0,0,1706,1711,3,172,86,0,1707, + 1708,5,523,0,0,1708,1710,3,172,86,0,1709,1707,1,0,0,0,1710,1713, + 1,0,0,0,1711,1709,1,0,0,0,1711,1712,1,0,0,0,1712,239,1,0,0,0,1713, + 1711,1,0,0,0,1714,1715,5,273,0,0,1715,1717,5,519,0,0,1716,1718,3, + 242,121,0,1717,1716,1,0,0,0,1718,1719,1,0,0,0,1719,1717,1,0,0,0, + 1719,1720,1,0,0,0,1720,1721,1,0,0,0,1721,1723,5,520,0,0,1722,1724, + 3,258,129,0,1723,1722,1,0,0,0,1723,1724,1,0,0,0,1724,241,1,0,0,0, + 1725,1727,3,322,161,0,1726,1728,3,236,118,0,1727,1726,1,0,0,0,1727, + 1728,1,0,0,0,1728,243,1,0,0,0,1729,1730,5,5,0,0,1730,1731,5,324, + 0,0,1731,1732,5,274,0,0,1732,1738,5,212,0,0,1733,1734,5,256,0,0, + 1734,1735,5,323,0,0,1735,1736,5,274,0,0,1736,1738,5,212,0,0,1737, + 1729,1,0,0,0,1737,1733,1,0,0,0,1738,245,1,0,0,0,1739,1740,5,441, + 0,0,1740,1741,5,212,0,0,1741,1742,5,345,0,0,1742,1743,5,481,0,0, + 1743,1744,5,470,0,0,1744,1764,5,323,0,0,1745,1746,5,441,0,0,1746, + 1747,5,212,0,0,1747,1748,5,345,0,0,1748,1749,5,390,0,0,1749,1750, + 5,239,0,0,1750,1764,5,323,0,0,1751,1752,5,441,0,0,1752,1753,5,212, + 0,0,1753,1754,5,345,0,0,1754,1755,5,390,0,0,1755,1756,5,470,0,0, + 1756,1764,3,322,161,0,1757,1758,5,441,0,0,1758,1759,5,212,0,0,1759, + 1760,5,345,0,0,1760,1761,5,390,0,0,1761,1762,5,460,0,0,1762,1764, + 3,322,161,0,1763,1739,1,0,0,0,1763,1745,1,0,0,0,1763,1751,1,0,0, + 0,1763,1757,1,0,0,0,1764,247,1,0,0,0,1765,1766,5,105,0,0,1766,1771, + 3,172,86,0,1767,1768,5,523,0,0,1768,1770,3,172,86,0,1769,1767,1, + 0,0,0,1770,1773,1,0,0,0,1771,1769,1,0,0,0,1771,1772,1,0,0,0,1772, + 249,1,0,0,0,1773,1771,1,0,0,0,1774,1775,5,294,0,0,1775,1776,5,27, + 0,0,1776,1777,3,298,149,0,1777,1778,3,252,126,0,1778,1790,1,0,0, + 0,1779,1780,7,27,0,0,1780,1781,5,27,0,0,1781,1782,3,254,127,0,1782, + 1783,5,10,0,0,1783,1784,3,256,128,0,1784,1790,1,0,0,0,1785,1786, + 5,324,0,0,1786,1787,5,27,0,0,1787,1788,5,541,0,0,1788,1790,3,252, + 126,0,1789,1774,1,0,0,0,1789,1779,1,0,0,0,1789,1785,1,0,0,0,1790, + 251,1,0,0,0,1791,1792,5,483,0,0,1792,1793,5,10,0,0,1793,1794,5,76, + 0,0,1794,1795,5,323,0,0,1795,253,1,0,0,0,1796,1797,5,404,0,0,1797, + 1803,5,483,0,0,1798,1799,5,541,0,0,1799,1803,5,483,0,0,1800,1801, + 5,76,0,0,1801,1803,5,323,0,0,1802,1796,1,0,0,0,1802,1798,1,0,0,0, + 1802,1800,1,0,0,0,1803,255,1,0,0,0,1804,1805,5,76,0,0,1805,1811, + 5,323,0,0,1806,1807,5,541,0,0,1807,1811,5,146,0,0,1808,1809,5,404, + 0,0,1809,1811,5,146,0,0,1810,1804,1,0,0,0,1810,1806,1,0,0,0,1810, + 1808,1,0,0,0,1811,257,1,0,0,0,1812,1813,5,437,0,0,1813,1814,3,298, + 149,0,1814,259,1,0,0,0,1815,1816,3,262,131,0,1816,261,1,0,0,0,1817, + 1818,6,131,-1,0,1818,1819,5,243,0,0,1819,1830,3,262,131,6,1820,1821, + 5,133,0,0,1821,1822,5,519,0,0,1822,1823,3,148,74,0,1823,1824,5,520, + 0,0,1824,1830,1,0,0,0,1825,1827,3,270,135,0,1826,1828,3,264,132, + 0,1827,1826,1,0,0,0,1827,1828,1,0,0,0,1828,1830,1,0,0,0,1829,1817, + 1,0,0,0,1829,1820,1,0,0,0,1829,1825,1,0,0,0,1830,1845,1,0,0,0,1831, + 1832,10,3,0,0,1832,1833,5,10,0,0,1833,1844,3,262,131,4,1834,1835, + 10,2,0,0,1835,1836,5,259,0,0,1836,1844,3,262,131,3,1837,1838,10, + 1,0,0,1838,1840,5,185,0,0,1839,1841,5,243,0,0,1840,1839,1,0,0,0, + 1840,1841,1,0,0,0,1841,1842,1,0,0,0,1842,1844,7,28,0,0,1843,1831, + 1,0,0,0,1843,1834,1,0,0,0,1843,1837,1,0,0,0,1844,1847,1,0,0,0,1845, + 1843,1,0,0,0,1845,1846,1,0,0,0,1846,263,1,0,0,0,1847,1845,1,0,0, + 0,1848,1850,5,243,0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,1851, + 1,0,0,0,1851,1853,5,27,0,0,1852,1854,7,29,0,0,1853,1852,1,0,0,0, + 1853,1854,1,0,0,0,1854,1855,1,0,0,0,1855,1856,3,270,135,0,1856,1857, + 5,10,0,0,1857,1858,3,270,135,0,1858,1923,1,0,0,0,1859,1861,5,243, + 0,0,1860,1859,1,0,0,0,1860,1861,1,0,0,0,1861,1862,1,0,0,0,1862,1863, + 5,171,0,0,1863,1864,5,519,0,0,1864,1869,3,260,130,0,1865,1866,5, + 523,0,0,1866,1868,3,260,130,0,1867,1865,1,0,0,0,1868,1871,1,0,0, + 0,1869,1867,1,0,0,0,1869,1870,1,0,0,0,1870,1872,1,0,0,0,1871,1869, + 1,0,0,0,1872,1873,5,520,0,0,1873,1923,1,0,0,0,1874,1876,5,243,0, + 0,1875,1874,1,0,0,0,1875,1876,1,0,0,0,1876,1877,1,0,0,0,1877,1878, + 5,171,0,0,1878,1879,5,519,0,0,1879,1880,3,148,74,0,1880,1881,5,520, + 0,0,1881,1923,1,0,0,0,1882,1883,5,133,0,0,1883,1884,5,519,0,0,1884, + 1885,3,148,74,0,1885,1886,5,520,0,0,1886,1923,1,0,0,0,1887,1889, + 5,243,0,0,1888,1887,1,0,0,0,1888,1889,1,0,0,0,1889,1890,1,0,0,0, + 1890,1891,5,320,0,0,1891,1923,3,270,135,0,1892,1923,3,268,134,0, + 1893,1895,5,185,0,0,1894,1896,5,243,0,0,1895,1894,1,0,0,0,1895,1896, + 1,0,0,0,1896,1897,1,0,0,0,1897,1923,7,28,0,0,1898,1900,5,185,0,0, + 1899,1901,5,243,0,0,1900,1899,1,0,0,0,1900,1901,1,0,0,0,1901,1902, + 1,0,0,0,1902,1903,5,113,0,0,1903,1904,5,152,0,0,1904,1923,3,270, + 135,0,1905,1907,5,243,0,0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907, + 1908,1,0,0,0,1908,1909,5,344,0,0,1909,1910,5,390,0,0,1910,1913,3, + 270,135,0,1911,1912,5,127,0,0,1912,1914,3,376,188,0,1913,1911,1, + 0,0,0,1913,1914,1,0,0,0,1914,1923,1,0,0,0,1915,1916,5,185,0,0,1916, + 1920,5,187,0,0,1917,1921,5,416,0,0,1918,1921,5,13,0,0,1919,1921, + 3,320,160,0,1920,1917,1,0,0,0,1920,1918,1,0,0,0,1920,1919,1,0,0, + 0,1920,1921,1,0,0,0,1921,1923,1,0,0,0,1922,1849,1,0,0,0,1922,1860, + 1,0,0,0,1922,1875,1,0,0,0,1922,1882,1,0,0,0,1922,1888,1,0,0,0,1922, + 1892,1,0,0,0,1922,1893,1,0,0,0,1922,1898,1,0,0,0,1922,1906,1,0,0, + 0,1922,1915,1,0,0,0,1923,265,1,0,0,0,1924,1933,5,246,0,0,1925,1926, + 5,121,0,0,1926,1933,5,13,0,0,1927,1928,5,121,0,0,1928,1933,3,344, + 172,0,1929,1933,5,399,0,0,1930,1933,5,140,0,0,1931,1933,5,407,0, + 0,1932,1924,1,0,0,0,1932,1925,1,0,0,0,1932,1927,1,0,0,0,1932,1929, + 1,0,0,0,1932,1930,1,0,0,0,1932,1931,1,0,0,0,1933,267,1,0,0,0,1934, + 1936,5,243,0,0,1935,1934,1,0,0,0,1935,1936,1,0,0,0,1936,1937,1,0, + 0,0,1937,1938,5,204,0,0,1938,1952,7,30,0,0,1939,1940,5,519,0,0,1940, + 1953,5,520,0,0,1941,1942,5,519,0,0,1942,1947,3,260,130,0,1943,1944, + 5,523,0,0,1944,1946,3,260,130,0,1945,1943,1,0,0,0,1946,1949,1,0, + 0,0,1947,1945,1,0,0,0,1947,1948,1,0,0,0,1948,1950,1,0,0,0,1949,1947, + 1,0,0,0,1950,1951,5,520,0,0,1951,1953,1,0,0,0,1952,1939,1,0,0,0, + 1952,1941,1,0,0,0,1953,1964,1,0,0,0,1954,1956,5,243,0,0,1955,1954, + 1,0,0,0,1955,1956,1,0,0,0,1956,1957,1,0,0,0,1957,1958,5,204,0,0, + 1958,1961,3,270,135,0,1959,1960,5,127,0,0,1960,1962,3,376,188,0, + 1961,1959,1,0,0,0,1961,1962,1,0,0,0,1962,1964,1,0,0,0,1963,1935, + 1,0,0,0,1963,1955,1,0,0,0,1964,269,1,0,0,0,1965,1966,6,135,-1,0, + 1966,1970,3,274,137,0,1967,1968,7,31,0,0,1968,1970,3,270,135,7,1969, + 1965,1,0,0,0,1969,1967,1,0,0,0,1970,1992,1,0,0,0,1971,1972,10,6, + 0,0,1972,1973,7,32,0,0,1973,1991,3,270,135,7,1974,1975,10,5,0,0, + 1975,1976,7,33,0,0,1976,1991,3,270,135,6,1977,1978,10,4,0,0,1978, + 1979,5,514,0,0,1979,1991,3,270,135,5,1980,1981,10,3,0,0,1981,1982, + 5,515,0,0,1982,1991,3,270,135,4,1983,1984,10,2,0,0,1984,1985,5,513, + 0,0,1985,1991,3,270,135,3,1986,1987,10,1,0,0,1987,1988,3,364,182, + 0,1988,1989,3,270,135,2,1989,1991,1,0,0,0,1990,1971,1,0,0,0,1990, + 1974,1,0,0,0,1990,1977,1,0,0,0,1990,1980,1,0,0,0,1990,1983,1,0,0, + 0,1990,1986,1,0,0,0,1991,1994,1,0,0,0,1992,1990,1,0,0,0,1992,1993, + 1,0,0,0,1993,271,1,0,0,0,1994,1992,1,0,0,0,1995,2015,3,390,195,0, + 1996,2015,3,280,140,0,1997,1998,3,282,141,0,1998,2010,5,519,0,0, + 1999,2001,3,382,191,0,2000,1999,1,0,0,0,2000,2001,1,0,0,0,2001,2002, + 1,0,0,0,2002,2007,3,284,142,0,2003,2004,5,523,0,0,2004,2006,3,284, + 142,0,2005,2003,1,0,0,0,2006,2009,1,0,0,0,2007,2005,1,0,0,0,2007, + 2008,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2010,2000,1,0,0, + 0,2010,2011,1,0,0,0,2011,2012,1,0,0,0,2012,2013,5,520,0,0,2013,2015, + 1,0,0,0,2014,1995,1,0,0,0,2014,1996,1,0,0,0,2014,1997,1,0,0,0,2015, + 273,1,0,0,0,2016,2017,6,137,-1,0,2017,2019,5,40,0,0,2018,2020,3, + 326,163,0,2019,2018,1,0,0,0,2020,2021,1,0,0,0,2021,2019,1,0,0,0, + 2021,2022,1,0,0,0,2022,2025,1,0,0,0,2023,2024,5,120,0,0,2024,2026, + 3,260,130,0,2025,2023,1,0,0,0,2025,2026,1,0,0,0,2026,2027,1,0,0, + 0,2027,2028,5,122,0,0,2028,2099,1,0,0,0,2029,2030,5,40,0,0,2030, + 2032,3,260,130,0,2031,2033,3,326,163,0,2032,2031,1,0,0,0,2033,2034, + 1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035,2038,1,0,0,0,2036, + 2037,5,120,0,0,2037,2039,3,260,130,0,2038,2036,1,0,0,0,2038,2039, + 1,0,0,0,2039,2040,1,0,0,0,2040,2041,5,122,0,0,2041,2099,1,0,0,0, + 2042,2043,5,41,0,0,2043,2044,5,519,0,0,2044,2045,3,260,130,0,2045, + 2046,5,17,0,0,2046,2047,3,60,30,0,2047,2048,5,520,0,0,2048,2099, + 1,0,0,0,2049,2050,5,460,0,0,2050,2051,5,519,0,0,2051,2054,3,260, + 130,0,2052,2053,5,464,0,0,2053,2055,5,479,0,0,2054,2052,1,0,0,0, + 2054,2055,1,0,0,0,2055,2056,1,0,0,0,2056,2057,5,520,0,0,2057,2099, + 1,0,0,0,2058,2059,5,470,0,0,2059,2060,5,519,0,0,2060,2063,3,260, + 130,0,2061,2062,5,464,0,0,2062,2064,5,479,0,0,2063,2061,1,0,0,0, + 2063,2064,1,0,0,0,2064,2065,1,0,0,0,2065,2066,5,520,0,0,2066,2099, + 1,0,0,0,2067,2068,5,283,0,0,2068,2069,5,519,0,0,2069,2070,3,270, + 135,0,2070,2071,5,171,0,0,2071,2072,3,270,135,0,2072,2073,5,520, + 0,0,2073,2099,1,0,0,0,2074,2099,3,372,186,0,2075,2099,5,530,0,0, + 2076,2077,3,344,172,0,2077,2078,5,516,0,0,2078,2079,5,530,0,0,2079, + 2099,1,0,0,0,2080,2081,5,519,0,0,2081,2082,3,148,74,0,2082,2083, + 5,520,0,0,2083,2099,1,0,0,0,2084,2099,3,272,136,0,2085,2099,3,54, + 27,0,2086,2099,3,294,147,0,2087,2088,5,519,0,0,2088,2089,3,260,130, + 0,2089,2090,5,520,0,0,2090,2099,1,0,0,0,2091,2092,5,139,0,0,2092, + 2093,5,519,0,0,2093,2094,3,320,160,0,2094,2095,5,152,0,0,2095,2096, + 3,270,135,0,2096,2097,5,520,0,0,2097,2099,1,0,0,0,2098,2016,1,0, + 0,0,2098,2029,1,0,0,0,2098,2042,1,0,0,0,2098,2049,1,0,0,0,2098,2058, + 1,0,0,0,2098,2067,1,0,0,0,2098,2074,1,0,0,0,2098,2075,1,0,0,0,2098, + 2076,1,0,0,0,2098,2080,1,0,0,0,2098,2084,1,0,0,0,2098,2085,1,0,0, + 0,2098,2086,1,0,0,0,2098,2087,1,0,0,0,2098,2091,1,0,0,0,2099,2107, + 1,0,0,0,2100,2101,10,5,0,0,2101,2102,5,517,0,0,2102,2103,3,270,135, + 0,2103,2104,5,518,0,0,2104,2106,1,0,0,0,2105,2100,1,0,0,0,2106,2109, + 1,0,0,0,2107,2105,1,0,0,0,2107,2108,1,0,0,0,2108,275,1,0,0,0,2109, + 2107,1,0,0,0,2110,2111,3,344,172,0,2111,277,1,0,0,0,2112,2117,3, + 394,197,0,2113,2117,3,390,195,0,2114,2117,3,392,196,0,2115,2117, + 3,344,172,0,2116,2112,1,0,0,0,2116,2113,1,0,0,0,2116,2114,1,0,0, + 0,2116,2115,1,0,0,0,2117,279,1,0,0,0,2118,2119,3,392,196,0,2119, + 2120,5,540,0,0,2120,2123,1,0,0,0,2121,2123,3,298,149,0,2122,2118, + 1,0,0,0,2122,2121,1,0,0,0,2123,281,1,0,0,0,2124,2127,3,394,197,0, + 2125,2127,3,344,172,0,2126,2124,1,0,0,0,2126,2125,1,0,0,0,2127,283, + 1,0,0,0,2128,2137,3,388,194,0,2129,2137,3,386,193,0,2130,2137,3, + 384,192,0,2131,2137,3,260,130,0,2132,2137,3,286,143,0,2133,2137, + 3,288,144,0,2134,2137,3,290,145,0,2135,2137,3,292,146,0,2136,2128, + 1,0,0,0,2136,2129,1,0,0,0,2136,2130,1,0,0,0,2136,2131,1,0,0,0,2136, + 2132,1,0,0,0,2136,2133,1,0,0,0,2136,2134,1,0,0,0,2136,2135,1,0,0, + 0,2137,285,1,0,0,0,2138,2142,3,54,27,0,2139,2140,3,344,172,0,2140, + 2141,3,60,30,0,2141,2143,1,0,0,0,2142,2139,1,0,0,0,2142,2143,1,0, + 0,0,2143,2152,1,0,0,0,2144,2149,3,344,172,0,2145,2149,5,246,0,0, + 2146,2147,5,104,0,0,2147,2149,3,270,135,0,2148,2144,1,0,0,0,2148, + 2145,1,0,0,0,2148,2146,1,0,0,0,2149,2150,1,0,0,0,2150,2151,5,255, + 0,0,2151,2153,5,121,0,0,2152,2148,1,0,0,0,2152,2153,1,0,0,0,2153, + 2162,1,0,0,0,2154,2159,3,344,172,0,2155,2159,5,246,0,0,2156,2157, + 5,104,0,0,2157,2159,3,270,135,0,2158,2154,1,0,0,0,2158,2155,1,0, + 0,0,2158,2156,1,0,0,0,2159,2160,1,0,0,0,2160,2161,5,255,0,0,2161, + 2163,3,344,172,0,2162,2158,1,0,0,0,2162,2163,1,0,0,0,2163,287,1, + 0,0,0,2164,2176,3,54,27,0,2165,2171,5,438,0,0,2166,2168,5,436,0, + 0,2167,2169,3,344,172,0,2168,2167,1,0,0,0,2168,2169,1,0,0,0,2169, + 2171,1,0,0,0,2170,2165,1,0,0,0,2170,2166,1,0,0,0,2171,2173,1,0,0, + 0,2172,2174,5,13,0,0,2173,2172,1,0,0,0,2173,2174,1,0,0,0,2174,2175, + 1,0,0,0,2175,2177,3,344,172,0,2176,2170,1,0,0,0,2176,2177,1,0,0, + 0,2177,2182,1,0,0,0,2178,2179,3,266,133,0,2179,2180,5,255,0,0,2180, + 2181,5,121,0,0,2181,2183,1,0,0,0,2182,2178,1,0,0,0,2182,2183,1,0, + 0,0,2183,2188,1,0,0,0,2184,2185,3,266,133,0,2185,2186,5,255,0,0, + 2186,2187,3,344,172,0,2187,2189,1,0,0,0,2188,2184,1,0,0,0,2188,2189, + 1,0,0,0,2189,289,1,0,0,0,2190,2192,5,469,0,0,2191,2190,1,0,0,0,2191, + 2192,1,0,0,0,2192,2193,1,0,0,0,2193,2195,3,54,27,0,2194,2196,5,416, + 0,0,2195,2194,1,0,0,0,2195,2196,1,0,0,0,2196,2207,1,0,0,0,2197,2208, + 3,270,135,0,2198,2199,5,187,0,0,2199,2203,5,519,0,0,2200,2202,3, + 270,135,0,2201,2200,1,0,0,0,2202,2205,1,0,0,0,2203,2201,1,0,0,0, + 2203,2204,1,0,0,0,2204,2206,1,0,0,0,2205,2203,1,0,0,0,2206,2208, + 5,520,0,0,2207,2197,1,0,0,0,2207,2198,1,0,0,0,2208,2210,1,0,0,0, + 2209,2191,1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212, + 1,0,0,0,2212,2220,1,0,0,0,2213,2211,1,0,0,0,2214,2217,5,246,0,0, + 2215,2217,3,344,172,0,2216,2214,1,0,0,0,2216,2215,1,0,0,0,2217,2218, + 1,0,0,0,2218,2219,5,255,0,0,2219,2221,5,246,0,0,2220,2216,1,0,0, + 0,2220,2221,1,0,0,0,2221,291,1,0,0,0,2222,2224,3,270,135,0,2223, + 2222,1,0,0,0,2224,2227,1,0,0,0,2225,2223,1,0,0,0,2225,2226,1,0,0, + 0,2226,2234,1,0,0,0,2227,2225,1,0,0,0,2228,2231,5,246,0,0,2229,2231, + 3,344,172,0,2230,2228,1,0,0,0,2230,2229,1,0,0,0,2231,2232,1,0,0, + 0,2232,2233,5,255,0,0,2233,2235,5,246,0,0,2234,2230,1,0,0,0,2234, + 2235,1,0,0,0,2235,293,1,0,0,0,2236,2237,3,344,172,0,2237,295,1,0, + 0,0,2238,2241,3,320,160,0,2239,2241,3,294,147,0,2240,2238,1,0,0, + 0,2240,2239,1,0,0,0,2241,297,1,0,0,0,2242,2245,5,183,0,0,2243,2246, + 3,300,150,0,2244,2246,3,304,152,0,2245,2243,1,0,0,0,2245,2244,1, + 0,0,0,2245,2246,1,0,0,0,2246,299,1,0,0,0,2247,2249,3,302,151,0,2248, + 2250,3,306,153,0,2249,2248,1,0,0,0,2249,2250,1,0,0,0,2250,301,1, + 0,0,0,2251,2252,3,308,154,0,2252,2253,3,386,193,0,2253,2255,1,0, + 0,0,2254,2251,1,0,0,0,2255,2256,1,0,0,0,2256,2254,1,0,0,0,2256,2257, + 1,0,0,0,2257,303,1,0,0,0,2258,2261,3,306,153,0,2259,2262,3,302,151, + 0,2260,2262,3,306,153,0,2261,2259,1,0,0,0,2261,2260,1,0,0,0,2261, + 2262,1,0,0,0,2262,305,1,0,0,0,2263,2264,3,308,154,0,2264,2265,3, + 386,193,0,2265,2266,5,390,0,0,2266,2267,3,386,193,0,2267,307,1,0, + 0,0,2268,2270,7,34,0,0,2269,2268,1,0,0,0,2269,2270,1,0,0,0,2270, + 2271,1,0,0,0,2271,2274,7,35,0,0,2272,2274,5,540,0,0,2273,2269,1, + 0,0,0,2273,2272,1,0,0,0,2274,309,1,0,0,0,2275,2277,5,17,0,0,2276, + 2275,1,0,0,0,2276,2277,1,0,0,0,2277,2278,1,0,0,0,2278,2280,3,320, + 160,0,2279,2281,3,316,158,0,2280,2279,1,0,0,0,2280,2281,1,0,0,0, + 2281,311,1,0,0,0,2282,2283,3,320,160,0,2283,2284,3,314,157,0,2284, + 313,1,0,0,0,2285,2286,5,223,0,0,2286,2288,3,320,160,0,2287,2285, + 1,0,0,0,2288,2289,1,0,0,0,2289,2287,1,0,0,0,2289,2290,1,0,0,0,2290, + 2293,1,0,0,0,2291,2293,1,0,0,0,2292,2287,1,0,0,0,2292,2291,1,0,0, + 0,2293,315,1,0,0,0,2294,2295,5,519,0,0,2295,2296,3,318,159,0,2296, + 2297,5,520,0,0,2297,317,1,0,0,0,2298,2303,3,320,160,0,2299,2300, + 5,523,0,0,2300,2302,3,320,160,0,2301,2299,1,0,0,0,2302,2305,1,0, + 0,0,2303,2301,1,0,0,0,2303,2304,1,0,0,0,2304,319,1,0,0,0,2305,2303, + 1,0,0,0,2306,2310,3,322,161,0,2307,2310,3,324,162,0,2308,2310,3, + 396,198,0,2309,2306,1,0,0,0,2309,2307,1,0,0,0,2309,2308,1,0,0,0, + 2310,321,1,0,0,0,2311,2312,7,36,0,0,2312,323,1,0,0,0,2313,2314,5, + 540,0,0,2314,325,1,0,0,0,2315,2316,5,431,0,0,2316,2317,3,260,130, + 0,2317,2318,5,378,0,0,2318,2319,3,260,130,0,2319,327,1,0,0,0,2320, + 2321,3,320,160,0,2321,329,1,0,0,0,2322,2323,3,320,160,0,2323,331, + 1,0,0,0,2324,2327,3,320,160,0,2325,2326,5,516,0,0,2326,2328,3,320, + 160,0,2327,2325,1,0,0,0,2327,2328,1,0,0,0,2328,333,1,0,0,0,2329, + 2332,3,320,160,0,2330,2331,5,516,0,0,2331,2333,3,320,160,0,2332, + 2330,1,0,0,0,2332,2333,1,0,0,0,2333,335,1,0,0,0,2334,2337,3,320, + 160,0,2335,2336,5,516,0,0,2336,2338,3,320,160,0,2337,2335,1,0,0, + 0,2337,2338,1,0,0,0,2338,2347,1,0,0,0,2339,2340,3,320,160,0,2340, + 2341,5,516,0,0,2341,2344,3,320,160,0,2342,2343,5,516,0,0,2343,2345, + 3,320,160,0,2344,2342,1,0,0,0,2344,2345,1,0,0,0,2345,2347,1,0,0, + 0,2346,2334,1,0,0,0,2346,2339,1,0,0,0,2347,337,1,0,0,0,2348,2351, + 3,320,160,0,2349,2350,5,516,0,0,2350,2352,3,320,160,0,2351,2349, + 1,0,0,0,2351,2352,1,0,0,0,2352,2361,1,0,0,0,2353,2354,3,320,160, + 0,2354,2355,5,516,0,0,2355,2358,3,320,160,0,2356,2357,5,516,0,0, + 2357,2359,3,320,160,0,2358,2356,1,0,0,0,2358,2359,1,0,0,0,2359,2361, + 1,0,0,0,2360,2348,1,0,0,0,2360,2353,1,0,0,0,2361,339,1,0,0,0,2362, + 2365,3,320,160,0,2363,2364,5,516,0,0,2364,2366,3,320,160,0,2365, + 2363,1,0,0,0,2365,2366,1,0,0,0,2366,2375,1,0,0,0,2367,2368,3,320, + 160,0,2368,2369,5,516,0,0,2369,2372,3,320,160,0,2370,2371,5,516, + 0,0,2371,2373,3,320,160,0,2372,2370,1,0,0,0,2372,2373,1,0,0,0,2373, + 2375,1,0,0,0,2374,2362,1,0,0,0,2374,2367,1,0,0,0,2375,341,1,0,0, + 0,2376,2379,3,320,160,0,2377,2378,5,516,0,0,2378,2380,3,320,160, + 0,2379,2377,1,0,0,0,2379,2380,1,0,0,0,2380,2389,1,0,0,0,2381,2382, + 3,320,160,0,2382,2383,5,516,0,0,2383,2386,3,320,160,0,2384,2385, + 5,516,0,0,2385,2387,3,320,160,0,2386,2384,1,0,0,0,2386,2387,1,0, + 0,0,2387,2389,1,0,0,0,2388,2376,1,0,0,0,2388,2381,1,0,0,0,2389,343, + 1,0,0,0,2390,2395,3,320,160,0,2391,2392,5,516,0,0,2392,2394,3,320, + 160,0,2393,2391,1,0,0,0,2394,2397,1,0,0,0,2395,2393,1,0,0,0,2395, + 2396,1,0,0,0,2396,345,1,0,0,0,2397,2395,1,0,0,0,2398,2403,3,320, + 160,0,2399,2400,5,516,0,0,2400,2402,3,320,160,0,2401,2399,1,0,0, + 0,2402,2405,1,0,0,0,2403,2401,1,0,0,0,2403,2404,1,0,0,0,2404,2412, + 1,0,0,0,2405,2403,1,0,0,0,2406,2407,4,173,16,0,2407,2408,3,320,160, + 0,2408,2409,5,516,0,0,2409,2410,3,50,25,0,2410,2412,1,0,0,0,2411, + 2398,1,0,0,0,2411,2406,1,0,0,0,2412,347,1,0,0,0,2413,2414,5,436, + 0,0,2414,2415,3,354,177,0,2415,349,1,0,0,0,2416,2417,5,168,0,0,2417, + 2418,5,243,0,0,2418,2419,5,133,0,0,2419,351,1,0,0,0,2420,2421,5, + 168,0,0,2421,2422,5,133,0,0,2422,353,1,0,0,0,2423,2424,5,519,0,0, + 2424,2429,3,356,178,0,2425,2426,5,523,0,0,2426,2428,3,356,178,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,2432,1,0,0,0,2431,2429,1,0,0,0,2432,2433,5,520,0,0, + 2433,355,1,0,0,0,2434,2439,3,358,179,0,2435,2437,5,508,0,0,2436, + 2435,1,0,0,0,2436,2437,1,0,0,0,2437,2438,1,0,0,0,2438,2440,3,360, + 180,0,2439,2436,1,0,0,0,2439,2440,1,0,0,0,2440,357,1,0,0,0,2441, + 2445,3,320,160,0,2442,2445,3,294,147,0,2443,2445,5,540,0,0,2444, + 2441,1,0,0,0,2444,2442,1,0,0,0,2444,2443,1,0,0,0,2445,359,1,0,0, + 0,2446,2451,5,541,0,0,2447,2451,5,542,0,0,2448,2451,3,380,190,0, + 2449,2451,5,540,0,0,2450,2446,1,0,0,0,2450,2447,1,0,0,0,2450,2448, + 1,0,0,0,2450,2449,1,0,0,0,2451,361,1,0,0,0,2452,2459,5,10,0,0,2453, + 2454,5,514,0,0,2454,2459,5,514,0,0,2455,2459,5,259,0,0,2456,2457, + 5,513,0,0,2457,2459,5,513,0,0,2458,2452,1,0,0,0,2458,2453,1,0,0, + 0,2458,2455,1,0,0,0,2458,2456,1,0,0,0,2459,363,1,0,0,0,2460,2475, + 5,508,0,0,2461,2475,5,509,0,0,2462,2475,5,510,0,0,2463,2464,5,510, + 0,0,2464,2475,5,508,0,0,2465,2466,5,509,0,0,2466,2475,5,508,0,0, + 2467,2468,5,510,0,0,2468,2475,5,509,0,0,2469,2470,5,511,0,0,2470, + 2475,5,508,0,0,2471,2472,5,510,0,0,2472,2473,5,508,0,0,2473,2475, + 5,509,0,0,2474,2460,1,0,0,0,2474,2461,1,0,0,0,2474,2462,1,0,0,0, + 2474,2463,1,0,0,0,2474,2465,1,0,0,0,2474,2467,1,0,0,0,2474,2469, + 1,0,0,0,2474,2471,1,0,0,0,2475,365,1,0,0,0,2476,2477,5,510,0,0,2477, + 2484,5,510,0,0,2478,2479,5,509,0,0,2479,2484,5,509,0,0,2480,2484, + 5,514,0,0,2481,2484,5,515,0,0,2482,2484,5,513,0,0,2483,2476,1,0, + 0,0,2483,2478,1,0,0,0,2483,2480,1,0,0,0,2483,2481,1,0,0,0,2483,2482, + 1,0,0,0,2484,367,1,0,0,0,2485,2486,7,37,0,0,2486,369,1,0,0,0,2487, + 2488,7,38,0,0,2488,371,1,0,0,0,2489,2504,3,298,149,0,2490,2504,3, + 374,187,0,2491,2504,3,376,188,0,2492,2494,5,532,0,0,2493,2492,1, + 0,0,0,2493,2494,1,0,0,0,2494,2495,1,0,0,0,2495,2504,3,378,189,0, + 2496,2504,3,380,190,0,2497,2504,5,542,0,0,2498,2504,5,543,0,0,2499, + 2501,5,243,0,0,2500,2499,1,0,0,0,2500,2501,1,0,0,0,2501,2502,1,0, + 0,0,2502,2504,5,246,0,0,2503,2489,1,0,0,0,2503,2490,1,0,0,0,2503, + 2491,1,0,0,0,2503,2493,1,0,0,0,2503,2496,1,0,0,0,2503,2497,1,0,0, + 0,2503,2498,1,0,0,0,2503,2500,1,0,0,0,2504,373,1,0,0,0,2505,2506, + 3,384,192,0,2506,2507,3,376,188,0,2507,375,1,0,0,0,2508,2509,5,540, + 0,0,2509,377,1,0,0,0,2510,2511,5,541,0,0,2511,379,1,0,0,0,2512,2513, + 7,39,0,0,2513,381,1,0,0,0,2514,2515,7,40,0,0,2515,383,1,0,0,0,2516, + 2517,7,41,0,0,2517,385,1,0,0,0,2518,2519,7,42,0,0,2519,387,1,0,0, + 0,2520,2521,7,43,0,0,2521,389,1,0,0,0,2522,2523,7,44,0,0,2523,391, + 1,0,0,0,2524,2525,7,45,0,0,2525,393,1,0,0,0,2526,2527,7,46,0,0,2527, + 395,1,0,0,0,2528,2529,7,47,0,0,2529,397,1,0,0,0,314,401,408,411, + 425,441,445,454,459,466,477,486,498,501,508,511,519,523,528,531, + 538,546,550,562,570,574,606,609,614,618,622,626,635,640,644,648, + 653,663,668,672,677,683,688,693,697,701,708,715,723,731,735,739, + 743,747,751,755,759,763,765,775,783,807,821,826,830,836,839,842, + 849,852,859,869,890,895,899,907,911,917,927,932,938,942,946,950, + 959,963,970,973,983,989,997,1001,1017,1033,1044,1048,1055,1060,1066, + 1070,1077,1081,1085,1089,1097,1101,1106,1112,1119,1122,1126,1134, + 1143,1150,1161,1173,1188,1191,1195,1198,1200,1205,1209,1212,1216, + 1225,1234,1244,1249,1258,1261,1264,1267,1270,1276,1280,1289,1296, + 1299,1303,1308,1311,1315,1324,1331,1334,1338,1341,1343,1350,1355, + 1371,1382,1387,1395,1398,1401,1406,1408,1410,1415,1418,1422,1426, + 1430,1439,1450,1475,1497,1511,1513,1517,1522,1531,1544,1556,1569, + 1575,1595,1603,1607,1610,1613,1620,1623,1626,1629,1632,1635,1640, + 1643,1652,1657,1660,1664,1669,1675,1680,1684,1703,1711,1719,1723, + 1727,1737,1763,1771,1789,1802,1810,1827,1829,1840,1843,1845,1849, + 1853,1860,1869,1875,1888,1895,1900,1906,1913,1920,1922,1932,1935, + 1947,1952,1955,1961,1963,1969,1990,1992,2000,2007,2010,2014,2021, + 2025,2034,2038,2054,2063,2098,2107,2116,2122,2126,2136,2142,2148, + 2152,2158,2162,2168,2170,2173,2176,2182,2188,2191,2195,2203,2207, + 2211,2216,2220,2225,2230,2234,2240,2245,2249,2256,2261,2269,2273, + 2276,2280,2289,2292,2303,2309,2327,2332,2337,2344,2346,2351,2358, + 2360,2365,2372,2374,2379,2386,2388,2395,2403,2411,2429,2436,2439, + 2444,2450,2458,2474,2483,2493,2500,2503 ]; private static __ATN: antlr.ATN; @@ -14897,9 +14522,6 @@ export class SingleStatementContext extends antlr.ParserRuleContext { public SEMICOLON(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.SEMICOLON, 0); } - public emptyStatement(): EmptyStatementContext | null { - return this.getRuleContext(0, EmptyStatementContext); - } public override get ruleIndex(): number { return FlinkSqlParser.RULE_singleStatement; } @@ -14986,36 +14608,6 @@ export class SqlStatementContext extends antlr.ParserRuleContext { } -export class EmptyStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public SEMICOLON(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.SEMICOLON, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_emptyStatement; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterEmptyStatement) { - listener.enterEmptyStatement(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitEmptyStatement) { - listener.exitEmptyStatement(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitEmptyStatement) { - return visitor.visitEmptyStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class DdlStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -15623,8 +15215,8 @@ export class JarStatementContext extends antlr.ParserRuleContext { public KW_JAR(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.KW_JAR, 0)!; } - public jarFileName(): JarFileNameContext { - return this.getRuleContext(0, JarFileNameContext)!; + public STRING_LITERAL(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0)!; } public KW_ADD(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_ADD, 0); @@ -15834,8 +15426,14 @@ export class SimpleCreateTableContext extends antlr.ParserRuleContext { public tablePathCreate(): TablePathCreateContext { return this.getRuleContext(0, TablePathCreateContext)!; } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; + public LR_BRACKET(): antlr.TerminalNode[]; + public LR_BRACKET(i: number): antlr.TerminalNode | null; + public LR_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.LR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.LR_BRACKET, i); + } } public columnOptionDefinition(): ColumnOptionDefinitionContext[]; public columnOptionDefinition(i: number): ColumnOptionDefinitionContext | null; @@ -15846,8 +15444,14 @@ export class SimpleCreateTableContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ColumnOptionDefinitionContext); } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + public RR_BRACKET(): antlr.TerminalNode[]; + public RR_BRACKET(i: number): antlr.TerminalNode | null; + public RR_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.RR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.RR_BRACKET, i); + } } public withOption(): WithOptionContext { return this.getRuleContext(0, WithOptionContext)!; @@ -15879,8 +15483,20 @@ export class SimpleCreateTableContext extends antlr.ParserRuleContext { public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_COMMENT, 0); } - public partitionDefinition(): PartitionDefinitionContext | null { - return this.getRuleContext(0, PartitionDefinitionContext); + public KW_PARTITIONED(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_PARTITIONED, 0); + } + public KW_BY(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_BY, 0); + } + public transform(): TransformContext[]; + public transform(i: number): TransformContext | null; + public transform(i?: number): TransformContext[] | TransformContext | null { + if (i === undefined) { + return this.getRuleContexts(TransformContext); + } + + return this.getRuleContext(i, TransformContext); } public likeDefinition(): LikeDefinitionContext | null { return this.getRuleContext(0, LikeDefinitionContext); @@ -16724,8 +16340,8 @@ export class MetadataColumnDefinitionContext extends antlr.ParserRuleContext { public KW_FROM(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_FROM, 0); } - public metadataKey(): MetadataKeyContext | null { - return this.getRuleContext(0, MetadataKeyContext); + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); } public KW_VIRTUAL(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_VIRTUAL, 0); @@ -16753,36 +16369,6 @@ export class MetadataColumnDefinitionContext extends antlr.ParserRuleContext { } -export class MetadataKeyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public STRING_LITERAL(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.STRING_LITERAL, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_metadataKey; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterMetadataKey) { - listener.enterMetadataKey(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitMetadataKey) { - listener.exitMetadataKey(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitMetadataKey) { - return visitor.visitMetadataKey(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ComputedColumnDefinitionContext extends antlr.ParserRuleContext { public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -16794,8 +16380,8 @@ export class ComputedColumnDefinitionContext extends antlr.ParserRuleContext { public KW_AS(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.KW_AS, 0)!; } - public computedColumnExpression(): ComputedColumnExpressionContext { - return this.getRuleContext(0, ComputedColumnExpressionContext)!; + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; } public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_COMMENT, 0); @@ -16826,36 +16412,6 @@ export class ComputedColumnDefinitionContext extends antlr.ParserRuleContext { } -export class ComputedColumnExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_computedColumnExpression; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterComputedColumnExpression) { - listener.enterComputedColumnExpression(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitComputedColumnExpression) { - listener.exitComputedColumnExpression(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitComputedColumnExpression) { - return visitor.visitComputedColumnExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class WatermarkDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -16984,114 +16540,27 @@ export class SelfDefinitionClauseContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.KW_PERIOD, 0)!; } public KW_FOR(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_FOR, 0)!; - } - public KW_SYSTEM_TIME(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_SYSTEM_TIME, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_selfDefinitionClause; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterSelfDefinitionClause) { - listener.enterSelfDefinitionClause(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitSelfDefinitionClause) { - listener.exitSelfDefinitionClause(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitSelfDefinitionClause) { - return visitor.visitSelfDefinitionClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PartitionDefinitionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_PARTITIONED(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_PARTITIONED, 0)!; - } - public KW_BY(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_BY, 0)!; - } - public transformList(): TransformListContext { - return this.getRuleContext(0, TransformListContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_partitionDefinition; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterPartitionDefinition) { - listener.enterPartitionDefinition(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitPartitionDefinition) { - listener.exitPartitionDefinition(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitPartitionDefinition) { - return visitor.visitPartitionDefinition(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TransformListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; - } - public transform(): TransformContext[]; - public transform(i: number): TransformContext | null; - public transform(i?: number): TransformContext[] | TransformContext | null { - if (i === undefined) { - return this.getRuleContexts(TransformContext); - } - - return this.getRuleContext(i, TransformContext); - } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + return this.getToken(FlinkSqlParser.KW_FOR, 0)!; } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } + public KW_SYSTEM_TIME(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_SYSTEM_TIME, 0)!; } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_transformList; + return FlinkSqlParser.RULE_selfDefinitionClause; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterTransformList) { - listener.enterTransformList(this); + if(listener.enterSelfDefinitionClause) { + listener.enterSelfDefinitionClause(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitTransformList) { - listener.exitTransformList(this); + if(listener.exitSelfDefinitionClause) { + listener.exitSelfDefinitionClause(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitTransformList) { - return visitor.visitTransformList(this); + if (visitor.visitSelfDefinitionClause) { + return visitor.visitSelfDefinitionClause(this); } else { return visitor.visitChildren(this); } @@ -17548,14 +17017,14 @@ export class UsingClauseContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.KW_JAR, i); } } - public jarFileName(): JarFileNameContext[]; - public jarFileName(i: number): JarFileNameContext | null; - public jarFileName(i?: number): JarFileNameContext[] | JarFileNameContext | null { - if (i === undefined) { - return this.getRuleContexts(JarFileNameContext); - } - - return this.getRuleContext(i, JarFileNameContext); + public STRING_LITERAL(): antlr.TerminalNode[]; + public STRING_LITERAL(i: number): antlr.TerminalNode | null; + public STRING_LITERAL(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.STRING_LITERAL); + } else { + return this.getToken(FlinkSqlParser.STRING_LITERAL, i); + } } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -17589,36 +17058,6 @@ export class UsingClauseContext extends antlr.ParserRuleContext { } -export class JarFileNameContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public STRING_LITERAL(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.STRING_LITERAL, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_jarFileName; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterJarFileName) { - listener.enterJarFileName(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitJarFileName) { - listener.exitJarFileName(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitJarFileName) { - return visitor.visitJarFileName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class AlterTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -17770,8 +17209,11 @@ export class AddConstraintContext extends antlr.ParserRuleContext { public columnNameList(): ColumnNameListContext { return this.getRuleContext(0, ColumnNameListContext)!; } - public notForced(): NotForcedContext | null { - return this.getRuleContext(0, NotForcedContext); + public KW_NOT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_NOT, 0); + } + public KW_ENFORCED(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ENFORCED, 0); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_addConstraint; @@ -17868,39 +17310,6 @@ export class AddUniqueContext extends antlr.ParserRuleContext { } -export class NotForcedContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NOT(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_NOT, 0)!; - } - public KW_ENFORCED(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_ENFORCED, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_notForced; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterNotForced) { - listener.enterNotForced(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitNotForced) { - listener.exitNotForced(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitNotForced) { - return visitor.visitNotForced(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class AlterViewContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -18323,8 +17732,11 @@ export class InsertSimpleStatementContext extends antlr.ParserRuleContext { public valuesDefinition(): ValuesDefinitionContext | null { return this.getRuleContext(0, ValuesDefinitionContext); } - public insertPartitionDefinition(): InsertPartitionDefinitionContext | null { - return this.getRuleContext(0, InsertPartitionDefinitionContext); + public KW_PARTITION(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_PARTITION, 0); + } + public tablePropertyList(): TablePropertyListContext | null { + return this.getRuleContext(0, TablePropertyListContext); } public columnNameList(): ColumnNameListContext | null { return this.getRuleContext(0, ColumnNameListContext); @@ -18352,39 +17764,6 @@ export class InsertSimpleStatementContext extends antlr.ParserRuleContext { } -export class InsertPartitionDefinitionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_PARTITION(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_PARTITION, 0)!; - } - public tablePropertyList(): TablePropertyListContext { - return this.getRuleContext(0, TablePropertyListContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_insertPartitionDefinition; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterInsertPartitionDefinition) { - listener.enterInsertPartitionDefinition(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitInsertPartitionDefinition) { - listener.exitInsertPartitionDefinition(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitInsertPartitionDefinition) { - return visitor.visitInsertPartitionDefinition(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ValuesDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -18806,8 +18185,8 @@ export class WithItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public withItemName(): WithItemNameContext { - return this.getRuleContext(0, WithItemNameContext)!; + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } public KW_AS(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.KW_AS, 0)!; @@ -18874,36 +18253,6 @@ export class WithItemContext extends antlr.ParserRuleContext { } -export class WithItemNameContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_withItemName; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterWithItemName) { - listener.enterWithItemName(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitWithItemName) { - listener.exitWithItemName(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitWithItemName) { - return visitor.visitWithItemName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class SelectStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19645,8 +18994,8 @@ export class SystemTimePeriodContext extends antlr.ParserRuleContext { public KW_OF(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.KW_OF, 0)!; } - public dateTimeExpression(): DateTimeExpressionContext { - return this.getRuleContext(0, DateTimeExpressionContext)!; + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; } public override get ruleIndex(): number { return FlinkSqlParser.RULE_systemTimePeriod; @@ -19671,36 +19020,6 @@ export class SystemTimePeriodContext extends antlr.ParserRuleContext { } -export class DateTimeExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_dateTimeExpression; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterDateTimeExpression) { - listener.enterDateTimeExpression(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitDateTimeExpression) { - listener.exitDateTimeExpression(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitDateTimeExpression) { - return visitor.visitDateTimeExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class InlineDataValueClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19876,8 +19195,8 @@ export class WindowTVFParamContext extends antlr.ParserRuleContext { public KW_TABLE(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_TABLE, 0); } - public timeAttrColumn(): TimeAttrColumnContext | null { - return this.getRuleContext(0, TimeAttrColumnContext); + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); } public columnDescriptor(): ColumnDescriptorContext | null { return this.getRuleContext(0, ColumnDescriptorContext); @@ -20176,11 +19495,17 @@ export class GroupItemDefinitionContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.COMMA, i); } } - public groupingSetsNotationName(): GroupingSetsNotationNameContext | null { - return this.getRuleContext(0, GroupingSetsNotationNameContext); + public KW_CUBE(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CUBE, 0); + } + public KW_ROLLUP(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ROLLUP, 0); + } + public KW_GROUPING(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_GROUPING, 0); } - public groupingSets(): GroupingSetsContext | null { - return this.getRuleContext(0, GroupingSetsContext); + public KW_SETS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_SETS, 0); } public groupItemDefinition(): GroupItemDefinitionContext[]; public groupItemDefinition(i: number): GroupItemDefinitionContext | null; @@ -20214,72 +19539,6 @@ export class GroupItemDefinitionContext extends antlr.ParserRuleContext { } -export class GroupingSetsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_GROUPING(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_GROUPING, 0)!; - } - public KW_SETS(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_SETS, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_groupingSets; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterGroupingSets) { - listener.enterGroupingSets(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitGroupingSets) { - listener.exitGroupingSets(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitGroupingSets) { - return visitor.visitGroupingSets(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class GroupingSetsNotationNameContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_CUBE(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_CUBE, 0); - } - public KW_ROLLUP(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_ROLLUP, 0); - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_groupingSetsNotationName; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterGroupingSetsNotationName) { - listener.enterGroupingSetsNotationName(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitGroupingSetsNotationName) { - listener.exitGroupingSetsNotationName(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitGroupingSetsNotationName) { - return visitor.visitGroupingSetsNotationName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class GroupWindowFunctionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -20290,8 +19549,8 @@ export class GroupWindowFunctionContext extends antlr.ParserRuleContext { public LR_BRACKET(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; } - public timeAttrColumn(): TimeAttrColumnContext { - return this.getRuleContext(0, TimeAttrColumnContext)!; + public uid(): UidContext { + return this.getRuleContext(0, UidContext)!; } public COMMA(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.COMMA, 0)!; @@ -20361,36 +19620,6 @@ export class GroupWindowFunctionNameContext extends antlr.ParserRuleContext { } -export class TimeAttrColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public uid(): UidContext { - return this.getRuleContext(0, UidContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_timeAttrColumn; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterTimeAttrColumn) { - listener.enterTimeAttrColumn(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitTimeAttrColumn) { - listener.exitTimeAttrColumn(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitTimeAttrColumn) { - return visitor.visitTimeAttrColumn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class HavingClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23168,36 +22397,6 @@ export class DereferenceDefinitionContext extends antlr.ParserRuleContext { } -export class CorrelationNameContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_correlationName; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterCorrelationName) { - listener.enterCorrelationName(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitCorrelationName) { - listener.exitCorrelationName(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitCorrelationName) { - return visitor.visitCorrelationName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class QualifiedNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index d286c680..e264b3a6 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -11,7 +11,6 @@ import { SQLParserBase } from '../SQLParserBase'; import { ProgramContext } from "./FlinkSqlParser.js"; import { SingleStatementContext } from "./FlinkSqlParser.js"; import { SqlStatementContext } from "./FlinkSqlParser.js"; -import { EmptyStatementContext } from "./FlinkSqlParser.js"; import { DdlStatementContext } from "./FlinkSqlParser.js"; import { DmlStatementContext } from "./FlinkSqlParser.js"; import { DescribeStatementContext } from "./FlinkSqlParser.js"; @@ -48,15 +47,11 @@ import { MapTypeDimensionContext } from "./FlinkSqlParser.js"; import { RowTypeDimensionContext } from "./FlinkSqlParser.js"; import { ColumnConstraintContext } from "./FlinkSqlParser.js"; import { MetadataColumnDefinitionContext } from "./FlinkSqlParser.js"; -import { MetadataKeyContext } from "./FlinkSqlParser.js"; import { ComputedColumnDefinitionContext } from "./FlinkSqlParser.js"; -import { ComputedColumnExpressionContext } from "./FlinkSqlParser.js"; import { WatermarkDefinitionContext } from "./FlinkSqlParser.js"; import { TableConstraintContext } from "./FlinkSqlParser.js"; import { ConstraintNameContext } from "./FlinkSqlParser.js"; import { SelfDefinitionClauseContext } from "./FlinkSqlParser.js"; -import { PartitionDefinitionContext } from "./FlinkSqlParser.js"; -import { TransformListContext } from "./FlinkSqlParser.js"; import { IdentityTransformContext } from "./FlinkSqlParser.js"; import { ApplyTransformContext } from "./FlinkSqlParser.js"; import { TransformArgumentContext } from "./FlinkSqlParser.js"; @@ -67,14 +62,12 @@ import { CreateDatabaseContext } from "./FlinkSqlParser.js"; import { CreateViewContext } from "./FlinkSqlParser.js"; import { CreateFunctionContext } from "./FlinkSqlParser.js"; import { UsingClauseContext } from "./FlinkSqlParser.js"; -import { JarFileNameContext } from "./FlinkSqlParser.js"; import { AlterTableContext } from "./FlinkSqlParser.js"; import { RenameDefinitionContext } from "./FlinkSqlParser.js"; import { SetKeyValueDefinitionContext } from "./FlinkSqlParser.js"; import { AddConstraintContext } from "./FlinkSqlParser.js"; import { DropConstraintContext } from "./FlinkSqlParser.js"; import { AddUniqueContext } from "./FlinkSqlParser.js"; -import { NotForcedContext } from "./FlinkSqlParser.js"; import { AlterViewContext } from "./FlinkSqlParser.js"; import { AlterDatabaseContext } from "./FlinkSqlParser.js"; import { AlterFunctionContext } from "./FlinkSqlParser.js"; @@ -85,7 +78,6 @@ import { DropViewContext } from "./FlinkSqlParser.js"; import { DropFunctionContext } from "./FlinkSqlParser.js"; import { InsertStatementContext } from "./FlinkSqlParser.js"; import { InsertSimpleStatementContext } from "./FlinkSqlParser.js"; -import { InsertPartitionDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesRowDefinitionContext } from "./FlinkSqlParser.js"; import { ValueDefinitionContext } from "./FlinkSqlParser.js"; @@ -95,7 +87,6 @@ import { QueryStatementContext } from "./FlinkSqlParser.js"; import { ValuesClauseContext } from "./FlinkSqlParser.js"; import { WithClauseContext } from "./FlinkSqlParser.js"; import { WithItemContext } from "./FlinkSqlParser.js"; -import { WithItemNameContext } from "./FlinkSqlParser.js"; import { SelectStatementContext } from "./FlinkSqlParser.js"; import { SelectClauseContext } from "./FlinkSqlParser.js"; import { SelectListContext } from "./FlinkSqlParser.js"; @@ -114,7 +105,6 @@ import { TablePrimaryContext } from "./FlinkSqlParser.js"; import { AtomFunctionTableContext } from "./FlinkSqlParser.js"; import { AtomExpressionTableContext } from "./FlinkSqlParser.js"; import { SystemTimePeriodContext } from "./FlinkSqlParser.js"; -import { DateTimeExpressionContext } from "./FlinkSqlParser.js"; import { InlineDataValueClauseContext } from "./FlinkSqlParser.js"; import { WindowTVFClauseContext } from "./FlinkSqlParser.js"; import { WindowTVFExpressionContext } from "./FlinkSqlParser.js"; @@ -126,11 +116,8 @@ import { JoinConditionContext } from "./FlinkSqlParser.js"; import { WhereClauseContext } from "./FlinkSqlParser.js"; import { GroupByClauseContext } from "./FlinkSqlParser.js"; import { GroupItemDefinitionContext } from "./FlinkSqlParser.js"; -import { GroupingSetsContext } from "./FlinkSqlParser.js"; -import { GroupingSetsNotationNameContext } from "./FlinkSqlParser.js"; import { GroupWindowFunctionContext } from "./FlinkSqlParser.js"; import { GroupWindowFunctionNameContext } from "./FlinkSqlParser.js"; -import { TimeAttrColumnContext } from "./FlinkSqlParser.js"; import { HavingClauseContext } from "./FlinkSqlParser.js"; import { WindowClauseContext } from "./FlinkSqlParser.js"; import { NamedWindowContext } from "./FlinkSqlParser.js"; @@ -191,7 +178,6 @@ import { JsonQueryParamsContext } from "./FlinkSqlParser.js"; import { JsonObjectParamsContext } from "./FlinkSqlParser.js"; import { JsonArrayParamsContext } from "./FlinkSqlParser.js"; import { DereferenceDefinitionContext } from "./FlinkSqlParser.js"; -import { CorrelationNameContext } from "./FlinkSqlParser.js"; import { QualifiedNameContext } from "./FlinkSqlParser.js"; import { TimeIntervalExpressionContext } from "./FlinkSqlParser.js"; import { ErrorCapturingMultiUnitsIntervalContext } from "./FlinkSqlParser.js"; @@ -283,16 +269,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSqlStatement?: (ctx: SqlStatementContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.emptyStatement`. - * @param ctx the parse tree - */ - enterEmptyStatement?: (ctx: EmptyStatementContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.emptyStatement`. - * @param ctx the parse tree - */ - exitEmptyStatement?: (ctx: EmptyStatementContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.ddlStatement`. * @param ctx the parse tree @@ -653,16 +629,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitMetadataColumnDefinition?: (ctx: MetadataColumnDefinitionContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.metadataKey`. - * @param ctx the parse tree - */ - enterMetadataKey?: (ctx: MetadataKeyContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.metadataKey`. - * @param ctx the parse tree - */ - exitMetadataKey?: (ctx: MetadataKeyContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.computedColumnDefinition`. * @param ctx the parse tree @@ -673,16 +639,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitComputedColumnDefinition?: (ctx: ComputedColumnDefinitionContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.computedColumnExpression`. - * @param ctx the parse tree - */ - enterComputedColumnExpression?: (ctx: ComputedColumnExpressionContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.computedColumnExpression`. - * @param ctx the parse tree - */ - exitComputedColumnExpression?: (ctx: ComputedColumnExpressionContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.watermarkDefinition`. * @param ctx the parse tree @@ -723,26 +679,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelfDefinitionClause?: (ctx: SelfDefinitionClauseContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.partitionDefinition`. - * @param ctx the parse tree - */ - enterPartitionDefinition?: (ctx: PartitionDefinitionContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.partitionDefinition`. - * @param ctx the parse tree - */ - exitPartitionDefinition?: (ctx: PartitionDefinitionContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.transformList`. - * @param ctx the parse tree - */ - enterTransformList?: (ctx: TransformListContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.transformList`. - * @param ctx the parse tree - */ - exitTransformList?: (ctx: TransformListContext) => void; /** * Enter a parse tree produced by the `identityTransform` * labeled alternative in `FlinkSqlParser.transform`. @@ -847,16 +783,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUsingClause?: (ctx: UsingClauseContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.jarFileName`. - * @param ctx the parse tree - */ - enterJarFileName?: (ctx: JarFileNameContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.jarFileName`. - * @param ctx the parse tree - */ - exitJarFileName?: (ctx: JarFileNameContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.alterTable`. * @param ctx the parse tree @@ -917,16 +843,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitAddUnique?: (ctx: AddUniqueContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.notForced`. - * @param ctx the parse tree - */ - enterNotForced?: (ctx: NotForcedContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.notForced`. - * @param ctx the parse tree - */ - exitNotForced?: (ctx: NotForcedContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.alterView`. * @param ctx the parse tree @@ -1027,16 +943,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitInsertSimpleStatement?: (ctx: InsertSimpleStatementContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.insertPartitionDefinition`. - * @param ctx the parse tree - */ - enterInsertPartitionDefinition?: (ctx: InsertPartitionDefinitionContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.insertPartitionDefinition`. - * @param ctx the parse tree - */ - exitInsertPartitionDefinition?: (ctx: InsertPartitionDefinitionContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.valuesDefinition`. * @param ctx the parse tree @@ -1127,16 +1033,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitWithItem?: (ctx: WithItemContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.withItemName`. - * @param ctx the parse tree - */ - enterWithItemName?: (ctx: WithItemNameContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.withItemName`. - * @param ctx the parse tree - */ - exitWithItemName?: (ctx: WithItemNameContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.selectStatement`. * @param ctx the parse tree @@ -1317,16 +1213,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSystemTimePeriod?: (ctx: SystemTimePeriodContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.dateTimeExpression`. - * @param ctx the parse tree - */ - enterDateTimeExpression?: (ctx: DateTimeExpressionContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.dateTimeExpression`. - * @param ctx the parse tree - */ - exitDateTimeExpression?: (ctx: DateTimeExpressionContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.inlineDataValueClause`. * @param ctx the parse tree @@ -1437,26 +1323,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitGroupItemDefinition?: (ctx: GroupItemDefinitionContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.groupingSets`. - * @param ctx the parse tree - */ - enterGroupingSets?: (ctx: GroupingSetsContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.groupingSets`. - * @param ctx the parse tree - */ - exitGroupingSets?: (ctx: GroupingSetsContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.groupingSetsNotationName`. - * @param ctx the parse tree - */ - enterGroupingSetsNotationName?: (ctx: GroupingSetsNotationNameContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.groupingSetsNotationName`. - * @param ctx the parse tree - */ - exitGroupingSetsNotationName?: (ctx: GroupingSetsNotationNameContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.groupWindowFunction`. * @param ctx the parse tree @@ -1477,16 +1343,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitGroupWindowFunctionName?: (ctx: GroupWindowFunctionNameContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.timeAttrColumn`. - * @param ctx the parse tree - */ - enterTimeAttrColumn?: (ctx: TimeAttrColumnContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.timeAttrColumn`. - * @param ctx the parse tree - */ - exitTimeAttrColumn?: (ctx: TimeAttrColumnContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.havingClause`. * @param ctx the parse tree @@ -2135,16 +1991,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDereferenceDefinition?: (ctx: DereferenceDefinitionContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.correlationName`. - * @param ctx the parse tree - */ - enterCorrelationName?: (ctx: CorrelationNameContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.correlationName`. - * @param ctx the parse tree - */ - exitCorrelationName?: (ctx: CorrelationNameContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.qualifiedName`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 08f2c060..b8d2196f 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -11,7 +11,6 @@ import { SQLParserBase } from '../SQLParserBase'; import { ProgramContext } from "./FlinkSqlParser.js"; import { SingleStatementContext } from "./FlinkSqlParser.js"; import { SqlStatementContext } from "./FlinkSqlParser.js"; -import { EmptyStatementContext } from "./FlinkSqlParser.js"; import { DdlStatementContext } from "./FlinkSqlParser.js"; import { DmlStatementContext } from "./FlinkSqlParser.js"; import { DescribeStatementContext } from "./FlinkSqlParser.js"; @@ -48,15 +47,11 @@ import { MapTypeDimensionContext } from "./FlinkSqlParser.js"; import { RowTypeDimensionContext } from "./FlinkSqlParser.js"; import { ColumnConstraintContext } from "./FlinkSqlParser.js"; import { MetadataColumnDefinitionContext } from "./FlinkSqlParser.js"; -import { MetadataKeyContext } from "./FlinkSqlParser.js"; import { ComputedColumnDefinitionContext } from "./FlinkSqlParser.js"; -import { ComputedColumnExpressionContext } from "./FlinkSqlParser.js"; import { WatermarkDefinitionContext } from "./FlinkSqlParser.js"; import { TableConstraintContext } from "./FlinkSqlParser.js"; import { ConstraintNameContext } from "./FlinkSqlParser.js"; import { SelfDefinitionClauseContext } from "./FlinkSqlParser.js"; -import { PartitionDefinitionContext } from "./FlinkSqlParser.js"; -import { TransformListContext } from "./FlinkSqlParser.js"; import { IdentityTransformContext } from "./FlinkSqlParser.js"; import { ApplyTransformContext } from "./FlinkSqlParser.js"; import { TransformArgumentContext } from "./FlinkSqlParser.js"; @@ -67,14 +62,12 @@ import { CreateDatabaseContext } from "./FlinkSqlParser.js"; import { CreateViewContext } from "./FlinkSqlParser.js"; import { CreateFunctionContext } from "./FlinkSqlParser.js"; import { UsingClauseContext } from "./FlinkSqlParser.js"; -import { JarFileNameContext } from "./FlinkSqlParser.js"; import { AlterTableContext } from "./FlinkSqlParser.js"; import { RenameDefinitionContext } from "./FlinkSqlParser.js"; import { SetKeyValueDefinitionContext } from "./FlinkSqlParser.js"; import { AddConstraintContext } from "./FlinkSqlParser.js"; import { DropConstraintContext } from "./FlinkSqlParser.js"; import { AddUniqueContext } from "./FlinkSqlParser.js"; -import { NotForcedContext } from "./FlinkSqlParser.js"; import { AlterViewContext } from "./FlinkSqlParser.js"; import { AlterDatabaseContext } from "./FlinkSqlParser.js"; import { AlterFunctionContext } from "./FlinkSqlParser.js"; @@ -85,7 +78,6 @@ import { DropViewContext } from "./FlinkSqlParser.js"; import { DropFunctionContext } from "./FlinkSqlParser.js"; import { InsertStatementContext } from "./FlinkSqlParser.js"; import { InsertSimpleStatementContext } from "./FlinkSqlParser.js"; -import { InsertPartitionDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesRowDefinitionContext } from "./FlinkSqlParser.js"; import { ValueDefinitionContext } from "./FlinkSqlParser.js"; @@ -95,7 +87,6 @@ import { QueryStatementContext } from "./FlinkSqlParser.js"; import { ValuesClauseContext } from "./FlinkSqlParser.js"; import { WithClauseContext } from "./FlinkSqlParser.js"; import { WithItemContext } from "./FlinkSqlParser.js"; -import { WithItemNameContext } from "./FlinkSqlParser.js"; import { SelectStatementContext } from "./FlinkSqlParser.js"; import { SelectClauseContext } from "./FlinkSqlParser.js"; import { SelectListContext } from "./FlinkSqlParser.js"; @@ -114,7 +105,6 @@ import { TablePrimaryContext } from "./FlinkSqlParser.js"; import { AtomFunctionTableContext } from "./FlinkSqlParser.js"; import { AtomExpressionTableContext } from "./FlinkSqlParser.js"; import { SystemTimePeriodContext } from "./FlinkSqlParser.js"; -import { DateTimeExpressionContext } from "./FlinkSqlParser.js"; import { InlineDataValueClauseContext } from "./FlinkSqlParser.js"; import { WindowTVFClauseContext } from "./FlinkSqlParser.js"; import { WindowTVFExpressionContext } from "./FlinkSqlParser.js"; @@ -126,11 +116,8 @@ import { JoinConditionContext } from "./FlinkSqlParser.js"; import { WhereClauseContext } from "./FlinkSqlParser.js"; import { GroupByClauseContext } from "./FlinkSqlParser.js"; import { GroupItemDefinitionContext } from "./FlinkSqlParser.js"; -import { GroupingSetsContext } from "./FlinkSqlParser.js"; -import { GroupingSetsNotationNameContext } from "./FlinkSqlParser.js"; import { GroupWindowFunctionContext } from "./FlinkSqlParser.js"; import { GroupWindowFunctionNameContext } from "./FlinkSqlParser.js"; -import { TimeAttrColumnContext } from "./FlinkSqlParser.js"; import { HavingClauseContext } from "./FlinkSqlParser.js"; import { WindowClauseContext } from "./FlinkSqlParser.js"; import { NamedWindowContext } from "./FlinkSqlParser.js"; @@ -191,7 +178,6 @@ import { JsonQueryParamsContext } from "./FlinkSqlParser.js"; import { JsonObjectParamsContext } from "./FlinkSqlParser.js"; import { JsonArrayParamsContext } from "./FlinkSqlParser.js"; import { DereferenceDefinitionContext } from "./FlinkSqlParser.js"; -import { CorrelationNameContext } from "./FlinkSqlParser.js"; import { QualifiedNameContext } from "./FlinkSqlParser.js"; import { TimeIntervalExpressionContext } from "./FlinkSqlParser.js"; import { ErrorCapturingMultiUnitsIntervalContext } from "./FlinkSqlParser.js"; @@ -274,12 +260,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.emptyStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEmptyStatement?: (ctx: EmptyStatementContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.ddlStatement`. * @param ctx the parse tree @@ -496,24 +476,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.metadataKey`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMetadataKey?: (ctx: MetadataKeyContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.computedColumnDefinition`. * @param ctx the parse tree * @return the visitor result */ visitComputedColumnDefinition?: (ctx: ComputedColumnDefinitionContext) => Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.computedColumnExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComputedColumnExpression?: (ctx: ComputedColumnExpressionContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.watermarkDefinition`. * @param ctx the parse tree @@ -538,18 +506,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.partitionDefinition`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPartitionDefinition?: (ctx: PartitionDefinitionContext) => Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.transformList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTransformList?: (ctx: TransformListContext) => Result; /** * Visit a parse tree produced by the `identityTransform` * labeled alternative in `FlinkSqlParser.transform`. @@ -612,12 +568,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.jarFileName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitJarFileName?: (ctx: JarFileNameContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.alterTable`. * @param ctx the parse tree @@ -654,12 +604,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.notForced`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNotForced?: (ctx: NotForcedContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.alterView`. * @param ctx the parse tree @@ -720,12 +664,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.insertPartitionDefinition`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInsertPartitionDefinition?: (ctx: InsertPartitionDefinitionContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.valuesDefinition`. * @param ctx the parse tree @@ -780,12 +718,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.withItemName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWithItemName?: (ctx: WithItemNameContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.selectStatement`. * @param ctx the parse tree @@ -894,12 +826,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.dateTimeExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDateTimeExpression?: (ctx: DateTimeExpressionContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.inlineDataValueClause`. * @param ctx the parse tree @@ -966,18 +892,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.groupingSets`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGroupingSets?: (ctx: GroupingSetsContext) => Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.groupingSetsNotationName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGroupingSetsNotationName?: (ctx: GroupingSetsNotationNameContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.groupWindowFunction`. * @param ctx the parse tree @@ -990,12 +904,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.timeAttrColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTimeAttrColumn?: (ctx: TimeAttrColumnContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.havingClause`. * @param ctx the parse tree @@ -1380,12 +1288,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.correlationName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCorrelationName?: (ctx: CorrelationNameContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.qualifiedName`. * @param ctx the parse tree diff --git a/test/parser/flink/syntax/fixtures/chore.sql b/test/parser/flink/syntax/fixtures/chore.sql index 2526e02a..98225aed 100644 --- a/test/parser/flink/syntax/fixtures/chore.sql +++ b/test/parser/flink/syntax/fixtures/chore.sql @@ -19,6 +19,9 @@ ADD JAR '.jar' REMOVE JAR '.jar' +-- Empty Statement (standalone semicolon) +; + -- Complex Arithmetic Expression INSERT INTO avg_request_size_5m SELECT window_start, diff --git a/test/parser/flink/syntax/fixtures/createTable.sql b/test/parser/flink/syntax/fixtures/createTable.sql index 85fb0eeb..83d8edf4 100644 --- a/test/parser/flink/syntax/fixtures/createTable.sql +++ b/test/parser/flink/syntax/fixtures/createTable.sql @@ -303,6 +303,56 @@ CREATE TABLE dt_catalog.dt_db.users ( 'connector' = 'faker' ); +-- Computed column with complex expression (computedColumnExpression inlined to expression) +CREATE TABLE tbl_computed ( + a INT, + b INT, + c STRING, + d AS a + b * 2, + e AS CONCAT(c, '_suffix'), + f AS CASE WHEN a > 0 THEN b ELSE 0 END +) WITH ( + 'connector' = 'kafka' +); + +-- Computed column with nested function call +CREATE TABLE tbl_computed2 ( + ts TIMESTAMP(3), + ts_str AS CAST(ts AS STRING), + year_val AS YEAR(ts) +) WITH ( + 'connector' = 'kafka' +); + +-- Table constraint with NOT ENFORCED (notForced inlined) +CREATE TABLE tbl_constraint ( + id INT, + name STRING, + PRIMARY KEY (id, name) NOT ENFORCED +) WITH ( + 'connector' = 'kafka' +); + +-- Partitioned by identity transform (partitionDefinition + transformList inlined) +CREATE TABLE tbl_partitioned ( + id BIGINT, + name STRING, + ts TIMESTAMP(3), + WATERMARK FOR ts AS ts - INTERVAL '5' SECOND +) PARTITIONED BY (name) WITH ( + 'connector' = 'kafka' +); + +-- Partitioned by apply transform +CREATE TABLE tbl_partitioned_apply ( + id BIGINT, + name STRING, + ts TIMESTAMP(3), + WATERMARK FOR ts AS ts - INTERVAL '5' SECOND +) PARTITIONED BY ((`year`, ts), (mytruncate, 10, id)) WITH ( + 'connector' = 'kafka' +); + CREATE TABLE retail_order ( message ROW < after ROW ( diff --git a/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql b/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql index 63e36293..d4657d8a 100644 --- a/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql +++ b/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql @@ -82,3 +82,8 @@ SELECT vin AS vin FROM ods_track_vcos_log_prs_rt2 WHERE JSON_VALUE(parse_track_pb(data), '$.eid' RETURNING STRING) = '1570001000'; + +-- Insert with single partition key (insertPartitionDefinition inlined) +INSERT INTO country_page_view PARTITION (`date` = '2019-8-30') +SELECT `user`, cnt +FROM page_view_source; diff --git a/test/parser/flink/syntax/fixtures/selectAggregation.sql b/test/parser/flink/syntax/fixtures/selectAggregation.sql index 9f2409e1..1431c159 100644 --- a/test/parser/flink/syntax/fixtures/selectAggregation.sql +++ b/test/parser/flink/syntax/fixtures/selectAggregation.sql @@ -89,6 +89,33 @@ GROUP BY SESSION(order_time, INTERVAL '1' DAY), `user`; +-- GROUPING SETS with multiple groups (groupingSets inlined) +SELECT + supplier_id, + item, + SUM(price) as price +FROM Bid +GROUP BY + GROUPING SETS ((supplier_id), (item), ()); + +-- CUBE with multiple columns (groupingSetsNotationName inlined) +SELECT + supplier_id, + item, + SUM(price) as price +FROM Bid +GROUP BY + CUBE (supplier_id, item); + +-- ROLLUP with multiple columns (groupingSetsNotationName inlined) +SELECT + supplier_id, + item, + SUM(price) as price +FROM Bid +GROUP BY + ROLLUP (supplier_id, item); + -- Having SELECT SUM(amount) FROM Orders diff --git a/test/parser/flink/syntax/fixtures/selectJoin.sql b/test/parser/flink/syntax/fixtures/selectJoin.sql index 27b07e35..349a4674 100644 --- a/test/parser/flink/syntax/fixtures/selectJoin.sql +++ b/test/parser/flink/syntax/fixtures/selectJoin.sql @@ -56,6 +56,12 @@ FROM WHERE r_currency = o_currency; +-- Temporal Join with expression (dateTimeExpression inlined to expression) +SELECT o.order_id, o.total, c.country +FROM Orders o +LEFT JOIN currency_rates FOR SYSTEM_TIME AS OF o.order_time + INTERVAL '1' HOUR AS c +ON o.currency = c.currency; + -- Lookup Join SELECT o.order_id, o.total, c.country, c.zip FROM Orders AS o diff --git a/test/parser/flink/syntax/fixtures/selectWindowTVF.sql b/test/parser/flink/syntax/fixtures/selectWindowTVF.sql index 602b138e..123d8f9a 100644 --- a/test/parser/flink/syntax/fixtures/selectWindowTVF.sql +++ b/test/parser/flink/syntax/fixtures/selectWindowTVF.sql @@ -50,3 +50,12 @@ FROM TABLE( INTERVAL '10' MINUTES )) GROUP BY window_start, window_end; + +-- Window TVF with dotted column reference (timeAttrColumn inlined to uid) +SELECT * FROM TABLE( + TUMBLE( + DATA => TABLE Bid, + TIMECOL => DESCRIPTOR(b.bidtime), + SIZE => INTERVAL '10' MINUTES + ) +); diff --git a/test/parser/flink/syntax/fixtures/selectWithClause.sql b/test/parser/flink/syntax/fixtures/selectWithClause.sql index 7188ad74..1b6dbaff 100644 --- a/test/parser/flink/syntax/fixtures/selectWithClause.sql +++ b/test/parser/flink/syntax/fixtures/selectWithClause.sql @@ -4,4 +4,16 @@ WITH orders_with_total AS ( ) SELECT order_id, SUM(total) FROM orders_with_total -GROUP BY order_id; \ No newline at end of file +GROUP BY order_id; + +-- CTE with quoted identifier (withItemName inlined to identifier) +WITH `my_cte` AS ( + SELECT id, name FROM users +) +SELECT * FROM `my_cte`; + +-- CTE with column list +WITH cte1 (col1, col2) AS ( + SELECT id, name FROM users +) +SELECT col1, col2 FROM cte1; \ No newline at end of file