diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 4d69392b..b4082097 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -156,8 +156,9 @@ createTable simpleCreateTable : KW_CREATE KW_TEMPORARY? KW_TABLE ifNotExists? tablePathCreate LR_BRACKET columnOptionDefinition ( COMMA columnOptionDefinition - )* (COMMA watermarkDefinition)? (COMMA tableConstraint)? (COMMA selfDefinitionClause)? RR_BRACKET commentSpec? partitionDefinition? withOption - likeDefinition? + )* (COMMA watermarkDefinition)? (COMMA tableConstraint)? (COMMA selfDefinitionClause)? RR_BRACKET ( + KW_COMMENT comment=STRING_LITERAL + )? partitionDefinition? withOption likeDefinition? ; /* @@ -175,7 +176,7 @@ columnOptionDefinition ; physicalColumnDefinition - : columnNameCreate columnType columnConstraint? commentSpec? + : columnNameCreate columnType columnConstraint? (KW_COMMENT comment=STRING_LITERAL)? ; columnNameCreate @@ -193,8 +194,8 @@ columnNameList ; columnType - : typeName=(KW_DATE | KW_BOOLEAN | KW_NULL) - | typeName=( + : colType=(KW_DATE | KW_BOOLEAN | KW_NULL) + | colType=( KW_CHAR | KW_VARCHAR | KW_STRING @@ -210,12 +211,12 @@ columnType | KW_TIMESTAMP_LTZ | KW_DATETIME ) lengthOneDimension? - | typeName=KW_TIMESTAMP lengthOneDimension? ((KW_WITHOUT | KW_WITH) KW_LOCAL? KW_TIME KW_ZONE)? - | typeName=(KW_DECIMAL | KW_DEC | KW_NUMERIC | KW_FLOAT | KW_DOUBLE) lengthTwoOptionalDimension? - | type=(KW_ARRAY | KW_MULTISET) lengthOneTypeDimension? - | type=KW_MAP mapTypeDimension? - | type=KW_ROW rowTypeDimension? - | type=KW_RAW lengthTwoStringDimension? + | colType=KW_TIMESTAMP lengthOneDimension? ((KW_WITHOUT | KW_WITH) KW_LOCAL? KW_TIME KW_ZONE)? + | colType=(KW_DECIMAL | KW_DEC | KW_NUMERIC | KW_FLOAT | KW_DOUBLE) lengthTwoOptionalDimension? + | colType=(KW_ARRAY | KW_MULTISET) lengthOneTypeDimension? + | colType=KW_MAP mapTypeDimension? + | colType=KW_ROW rowTypeDimension? + | colType=KW_RAW lengthTwoStringDimension? ; lengthOneDimension @@ -247,10 +248,6 @@ columnConstraint | KW_NOT? KW_NULL ; -commentSpec - : KW_COMMENT STRING_LITERAL - ; - metadataColumnDefinition : columnNameCreate columnType KW_METADATA (KW_FROM metadataKey)? KW_VIRTUAL? ; @@ -260,7 +257,7 @@ metadataKey ; computedColumnDefinition - : columnNameCreate KW_AS computedColumnExpression commentSpec? + : columnNameCreate KW_AS computedColumnExpression (KW_COMMENT comment=STRING_LITERAL)? ; // 计算表达式 @@ -316,11 +313,13 @@ createCatalog ; createDatabase - : KW_CREATE KW_DATABASE ifNotExists? databasePathCreate commentSpec? withOption + : KW_CREATE KW_DATABASE ifNotExists? databasePathCreate (KW_COMMENT comment=STRING_LITERAL)? withOption ; createView - : KW_CREATE KW_TEMPORARY? KW_VIEW ifNotExists? viewPathCreate columnNameList? commentSpec? KW_AS queryStatement + : KW_CREATE KW_TEMPORARY? KW_VIEW ifNotExists? viewPathCreate columnNameList? ( + KW_COMMENT comment=STRING_LITERAL + )? KW_AS queryStatement ; createFunction @@ -513,8 +512,8 @@ tableReference ; tablePrimary - : KW_TABLE? tablePath systemTimePeriod? (KW_AS? correlationName)? - | viewPath systemTimePeriod? (KW_AS? correlationName)? + : KW_TABLE? tablePath systemTimePeriod? + | viewPath systemTimePeriod? | KW_LATERAL KW_TABLE LR_BRACKET functionName LR_BRACKET functionParam (COMMA functionParam)* RR_BRACKET RR_BRACKET | KW_LATERAL? LR_BRACKET queryStatement RR_BRACKET | KW_UNNEST LR_BRACKET expression RR_BRACKET @@ -834,7 +833,7 @@ intervalValue ; tableAlias - : KW_AS? identifier identifierList? + : KW_AS? alias=identifier identifierList? ; errorCapturingIdentifier diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 17c3bd11..06cdef61 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1123,7 +1123,6 @@ lengthOneTypeDimension mapTypeDimension rowTypeDimension columnConstraint -commentSpec metadataColumnDefinition metadataKey computedColumnDefinition @@ -1278,4 +1277,4 @@ nonReservedKeywords atn: -[4, 1, 541, 2272, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 1, 0, 5, 0, 378, 8, 0, 10, 0, 12, 0, 381, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 387, 8, 1, 1, 1, 3, 1, 390, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 422, 8, 4, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 435, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 440, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 445, 8, 8, 10, 8, 12, 8, 448, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 458, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 465, 8, 11, 10, 11, 12, 11, 468, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 479, 8, 12, 1, 12, 3, 12, 482, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 489, 8, 12, 1, 12, 3, 12, 492, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 500, 8, 12, 1, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 509, 8, 12, 1, 12, 3, 12, 512, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 519, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 527, 8, 15, 1, 16, 1, 16, 3, 16, 531, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 543, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 3, 18, 555, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 19, 3, 19, 590, 8, 19, 1, 19, 4, 19, 593, 8, 19, 11, 19, 12, 19, 594, 1, 20, 1, 20, 3, 20, 599, 8, 20, 1, 21, 1, 21, 3, 21, 603, 8, 21, 1, 21, 1, 21, 3, 21, 607, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 614, 8, 21, 10, 21, 12, 21, 617, 9, 21, 1, 21, 1, 21, 3, 21, 621, 8, 21, 1, 21, 1, 21, 3, 21, 625, 8, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 3, 21, 636, 8, 21, 1, 21, 1, 21, 3, 21, 640, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 645, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 651, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 656, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 661, 8, 24, 1, 24, 3, 24, 664, 8, 24, 1, 25, 1, 25, 3, 25, 668, 8, 25, 1, 26, 1, 26, 3, 26, 672, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 678, 8, 27, 10, 27, 12, 27, 681, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 688, 8, 28, 1, 28, 1, 28, 3, 28, 692, 8, 28, 1, 28, 1, 28, 3, 28, 696, 8, 28, 1, 28, 1, 28, 3, 28, 700, 8, 28, 1, 28, 1, 28, 3, 28, 704, 8, 28, 1, 28, 1, 28, 3, 28, 708, 8, 28, 1, 28, 1, 28, 3, 28, 712, 8, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 28, 1, 28, 3, 28, 720, 8, 28, 3, 28, 722, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 762, 8, 34, 10, 34, 12, 34, 765, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 771, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 777, 8, 35, 1, 35, 3, 35, 780, 8, 35, 1, 35, 3, 35, 783, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 793, 8, 37, 1, 37, 3, 37, 796, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 804, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 816, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 838, 8, 46, 10, 46, 12, 46, 841, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 850, 8, 47, 10, 47, 12, 47, 853, 9, 47, 1, 47, 1, 47, 3, 47, 857, 8, 47, 1, 48, 1, 48, 3, 48, 861, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 867, 8, 49, 10, 49, 12, 49, 870, 9, 49, 1, 49, 3, 49, 873, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 879, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 889, 8, 52, 1, 52, 1, 52, 3, 52, 893, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 899, 8, 53, 1, 53, 1, 53, 3, 53, 903, 8, 53, 1, 53, 1, 53, 3, 53, 907, 8, 53, 1, 53, 3, 53, 910, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 919, 8, 54, 1, 54, 1, 54, 3, 54, 923, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 930, 8, 54, 1, 54, 3, 54, 933, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 941, 8, 55, 10, 55, 12, 55, 944, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 951, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 959, 8, 57, 1, 58, 1, 58, 3, 58, 963, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 978, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 997, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1008, 8, 66, 1, 66, 1, 66, 3, 66, 1012, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1019, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1024, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1030, 8, 68, 1, 68, 1, 68, 3, 68, 1034, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1041, 8, 69, 1, 69, 1, 69, 3, 69, 1045, 8, 69, 1, 70, 1, 70, 3, 70, 1049, 8, 70, 1, 70, 1, 70, 3, 70, 1053, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1061, 8, 71, 1, 71, 1, 71, 3, 71, 1065, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1070, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1076, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1082, 8, 73, 1, 73, 3, 73, 1085, 8, 73, 1, 73, 1, 73, 3, 73, 1089, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1098, 8, 75, 10, 75, 12, 75, 1101, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1107, 8, 76, 10, 76, 12, 76, 1110, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1121, 8, 77, 11, 77, 12, 77, 1122, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1133, 8, 78, 11, 78, 12, 78, 1134, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1150, 8, 79, 1, 79, 3, 79, 1153, 8, 79, 1, 79, 1, 79, 3, 79, 1157, 8, 79, 1, 79, 3, 79, 1160, 8, 79, 3, 79, 1162, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1167, 8, 79, 1, 79, 1, 79, 3, 79, 1171, 8, 79, 1, 79, 3, 79, 1174, 8, 79, 5, 79, 1176, 8, 79, 10, 79, 12, 79, 1179, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1185, 8, 80, 10, 80, 12, 80, 1188, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1194, 8, 81, 10, 81, 12, 81, 1197, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1204, 8, 82, 10, 82, 12, 82, 1207, 9, 82, 1, 82, 1, 82, 3, 82, 1211, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1222, 8, 84, 1, 84, 3, 84, 1225, 8, 84, 1, 84, 3, 84, 1228, 8, 84, 1, 84, 3, 84, 1231, 8, 84, 1, 84, 3, 84, 1234, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1240, 8, 84, 1, 85, 1, 85, 3, 85, 1244, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1250, 8, 85, 10, 85, 12, 85, 1253, 9, 85, 3, 85, 1255, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1260, 8, 86, 1, 86, 3, 86, 1263, 8, 86, 1, 86, 1, 86, 3, 86, 1267, 8, 86, 1, 86, 3, 86, 1270, 8, 86, 3, 86, 1272, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1286, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1295, 8, 89, 10, 89, 12, 89, 1298, 9, 89, 1, 89, 1, 89, 3, 89, 1302, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1310, 8, 89, 1, 89, 3, 89, 1313, 8, 89, 1, 89, 3, 89, 1316, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1321, 8, 89, 5, 89, 1323, 8, 89, 10, 89, 12, 89, 1326, 9, 89, 1, 90, 1, 90, 3, 90, 1330, 8, 90, 1, 91, 3, 91, 1333, 8, 91, 1, 91, 1, 91, 3, 91, 1337, 8, 91, 1, 91, 3, 91, 1340, 8, 91, 1, 91, 3, 91, 1343, 8, 91, 1, 91, 1, 91, 3, 91, 1347, 8, 91, 1, 91, 3, 91, 1350, 8, 91, 1, 91, 3, 91, 1353, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1363, 8, 91, 10, 91, 12, 91, 1366, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1372, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1383, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 1408, 8, 96, 10, 96, 12, 96, 1411, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1432, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1445, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1455, 8, 103, 10, 103, 12, 103, 1458, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1468, 8, 104, 10, 104, 12, 104, 1471, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1480, 8, 104, 10, 104, 12, 104, 1483, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1492, 8, 104, 10, 104, 12, 104, 1495, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1500, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1525, 8, 111, 10, 111, 12, 111, 1528, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1535, 8, 113, 1, 113, 1, 113, 3, 113, 1539, 8, 113, 1, 113, 3, 113, 1542, 8, 113, 1, 113, 3, 113, 1545, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1552, 8, 114, 1, 114, 3, 114, 1555, 8, 114, 1, 114, 3, 114, 1558, 8, 114, 1, 114, 3, 114, 1561, 8, 114, 1, 114, 3, 114, 1564, 8, 114, 1, 114, 3, 114, 1567, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1572, 8, 114, 1, 114, 3, 114, 1575, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1582, 8, 115, 10, 115, 12, 115, 1585, 9, 115, 1, 116, 1, 116, 3, 116, 1589, 8, 116, 1, 116, 1, 116, 3, 116, 1593, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1598, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1605, 8, 118, 10, 118, 12, 118, 1608, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1626, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1632, 8, 120, 10, 120, 12, 120, 1635, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1640, 8, 121, 11, 121, 12, 121, 1641, 1, 121, 1, 121, 3, 121, 1646, 8, 121, 1, 122, 1, 122, 3, 122, 1650, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1660, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1686, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1692, 8, 125, 10, 125, 12, 125, 1695, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1706, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1728, 8, 130, 3, 130, 1730, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1741, 8, 130, 1, 130, 5, 130, 1744, 8, 130, 10, 130, 12, 130, 1747, 9, 130, 1, 131, 3, 131, 1750, 8, 131, 1, 131, 1, 131, 3, 131, 1754, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1761, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1768, 8, 131, 10, 131, 12, 131, 1771, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1776, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1789, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1796, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1801, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1807, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1814, 8, 131, 3, 131, 1816, 8, 131, 1, 132, 3, 132, 1819, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1829, 8, 132, 10, 132, 12, 132, 1832, 9, 132, 1, 132, 1, 132, 3, 132, 1836, 8, 132, 1, 132, 3, 132, 1839, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1845, 8, 132, 3, 132, 1847, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1853, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1874, 8, 133, 10, 133, 12, 133, 1877, 9, 133, 1, 134, 1, 134, 1, 134, 4, 134, 1882, 8, 134, 11, 134, 12, 134, 1883, 1, 134, 1, 134, 3, 134, 1888, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 1895, 8, 134, 11, 134, 12, 134, 1896, 1, 134, 1, 134, 3, 134, 1901, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1917, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1926, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1950, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1955, 8, 134, 10, 134, 12, 134, 1958, 9, 134, 3, 134, 1960, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1971, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1978, 8, 134, 10, 134, 12, 134, 1981, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 1987, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1993, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2001, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2006, 8, 141, 1, 142, 1, 142, 3, 142, 2010, 8, 142, 1, 143, 1, 143, 1, 143, 4, 143, 2015, 8, 143, 11, 143, 12, 143, 2016, 1, 144, 1, 144, 1, 144, 3, 144, 2022, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 3, 146, 2030, 8, 146, 1, 146, 1, 146, 3, 146, 2034, 8, 146, 1, 147, 3, 147, 2037, 8, 147, 1, 147, 1, 147, 3, 147, 2041, 8, 147, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 4, 149, 2048, 8, 149, 11, 149, 12, 149, 2049, 1, 149, 3, 149, 2053, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 5, 151, 2062, 8, 151, 10, 151, 12, 151, 2065, 9, 151, 1, 152, 1, 152, 1, 152, 3, 152, 2070, 8, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2088, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2093, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2098, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2105, 8, 160, 3, 160, 2107, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2112, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2119, 8, 161, 3, 161, 2121, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2126, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2133, 8, 162, 3, 162, 2135, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2140, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2147, 8, 163, 3, 163, 2149, 8, 163, 1, 164, 1, 164, 1, 164, 5, 164, 2154, 8, 164, 10, 164, 12, 164, 2157, 9, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2173, 8, 168, 10, 168, 12, 168, 2176, 9, 168, 1, 168, 1, 168, 1, 169, 1, 169, 3, 169, 2182, 8, 169, 1, 169, 3, 169, 2185, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2190, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2196, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2204, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2220, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2229, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2239, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2246, 8, 177, 1, 177, 3, 177, 2249, 8, 177, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 2155, 5, 158, 178, 260, 266, 268, 188, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 9, 0, 5, 5, 13, 13, 33, 33, 85, 85, 113, 113, 200, 200, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2475, 0, 379, 1, 0, 0, 0, 2, 389, 1, 0, 0, 0, 4, 403, 1, 0, 0, 0, 6, 405, 1, 0, 0, 0, 8, 421, 1, 0, 0, 0, 10, 425, 1, 0, 0, 0, 12, 427, 1, 0, 0, 0, 14, 430, 1, 0, 0, 0, 16, 441, 1, 0, 0, 0, 18, 449, 1, 0, 0, 0, 20, 457, 1, 0, 0, 0, 22, 459, 1, 0, 0, 0, 24, 511, 1, 0, 0, 0, 26, 513, 1, 0, 0, 0, 28, 520, 1, 0, 0, 0, 30, 524, 1, 0, 0, 0, 32, 528, 1, 0, 0, 0, 34, 532, 1, 0, 0, 0, 36, 586, 1, 0, 0, 0, 38, 592, 1, 0, 0, 0, 40, 598, 1, 0, 0, 0, 42, 600, 1, 0, 0, 0, 44, 641, 1, 0, 0, 0, 46, 655, 1, 0, 0, 0, 48, 657, 1, 0, 0, 0, 50, 667, 1, 0, 0, 0, 52, 671, 1, 0, 0, 0, 54, 673, 1, 0, 0, 0, 56, 721, 1, 0, 0, 0, 58, 723, 1, 0, 0, 0, 60, 727, 1, 0, 0, 0, 62, 735, 1, 0, 0, 0, 64, 743, 1, 0, 0, 0, 66, 747, 1, 0, 0, 0, 68, 754, 1, 0, 0, 0, 70, 782, 1, 0, 0, 0, 72, 784, 1, 0, 0, 0, 74, 787, 1, 0, 0, 0, 76, 797, 1, 0, 0, 0, 78, 799, 1, 0, 0, 0, 80, 805, 1, 0, 0, 0, 82, 807, 1, 0, 0, 0, 84, 815, 1, 0, 0, 0, 86, 823, 1, 0, 0, 0, 88, 825, 1, 0, 0, 0, 90, 829, 1, 0, 0, 0, 92, 833, 1, 0, 0, 0, 94, 856, 1, 0, 0, 0, 96, 860, 1, 0, 0, 0, 98, 862, 1, 0, 0, 0, 100, 878, 1, 0, 0, 0, 102, 880, 1, 0, 0, 0, 104, 885, 1, 0, 0, 0, 106, 896, 1, 0, 0, 0, 108, 914, 1, 0, 0, 0, 110, 934, 1, 0, 0, 0, 112, 945, 1, 0, 0, 0, 114, 947, 1, 0, 0, 0, 116, 960, 1, 0, 0, 0, 118, 967, 1, 0, 0, 0, 120, 970, 1, 0, 0, 0, 122, 979, 1, 0, 0, 0, 124, 983, 1, 0, 0, 0, 126, 987, 1, 0, 0, 0, 128, 990, 1, 0, 0, 0, 130, 998, 1, 0, 0, 0, 132, 1003, 1, 0, 0, 0, 134, 1020, 1, 0, 0, 0, 136, 1027, 1, 0, 0, 0, 138, 1037, 1, 0, 0, 0, 140, 1046, 1, 0, 0, 0, 142, 1056, 1, 0, 0, 0, 144, 1075, 1, 0, 0, 0, 146, 1077, 1, 0, 0, 0, 148, 1090, 1, 0, 0, 0, 150, 1093, 1, 0, 0, 0, 152, 1102, 1, 0, 0, 0, 154, 1113, 1, 0, 0, 0, 156, 1126, 1, 0, 0, 0, 158, 1161, 1, 0, 0, 0, 160, 1180, 1, 0, 0, 0, 162, 1189, 1, 0, 0, 0, 164, 1198, 1, 0, 0, 0, 166, 1217, 1, 0, 0, 0, 168, 1239, 1, 0, 0, 0, 170, 1241, 1, 0, 0, 0, 172, 1271, 1, 0, 0, 0, 174, 1285, 1, 0, 0, 0, 176, 1287, 1, 0, 0, 0, 178, 1301, 1, 0, 0, 0, 180, 1327, 1, 0, 0, 0, 182, 1382, 1, 0, 0, 0, 184, 1384, 1, 0, 0, 0, 186, 1390, 1, 0, 0, 0, 188, 1392, 1, 0, 0, 0, 190, 1397, 1, 0, 0, 0, 192, 1402, 1, 0, 0, 0, 194, 1414, 1, 0, 0, 0, 196, 1431, 1, 0, 0, 0, 198, 1433, 1, 0, 0, 0, 200, 1435, 1, 0, 0, 0, 202, 1444, 1, 0, 0, 0, 204, 1446, 1, 0, 0, 0, 206, 1449, 1, 0, 0, 0, 208, 1499, 1, 0, 0, 0, 210, 1501, 1, 0, 0, 0, 212, 1504, 1, 0, 0, 0, 214, 1506, 1, 0, 0, 0, 216, 1513, 1, 0, 0, 0, 218, 1515, 1, 0, 0, 0, 220, 1517, 1, 0, 0, 0, 222, 1520, 1, 0, 0, 0, 224, 1529, 1, 0, 0, 0, 226, 1534, 1, 0, 0, 0, 228, 1548, 1, 0, 0, 0, 230, 1576, 1, 0, 0, 0, 232, 1586, 1, 0, 0, 0, 234, 1594, 1, 0, 0, 0, 236, 1599, 1, 0, 0, 0, 238, 1625, 1, 0, 0, 0, 240, 1627, 1, 0, 0, 0, 242, 1636, 1, 0, 0, 0, 244, 1647, 1, 0, 0, 0, 246, 1659, 1, 0, 0, 0, 248, 1685, 1, 0, 0, 0, 250, 1687, 1, 0, 0, 0, 252, 1705, 1, 0, 0, 0, 254, 1707, 1, 0, 0, 0, 256, 1712, 1, 0, 0, 0, 258, 1715, 1, 0, 0, 0, 260, 1729, 1, 0, 0, 0, 262, 1815, 1, 0, 0, 0, 264, 1846, 1, 0, 0, 0, 266, 1852, 1, 0, 0, 0, 268, 1970, 1, 0, 0, 0, 270, 1982, 1, 0, 0, 0, 272, 1986, 1, 0, 0, 0, 274, 1992, 1, 0, 0, 0, 276, 1994, 1, 0, 0, 0, 278, 1996, 1, 0, 0, 0, 280, 2000, 1, 0, 0, 0, 282, 2002, 1, 0, 0, 0, 284, 2007, 1, 0, 0, 0, 286, 2014, 1, 0, 0, 0, 288, 2018, 1, 0, 0, 0, 290, 2023, 1, 0, 0, 0, 292, 2033, 1, 0, 0, 0, 294, 2036, 1, 0, 0, 0, 296, 2042, 1, 0, 0, 0, 298, 2052, 1, 0, 0, 0, 300, 2054, 1, 0, 0, 0, 302, 2058, 1, 0, 0, 0, 304, 2069, 1, 0, 0, 0, 306, 2071, 1, 0, 0, 0, 308, 2073, 1, 0, 0, 0, 310, 2075, 1, 0, 0, 0, 312, 2080, 1, 0, 0, 0, 314, 2082, 1, 0, 0, 0, 316, 2084, 1, 0, 0, 0, 318, 2089, 1, 0, 0, 0, 320, 2106, 1, 0, 0, 0, 322, 2120, 1, 0, 0, 0, 324, 2134, 1, 0, 0, 0, 326, 2148, 1, 0, 0, 0, 328, 2150, 1, 0, 0, 0, 330, 2158, 1, 0, 0, 0, 332, 2161, 1, 0, 0, 0, 334, 2165, 1, 0, 0, 0, 336, 2168, 1, 0, 0, 0, 338, 2179, 1, 0, 0, 0, 340, 2189, 1, 0, 0, 0, 342, 2195, 1, 0, 0, 0, 344, 2203, 1, 0, 0, 0, 346, 2219, 1, 0, 0, 0, 348, 2228, 1, 0, 0, 0, 350, 2230, 1, 0, 0, 0, 352, 2232, 1, 0, 0, 0, 354, 2248, 1, 0, 0, 0, 356, 2250, 1, 0, 0, 0, 358, 2253, 1, 0, 0, 0, 360, 2255, 1, 0, 0, 0, 362, 2257, 1, 0, 0, 0, 364, 2259, 1, 0, 0, 0, 366, 2261, 1, 0, 0, 0, 368, 2263, 1, 0, 0, 0, 370, 2265, 1, 0, 0, 0, 372, 2267, 1, 0, 0, 0, 374, 2269, 1, 0, 0, 0, 376, 378, 3, 2, 1, 0, 377, 376, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 382, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 383, 5, 0, 0, 1, 383, 1, 1, 0, 0, 0, 384, 386, 3, 4, 2, 0, 385, 387, 5, 521, 0, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 390, 3, 6, 3, 0, 389, 384, 1, 0, 0, 0, 389, 388, 1, 0, 0, 0, 390, 3, 1, 0, 0, 0, 391, 404, 3, 8, 4, 0, 392, 404, 3, 10, 5, 0, 393, 404, 3, 12, 6, 0, 394, 404, 3, 14, 7, 0, 395, 404, 3, 20, 10, 0, 396, 404, 3, 24, 12, 0, 397, 404, 3, 26, 13, 0, 398, 404, 3, 28, 14, 0, 399, 404, 3, 30, 15, 0, 400, 404, 3, 32, 16, 0, 401, 404, 3, 34, 17, 0, 402, 404, 3, 36, 18, 0, 403, 391, 1, 0, 0, 0, 403, 392, 1, 0, 0, 0, 403, 393, 1, 0, 0, 0, 403, 394, 1, 0, 0, 0, 403, 395, 1, 0, 0, 0, 403, 396, 1, 0, 0, 0, 403, 397, 1, 0, 0, 0, 403, 398, 1, 0, 0, 0, 403, 399, 1, 0, 0, 0, 403, 400, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 402, 1, 0, 0, 0, 404, 5, 1, 0, 0, 0, 405, 406, 5, 521, 0, 0, 406, 7, 1, 0, 0, 0, 407, 422, 3, 40, 20, 0, 408, 422, 3, 104, 52, 0, 409, 422, 3, 106, 53, 0, 410, 422, 3, 108, 54, 0, 411, 422, 3, 102, 51, 0, 412, 422, 3, 114, 57, 0, 413, 422, 3, 128, 64, 0, 414, 422, 3, 130, 65, 0, 415, 422, 3, 132, 66, 0, 416, 422, 3, 134, 67, 0, 417, 422, 3, 136, 68, 0, 418, 422, 3, 138, 69, 0, 419, 422, 3, 140, 70, 0, 420, 422, 3, 142, 71, 0, 421, 407, 1, 0, 0, 0, 421, 408, 1, 0, 0, 0, 421, 409, 1, 0, 0, 0, 421, 410, 1, 0, 0, 0, 421, 411, 1, 0, 0, 0, 421, 412, 1, 0, 0, 0, 421, 413, 1, 0, 0, 0, 421, 414, 1, 0, 0, 0, 421, 415, 1, 0, 0, 0, 421, 416, 1, 0, 0, 0, 421, 417, 1, 0, 0, 0, 421, 418, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 420, 1, 0, 0, 0, 422, 9, 1, 0, 0, 0, 423, 426, 3, 158, 79, 0, 424, 426, 3, 144, 72, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 11, 1, 0, 0, 0, 427, 428, 7, 0, 0, 0, 428, 429, 3, 322, 161, 0, 429, 13, 1, 0, 0, 0, 430, 434, 5, 135, 0, 0, 431, 435, 3, 16, 8, 0, 432, 433, 5, 479, 0, 0, 433, 435, 5, 146, 0, 0, 434, 431, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 440, 3, 10, 5, 0, 437, 440, 3, 146, 73, 0, 438, 440, 3, 156, 78, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 15, 1, 0, 0, 0, 441, 446, 3, 18, 9, 0, 442, 443, 5, 520, 0, 0, 443, 445, 3, 18, 9, 0, 444, 442, 1, 0, 0, 0, 445, 448, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 17, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 449, 450, 7, 1, 0, 0, 450, 19, 1, 0, 0, 0, 451, 452, 5, 410, 0, 0, 452, 453, 5, 441, 0, 0, 453, 458, 3, 312, 156, 0, 454, 455, 5, 410, 0, 0, 455, 458, 3, 316, 158, 0, 456, 458, 3, 22, 11, 0, 457, 451, 1, 0, 0, 0, 457, 454, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 21, 1, 0, 0, 0, 459, 460, 5, 410, 0, 0, 460, 461, 5, 227, 0, 0, 461, 466, 3, 328, 164, 0, 462, 463, 5, 520, 0, 0, 463, 465, 3, 328, 164, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 23, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 470, 5, 341, 0, 0, 470, 512, 7, 2, 0, 0, 471, 472, 5, 341, 0, 0, 472, 473, 5, 76, 0, 0, 473, 512, 7, 3, 0, 0, 474, 475, 5, 341, 0, 0, 475, 478, 5, 374, 0, 0, 476, 477, 7, 4, 0, 0, 477, 479, 3, 316, 158, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 1, 0, 0, 0, 480, 482, 3, 264, 132, 0, 481, 480, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 512, 1, 0, 0, 0, 483, 484, 5, 341, 0, 0, 484, 485, 5, 58, 0, 0, 485, 488, 7, 4, 0, 0, 486, 489, 3, 324, 162, 0, 487, 489, 3, 322, 161, 0, 488, 486, 1, 0, 0, 0, 488, 487, 1, 0, 0, 0, 489, 491, 1, 0, 0, 0, 490, 492, 3, 264, 132, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 512, 1, 0, 0, 0, 493, 494, 5, 341, 0, 0, 494, 499, 5, 72, 0, 0, 495, 496, 5, 373, 0, 0, 496, 500, 3, 322, 161, 0, 497, 498, 5, 501, 0, 0, 498, 500, 3, 324, 162, 0, 499, 495, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 512, 1, 0, 0, 0, 501, 503, 5, 341, 0, 0, 502, 504, 5, 411, 0, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 512, 5, 154, 0, 0, 506, 508, 5, 341, 0, 0, 507, 509, 5, 152, 0, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 512, 5, 227, 0, 0, 511, 469, 1, 0, 0, 0, 511, 471, 1, 0, 0, 0, 511, 474, 1, 0, 0, 0, 511, 483, 1, 0, 0, 0, 511, 493, 1, 0, 0, 0, 511, 501, 1, 0, 0, 0, 511, 506, 1, 0, 0, 0, 512, 25, 1, 0, 0, 0, 513, 514, 5, 468, 0, 0, 514, 515, 5, 226, 0, 0, 515, 518, 3, 328, 164, 0, 516, 517, 5, 433, 0, 0, 517, 519, 3, 336, 168, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 27, 1, 0, 0, 0, 520, 521, 5, 500, 0, 0, 521, 522, 5, 226, 0, 0, 522, 523, 3, 328, 164, 0, 523, 29, 1, 0, 0, 0, 524, 526, 5, 340, 0, 0, 525, 527, 3, 338, 169, 0, 526, 525, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 31, 1, 0, 0, 0, 528, 530, 5, 312, 0, 0, 529, 531, 3, 340, 170, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 33, 1, 0, 0, 0, 532, 533, 7, 5, 0, 0, 533, 534, 5, 463, 0, 0, 534, 535, 3, 112, 56, 0, 535, 35, 1, 0, 0, 0, 536, 537, 5, 437, 0, 0, 537, 538, 5, 463, 0, 0, 538, 539, 5, 433, 0, 0, 539, 542, 3, 38, 19, 0, 540, 541, 5, 17, 0, 0, 541, 543, 3, 328, 164, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 587, 1, 0, 0, 0, 544, 545, 5, 437, 0, 0, 545, 546, 5, 456, 0, 0, 546, 547, 5, 433, 0, 0, 547, 550, 3, 38, 19, 0, 548, 549, 5, 17, 0, 0, 549, 551, 3, 328, 164, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 553, 5, 311, 0, 0, 553, 555, 3, 328, 164, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 587, 1, 0, 0, 0, 556, 557, 5, 437, 0, 0, 557, 558, 7, 6, 0, 0, 558, 559, 5, 433, 0, 0, 559, 560, 3, 38, 19, 0, 560, 561, 5, 311, 0, 0, 561, 562, 3, 328, 164, 0, 562, 587, 1, 0, 0, 0, 563, 564, 5, 437, 0, 0, 564, 565, 5, 486, 0, 0, 565, 587, 3, 38, 19, 0, 566, 567, 5, 437, 0, 0, 567, 568, 5, 453, 0, 0, 568, 569, 5, 456, 0, 0, 569, 570, 5, 433, 0, 0, 570, 571, 3, 38, 19, 0, 571, 572, 5, 311, 0, 0, 572, 573, 3, 328, 164, 0, 573, 574, 5, 466, 0, 0, 574, 575, 3, 328, 164, 0, 575, 587, 1, 0, 0, 0, 576, 577, 5, 437, 0, 0, 577, 578, 5, 443, 0, 0, 578, 579, 5, 456, 0, 0, 579, 580, 5, 433, 0, 0, 580, 581, 3, 38, 19, 0, 581, 582, 5, 146, 0, 0, 582, 583, 3, 328, 164, 0, 583, 584, 5, 17, 0, 0, 584, 585, 3, 328, 164, 0, 585, 587, 1, 0, 0, 0, 586, 536, 1, 0, 0, 0, 586, 544, 1, 0, 0, 0, 586, 556, 1, 0, 0, 0, 586, 563, 1, 0, 0, 0, 586, 566, 1, 0, 0, 0, 586, 576, 1, 0, 0, 0, 587, 37, 1, 0, 0, 0, 588, 590, 5, 534, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 3, 328, 164, 0, 592, 589, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 39, 1, 0, 0, 0, 596, 599, 3, 42, 21, 0, 597, 599, 3, 44, 22, 0, 598, 596, 1, 0, 0, 0, 598, 597, 1, 0, 0, 0, 599, 41, 1, 0, 0, 0, 600, 602, 5, 72, 0, 0, 601, 603, 5, 497, 0, 0, 602, 601, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 606, 5, 373, 0, 0, 605, 607, 3, 332, 166, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 3, 320, 160, 0, 609, 610, 5, 516, 0, 0, 610, 615, 3, 46, 23, 0, 611, 612, 5, 520, 0, 0, 612, 614, 3, 46, 23, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 619, 5, 520, 0, 0, 619, 621, 3, 82, 41, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 624, 1, 0, 0, 0, 622, 623, 5, 520, 0, 0, 623, 625, 3, 84, 42, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 628, 1, 0, 0, 0, 626, 627, 5, 520, 0, 0, 627, 629, 3, 88, 44, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 632, 5, 517, 0, 0, 631, 633, 3, 72, 36, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 635, 1, 0, 0, 0, 634, 636, 3, 90, 45, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 639, 3, 330, 165, 0, 638, 640, 3, 98, 49, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 43, 1, 0, 0, 0, 641, 642, 5, 72, 0, 0, 642, 644, 5, 373, 0, 0, 643, 645, 3, 332, 166, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 3, 320, 160, 0, 647, 650, 3, 330, 165, 0, 648, 649, 5, 17, 0, 0, 649, 651, 3, 158, 79, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 45, 1, 0, 0, 0, 652, 656, 3, 48, 24, 0, 653, 656, 3, 74, 37, 0, 654, 656, 3, 78, 39, 0, 655, 652, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 655, 654, 1, 0, 0, 0, 656, 47, 1, 0, 0, 0, 657, 658, 3, 50, 25, 0, 658, 660, 3, 56, 28, 0, 659, 661, 3, 70, 35, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 663, 1, 0, 0, 0, 662, 664, 3, 72, 36, 0, 663, 662, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 49, 1, 0, 0, 0, 665, 668, 3, 328, 164, 0, 666, 668, 3, 258, 129, 0, 667, 665, 1, 0, 0, 0, 667, 666, 1, 0, 0, 0, 668, 51, 1, 0, 0, 0, 669, 672, 3, 328, 164, 0, 670, 672, 4, 26, 0, 0, 671, 669, 1, 0, 0, 0, 671, 670, 1, 0, 0, 0, 672, 53, 1, 0, 0, 0, 673, 674, 5, 516, 0, 0, 674, 679, 3, 52, 26, 0, 675, 676, 5, 520, 0, 0, 676, 678, 3, 52, 26, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 517, 0, 0, 683, 55, 1, 0, 0, 0, 684, 722, 7, 7, 0, 0, 685, 687, 7, 8, 0, 0, 686, 688, 3, 58, 29, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 722, 1, 0, 0, 0, 689, 691, 5, 379, 0, 0, 690, 692, 3, 58, 29, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 699, 1, 0, 0, 0, 693, 695, 7, 9, 0, 0, 694, 696, 5, 206, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 378, 0, 0, 698, 700, 5, 504, 0, 0, 699, 693, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 722, 1, 0, 0, 0, 701, 703, 7, 10, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 722, 1, 0, 0, 0, 705, 707, 7, 11, 0, 0, 706, 708, 3, 64, 32, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 722, 1, 0, 0, 0, 709, 711, 5, 469, 0, 0, 710, 712, 3, 66, 33, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 722, 1, 0, 0, 0, 713, 715, 5, 321, 0, 0, 714, 716, 3, 68, 34, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 722, 1, 0, 0, 0, 717, 719, 5, 294, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 684, 1, 0, 0, 0, 721, 685, 1, 0, 0, 0, 721, 689, 1, 0, 0, 0, 721, 701, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0, 721, 709, 1, 0, 0, 0, 721, 713, 1, 0, 0, 0, 721, 717, 1, 0, 0, 0, 722, 57, 1, 0, 0, 0, 723, 724, 5, 516, 0, 0, 724, 725, 3, 360, 180, 0, 725, 726, 5, 517, 0, 0, 726, 59, 1, 0, 0, 0, 727, 728, 5, 516, 0, 0, 728, 731, 3, 360, 180, 0, 729, 730, 5, 520, 0, 0, 730, 732, 3, 360, 180, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 61, 1, 0, 0, 0, 735, 736, 5, 516, 0, 0, 736, 739, 3, 358, 179, 0, 737, 738, 5, 520, 0, 0, 738, 740, 3, 358, 179, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 63, 1, 0, 0, 0, 743, 744, 5, 507, 0, 0, 744, 745, 3, 56, 28, 0, 745, 746, 5, 506, 0, 0, 746, 65, 1, 0, 0, 0, 747, 748, 5, 507, 0, 0, 748, 749, 3, 56, 28, 0, 749, 750, 5, 520, 0, 0, 750, 751, 3, 56, 28, 0, 751, 752, 1, 0, 0, 0, 752, 753, 5, 506, 0, 0, 753, 67, 1, 0, 0, 0, 754, 755, 5, 507, 0, 0, 755, 756, 3, 52, 26, 0, 756, 763, 3, 56, 28, 0, 757, 758, 5, 520, 0, 0, 758, 759, 3, 52, 26, 0, 759, 760, 3, 56, 28, 0, 760, 762, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 767, 5, 506, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 64, 0, 0, 769, 771, 3, 86, 43, 0, 770, 768, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 288, 0, 0, 773, 776, 5, 466, 0, 0, 774, 775, 5, 241, 0, 0, 775, 777, 5, 125, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 783, 1, 0, 0, 0, 778, 780, 5, 241, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 5, 244, 0, 0, 782, 770, 1, 0, 0, 0, 782, 779, 1, 0, 0, 0, 783, 71, 1, 0, 0, 0, 784, 785, 5, 59, 0, 0, 785, 786, 5, 537, 0, 0, 786, 73, 1, 0, 0, 0, 787, 788, 3, 50, 25, 0, 788, 789, 3, 56, 28, 0, 789, 792, 5, 218, 0, 0, 790, 791, 5, 151, 0, 0, 791, 793, 3, 76, 38, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 796, 5, 423, 0, 0, 795, 794, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 75, 1, 0, 0, 0, 797, 798, 5, 537, 0, 0, 798, 77, 1, 0, 0, 0, 799, 800, 3, 50, 25, 0, 800, 801, 5, 17, 0, 0, 801, 803, 3, 80, 40, 0, 802, 804, 3, 72, 36, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 79, 1, 0, 0, 0, 805, 806, 3, 258, 129, 0, 806, 81, 1, 0, 0, 0, 807, 808, 5, 424, 0, 0, 808, 809, 5, 146, 0, 0, 809, 810, 3, 52, 26, 0, 810, 811, 5, 17, 0, 0, 811, 812, 3, 258, 129, 0, 812, 83, 1, 0, 0, 0, 813, 814, 5, 64, 0, 0, 814, 816, 3, 86, 43, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 288, 0, 0, 818, 819, 5, 466, 0, 0, 819, 820, 3, 54, 27, 0, 820, 821, 5, 241, 0, 0, 821, 822, 5, 125, 0, 0, 822, 85, 1, 0, 0, 0, 823, 824, 3, 304, 152, 0, 824, 87, 1, 0, 0, 0, 825, 826, 5, 277, 0, 0, 826, 827, 5, 146, 0, 0, 827, 828, 5, 371, 0, 0, 828, 89, 1, 0, 0, 0, 829, 830, 5, 269, 0, 0, 830, 831, 5, 34, 0, 0, 831, 832, 3, 92, 46, 0, 832, 91, 1, 0, 0, 0, 833, 834, 5, 516, 0, 0, 834, 839, 3, 94, 47, 0, 835, 836, 5, 520, 0, 0, 836, 838, 3, 94, 47, 0, 837, 835, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 843, 5, 517, 0, 0, 843, 93, 1, 0, 0, 0, 844, 857, 3, 52, 26, 0, 845, 846, 5, 516, 0, 0, 846, 851, 3, 96, 48, 0, 847, 848, 5, 520, 0, 0, 848, 850, 3, 96, 48, 0, 849, 847, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 854, 855, 5, 517, 0, 0, 855, 857, 1, 0, 0, 0, 856, 844, 1, 0, 0, 0, 856, 845, 1, 0, 0, 0, 857, 95, 1, 0, 0, 0, 858, 861, 3, 280, 140, 0, 859, 861, 3, 354, 177, 0, 860, 858, 1, 0, 0, 0, 860, 859, 1, 0, 0, 0, 861, 97, 1, 0, 0, 0, 862, 863, 5, 202, 0, 0, 863, 872, 3, 322, 161, 0, 864, 868, 5, 516, 0, 0, 865, 867, 3, 100, 50, 0, 866, 865, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 871, 873, 5, 517, 0, 0, 872, 864, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 99, 1, 0, 0, 0, 874, 875, 7, 12, 0, 0, 875, 879, 7, 13, 0, 0, 876, 877, 7, 14, 0, 0, 877, 879, 7, 15, 0, 0, 878, 874, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 879, 101, 1, 0, 0, 0, 880, 881, 5, 72, 0, 0, 881, 882, 5, 441, 0, 0, 882, 883, 3, 314, 157, 0, 883, 884, 3, 330, 165, 0, 884, 103, 1, 0, 0, 0, 885, 886, 5, 72, 0, 0, 886, 888, 5, 447, 0, 0, 887, 889, 3, 332, 166, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 3, 318, 159, 0, 891, 893, 3, 72, 36, 0, 892, 891, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 3, 330, 165, 0, 895, 105, 1, 0, 0, 0, 896, 898, 5, 72, 0, 0, 897, 899, 5, 497, 0, 0, 898, 897, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 902, 5, 501, 0, 0, 901, 903, 3, 332, 166, 0, 902, 901, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 906, 3, 326, 163, 0, 905, 907, 3, 54, 27, 0, 906, 905, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 909, 1, 0, 0, 0, 908, 910, 3, 72, 36, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 17, 0, 0, 912, 913, 3, 158, 79, 0, 913, 107, 1, 0, 0, 0, 914, 918, 5, 72, 0, 0, 915, 919, 5, 497, 0, 0, 916, 917, 5, 497, 0, 0, 917, 919, 5, 370, 0, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 922, 5, 153, 0, 0, 921, 923, 3, 332, 166, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 3, 270, 135, 0, 925, 926, 5, 17, 0, 0, 926, 929, 3, 304, 152, 0, 927, 928, 5, 195, 0, 0, 928, 930, 7, 16, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 933, 3, 110, 55, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 109, 1, 0, 0, 0, 934, 935, 5, 412, 0, 0, 935, 936, 5, 463, 0, 0, 936, 942, 3, 112, 56, 0, 937, 938, 5, 520, 0, 0, 938, 939, 5, 463, 0, 0, 939, 941, 3, 112, 56, 0, 940, 937, 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 111, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 946, 5, 537, 0, 0, 946, 113, 1, 0, 0, 0, 947, 948, 5, 8, 0, 0, 948, 950, 5, 373, 0, 0, 949, 951, 3, 334, 167, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 958, 3, 322, 161, 0, 953, 959, 3, 116, 58, 0, 954, 959, 3, 118, 59, 0, 955, 959, 3, 120, 60, 0, 956, 959, 3, 122, 61, 0, 957, 959, 3, 124, 62, 0, 958, 953, 1, 0, 0, 0, 958, 954, 1, 0, 0, 0, 958, 955, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 115, 1, 0, 0, 0, 960, 962, 5, 311, 0, 0, 961, 963, 3, 328, 164, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 5, 388, 0, 0, 965, 966, 3, 328, 164, 0, 966, 117, 1, 0, 0, 0, 967, 968, 5, 340, 0, 0, 968, 969, 3, 336, 168, 0, 969, 119, 1, 0, 0, 0, 970, 971, 5, 437, 0, 0, 971, 972, 5, 64, 0, 0, 972, 973, 3, 86, 43, 0, 973, 974, 5, 288, 0, 0, 974, 975, 5, 466, 0, 0, 975, 977, 3, 54, 27, 0, 976, 978, 3, 126, 63, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 121, 1, 0, 0, 0, 979, 980, 5, 116, 0, 0, 980, 981, 5, 64, 0, 0, 981, 982, 3, 86, 43, 0, 982, 123, 1, 0, 0, 0, 983, 984, 5, 437, 0, 0, 984, 985, 5, 403, 0, 0, 985, 986, 3, 54, 27, 0, 986, 125, 1, 0, 0, 0, 987, 988, 5, 241, 0, 0, 988, 989, 5, 125, 0, 0, 989, 127, 1, 0, 0, 0, 990, 991, 5, 8, 0, 0, 991, 992, 5, 501, 0, 0, 992, 996, 3, 324, 162, 0, 993, 997, 3, 116, 58, 0, 994, 995, 5, 17, 0, 0, 995, 997, 3, 158, 79, 0, 996, 993, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 997, 129, 1, 0, 0, 0, 998, 999, 5, 8, 0, 0, 999, 1000, 5, 447, 0, 0, 1000, 1001, 3, 316, 158, 0, 1001, 1002, 3, 118, 59, 0, 1002, 131, 1, 0, 0, 0, 1003, 1007, 5, 8, 0, 0, 1004, 1008, 5, 497, 0, 0, 1005, 1006, 5, 497, 0, 0, 1006, 1008, 5, 370, 0, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 5, 153, 0, 0, 1010, 1012, 3, 334, 167, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 3, 272, 136, 0, 1014, 1015, 5, 17, 0, 0, 1015, 1018, 3, 304, 152, 0, 1016, 1017, 5, 195, 0, 0, 1017, 1019, 7, 16, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 133, 1, 0, 0, 0, 1020, 1021, 5, 116, 0, 0, 1021, 1023, 5, 441, 0, 0, 1022, 1024, 3, 334, 167, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 3, 312, 156, 0, 1026, 135, 1, 0, 0, 0, 1027, 1029, 5, 116, 0, 0, 1028, 1030, 5, 497, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 373, 0, 0, 1032, 1034, 3, 334, 167, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 3, 322, 161, 0, 1036, 137, 1, 0, 0, 0, 1037, 1038, 5, 116, 0, 0, 1038, 1040, 5, 447, 0, 0, 1039, 1041, 3, 334, 167, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1044, 3, 316, 158, 0, 1043, 1045, 7, 17, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 139, 1, 0, 0, 0, 1046, 1048, 5, 116, 0, 0, 1047, 1049, 5, 497, 0, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1052, 5, 501, 0, 0, 1051, 1053, 3, 334, 167, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 3, 324, 162, 0, 1055, 141, 1, 0, 0, 0, 1056, 1060, 5, 116, 0, 0, 1057, 1061, 5, 497, 0, 0, 1058, 1059, 5, 497, 0, 0, 1059, 1061, 5, 370, 0, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 5, 153, 0, 0, 1063, 1065, 3, 334, 167, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 3, 272, 136, 0, 1067, 143, 1, 0, 0, 0, 1068, 1070, 5, 132, 0, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1076, 3, 146, 73, 0, 1072, 1076, 3, 154, 77, 0, 1073, 1074, 5, 132, 0, 0, 1074, 1076, 3, 156, 78, 0, 1075, 1069, 1, 0, 0, 0, 1075, 1072, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 145, 1, 0, 0, 0, 1077, 1078, 5, 177, 0, 0, 1078, 1079, 7, 18, 0, 0, 1079, 1088, 3, 322, 161, 0, 1080, 1082, 3, 148, 74, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 54, 27, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1089, 3, 158, 79, 0, 1087, 1089, 3, 150, 75, 0, 1088, 1081, 1, 0, 0, 0, 1088, 1087, 1, 0, 0, 0, 1089, 147, 1, 0, 0, 0, 1090, 1091, 5, 268, 0, 0, 1091, 1092, 3, 336, 168, 0, 1092, 149, 1, 0, 0, 0, 1093, 1094, 5, 414, 0, 0, 1094, 1099, 3, 152, 76, 0, 1095, 1096, 5, 520, 0, 0, 1096, 1098, 3, 152, 76, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 151, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1103, 5, 516, 0, 0, 1103, 1108, 3, 354, 177, 0, 1104, 1105, 5, 520, 0, 0, 1105, 1107, 3, 354, 177, 0, 1106, 1104, 1, 0, 0, 0, 1107, 1110, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1111, 1112, 5, 517, 0, 0, 1112, 153, 1, 0, 0, 0, 1113, 1114, 5, 24, 0, 0, 1114, 1115, 5, 354, 0, 0, 1115, 1116, 5, 340, 0, 0, 1116, 1120, 5, 521, 0, 0, 1117, 1118, 3, 146, 73, 0, 1118, 1119, 5, 521, 0, 0, 1119, 1121, 1, 0, 0, 0, 1120, 1117, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 5, 122, 0, 0, 1125, 155, 1, 0, 0, 0, 1126, 1127, 5, 354, 0, 0, 1127, 1128, 5, 340, 0, 0, 1128, 1132, 5, 24, 0, 0, 1129, 1130, 3, 146, 73, 0, 1130, 1131, 5, 521, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, 1129, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 5, 122, 0, 0, 1137, 157, 1, 0, 0, 0, 1138, 1139, 6, 79, -1, 0, 1139, 1162, 3, 160, 80, 0, 1140, 1141, 3, 162, 81, 0, 1141, 1142, 3, 158, 79, 5, 1142, 1162, 1, 0, 0, 0, 1143, 1144, 5, 516, 0, 0, 1144, 1145, 3, 158, 79, 0, 1145, 1146, 5, 517, 0, 0, 1146, 1162, 1, 0, 0, 0, 1147, 1149, 3, 170, 85, 0, 1148, 1150, 3, 230, 115, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 1, 0, 0, 0, 1151, 1153, 3, 234, 117, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1162, 1, 0, 0, 0, 1154, 1156, 3, 168, 84, 0, 1155, 1157, 3, 230, 115, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1160, 3, 234, 117, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1138, 1, 0, 0, 0, 1161, 1140, 1, 0, 0, 0, 1161, 1143, 1, 0, 0, 0, 1161, 1147, 1, 0, 0, 0, 1161, 1154, 1, 0, 0, 0, 1162, 1177, 1, 0, 0, 0, 1163, 1164, 10, 3, 0, 0, 1164, 1166, 7, 19, 0, 0, 1165, 1167, 5, 5, 0, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 3, 158, 79, 0, 1169, 1171, 3, 230, 115, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1174, 3, 234, 117, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1163, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 159, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 5, 414, 0, 0, 1181, 1186, 3, 258, 129, 0, 1182, 1183, 5, 520, 0, 0, 1183, 1185, 3, 258, 129, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 161, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1190, 5, 433, 0, 0, 1190, 1195, 3, 164, 82, 0, 1191, 1192, 5, 520, 0, 0, 1192, 1194, 3, 164, 82, 0, 1193, 1191, 1, 0, 0, 0, 1194, 1197, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 163, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1210, 3, 166, 83, 0, 1199, 1200, 5, 516, 0, 0, 1200, 1205, 3, 52, 26, 0, 1201, 1202, 5, 520, 0, 0, 1202, 1204, 3, 52, 26, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1209, 5, 517, 0, 0, 1209, 1211, 1, 0, 0, 0, 1210, 1199, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 17, 0, 0, 1213, 1214, 5, 516, 0, 0, 1214, 1215, 3, 158, 79, 0, 1215, 1216, 5, 517, 0, 0, 1216, 165, 1, 0, 0, 0, 1217, 1218, 3, 304, 152, 0, 1218, 167, 1, 0, 0, 0, 1219, 1221, 3, 170, 85, 0, 1220, 1222, 3, 176, 88, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1225, 3, 204, 102, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 206, 103, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1231, 3, 220, 110, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1233, 1, 0, 0, 0, 1232, 1234, 3, 222, 111, 0, 1233, 1232, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1240, 1, 0, 0, 0, 1235, 1236, 3, 170, 85, 0, 1236, 1237, 3, 176, 88, 0, 1237, 1238, 3, 228, 114, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1219, 1, 0, 0, 0, 1239, 1235, 1, 0, 0, 0, 1240, 169, 1, 0, 0, 0, 1241, 1243, 5, 336, 0, 0, 1242, 1244, 3, 364, 182, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1254, 1, 0, 0, 0, 1245, 1255, 5, 527, 0, 0, 1246, 1251, 3, 172, 86, 0, 1247, 1248, 5, 520, 0, 0, 1248, 1250, 3, 172, 86, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1245, 1, 0, 0, 0, 1254, 1246, 1, 0, 0, 0, 1255, 171, 1, 0, 0, 0, 1256, 1272, 3, 174, 87, 0, 1257, 1262, 3, 52, 26, 0, 1258, 1260, 5, 17, 0, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 3, 258, 129, 0, 1262, 1259, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1272, 1, 0, 0, 0, 1264, 1269, 3, 258, 129, 0, 1265, 1267, 5, 17, 0, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 3, 52, 26, 0, 1269, 1266, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1256, 1, 0, 0, 0, 1271, 1257, 1, 0, 0, 0, 1271, 1264, 1, 0, 0, 0, 1272, 173, 1, 0, 0, 0, 1273, 1274, 3, 268, 134, 0, 1274, 1275, 5, 262, 0, 0, 1275, 1276, 3, 226, 113, 0, 1276, 1277, 5, 17, 0, 0, 1277, 1278, 3, 304, 152, 0, 1278, 1286, 1, 0, 0, 0, 1279, 1280, 3, 268, 134, 0, 1280, 1281, 5, 262, 0, 0, 1281, 1282, 3, 296, 148, 0, 1282, 1283, 5, 17, 0, 0, 1283, 1284, 3, 304, 152, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1273, 1, 0, 0, 0, 1285, 1279, 1, 0, 0, 0, 1286, 175, 1, 0, 0, 0, 1287, 1288, 5, 151, 0, 0, 1288, 1289, 3, 178, 89, 0, 1289, 177, 1, 0, 0, 0, 1290, 1291, 6, 89, -1, 0, 1291, 1296, 3, 180, 90, 0, 1292, 1293, 5, 520, 0, 0, 1293, 1295, 3, 180, 90, 0, 1294, 1292, 1, 0, 0, 0, 1295, 1298, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1302, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 3, 188, 94, 0, 1300, 1302, 3, 190, 95, 0, 1301, 1290, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1300, 1, 0, 0, 0, 1302, 1324, 1, 0, 0, 0, 1303, 1304, 10, 3, 0, 0, 1304, 1305, 5, 73, 0, 0, 1305, 1306, 5, 185, 0, 0, 1306, 1323, 3, 178, 89, 4, 1307, 1309, 10, 4, 0, 0, 1308, 1310, 5, 233, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1313, 7, 20, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 5, 261, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 5, 185, 0, 0, 1318, 1320, 3, 178, 89, 0, 1319, 1321, 3, 202, 101, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1323, 1, 0, 0, 0, 1322, 1303, 1, 0, 0, 0, 1322, 1307, 1, 0, 0, 0, 1323, 1326, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 179, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1327, 1329, 3, 182, 91, 0, 1328, 1330, 3, 294, 147, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 181, 1, 0, 0, 0, 1331, 1333, 5, 373, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 3, 322, 161, 0, 1335, 1337, 3, 184, 92, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1342, 1, 0, 0, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 278, 139, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1383, 1, 0, 0, 0, 1344, 1346, 3, 324, 162, 0, 1345, 1347, 3, 184, 92, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1352, 1, 0, 0, 0, 1348, 1350, 5, 17, 0, 0, 1349, 1348, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 3, 278, 139, 0, 1352, 1349, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1383, 1, 0, 0, 0, 1354, 1355, 5, 198, 0, 0, 1355, 1356, 5, 373, 0, 0, 1356, 1357, 5, 516, 0, 0, 1357, 1358, 3, 272, 136, 0, 1358, 1359, 5, 516, 0, 0, 1359, 1364, 3, 274, 137, 0, 1360, 1361, 5, 520, 0, 0, 1361, 1363, 3, 274, 137, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1368, 5, 517, 0, 0, 1368, 1369, 5, 517, 0, 0, 1369, 1383, 1, 0, 0, 0, 1370, 1372, 5, 198, 0, 0, 1371, 1370, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1374, 5, 516, 0, 0, 1374, 1375, 3, 158, 79, 0, 1375, 1376, 5, 517, 0, 0, 1376, 1383, 1, 0, 0, 0, 1377, 1378, 5, 405, 0, 0, 1378, 1379, 5, 516, 0, 0, 1379, 1380, 3, 258, 129, 0, 1380, 1381, 5, 517, 0, 0, 1381, 1383, 1, 0, 0, 0, 1382, 1332, 1, 0, 0, 0, 1382, 1344, 1, 0, 0, 0, 1382, 1354, 1, 0, 0, 0, 1382, 1371, 1, 0, 0, 0, 1382, 1377, 1, 0, 0, 0, 1383, 183, 1, 0, 0, 0, 1384, 1385, 5, 146, 0, 0, 1385, 1386, 5, 371, 0, 0, 1386, 1387, 5, 17, 0, 0, 1387, 1388, 5, 249, 0, 0, 1388, 1389, 3, 186, 93, 0, 1389, 185, 1, 0, 0, 0, 1390, 1391, 3, 258, 129, 0, 1391, 187, 1, 0, 0, 0, 1392, 1393, 5, 516, 0, 0, 1393, 1394, 3, 150, 75, 0, 1394, 1395, 5, 517, 0, 0, 1395, 1396, 3, 294, 147, 0, 1396, 189, 1, 0, 0, 0, 1397, 1398, 5, 373, 0, 0, 1398, 1399, 5, 516, 0, 0, 1399, 1400, 3, 192, 96, 0, 1400, 1401, 5, 517, 0, 0, 1401, 191, 1, 0, 0, 0, 1402, 1403, 3, 194, 97, 0, 1403, 1404, 5, 516, 0, 0, 1404, 1409, 3, 196, 98, 0, 1405, 1406, 5, 520, 0, 0, 1406, 1408, 3, 196, 98, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 517, 0, 0, 1413, 193, 1, 0, 0, 0, 1414, 1415, 7, 21, 0, 0, 1415, 195, 1, 0, 0, 0, 1416, 1417, 5, 373, 0, 0, 1417, 1432, 3, 218, 109, 0, 1418, 1432, 3, 200, 100, 0, 1419, 1432, 3, 282, 141, 0, 1420, 1421, 5, 446, 0, 0, 1421, 1422, 5, 536, 0, 0, 1422, 1423, 5, 373, 0, 0, 1423, 1432, 3, 218, 109, 0, 1424, 1425, 5, 498, 0, 0, 1425, 1426, 5, 536, 0, 0, 1426, 1432, 3, 200, 100, 0, 1427, 1428, 3, 198, 99, 0, 1428, 1429, 5, 536, 0, 0, 1429, 1430, 3, 282, 141, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1416, 1, 0, 0, 0, 1431, 1418, 1, 0, 0, 0, 1431, 1419, 1, 0, 0, 0, 1431, 1420, 1, 0, 0, 0, 1431, 1424, 1, 0, 0, 0, 1431, 1427, 1, 0, 0, 0, 1432, 197, 1, 0, 0, 0, 1433, 1434, 7, 22, 0, 0, 1434, 199, 1, 0, 0, 0, 1435, 1436, 5, 451, 0, 0, 1436, 1437, 5, 516, 0, 0, 1437, 1438, 3, 52, 26, 0, 1438, 1439, 5, 517, 0, 0, 1439, 201, 1, 0, 0, 0, 1440, 1441, 5, 253, 0, 0, 1441, 1445, 3, 260, 130, 0, 1442, 1443, 5, 412, 0, 0, 1443, 1445, 3, 54, 27, 0, 1444, 1440, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 203, 1, 0, 0, 0, 1446, 1447, 5, 430, 0, 0, 1447, 1448, 3, 260, 130, 0, 1448, 205, 1, 0, 0, 0, 1449, 1450, 5, 159, 0, 0, 1450, 1451, 5, 34, 0, 0, 1451, 1456, 3, 208, 104, 0, 1452, 1453, 5, 520, 0, 0, 1453, 1455, 3, 208, 104, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1458, 1, 0, 0, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 207, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1500, 3, 52, 26, 0, 1460, 1500, 3, 214, 107, 0, 1461, 1462, 5, 516, 0, 0, 1462, 1500, 5, 517, 0, 0, 1463, 1464, 5, 516, 0, 0, 1464, 1469, 3, 258, 129, 0, 1465, 1466, 5, 520, 0, 0, 1466, 1468, 3, 258, 129, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1471, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1473, 5, 517, 0, 0, 1473, 1500, 1, 0, 0, 0, 1474, 1475, 3, 212, 106, 0, 1475, 1476, 5, 516, 0, 0, 1476, 1481, 3, 258, 129, 0, 1477, 1478, 5, 520, 0, 0, 1478, 1480, 3, 258, 129, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1484, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1485, 5, 517, 0, 0, 1485, 1500, 1, 0, 0, 0, 1486, 1487, 3, 210, 105, 0, 1487, 1488, 5, 516, 0, 0, 1488, 1493, 3, 208, 104, 0, 1489, 1490, 5, 520, 0, 0, 1490, 1492, 3, 208, 104, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 517, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1500, 3, 258, 129, 0, 1499, 1459, 1, 0, 0, 0, 1499, 1460, 1, 0, 0, 0, 1499, 1461, 1, 0, 0, 0, 1499, 1463, 1, 0, 0, 0, 1499, 1474, 1, 0, 0, 0, 1499, 1486, 1, 0, 0, 0, 1499, 1498, 1, 0, 0, 0, 1500, 209, 1, 0, 0, 0, 1501, 1502, 5, 160, 0, 0, 1502, 1503, 5, 493, 0, 0, 1503, 211, 1, 0, 0, 0, 1504, 1505, 7, 23, 0, 0, 1505, 213, 1, 0, 0, 0, 1506, 1507, 3, 216, 108, 0, 1507, 1508, 5, 516, 0, 0, 1508, 1509, 3, 218, 109, 0, 1509, 1510, 5, 520, 0, 0, 1510, 1511, 3, 282, 141, 0, 1511, 1512, 5, 517, 0, 0, 1512, 215, 1, 0, 0, 0, 1513, 1514, 7, 24, 0, 0, 1514, 217, 1, 0, 0, 0, 1515, 1516, 3, 328, 164, 0, 1516, 219, 1, 0, 0, 0, 1517, 1518, 5, 163, 0, 0, 1518, 1519, 3, 260, 130, 0, 1519, 221, 1, 0, 0, 0, 1520, 1521, 5, 432, 0, 0, 1521, 1526, 3, 224, 112, 0, 1522, 1523, 5, 520, 0, 0, 1523, 1525, 3, 224, 112, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1528, 1, 0, 0, 0, 1526, 1524, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 223, 1, 0, 0, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1530, 3, 296, 148, 0, 1530, 1531, 5, 17, 0, 0, 1531, 1532, 3, 226, 113, 0, 1532, 225, 1, 0, 0, 0, 1533, 1535, 3, 296, 148, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 516, 0, 0, 1537, 1539, 3, 236, 118, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1541, 1, 0, 0, 0, 1540, 1542, 3, 230, 115, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 1, 0, 0, 0, 1543, 1545, 3, 252, 126, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 517, 0, 0, 1547, 227, 1, 0, 0, 0, 1548, 1549, 5, 213, 0, 0, 1549, 1551, 5, 516, 0, 0, 1550, 1552, 3, 236, 118, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1554, 1, 0, 0, 0, 1553, 1555, 3, 230, 115, 0, 1554, 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, 1558, 3, 240, 120, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 1, 0, 0, 0, 1559, 1561, 3, 246, 123, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1563, 1, 0, 0, 0, 1562, 1564, 3, 248, 124, 0, 1563, 1562, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1566, 1, 0, 0, 0, 1565, 1567, 3, 242, 121, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 3, 250, 125, 0, 1569, 1574, 5, 517, 0, 0, 1570, 1572, 5, 17, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 3, 304, 152, 0, 1574, 1571, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 229, 1, 0, 0, 0, 1576, 1577, 5, 258, 0, 0, 1577, 1578, 5, 34, 0, 0, 1578, 1583, 3, 232, 116, 0, 1579, 1580, 5, 520, 0, 0, 1580, 1582, 3, 232, 116, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 231, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1588, 3, 52, 26, 0, 1587, 1589, 7, 25, 0, 0, 1588, 1587, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1592, 1, 0, 0, 0, 1590, 1591, 5, 476, 0, 0, 1591, 1593, 7, 26, 0, 0, 1592, 1590, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 233, 1, 0, 0, 0, 1594, 1597, 5, 204, 0, 0, 1595, 1598, 5, 5, 0, 0, 1596, 1598, 3, 258, 129, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 235, 1, 0, 0, 0, 1599, 1600, 5, 268, 0, 0, 1600, 1601, 5, 34, 0, 0, 1601, 1606, 3, 52, 26, 0, 1602, 1603, 5, 520, 0, 0, 1603, 1605, 3, 52, 26, 0, 1604, 1602, 1, 0, 0, 0, 1605, 1608, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 237, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1609, 1626, 5, 527, 0, 0, 1610, 1626, 5, 530, 0, 0, 1611, 1626, 5, 535, 0, 0, 1612, 1613, 5, 518, 0, 0, 1613, 1614, 5, 538, 0, 0, 1614, 1615, 5, 520, 0, 0, 1615, 1616, 5, 538, 0, 0, 1616, 1626, 5, 519, 0, 0, 1617, 1618, 5, 518, 0, 0, 1618, 1619, 5, 538, 0, 0, 1619, 1620, 5, 520, 0, 0, 1620, 1626, 5, 519, 0, 0, 1621, 1622, 5, 518, 0, 0, 1622, 1623, 5, 520, 0, 0, 1623, 1624, 5, 538, 0, 0, 1624, 1626, 5, 519, 0, 0, 1625, 1609, 1, 0, 0, 0, 1625, 1610, 1, 0, 0, 0, 1625, 1611, 1, 0, 0, 0, 1625, 1612, 1, 0, 0, 0, 1625, 1617, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1626, 239, 1, 0, 0, 0, 1627, 1628, 5, 215, 0, 0, 1628, 1633, 3, 172, 86, 0, 1629, 1630, 5, 520, 0, 0, 1630, 1632, 3, 172, 86, 0, 1631, 1629, 1, 0, 0, 0, 1632, 1635, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 241, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1637, 5, 271, 0, 0, 1637, 1639, 5, 516, 0, 0, 1638, 1640, 3, 244, 122, 0, 1639, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1645, 5, 517, 0, 0, 1644, 1646, 3, 256, 128, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 243, 1, 0, 0, 0, 1647, 1649, 3, 306, 153, 0, 1648, 1650, 3, 238, 119, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 245, 1, 0, 0, 0, 1651, 1652, 5, 5, 0, 0, 1652, 1653, 5, 322, 0, 0, 1653, 1654, 5, 272, 0, 0, 1654, 1660, 5, 210, 0, 0, 1655, 1656, 5, 254, 0, 0, 1656, 1657, 5, 321, 0, 0, 1657, 1658, 5, 272, 0, 0, 1658, 1660, 5, 210, 0, 0, 1659, 1651, 1, 0, 0, 0, 1659, 1655, 1, 0, 0, 0, 1660, 247, 1, 0, 0, 0, 1661, 1662, 5, 438, 0, 0, 1662, 1663, 5, 210, 0, 0, 1663, 1664, 5, 343, 0, 0, 1664, 1665, 5, 478, 0, 0, 1665, 1666, 5, 467, 0, 0, 1666, 1686, 5, 321, 0, 0, 1667, 1668, 5, 438, 0, 0, 1668, 1669, 5, 210, 0, 0, 1669, 1670, 5, 343, 0, 0, 1670, 1671, 5, 388, 0, 0, 1671, 1672, 5, 237, 0, 0, 1672, 1686, 5, 321, 0, 0, 1673, 1674, 5, 438, 0, 0, 1674, 1675, 5, 210, 0, 0, 1675, 1676, 5, 343, 0, 0, 1676, 1677, 5, 388, 0, 0, 1677, 1678, 5, 467, 0, 0, 1678, 1686, 3, 306, 153, 0, 1679, 1680, 5, 438, 0, 0, 1680, 1681, 5, 210, 0, 0, 1681, 1682, 5, 343, 0, 0, 1682, 1683, 5, 388, 0, 0, 1683, 1684, 5, 457, 0, 0, 1684, 1686, 3, 306, 153, 0, 1685, 1661, 1, 0, 0, 0, 1685, 1667, 1, 0, 0, 0, 1685, 1673, 1, 0, 0, 0, 1685, 1679, 1, 0, 0, 0, 1686, 249, 1, 0, 0, 0, 1687, 1688, 5, 105, 0, 0, 1688, 1693, 3, 172, 86, 0, 1689, 1690, 5, 520, 0, 0, 1690, 1692, 3, 172, 86, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 251, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 5, 292, 0, 0, 1697, 1698, 5, 27, 0, 0, 1698, 1699, 3, 282, 141, 0, 1699, 1700, 3, 254, 127, 0, 1700, 1706, 1, 0, 0, 0, 1701, 1702, 5, 322, 0, 0, 1702, 1703, 5, 27, 0, 0, 1703, 1704, 5, 538, 0, 0, 1704, 1706, 3, 254, 127, 0, 1705, 1696, 1, 0, 0, 0, 1705, 1701, 1, 0, 0, 0, 1706, 253, 1, 0, 0, 0, 1707, 1708, 5, 480, 0, 0, 1708, 1709, 5, 10, 0, 0, 1709, 1710, 5, 76, 0, 0, 1710, 1711, 5, 321, 0, 0, 1711, 255, 1, 0, 0, 0, 1712, 1713, 5, 434, 0, 0, 1713, 1714, 3, 282, 141, 0, 1714, 257, 1, 0, 0, 0, 1715, 1716, 3, 260, 130, 0, 1716, 259, 1, 0, 0, 0, 1717, 1718, 6, 130, -1, 0, 1718, 1719, 5, 241, 0, 0, 1719, 1730, 3, 260, 130, 6, 1720, 1721, 5, 133, 0, 0, 1721, 1722, 5, 516, 0, 0, 1722, 1723, 3, 158, 79, 0, 1723, 1724, 5, 517, 0, 0, 1724, 1730, 1, 0, 0, 0, 1725, 1727, 3, 266, 133, 0, 1726, 1728, 3, 262, 131, 0, 1727, 1726, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1717, 1, 0, 0, 0, 1729, 1720, 1, 0, 0, 0, 1729, 1725, 1, 0, 0, 0, 1730, 1745, 1, 0, 0, 0, 1731, 1732, 10, 3, 0, 0, 1732, 1733, 5, 10, 0, 0, 1733, 1744, 3, 260, 130, 4, 1734, 1735, 10, 2, 0, 0, 1735, 1736, 5, 257, 0, 0, 1736, 1744, 3, 260, 130, 3, 1737, 1738, 10, 1, 0, 0, 1738, 1740, 5, 184, 0, 0, 1739, 1741, 5, 241, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 7, 27, 0, 0, 1743, 1731, 1, 0, 0, 0, 1743, 1734, 1, 0, 0, 0, 1743, 1737, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 261, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1750, 5, 241, 0, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 5, 27, 0, 0, 1752, 1754, 7, 28, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 266, 133, 0, 1756, 1757, 5, 10, 0, 0, 1757, 1758, 3, 266, 133, 0, 1758, 1816, 1, 0, 0, 0, 1759, 1761, 5, 241, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 5, 170, 0, 0, 1763, 1764, 5, 516, 0, 0, 1764, 1769, 3, 258, 129, 0, 1765, 1766, 5, 520, 0, 0, 1766, 1768, 3, 258, 129, 0, 1767, 1765, 1, 0, 0, 0, 1768, 1771, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1773, 5, 517, 0, 0, 1773, 1816, 1, 0, 0, 0, 1774, 1776, 5, 241, 0, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 5, 170, 0, 0, 1778, 1779, 5, 516, 0, 0, 1779, 1780, 3, 158, 79, 0, 1780, 1781, 5, 517, 0, 0, 1781, 1816, 1, 0, 0, 0, 1782, 1783, 5, 133, 0, 0, 1783, 1784, 5, 516, 0, 0, 1784, 1785, 3, 158, 79, 0, 1785, 1786, 5, 517, 0, 0, 1786, 1816, 1, 0, 0, 0, 1787, 1789, 5, 241, 0, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 5, 318, 0, 0, 1791, 1816, 3, 266, 133, 0, 1792, 1816, 3, 264, 132, 0, 1793, 1795, 5, 184, 0, 0, 1794, 1796, 5, 241, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1816, 7, 27, 0, 0, 1798, 1800, 5, 184, 0, 0, 1799, 1801, 5, 241, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 5, 113, 0, 0, 1803, 1804, 5, 151, 0, 0, 1804, 1816, 3, 266, 133, 0, 1805, 1807, 5, 241, 0, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 5, 342, 0, 0, 1809, 1810, 5, 388, 0, 0, 1810, 1813, 3, 266, 133, 0, 1811, 1812, 5, 127, 0, 0, 1812, 1814, 3, 358, 179, 0, 1813, 1811, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 1, 0, 0, 0, 1815, 1749, 1, 0, 0, 0, 1815, 1760, 1, 0, 0, 0, 1815, 1775, 1, 0, 0, 0, 1815, 1782, 1, 0, 0, 0, 1815, 1788, 1, 0, 0, 0, 1815, 1792, 1, 0, 0, 0, 1815, 1793, 1, 0, 0, 0, 1815, 1798, 1, 0, 0, 0, 1815, 1806, 1, 0, 0, 0, 1816, 263, 1, 0, 0, 0, 1817, 1819, 5, 241, 0, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 5, 202, 0, 0, 1821, 1835, 7, 29, 0, 0, 1822, 1823, 5, 516, 0, 0, 1823, 1836, 5, 517, 0, 0, 1824, 1825, 5, 516, 0, 0, 1825, 1830, 3, 258, 129, 0, 1826, 1827, 5, 520, 0, 0, 1827, 1829, 3, 258, 129, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1834, 5, 517, 0, 0, 1834, 1836, 1, 0, 0, 0, 1835, 1822, 1, 0, 0, 0, 1835, 1824, 1, 0, 0, 0, 1836, 1847, 1, 0, 0, 0, 1837, 1839, 5, 241, 0, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 5, 202, 0, 0, 1841, 1844, 3, 266, 133, 0, 1842, 1843, 5, 127, 0, 0, 1843, 1845, 3, 358, 179, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1847, 1, 0, 0, 0, 1846, 1818, 1, 0, 0, 0, 1846, 1838, 1, 0, 0, 0, 1847, 265, 1, 0, 0, 0, 1848, 1849, 6, 133, -1, 0, 1849, 1853, 3, 268, 134, 0, 1850, 1851, 7, 30, 0, 0, 1851, 1853, 3, 266, 133, 7, 1852, 1848, 1, 0, 0, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1875, 1, 0, 0, 0, 1854, 1855, 10, 6, 0, 0, 1855, 1856, 7, 31, 0, 0, 1856, 1874, 3, 266, 133, 7, 1857, 1858, 10, 5, 0, 0, 1858, 1859, 7, 32, 0, 0, 1859, 1874, 3, 266, 133, 6, 1860, 1861, 10, 4, 0, 0, 1861, 1862, 5, 511, 0, 0, 1862, 1874, 3, 266, 133, 5, 1863, 1864, 10, 3, 0, 0, 1864, 1865, 5, 512, 0, 0, 1865, 1874, 3, 266, 133, 4, 1866, 1867, 10, 2, 0, 0, 1867, 1868, 5, 510, 0, 0, 1868, 1874, 3, 266, 133, 3, 1869, 1870, 10, 1, 0, 0, 1870, 1871, 3, 346, 173, 0, 1871, 1872, 3, 266, 133, 2, 1872, 1874, 1, 0, 0, 0, 1873, 1854, 1, 0, 0, 0, 1873, 1857, 1, 0, 0, 0, 1873, 1860, 1, 0, 0, 0, 1873, 1863, 1, 0, 0, 0, 1873, 1866, 1, 0, 0, 0, 1873, 1869, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 267, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1879, 6, 134, -1, 0, 1879, 1881, 5, 40, 0, 0, 1880, 1882, 3, 310, 155, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1886, 5, 120, 0, 0, 1886, 1888, 3, 258, 129, 0, 1887, 1885, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 5, 122, 0, 0, 1890, 1971, 1, 0, 0, 0, 1891, 1892, 5, 40, 0, 0, 1892, 1894, 3, 258, 129, 0, 1893, 1895, 3, 310, 155, 0, 1894, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1900, 1, 0, 0, 0, 1898, 1899, 5, 120, 0, 0, 1899, 1901, 3, 258, 129, 0, 1900, 1898, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 5, 122, 0, 0, 1903, 1971, 1, 0, 0, 0, 1904, 1905, 5, 41, 0, 0, 1905, 1906, 5, 516, 0, 0, 1906, 1907, 3, 258, 129, 0, 1907, 1908, 5, 17, 0, 0, 1908, 1909, 3, 56, 28, 0, 1909, 1910, 5, 517, 0, 0, 1910, 1971, 1, 0, 0, 0, 1911, 1912, 5, 457, 0, 0, 1912, 1913, 5, 516, 0, 0, 1913, 1916, 3, 258, 129, 0, 1914, 1915, 5, 461, 0, 0, 1915, 1917, 5, 476, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 5, 517, 0, 0, 1919, 1971, 1, 0, 0, 0, 1920, 1921, 5, 467, 0, 0, 1921, 1922, 5, 516, 0, 0, 1922, 1925, 3, 258, 129, 0, 1923, 1924, 5, 461, 0, 0, 1924, 1926, 5, 476, 0, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 5, 517, 0, 0, 1928, 1971, 1, 0, 0, 0, 1929, 1930, 5, 281, 0, 0, 1930, 1931, 5, 516, 0, 0, 1931, 1932, 3, 266, 133, 0, 1932, 1933, 5, 170, 0, 0, 1933, 1934, 3, 266, 133, 0, 1934, 1935, 5, 517, 0, 0, 1935, 1971, 1, 0, 0, 0, 1936, 1971, 3, 354, 177, 0, 1937, 1971, 5, 527, 0, 0, 1938, 1939, 3, 328, 164, 0, 1939, 1940, 5, 513, 0, 0, 1940, 1941, 5, 527, 0, 0, 1941, 1971, 1, 0, 0, 0, 1942, 1943, 5, 516, 0, 0, 1943, 1944, 3, 158, 79, 0, 1944, 1945, 5, 517, 0, 0, 1945, 1971, 1, 0, 0, 0, 1946, 1947, 3, 272, 136, 0, 1947, 1959, 5, 516, 0, 0, 1948, 1950, 3, 364, 182, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1956, 3, 274, 137, 0, 1952, 1953, 5, 520, 0, 0, 1953, 1955, 3, 274, 137, 0, 1954, 1952, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1949, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1962, 5, 517, 0, 0, 1962, 1971, 1, 0, 0, 0, 1963, 1971, 3, 304, 152, 0, 1964, 1971, 3, 276, 138, 0, 1965, 1966, 5, 516, 0, 0, 1966, 1967, 3, 258, 129, 0, 1967, 1968, 5, 517, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1971, 5, 85, 0, 0, 1970, 1878, 1, 0, 0, 0, 1970, 1891, 1, 0, 0, 0, 1970, 1904, 1, 0, 0, 0, 1970, 1911, 1, 0, 0, 0, 1970, 1920, 1, 0, 0, 0, 1970, 1929, 1, 0, 0, 0, 1970, 1936, 1, 0, 0, 0, 1970, 1937, 1, 0, 0, 0, 1970, 1938, 1, 0, 0, 0, 1970, 1942, 1, 0, 0, 0, 1970, 1946, 1, 0, 0, 0, 1970, 1963, 1, 0, 0, 0, 1970, 1964, 1, 0, 0, 0, 1970, 1965, 1, 0, 0, 0, 1970, 1969, 1, 0, 0, 0, 1971, 1979, 1, 0, 0, 0, 1972, 1973, 10, 5, 0, 0, 1973, 1974, 5, 514, 0, 0, 1974, 1975, 3, 266, 133, 0, 1975, 1976, 5, 515, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1972, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 269, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1983, 3, 328, 164, 0, 1983, 271, 1, 0, 0, 0, 1984, 1987, 3, 372, 186, 0, 1985, 1987, 3, 328, 164, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1985, 1, 0, 0, 0, 1987, 273, 1, 0, 0, 0, 1988, 1993, 3, 370, 185, 0, 1989, 1993, 3, 368, 184, 0, 1990, 1993, 3, 366, 183, 0, 1991, 1993, 3, 258, 129, 0, 1992, 1988, 1, 0, 0, 0, 1992, 1989, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1992, 1991, 1, 0, 0, 0, 1993, 275, 1, 0, 0, 0, 1994, 1995, 3, 328, 164, 0, 1995, 277, 1, 0, 0, 0, 1996, 1997, 3, 304, 152, 0, 1997, 279, 1, 0, 0, 0, 1998, 2001, 3, 304, 152, 0, 1999, 2001, 3, 276, 138, 0, 2000, 1998, 1, 0, 0, 0, 2000, 1999, 1, 0, 0, 0, 2001, 281, 1, 0, 0, 0, 2002, 2005, 5, 182, 0, 0, 2003, 2006, 3, 284, 142, 0, 2004, 2006, 3, 288, 144, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 283, 1, 0, 0, 0, 2007, 2009, 3, 286, 143, 0, 2008, 2010, 3, 290, 145, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 285, 1, 0, 0, 0, 2011, 2012, 3, 292, 146, 0, 2012, 2013, 3, 368, 184, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2011, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 287, 1, 0, 0, 0, 2018, 2021, 3, 290, 145, 0, 2019, 2022, 3, 286, 143, 0, 2020, 2022, 3, 290, 145, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 289, 1, 0, 0, 0, 2023, 2024, 3, 292, 146, 0, 2024, 2025, 3, 368, 184, 0, 2025, 2026, 5, 388, 0, 0, 2026, 2027, 3, 368, 184, 0, 2027, 291, 1, 0, 0, 0, 2028, 2030, 7, 33, 0, 0, 2029, 2028, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2034, 7, 34, 0, 0, 2032, 2034, 5, 537, 0, 0, 2033, 2029, 1, 0, 0, 0, 2033, 2032, 1, 0, 0, 0, 2034, 293, 1, 0, 0, 0, 2035, 2037, 5, 17, 0, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2040, 3, 304, 152, 0, 2039, 2041, 3, 300, 150, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 295, 1, 0, 0, 0, 2042, 2043, 3, 304, 152, 0, 2043, 2044, 3, 298, 149, 0, 2044, 297, 1, 0, 0, 0, 2045, 2046, 5, 221, 0, 0, 2046, 2048, 3, 304, 152, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2053, 1, 0, 0, 0, 2051, 2053, 1, 0, 0, 0, 2052, 2047, 1, 0, 0, 0, 2052, 2051, 1, 0, 0, 0, 2053, 299, 1, 0, 0, 0, 2054, 2055, 5, 516, 0, 0, 2055, 2056, 3, 302, 151, 0, 2056, 2057, 5, 517, 0, 0, 2057, 301, 1, 0, 0, 0, 2058, 2063, 3, 304, 152, 0, 2059, 2060, 5, 520, 0, 0, 2060, 2062, 3, 304, 152, 0, 2061, 2059, 1, 0, 0, 0, 2062, 2065, 1, 0, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 303, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2070, 3, 306, 153, 0, 2067, 2070, 3, 308, 154, 0, 2068, 2070, 3, 374, 187, 0, 2069, 2066, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2069, 2068, 1, 0, 0, 0, 2070, 305, 1, 0, 0, 0, 2071, 2072, 7, 35, 0, 0, 2072, 307, 1, 0, 0, 0, 2073, 2074, 5, 537, 0, 0, 2074, 309, 1, 0, 0, 0, 2075, 2076, 5, 428, 0, 0, 2076, 2077, 3, 258, 129, 0, 2077, 2078, 5, 376, 0, 0, 2078, 2079, 3, 258, 129, 0, 2079, 311, 1, 0, 0, 0, 2080, 2081, 3, 304, 152, 0, 2081, 313, 1, 0, 0, 0, 2082, 2083, 3, 304, 152, 0, 2083, 315, 1, 0, 0, 0, 2084, 2087, 3, 304, 152, 0, 2085, 2086, 5, 513, 0, 0, 2086, 2088, 3, 304, 152, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 317, 1, 0, 0, 0, 2089, 2092, 3, 304, 152, 0, 2090, 2091, 5, 513, 0, 0, 2091, 2093, 3, 304, 152, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 319, 1, 0, 0, 0, 2094, 2097, 3, 304, 152, 0, 2095, 2096, 5, 513, 0, 0, 2096, 2098, 3, 304, 152, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2107, 1, 0, 0, 0, 2099, 2100, 3, 304, 152, 0, 2100, 2101, 5, 513, 0, 0, 2101, 2104, 3, 304, 152, 0, 2102, 2103, 5, 513, 0, 0, 2103, 2105, 3, 304, 152, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2094, 1, 0, 0, 0, 2106, 2099, 1, 0, 0, 0, 2107, 321, 1, 0, 0, 0, 2108, 2111, 3, 304, 152, 0, 2109, 2110, 5, 513, 0, 0, 2110, 2112, 3, 304, 152, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2121, 1, 0, 0, 0, 2113, 2114, 3, 304, 152, 0, 2114, 2115, 5, 513, 0, 0, 2115, 2118, 3, 304, 152, 0, 2116, 2117, 5, 513, 0, 0, 2117, 2119, 3, 304, 152, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2108, 1, 0, 0, 0, 2120, 2113, 1, 0, 0, 0, 2121, 323, 1, 0, 0, 0, 2122, 2125, 3, 304, 152, 0, 2123, 2124, 5, 513, 0, 0, 2124, 2126, 3, 304, 152, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2135, 1, 0, 0, 0, 2127, 2128, 3, 304, 152, 0, 2128, 2129, 5, 513, 0, 0, 2129, 2132, 3, 304, 152, 0, 2130, 2131, 5, 513, 0, 0, 2131, 2133, 3, 304, 152, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2135, 1, 0, 0, 0, 2134, 2122, 1, 0, 0, 0, 2134, 2127, 1, 0, 0, 0, 2135, 325, 1, 0, 0, 0, 2136, 2139, 3, 304, 152, 0, 2137, 2138, 5, 513, 0, 0, 2138, 2140, 3, 304, 152, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2149, 1, 0, 0, 0, 2141, 2142, 3, 304, 152, 0, 2142, 2143, 5, 513, 0, 0, 2143, 2146, 3, 304, 152, 0, 2144, 2145, 5, 513, 0, 0, 2145, 2147, 3, 304, 152, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2136, 1, 0, 0, 0, 2148, 2141, 1, 0, 0, 0, 2149, 327, 1, 0, 0, 0, 2150, 2155, 3, 304, 152, 0, 2151, 2152, 5, 513, 0, 0, 2152, 2154, 3, 304, 152, 0, 2153, 2151, 1, 0, 0, 0, 2154, 2157, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2155, 2153, 1, 0, 0, 0, 2156, 329, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2159, 5, 433, 0, 0, 2159, 2160, 3, 336, 168, 0, 2160, 331, 1, 0, 0, 0, 2161, 2162, 5, 167, 0, 0, 2162, 2163, 5, 241, 0, 0, 2163, 2164, 5, 133, 0, 0, 2164, 333, 1, 0, 0, 0, 2165, 2166, 5, 167, 0, 0, 2166, 2167, 5, 133, 0, 0, 2167, 335, 1, 0, 0, 0, 2168, 2169, 5, 516, 0, 0, 2169, 2174, 3, 338, 169, 0, 2170, 2171, 5, 520, 0, 0, 2171, 2173, 3, 338, 169, 0, 2172, 2170, 1, 0, 0, 0, 2173, 2176, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2178, 5, 517, 0, 0, 2178, 337, 1, 0, 0, 0, 2179, 2184, 3, 340, 170, 0, 2180, 2182, 5, 505, 0, 0, 2181, 2180, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2185, 3, 342, 171, 0, 2184, 2181, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 339, 1, 0, 0, 0, 2186, 2190, 3, 304, 152, 0, 2187, 2190, 3, 276, 138, 0, 2188, 2190, 5, 537, 0, 0, 2189, 2186, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 341, 1, 0, 0, 0, 2191, 2196, 5, 538, 0, 0, 2192, 2196, 5, 539, 0, 0, 2193, 2196, 3, 362, 181, 0, 2194, 2196, 5, 537, 0, 0, 2195, 2191, 1, 0, 0, 0, 2195, 2192, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2194, 1, 0, 0, 0, 2196, 343, 1, 0, 0, 0, 2197, 2204, 5, 10, 0, 0, 2198, 2199, 5, 511, 0, 0, 2199, 2204, 5, 511, 0, 0, 2200, 2204, 5, 257, 0, 0, 2201, 2202, 5, 510, 0, 0, 2202, 2204, 5, 510, 0, 0, 2203, 2197, 1, 0, 0, 0, 2203, 2198, 1, 0, 0, 0, 2203, 2200, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 345, 1, 0, 0, 0, 2205, 2220, 5, 505, 0, 0, 2206, 2220, 5, 506, 0, 0, 2207, 2220, 5, 507, 0, 0, 2208, 2209, 5, 507, 0, 0, 2209, 2220, 5, 505, 0, 0, 2210, 2211, 5, 506, 0, 0, 2211, 2220, 5, 505, 0, 0, 2212, 2213, 5, 507, 0, 0, 2213, 2220, 5, 506, 0, 0, 2214, 2215, 5, 508, 0, 0, 2215, 2220, 5, 505, 0, 0, 2216, 2217, 5, 507, 0, 0, 2217, 2218, 5, 505, 0, 0, 2218, 2220, 5, 506, 0, 0, 2219, 2205, 1, 0, 0, 0, 2219, 2206, 1, 0, 0, 0, 2219, 2207, 1, 0, 0, 0, 2219, 2208, 1, 0, 0, 0, 2219, 2210, 1, 0, 0, 0, 2219, 2212, 1, 0, 0, 0, 2219, 2214, 1, 0, 0, 0, 2219, 2216, 1, 0, 0, 0, 2220, 347, 1, 0, 0, 0, 2221, 2222, 5, 507, 0, 0, 2222, 2229, 5, 507, 0, 0, 2223, 2224, 5, 506, 0, 0, 2224, 2229, 5, 506, 0, 0, 2225, 2229, 5, 511, 0, 0, 2226, 2229, 5, 512, 0, 0, 2227, 2229, 5, 510, 0, 0, 2228, 2221, 1, 0, 0, 0, 2228, 2223, 1, 0, 0, 0, 2228, 2225, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2227, 1, 0, 0, 0, 2229, 349, 1, 0, 0, 0, 2230, 2231, 7, 36, 0, 0, 2231, 351, 1, 0, 0, 0, 2232, 2233, 7, 37, 0, 0, 2233, 353, 1, 0, 0, 0, 2234, 2249, 3, 282, 141, 0, 2235, 2249, 3, 356, 178, 0, 2236, 2249, 3, 358, 179, 0, 2237, 2239, 5, 529, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2249, 3, 360, 180, 0, 2241, 2249, 3, 362, 181, 0, 2242, 2249, 5, 539, 0, 0, 2243, 2249, 5, 540, 0, 0, 2244, 2246, 5, 241, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 5, 244, 0, 0, 2248, 2234, 1, 0, 0, 0, 2248, 2235, 1, 0, 0, 0, 2248, 2236, 1, 0, 0, 0, 2248, 2238, 1, 0, 0, 0, 2248, 2241, 1, 0, 0, 0, 2248, 2242, 1, 0, 0, 0, 2248, 2243, 1, 0, 0, 0, 2248, 2245, 1, 0, 0, 0, 2249, 355, 1, 0, 0, 0, 2250, 2251, 3, 366, 183, 0, 2251, 2252, 3, 358, 179, 0, 2252, 357, 1, 0, 0, 0, 2253, 2254, 5, 537, 0, 0, 2254, 359, 1, 0, 0, 0, 2255, 2256, 5, 538, 0, 0, 2256, 361, 1, 0, 0, 0, 2257, 2258, 7, 38, 0, 0, 2258, 363, 1, 0, 0, 0, 2259, 2260, 7, 39, 0, 0, 2260, 365, 1, 0, 0, 0, 2261, 2262, 7, 40, 0, 0, 2262, 367, 1, 0, 0, 0, 2263, 2264, 7, 41, 0, 0, 2264, 369, 1, 0, 0, 0, 2265, 2266, 7, 42, 0, 0, 2266, 371, 1, 0, 0, 0, 2267, 2268, 7, 43, 0, 0, 2268, 373, 1, 0, 0, 0, 2269, 2270, 7, 44, 0, 0, 2270, 375, 1, 0, 0, 0, 270, 379, 386, 389, 403, 421, 425, 434, 439, 446, 457, 466, 478, 481, 488, 491, 499, 503, 508, 511, 518, 526, 530, 542, 550, 554, 586, 589, 594, 598, 602, 606, 615, 620, 624, 628, 632, 635, 639, 644, 650, 655, 660, 663, 667, 671, 679, 687, 691, 695, 699, 703, 707, 711, 715, 719, 721, 731, 739, 763, 770, 776, 779, 782, 792, 795, 803, 815, 839, 851, 856, 860, 868, 872, 878, 888, 892, 898, 902, 906, 909, 918, 922, 929, 932, 942, 950, 958, 962, 977, 996, 1007, 1011, 1018, 1023, 1029, 1033, 1040, 1044, 1048, 1052, 1060, 1064, 1069, 1075, 1081, 1084, 1088, 1099, 1108, 1122, 1134, 1149, 1152, 1156, 1159, 1161, 1166, 1170, 1173, 1177, 1186, 1195, 1205, 1210, 1221, 1224, 1227, 1230, 1233, 1239, 1243, 1251, 1254, 1259, 1262, 1266, 1269, 1271, 1285, 1296, 1301, 1309, 1312, 1315, 1320, 1322, 1324, 1329, 1332, 1336, 1339, 1342, 1346, 1349, 1352, 1364, 1371, 1382, 1409, 1431, 1444, 1456, 1469, 1481, 1493, 1499, 1526, 1534, 1538, 1541, 1544, 1551, 1554, 1557, 1560, 1563, 1566, 1571, 1574, 1583, 1588, 1592, 1597, 1606, 1625, 1633, 1641, 1645, 1649, 1659, 1685, 1693, 1705, 1727, 1729, 1740, 1743, 1745, 1749, 1753, 1760, 1769, 1775, 1788, 1795, 1800, 1806, 1813, 1815, 1818, 1830, 1835, 1838, 1844, 1846, 1852, 1873, 1875, 1883, 1887, 1896, 1900, 1916, 1925, 1949, 1956, 1959, 1970, 1979, 1986, 1992, 2000, 2005, 2009, 2016, 2021, 2029, 2033, 2036, 2040, 2049, 2052, 2063, 2069, 2087, 2092, 2097, 2104, 2106, 2111, 2118, 2120, 2125, 2132, 2134, 2139, 2146, 2148, 2155, 2174, 2181, 2184, 2189, 2195, 2203, 2219, 2228, 2238, 2245, 2248] \ No newline at end of file +[4, 1, 541, 2260, 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, 1, 0, 5, 0, 376, 8, 0, 10, 0, 12, 0, 379, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 385, 8, 1, 1, 1, 3, 1, 388, 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, 402, 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, 420, 8, 4, 1, 5, 1, 5, 3, 5, 424, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 433, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 438, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 443, 8, 8, 10, 8, 12, 8, 446, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 456, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 463, 8, 11, 10, 11, 12, 11, 466, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 477, 8, 12, 1, 12, 3, 12, 480, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 487, 8, 12, 1, 12, 3, 12, 490, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 498, 8, 12, 1, 12, 1, 12, 3, 12, 502, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 507, 8, 12, 1, 12, 3, 12, 510, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 517, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 525, 8, 15, 1, 16, 1, 16, 3, 16, 529, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 541, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 549, 8, 18, 1, 18, 1, 18, 3, 18, 553, 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, 585, 8, 18, 1, 19, 3, 19, 588, 8, 19, 1, 19, 4, 19, 591, 8, 19, 11, 19, 12, 19, 592, 1, 20, 1, 20, 3, 20, 597, 8, 20, 1, 21, 1, 21, 3, 21, 601, 8, 21, 1, 21, 1, 21, 3, 21, 605, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 612, 8, 21, 10, 21, 12, 21, 615, 9, 21, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 3, 21, 623, 8, 21, 1, 21, 1, 21, 3, 21, 627, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 632, 8, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 644, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 650, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 655, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 660, 8, 24, 1, 24, 1, 24, 3, 24, 664, 8, 24, 1, 25, 1, 25, 3, 25, 668, 8, 25, 1, 26, 1, 26, 3, 26, 672, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 678, 8, 27, 10, 27, 12, 27, 681, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 688, 8, 28, 1, 28, 1, 28, 3, 28, 692, 8, 28, 1, 28, 1, 28, 3, 28, 696, 8, 28, 1, 28, 1, 28, 3, 28, 700, 8, 28, 1, 28, 1, 28, 3, 28, 704, 8, 28, 1, 28, 1, 28, 3, 28, 708, 8, 28, 1, 28, 1, 28, 3, 28, 712, 8, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 28, 1, 28, 3, 28, 720, 8, 28, 3, 28, 722, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 762, 8, 34, 10, 34, 12, 34, 765, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 771, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 777, 8, 35, 1, 35, 3, 35, 780, 8, 35, 1, 35, 3, 35, 783, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 790, 8, 36, 1, 36, 3, 36, 793, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 802, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 814, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 836, 8, 45, 10, 45, 12, 45, 839, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 848, 8, 46, 10, 46, 12, 46, 851, 9, 46, 1, 46, 1, 46, 3, 46, 855, 8, 46, 1, 47, 1, 47, 3, 47, 859, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 865, 8, 48, 10, 48, 12, 48, 868, 9, 48, 1, 48, 3, 48, 871, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 877, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 3, 51, 887, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 892, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 898, 8, 52, 1, 52, 1, 52, 3, 52, 902, 8, 52, 1, 52, 1, 52, 3, 52, 906, 8, 52, 1, 52, 1, 52, 3, 52, 910, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 919, 8, 53, 1, 53, 1, 53, 3, 53, 923, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 930, 8, 53, 1, 53, 3, 53, 933, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 941, 8, 54, 10, 54, 12, 54, 944, 9, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 951, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 959, 8, 56, 1, 57, 1, 57, 3, 57, 963, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 978, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 997, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1008, 8, 65, 1, 65, 1, 65, 3, 65, 1012, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1019, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1024, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 1030, 8, 67, 1, 67, 1, 67, 3, 67, 1034, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1041, 8, 68, 1, 68, 1, 68, 3, 68, 1045, 8, 68, 1, 69, 1, 69, 3, 69, 1049, 8, 69, 1, 69, 1, 69, 3, 69, 1053, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1061, 8, 70, 1, 70, 1, 70, 3, 70, 1065, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 1070, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1076, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1082, 8, 72, 1, 72, 3, 72, 1085, 8, 72, 1, 72, 1, 72, 3, 72, 1089, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 1098, 8, 74, 10, 74, 12, 74, 1101, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1107, 8, 75, 10, 75, 12, 75, 1110, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 4, 76, 1121, 8, 76, 11, 76, 12, 76, 1122, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1133, 8, 77, 11, 77, 12, 77, 1134, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1150, 8, 78, 1, 78, 3, 78, 1153, 8, 78, 1, 78, 1, 78, 3, 78, 1157, 8, 78, 1, 78, 3, 78, 1160, 8, 78, 3, 78, 1162, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1167, 8, 78, 1, 78, 1, 78, 3, 78, 1171, 8, 78, 1, 78, 3, 78, 1174, 8, 78, 5, 78, 1176, 8, 78, 10, 78, 12, 78, 1179, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1185, 8, 79, 10, 79, 12, 79, 1188, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1194, 8, 80, 10, 80, 12, 80, 1197, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1204, 8, 81, 10, 81, 12, 81, 1207, 9, 81, 1, 81, 1, 81, 3, 81, 1211, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1222, 8, 83, 1, 83, 3, 83, 1225, 8, 83, 1, 83, 3, 83, 1228, 8, 83, 1, 83, 3, 83, 1231, 8, 83, 1, 83, 3, 83, 1234, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1240, 8, 83, 1, 84, 1, 84, 3, 84, 1244, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1250, 8, 84, 10, 84, 12, 84, 1253, 9, 84, 3, 84, 1255, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1260, 8, 85, 1, 85, 3, 85, 1263, 8, 85, 1, 85, 1, 85, 3, 85, 1267, 8, 85, 1, 85, 3, 85, 1270, 8, 85, 3, 85, 1272, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1286, 8, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1295, 8, 88, 10, 88, 12, 88, 1298, 9, 88, 1, 88, 1, 88, 3, 88, 1302, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1310, 8, 88, 1, 88, 3, 88, 1313, 8, 88, 1, 88, 3, 88, 1316, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1321, 8, 88, 5, 88, 1323, 8, 88, 10, 88, 12, 88, 1326, 9, 88, 1, 89, 1, 89, 3, 89, 1330, 8, 89, 1, 90, 3, 90, 1333, 8, 90, 1, 90, 1, 90, 3, 90, 1337, 8, 90, 1, 90, 1, 90, 3, 90, 1341, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1351, 8, 90, 10, 90, 12, 90, 1354, 9, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1360, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1371, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1396, 8, 95, 10, 95, 12, 95, 1399, 9, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1420, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1433, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1443, 8, 102, 10, 102, 12, 102, 1446, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1456, 8, 103, 10, 103, 12, 103, 1459, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1468, 8, 103, 10, 103, 12, 103, 1471, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1480, 8, 103, 10, 103, 12, 103, 1483, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1488, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1513, 8, 110, 10, 110, 12, 110, 1516, 9, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 3, 112, 1523, 8, 112, 1, 112, 1, 112, 3, 112, 1527, 8, 112, 1, 112, 3, 112, 1530, 8, 112, 1, 112, 3, 112, 1533, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 1540, 8, 113, 1, 113, 3, 113, 1543, 8, 113, 1, 113, 3, 113, 1546, 8, 113, 1, 113, 3, 113, 1549, 8, 113, 1, 113, 3, 113, 1552, 8, 113, 1, 113, 3, 113, 1555, 8, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1560, 8, 113, 1, 113, 3, 113, 1563, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1570, 8, 114, 10, 114, 12, 114, 1573, 9, 114, 1, 115, 1, 115, 3, 115, 1577, 8, 115, 1, 115, 1, 115, 3, 115, 1581, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1586, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 1593, 8, 117, 10, 117, 12, 117, 1596, 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, 1614, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1620, 8, 119, 10, 119, 12, 119, 1623, 9, 119, 1, 120, 1, 120, 1, 120, 4, 120, 1628, 8, 120, 11, 120, 12, 120, 1629, 1, 120, 1, 120, 3, 120, 1634, 8, 120, 1, 121, 1, 121, 3, 121, 1638, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1648, 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, 1674, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1680, 8, 124, 10, 124, 12, 124, 1683, 9, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1694, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1716, 8, 129, 3, 129, 1718, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1729, 8, 129, 1, 129, 5, 129, 1732, 8, 129, 10, 129, 12, 129, 1735, 9, 129, 1, 130, 3, 130, 1738, 8, 130, 1, 130, 1, 130, 3, 130, 1742, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1749, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1756, 8, 130, 10, 130, 12, 130, 1759, 9, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1764, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1777, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1784, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1789, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1795, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1802, 8, 130, 3, 130, 1804, 8, 130, 1, 131, 3, 131, 1807, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1817, 8, 131, 10, 131, 12, 131, 1820, 9, 131, 1, 131, 1, 131, 3, 131, 1824, 8, 131, 1, 131, 3, 131, 1827, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1833, 8, 131, 3, 131, 1835, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1841, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1862, 8, 132, 10, 132, 12, 132, 1865, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1870, 8, 133, 11, 133, 12, 133, 1871, 1, 133, 1, 133, 3, 133, 1876, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 4, 133, 1883, 8, 133, 11, 133, 12, 133, 1884, 1, 133, 1, 133, 3, 133, 1889, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1905, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1914, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1938, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1943, 8, 133, 10, 133, 12, 133, 1946, 9, 133, 3, 133, 1948, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1959, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1966, 8, 133, 10, 133, 12, 133, 1969, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 1975, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1981, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 1989, 8, 139, 1, 140, 1, 140, 1, 140, 3, 140, 1994, 8, 140, 1, 141, 1, 141, 3, 141, 1998, 8, 141, 1, 142, 1, 142, 1, 142, 4, 142, 2003, 8, 142, 11, 142, 12, 142, 2004, 1, 143, 1, 143, 1, 143, 3, 143, 2010, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 3, 145, 2018, 8, 145, 1, 145, 1, 145, 3, 145, 2022, 8, 145, 1, 146, 3, 146, 2025, 8, 146, 1, 146, 1, 146, 3, 146, 2029, 8, 146, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 4, 148, 2036, 8, 148, 11, 148, 12, 148, 2037, 1, 148, 3, 148, 2041, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2050, 8, 150, 10, 150, 12, 150, 2053, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 2058, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 2076, 8, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2081, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2086, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2093, 8, 159, 3, 159, 2095, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2100, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2107, 8, 160, 3, 160, 2109, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2114, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2121, 8, 161, 3, 161, 2123, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2128, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2135, 8, 162, 3, 162, 2137, 8, 162, 1, 163, 1, 163, 1, 163, 5, 163, 2142, 8, 163, 10, 163, 12, 163, 2145, 9, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2161, 8, 167, 10, 167, 12, 167, 2164, 9, 167, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2170, 8, 168, 1, 168, 3, 168, 2173, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2178, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2184, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2192, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2208, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2217, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2227, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2234, 8, 176, 1, 176, 3, 176, 2237, 8, 176, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 2143, 5, 156, 176, 258, 264, 266, 187, 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, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 9, 0, 5, 5, 13, 13, 33, 33, 85, 85, 113, 113, 200, 200, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2460, 0, 377, 1, 0, 0, 0, 2, 387, 1, 0, 0, 0, 4, 401, 1, 0, 0, 0, 6, 403, 1, 0, 0, 0, 8, 419, 1, 0, 0, 0, 10, 423, 1, 0, 0, 0, 12, 425, 1, 0, 0, 0, 14, 428, 1, 0, 0, 0, 16, 439, 1, 0, 0, 0, 18, 447, 1, 0, 0, 0, 20, 455, 1, 0, 0, 0, 22, 457, 1, 0, 0, 0, 24, 509, 1, 0, 0, 0, 26, 511, 1, 0, 0, 0, 28, 518, 1, 0, 0, 0, 30, 522, 1, 0, 0, 0, 32, 526, 1, 0, 0, 0, 34, 530, 1, 0, 0, 0, 36, 584, 1, 0, 0, 0, 38, 590, 1, 0, 0, 0, 40, 596, 1, 0, 0, 0, 42, 598, 1, 0, 0, 0, 44, 640, 1, 0, 0, 0, 46, 654, 1, 0, 0, 0, 48, 656, 1, 0, 0, 0, 50, 667, 1, 0, 0, 0, 52, 671, 1, 0, 0, 0, 54, 673, 1, 0, 0, 0, 56, 721, 1, 0, 0, 0, 58, 723, 1, 0, 0, 0, 60, 727, 1, 0, 0, 0, 62, 735, 1, 0, 0, 0, 64, 743, 1, 0, 0, 0, 66, 747, 1, 0, 0, 0, 68, 754, 1, 0, 0, 0, 70, 782, 1, 0, 0, 0, 72, 784, 1, 0, 0, 0, 74, 794, 1, 0, 0, 0, 76, 796, 1, 0, 0, 0, 78, 803, 1, 0, 0, 0, 80, 805, 1, 0, 0, 0, 82, 813, 1, 0, 0, 0, 84, 821, 1, 0, 0, 0, 86, 823, 1, 0, 0, 0, 88, 827, 1, 0, 0, 0, 90, 831, 1, 0, 0, 0, 92, 854, 1, 0, 0, 0, 94, 858, 1, 0, 0, 0, 96, 860, 1, 0, 0, 0, 98, 876, 1, 0, 0, 0, 100, 878, 1, 0, 0, 0, 102, 883, 1, 0, 0, 0, 104, 895, 1, 0, 0, 0, 106, 914, 1, 0, 0, 0, 108, 934, 1, 0, 0, 0, 110, 945, 1, 0, 0, 0, 112, 947, 1, 0, 0, 0, 114, 960, 1, 0, 0, 0, 116, 967, 1, 0, 0, 0, 118, 970, 1, 0, 0, 0, 120, 979, 1, 0, 0, 0, 122, 983, 1, 0, 0, 0, 124, 987, 1, 0, 0, 0, 126, 990, 1, 0, 0, 0, 128, 998, 1, 0, 0, 0, 130, 1003, 1, 0, 0, 0, 132, 1020, 1, 0, 0, 0, 134, 1027, 1, 0, 0, 0, 136, 1037, 1, 0, 0, 0, 138, 1046, 1, 0, 0, 0, 140, 1056, 1, 0, 0, 0, 142, 1075, 1, 0, 0, 0, 144, 1077, 1, 0, 0, 0, 146, 1090, 1, 0, 0, 0, 148, 1093, 1, 0, 0, 0, 150, 1102, 1, 0, 0, 0, 152, 1113, 1, 0, 0, 0, 154, 1126, 1, 0, 0, 0, 156, 1161, 1, 0, 0, 0, 158, 1180, 1, 0, 0, 0, 160, 1189, 1, 0, 0, 0, 162, 1198, 1, 0, 0, 0, 164, 1217, 1, 0, 0, 0, 166, 1239, 1, 0, 0, 0, 168, 1241, 1, 0, 0, 0, 170, 1271, 1, 0, 0, 0, 172, 1285, 1, 0, 0, 0, 174, 1287, 1, 0, 0, 0, 176, 1301, 1, 0, 0, 0, 178, 1327, 1, 0, 0, 0, 180, 1370, 1, 0, 0, 0, 182, 1372, 1, 0, 0, 0, 184, 1378, 1, 0, 0, 0, 186, 1380, 1, 0, 0, 0, 188, 1385, 1, 0, 0, 0, 190, 1390, 1, 0, 0, 0, 192, 1402, 1, 0, 0, 0, 194, 1419, 1, 0, 0, 0, 196, 1421, 1, 0, 0, 0, 198, 1423, 1, 0, 0, 0, 200, 1432, 1, 0, 0, 0, 202, 1434, 1, 0, 0, 0, 204, 1437, 1, 0, 0, 0, 206, 1487, 1, 0, 0, 0, 208, 1489, 1, 0, 0, 0, 210, 1492, 1, 0, 0, 0, 212, 1494, 1, 0, 0, 0, 214, 1501, 1, 0, 0, 0, 216, 1503, 1, 0, 0, 0, 218, 1505, 1, 0, 0, 0, 220, 1508, 1, 0, 0, 0, 222, 1517, 1, 0, 0, 0, 224, 1522, 1, 0, 0, 0, 226, 1536, 1, 0, 0, 0, 228, 1564, 1, 0, 0, 0, 230, 1574, 1, 0, 0, 0, 232, 1582, 1, 0, 0, 0, 234, 1587, 1, 0, 0, 0, 236, 1613, 1, 0, 0, 0, 238, 1615, 1, 0, 0, 0, 240, 1624, 1, 0, 0, 0, 242, 1635, 1, 0, 0, 0, 244, 1647, 1, 0, 0, 0, 246, 1673, 1, 0, 0, 0, 248, 1675, 1, 0, 0, 0, 250, 1693, 1, 0, 0, 0, 252, 1695, 1, 0, 0, 0, 254, 1700, 1, 0, 0, 0, 256, 1703, 1, 0, 0, 0, 258, 1717, 1, 0, 0, 0, 260, 1803, 1, 0, 0, 0, 262, 1834, 1, 0, 0, 0, 264, 1840, 1, 0, 0, 0, 266, 1958, 1, 0, 0, 0, 268, 1970, 1, 0, 0, 0, 270, 1974, 1, 0, 0, 0, 272, 1980, 1, 0, 0, 0, 274, 1982, 1, 0, 0, 0, 276, 1984, 1, 0, 0, 0, 278, 1988, 1, 0, 0, 0, 280, 1990, 1, 0, 0, 0, 282, 1995, 1, 0, 0, 0, 284, 2002, 1, 0, 0, 0, 286, 2006, 1, 0, 0, 0, 288, 2011, 1, 0, 0, 0, 290, 2021, 1, 0, 0, 0, 292, 2024, 1, 0, 0, 0, 294, 2030, 1, 0, 0, 0, 296, 2040, 1, 0, 0, 0, 298, 2042, 1, 0, 0, 0, 300, 2046, 1, 0, 0, 0, 302, 2057, 1, 0, 0, 0, 304, 2059, 1, 0, 0, 0, 306, 2061, 1, 0, 0, 0, 308, 2063, 1, 0, 0, 0, 310, 2068, 1, 0, 0, 0, 312, 2070, 1, 0, 0, 0, 314, 2072, 1, 0, 0, 0, 316, 2077, 1, 0, 0, 0, 318, 2094, 1, 0, 0, 0, 320, 2108, 1, 0, 0, 0, 322, 2122, 1, 0, 0, 0, 324, 2136, 1, 0, 0, 0, 326, 2138, 1, 0, 0, 0, 328, 2146, 1, 0, 0, 0, 330, 2149, 1, 0, 0, 0, 332, 2153, 1, 0, 0, 0, 334, 2156, 1, 0, 0, 0, 336, 2167, 1, 0, 0, 0, 338, 2177, 1, 0, 0, 0, 340, 2183, 1, 0, 0, 0, 342, 2191, 1, 0, 0, 0, 344, 2207, 1, 0, 0, 0, 346, 2216, 1, 0, 0, 0, 348, 2218, 1, 0, 0, 0, 350, 2220, 1, 0, 0, 0, 352, 2236, 1, 0, 0, 0, 354, 2238, 1, 0, 0, 0, 356, 2241, 1, 0, 0, 0, 358, 2243, 1, 0, 0, 0, 360, 2245, 1, 0, 0, 0, 362, 2247, 1, 0, 0, 0, 364, 2249, 1, 0, 0, 0, 366, 2251, 1, 0, 0, 0, 368, 2253, 1, 0, 0, 0, 370, 2255, 1, 0, 0, 0, 372, 2257, 1, 0, 0, 0, 374, 376, 3, 2, 1, 0, 375, 374, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 380, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 381, 5, 0, 0, 1, 381, 1, 1, 0, 0, 0, 382, 384, 3, 4, 2, 0, 383, 385, 5, 521, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 1, 0, 0, 0, 386, 388, 3, 6, 3, 0, 387, 382, 1, 0, 0, 0, 387, 386, 1, 0, 0, 0, 388, 3, 1, 0, 0, 0, 389, 402, 3, 8, 4, 0, 390, 402, 3, 10, 5, 0, 391, 402, 3, 12, 6, 0, 392, 402, 3, 14, 7, 0, 393, 402, 3, 20, 10, 0, 394, 402, 3, 24, 12, 0, 395, 402, 3, 26, 13, 0, 396, 402, 3, 28, 14, 0, 397, 402, 3, 30, 15, 0, 398, 402, 3, 32, 16, 0, 399, 402, 3, 34, 17, 0, 400, 402, 3, 36, 18, 0, 401, 389, 1, 0, 0, 0, 401, 390, 1, 0, 0, 0, 401, 391, 1, 0, 0, 0, 401, 392, 1, 0, 0, 0, 401, 393, 1, 0, 0, 0, 401, 394, 1, 0, 0, 0, 401, 395, 1, 0, 0, 0, 401, 396, 1, 0, 0, 0, 401, 397, 1, 0, 0, 0, 401, 398, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 400, 1, 0, 0, 0, 402, 5, 1, 0, 0, 0, 403, 404, 5, 521, 0, 0, 404, 7, 1, 0, 0, 0, 405, 420, 3, 40, 20, 0, 406, 420, 3, 102, 51, 0, 407, 420, 3, 104, 52, 0, 408, 420, 3, 106, 53, 0, 409, 420, 3, 100, 50, 0, 410, 420, 3, 112, 56, 0, 411, 420, 3, 126, 63, 0, 412, 420, 3, 128, 64, 0, 413, 420, 3, 130, 65, 0, 414, 420, 3, 132, 66, 0, 415, 420, 3, 134, 67, 0, 416, 420, 3, 136, 68, 0, 417, 420, 3, 138, 69, 0, 418, 420, 3, 140, 70, 0, 419, 405, 1, 0, 0, 0, 419, 406, 1, 0, 0, 0, 419, 407, 1, 0, 0, 0, 419, 408, 1, 0, 0, 0, 419, 409, 1, 0, 0, 0, 419, 410, 1, 0, 0, 0, 419, 411, 1, 0, 0, 0, 419, 412, 1, 0, 0, 0, 419, 413, 1, 0, 0, 0, 419, 414, 1, 0, 0, 0, 419, 415, 1, 0, 0, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 9, 1, 0, 0, 0, 421, 424, 3, 156, 78, 0, 422, 424, 3, 142, 71, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 11, 1, 0, 0, 0, 425, 426, 7, 0, 0, 0, 426, 427, 3, 320, 160, 0, 427, 13, 1, 0, 0, 0, 428, 432, 5, 135, 0, 0, 429, 433, 3, 16, 8, 0, 430, 431, 5, 479, 0, 0, 431, 433, 5, 146, 0, 0, 432, 429, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 437, 1, 0, 0, 0, 434, 438, 3, 10, 5, 0, 435, 438, 3, 144, 72, 0, 436, 438, 3, 154, 77, 0, 437, 434, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 15, 1, 0, 0, 0, 439, 444, 3, 18, 9, 0, 440, 441, 5, 520, 0, 0, 441, 443, 3, 18, 9, 0, 442, 440, 1, 0, 0, 0, 443, 446, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 17, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 447, 448, 7, 1, 0, 0, 448, 19, 1, 0, 0, 0, 449, 450, 5, 410, 0, 0, 450, 451, 5, 441, 0, 0, 451, 456, 3, 310, 155, 0, 452, 453, 5, 410, 0, 0, 453, 456, 3, 314, 157, 0, 454, 456, 3, 22, 11, 0, 455, 449, 1, 0, 0, 0, 455, 452, 1, 0, 0, 0, 455, 454, 1, 0, 0, 0, 456, 21, 1, 0, 0, 0, 457, 458, 5, 410, 0, 0, 458, 459, 5, 227, 0, 0, 459, 464, 3, 326, 163, 0, 460, 461, 5, 520, 0, 0, 461, 463, 3, 326, 163, 0, 462, 460, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 23, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 468, 5, 341, 0, 0, 468, 510, 7, 2, 0, 0, 469, 470, 5, 341, 0, 0, 470, 471, 5, 76, 0, 0, 471, 510, 7, 3, 0, 0, 472, 473, 5, 341, 0, 0, 473, 476, 5, 374, 0, 0, 474, 475, 7, 4, 0, 0, 475, 477, 3, 314, 157, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 479, 1, 0, 0, 0, 478, 480, 3, 262, 131, 0, 479, 478, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 510, 1, 0, 0, 0, 481, 482, 5, 341, 0, 0, 482, 483, 5, 58, 0, 0, 483, 486, 7, 4, 0, 0, 484, 487, 3, 322, 161, 0, 485, 487, 3, 320, 160, 0, 486, 484, 1, 0, 0, 0, 486, 485, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 490, 3, 262, 131, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 510, 1, 0, 0, 0, 491, 492, 5, 341, 0, 0, 492, 497, 5, 72, 0, 0, 493, 494, 5, 373, 0, 0, 494, 498, 3, 320, 160, 0, 495, 496, 5, 501, 0, 0, 496, 498, 3, 322, 161, 0, 497, 493, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 510, 1, 0, 0, 0, 499, 501, 5, 341, 0, 0, 500, 502, 5, 411, 0, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 510, 5, 154, 0, 0, 504, 506, 5, 341, 0, 0, 505, 507, 5, 152, 0, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 5, 227, 0, 0, 509, 467, 1, 0, 0, 0, 509, 469, 1, 0, 0, 0, 509, 472, 1, 0, 0, 0, 509, 481, 1, 0, 0, 0, 509, 491, 1, 0, 0, 0, 509, 499, 1, 0, 0, 0, 509, 504, 1, 0, 0, 0, 510, 25, 1, 0, 0, 0, 511, 512, 5, 468, 0, 0, 512, 513, 5, 226, 0, 0, 513, 516, 3, 326, 163, 0, 514, 515, 5, 433, 0, 0, 515, 517, 3, 334, 167, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 27, 1, 0, 0, 0, 518, 519, 5, 500, 0, 0, 519, 520, 5, 226, 0, 0, 520, 521, 3, 326, 163, 0, 521, 29, 1, 0, 0, 0, 522, 524, 5, 340, 0, 0, 523, 525, 3, 336, 168, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 31, 1, 0, 0, 0, 526, 528, 5, 312, 0, 0, 527, 529, 3, 338, 169, 0, 528, 527, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 33, 1, 0, 0, 0, 530, 531, 7, 5, 0, 0, 531, 532, 5, 463, 0, 0, 532, 533, 3, 110, 55, 0, 533, 35, 1, 0, 0, 0, 534, 535, 5, 437, 0, 0, 535, 536, 5, 463, 0, 0, 536, 537, 5, 433, 0, 0, 537, 540, 3, 38, 19, 0, 538, 539, 5, 17, 0, 0, 539, 541, 3, 326, 163, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 585, 1, 0, 0, 0, 542, 543, 5, 437, 0, 0, 543, 544, 5, 456, 0, 0, 544, 545, 5, 433, 0, 0, 545, 548, 3, 38, 19, 0, 546, 547, 5, 17, 0, 0, 547, 549, 3, 326, 163, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 552, 1, 0, 0, 0, 550, 551, 5, 311, 0, 0, 551, 553, 3, 326, 163, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 585, 1, 0, 0, 0, 554, 555, 5, 437, 0, 0, 555, 556, 7, 6, 0, 0, 556, 557, 5, 433, 0, 0, 557, 558, 3, 38, 19, 0, 558, 559, 5, 311, 0, 0, 559, 560, 3, 326, 163, 0, 560, 585, 1, 0, 0, 0, 561, 562, 5, 437, 0, 0, 562, 563, 5, 486, 0, 0, 563, 585, 3, 38, 19, 0, 564, 565, 5, 437, 0, 0, 565, 566, 5, 453, 0, 0, 566, 567, 5, 456, 0, 0, 567, 568, 5, 433, 0, 0, 568, 569, 3, 38, 19, 0, 569, 570, 5, 311, 0, 0, 570, 571, 3, 326, 163, 0, 571, 572, 5, 466, 0, 0, 572, 573, 3, 326, 163, 0, 573, 585, 1, 0, 0, 0, 574, 575, 5, 437, 0, 0, 575, 576, 5, 443, 0, 0, 576, 577, 5, 456, 0, 0, 577, 578, 5, 433, 0, 0, 578, 579, 3, 38, 19, 0, 579, 580, 5, 146, 0, 0, 580, 581, 3, 326, 163, 0, 581, 582, 5, 17, 0, 0, 582, 583, 3, 326, 163, 0, 583, 585, 1, 0, 0, 0, 584, 534, 1, 0, 0, 0, 584, 542, 1, 0, 0, 0, 584, 554, 1, 0, 0, 0, 584, 561, 1, 0, 0, 0, 584, 564, 1, 0, 0, 0, 584, 574, 1, 0, 0, 0, 585, 37, 1, 0, 0, 0, 586, 588, 5, 534, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 3, 326, 163, 0, 590, 587, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 39, 1, 0, 0, 0, 594, 597, 3, 42, 21, 0, 595, 597, 3, 44, 22, 0, 596, 594, 1, 0, 0, 0, 596, 595, 1, 0, 0, 0, 597, 41, 1, 0, 0, 0, 598, 600, 5, 72, 0, 0, 599, 601, 5, 497, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 373, 0, 0, 603, 605, 3, 330, 165, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 3, 318, 159, 0, 607, 608, 5, 516, 0, 0, 608, 613, 3, 46, 23, 0, 609, 610, 5, 520, 0, 0, 610, 612, 3, 46, 23, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 618, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 5, 520, 0, 0, 617, 619, 3, 80, 40, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 621, 5, 520, 0, 0, 621, 623, 3, 82, 41, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 626, 1, 0, 0, 0, 624, 625, 5, 520, 0, 0, 625, 627, 3, 86, 43, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 631, 5, 517, 0, 0, 629, 630, 5, 59, 0, 0, 630, 632, 5, 537, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 634, 1, 0, 0, 0, 633, 635, 3, 88, 44, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 3, 328, 164, 0, 637, 639, 3, 96, 48, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 43, 1, 0, 0, 0, 640, 641, 5, 72, 0, 0, 641, 643, 5, 373, 0, 0, 642, 644, 3, 330, 165, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 3, 318, 159, 0, 646, 649, 3, 328, 164, 0, 647, 648, 5, 17, 0, 0, 648, 650, 3, 156, 78, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 45, 1, 0, 0, 0, 651, 655, 3, 48, 24, 0, 652, 655, 3, 72, 36, 0, 653, 655, 3, 76, 38, 0, 654, 651, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 653, 1, 0, 0, 0, 655, 47, 1, 0, 0, 0, 656, 657, 3, 50, 25, 0, 657, 659, 3, 56, 28, 0, 658, 660, 3, 70, 35, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 662, 5, 59, 0, 0, 662, 664, 5, 537, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 49, 1, 0, 0, 0, 665, 668, 3, 326, 163, 0, 666, 668, 3, 256, 128, 0, 667, 665, 1, 0, 0, 0, 667, 666, 1, 0, 0, 0, 668, 51, 1, 0, 0, 0, 669, 672, 3, 326, 163, 0, 670, 672, 4, 26, 0, 0, 671, 669, 1, 0, 0, 0, 671, 670, 1, 0, 0, 0, 672, 53, 1, 0, 0, 0, 673, 674, 5, 516, 0, 0, 674, 679, 3, 52, 26, 0, 675, 676, 5, 520, 0, 0, 676, 678, 3, 52, 26, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 517, 0, 0, 683, 55, 1, 0, 0, 0, 684, 722, 7, 7, 0, 0, 685, 687, 7, 8, 0, 0, 686, 688, 3, 58, 29, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 722, 1, 0, 0, 0, 689, 691, 5, 379, 0, 0, 690, 692, 3, 58, 29, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 699, 1, 0, 0, 0, 693, 695, 7, 9, 0, 0, 694, 696, 5, 206, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 378, 0, 0, 698, 700, 5, 504, 0, 0, 699, 693, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 722, 1, 0, 0, 0, 701, 703, 7, 10, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 722, 1, 0, 0, 0, 705, 707, 7, 11, 0, 0, 706, 708, 3, 64, 32, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 722, 1, 0, 0, 0, 709, 711, 5, 469, 0, 0, 710, 712, 3, 66, 33, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 722, 1, 0, 0, 0, 713, 715, 5, 321, 0, 0, 714, 716, 3, 68, 34, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 722, 1, 0, 0, 0, 717, 719, 5, 294, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 684, 1, 0, 0, 0, 721, 685, 1, 0, 0, 0, 721, 689, 1, 0, 0, 0, 721, 701, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0, 721, 709, 1, 0, 0, 0, 721, 713, 1, 0, 0, 0, 721, 717, 1, 0, 0, 0, 722, 57, 1, 0, 0, 0, 723, 724, 5, 516, 0, 0, 724, 725, 3, 358, 179, 0, 725, 726, 5, 517, 0, 0, 726, 59, 1, 0, 0, 0, 727, 728, 5, 516, 0, 0, 728, 731, 3, 358, 179, 0, 729, 730, 5, 520, 0, 0, 730, 732, 3, 358, 179, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 61, 1, 0, 0, 0, 735, 736, 5, 516, 0, 0, 736, 739, 3, 356, 178, 0, 737, 738, 5, 520, 0, 0, 738, 740, 3, 356, 178, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 63, 1, 0, 0, 0, 743, 744, 5, 507, 0, 0, 744, 745, 3, 56, 28, 0, 745, 746, 5, 506, 0, 0, 746, 65, 1, 0, 0, 0, 747, 748, 5, 507, 0, 0, 748, 749, 3, 56, 28, 0, 749, 750, 5, 520, 0, 0, 750, 751, 3, 56, 28, 0, 751, 752, 1, 0, 0, 0, 752, 753, 5, 506, 0, 0, 753, 67, 1, 0, 0, 0, 754, 755, 5, 507, 0, 0, 755, 756, 3, 52, 26, 0, 756, 763, 3, 56, 28, 0, 757, 758, 5, 520, 0, 0, 758, 759, 3, 52, 26, 0, 759, 760, 3, 56, 28, 0, 760, 762, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 767, 5, 506, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 64, 0, 0, 769, 771, 3, 84, 42, 0, 770, 768, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 288, 0, 0, 773, 776, 5, 466, 0, 0, 774, 775, 5, 241, 0, 0, 775, 777, 5, 125, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 783, 1, 0, 0, 0, 778, 780, 5, 241, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 5, 244, 0, 0, 782, 770, 1, 0, 0, 0, 782, 779, 1, 0, 0, 0, 783, 71, 1, 0, 0, 0, 784, 785, 3, 50, 25, 0, 785, 786, 3, 56, 28, 0, 786, 789, 5, 218, 0, 0, 787, 788, 5, 151, 0, 0, 788, 790, 3, 74, 37, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 1, 0, 0, 0, 791, 793, 5, 423, 0, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 73, 1, 0, 0, 0, 794, 795, 5, 537, 0, 0, 795, 75, 1, 0, 0, 0, 796, 797, 3, 50, 25, 0, 797, 798, 5, 17, 0, 0, 798, 801, 3, 78, 39, 0, 799, 800, 5, 59, 0, 0, 800, 802, 5, 537, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 77, 1, 0, 0, 0, 803, 804, 3, 256, 128, 0, 804, 79, 1, 0, 0, 0, 805, 806, 5, 424, 0, 0, 806, 807, 5, 146, 0, 0, 807, 808, 3, 52, 26, 0, 808, 809, 5, 17, 0, 0, 809, 810, 3, 256, 128, 0, 810, 81, 1, 0, 0, 0, 811, 812, 5, 64, 0, 0, 812, 814, 3, 84, 42, 0, 813, 811, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 5, 288, 0, 0, 816, 817, 5, 466, 0, 0, 817, 818, 3, 54, 27, 0, 818, 819, 5, 241, 0, 0, 819, 820, 5, 125, 0, 0, 820, 83, 1, 0, 0, 0, 821, 822, 3, 302, 151, 0, 822, 85, 1, 0, 0, 0, 823, 824, 5, 277, 0, 0, 824, 825, 5, 146, 0, 0, 825, 826, 5, 371, 0, 0, 826, 87, 1, 0, 0, 0, 827, 828, 5, 269, 0, 0, 828, 829, 5, 34, 0, 0, 829, 830, 3, 90, 45, 0, 830, 89, 1, 0, 0, 0, 831, 832, 5, 516, 0, 0, 832, 837, 3, 92, 46, 0, 833, 834, 5, 520, 0, 0, 834, 836, 3, 92, 46, 0, 835, 833, 1, 0, 0, 0, 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 841, 5, 517, 0, 0, 841, 91, 1, 0, 0, 0, 842, 855, 3, 52, 26, 0, 843, 844, 5, 516, 0, 0, 844, 849, 3, 94, 47, 0, 845, 846, 5, 520, 0, 0, 846, 848, 3, 94, 47, 0, 847, 845, 1, 0, 0, 0, 848, 851, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 852, 853, 5, 517, 0, 0, 853, 855, 1, 0, 0, 0, 854, 842, 1, 0, 0, 0, 854, 843, 1, 0, 0, 0, 855, 93, 1, 0, 0, 0, 856, 859, 3, 278, 139, 0, 857, 859, 3, 352, 176, 0, 858, 856, 1, 0, 0, 0, 858, 857, 1, 0, 0, 0, 859, 95, 1, 0, 0, 0, 860, 861, 5, 202, 0, 0, 861, 870, 3, 320, 160, 0, 862, 866, 5, 516, 0, 0, 863, 865, 3, 98, 49, 0, 864, 863, 1, 0, 0, 0, 865, 868, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 869, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 869, 871, 5, 517, 0, 0, 870, 862, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 97, 1, 0, 0, 0, 872, 873, 7, 12, 0, 0, 873, 877, 7, 13, 0, 0, 874, 875, 7, 14, 0, 0, 875, 877, 7, 15, 0, 0, 876, 872, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 877, 99, 1, 0, 0, 0, 878, 879, 5, 72, 0, 0, 879, 880, 5, 441, 0, 0, 880, 881, 3, 312, 156, 0, 881, 882, 3, 328, 164, 0, 882, 101, 1, 0, 0, 0, 883, 884, 5, 72, 0, 0, 884, 886, 5, 447, 0, 0, 885, 887, 3, 330, 165, 0, 886, 885, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 891, 3, 316, 158, 0, 889, 890, 5, 59, 0, 0, 890, 892, 5, 537, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 3, 328, 164, 0, 894, 103, 1, 0, 0, 0, 895, 897, 5, 72, 0, 0, 896, 898, 5, 497, 0, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 5, 501, 0, 0, 900, 902, 3, 330, 165, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 905, 3, 324, 162, 0, 904, 906, 3, 54, 27, 0, 905, 904, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 908, 5, 59, 0, 0, 908, 910, 5, 537, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 17, 0, 0, 912, 913, 3, 156, 78, 0, 913, 105, 1, 0, 0, 0, 914, 918, 5, 72, 0, 0, 915, 919, 5, 497, 0, 0, 916, 917, 5, 497, 0, 0, 917, 919, 5, 370, 0, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 922, 5, 153, 0, 0, 921, 923, 3, 330, 165, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 3, 268, 134, 0, 925, 926, 5, 17, 0, 0, 926, 929, 3, 302, 151, 0, 927, 928, 5, 195, 0, 0, 928, 930, 7, 16, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 933, 3, 108, 54, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 107, 1, 0, 0, 0, 934, 935, 5, 412, 0, 0, 935, 936, 5, 463, 0, 0, 936, 942, 3, 110, 55, 0, 937, 938, 5, 520, 0, 0, 938, 939, 5, 463, 0, 0, 939, 941, 3, 110, 55, 0, 940, 937, 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 109, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 946, 5, 537, 0, 0, 946, 111, 1, 0, 0, 0, 947, 948, 5, 8, 0, 0, 948, 950, 5, 373, 0, 0, 949, 951, 3, 332, 166, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 958, 3, 320, 160, 0, 953, 959, 3, 114, 57, 0, 954, 959, 3, 116, 58, 0, 955, 959, 3, 118, 59, 0, 956, 959, 3, 120, 60, 0, 957, 959, 3, 122, 61, 0, 958, 953, 1, 0, 0, 0, 958, 954, 1, 0, 0, 0, 958, 955, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 113, 1, 0, 0, 0, 960, 962, 5, 311, 0, 0, 961, 963, 3, 326, 163, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 5, 388, 0, 0, 965, 966, 3, 326, 163, 0, 966, 115, 1, 0, 0, 0, 967, 968, 5, 340, 0, 0, 968, 969, 3, 334, 167, 0, 969, 117, 1, 0, 0, 0, 970, 971, 5, 437, 0, 0, 971, 972, 5, 64, 0, 0, 972, 973, 3, 84, 42, 0, 973, 974, 5, 288, 0, 0, 974, 975, 5, 466, 0, 0, 975, 977, 3, 54, 27, 0, 976, 978, 3, 124, 62, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 119, 1, 0, 0, 0, 979, 980, 5, 116, 0, 0, 980, 981, 5, 64, 0, 0, 981, 982, 3, 84, 42, 0, 982, 121, 1, 0, 0, 0, 983, 984, 5, 437, 0, 0, 984, 985, 5, 403, 0, 0, 985, 986, 3, 54, 27, 0, 986, 123, 1, 0, 0, 0, 987, 988, 5, 241, 0, 0, 988, 989, 5, 125, 0, 0, 989, 125, 1, 0, 0, 0, 990, 991, 5, 8, 0, 0, 991, 992, 5, 501, 0, 0, 992, 996, 3, 322, 161, 0, 993, 997, 3, 114, 57, 0, 994, 995, 5, 17, 0, 0, 995, 997, 3, 156, 78, 0, 996, 993, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 997, 127, 1, 0, 0, 0, 998, 999, 5, 8, 0, 0, 999, 1000, 5, 447, 0, 0, 1000, 1001, 3, 314, 157, 0, 1001, 1002, 3, 116, 58, 0, 1002, 129, 1, 0, 0, 0, 1003, 1007, 5, 8, 0, 0, 1004, 1008, 5, 497, 0, 0, 1005, 1006, 5, 497, 0, 0, 1006, 1008, 5, 370, 0, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 5, 153, 0, 0, 1010, 1012, 3, 332, 166, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 3, 270, 135, 0, 1014, 1015, 5, 17, 0, 0, 1015, 1018, 3, 302, 151, 0, 1016, 1017, 5, 195, 0, 0, 1017, 1019, 7, 16, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 131, 1, 0, 0, 0, 1020, 1021, 5, 116, 0, 0, 1021, 1023, 5, 441, 0, 0, 1022, 1024, 3, 332, 166, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 3, 310, 155, 0, 1026, 133, 1, 0, 0, 0, 1027, 1029, 5, 116, 0, 0, 1028, 1030, 5, 497, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 373, 0, 0, 1032, 1034, 3, 332, 166, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 3, 320, 160, 0, 1036, 135, 1, 0, 0, 0, 1037, 1038, 5, 116, 0, 0, 1038, 1040, 5, 447, 0, 0, 1039, 1041, 3, 332, 166, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1044, 3, 314, 157, 0, 1043, 1045, 7, 17, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 137, 1, 0, 0, 0, 1046, 1048, 5, 116, 0, 0, 1047, 1049, 5, 497, 0, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1052, 5, 501, 0, 0, 1051, 1053, 3, 332, 166, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 3, 322, 161, 0, 1055, 139, 1, 0, 0, 0, 1056, 1060, 5, 116, 0, 0, 1057, 1061, 5, 497, 0, 0, 1058, 1059, 5, 497, 0, 0, 1059, 1061, 5, 370, 0, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 5, 153, 0, 0, 1063, 1065, 3, 332, 166, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 3, 270, 135, 0, 1067, 141, 1, 0, 0, 0, 1068, 1070, 5, 132, 0, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1076, 3, 144, 72, 0, 1072, 1076, 3, 152, 76, 0, 1073, 1074, 5, 132, 0, 0, 1074, 1076, 3, 154, 77, 0, 1075, 1069, 1, 0, 0, 0, 1075, 1072, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 143, 1, 0, 0, 0, 1077, 1078, 5, 177, 0, 0, 1078, 1079, 7, 18, 0, 0, 1079, 1088, 3, 320, 160, 0, 1080, 1082, 3, 146, 73, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 54, 27, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1089, 3, 156, 78, 0, 1087, 1089, 3, 148, 74, 0, 1088, 1081, 1, 0, 0, 0, 1088, 1087, 1, 0, 0, 0, 1089, 145, 1, 0, 0, 0, 1090, 1091, 5, 268, 0, 0, 1091, 1092, 3, 334, 167, 0, 1092, 147, 1, 0, 0, 0, 1093, 1094, 5, 414, 0, 0, 1094, 1099, 3, 150, 75, 0, 1095, 1096, 5, 520, 0, 0, 1096, 1098, 3, 150, 75, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 149, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1103, 5, 516, 0, 0, 1103, 1108, 3, 352, 176, 0, 1104, 1105, 5, 520, 0, 0, 1105, 1107, 3, 352, 176, 0, 1106, 1104, 1, 0, 0, 0, 1107, 1110, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1111, 1112, 5, 517, 0, 0, 1112, 151, 1, 0, 0, 0, 1113, 1114, 5, 24, 0, 0, 1114, 1115, 5, 354, 0, 0, 1115, 1116, 5, 340, 0, 0, 1116, 1120, 5, 521, 0, 0, 1117, 1118, 3, 144, 72, 0, 1118, 1119, 5, 521, 0, 0, 1119, 1121, 1, 0, 0, 0, 1120, 1117, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 5, 122, 0, 0, 1125, 153, 1, 0, 0, 0, 1126, 1127, 5, 354, 0, 0, 1127, 1128, 5, 340, 0, 0, 1128, 1132, 5, 24, 0, 0, 1129, 1130, 3, 144, 72, 0, 1130, 1131, 5, 521, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, 1129, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 5, 122, 0, 0, 1137, 155, 1, 0, 0, 0, 1138, 1139, 6, 78, -1, 0, 1139, 1162, 3, 158, 79, 0, 1140, 1141, 3, 160, 80, 0, 1141, 1142, 3, 156, 78, 5, 1142, 1162, 1, 0, 0, 0, 1143, 1144, 5, 516, 0, 0, 1144, 1145, 3, 156, 78, 0, 1145, 1146, 5, 517, 0, 0, 1146, 1162, 1, 0, 0, 0, 1147, 1149, 3, 168, 84, 0, 1148, 1150, 3, 228, 114, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 1, 0, 0, 0, 1151, 1153, 3, 232, 116, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1162, 1, 0, 0, 0, 1154, 1156, 3, 166, 83, 0, 1155, 1157, 3, 228, 114, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1160, 3, 232, 116, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1138, 1, 0, 0, 0, 1161, 1140, 1, 0, 0, 0, 1161, 1143, 1, 0, 0, 0, 1161, 1147, 1, 0, 0, 0, 1161, 1154, 1, 0, 0, 0, 1162, 1177, 1, 0, 0, 0, 1163, 1164, 10, 3, 0, 0, 1164, 1166, 7, 19, 0, 0, 1165, 1167, 5, 5, 0, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 3, 156, 78, 0, 1169, 1171, 3, 228, 114, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1174, 3, 232, 116, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1163, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 157, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 5, 414, 0, 0, 1181, 1186, 3, 256, 128, 0, 1182, 1183, 5, 520, 0, 0, 1183, 1185, 3, 256, 128, 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, 159, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1190, 5, 433, 0, 0, 1190, 1195, 3, 162, 81, 0, 1191, 1192, 5, 520, 0, 0, 1192, 1194, 3, 162, 81, 0, 1193, 1191, 1, 0, 0, 0, 1194, 1197, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 161, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1210, 3, 164, 82, 0, 1199, 1200, 5, 516, 0, 0, 1200, 1205, 3, 52, 26, 0, 1201, 1202, 5, 520, 0, 0, 1202, 1204, 3, 52, 26, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1209, 5, 517, 0, 0, 1209, 1211, 1, 0, 0, 0, 1210, 1199, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 17, 0, 0, 1213, 1214, 5, 516, 0, 0, 1214, 1215, 3, 156, 78, 0, 1215, 1216, 5, 517, 0, 0, 1216, 163, 1, 0, 0, 0, 1217, 1218, 3, 302, 151, 0, 1218, 165, 1, 0, 0, 0, 1219, 1221, 3, 168, 84, 0, 1220, 1222, 3, 174, 87, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1225, 3, 202, 101, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 204, 102, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1231, 3, 218, 109, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1233, 1, 0, 0, 0, 1232, 1234, 3, 220, 110, 0, 1233, 1232, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1240, 1, 0, 0, 0, 1235, 1236, 3, 168, 84, 0, 1236, 1237, 3, 174, 87, 0, 1237, 1238, 3, 226, 113, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1219, 1, 0, 0, 0, 1239, 1235, 1, 0, 0, 0, 1240, 167, 1, 0, 0, 0, 1241, 1243, 5, 336, 0, 0, 1242, 1244, 3, 362, 181, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1254, 1, 0, 0, 0, 1245, 1255, 5, 527, 0, 0, 1246, 1251, 3, 170, 85, 0, 1247, 1248, 5, 520, 0, 0, 1248, 1250, 3, 170, 85, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1245, 1, 0, 0, 0, 1254, 1246, 1, 0, 0, 0, 1255, 169, 1, 0, 0, 0, 1256, 1272, 3, 172, 86, 0, 1257, 1262, 3, 52, 26, 0, 1258, 1260, 5, 17, 0, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 3, 256, 128, 0, 1262, 1259, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1272, 1, 0, 0, 0, 1264, 1269, 3, 256, 128, 0, 1265, 1267, 5, 17, 0, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 3, 52, 26, 0, 1269, 1266, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1256, 1, 0, 0, 0, 1271, 1257, 1, 0, 0, 0, 1271, 1264, 1, 0, 0, 0, 1272, 171, 1, 0, 0, 0, 1273, 1274, 3, 266, 133, 0, 1274, 1275, 5, 262, 0, 0, 1275, 1276, 3, 224, 112, 0, 1276, 1277, 5, 17, 0, 0, 1277, 1278, 3, 302, 151, 0, 1278, 1286, 1, 0, 0, 0, 1279, 1280, 3, 266, 133, 0, 1280, 1281, 5, 262, 0, 0, 1281, 1282, 3, 294, 147, 0, 1282, 1283, 5, 17, 0, 0, 1283, 1284, 3, 302, 151, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1273, 1, 0, 0, 0, 1285, 1279, 1, 0, 0, 0, 1286, 173, 1, 0, 0, 0, 1287, 1288, 5, 151, 0, 0, 1288, 1289, 3, 176, 88, 0, 1289, 175, 1, 0, 0, 0, 1290, 1291, 6, 88, -1, 0, 1291, 1296, 3, 178, 89, 0, 1292, 1293, 5, 520, 0, 0, 1293, 1295, 3, 178, 89, 0, 1294, 1292, 1, 0, 0, 0, 1295, 1298, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1302, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 3, 186, 93, 0, 1300, 1302, 3, 188, 94, 0, 1301, 1290, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1300, 1, 0, 0, 0, 1302, 1324, 1, 0, 0, 0, 1303, 1304, 10, 3, 0, 0, 1304, 1305, 5, 73, 0, 0, 1305, 1306, 5, 185, 0, 0, 1306, 1323, 3, 176, 88, 4, 1307, 1309, 10, 4, 0, 0, 1308, 1310, 5, 233, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1313, 7, 20, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 5, 261, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 5, 185, 0, 0, 1318, 1320, 3, 176, 88, 0, 1319, 1321, 3, 200, 100, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1323, 1, 0, 0, 0, 1322, 1303, 1, 0, 0, 0, 1322, 1307, 1, 0, 0, 0, 1323, 1326, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 177, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1327, 1329, 3, 180, 90, 0, 1328, 1330, 3, 292, 146, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 179, 1, 0, 0, 0, 1331, 1333, 5, 373, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 3, 320, 160, 0, 1335, 1337, 3, 182, 91, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1371, 1, 0, 0, 0, 1338, 1340, 3, 322, 161, 0, 1339, 1341, 3, 182, 91, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1371, 1, 0, 0, 0, 1342, 1343, 5, 198, 0, 0, 1343, 1344, 5, 373, 0, 0, 1344, 1345, 5, 516, 0, 0, 1345, 1346, 3, 270, 135, 0, 1346, 1347, 5, 516, 0, 0, 1347, 1352, 3, 272, 136, 0, 1348, 1349, 5, 520, 0, 0, 1349, 1351, 3, 272, 136, 0, 1350, 1348, 1, 0, 0, 0, 1351, 1354, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1355, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1355, 1356, 5, 517, 0, 0, 1356, 1357, 5, 517, 0, 0, 1357, 1371, 1, 0, 0, 0, 1358, 1360, 5, 198, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 5, 516, 0, 0, 1362, 1363, 3, 156, 78, 0, 1363, 1364, 5, 517, 0, 0, 1364, 1371, 1, 0, 0, 0, 1365, 1366, 5, 405, 0, 0, 1366, 1367, 5, 516, 0, 0, 1367, 1368, 3, 256, 128, 0, 1368, 1369, 5, 517, 0, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1332, 1, 0, 0, 0, 1370, 1338, 1, 0, 0, 0, 1370, 1342, 1, 0, 0, 0, 1370, 1359, 1, 0, 0, 0, 1370, 1365, 1, 0, 0, 0, 1371, 181, 1, 0, 0, 0, 1372, 1373, 5, 146, 0, 0, 1373, 1374, 5, 371, 0, 0, 1374, 1375, 5, 17, 0, 0, 1375, 1376, 5, 249, 0, 0, 1376, 1377, 3, 184, 92, 0, 1377, 183, 1, 0, 0, 0, 1378, 1379, 3, 256, 128, 0, 1379, 185, 1, 0, 0, 0, 1380, 1381, 5, 516, 0, 0, 1381, 1382, 3, 148, 74, 0, 1382, 1383, 5, 517, 0, 0, 1383, 1384, 3, 292, 146, 0, 1384, 187, 1, 0, 0, 0, 1385, 1386, 5, 373, 0, 0, 1386, 1387, 5, 516, 0, 0, 1387, 1388, 3, 190, 95, 0, 1388, 1389, 5, 517, 0, 0, 1389, 189, 1, 0, 0, 0, 1390, 1391, 3, 192, 96, 0, 1391, 1392, 5, 516, 0, 0, 1392, 1397, 3, 194, 97, 0, 1393, 1394, 5, 520, 0, 0, 1394, 1396, 3, 194, 97, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1401, 5, 517, 0, 0, 1401, 191, 1, 0, 0, 0, 1402, 1403, 7, 21, 0, 0, 1403, 193, 1, 0, 0, 0, 1404, 1405, 5, 373, 0, 0, 1405, 1420, 3, 216, 108, 0, 1406, 1420, 3, 198, 99, 0, 1407, 1420, 3, 280, 140, 0, 1408, 1409, 5, 446, 0, 0, 1409, 1410, 5, 536, 0, 0, 1410, 1411, 5, 373, 0, 0, 1411, 1420, 3, 216, 108, 0, 1412, 1413, 5, 498, 0, 0, 1413, 1414, 5, 536, 0, 0, 1414, 1420, 3, 198, 99, 0, 1415, 1416, 3, 196, 98, 0, 1416, 1417, 5, 536, 0, 0, 1417, 1418, 3, 280, 140, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1404, 1, 0, 0, 0, 1419, 1406, 1, 0, 0, 0, 1419, 1407, 1, 0, 0, 0, 1419, 1408, 1, 0, 0, 0, 1419, 1412, 1, 0, 0, 0, 1419, 1415, 1, 0, 0, 0, 1420, 195, 1, 0, 0, 0, 1421, 1422, 7, 22, 0, 0, 1422, 197, 1, 0, 0, 0, 1423, 1424, 5, 451, 0, 0, 1424, 1425, 5, 516, 0, 0, 1425, 1426, 3, 52, 26, 0, 1426, 1427, 5, 517, 0, 0, 1427, 199, 1, 0, 0, 0, 1428, 1429, 5, 253, 0, 0, 1429, 1433, 3, 258, 129, 0, 1430, 1431, 5, 412, 0, 0, 1431, 1433, 3, 54, 27, 0, 1432, 1428, 1, 0, 0, 0, 1432, 1430, 1, 0, 0, 0, 1433, 201, 1, 0, 0, 0, 1434, 1435, 5, 430, 0, 0, 1435, 1436, 3, 258, 129, 0, 1436, 203, 1, 0, 0, 0, 1437, 1438, 5, 159, 0, 0, 1438, 1439, 5, 34, 0, 0, 1439, 1444, 3, 206, 103, 0, 1440, 1441, 5, 520, 0, 0, 1441, 1443, 3, 206, 103, 0, 1442, 1440, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 205, 1, 0, 0, 0, 1446, 1444, 1, 0, 0, 0, 1447, 1488, 3, 52, 26, 0, 1448, 1488, 3, 212, 106, 0, 1449, 1450, 5, 516, 0, 0, 1450, 1488, 5, 517, 0, 0, 1451, 1452, 5, 516, 0, 0, 1452, 1457, 3, 256, 128, 0, 1453, 1454, 5, 520, 0, 0, 1454, 1456, 3, 256, 128, 0, 1455, 1453, 1, 0, 0, 0, 1456, 1459, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1460, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1460, 1461, 5, 517, 0, 0, 1461, 1488, 1, 0, 0, 0, 1462, 1463, 3, 210, 105, 0, 1463, 1464, 5, 516, 0, 0, 1464, 1469, 3, 256, 128, 0, 1465, 1466, 5, 520, 0, 0, 1466, 1468, 3, 256, 128, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1471, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1473, 5, 517, 0, 0, 1473, 1488, 1, 0, 0, 0, 1474, 1475, 3, 208, 104, 0, 1475, 1476, 5, 516, 0, 0, 1476, 1481, 3, 206, 103, 0, 1477, 1478, 5, 520, 0, 0, 1478, 1480, 3, 206, 103, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1484, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1485, 5, 517, 0, 0, 1485, 1488, 1, 0, 0, 0, 1486, 1488, 3, 256, 128, 0, 1487, 1447, 1, 0, 0, 0, 1487, 1448, 1, 0, 0, 0, 1487, 1449, 1, 0, 0, 0, 1487, 1451, 1, 0, 0, 0, 1487, 1462, 1, 0, 0, 0, 1487, 1474, 1, 0, 0, 0, 1487, 1486, 1, 0, 0, 0, 1488, 207, 1, 0, 0, 0, 1489, 1490, 5, 160, 0, 0, 1490, 1491, 5, 493, 0, 0, 1491, 209, 1, 0, 0, 0, 1492, 1493, 7, 23, 0, 0, 1493, 211, 1, 0, 0, 0, 1494, 1495, 3, 214, 107, 0, 1495, 1496, 5, 516, 0, 0, 1496, 1497, 3, 216, 108, 0, 1497, 1498, 5, 520, 0, 0, 1498, 1499, 3, 280, 140, 0, 1499, 1500, 5, 517, 0, 0, 1500, 213, 1, 0, 0, 0, 1501, 1502, 7, 24, 0, 0, 1502, 215, 1, 0, 0, 0, 1503, 1504, 3, 326, 163, 0, 1504, 217, 1, 0, 0, 0, 1505, 1506, 5, 163, 0, 0, 1506, 1507, 3, 258, 129, 0, 1507, 219, 1, 0, 0, 0, 1508, 1509, 5, 432, 0, 0, 1509, 1514, 3, 222, 111, 0, 1510, 1511, 5, 520, 0, 0, 1511, 1513, 3, 222, 111, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1516, 1, 0, 0, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 221, 1, 0, 0, 0, 1516, 1514, 1, 0, 0, 0, 1517, 1518, 3, 294, 147, 0, 1518, 1519, 5, 17, 0, 0, 1519, 1520, 3, 224, 112, 0, 1520, 223, 1, 0, 0, 0, 1521, 1523, 3, 294, 147, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 516, 0, 0, 1525, 1527, 3, 234, 117, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1530, 3, 228, 114, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1532, 1, 0, 0, 0, 1531, 1533, 3, 250, 125, 0, 1532, 1531, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 517, 0, 0, 1535, 225, 1, 0, 0, 0, 1536, 1537, 5, 213, 0, 0, 1537, 1539, 5, 516, 0, 0, 1538, 1540, 3, 234, 117, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1542, 1, 0, 0, 0, 1541, 1543, 3, 228, 114, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1546, 3, 238, 119, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1548, 1, 0, 0, 0, 1547, 1549, 3, 244, 122, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 1, 0, 0, 0, 1550, 1552, 3, 246, 123, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1554, 1, 0, 0, 0, 1553, 1555, 3, 240, 120, 0, 1554, 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 3, 248, 124, 0, 1557, 1562, 5, 517, 0, 0, 1558, 1560, 5, 17, 0, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1563, 3, 302, 151, 0, 1562, 1559, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 227, 1, 0, 0, 0, 1564, 1565, 5, 258, 0, 0, 1565, 1566, 5, 34, 0, 0, 1566, 1571, 3, 230, 115, 0, 1567, 1568, 5, 520, 0, 0, 1568, 1570, 3, 230, 115, 0, 1569, 1567, 1, 0, 0, 0, 1570, 1573, 1, 0, 0, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 229, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1576, 3, 52, 26, 0, 1575, 1577, 7, 25, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1580, 1, 0, 0, 0, 1578, 1579, 5, 476, 0, 0, 1579, 1581, 7, 26, 0, 0, 1580, 1578, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 231, 1, 0, 0, 0, 1582, 1585, 5, 204, 0, 0, 1583, 1586, 5, 5, 0, 0, 1584, 1586, 3, 256, 128, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1584, 1, 0, 0, 0, 1586, 233, 1, 0, 0, 0, 1587, 1588, 5, 268, 0, 0, 1588, 1589, 5, 34, 0, 0, 1589, 1594, 3, 52, 26, 0, 1590, 1591, 5, 520, 0, 0, 1591, 1593, 3, 52, 26, 0, 1592, 1590, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 235, 1, 0, 0, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1614, 5, 527, 0, 0, 1598, 1614, 5, 530, 0, 0, 1599, 1614, 5, 535, 0, 0, 1600, 1601, 5, 518, 0, 0, 1601, 1602, 5, 538, 0, 0, 1602, 1603, 5, 520, 0, 0, 1603, 1604, 5, 538, 0, 0, 1604, 1614, 5, 519, 0, 0, 1605, 1606, 5, 518, 0, 0, 1606, 1607, 5, 538, 0, 0, 1607, 1608, 5, 520, 0, 0, 1608, 1614, 5, 519, 0, 0, 1609, 1610, 5, 518, 0, 0, 1610, 1611, 5, 520, 0, 0, 1611, 1612, 5, 538, 0, 0, 1612, 1614, 5, 519, 0, 0, 1613, 1597, 1, 0, 0, 0, 1613, 1598, 1, 0, 0, 0, 1613, 1599, 1, 0, 0, 0, 1613, 1600, 1, 0, 0, 0, 1613, 1605, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1614, 237, 1, 0, 0, 0, 1615, 1616, 5, 215, 0, 0, 1616, 1621, 3, 170, 85, 0, 1617, 1618, 5, 520, 0, 0, 1618, 1620, 3, 170, 85, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 239, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1625, 5, 271, 0, 0, 1625, 1627, 5, 516, 0, 0, 1626, 1628, 3, 242, 121, 0, 1627, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 5, 517, 0, 0, 1632, 1634, 3, 254, 127, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 241, 1, 0, 0, 0, 1635, 1637, 3, 304, 152, 0, 1636, 1638, 3, 236, 118, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 243, 1, 0, 0, 0, 1639, 1640, 5, 5, 0, 0, 1640, 1641, 5, 322, 0, 0, 1641, 1642, 5, 272, 0, 0, 1642, 1648, 5, 210, 0, 0, 1643, 1644, 5, 254, 0, 0, 1644, 1645, 5, 321, 0, 0, 1645, 1646, 5, 272, 0, 0, 1646, 1648, 5, 210, 0, 0, 1647, 1639, 1, 0, 0, 0, 1647, 1643, 1, 0, 0, 0, 1648, 245, 1, 0, 0, 0, 1649, 1650, 5, 438, 0, 0, 1650, 1651, 5, 210, 0, 0, 1651, 1652, 5, 343, 0, 0, 1652, 1653, 5, 478, 0, 0, 1653, 1654, 5, 467, 0, 0, 1654, 1674, 5, 321, 0, 0, 1655, 1656, 5, 438, 0, 0, 1656, 1657, 5, 210, 0, 0, 1657, 1658, 5, 343, 0, 0, 1658, 1659, 5, 388, 0, 0, 1659, 1660, 5, 237, 0, 0, 1660, 1674, 5, 321, 0, 0, 1661, 1662, 5, 438, 0, 0, 1662, 1663, 5, 210, 0, 0, 1663, 1664, 5, 343, 0, 0, 1664, 1665, 5, 388, 0, 0, 1665, 1666, 5, 467, 0, 0, 1666, 1674, 3, 304, 152, 0, 1667, 1668, 5, 438, 0, 0, 1668, 1669, 5, 210, 0, 0, 1669, 1670, 5, 343, 0, 0, 1670, 1671, 5, 388, 0, 0, 1671, 1672, 5, 457, 0, 0, 1672, 1674, 3, 304, 152, 0, 1673, 1649, 1, 0, 0, 0, 1673, 1655, 1, 0, 0, 0, 1673, 1661, 1, 0, 0, 0, 1673, 1667, 1, 0, 0, 0, 1674, 247, 1, 0, 0, 0, 1675, 1676, 5, 105, 0, 0, 1676, 1681, 3, 170, 85, 0, 1677, 1678, 5, 520, 0, 0, 1678, 1680, 3, 170, 85, 0, 1679, 1677, 1, 0, 0, 0, 1680, 1683, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 249, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1684, 1685, 5, 292, 0, 0, 1685, 1686, 5, 27, 0, 0, 1686, 1687, 3, 280, 140, 0, 1687, 1688, 3, 252, 126, 0, 1688, 1694, 1, 0, 0, 0, 1689, 1690, 5, 322, 0, 0, 1690, 1691, 5, 27, 0, 0, 1691, 1692, 5, 538, 0, 0, 1692, 1694, 3, 252, 126, 0, 1693, 1684, 1, 0, 0, 0, 1693, 1689, 1, 0, 0, 0, 1694, 251, 1, 0, 0, 0, 1695, 1696, 5, 480, 0, 0, 1696, 1697, 5, 10, 0, 0, 1697, 1698, 5, 76, 0, 0, 1698, 1699, 5, 321, 0, 0, 1699, 253, 1, 0, 0, 0, 1700, 1701, 5, 434, 0, 0, 1701, 1702, 3, 280, 140, 0, 1702, 255, 1, 0, 0, 0, 1703, 1704, 3, 258, 129, 0, 1704, 257, 1, 0, 0, 0, 1705, 1706, 6, 129, -1, 0, 1706, 1707, 5, 241, 0, 0, 1707, 1718, 3, 258, 129, 6, 1708, 1709, 5, 133, 0, 0, 1709, 1710, 5, 516, 0, 0, 1710, 1711, 3, 156, 78, 0, 1711, 1712, 5, 517, 0, 0, 1712, 1718, 1, 0, 0, 0, 1713, 1715, 3, 264, 132, 0, 1714, 1716, 3, 260, 130, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1705, 1, 0, 0, 0, 1717, 1708, 1, 0, 0, 0, 1717, 1713, 1, 0, 0, 0, 1718, 1733, 1, 0, 0, 0, 1719, 1720, 10, 3, 0, 0, 1720, 1721, 5, 10, 0, 0, 1721, 1732, 3, 258, 129, 4, 1722, 1723, 10, 2, 0, 0, 1723, 1724, 5, 257, 0, 0, 1724, 1732, 3, 258, 129, 3, 1725, 1726, 10, 1, 0, 0, 1726, 1728, 5, 184, 0, 0, 1727, 1729, 5, 241, 0, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 7, 27, 0, 0, 1731, 1719, 1, 0, 0, 0, 1731, 1722, 1, 0, 0, 0, 1731, 1725, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 259, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1736, 1738, 5, 241, 0, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 5, 27, 0, 0, 1740, 1742, 7, 28, 0, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 3, 264, 132, 0, 1744, 1745, 5, 10, 0, 0, 1745, 1746, 3, 264, 132, 0, 1746, 1804, 1, 0, 0, 0, 1747, 1749, 5, 241, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 5, 170, 0, 0, 1751, 1752, 5, 516, 0, 0, 1752, 1757, 3, 256, 128, 0, 1753, 1754, 5, 520, 0, 0, 1754, 1756, 3, 256, 128, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1759, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1761, 5, 517, 0, 0, 1761, 1804, 1, 0, 0, 0, 1762, 1764, 5, 241, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 5, 170, 0, 0, 1766, 1767, 5, 516, 0, 0, 1767, 1768, 3, 156, 78, 0, 1768, 1769, 5, 517, 0, 0, 1769, 1804, 1, 0, 0, 0, 1770, 1771, 5, 133, 0, 0, 1771, 1772, 5, 516, 0, 0, 1772, 1773, 3, 156, 78, 0, 1773, 1774, 5, 517, 0, 0, 1774, 1804, 1, 0, 0, 0, 1775, 1777, 5, 241, 0, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 5, 318, 0, 0, 1779, 1804, 3, 264, 132, 0, 1780, 1804, 3, 262, 131, 0, 1781, 1783, 5, 184, 0, 0, 1782, 1784, 5, 241, 0, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1804, 7, 27, 0, 0, 1786, 1788, 5, 184, 0, 0, 1787, 1789, 5, 241, 0, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 5, 113, 0, 0, 1791, 1792, 5, 151, 0, 0, 1792, 1804, 3, 264, 132, 0, 1793, 1795, 5, 241, 0, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 5, 342, 0, 0, 1797, 1798, 5, 388, 0, 0, 1798, 1801, 3, 264, 132, 0, 1799, 1800, 5, 127, 0, 0, 1800, 1802, 3, 356, 178, 0, 1801, 1799, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1804, 1, 0, 0, 0, 1803, 1737, 1, 0, 0, 0, 1803, 1748, 1, 0, 0, 0, 1803, 1763, 1, 0, 0, 0, 1803, 1770, 1, 0, 0, 0, 1803, 1776, 1, 0, 0, 0, 1803, 1780, 1, 0, 0, 0, 1803, 1781, 1, 0, 0, 0, 1803, 1786, 1, 0, 0, 0, 1803, 1794, 1, 0, 0, 0, 1804, 261, 1, 0, 0, 0, 1805, 1807, 5, 241, 0, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 5, 202, 0, 0, 1809, 1823, 7, 29, 0, 0, 1810, 1811, 5, 516, 0, 0, 1811, 1824, 5, 517, 0, 0, 1812, 1813, 5, 516, 0, 0, 1813, 1818, 3, 256, 128, 0, 1814, 1815, 5, 520, 0, 0, 1815, 1817, 3, 256, 128, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1820, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1822, 5, 517, 0, 0, 1822, 1824, 1, 0, 0, 0, 1823, 1810, 1, 0, 0, 0, 1823, 1812, 1, 0, 0, 0, 1824, 1835, 1, 0, 0, 0, 1825, 1827, 5, 241, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 202, 0, 0, 1829, 1832, 3, 264, 132, 0, 1830, 1831, 5, 127, 0, 0, 1831, 1833, 3, 356, 178, 0, 1832, 1830, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1806, 1, 0, 0, 0, 1834, 1826, 1, 0, 0, 0, 1835, 263, 1, 0, 0, 0, 1836, 1837, 6, 132, -1, 0, 1837, 1841, 3, 266, 133, 0, 1838, 1839, 7, 30, 0, 0, 1839, 1841, 3, 264, 132, 7, 1840, 1836, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1841, 1863, 1, 0, 0, 0, 1842, 1843, 10, 6, 0, 0, 1843, 1844, 7, 31, 0, 0, 1844, 1862, 3, 264, 132, 7, 1845, 1846, 10, 5, 0, 0, 1846, 1847, 7, 32, 0, 0, 1847, 1862, 3, 264, 132, 6, 1848, 1849, 10, 4, 0, 0, 1849, 1850, 5, 511, 0, 0, 1850, 1862, 3, 264, 132, 5, 1851, 1852, 10, 3, 0, 0, 1852, 1853, 5, 512, 0, 0, 1853, 1862, 3, 264, 132, 4, 1854, 1855, 10, 2, 0, 0, 1855, 1856, 5, 510, 0, 0, 1856, 1862, 3, 264, 132, 3, 1857, 1858, 10, 1, 0, 0, 1858, 1859, 3, 344, 172, 0, 1859, 1860, 3, 264, 132, 2, 1860, 1862, 1, 0, 0, 0, 1861, 1842, 1, 0, 0, 0, 1861, 1845, 1, 0, 0, 0, 1861, 1848, 1, 0, 0, 0, 1861, 1851, 1, 0, 0, 0, 1861, 1854, 1, 0, 0, 0, 1861, 1857, 1, 0, 0, 0, 1862, 1865, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 265, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1866, 1867, 6, 133, -1, 0, 1867, 1869, 5, 40, 0, 0, 1868, 1870, 3, 308, 154, 0, 1869, 1868, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1874, 5, 120, 0, 0, 1874, 1876, 3, 256, 128, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1878, 5, 122, 0, 0, 1878, 1959, 1, 0, 0, 0, 1879, 1880, 5, 40, 0, 0, 1880, 1882, 3, 256, 128, 0, 1881, 1883, 3, 308, 154, 0, 1882, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1888, 1, 0, 0, 0, 1886, 1887, 5, 120, 0, 0, 1887, 1889, 3, 256, 128, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 5, 122, 0, 0, 1891, 1959, 1, 0, 0, 0, 1892, 1893, 5, 41, 0, 0, 1893, 1894, 5, 516, 0, 0, 1894, 1895, 3, 256, 128, 0, 1895, 1896, 5, 17, 0, 0, 1896, 1897, 3, 56, 28, 0, 1897, 1898, 5, 517, 0, 0, 1898, 1959, 1, 0, 0, 0, 1899, 1900, 5, 457, 0, 0, 1900, 1901, 5, 516, 0, 0, 1901, 1904, 3, 256, 128, 0, 1902, 1903, 5, 461, 0, 0, 1903, 1905, 5, 476, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 5, 517, 0, 0, 1907, 1959, 1, 0, 0, 0, 1908, 1909, 5, 467, 0, 0, 1909, 1910, 5, 516, 0, 0, 1910, 1913, 3, 256, 128, 0, 1911, 1912, 5, 461, 0, 0, 1912, 1914, 5, 476, 0, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 5, 517, 0, 0, 1916, 1959, 1, 0, 0, 0, 1917, 1918, 5, 281, 0, 0, 1918, 1919, 5, 516, 0, 0, 1919, 1920, 3, 264, 132, 0, 1920, 1921, 5, 170, 0, 0, 1921, 1922, 3, 264, 132, 0, 1922, 1923, 5, 517, 0, 0, 1923, 1959, 1, 0, 0, 0, 1924, 1959, 3, 352, 176, 0, 1925, 1959, 5, 527, 0, 0, 1926, 1927, 3, 326, 163, 0, 1927, 1928, 5, 513, 0, 0, 1928, 1929, 5, 527, 0, 0, 1929, 1959, 1, 0, 0, 0, 1930, 1931, 5, 516, 0, 0, 1931, 1932, 3, 156, 78, 0, 1932, 1933, 5, 517, 0, 0, 1933, 1959, 1, 0, 0, 0, 1934, 1935, 3, 270, 135, 0, 1935, 1947, 5, 516, 0, 0, 1936, 1938, 3, 362, 181, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1944, 3, 272, 136, 0, 1940, 1941, 5, 520, 0, 0, 1941, 1943, 3, 272, 136, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1946, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1948, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1937, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 5, 517, 0, 0, 1950, 1959, 1, 0, 0, 0, 1951, 1959, 3, 302, 151, 0, 1952, 1959, 3, 274, 137, 0, 1953, 1954, 5, 516, 0, 0, 1954, 1955, 3, 256, 128, 0, 1955, 1956, 5, 517, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1959, 5, 85, 0, 0, 1958, 1866, 1, 0, 0, 0, 1958, 1879, 1, 0, 0, 0, 1958, 1892, 1, 0, 0, 0, 1958, 1899, 1, 0, 0, 0, 1958, 1908, 1, 0, 0, 0, 1958, 1917, 1, 0, 0, 0, 1958, 1924, 1, 0, 0, 0, 1958, 1925, 1, 0, 0, 0, 1958, 1926, 1, 0, 0, 0, 1958, 1930, 1, 0, 0, 0, 1958, 1934, 1, 0, 0, 0, 1958, 1951, 1, 0, 0, 0, 1958, 1952, 1, 0, 0, 0, 1958, 1953, 1, 0, 0, 0, 1958, 1957, 1, 0, 0, 0, 1959, 1967, 1, 0, 0, 0, 1960, 1961, 10, 5, 0, 0, 1961, 1962, 5, 514, 0, 0, 1962, 1963, 3, 264, 132, 0, 1963, 1964, 5, 515, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1960, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 267, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1971, 3, 326, 163, 0, 1971, 269, 1, 0, 0, 0, 1972, 1975, 3, 370, 185, 0, 1973, 1975, 3, 326, 163, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1973, 1, 0, 0, 0, 1975, 271, 1, 0, 0, 0, 1976, 1981, 3, 368, 184, 0, 1977, 1981, 3, 366, 183, 0, 1978, 1981, 3, 364, 182, 0, 1979, 1981, 3, 256, 128, 0, 1980, 1976, 1, 0, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1978, 1, 0, 0, 0, 1980, 1979, 1, 0, 0, 0, 1981, 273, 1, 0, 0, 0, 1982, 1983, 3, 326, 163, 0, 1983, 275, 1, 0, 0, 0, 1984, 1985, 3, 302, 151, 0, 1985, 277, 1, 0, 0, 0, 1986, 1989, 3, 302, 151, 0, 1987, 1989, 3, 274, 137, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1987, 1, 0, 0, 0, 1989, 279, 1, 0, 0, 0, 1990, 1993, 5, 182, 0, 0, 1991, 1994, 3, 282, 141, 0, 1992, 1994, 3, 286, 143, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 281, 1, 0, 0, 0, 1995, 1997, 3, 284, 142, 0, 1996, 1998, 3, 288, 144, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 283, 1, 0, 0, 0, 1999, 2000, 3, 290, 145, 0, 2000, 2001, 3, 366, 183, 0, 2001, 2003, 1, 0, 0, 0, 2002, 1999, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 285, 1, 0, 0, 0, 2006, 2009, 3, 288, 144, 0, 2007, 2010, 3, 284, 142, 0, 2008, 2010, 3, 288, 144, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 287, 1, 0, 0, 0, 2011, 2012, 3, 290, 145, 0, 2012, 2013, 3, 366, 183, 0, 2013, 2014, 5, 388, 0, 0, 2014, 2015, 3, 366, 183, 0, 2015, 289, 1, 0, 0, 0, 2016, 2018, 7, 33, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2022, 7, 34, 0, 0, 2020, 2022, 5, 537, 0, 0, 2021, 2017, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2022, 291, 1, 0, 0, 0, 2023, 2025, 5, 17, 0, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2028, 3, 302, 151, 0, 2027, 2029, 3, 298, 149, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 293, 1, 0, 0, 0, 2030, 2031, 3, 302, 151, 0, 2031, 2032, 3, 296, 148, 0, 2032, 295, 1, 0, 0, 0, 2033, 2034, 5, 221, 0, 0, 2034, 2036, 3, 302, 151, 0, 2035, 2033, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2041, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2035, 1, 0, 0, 0, 2040, 2039, 1, 0, 0, 0, 2041, 297, 1, 0, 0, 0, 2042, 2043, 5, 516, 0, 0, 2043, 2044, 3, 300, 150, 0, 2044, 2045, 5, 517, 0, 0, 2045, 299, 1, 0, 0, 0, 2046, 2051, 3, 302, 151, 0, 2047, 2048, 5, 520, 0, 0, 2048, 2050, 3, 302, 151, 0, 2049, 2047, 1, 0, 0, 0, 2050, 2053, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 301, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2054, 2058, 3, 304, 152, 0, 2055, 2058, 3, 306, 153, 0, 2056, 2058, 3, 372, 186, 0, 2057, 2054, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2056, 1, 0, 0, 0, 2058, 303, 1, 0, 0, 0, 2059, 2060, 7, 35, 0, 0, 2060, 305, 1, 0, 0, 0, 2061, 2062, 5, 537, 0, 0, 2062, 307, 1, 0, 0, 0, 2063, 2064, 5, 428, 0, 0, 2064, 2065, 3, 256, 128, 0, 2065, 2066, 5, 376, 0, 0, 2066, 2067, 3, 256, 128, 0, 2067, 309, 1, 0, 0, 0, 2068, 2069, 3, 302, 151, 0, 2069, 311, 1, 0, 0, 0, 2070, 2071, 3, 302, 151, 0, 2071, 313, 1, 0, 0, 0, 2072, 2075, 3, 302, 151, 0, 2073, 2074, 5, 513, 0, 0, 2074, 2076, 3, 302, 151, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 315, 1, 0, 0, 0, 2077, 2080, 3, 302, 151, 0, 2078, 2079, 5, 513, 0, 0, 2079, 2081, 3, 302, 151, 0, 2080, 2078, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 317, 1, 0, 0, 0, 2082, 2085, 3, 302, 151, 0, 2083, 2084, 5, 513, 0, 0, 2084, 2086, 3, 302, 151, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2095, 1, 0, 0, 0, 2087, 2088, 3, 302, 151, 0, 2088, 2089, 5, 513, 0, 0, 2089, 2092, 3, 302, 151, 0, 2090, 2091, 5, 513, 0, 0, 2091, 2093, 3, 302, 151, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2082, 1, 0, 0, 0, 2094, 2087, 1, 0, 0, 0, 2095, 319, 1, 0, 0, 0, 2096, 2099, 3, 302, 151, 0, 2097, 2098, 5, 513, 0, 0, 2098, 2100, 3, 302, 151, 0, 2099, 2097, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2109, 1, 0, 0, 0, 2101, 2102, 3, 302, 151, 0, 2102, 2103, 5, 513, 0, 0, 2103, 2106, 3, 302, 151, 0, 2104, 2105, 5, 513, 0, 0, 2105, 2107, 3, 302, 151, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2096, 1, 0, 0, 0, 2108, 2101, 1, 0, 0, 0, 2109, 321, 1, 0, 0, 0, 2110, 2113, 3, 302, 151, 0, 2111, 2112, 5, 513, 0, 0, 2112, 2114, 3, 302, 151, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2123, 1, 0, 0, 0, 2115, 2116, 3, 302, 151, 0, 2116, 2117, 5, 513, 0, 0, 2117, 2120, 3, 302, 151, 0, 2118, 2119, 5, 513, 0, 0, 2119, 2121, 3, 302, 151, 0, 2120, 2118, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2110, 1, 0, 0, 0, 2122, 2115, 1, 0, 0, 0, 2123, 323, 1, 0, 0, 0, 2124, 2127, 3, 302, 151, 0, 2125, 2126, 5, 513, 0, 0, 2126, 2128, 3, 302, 151, 0, 2127, 2125, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2137, 1, 0, 0, 0, 2129, 2130, 3, 302, 151, 0, 2130, 2131, 5, 513, 0, 0, 2131, 2134, 3, 302, 151, 0, 2132, 2133, 5, 513, 0, 0, 2133, 2135, 3, 302, 151, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2124, 1, 0, 0, 0, 2136, 2129, 1, 0, 0, 0, 2137, 325, 1, 0, 0, 0, 2138, 2143, 3, 302, 151, 0, 2139, 2140, 5, 513, 0, 0, 2140, 2142, 3, 302, 151, 0, 2141, 2139, 1, 0, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2143, 2141, 1, 0, 0, 0, 2144, 327, 1, 0, 0, 0, 2145, 2143, 1, 0, 0, 0, 2146, 2147, 5, 433, 0, 0, 2147, 2148, 3, 334, 167, 0, 2148, 329, 1, 0, 0, 0, 2149, 2150, 5, 167, 0, 0, 2150, 2151, 5, 241, 0, 0, 2151, 2152, 5, 133, 0, 0, 2152, 331, 1, 0, 0, 0, 2153, 2154, 5, 167, 0, 0, 2154, 2155, 5, 133, 0, 0, 2155, 333, 1, 0, 0, 0, 2156, 2157, 5, 516, 0, 0, 2157, 2162, 3, 336, 168, 0, 2158, 2159, 5, 520, 0, 0, 2159, 2161, 3, 336, 168, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2164, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2162, 1, 0, 0, 0, 2165, 2166, 5, 517, 0, 0, 2166, 335, 1, 0, 0, 0, 2167, 2172, 3, 338, 169, 0, 2168, 2170, 5, 505, 0, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 3, 340, 170, 0, 2172, 2169, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 337, 1, 0, 0, 0, 2174, 2178, 3, 302, 151, 0, 2175, 2178, 3, 274, 137, 0, 2176, 2178, 5, 537, 0, 0, 2177, 2174, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2176, 1, 0, 0, 0, 2178, 339, 1, 0, 0, 0, 2179, 2184, 5, 538, 0, 0, 2180, 2184, 5, 539, 0, 0, 2181, 2184, 3, 360, 180, 0, 2182, 2184, 5, 537, 0, 0, 2183, 2179, 1, 0, 0, 0, 2183, 2180, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2182, 1, 0, 0, 0, 2184, 341, 1, 0, 0, 0, 2185, 2192, 5, 10, 0, 0, 2186, 2187, 5, 511, 0, 0, 2187, 2192, 5, 511, 0, 0, 2188, 2192, 5, 257, 0, 0, 2189, 2190, 5, 510, 0, 0, 2190, 2192, 5, 510, 0, 0, 2191, 2185, 1, 0, 0, 0, 2191, 2186, 1, 0, 0, 0, 2191, 2188, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 343, 1, 0, 0, 0, 2193, 2208, 5, 505, 0, 0, 2194, 2208, 5, 506, 0, 0, 2195, 2208, 5, 507, 0, 0, 2196, 2197, 5, 507, 0, 0, 2197, 2208, 5, 505, 0, 0, 2198, 2199, 5, 506, 0, 0, 2199, 2208, 5, 505, 0, 0, 2200, 2201, 5, 507, 0, 0, 2201, 2208, 5, 506, 0, 0, 2202, 2203, 5, 508, 0, 0, 2203, 2208, 5, 505, 0, 0, 2204, 2205, 5, 507, 0, 0, 2205, 2206, 5, 505, 0, 0, 2206, 2208, 5, 506, 0, 0, 2207, 2193, 1, 0, 0, 0, 2207, 2194, 1, 0, 0, 0, 2207, 2195, 1, 0, 0, 0, 2207, 2196, 1, 0, 0, 0, 2207, 2198, 1, 0, 0, 0, 2207, 2200, 1, 0, 0, 0, 2207, 2202, 1, 0, 0, 0, 2207, 2204, 1, 0, 0, 0, 2208, 345, 1, 0, 0, 0, 2209, 2210, 5, 507, 0, 0, 2210, 2217, 5, 507, 0, 0, 2211, 2212, 5, 506, 0, 0, 2212, 2217, 5, 506, 0, 0, 2213, 2217, 5, 511, 0, 0, 2214, 2217, 5, 512, 0, 0, 2215, 2217, 5, 510, 0, 0, 2216, 2209, 1, 0, 0, 0, 2216, 2211, 1, 0, 0, 0, 2216, 2213, 1, 0, 0, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2215, 1, 0, 0, 0, 2217, 347, 1, 0, 0, 0, 2218, 2219, 7, 36, 0, 0, 2219, 349, 1, 0, 0, 0, 2220, 2221, 7, 37, 0, 0, 2221, 351, 1, 0, 0, 0, 2222, 2237, 3, 280, 140, 0, 2223, 2237, 3, 354, 177, 0, 2224, 2237, 3, 356, 178, 0, 2225, 2227, 5, 529, 0, 0, 2226, 2225, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2237, 3, 358, 179, 0, 2229, 2237, 3, 360, 180, 0, 2230, 2237, 5, 539, 0, 0, 2231, 2237, 5, 540, 0, 0, 2232, 2234, 5, 241, 0, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2237, 5, 244, 0, 0, 2236, 2222, 1, 0, 0, 0, 2236, 2223, 1, 0, 0, 0, 2236, 2224, 1, 0, 0, 0, 2236, 2226, 1, 0, 0, 0, 2236, 2229, 1, 0, 0, 0, 2236, 2230, 1, 0, 0, 0, 2236, 2231, 1, 0, 0, 0, 2236, 2233, 1, 0, 0, 0, 2237, 353, 1, 0, 0, 0, 2238, 2239, 3, 364, 182, 0, 2239, 2240, 3, 356, 178, 0, 2240, 355, 1, 0, 0, 0, 2241, 2242, 5, 537, 0, 0, 2242, 357, 1, 0, 0, 0, 2243, 2244, 5, 538, 0, 0, 2244, 359, 1, 0, 0, 0, 2245, 2246, 7, 38, 0, 0, 2246, 361, 1, 0, 0, 0, 2247, 2248, 7, 39, 0, 0, 2248, 363, 1, 0, 0, 0, 2249, 2250, 7, 40, 0, 0, 2250, 365, 1, 0, 0, 0, 2251, 2252, 7, 41, 0, 0, 2252, 367, 1, 0, 0, 0, 2253, 2254, 7, 42, 0, 0, 2254, 369, 1, 0, 0, 0, 2255, 2256, 7, 43, 0, 0, 2256, 371, 1, 0, 0, 0, 2257, 2258, 7, 44, 0, 0, 2258, 373, 1, 0, 0, 0, 266, 377, 384, 387, 401, 419, 423, 432, 437, 444, 455, 464, 476, 479, 486, 489, 497, 501, 506, 509, 516, 524, 528, 540, 548, 552, 584, 587, 592, 596, 600, 604, 613, 618, 622, 626, 631, 634, 638, 643, 649, 654, 659, 663, 667, 671, 679, 687, 691, 695, 699, 703, 707, 711, 715, 719, 721, 731, 739, 763, 770, 776, 779, 782, 789, 792, 801, 813, 837, 849, 854, 858, 866, 870, 876, 886, 891, 897, 901, 905, 909, 918, 922, 929, 932, 942, 950, 958, 962, 977, 996, 1007, 1011, 1018, 1023, 1029, 1033, 1040, 1044, 1048, 1052, 1060, 1064, 1069, 1075, 1081, 1084, 1088, 1099, 1108, 1122, 1134, 1149, 1152, 1156, 1159, 1161, 1166, 1170, 1173, 1177, 1186, 1195, 1205, 1210, 1221, 1224, 1227, 1230, 1233, 1239, 1243, 1251, 1254, 1259, 1262, 1266, 1269, 1271, 1285, 1296, 1301, 1309, 1312, 1315, 1320, 1322, 1324, 1329, 1332, 1336, 1340, 1352, 1359, 1370, 1397, 1419, 1432, 1444, 1457, 1469, 1481, 1487, 1514, 1522, 1526, 1529, 1532, 1539, 1542, 1545, 1548, 1551, 1554, 1559, 1562, 1571, 1576, 1580, 1585, 1594, 1613, 1621, 1629, 1633, 1637, 1647, 1673, 1681, 1693, 1715, 1717, 1728, 1731, 1733, 1737, 1741, 1748, 1757, 1763, 1776, 1783, 1788, 1794, 1801, 1803, 1806, 1818, 1823, 1826, 1832, 1834, 1840, 1861, 1863, 1871, 1875, 1884, 1888, 1904, 1913, 1937, 1944, 1947, 1958, 1967, 1974, 1980, 1988, 1993, 1997, 2004, 2009, 2017, 2021, 2024, 2028, 2037, 2040, 2051, 2057, 2075, 2080, 2085, 2092, 2094, 2099, 2106, 2108, 2113, 2120, 2122, 2127, 2134, 2136, 2143, 2162, 2169, 2172, 2177, 2183, 2191, 2207, 2216, 2226, 2233, 2236] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 40621c83..e111f6f6 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -594,158 +594,157 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_mapTypeDimension = 33; public static readonly RULE_rowTypeDimension = 34; public static readonly RULE_columnConstraint = 35; - public static readonly RULE_commentSpec = 36; - public static readonly RULE_metadataColumnDefinition = 37; - public static readonly RULE_metadataKey = 38; - public static readonly RULE_computedColumnDefinition = 39; - public static readonly RULE_computedColumnExpression = 40; - public static readonly RULE_watermarkDefinition = 41; - public static readonly RULE_tableConstraint = 42; - public static readonly RULE_constraintName = 43; - public static readonly RULE_selfDefinitionClause = 44; - public static readonly RULE_partitionDefinition = 45; - public static readonly RULE_transformList = 46; - public static readonly RULE_transform = 47; - public static readonly RULE_transformArgument = 48; - public static readonly RULE_likeDefinition = 49; - public static readonly RULE_likeOption = 50; - public static readonly RULE_createCatalog = 51; - public static readonly RULE_createDatabase = 52; - public static readonly RULE_createView = 53; - public static readonly RULE_createFunction = 54; - public static readonly RULE_usingClause = 55; - public static readonly RULE_jarFileName = 56; - public static readonly RULE_alterTable = 57; - public static readonly RULE_renameDefinition = 58; - public static readonly RULE_setKeyValueDefinition = 59; - public static readonly RULE_addConstraint = 60; - public static readonly RULE_dropConstraint = 61; - public static readonly RULE_addUnique = 62; - public static readonly RULE_notForced = 63; - public static readonly RULE_alertView = 64; - public static readonly RULE_alterDatabase = 65; - public static readonly RULE_alterFunction = 66; - public static readonly RULE_dropCatalog = 67; - public static readonly RULE_dropTable = 68; - public static readonly RULE_dropDatabase = 69; - public static readonly RULE_dropView = 70; - public static readonly RULE_dropFunction = 71; - public static readonly RULE_insertStatement = 72; - public static readonly RULE_insertSimpleStatement = 73; - public static readonly RULE_insertPartitionDefinition = 74; - public static readonly RULE_valuesDefinition = 75; - public static readonly RULE_valuesRowDefinition = 76; - public static readonly RULE_insertMulStatementCompatibility = 77; - public static readonly RULE_insertMulStatement = 78; - public static readonly RULE_queryStatement = 79; - public static readonly RULE_valuesCaluse = 80; - public static readonly RULE_withClause = 81; - public static readonly RULE_withItem = 82; - public static readonly RULE_withItemName = 83; - public static readonly RULE_selectStatement = 84; - public static readonly RULE_selectClause = 85; - public static readonly RULE_projectItemDefinition = 86; - public static readonly RULE_overWindowItem = 87; - public static readonly RULE_fromClause = 88; - public static readonly RULE_tableExpression = 89; - public static readonly RULE_tableReference = 90; - public static readonly RULE_tablePrimary = 91; - public static readonly RULE_systemTimePeriod = 92; - public static readonly RULE_dateTimeExpression = 93; - public static readonly RULE_inlineDataValueClause = 94; - public static readonly RULE_windoTVFClause = 95; - public static readonly RULE_windowTVFExression = 96; - public static readonly RULE_windoTVFName = 97; - public static readonly RULE_windowTVFParam = 98; - public static readonly RULE_timeIntervalParamName = 99; - public static readonly RULE_columnDescriptor = 100; - public static readonly RULE_joinCondition = 101; - public static readonly RULE_whereClause = 102; - public static readonly RULE_groupByClause = 103; - public static readonly RULE_groupItemDefinition = 104; - public static readonly RULE_groupingSets = 105; - public static readonly RULE_groupingSetsNotaionName = 106; - public static readonly RULE_groupWindowFunction = 107; - public static readonly RULE_groupWindowFunctionName = 108; - public static readonly RULE_timeAttrColumn = 109; - public static readonly RULE_havingClause = 110; - public static readonly RULE_windowClause = 111; - public static readonly RULE_namedWindow = 112; - public static readonly RULE_windowSpec = 113; - public static readonly RULE_matchRecognizeClause = 114; - public static readonly RULE_orderByCaluse = 115; - public static readonly RULE_orderItemDefition = 116; - public static readonly RULE_limitClause = 117; - public static readonly RULE_partitionByClause = 118; - public static readonly RULE_quantifiers = 119; - public static readonly RULE_measuresClause = 120; - public static readonly RULE_patternDefination = 121; - public static readonly RULE_patternVariable = 122; - public static readonly RULE_outputMode = 123; - public static readonly RULE_afterMatchStrategy = 124; - public static readonly RULE_patternVariablesDefination = 125; - public static readonly RULE_windowFrame = 126; - public static readonly RULE_frameBound = 127; - public static readonly RULE_withinClause = 128; - public static readonly RULE_expression = 129; - public static readonly RULE_booleanExpression = 130; - public static readonly RULE_predicate = 131; - public static readonly RULE_likePredicate = 132; - public static readonly RULE_valueExpression = 133; - public static readonly RULE_primaryExpression = 134; - public static readonly RULE_functionNameCreate = 135; - public static readonly RULE_functionName = 136; - public static readonly RULE_functionParam = 137; - public static readonly RULE_dereferenceDefinition = 138; - public static readonly RULE_correlationName = 139; - public static readonly RULE_qualifiedName = 140; - public static readonly RULE_timeIntervalExpression = 141; - public static readonly RULE_errorCapturingMultiUnitsInterval = 142; - public static readonly RULE_multiUnitsInterval = 143; - public static readonly RULE_errorCapturingUnitToUnitInterval = 144; - public static readonly RULE_unitToUnitInterval = 145; - public static readonly RULE_intervalValue = 146; - public static readonly RULE_tableAlias = 147; - public static readonly RULE_errorCapturingIdentifier = 148; - public static readonly RULE_errorCapturingIdentifierExtra = 149; - public static readonly RULE_identifierList = 150; - public static readonly RULE_identifierSeq = 151; - public static readonly RULE_identifier = 152; - public static readonly RULE_unquotedIdentifier = 153; - public static readonly RULE_quotedIdentifier = 154; - public static readonly RULE_whenClause = 155; - public static readonly RULE_catalogPath = 156; - public static readonly RULE_catalogPathCreate = 157; - public static readonly RULE_databasePath = 158; - public static readonly RULE_databasePathCreate = 159; - public static readonly RULE_tablePathCreate = 160; - public static readonly RULE_tablePath = 161; - public static readonly RULE_viewPath = 162; - public static readonly RULE_viewPathCreate = 163; - public static readonly RULE_uid = 164; - public static readonly RULE_withOption = 165; - public static readonly RULE_ifNotExists = 166; - public static readonly RULE_ifExists = 167; - public static readonly RULE_tablePropertyList = 168; - public static readonly RULE_tableProperty = 169; - public static readonly RULE_tablePropertyKey = 170; - public static readonly RULE_tablePropertyValue = 171; - public static readonly RULE_logicalOperator = 172; - public static readonly RULE_comparisonOperator = 173; - public static readonly RULE_bitOperator = 174; - public static readonly RULE_mathOperator = 175; - public static readonly RULE_unaryOperator = 176; - public static readonly RULE_constant = 177; - public static readonly RULE_timePointLiteral = 178; - public static readonly RULE_stringLiteral = 179; - public static readonly RULE_decimalLiteral = 180; - public static readonly RULE_booleanLiteral = 181; - public static readonly RULE_setQuantifier = 182; - public static readonly RULE_timePointUnit = 183; - public static readonly RULE_timeIntervalUnit = 184; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 185; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 186; - public static readonly RULE_nonReservedKeywords = 187; + public static readonly RULE_metadataColumnDefinition = 36; + public static readonly RULE_metadataKey = 37; + public static readonly RULE_computedColumnDefinition = 38; + public static readonly RULE_computedColumnExpression = 39; + public static readonly RULE_watermarkDefinition = 40; + public static readonly RULE_tableConstraint = 41; + public static readonly RULE_constraintName = 42; + public static readonly RULE_selfDefinitionClause = 43; + public static readonly RULE_partitionDefinition = 44; + public static readonly RULE_transformList = 45; + public static readonly RULE_transform = 46; + public static readonly RULE_transformArgument = 47; + public static readonly RULE_likeDefinition = 48; + public static readonly RULE_likeOption = 49; + public static readonly RULE_createCatalog = 50; + public static readonly RULE_createDatabase = 51; + public static readonly RULE_createView = 52; + public static readonly RULE_createFunction = 53; + public static readonly RULE_usingClause = 54; + public static readonly RULE_jarFileName = 55; + public static readonly RULE_alterTable = 56; + public static readonly RULE_renameDefinition = 57; + public static readonly RULE_setKeyValueDefinition = 58; + public static readonly RULE_addConstraint = 59; + public static readonly RULE_dropConstraint = 60; + public static readonly RULE_addUnique = 61; + public static readonly RULE_notForced = 62; + public static readonly RULE_alertView = 63; + public static readonly RULE_alterDatabase = 64; + public static readonly RULE_alterFunction = 65; + public static readonly RULE_dropCatalog = 66; + public static readonly RULE_dropTable = 67; + public static readonly RULE_dropDatabase = 68; + public static readonly RULE_dropView = 69; + public static readonly RULE_dropFunction = 70; + public static readonly RULE_insertStatement = 71; + public static readonly RULE_insertSimpleStatement = 72; + public static readonly RULE_insertPartitionDefinition = 73; + public static readonly RULE_valuesDefinition = 74; + public static readonly RULE_valuesRowDefinition = 75; + public static readonly RULE_insertMulStatementCompatibility = 76; + public static readonly RULE_insertMulStatement = 77; + public static readonly RULE_queryStatement = 78; + public static readonly RULE_valuesCaluse = 79; + public static readonly RULE_withClause = 80; + public static readonly RULE_withItem = 81; + public static readonly RULE_withItemName = 82; + public static readonly RULE_selectStatement = 83; + public static readonly RULE_selectClause = 84; + public static readonly RULE_projectItemDefinition = 85; + public static readonly RULE_overWindowItem = 86; + public static readonly RULE_fromClause = 87; + public static readonly RULE_tableExpression = 88; + public static readonly RULE_tableReference = 89; + public static readonly RULE_tablePrimary = 90; + public static readonly RULE_systemTimePeriod = 91; + public static readonly RULE_dateTimeExpression = 92; + public static readonly RULE_inlineDataValueClause = 93; + public static readonly RULE_windoTVFClause = 94; + public static readonly RULE_windowTVFExression = 95; + public static readonly RULE_windoTVFName = 96; + public static readonly RULE_windowTVFParam = 97; + public static readonly RULE_timeIntervalParamName = 98; + public static readonly RULE_columnDescriptor = 99; + public static readonly RULE_joinCondition = 100; + public static readonly RULE_whereClause = 101; + public static readonly RULE_groupByClause = 102; + public static readonly RULE_groupItemDefinition = 103; + public static readonly RULE_groupingSets = 104; + public static readonly RULE_groupingSetsNotaionName = 105; + public static readonly RULE_groupWindowFunction = 106; + public static readonly RULE_groupWindowFunctionName = 107; + public static readonly RULE_timeAttrColumn = 108; + public static readonly RULE_havingClause = 109; + public static readonly RULE_windowClause = 110; + public static readonly RULE_namedWindow = 111; + public static readonly RULE_windowSpec = 112; + public static readonly RULE_matchRecognizeClause = 113; + public static readonly RULE_orderByCaluse = 114; + public static readonly RULE_orderItemDefition = 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_patternDefination = 120; + public static readonly RULE_patternVariable = 121; + public static readonly RULE_outputMode = 122; + public static readonly RULE_afterMatchStrategy = 123; + public static readonly RULE_patternVariablesDefination = 124; + public static readonly RULE_windowFrame = 125; + public static readonly RULE_frameBound = 126; + public static readonly RULE_withinClause = 127; + public static readonly RULE_expression = 128; + public static readonly RULE_booleanExpression = 129; + public static readonly RULE_predicate = 130; + public static readonly RULE_likePredicate = 131; + public static readonly RULE_valueExpression = 132; + public static readonly RULE_primaryExpression = 133; + public static readonly RULE_functionNameCreate = 134; + public static readonly RULE_functionName = 135; + public static readonly RULE_functionParam = 136; + public static readonly RULE_dereferenceDefinition = 137; + public static readonly RULE_correlationName = 138; + public static readonly RULE_qualifiedName = 139; + public static readonly RULE_timeIntervalExpression = 140; + public static readonly RULE_errorCapturingMultiUnitsInterval = 141; + public static readonly RULE_multiUnitsInterval = 142; + public static readonly RULE_errorCapturingUnitToUnitInterval = 143; + public static readonly RULE_unitToUnitInterval = 144; + public static readonly RULE_intervalValue = 145; + public static readonly RULE_tableAlias = 146; + public static readonly RULE_errorCapturingIdentifier = 147; + public static readonly RULE_errorCapturingIdentifierExtra = 148; + public static readonly RULE_identifierList = 149; + public static readonly RULE_identifierSeq = 150; + public static readonly RULE_identifier = 151; + public static readonly RULE_unquotedIdentifier = 152; + public static readonly RULE_quotedIdentifier = 153; + public static readonly RULE_whenClause = 154; + public static readonly RULE_catalogPath = 155; + public static readonly RULE_catalogPathCreate = 156; + public static readonly RULE_databasePath = 157; + public static readonly RULE_databasePathCreate = 158; + public static readonly RULE_tablePathCreate = 159; + public static readonly RULE_tablePath = 160; + public static readonly RULE_viewPath = 161; + public static readonly RULE_viewPathCreate = 162; + public static readonly RULE_uid = 163; + public static readonly RULE_withOption = 164; + public static readonly RULE_ifNotExists = 165; + public static readonly RULE_ifExists = 166; + public static readonly RULE_tablePropertyList = 167; + public static readonly RULE_tableProperty = 168; + public static readonly RULE_tablePropertyKey = 169; + public static readonly RULE_tablePropertyValue = 170; + public static readonly RULE_logicalOperator = 171; + public static readonly RULE_comparisonOperator = 172; + public static readonly RULE_bitOperator = 173; + public static readonly RULE_mathOperator = 174; + public static readonly RULE_unaryOperator = 175; + public static readonly RULE_constant = 176; + public static readonly RULE_timePointLiteral = 177; + public static readonly RULE_stringLiteral = 178; + public static readonly RULE_decimalLiteral = 179; + public static readonly RULE_booleanLiteral = 180; + public static readonly RULE_setQuantifier = 181; + public static readonly RULE_timePointUnit = 182; + public static readonly RULE_timeIntervalUnit = 183; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 184; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 185; + public static readonly RULE_nonReservedKeywords = 186; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -968,7 +967,7 @@ export class FlinkSqlParser extends SQLParserBase { "physicalColumnDefinition", "columnNameCreate", "columnName", "columnNameList", "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", "lengthTwoStringDimension", "lengthOneTypeDimension", "mapTypeDimension", - "rowTypeDimension", "columnConstraint", "commentSpec", "metadataColumnDefinition", + "rowTypeDimension", "columnConstraint", "metadataColumnDefinition", "metadataKey", "computedColumnDefinition", "computedColumnExpression", "watermarkDefinition", "tableConstraint", "constraintName", "selfDefinitionClause", "partitionDefinition", "transformList", "transform", "transformArgument", @@ -1030,21 +1029,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 379; + this.state = 377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 822083585) !== 0) || ((((_la - 410)) & ~0x1F) === 0 && ((1 << (_la - 410)) & 142606353) !== 0) || _la === 450 || _la === 468 || ((((_la - 489)) & ~0x1F) === 0 && ((1 << (_la - 489)) & 134219777) !== 0) || _la === 521) { { { - this.state = 376; + this.state = 374; this.singleStatement(); } } - this.state = 381; + this.state = 379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 382; + this.state = 380; this.match(FlinkSqlParser.EOF); } } @@ -1066,7 +1065,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 389; + this.state = 387; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1092,14 +1091,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 384; + this.state = 382; this.sqlStatement(); - this.state = 386; + this.state = 384; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 385; + this.state = 383; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1109,7 +1108,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 388; + this.state = 386; this.emptyStatement(); } break; @@ -1135,90 +1134,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 403; + this.state = 401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 391; + this.state = 389; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 392; + this.state = 390; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 393; + this.state = 391; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 394; + this.state = 392; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 395; + this.state = 393; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 396; + this.state = 394; this.showStatememt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 397; + this.state = 395; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 398; + this.state = 396; this.unloadStatememt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 399; + this.state = 397; this.setStatememt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 400; + this.state = 398; this.resetStatememt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 401; + this.state = 399; this.jarStatememt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 402; + this.state = 400; this.dtAddStatement(); } break; @@ -1244,7 +1243,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 405; + this.state = 403; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1266,104 +1265,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 421; + this.state = 419; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 407; + this.state = 405; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 408; + this.state = 406; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 409; + this.state = 407; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 410; + this.state = 408; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 411; + this.state = 409; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 412; + this.state = 410; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 413; + this.state = 411; this.alertView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 414; + this.state = 412; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 415; + this.state = 413; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 416; + this.state = 414; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 417; + this.state = 415; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 418; + this.state = 416; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 419; + this.state = 417; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 420; + this.state = 418; this.dropFunction(); } break; @@ -1387,7 +1386,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 425; + this.state = 423; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1396,7 +1395,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 423; + this.state = 421; this.queryStatement(0); } break; @@ -1405,7 +1404,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 424; + this.state = 422; this.insertStatement(); } break; @@ -1434,7 +1433,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 427; + this.state = 425; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -1443,7 +1442,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 428; + this.state = 426; this.tablePath(); } } @@ -1467,24 +1466,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 430; + this.state = 428; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 434; + this.state = 432; 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 = 431; + this.state = 429; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 432; + this.state = 430; this.match(FlinkSqlParser.KW_PLAN); - this.state = 433; + this.state = 431; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1500,24 +1499,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 439; + this.state = 437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 436; + this.state = 434; this.dmlStatement(); } break; case 2: { - this.state = 437; + this.state = 435; this.insertSimpleStatement(); } break; case 3: { - this.state = 438; + this.state = 436; this.insertMulStatement(); } break; @@ -1545,21 +1544,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 441; + this.state = 439; this.explainDetail(); - this.state = 446; + this.state = 444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 442; + this.state = 440; this.match(FlinkSqlParser.COMMA); - this.state = 443; + this.state = 441; this.explainDetail(); } } - this.state = 448; + this.state = 446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1586,7 +1585,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 449; + this.state = 447; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -1615,33 +1614,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 457; + this.state = 455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 451; + this.state = 449; this.match(FlinkSqlParser.KW_USE); - this.state = 452; + this.state = 450; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 453; + this.state = 451; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 454; + this.state = 452; this.match(FlinkSqlParser.KW_USE); - this.state = 455; + this.state = 453; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 456; + this.state = 454; this.useModuleStatement(); } break; @@ -1668,25 +1667,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 459; + this.state = 457; this.match(FlinkSqlParser.KW_USE); - this.state = 460; + this.state = 458; this.match(FlinkSqlParser.KW_MODULES); - this.state = 461; + this.state = 459; this.uid(); - this.state = 466; + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 462; + this.state = 460; this.match(FlinkSqlParser.COMMA); - this.state = 463; + this.state = 461; this.uid(); } } - this.state = 468; + this.state = 466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1711,15 +1710,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatememt); let _la: number; try { - this.state = 511; + this.state = 509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 469; + this.state = 467; this.match(FlinkSqlParser.KW_SHOW); - this.state = 470; + this.state = 468; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 422 || _la === 464)) { this.errorHandler.recoverInline(this); @@ -1733,11 +1732,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 471; + this.state = 469; this.match(FlinkSqlParser.KW_SHOW); - this.state = 472; + this.state = 470; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 473; + this.state = 471; _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 447)) { this.errorHandler.recoverInline(this); @@ -1751,16 +1750,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 474; + this.state = 472; this.match(FlinkSqlParser.KW_SHOW); - this.state = 475; + this.state = 473; this.match(FlinkSqlParser.KW_TABLES); - this.state = 478; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 476; + this.state = 474; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1769,17 +1768,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 477; + this.state = 475; this.databasePath(); } } - this.state = 481; + this.state = 479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 241) { { - this.state = 480; + this.state = 478; this.likePredicate(); } } @@ -1789,11 +1788,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 483; + this.state = 481; this.match(FlinkSqlParser.KW_SHOW); - this.state = 484; + this.state = 482; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 485; + this.state = 483; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1802,28 +1801,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 488; + this.state = 486; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 486; + this.state = 484; this.viewPath(); } break; case 2: { - this.state = 487; + this.state = 485; this.tablePath(); } break; } - this.state = 491; + this.state = 489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 241) { { - this.state = 490; + this.state = 488; this.likePredicate(); } } @@ -1833,26 +1832,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 493; + this.state = 491; this.match(FlinkSqlParser.KW_SHOW); - this.state = 494; + this.state = 492; this.match(FlinkSqlParser.KW_CREATE); - this.state = 499; + this.state = 497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 495; + this.state = 493; this.match(FlinkSqlParser.KW_TABLE); - this.state = 496; + this.state = 494; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 497; + this.state = 495; this.match(FlinkSqlParser.KW_VIEW); - this.state = 498; + this.state = 496; this.viewPath(); } break; @@ -1864,38 +1863,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 501; + this.state = 499; this.match(FlinkSqlParser.KW_SHOW); - this.state = 503; + this.state = 501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 411) { { - this.state = 502; + this.state = 500; this.match(FlinkSqlParser.KW_USER); } } - this.state = 505; + this.state = 503; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 506; + this.state = 504; this.match(FlinkSqlParser.KW_SHOW); - this.state = 508; + this.state = 506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 507; + this.state = 505; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 510; + this.state = 508; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1921,20 +1920,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 513; + this.state = 511; this.match(FlinkSqlParser.KW_LOAD); - this.state = 514; + this.state = 512; this.match(FlinkSqlParser.KW_MODULE); - this.state = 515; + this.state = 513; this.uid(); - this.state = 518; + this.state = 516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 516; + this.state = 514; this.match(FlinkSqlParser.KW_WITH); - this.state = 517; + this.state = 515; this.tablePropertyList(); } break; @@ -1961,11 +1960,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 520; + this.state = 518; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 521; + this.state = 519; this.match(FlinkSqlParser.KW_MODULE); - this.state = 522; + this.state = 520; this.uid(); } } @@ -1989,14 +1988,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 524; + this.state = 522; this.match(FlinkSqlParser.KW_SET); - this.state = 526; + this.state = 524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 525; + this.state = 523; this.tableProperty(); } break; @@ -2023,14 +2022,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 528; + this.state = 526; this.match(FlinkSqlParser.KW_RESET); - this.state = 530; + this.state = 528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 529; + this.state = 527; this.tablePropertyKey(); } break; @@ -2058,7 +2057,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 532; + this.state = 530; _la = this.tokenStream.LA(1); if(!(_la === 437 || _la === 489)) { this.errorHandler.recoverInline(this); @@ -2067,9 +2066,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 533; + this.state = 531; this.match(FlinkSqlParser.KW_JAR); - this.state = 534; + this.state = 532; this.jarFileName(); } } @@ -2092,28 +2091,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 586; + this.state = 584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 536; + this.state = 534; this.match(FlinkSqlParser.KW_ADD); - this.state = 537; + this.state = 535; this.match(FlinkSqlParser.KW_JAR); - this.state = 538; + this.state = 536; this.match(FlinkSqlParser.KW_WITH); - this.state = 539; + this.state = 537; this.dtFilePath(); - this.state = 542; + this.state = 540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 540; + this.state = 538; this.match(FlinkSqlParser.KW_AS); - this.state = 541; + this.state = 539; this.uid(); } } @@ -2123,34 +2122,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 544; + this.state = 542; this.match(FlinkSqlParser.KW_ADD); - this.state = 545; + this.state = 543; this.match(FlinkSqlParser.KW_FILE); - this.state = 546; + this.state = 544; this.match(FlinkSqlParser.KW_WITH); - this.state = 547; + this.state = 545; this.dtFilePath(); - this.state = 550; + this.state = 548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 548; + this.state = 546; this.match(FlinkSqlParser.KW_AS); - this.state = 549; + this.state = 547; this.uid(); } } - this.state = 554; + this.state = 552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 311) { { - this.state = 552; + this.state = 550; this.match(FlinkSqlParser.KW_RENAME); - this.state = 553; + this.state = 551; this.uid(); } } @@ -2160,9 +2159,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 556; + this.state = 554; this.match(FlinkSqlParser.KW_ADD); - this.state = 557; + this.state = 555; _la = this.tokenStream.LA(1); if(!(((((_la - 482)) & ~0x1F) === 0 && ((1 << (_la - 482)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2171,70 +2170,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 558; + this.state = 556; this.match(FlinkSqlParser.KW_WITH); - this.state = 559; + this.state = 557; this.dtFilePath(); - this.state = 560; + this.state = 558; this.match(FlinkSqlParser.KW_RENAME); - this.state = 561; + this.state = 559; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 563; + this.state = 561; this.match(FlinkSqlParser.KW_ADD); - this.state = 564; + this.state = 562; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 565; + this.state = 563; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 566; + this.state = 564; this.match(FlinkSqlParser.KW_ADD); - this.state = 567; + this.state = 565; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 568; + this.state = 566; this.match(FlinkSqlParser.KW_FILE); - this.state = 569; + this.state = 567; this.match(FlinkSqlParser.KW_WITH); - this.state = 570; + this.state = 568; this.dtFilePath(); - this.state = 571; + this.state = 569; this.match(FlinkSqlParser.KW_RENAME); - this.state = 572; + this.state = 570; this.uid(); - this.state = 573; + this.state = 571; this.match(FlinkSqlParser.KW_KEY); - this.state = 574; + this.state = 572; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 576; + this.state = 574; this.match(FlinkSqlParser.KW_ADD); - this.state = 577; + this.state = 575; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 578; + this.state = 576; this.match(FlinkSqlParser.KW_FILE); - this.state = 579; + this.state = 577; this.match(FlinkSqlParser.KW_WITH); - this.state = 580; + this.state = 578; this.dtFilePath(); - this.state = 581; + this.state = 579; this.match(FlinkSqlParser.KW_FOR); - this.state = 582; + this.state = 580; this.uid(); - this.state = 583; + this.state = 581; this.match(FlinkSqlParser.KW_AS); - this.state = 584; + this.state = 582; this.uid(); } break; @@ -2262,7 +2261,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 592; + this.state = 590; this.errorHandler.sync(this); alternative = 1; do { @@ -2270,17 +2269,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 589; + this.state = 587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 534) { { - this.state = 588; + this.state = 586; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 591; + this.state = 589; this.uid(); } } @@ -2288,7 +2287,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 594; + this.state = 592; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2314,18 +2313,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 598; + this.state = 596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 596; + this.state = 594; this.simpleCreateTable(); } break; case 2: { - this.state = 597; + this.state = 595; this.createTableAsSelect(); } break; @@ -2354,120 +2353,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 600; + this.state = 598; this.match(FlinkSqlParser.KW_CREATE); - this.state = 602; + this.state = 600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 601; + this.state = 599; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 604; + this.state = 602; this.match(FlinkSqlParser.KW_TABLE); - this.state = 606; + this.state = 604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 605; + this.state = 603; this.ifNotExists(); } } - this.state = 608; + this.state = 606; this.tablePathCreate(); - this.state = 609; + this.state = 607; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 610; + this.state = 608; this.columnOptionDefinition(); - this.state = 615; + this.state = 613; 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 = 611; + this.state = 609; this.match(FlinkSqlParser.COMMA); - this.state = 612; + this.state = 610; this.columnOptionDefinition(); } } } - this.state = 617; + this.state = 615; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 620; + this.state = 618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 618; + this.state = 616; this.match(FlinkSqlParser.COMMA); - this.state = 619; + this.state = 617; this.watermarkDefinition(); } break; } - this.state = 624; + this.state = 622; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 622; + this.state = 620; this.match(FlinkSqlParser.COMMA); - this.state = 623; + this.state = 621; this.tableConstraint(); } break; } - this.state = 628; + this.state = 626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 626; + this.state = 624; this.match(FlinkSqlParser.COMMA); - this.state = 627; + this.state = 625; this.selfDefinitionClause(); } } - this.state = 630; + this.state = 628; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 632; + this.state = 631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 631; - this.commentSpec(); + this.state = 629; + this.match(FlinkSqlParser.KW_COMMENT); + this.state = 630; + localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 635; + this.state = 634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 634; + this.state = 633; this.partitionDefinition(); } } - this.state = 637; + this.state = 636; this.withOption(); - this.state = 639; + this.state = 638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 638; + this.state = 637; this.likeDefinition(); } } @@ -2495,32 +2496,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 641; + this.state = 640; this.match(FlinkSqlParser.KW_CREATE); - this.state = 642; + this.state = 641; this.match(FlinkSqlParser.KW_TABLE); - this.state = 644; + this.state = 643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 643; + this.state = 642; this.ifNotExists(); } } - this.state = 646; + this.state = 645; this.tablePathCreate(); - this.state = 647; + this.state = 646; this.withOption(); - this.state = 650; + this.state = 649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 648; + this.state = 647; this.match(FlinkSqlParser.KW_AS); - this.state = 649; + this.state = 648; this.queryStatement(0); } } @@ -2545,27 +2546,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 655; + this.state = 654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 652; + this.state = 651; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 653; + this.state = 652; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 654; + this.state = 653; this.computedColumnDefinition(); } break; @@ -2592,16 +2593,16 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 657; + this.state = 656; this.columnNameCreate(); - this.state = 658; + this.state = 657; this.columnType(); - this.state = 660; + this.state = 659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 241 || _la === 244 || _la === 288) { { - this.state = 659; + this.state = 658; this.columnConstraint(); } } @@ -2611,8 +2612,10 @@ export class FlinkSqlParser extends SQLParserBase { _la = this.tokenStream.LA(1); if (_la === 59) { { + this.state = 661; + this.match(FlinkSqlParser.KW_COMMENT); this.state = 662; - this.commentSpec(); + localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2767,10 +2770,10 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { this.state = 684; - localContext._typeName = this.tokenStream.LT(1); + localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 244)) { - localContext._typeName = this.errorHandler.recoverInline(this); + localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -2795,10 +2798,10 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { this.state = 685; - localContext._typeName = this.tokenStream.LT(1); + localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 344 || _la === 360 || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 521) !== 0) || _la === 416 || _la === 417)) { - localContext._typeName = this.errorHandler.recoverInline(this); + localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -2820,7 +2823,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { this.state = 689; - localContext._typeName = this.match(FlinkSqlParser.KW_TIMESTAMP); + localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); this.state = 691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -2872,10 +2875,10 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { this.state = 701; - localContext._typeName = this.tokenStream.LT(1); + localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 246)) { - localContext._typeName = this.errorHandler.recoverInline(this); + localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -2898,10 +2901,10 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { this.state = 705; - localContext._type_ = this.tokenStream.LT(1); + localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 231)) { - localContext._type_ = this.errorHandler.recoverInline(this); + localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -2923,7 +2926,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { this.state = 709; - localContext._type_ = this.match(FlinkSqlParser.KW_MAP); + localContext._colType = this.match(FlinkSqlParser.KW_MAP); this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -2940,7 +2943,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 7); { this.state = 713; - localContext._type_ = this.match(FlinkSqlParser.KW_ROW); + localContext._colType = this.match(FlinkSqlParser.KW_ROW); this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -2957,7 +2960,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 8); { this.state = 717; - localContext._type_ = this.match(FlinkSqlParser.KW_RAW); + localContext._colType = this.match(FlinkSqlParser.KW_RAW); this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -3287,63 +3290,37 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public commentSpec(): CommentSpecContext { - let localContext = new CommentSpecContext(this.context, this.state); - this.enterRule(localContext, 72, FlinkSqlParser.RULE_commentSpec); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 784; - this.match(FlinkSqlParser.KW_COMMENT); - this.state = 785; - 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 metadataColumnDefinition(): MetadataColumnDefinitionContext { let localContext = new MetadataColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 74, FlinkSqlParser.RULE_metadataColumnDefinition); + this.enterRule(localContext, 72, FlinkSqlParser.RULE_metadataColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 787; + this.state = 784; this.columnNameCreate(); - this.state = 788; + this.state = 785; this.columnType(); - this.state = 789; + this.state = 786; this.match(FlinkSqlParser.KW_METADATA); - this.state = 792; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 790; + this.state = 787; this.match(FlinkSqlParser.KW_FROM); - this.state = 791; + this.state = 788; this.metadataKey(); } } - this.state = 795; + this.state = 792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 794; + this.state = 791; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3366,11 +3343,11 @@ export class FlinkSqlParser extends SQLParserBase { } public metadataKey(): MetadataKeyContext { let localContext = new MetadataKeyContext(this.context, this.state); - this.enterRule(localContext, 76, FlinkSqlParser.RULE_metadataKey); + this.enterRule(localContext, 74, FlinkSqlParser.RULE_metadataKey); try { this.enterOuterAlt(localContext, 1); { - this.state = 797; + this.state = 794; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3390,24 +3367,26 @@ export class FlinkSqlParser extends SQLParserBase { } public computedColumnDefinition(): ComputedColumnDefinitionContext { let localContext = new ComputedColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 78, FlinkSqlParser.RULE_computedColumnDefinition); + this.enterRule(localContext, 76, FlinkSqlParser.RULE_computedColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 799; + this.state = 796; this.columnNameCreate(); - this.state = 800; + this.state = 797; this.match(FlinkSqlParser.KW_AS); - this.state = 801; + this.state = 798; this.computedColumnExpression(); - this.state = 803; + this.state = 801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 802; - this.commentSpec(); + this.state = 799; + this.match(FlinkSqlParser.KW_COMMENT); + this.state = 800; + localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3429,11 +3408,11 @@ export class FlinkSqlParser extends SQLParserBase { } public computedColumnExpression(): ComputedColumnExpressionContext { let localContext = new ComputedColumnExpressionContext(this.context, this.state); - this.enterRule(localContext, 80, FlinkSqlParser.RULE_computedColumnExpression); + this.enterRule(localContext, 78, FlinkSqlParser.RULE_computedColumnExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 805; + this.state = 803; this.expression(); } } @@ -3453,19 +3432,19 @@ export class FlinkSqlParser extends SQLParserBase { } public watermarkDefinition(): WatermarkDefinitionContext { let localContext = new WatermarkDefinitionContext(this.context, this.state); - this.enterRule(localContext, 82, FlinkSqlParser.RULE_watermarkDefinition); + this.enterRule(localContext, 80, FlinkSqlParser.RULE_watermarkDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 807; + this.state = 805; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 808; + this.state = 806; this.match(FlinkSqlParser.KW_FOR); - this.state = 809; + this.state = 807; this.columnName(); - this.state = 810; + this.state = 808; this.match(FlinkSqlParser.KW_AS); - this.state = 811; + this.state = 809; this.expression(); } } @@ -3485,32 +3464,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 84, FlinkSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 82, FlinkSqlParser.RULE_tableConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 815; + this.state = 813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 813; + this.state = 811; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 814; + this.state = 812; this.constraintName(); } } - this.state = 817; + this.state = 815; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 818; + this.state = 816; this.match(FlinkSqlParser.KW_KEY); - this.state = 819; + this.state = 817; this.columnNameList(); - this.state = 820; + this.state = 818; this.match(FlinkSqlParser.KW_NOT); - this.state = 821; + this.state = 819; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3530,11 +3509,11 @@ export class FlinkSqlParser extends SQLParserBase { } public constraintName(): ConstraintNameContext { let localContext = new ConstraintNameContext(this.context, this.state); - this.enterRule(localContext, 86, FlinkSqlParser.RULE_constraintName); + this.enterRule(localContext, 84, FlinkSqlParser.RULE_constraintName); try { this.enterOuterAlt(localContext, 1); { - this.state = 823; + this.state = 821; this.identifier(); } } @@ -3554,15 +3533,15 @@ export class FlinkSqlParser extends SQLParserBase { } public selfDefinitionClause(): SelfDefinitionClauseContext { let localContext = new SelfDefinitionClauseContext(this.context, this.state); - this.enterRule(localContext, 88, FlinkSqlParser.RULE_selfDefinitionClause); + this.enterRule(localContext, 86, FlinkSqlParser.RULE_selfDefinitionClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 825; + this.state = 823; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 826; + this.state = 824; this.match(FlinkSqlParser.KW_FOR); - this.state = 827; + this.state = 825; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3582,15 +3561,15 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionDefinition(): PartitionDefinitionContext { let localContext = new PartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 90, FlinkSqlParser.RULE_partitionDefinition); + this.enterRule(localContext, 88, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 829; + this.state = 827; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 830; + this.state = 828; this.match(FlinkSqlParser.KW_BY); - this.state = 831; + this.state = 829; this.transformList(); } } @@ -3610,32 +3589,32 @@ export class FlinkSqlParser extends SQLParserBase { } public transformList(): TransformListContext { let localContext = new TransformListContext(this.context, this.state); - this.enterRule(localContext, 92, FlinkSqlParser.RULE_transformList); + this.enterRule(localContext, 90, FlinkSqlParser.RULE_transformList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 833; + this.state = 831; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 834; + this.state = 832; this.transform(); - this.state = 839; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 835; + this.state = 833; this.match(FlinkSqlParser.COMMA); - this.state = 836; + this.state = 834; this.transform(); } } - this.state = 841; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 842; + this.state = 840; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3655,17 +3634,17 @@ export class FlinkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); + this.enterRule(localContext, 92, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 856; + this.state = 854; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 844; + this.state = 842; this.columnName(); } break; @@ -3673,27 +3652,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 845; + this.state = 843; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 846; + this.state = 844; this.transformArgument(); - this.state = 851; + this.state = 849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 847; + this.state = 845; this.match(FlinkSqlParser.COMMA); - this.state = 848; + this.state = 846; this.transformArgument(); } } - this.state = 853; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 854; + this.state = 852; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3715,22 +3694,22 @@ export class FlinkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 94, FlinkSqlParser.RULE_transformArgument); try { - this.state = 860; + this.state = 858; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 858; + this.state = 856; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 859; + this.state = 857; this.constant(); } break; @@ -3752,37 +3731,37 @@ export class FlinkSqlParser extends SQLParserBase { } public likeDefinition(): LikeDefinitionContext { let localContext = new LikeDefinitionContext(this.context, this.state); - this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeDefinition); + this.enterRule(localContext, 96, FlinkSqlParser.RULE_likeDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 862; + this.state = 860; this.match(FlinkSqlParser.KW_LIKE); - this.state = 863; + this.state = 861; this.tablePath(); - this.state = 872; + this.state = 870; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 864; + this.state = 862; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 868; + this.state = 866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 266 || _la === 455 || _la === 462) { { { - this.state = 865; + this.state = 863; this.likeOption(); } } - this.state = 870; + this.state = 868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 871; + this.state = 869; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3805,17 +3784,17 @@ export class FlinkSqlParser extends SQLParserBase { } public likeOption(): LikeOptionContext { let localContext = new LikeOptionContext(this.context, this.state); - this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); + this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 878; + this.state = 876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 874; + this.state = 872; _la = this.tokenStream.LA(1); if(!(_la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3824,7 +3803,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 875; + this.state = 873; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 270 || _la === 444)) { this.errorHandler.recoverInline(this); @@ -3840,7 +3819,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 876; + this.state = 874; _la = this.tokenStream.LA(1); if(!(_la === 266 || _la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3849,7 +3828,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 877; + this.state = 875; _la = this.tokenStream.LA(1); if(!(_la === 425 || _la === 458 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -3879,17 +3858,17 @@ export class FlinkSqlParser extends SQLParserBase { } public createCatalog(): CreateCatalogContext { let localContext = new CreateCatalogContext(this.context, this.state); - this.enterRule(localContext, 102, FlinkSqlParser.RULE_createCatalog); + this.enterRule(localContext, 100, FlinkSqlParser.RULE_createCatalog); try { this.enterOuterAlt(localContext, 1); { - this.state = 880; + this.state = 878; this.match(FlinkSqlParser.KW_CREATE); - this.state = 881; + this.state = 879; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 882; + this.state = 880; this.catalogPathCreate(); - this.state = 883; + this.state = 881; this.withOption(); } } @@ -3909,38 +3888,40 @@ export class FlinkSqlParser extends SQLParserBase { } public createDatabase(): CreateDatabaseContext { let localContext = new CreateDatabaseContext(this.context, this.state); - this.enterRule(localContext, 104, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localContext, 102, FlinkSqlParser.RULE_createDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 885; + this.state = 883; this.match(FlinkSqlParser.KW_CREATE); - this.state = 886; + this.state = 884; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 888; + this.state = 886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 887; + this.state = 885; this.ifNotExists(); } } - this.state = 890; + this.state = 888; this.databasePathCreate(); - this.state = 892; + this.state = 891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 891; - this.commentSpec(); + this.state = 889; + this.match(FlinkSqlParser.KW_COMMENT); + this.state = 890; + localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 894; + this.state = 893; this.withOption(); } } @@ -3960,43 +3941,43 @@ export class FlinkSqlParser extends SQLParserBase { } public createView(): CreateViewContext { let localContext = new CreateViewContext(this.context, this.state); - this.enterRule(localContext, 106, FlinkSqlParser.RULE_createView); + this.enterRule(localContext, 104, FlinkSqlParser.RULE_createView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 896; + this.state = 895; this.match(FlinkSqlParser.KW_CREATE); - this.state = 898; + this.state = 897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 897; + this.state = 896; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 900; + this.state = 899; this.match(FlinkSqlParser.KW_VIEW); - this.state = 902; + this.state = 901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 901; + this.state = 900; this.ifNotExists(); } } - this.state = 904; + this.state = 903; this.viewPathCreate(); - this.state = 906; + this.state = 905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 905; + this.state = 904; this.columnNameList(); } } @@ -4006,8 +3987,10 @@ export class FlinkSqlParser extends SQLParserBase { _la = this.tokenStream.LA(1); if (_la === 59) { { + this.state = 907; + this.match(FlinkSqlParser.KW_COMMENT); this.state = 908; - this.commentSpec(); + localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4033,7 +4016,7 @@ export class FlinkSqlParser extends SQLParserBase { } public createFunction(): CreateFunctionContext { let localContext = new CreateFunctionContext(this.context, this.state); - this.enterRule(localContext, 108, FlinkSqlParser.RULE_createFunction); + this.enterRule(localContext, 106, FlinkSqlParser.RULE_createFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4123,7 +4106,7 @@ export class FlinkSqlParser extends SQLParserBase { } public usingClause(): UsingClauseContext { let localContext = new UsingClauseContext(this.context, this.state); - this.enterRule(localContext, 110, FlinkSqlParser.RULE_usingClause); + this.enterRule(localContext, 108, FlinkSqlParser.RULE_usingClause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4170,7 +4153,7 @@ export class FlinkSqlParser extends SQLParserBase { } public jarFileName(): JarFileNameContext { let localContext = new JarFileNameContext(this.context, this.state); - this.enterRule(localContext, 112, FlinkSqlParser.RULE_jarFileName); + this.enterRule(localContext, 110, FlinkSqlParser.RULE_jarFileName); try { this.enterOuterAlt(localContext, 1); { @@ -4194,7 +4177,7 @@ export class FlinkSqlParser extends SQLParserBase { } public alterTable(): AlterTableContext { let localContext = new AlterTableContext(this.context, this.state); - this.enterRule(localContext, 114, FlinkSqlParser.RULE_alterTable); + this.enterRule(localContext, 112, FlinkSqlParser.RULE_alterTable); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4267,7 +4250,7 @@ export class FlinkSqlParser extends SQLParserBase { } public renameDefinition(): RenameDefinitionContext { let localContext = new RenameDefinitionContext(this.context, this.state); - this.enterRule(localContext, 116, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localContext, 114, FlinkSqlParser.RULE_renameDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4306,7 +4289,7 @@ export class FlinkSqlParser extends SQLParserBase { } public setKeyValueDefinition(): SetKeyValueDefinitionContext { let localContext = new SetKeyValueDefinitionContext(this.context, this.state); - this.enterRule(localContext, 118, FlinkSqlParser.RULE_setKeyValueDefinition); + this.enterRule(localContext, 116, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localContext, 1); { @@ -4332,7 +4315,7 @@ export class FlinkSqlParser extends SQLParserBase { } public addConstraint(): AddConstraintContext { let localContext = new AddConstraintContext(this.context, this.state); - this.enterRule(localContext, 120, FlinkSqlParser.RULE_addConstraint); + this.enterRule(localContext, 118, FlinkSqlParser.RULE_addConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4377,7 +4360,7 @@ export class FlinkSqlParser extends SQLParserBase { } public dropConstraint(): DropConstraintContext { let localContext = new DropConstraintContext(this.context, this.state); - this.enterRule(localContext, 122, FlinkSqlParser.RULE_dropConstraint); + this.enterRule(localContext, 120, FlinkSqlParser.RULE_dropConstraint); try { this.enterOuterAlt(localContext, 1); { @@ -4405,7 +4388,7 @@ export class FlinkSqlParser extends SQLParserBase { } public addUnique(): AddUniqueContext { let localContext = new AddUniqueContext(this.context, this.state); - this.enterRule(localContext, 124, FlinkSqlParser.RULE_addUnique); + this.enterRule(localContext, 122, FlinkSqlParser.RULE_addUnique); try { this.enterOuterAlt(localContext, 1); { @@ -4433,7 +4416,7 @@ export class FlinkSqlParser extends SQLParserBase { } public notForced(): NotForcedContext { let localContext = new NotForcedContext(this.context, this.state); - this.enterRule(localContext, 126, FlinkSqlParser.RULE_notForced); + this.enterRule(localContext, 124, FlinkSqlParser.RULE_notForced); try { this.enterOuterAlt(localContext, 1); { @@ -4459,7 +4442,7 @@ export class FlinkSqlParser extends SQLParserBase { } public alertView(): AlertViewContext { let localContext = new AlertViewContext(this.context, this.state); - this.enterRule(localContext, 128, FlinkSqlParser.RULE_alertView); + this.enterRule(localContext, 126, FlinkSqlParser.RULE_alertView); try { this.enterOuterAlt(localContext, 1); { @@ -4507,7 +4490,7 @@ export class FlinkSqlParser extends SQLParserBase { } public alterDatabase(): AlterDatabaseContext { let localContext = new AlterDatabaseContext(this.context, this.state); - this.enterRule(localContext, 130, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localContext, 128, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localContext, 1); { @@ -4537,7 +4520,7 @@ export class FlinkSqlParser extends SQLParserBase { } public alterFunction(): AlterFunctionContext { let localContext = new AlterFunctionContext(this.context, this.state); - this.enterRule(localContext, 132, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localContext, 130, FlinkSqlParser.RULE_alterFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4617,7 +4600,7 @@ export class FlinkSqlParser extends SQLParserBase { } public dropCatalog(): DropCatalogContext { let localContext = new DropCatalogContext(this.context, this.state); - this.enterRule(localContext, 134, FlinkSqlParser.RULE_dropCatalog); + this.enterRule(localContext, 132, FlinkSqlParser.RULE_dropCatalog); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4656,7 +4639,7 @@ export class FlinkSqlParser extends SQLParserBase { } public dropTable(): DropTableContext { let localContext = new DropTableContext(this.context, this.state); - this.enterRule(localContext, 136, FlinkSqlParser.RULE_dropTable); + this.enterRule(localContext, 134, FlinkSqlParser.RULE_dropTable); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4705,7 +4688,7 @@ export class FlinkSqlParser extends SQLParserBase { } public dropDatabase(): DropDatabaseContext { let localContext = new DropDatabaseContext(this.context, this.state); - this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localContext, 136, FlinkSqlParser.RULE_dropDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4762,7 +4745,7 @@ export class FlinkSqlParser extends SQLParserBase { } public dropView(): DropViewContext { let localContext = new DropViewContext(this.context, this.state); - this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropView); + this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropView); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4811,7 +4794,7 @@ export class FlinkSqlParser extends SQLParserBase { } public dropFunction(): DropFunctionContext { let localContext = new DropFunctionContext(this.context, this.state); - this.enterRule(localContext, 142, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropFunction); try { this.enterOuterAlt(localContext, 1); { @@ -4867,7 +4850,7 @@ export class FlinkSqlParser extends SQLParserBase { } public insertStatement(): InsertStatementContext { let localContext = new InsertStatementContext(this.context, this.state); - this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localContext, 142, FlinkSqlParser.RULE_insertStatement); let _la: number; try { this.state = 1075; @@ -4928,7 +4911,7 @@ export class FlinkSqlParser extends SQLParserBase { } public insertSimpleStatement(): InsertSimpleStatementContext { let localContext = new InsertSimpleStatementContext(this.context, this.state); - this.enterRule(localContext, 146, FlinkSqlParser.RULE_insertSimpleStatement); + this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertSimpleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5000,7 +4983,7 @@ export class FlinkSqlParser extends SQLParserBase { } public insertPartitionDefinition(): InsertPartitionDefinitionContext { let localContext = new InsertPartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 148, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localContext, 146, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localContext, 1); { @@ -5026,7 +5009,7 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesDefinition(): ValuesDefinitionContext { let localContext = new ValuesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 150, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localContext, 148, FlinkSqlParser.RULE_valuesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5069,7 +5052,7 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesRowDefinition(): ValuesRowDefinitionContext { let localContext = new ValuesRowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 152, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localContext, 150, FlinkSqlParser.RULE_valuesRowDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5114,7 +5097,7 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatementCompatibility(): InsertMulStatementCompatibilityContext { let localContext = new InsertMulStatementCompatibilityContext(this.context, this.state); - this.enterRule(localContext, 154, FlinkSqlParser.RULE_insertMulStatementCompatibility); + this.enterRule(localContext, 152, FlinkSqlParser.RULE_insertMulStatementCompatibility); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5163,7 +5146,7 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatement(): InsertMulStatementContext { let localContext = new InsertMulStatementContext(this.context, this.state); - this.enterRule(localContext, 156, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localContext, 154, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5220,8 +5203,8 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryStatementContext(this.context, parentState); let previousContext = localContext; - let _startState = 158; - this.enterRecursionRule(localContext, 158, FlinkSqlParser.RULE_queryStatement, _p); + let _startState = 156; + this.enterRecursionRule(localContext, 156, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let alternative: number; @@ -5393,7 +5376,7 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesCaluse(): ValuesCaluseContext { let localContext = new ValuesCaluseContext(this.context, this.state); - this.enterRule(localContext, 160, FlinkSqlParser.RULE_valuesCaluse); + this.enterRule(localContext, 158, FlinkSqlParser.RULE_valuesCaluse); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5438,7 +5421,7 @@ export class FlinkSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 162, FlinkSqlParser.RULE_withClause); + this.enterRule(localContext, 160, FlinkSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5481,7 +5464,7 @@ export class FlinkSqlParser extends SQLParserBase { } public withItem(): WithItemContext { let localContext = new WithItemContext(this.context, this.state); - this.enterRule(localContext, 164, FlinkSqlParser.RULE_withItem); + this.enterRule(localContext, 162, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5544,7 +5527,7 @@ export class FlinkSqlParser extends SQLParserBase { } public withItemName(): WithItemNameContext { let localContext = new WithItemNameContext(this.context, this.state); - this.enterRule(localContext, 166, FlinkSqlParser.RULE_withItemName); + this.enterRule(localContext, 164, FlinkSqlParser.RULE_withItemName); try { this.enterOuterAlt(localContext, 1); { @@ -5568,7 +5551,7 @@ export class FlinkSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localContext, 166, FlinkSqlParser.RULE_selectStatement); try { this.state = 1239; this.errorHandler.sync(this); @@ -5659,7 +5642,7 @@ export class FlinkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectClause); + this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5728,7 +5711,7 @@ export class FlinkSqlParser extends SQLParserBase { } public projectItemDefinition(): ProjectItemDefinitionContext { let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 172, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localContext, 170, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { this.state = 1271; @@ -5813,7 +5796,7 @@ export class FlinkSqlParser extends SQLParserBase { } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 172, FlinkSqlParser.RULE_overWindowItem); try { this.state = 1285; this.errorHandler.sync(this); @@ -5866,7 +5849,7 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 176, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { @@ -5902,8 +5885,8 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 178; - this.enterRecursionRule(localContext, 178, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 176; + this.enterRecursionRule(localContext, 176, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; @@ -6065,7 +6048,7 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 180, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 178, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { @@ -6099,12 +6082,12 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 180, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1382; + this.state = 1370; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -6130,133 +6113,93 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1342; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { - case 1: - { - this.state = 1339; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 17) { - { - this.state = 1338; - this.match(FlinkSqlParser.KW_AS); - } - } - - this.state = 1341; - this.correlationName(); - } - break; - } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1344; + this.state = 1338; this.viewPath(); - this.state = 1346; + this.state = 1340; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: { - this.state = 1345; + this.state = 1339; this.systemTimePeriod(); } break; } - this.state = 1352; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { - case 1: - { - this.state = 1349; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 17) { - { - this.state = 1348; - this.match(FlinkSqlParser.KW_AS); - } - } - - this.state = 1351; - this.correlationName(); - } - break; - } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1354; + this.state = 1342; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1355; + this.state = 1343; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1356; + this.state = 1344; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1357; + this.state = 1345; this.functionName(); - this.state = 1358; + this.state = 1346; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1359; + this.state = 1347; this.functionParam(); - this.state = 1364; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1360; + this.state = 1348; this.match(FlinkSqlParser.COMMA); - this.state = 1361; + this.state = 1349; this.functionParam(); } } - this.state = 1366; + this.state = 1354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1367; + this.state = 1355; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1368; + this.state = 1356; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1371; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 198) { { - this.state = 1370; + this.state = 1358; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1373; + this.state = 1361; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1374; + this.state = 1362; this.queryStatement(0); - this.state = 1375; + this.state = 1363; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1377; + this.state = 1365; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1378; + this.state = 1366; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1379; + this.state = 1367; this.expression(); - this.state = 1380; + this.state = 1368; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6278,19 +6221,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1372; this.match(FlinkSqlParser.KW_FOR); - this.state = 1385; + this.state = 1373; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1386; + this.state = 1374; this.match(FlinkSqlParser.KW_AS); - this.state = 1387; + this.state = 1375; this.match(FlinkSqlParser.KW_OF); - this.state = 1388; + this.state = 1376; this.dateTimeExpression(); } } @@ -6310,11 +6253,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dateTimeExpression(): DateTimeExpressionContext { let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1390; + this.state = 1378; this.expression(); } } @@ -6334,17 +6277,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1380; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1393; + this.state = 1381; this.valuesDefinition(); - this.state = 1394; + this.state = 1382; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1395; + this.state = 1383; this.tableAlias(); } } @@ -6364,17 +6307,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windoTVFClause(): WindoTVFClauseContext { let localContext = new WindoTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_windoTVFClause); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_windoTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1397; + this.state = 1385; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1398; + this.state = 1386; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1399; + this.state = 1387; this.windowTVFExression(); - this.state = 1400; + this.state = 1388; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6394,34 +6337,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExression(): WindowTVFExressionContext { let localContext = new WindowTVFExressionContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_windowTVFExression); + this.enterRule(localContext, 190, FlinkSqlParser.RULE_windowTVFExression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1390; this.windoTVFName(); - this.state = 1403; + this.state = 1391; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1404; + this.state = 1392; this.windowTVFParam(); - this.state = 1409; + this.state = 1397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1405; + this.state = 1393; this.match(FlinkSqlParser.COMMA); - this.state = 1406; + this.state = 1394; this.windowTVFParam(); } } - this.state = 1411; + this.state = 1399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1412; + this.state = 1400; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6441,12 +6384,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windoTVFName(): WindoTVFNameContext { let localContext = new WindoTVFNameContext(this.context, this.state); - this.enterRule(localContext, 194, FlinkSqlParser.RULE_windoTVFName); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_windoTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1414; + this.state = 1402; _la = this.tokenStream.LA(1); if(!(_la === 445 || _la === 459 || _la === 499)) { this.errorHandler.recoverInline(this); @@ -6473,66 +6416,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1431; + this.state = 1419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1404; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1417; + this.state = 1405; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1418; + this.state = 1406; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1419; + this.state = 1407; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1420; + this.state = 1408; this.match(FlinkSqlParser.KW_DATA); - this.state = 1421; + this.state = 1409; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1422; + this.state = 1410; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1423; + this.state = 1411; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1424; + this.state = 1412; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1425; + this.state = 1413; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1426; + this.state = 1414; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1427; + this.state = 1415; this.timeIntervalParamName(); - this.state = 1428; + this.state = 1416; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1429; + this.state = 1417; this.timeIntervalExpression(); } break; @@ -6554,12 +6497,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 198, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1433; + this.state = 1421; _la = this.tokenStream.LA(1); if(!(_la === 250 || _la === 446 || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6586,17 +6529,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 198, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1435; + this.state = 1423; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1436; + this.state = 1424; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1437; + this.state = 1425; this.columnName(); - this.state = 1438; + this.state = 1426; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6616,26 +6559,26 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1444; + this.state = 1432; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1440; + this.state = 1428; this.match(FlinkSqlParser.KW_ON); - this.state = 1441; + this.state = 1429; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1442; + this.state = 1430; this.match(FlinkSqlParser.KW_USING); - this.state = 1443; + this.state = 1431; this.columnNameList(); } break; @@ -6659,13 +6602,13 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1446; + this.state = 1434; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1447; + this.state = 1435; this.booleanExpression(0); } } @@ -6685,34 +6628,34 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1449; + this.state = 1437; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1450; + this.state = 1438; this.match(FlinkSqlParser.KW_BY); - this.state = 1451; + this.state = 1439; this.groupItemDefinition(); - this.state = 1456; + this.state = 1444; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1452; + this.state = 1440; this.match(FlinkSqlParser.COMMA); - this.state = 1453; + this.state = 1441; this.groupItemDefinition(); } } } - this.state = 1458; + this.state = 1446; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); } } } @@ -6732,124 +6675,124 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1499; + this.state = 1487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1447; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1460; + this.state = 1448; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1461; + this.state = 1449; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1462; + this.state = 1450; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1463; + this.state = 1451; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1464; + this.state = 1452; this.expression(); - this.state = 1469; + this.state = 1457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1465; + this.state = 1453; this.match(FlinkSqlParser.COMMA); - this.state = 1466; + this.state = 1454; this.expression(); } } - this.state = 1471; + this.state = 1459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1472; + this.state = 1460; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1474; + this.state = 1462; this.groupingSetsNotaionName(); - this.state = 1475; + this.state = 1463; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1464; this.expression(); - this.state = 1481; + this.state = 1469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1477; + this.state = 1465; this.match(FlinkSqlParser.COMMA); - this.state = 1478; + this.state = 1466; this.expression(); } } - this.state = 1483; + this.state = 1471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1484; + this.state = 1472; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1486; + this.state = 1474; this.groupingSets(); - this.state = 1487; + this.state = 1475; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1488; + this.state = 1476; this.groupItemDefinition(); - this.state = 1493; + this.state = 1481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1489; + this.state = 1477; this.match(FlinkSqlParser.COMMA); - this.state = 1490; + this.state = 1478; this.groupItemDefinition(); } } - this.state = 1495; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1496; + this.state = 1484; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1498; + this.state = 1486; this.expression(); } break; @@ -6871,13 +6814,13 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSets(): GroupingSetsContext { let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localContext, 1); { - this.state = 1501; + this.state = 1489; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1502; + this.state = 1490; this.match(FlinkSqlParser.KW_SETS); } } @@ -6897,12 +6840,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSetsNotaionName(): GroupingSetsNotaionNameContext { let localContext = new GroupingSetsNotaionNameContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupingSetsNotaionName); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupingSetsNotaionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1504; + this.state = 1492; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -6929,21 +6872,21 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1506; + this.state = 1494; this.groupWindowFunctionName(); - this.state = 1507; + this.state = 1495; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1508; + this.state = 1496; this.timeAttrColumn(); - this.state = 1509; + this.state = 1497; this.match(FlinkSqlParser.COMMA); - this.state = 1510; + this.state = 1498; this.timeIntervalExpression(); - this.state = 1511; + this.state = 1499; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6963,12 +6906,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1513; + this.state = 1501; _la = this.tokenStream.LA(1); if(!(_la === 459 || _la === 492 || _la === 499)) { this.errorHandler.recoverInline(this); @@ -6995,11 +6938,11 @@ export class FlinkSqlParser extends SQLParserBase { } public timeAttrColumn(): TimeAttrColumnContext { let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1503; this.uid(); } } @@ -7019,13 +6962,13 @@ export class FlinkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1505; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1518; + this.state = 1506; this.booleanExpression(0); } } @@ -7045,32 +6988,32 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1520; + this.state = 1508; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1521; + this.state = 1509; this.namedWindow(); - this.state = 1526; + this.state = 1514; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 166, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1522; + this.state = 1510; this.match(FlinkSqlParser.COMMA); - this.state = 1523; + this.state = 1511; this.namedWindow(); } } } - this.state = 1528; + this.state = 1516; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 166, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); } } } @@ -7090,15 +7033,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1517; localContext._name = this.errorCapturingIdentifier(); - this.state = 1530; + this.state = 1518; this.match(FlinkSqlParser.KW_AS); - this.state = 1531; + this.state = 1519; this.windowSpec(); } } @@ -7118,54 +7061,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1534; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { { - this.state = 1533; + this.state = 1521; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1536; + this.state = 1524; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1538; + this.state = 1526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1537; + this.state = 1525; this.partitionByClause(); } } - this.state = 1541; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1540; + this.state = 1528; this.orderByCaluse(); } } - this.state = 1544; + this.state = 1532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 322) { { - this.state = 1543; + this.state = 1531; this.windowFrame(); } } - this.state = 1546; + this.state = 1534; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7185,95 +7128,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1548; + this.state = 1536; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1549; + this.state = 1537; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1551; + this.state = 1539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1550; + this.state = 1538; this.partitionByClause(); } } - this.state = 1554; + this.state = 1542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1553; + this.state = 1541; this.orderByCaluse(); } } - this.state = 1557; + this.state = 1545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1556; + this.state = 1544; this.measuresClause(); } } - this.state = 1560; + this.state = 1548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 254) { { - this.state = 1559; + this.state = 1547; this.outputMode(); } } - this.state = 1563; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438) { { - this.state = 1562; + this.state = 1550; this.afterMatchStrategy(); } } - this.state = 1566; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 271) { { - this.state = 1565; + this.state = 1553; this.patternDefination(); } } - this.state = 1568; + this.state = 1556; this.patternVariablesDefination(); - this.state = 1569; + this.state = 1557; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1574; + this.state = 1562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 1571; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1570; + this.state = 1558; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1573; + this.state = 1561; this.identifier(); } break; @@ -7296,34 +7239,34 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByCaluse(): OrderByCaluseContext { let localContext = new OrderByCaluseContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderByCaluse); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_orderByCaluse); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1576; + this.state = 1564; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1577; + this.state = 1565; this.match(FlinkSqlParser.KW_BY); - this.state = 1578; + this.state = 1566; this.orderItemDefition(); - this.state = 1583; + this.state = 1571; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 179, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 175, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1579; + this.state = 1567; this.match(FlinkSqlParser.COMMA); - this.state = 1580; + this.state = 1568; this.orderItemDefition(); } } } - this.state = 1585; + this.state = 1573; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 179, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 175, this.context); } } } @@ -7343,19 +7286,19 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefition(): OrderItemDefitionContext { let localContext = new OrderItemDefitionContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_orderItemDefition); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderItemDefition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1586; + this.state = 1574; this.columnName(); - this.state = 1588; + this.state = 1576; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - this.state = 1587; + this.state = 1575; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 439 || _la === 450)) { @@ -7368,14 +7311,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1592; + this.state = 1580; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1590; + this.state = 1578; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1591; + this.state = 1579; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 457 || _la === 467)) { @@ -7406,18 +7349,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1582; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1597; + this.state = 1585; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1595; + this.state = 1583; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7573,7 +7516,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1596; + this.state = 1584; localContext._limit = this.expression(); } break; @@ -7598,30 +7541,30 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1599; + this.state = 1587; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1600; + this.state = 1588; this.match(FlinkSqlParser.KW_BY); - this.state = 1601; + this.state = 1589; this.columnName(); - this.state = 1606; + this.state = 1594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1602; + this.state = 1590; this.match(FlinkSqlParser.COMMA); - this.state = 1603; + this.state = 1591; this.columnName(); } } - this.state = 1608; + this.state = 1596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7643,16 +7586,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1625; + this.state = 1613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1609; + this.state = 1597; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7661,7 +7604,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1610; + this.state = 1598; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7670,7 +7613,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1611; + this.state = 1599; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7679,15 +7622,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1612; + this.state = 1600; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1613; + this.state = 1601; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1614; + this.state = 1602; this.match(FlinkSqlParser.COMMA); - this.state = 1615; + this.state = 1603; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1616; + this.state = 1604; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7696,13 +7639,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1617; + this.state = 1605; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1618; + this.state = 1606; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1619; + this.state = 1607; this.match(FlinkSqlParser.COMMA); - this.state = 1620; + this.state = 1608; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7711,13 +7654,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1621; + this.state = 1609; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1622; + this.state = 1610; this.match(FlinkSqlParser.COMMA); - this.state = 1623; + this.state = 1611; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1624; + this.state = 1612; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7740,28 +7683,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1627; + this.state = 1615; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1628; + this.state = 1616; this.projectItemDefinition(); - this.state = 1633; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1629; + this.state = 1617; this.match(FlinkSqlParser.COMMA); - this.state = 1630; + this.state = 1618; this.projectItemDefinition(); } } - this.state = 1635; + this.state = 1623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7783,37 +7726,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefination(): PatternDefinationContext { let localContext = new PatternDefinationContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternDefination); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_patternDefination); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1636; + this.state = 1624; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1637; + this.state = 1625; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1639; + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1638; + this.state = 1626; this.patternVariable(); } } - this.state = 1641; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 538 || _la === 541); - this.state = 1643; + this.state = 1631; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1645; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434) { { - this.state = 1644; + this.state = 1632; this.withinClause(); } } @@ -7836,19 +7779,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1635; this.unquotedIdentifier(); - this.state = 1649; + this.state = 1637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 518)) & ~0x1F) === 0 && ((1 << (_la - 518)) & 135681) !== 0)) { { - this.state = 1648; + this.state = 1636; this.quantifiers(); } } @@ -7871,34 +7814,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_outputMode); try { - this.state = 1659; + this.state = 1647; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1651; + this.state = 1639; this.match(FlinkSqlParser.KW_ALL); - this.state = 1652; + this.state = 1640; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1653; + this.state = 1641; this.match(FlinkSqlParser.KW_PER); - this.state = 1654; + this.state = 1642; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1655; + this.state = 1643; this.match(FlinkSqlParser.KW_ONE); - this.state = 1656; + this.state = 1644; this.match(FlinkSqlParser.KW_ROW); - this.state = 1657; + this.state = 1645; this.match(FlinkSqlParser.KW_PER); - this.state = 1658; + this.state = 1646; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7922,76 +7865,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1685; + this.state = 1673; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1649; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1662; + this.state = 1650; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1663; + this.state = 1651; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1664; + this.state = 1652; this.match(FlinkSqlParser.KW_PAST); - this.state = 1665; + this.state = 1653; this.match(FlinkSqlParser.KW_LAST); - this.state = 1666; + this.state = 1654; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1667; + this.state = 1655; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1668; + this.state = 1656; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1669; + this.state = 1657; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1670; + this.state = 1658; this.match(FlinkSqlParser.KW_TO); - this.state = 1671; + this.state = 1659; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1672; + this.state = 1660; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1673; + this.state = 1661; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1674; + this.state = 1662; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1675; + this.state = 1663; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1676; + this.state = 1664; this.match(FlinkSqlParser.KW_TO); - this.state = 1677; + this.state = 1665; this.match(FlinkSqlParser.KW_LAST); - this.state = 1678; + this.state = 1666; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1679; + this.state = 1667; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1680; + this.state = 1668; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1681; + this.state = 1669; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1682; + this.state = 1670; this.match(FlinkSqlParser.KW_TO); - this.state = 1683; + this.state = 1671; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1684; + this.state = 1672; this.unquotedIdentifier(); } break; @@ -8013,28 +7956,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefination(): PatternVariablesDefinationContext { let localContext = new PatternVariablesDefinationContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_patternVariablesDefination); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_patternVariablesDefination); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1687; + this.state = 1675; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1688; + this.state = 1676; this.projectItemDefinition(); - this.state = 1693; + this.state = 1681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1689; + this.state = 1677; this.match(FlinkSqlParser.COMMA); - this.state = 1690; + this.state = 1678; this.projectItemDefinition(); } } - this.state = 1695; + this.state = 1683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8056,34 +7999,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1705; + this.state = 1693; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1696; + this.state = 1684; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1697; + this.state = 1685; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1698; + this.state = 1686; this.timeIntervalExpression(); - this.state = 1699; + this.state = 1687; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1701; + this.state = 1689; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1702; + this.state = 1690; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1703; + this.state = 1691; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1704; + this.state = 1692; this.frameBound(); } break; @@ -8107,17 +8050,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1695; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1708; + this.state = 1696; this.match(FlinkSqlParser.KW_AND); - this.state = 1709; + this.state = 1697; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1710; + this.state = 1698; this.match(FlinkSqlParser.KW_ROW); } } @@ -8137,13 +8080,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1712; + this.state = 1700; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1713; + this.state = 1701; this.timeIntervalExpression(); } } @@ -8163,11 +8106,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1715; + this.state = 1703; this.booleanExpression(0); } } @@ -8197,25 +8140,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 260; - this.enterRecursionRule(localContext, 260, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 258; + this.enterRecursionRule(localContext, 258, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1729; + this.state = 1717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1718; + this.state = 1706; this.match(FlinkSqlParser.KW_NOT); - this.state = 1719; + this.state = 1707; this.booleanExpression(6); } break; @@ -8224,13 +8167,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1720; + this.state = 1708; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1721; + this.state = 1709; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1722; + this.state = 1710; this.queryStatement(0); - this.state = 1723; + this.state = 1711; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8239,14 +8182,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1725; + this.state = 1713; this.valueExpression(0); - this.state = 1727; + this.state = 1715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 1726; + this.state = 1714; this.predicate(); } break; @@ -8255,9 +8198,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1745; + this.state = 1733; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 193, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8265,21 +8208,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1743; + this.state = 1731; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1731; + this.state = 1719; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1732; + this.state = 1720; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1733; + this.state = 1721; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8288,13 +8231,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 = 1734; + this.state = 1722; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1735; + this.state = 1723; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1736; + this.state = 1724; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8302,23 +8245,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1737; + this.state = 1725; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1738; + this.state = 1726; this.match(FlinkSqlParser.KW_IS); - this.state = 1740; + this.state = 1728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1739; + this.state = 1727; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1742; + this.state = 1730; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 244 || _la === 397 || _la === 404)) { @@ -8333,9 +8276,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1747; + this.state = 1735; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 193, this.context); } } } @@ -8355,33 +8298,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1815; + this.state = 1803; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1749; + this.state = 1737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1748; + this.state = 1736; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1751; + this.state = 1739; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1753; + this.state = 1741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 369) { { - this.state = 1752; + this.state = 1740; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -8393,131 +8336,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1755; + this.state = 1743; localContext._lower = this.valueExpression(0); - this.state = 1756; + this.state = 1744; this.match(FlinkSqlParser.KW_AND); - this.state = 1757; + this.state = 1745; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1760; + this.state = 1748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1759; + this.state = 1747; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1762; + this.state = 1750; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1763; + this.state = 1751; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1764; + this.state = 1752; this.expression(); - this.state = 1769; + this.state = 1757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1765; + this.state = 1753; this.match(FlinkSqlParser.COMMA); - this.state = 1766; + this.state = 1754; this.expression(); } } - this.state = 1771; + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1772; + this.state = 1760; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1775; + this.state = 1763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1774; + this.state = 1762; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1777; + this.state = 1765; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1778; + this.state = 1766; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1779; + this.state = 1767; this.queryStatement(0); - this.state = 1780; + this.state = 1768; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1782; + this.state = 1770; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1783; + this.state = 1771; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1784; + this.state = 1772; this.queryStatement(0); - this.state = 1785; + this.state = 1773; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1788; + this.state = 1776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1787; + this.state = 1775; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1790; + this.state = 1778; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1791; + this.state = 1779; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1792; + this.state = 1780; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1793; + this.state = 1781; this.match(FlinkSqlParser.KW_IS); - this.state = 1795; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1794; + this.state = 1782; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1797; + this.state = 1785; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 244 || _la === 397 || _la === 404)) { @@ -8532,53 +8475,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1798; + this.state = 1786; this.match(FlinkSqlParser.KW_IS); - this.state = 1800; + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1799; + this.state = 1787; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1802; + this.state = 1790; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1803; + this.state = 1791; this.match(FlinkSqlParser.KW_FROM); - this.state = 1804; + this.state = 1792; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1806; + this.state = 1794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1805; + this.state = 1793; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1808; + this.state = 1796; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1809; + this.state = 1797; this.match(FlinkSqlParser.KW_TO); - this.state = 1810; + this.state = 1798; localContext._right = this.valueExpression(0); - this.state = 1813; + this.state = 1801; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 1811; + this.state = 1799; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1812; + this.state = 1800; this.stringLiteral(); } break; @@ -8603,28 +8546,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1846; + this.state = 1834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1818; + this.state = 1806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1817; + this.state = 1805; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1820; + this.state = 1808; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1821; + this.state = 1809; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8634,40 +8577,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1835; + this.state = 1823; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 1822; + this.state = 1810; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1823; + this.state = 1811; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1824; + this.state = 1812; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1825; + this.state = 1813; this.expression(); - this.state = 1830; + this.state = 1818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1826; + this.state = 1814; this.match(FlinkSqlParser.COMMA); - this.state = 1827; + this.state = 1815; this.expression(); } } - this.state = 1832; + this.state = 1820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1833; + this.state = 1821; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8677,28 +8620,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1838; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1837; + this.state = 1825; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1840; + this.state = 1828; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1841; + this.state = 1829; localContext._pattern = this.valueExpression(0); - this.state = 1844; + this.state = 1832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 1842; + this.state = 1830; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1843; + this.state = 1831; this.stringLiteral(); } break; @@ -8733,23 +8676,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 266; - this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 264; + this.enterRecursionRule(localContext, 264, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1852; + this.state = 1840; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1849; + this.state = 1837; this.primaryExpression(0); } break; @@ -8758,7 +8701,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1850; + this.state = 1838; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3145729) !== 0))) { @@ -8768,15 +8711,15 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1851; + this.state = 1839; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1875; + this.state = 1863; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 213, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8784,19 +8727,19 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1873; + this.state = 1861; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1854; + this.state = 1842; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1855; + this.state = 1843; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 145) !== 0))) { @@ -8806,7 +8749,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1856; + this.state = 1844; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8815,11 +8758,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 = 1857; + this.state = 1845; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1858; + this.state = 1846; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 11) !== 0))) { @@ -8829,7 +8772,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1859; + this.state = 1847; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8838,13 +8781,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 = 1860; + this.state = 1848; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1861; + this.state = 1849; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1862; + this.state = 1850; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8853,13 +8796,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 = 1863; + this.state = 1851; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1864; + this.state = 1852; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1865; + this.state = 1853; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8868,13 +8811,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 = 1866; + this.state = 1854; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1867; + this.state = 1855; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1868; + this.state = 1856; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8883,22 +8826,22 @@ 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 = 1869; + this.state = 1857; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1870; + this.state = 1858; this.comparisonOperator(); - this.state = 1871; + this.state = 1859; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1877; + this.state = 1865; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 213, this.context); } } } @@ -8928,51 +8871,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 268; - this.enterRecursionRule(localContext, 268, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 266; + this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1970; + this.state = 1958; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1879; + this.state = 1867; this.match(FlinkSqlParser.KW_CASE); - this.state = 1881; + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1880; + this.state = 1868; this.whenClause(); } } - this.state = 1883; + this.state = 1871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1887; + this.state = 1875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1885; + this.state = 1873; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1886; + this.state = 1874; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1889; + this.state = 1877; this.match(FlinkSqlParser.KW_END); } break; @@ -8981,37 +8924,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1891; + this.state = 1879; this.match(FlinkSqlParser.KW_CASE); - this.state = 1892; + this.state = 1880; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1894; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1893; + this.state = 1881; this.whenClause(); } } - this.state = 1896; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1900; + this.state = 1888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1898; + this.state = 1886; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1899; + this.state = 1887; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1902; + this.state = 1890; this.match(FlinkSqlParser.KW_END); } break; @@ -9020,17 +8963,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1904; + this.state = 1892; this.match(FlinkSqlParser.KW_CAST); - this.state = 1905; + this.state = 1893; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1906; + this.state = 1894; this.expression(); - this.state = 1907; + this.state = 1895; this.match(FlinkSqlParser.KW_AS); - this.state = 1908; + this.state = 1896; this.columnType(); - this.state = 1909; + this.state = 1897; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9039,25 +8982,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1911; + this.state = 1899; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1912; + this.state = 1900; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1913; + this.state = 1901; this.expression(); - this.state = 1916; + this.state = 1904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1914; + this.state = 1902; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1915; + this.state = 1903; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1918; + this.state = 1906; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9066,25 +9009,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1920; + this.state = 1908; this.match(FlinkSqlParser.KW_LAST); - this.state = 1921; + this.state = 1909; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1922; + this.state = 1910; this.expression(); - this.state = 1925; + this.state = 1913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1923; + this.state = 1911; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1924; + this.state = 1912; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1927; + this.state = 1915; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9093,17 +9036,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1929; + this.state = 1917; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1930; + this.state = 1918; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1931; + this.state = 1919; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1932; + this.state = 1920; this.match(FlinkSqlParser.KW_IN); - this.state = 1933; + this.state = 1921; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1934; + this.state = 1922; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9112,7 +9055,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1936; + this.state = 1924; this.constant(); } break; @@ -9121,7 +9064,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1937; + this.state = 1925; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9130,11 +9073,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1938; + this.state = 1926; this.uid(); - this.state = 1939; + this.state = 1927; this.match(FlinkSqlParser.DOT); - this.state = 1940; + this.state = 1928; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9143,11 +9086,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1942; + this.state = 1930; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1943; + this.state = 1931; this.queryStatement(0); - this.state = 1944; + this.state = 1932; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9156,47 +9099,47 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1946; + this.state = 1934; this.functionName(); - this.state = 1947; + this.state = 1935; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1959; + this.state = 1947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 244224001) !== 0) || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 3892347713) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 3238528833) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4294966785) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 33832959) !== 0) || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 31757) !== 0)) { { - this.state = 1949; + this.state = 1937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1948; + this.state = 1936; this.setQuantifier(); } break; } - this.state = 1951; + this.state = 1939; this.functionParam(); - this.state = 1956; + this.state = 1944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1952; + this.state = 1940; this.match(FlinkSqlParser.COMMA); - this.state = 1953; + this.state = 1941; this.functionParam(); } } - this.state = 1958; + this.state = 1946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1961; + this.state = 1949; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9205,7 +9148,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1963; + this.state = 1951; this.identifier(); } break; @@ -9214,7 +9157,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1964; + this.state = 1952; this.dereferenceDefinition(); } break; @@ -9223,11 +9166,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1965; + this.state = 1953; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1966; + this.state = 1954; this.expression(); - this.state = 1967; + this.state = 1955; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9236,15 +9179,15 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DateFunctionExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1969; + this.state = 1957; this.match(FlinkSqlParser.KW_CURRENT_TIMESTAMP); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1979; + this.state = 1967; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 224, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9256,22 +9199,22 @@ 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 = 1972; + this.state = 1960; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1973; + this.state = 1961; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1974; + this.state = 1962; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 1975; + this.state = 1963; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1981; + this.state = 1969; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 224, this.context); } } } @@ -9291,11 +9234,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1982; + this.state = 1970; this.uid(); } } @@ -9315,22 +9258,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionName); try { - this.state = 1986; + this.state = 1974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1984; + this.state = 1972; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1985; + this.state = 1973; this.uid(); } break; @@ -9352,36 +9295,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionParam); try { - this.state = 1992; + this.state = 1980; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1988; + this.state = 1976; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1989; + this.state = 1977; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1990; + this.state = 1978; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1991; + this.state = 1979; this.expression(); } break; @@ -9403,11 +9346,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 274, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 1982; this.uid(); } } @@ -9427,11 +9370,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1996; + this.state = 1984; this.identifier(); } } @@ -9451,22 +9394,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2000; + this.state = 1988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 1986; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1999; + this.state = 1987; this.dereferenceDefinition(); } break; @@ -9488,24 +9431,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2002; + this.state = 1990; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2005; + this.state = 1993; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 2003; + this.state = 1991; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2004; + this.state = 1992; this.errorCapturingUnitToUnitInterval(); } break; @@ -9528,18 +9471,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2007; + this.state = 1995; this.multiUnitsInterval(); - this.state = 2009; + this.state = 1997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { - this.state = 2008; + this.state = 1996; this.unitToUnitInterval(); } break; @@ -9562,12 +9505,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2014; + this.state = 2002; this.errorHandler.sync(this); alternative = 1; do { @@ -9575,9 +9518,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2011; + this.state = 1999; this.intervalValue(); - this.state = 2012; + this.state = 2000; this.timeIntervalUnit(); } } @@ -9585,9 +9528,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2016; + this.state = 2004; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9607,24 +9550,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2018; + this.state = 2006; localContext._body = this.unitToUnitInterval(); - this.state = 2021; + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2019; + this.state = 2007; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2020; + this.state = 2008; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9647,17 +9590,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2023; + this.state = 2011; localContext._value = this.intervalValue(); - this.state = 2024; + this.state = 2012; localContext._from_ = this.timeIntervalUnit(); - this.state = 2025; + this.state = 2013; this.match(FlinkSqlParser.KW_TO); - this.state = 2026; + this.state = 2014; localContext._to = this.timeIntervalUnit(); } } @@ -9677,10 +9620,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2033; + this.state = 2021; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPNEN_SIGN: @@ -9689,12 +9632,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2029; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529 || _la === 530) { { - this.state = 2028; + this.state = 2016; _la = this.tokenStream.LA(1); if(!(_la === 529 || _la === 530)) { this.errorHandler.recoverInline(this); @@ -9706,7 +9649,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2031; + this.state = 2019; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -9720,7 +9663,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2032; + this.state = 2020; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -9744,29 +9687,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2036; + this.state = 2024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2035; + this.state = 2023; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2038; - this.identifier(); - this.state = 2040; + this.state = 2026; + localContext._alias = this.identifier(); + this.state = 2028; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2039; + this.state = 2027; this.identifierList(); } break; @@ -9789,13 +9732,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 2030; this.identifier(); - this.state = 2043; + this.state = 2031; this.errorCapturingIdentifierExtra(); } } @@ -9815,29 +9758,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2052; + this.state = 2040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2045; + this.state = 2033; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2046; + this.state = 2034; this.identifier(); } } - this.state = 2049; + this.state = 2037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 221); @@ -9871,15 +9814,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2054; + this.state = 2042; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2055; + this.state = 2043; this.identifierSeq(); - this.state = 2056; + this.state = 2044; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -9899,26 +9842,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2058; + this.state = 2046; this.identifier(); - this.state = 2063; + this.state = 2051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2059; + this.state = 2047; this.match(FlinkSqlParser.COMMA); - this.state = 2060; + this.state = 2048; this.identifier(); } } - this.state = 2065; + this.state = 2053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9940,9 +9883,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_identifier); try { - this.state = 2069; + this.state = 2057; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -9950,7 +9893,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2066; + this.state = 2054; this.unquotedIdentifier(); } break; @@ -9958,7 +9901,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2067; + this.state = 2055; this.quotedIdentifier(); } break; @@ -10033,7 +9976,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2068; + this.state = 2056; this.nonReservedKeywords(); } break; @@ -10057,12 +10000,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2071; + this.state = 2059; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 541)) { this.errorHandler.recoverInline(this); @@ -10089,11 +10032,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2073; + this.state = 2061; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10113,17 +10056,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2075; + this.state = 2063; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2076; + this.state = 2064; localContext._condition = this.expression(); - this.state = 2077; + this.state = 2065; this.match(FlinkSqlParser.KW_THEN); - this.state = 2078; + this.state = 2066; localContext._result = this.expression(); } } @@ -10143,11 +10086,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2080; + this.state = 2068; this.identifier(); } } @@ -10167,11 +10110,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2082; + this.state = 2070; this.identifier(); } } @@ -10191,21 +10134,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2072; this.identifier(); - this.state = 2087; + this.state = 2075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2085; + this.state = 2073; this.match(FlinkSqlParser.DOT); - this.state = 2086; + this.state = 2074; this.identifier(); } } @@ -10228,21 +10171,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2089; + this.state = 2077; this.identifier(); - this.state = 2092; + this.state = 2080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2090; + this.state = 2078; this.match(FlinkSqlParser.DOT); - this.state = 2091; + this.state = 2079; this.identifier(); } } @@ -10265,25 +10208,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2106; + this.state = 2094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2094; + this.state = 2082; this.identifier(); - this.state = 2097; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2095; + this.state = 2083; this.match(FlinkSqlParser.DOT); - this.state = 2096; + this.state = 2084; this.identifier(); } } @@ -10293,20 +10236,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2099; + this.state = 2087; this.identifier(); - this.state = 2100; + this.state = 2088; this.match(FlinkSqlParser.DOT); - this.state = 2101; + this.state = 2089; this.identifier(); - this.state = 2104; + this.state = 2092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2102; + this.state = 2090; this.match(FlinkSqlParser.DOT); - this.state = 2103; + this.state = 2091; this.identifier(); } } @@ -10331,24 +10274,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_tablePath); try { - this.state = 2120; + this.state = 2108; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2096; this.identifier(); - this.state = 2111; + this.state = 2099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2109; + this.state = 2097; this.match(FlinkSqlParser.DOT); - this.state = 2110; + this.state = 2098; this.identifier(); } break; @@ -10358,20 +10301,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2113; + this.state = 2101; this.identifier(); - this.state = 2114; + this.state = 2102; this.match(FlinkSqlParser.DOT); - this.state = 2115; + this.state = 2103; this.identifier(); - this.state = 2118; + this.state = 2106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2116; + this.state = 2104; this.match(FlinkSqlParser.DOT); - this.state = 2117; + this.state = 2105; this.identifier(); } break; @@ -10396,24 +10339,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_viewPath); try { - this.state = 2134; + this.state = 2122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2122; + this.state = 2110; this.identifier(); - this.state = 2125; + this.state = 2113; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2123; + this.state = 2111; this.match(FlinkSqlParser.DOT); - this.state = 2124; + this.state = 2112; this.identifier(); } break; @@ -10423,20 +10366,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2127; + this.state = 2115; this.identifier(); - this.state = 2128; + this.state = 2116; this.match(FlinkSqlParser.DOT); - this.state = 2129; + this.state = 2117; this.identifier(); - this.state = 2132; + this.state = 2120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2130; + this.state = 2118; this.match(FlinkSqlParser.DOT); - this.state = 2131; + this.state = 2119; this.identifier(); } break; @@ -10461,25 +10404,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2148; + this.state = 2136; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2136; + this.state = 2124; this.identifier(); - this.state = 2139; + this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2137; + this.state = 2125; this.match(FlinkSqlParser.DOT); - this.state = 2138; + this.state = 2126; this.identifier(); } } @@ -10489,20 +10432,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2141; + this.state = 2129; this.identifier(); - this.state = 2142; + this.state = 2130; this.match(FlinkSqlParser.DOT); - this.state = 2143; + this.state = 2131; this.identifier(); - this.state = 2146; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2144; + this.state = 2132; this.match(FlinkSqlParser.DOT); - this.state = 2145; + this.state = 2133; this.identifier(); } } @@ -10527,30 +10470,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2150; + this.state = 2138; this.identifier(); - this.state = 2155; + this.state = 2143; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2151; + this.state = 2139; this.match(FlinkSqlParser.DOT); - this.state = 2152; + this.state = 2140; this.identifier(); } } } - this.state = 2157; + this.state = 2145; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); } } } @@ -10570,13 +10513,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2146; this.match(FlinkSqlParser.KW_WITH); - this.state = 2159; + this.state = 2147; this.tablePropertyList(); } } @@ -10596,15 +10539,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2161; + this.state = 2149; this.match(FlinkSqlParser.KW_IF); - this.state = 2162; + this.state = 2150; this.match(FlinkSqlParser.KW_NOT); - this.state = 2163; + this.state = 2151; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10624,13 +10567,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2153; this.match(FlinkSqlParser.KW_IF); - this.state = 2166; + this.state = 2154; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10650,32 +10593,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2156; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2169; + this.state = 2157; this.tableProperty(); - this.state = 2174; + this.state = 2162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2170; + this.state = 2158; this.match(FlinkSqlParser.COMMA); - this.state = 2171; + this.state = 2159; this.tableProperty(); } } - this.state = 2176; + this.state = 2164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2177; + this.state = 2165; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10695,29 +10638,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2179; + this.state = 2167; localContext._key = this.tablePropertyKey(); - this.state = 2184; + this.state = 2172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 397 || _la === 505 || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 7) !== 0)) { { - this.state = 2181; + this.state = 2169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 505) { { - this.state = 2180; + this.state = 2168; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2183; + this.state = 2171; localContext._value = this.tablePropertyValue(); } } @@ -10740,29 +10683,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2189; + this.state = 2177; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2174; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2187; + this.state = 2175; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2188; + this.state = 2176; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10784,22 +10727,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2195; + this.state = 2183; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2191; + this.state = 2179; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2192; + this.state = 2180; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -10807,14 +10750,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2193; + this.state = 2181; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2194; + this.state = 2182; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10838,40 +10781,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2203; + this.state = 2191; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2185; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2198; + this.state = 2186; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2199; + this.state = 2187; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2200; + this.state = 2188; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2201; + this.state = 2189; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2202; + this.state = 2190; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -10895,76 +10838,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2219; + this.state = 2207; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2193; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2206; + this.state = 2194; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2207; + this.state = 2195; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2208; + this.state = 2196; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2209; + this.state = 2197; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2210; + this.state = 2198; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2211; + this.state = 2199; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2212; + this.state = 2200; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2213; + this.state = 2201; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2214; + this.state = 2202; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2215; + this.state = 2203; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2216; + this.state = 2204; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2217; + this.state = 2205; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2218; + this.state = 2206; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -10986,47 +10929,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2228; + this.state = 2216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2221; + this.state = 2209; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2222; + this.state = 2210; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2223; + this.state = 2211; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2224; + this.state = 2212; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2225; + this.state = 2213; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2226; + this.state = 2214; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2227; + this.state = 2215; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11050,12 +10993,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2230; + this.state = 2218; _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11082,12 +11025,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2232; + this.state = 2220; _la = this.tokenStream.LA(1); if(!(_la === 241 || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11114,16 +11057,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2248; + this.state = 2236; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2222; this.timeIntervalExpression(); } break; @@ -11139,14 +11082,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2223; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2236; + this.state = 2224; this.stringLiteral(); } break; @@ -11154,17 +11097,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2238; + this.state = 2226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529) { { - this.state = 2237; + this.state = 2225; this.match(FlinkSqlParser.HYPNEN_SIGN); } } - this.state = 2240; + this.state = 2228; this.decimalLiteral(); } break; @@ -11172,21 +11115,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2241; + this.state = 2229; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2242; + this.state = 2230; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2243; + this.state = 2231; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11194,17 +11137,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2245; + this.state = 2233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 2244; + this.state = 2232; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2247; + this.state = 2235; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11228,13 +11171,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2250; + this.state = 2238; this.timePointUnit(); - this.state = 2251; + this.state = 2239; this.stringLiteral(); } } @@ -11254,11 +11197,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2253; + this.state = 2241; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11278,11 +11221,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2255; + this.state = 2243; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11302,12 +11245,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2257; + this.state = 2245; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 397)) { this.errorHandler.recoverInline(this); @@ -11334,12 +11277,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2259; + this.state = 2247; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11366,12 +11309,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2261; + this.state = 2249; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || _la === 436 || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 262149) !== 0) || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11398,12 +11341,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2263; + this.state = 2251; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 140542465) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 2415983617) !== 0) || _la === 502 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11430,12 +11373,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2265; + this.state = 2253; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || _la === 85 || _la === 113 || _la === 200 || _la === 389 || _la === 413 || _la === 527)) { this.errorHandler.recoverInline(this); @@ -11462,12 +11405,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2255; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25232905) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 873523369) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 81921) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 50339865) !== 0) || _la === 436 || _la === 469 || _la === 488 || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11494,12 +11437,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2257; _la = this.tokenStream.LA(1); if(!(((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11529,15 +11472,15 @@ export class FlinkSqlParser extends SQLParserBase { switch (ruleIndex) { case 26: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 79: + case 78: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 89: + case 88: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 130: + case 129: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 133: + case 132: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 134: + case 133: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -11602,7 +11545,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,541,2272,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,541,2260,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, @@ -11633,32 +11576,32 @@ export class FlinkSqlParser extends SQLParserBase { 2,170,7,170,2,171,7,171,2,172,7,172,2,173,7,173,2,174,7,174,2,175, 7,175,2,176,7,176,2,177,7,177,2,178,7,178,2,179,7,179,2,180,7,180, 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, - 7,186,2,187,7,187,1,0,5,0,378,8,0,10,0,12,0,381,9,0,1,0,1,0,1,1, - 1,1,3,1,387,8,1,1,1,3,1,390,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,404,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,422,8,4,1,5,1,5,3,5,426,8,5,1,6, - 1,6,1,6,1,7,1,7,1,7,1,7,3,7,435,8,7,1,7,1,7,1,7,3,7,440,8,7,1,8, - 1,8,1,8,5,8,445,8,8,10,8,12,8,448,9,8,1,9,1,9,1,10,1,10,1,10,1,10, - 1,10,1,10,3,10,458,8,10,1,11,1,11,1,11,1,11,1,11,5,11,465,8,11,10, - 11,12,11,468,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3, - 12,479,8,12,1,12,3,12,482,8,12,1,12,1,12,1,12,1,12,1,12,3,12,489, - 8,12,1,12,3,12,492,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,500,8, - 12,1,12,1,12,3,12,504,8,12,1,12,1,12,1,12,3,12,509,8,12,1,12,3,12, - 512,8,12,1,13,1,13,1,13,1,13,1,13,3,13,519,8,13,1,14,1,14,1,14,1, - 14,1,15,1,15,3,15,527,8,15,1,16,1,16,3,16,531,8,16,1,17,1,17,1,17, - 1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,543,8,18,1,18,1,18,1,18, - 1,18,1,18,1,18,3,18,551,8,18,1,18,1,18,3,18,555,8,18,1,18,1,18,1, - 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,3,18,587,8,18,1,19,3,19,590,8,19,1,19,4,19,593,8,19,11,19, - 12,19,594,1,20,1,20,3,20,599,8,20,1,21,1,21,3,21,603,8,21,1,21,1, - 21,3,21,607,8,21,1,21,1,21,1,21,1,21,1,21,5,21,614,8,21,10,21,12, - 21,617,9,21,1,21,1,21,3,21,621,8,21,1,21,1,21,3,21,625,8,21,1,21, - 1,21,3,21,629,8,21,1,21,1,21,3,21,633,8,21,1,21,3,21,636,8,21,1, - 21,1,21,3,21,640,8,21,1,22,1,22,1,22,3,22,645,8,22,1,22,1,22,1,22, - 1,22,3,22,651,8,22,1,23,1,23,1,23,3,23,656,8,23,1,24,1,24,1,24,3, - 24,661,8,24,1,24,3,24,664,8,24,1,25,1,25,3,25,668,8,25,1,26,1,26, - 3,26,672,8,26,1,27,1,27,1,27,1,27,5,27,678,8,27,10,27,12,27,681, + 7,186,1,0,5,0,376,8,0,10,0,12,0,379,9,0,1,0,1,0,1,1,1,1,3,1,385, + 8,1,1,1,3,1,388,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,402,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,420,8,4,1,5,1,5,3,5,424,8,5,1,6,1,6,1,6,1,7, + 1,7,1,7,1,7,3,7,433,8,7,1,7,1,7,1,7,3,7,438,8,7,1,8,1,8,1,8,5,8, + 443,8,8,10,8,12,8,446,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10, + 3,10,456,8,10,1,11,1,11,1,11,1,11,1,11,5,11,463,8,11,10,11,12,11, + 466,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,477,8, + 12,1,12,3,12,480,8,12,1,12,1,12,1,12,1,12,1,12,3,12,487,8,12,1,12, + 3,12,490,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,498,8,12,1,12,1, + 12,3,12,502,8,12,1,12,1,12,1,12,3,12,507,8,12,1,12,3,12,510,8,12, + 1,13,1,13,1,13,1,13,1,13,3,13,517,8,13,1,14,1,14,1,14,1,14,1,15, + 1,15,3,15,525,8,15,1,16,1,16,3,16,529,8,16,1,17,1,17,1,17,1,17,1, + 18,1,18,1,18,1,18,1,18,1,18,3,18,541,8,18,1,18,1,18,1,18,1,18,1, + 18,1,18,3,18,549,8,18,1,18,1,18,3,18,553,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,585,8,18,1,19,3,19,588,8,19,1,19,4,19,591,8,19,11,19,12,19, + 592,1,20,1,20,3,20,597,8,20,1,21,1,21,3,21,601,8,21,1,21,1,21,3, + 21,605,8,21,1,21,1,21,1,21,1,21,1,21,5,21,612,8,21,10,21,12,21,615, + 9,21,1,21,1,21,3,21,619,8,21,1,21,1,21,3,21,623,8,21,1,21,1,21,3, + 21,627,8,21,1,21,1,21,1,21,3,21,632,8,21,1,21,3,21,635,8,21,1,21, + 1,21,3,21,639,8,21,1,22,1,22,1,22,3,22,644,8,22,1,22,1,22,1,22,1, + 22,3,22,650,8,22,1,23,1,23,1,23,3,23,655,8,23,1,24,1,24,1,24,3,24, + 660,8,24,1,24,1,24,3,24,664,8,24,1,25,1,25,3,25,668,8,25,1,26,1, + 26,3,26,672,8,26,1,27,1,27,1,27,1,27,5,27,678,8,27,10,27,12,27,681, 9,27,1,27,1,27,1,28,1,28,1,28,3,28,688,8,28,1,28,1,28,3,28,692,8, 28,1,28,1,28,3,28,696,8,28,1,28,1,28,3,28,700,8,28,1,28,1,28,3,28, 704,8,28,1,28,1,28,3,28,708,8,28,1,28,1,28,3,28,712,8,28,1,28,1, @@ -11668,903 +11611,898 @@ export class FlinkSqlParser extends SQLParserBase { 1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34, 762,8,34,10,34,12,34,765,9,34,1,34,1,34,1,35,1,35,3,35,771,8,35, 1,35,1,35,1,35,1,35,3,35,777,8,35,1,35,3,35,780,8,35,1,35,3,35,783, - 8,35,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,3,37,793,8,37,1,37, - 3,37,796,8,37,1,38,1,38,1,39,1,39,1,39,1,39,3,39,804,8,39,1,40,1, - 40,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,3,42,816,8,42,1,42,1, - 42,1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1, - 45,1,45,1,46,1,46,1,46,1,46,5,46,838,8,46,10,46,12,46,841,9,46,1, - 46,1,46,1,47,1,47,1,47,1,47,1,47,5,47,850,8,47,10,47,12,47,853,9, - 47,1,47,1,47,3,47,857,8,47,1,48,1,48,3,48,861,8,48,1,49,1,49,1,49, - 1,49,5,49,867,8,49,10,49,12,49,870,9,49,1,49,3,49,873,8,49,1,50, - 1,50,1,50,1,50,3,50,879,8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52, - 1,52,3,52,889,8,52,1,52,1,52,3,52,893,8,52,1,52,1,52,1,53,1,53,3, - 53,899,8,53,1,53,1,53,3,53,903,8,53,1,53,1,53,3,53,907,8,53,1,53, - 3,53,910,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,919,8,54,1, - 54,1,54,3,54,923,8,54,1,54,1,54,1,54,1,54,1,54,3,54,930,8,54,1,54, - 3,54,933,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,941,8,55,10,55, - 12,55,944,9,55,1,56,1,56,1,57,1,57,1,57,3,57,951,8,57,1,57,1,57, - 1,57,1,57,1,57,1,57,3,57,959,8,57,1,58,1,58,3,58,963,8,58,1,58,1, - 58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,978, - 8,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64, - 1,64,1,64,1,64,1,64,1,64,3,64,997,8,64,1,65,1,65,1,65,1,65,1,65, - 1,66,1,66,1,66,1,66,3,66,1008,8,66,1,66,1,66,3,66,1012,8,66,1,66, - 1,66,1,66,1,66,1,66,3,66,1019,8,66,1,67,1,67,1,67,3,67,1024,8,67, - 1,67,1,67,1,68,1,68,3,68,1030,8,68,1,68,1,68,3,68,1034,8,68,1,68, - 1,68,1,69,1,69,1,69,3,69,1041,8,69,1,69,1,69,3,69,1045,8,69,1,70, - 1,70,3,70,1049,8,70,1,70,1,70,3,70,1053,8,70,1,70,1,70,1,71,1,71, - 1,71,1,71,3,71,1061,8,71,1,71,1,71,3,71,1065,8,71,1,71,1,71,1,72, - 3,72,1070,8,72,1,72,1,72,1,72,1,72,3,72,1076,8,72,1,73,1,73,1,73, - 1,73,3,73,1082,8,73,1,73,3,73,1085,8,73,1,73,1,73,3,73,1089,8,73, - 1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1098,8,75,10,75,12,75,1101, - 9,75,1,76,1,76,1,76,1,76,5,76,1107,8,76,10,76,12,76,1110,9,76,1, - 76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1121,8,77,11,77, - 12,77,1122,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1133,8,78, - 11,78,12,78,1134,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1, - 79,1,79,1,79,1,79,3,79,1150,8,79,1,79,3,79,1153,8,79,1,79,1,79,3, - 79,1157,8,79,1,79,3,79,1160,8,79,3,79,1162,8,79,1,79,1,79,1,79,3, - 79,1167,8,79,1,79,1,79,3,79,1171,8,79,1,79,3,79,1174,8,79,5,79,1176, - 8,79,10,79,12,79,1179,9,79,1,80,1,80,1,80,1,80,5,80,1185,8,80,10, - 80,12,80,1188,9,80,1,81,1,81,1,81,1,81,5,81,1194,8,81,10,81,12,81, - 1197,9,81,1,82,1,82,1,82,1,82,1,82,5,82,1204,8,82,10,82,12,82,1207, - 9,82,1,82,1,82,3,82,1211,8,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83, - 1,84,1,84,3,84,1222,8,84,1,84,3,84,1225,8,84,1,84,3,84,1228,8,84, - 1,84,3,84,1231,8,84,1,84,3,84,1234,8,84,1,84,1,84,1,84,1,84,3,84, - 1240,8,84,1,85,1,85,3,85,1244,8,85,1,85,1,85,1,85,1,85,5,85,1250, - 8,85,10,85,12,85,1253,9,85,3,85,1255,8,85,1,86,1,86,1,86,3,86,1260, - 8,86,1,86,3,86,1263,8,86,1,86,1,86,3,86,1267,8,86,1,86,3,86,1270, - 8,86,3,86,1272,8,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,1,87,1,87,3,87,1286,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89, - 5,89,1295,8,89,10,89,12,89,1298,9,89,1,89,1,89,3,89,1302,8,89,1, - 89,1,89,1,89,1,89,1,89,1,89,3,89,1310,8,89,1,89,3,89,1313,8,89,1, - 89,3,89,1316,8,89,1,89,1,89,1,89,3,89,1321,8,89,5,89,1323,8,89,10, - 89,12,89,1326,9,89,1,90,1,90,3,90,1330,8,90,1,91,3,91,1333,8,91, - 1,91,1,91,3,91,1337,8,91,1,91,3,91,1340,8,91,1,91,3,91,1343,8,91, - 1,91,1,91,3,91,1347,8,91,1,91,3,91,1350,8,91,1,91,3,91,1353,8,91, - 1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1363,8,91,10,91,12, - 91,1366,9,91,1,91,1,91,1,91,1,91,3,91,1372,8,91,1,91,1,91,1,91,1, - 91,1,91,1,91,1,91,1,91,1,91,3,91,1383,8,91,1,92,1,92,1,92,1,92,1, - 92,1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1, - 95,1,96,1,96,1,96,1,96,1,96,5,96,1408,8,96,10,96,12,96,1411,9,96, - 1,96,1,96,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, - 1,98,1,98,1,98,1,98,1,98,1,98,3,98,1432,8,98,1,99,1,99,1,100,1,100, - 1,100,1,100,1,100,1,101,1,101,1,101,1,101,3,101,1445,8,101,1,102, - 1,102,1,102,1,103,1,103,1,103,1,103,1,103,5,103,1455,8,103,10,103, - 12,103,1458,9,103,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 5,104,1468,8,104,10,104,12,104,1471,9,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,5,104,1480,8,104,10,104,12,104,1483,9,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,5,104,1492,8,104,10,104,12,104, - 1495,9,104,1,104,1,104,1,104,3,104,1500,8,104,1,105,1,105,1,105, - 1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108, - 1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111,1,111,5,111,1525, - 8,111,10,111,12,111,1528,9,111,1,112,1,112,1,112,1,112,1,113,3,113, - 1535,8,113,1,113,1,113,3,113,1539,8,113,1,113,3,113,1542,8,113,1, - 113,3,113,1545,8,113,1,113,1,113,1,114,1,114,1,114,3,114,1552,8, - 114,1,114,3,114,1555,8,114,1,114,3,114,1558,8,114,1,114,3,114,1561, - 8,114,1,114,3,114,1564,8,114,1,114,3,114,1567,8,114,1,114,1,114, - 1,114,3,114,1572,8,114,1,114,3,114,1575,8,114,1,115,1,115,1,115, - 1,115,1,115,5,115,1582,8,115,10,115,12,115,1585,9,115,1,116,1,116, - 3,116,1589,8,116,1,116,1,116,3,116,1593,8,116,1,117,1,117,1,117, - 3,117,1598,8,117,1,118,1,118,1,118,1,118,1,118,5,118,1605,8,118, - 10,118,12,118,1608,9,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,1626, - 8,119,1,120,1,120,1,120,1,120,5,120,1632,8,120,10,120,12,120,1635, - 9,120,1,121,1,121,1,121,4,121,1640,8,121,11,121,12,121,1641,1,121, - 1,121,3,121,1646,8,121,1,122,1,122,3,122,1650,8,122,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,3,123,1660,8,123,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 3,124,1686,8,124,1,125,1,125,1,125,1,125,5,125,1692,8,125,10,125, - 12,125,1695,9,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, - 1,126,3,126,1706,8,126,1,127,1,127,1,127,1,127,1,127,1,128,1,128, - 1,128,1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 1,130,1,130,3,130,1728,8,130,3,130,1730,8,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,3,130,1741,8,130,1,130,5,130, - 1744,8,130,10,130,12,130,1747,9,130,1,131,3,131,1750,8,131,1,131, - 1,131,3,131,1754,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1761, - 8,131,1,131,1,131,1,131,1,131,1,131,5,131,1768,8,131,10,131,12,131, - 1771,9,131,1,131,1,131,1,131,3,131,1776,8,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1789,8,131, - 1,131,1,131,1,131,1,131,1,131,3,131,1796,8,131,1,131,1,131,1,131, - 3,131,1801,8,131,1,131,1,131,1,131,1,131,3,131,1807,8,131,1,131, - 1,131,1,131,1,131,1,131,3,131,1814,8,131,3,131,1816,8,131,1,132, - 3,132,1819,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 5,132,1829,8,132,10,132,12,132,1832,9,132,1,132,1,132,3,132,1836, - 8,132,1,132,3,132,1839,8,132,1,132,1,132,1,132,1,132,3,132,1845, - 8,132,3,132,1847,8,132,1,133,1,133,1,133,1,133,3,133,1853,8,133, + 8,35,1,36,1,36,1,36,1,36,1,36,3,36,790,8,36,1,36,3,36,793,8,36,1, + 37,1,37,1,38,1,38,1,38,1,38,1,38,3,38,802,8,38,1,39,1,39,1,40,1, + 40,1,40,1,40,1,40,1,40,1,41,1,41,3,41,814,8,41,1,41,1,41,1,41,1, + 41,1,41,1,41,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1, + 45,1,45,1,45,1,45,5,45,836,8,45,10,45,12,45,839,9,45,1,45,1,45,1, + 46,1,46,1,46,1,46,1,46,5,46,848,8,46,10,46,12,46,851,9,46,1,46,1, + 46,3,46,855,8,46,1,47,1,47,3,47,859,8,47,1,48,1,48,1,48,1,48,5,48, + 865,8,48,10,48,12,48,868,9,48,1,48,3,48,871,8,48,1,49,1,49,1,49, + 1,49,3,49,877,8,49,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,3,51, + 887,8,51,1,51,1,51,1,51,3,51,892,8,51,1,51,1,51,1,52,1,52,3,52,898, + 8,52,1,52,1,52,3,52,902,8,52,1,52,1,52,3,52,906,8,52,1,52,1,52,3, + 52,910,8,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,3,53,919,8,53,1,53, + 1,53,3,53,923,8,53,1,53,1,53,1,53,1,53,1,53,3,53,930,8,53,1,53,3, + 53,933,8,53,1,54,1,54,1,54,1,54,1,54,1,54,5,54,941,8,54,10,54,12, + 54,944,9,54,1,55,1,55,1,56,1,56,1,56,3,56,951,8,56,1,56,1,56,1,56, + 1,56,1,56,1,56,3,56,959,8,56,1,57,1,57,3,57,963,8,57,1,57,1,57,1, + 57,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,978,8, + 59,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,63,1, + 63,1,63,1,63,1,63,1,63,3,63,997,8,63,1,64,1,64,1,64,1,64,1,64,1, + 65,1,65,1,65,1,65,3,65,1008,8,65,1,65,1,65,3,65,1012,8,65,1,65,1, + 65,1,65,1,65,1,65,3,65,1019,8,65,1,66,1,66,1,66,3,66,1024,8,66,1, + 66,1,66,1,67,1,67,3,67,1030,8,67,1,67,1,67,3,67,1034,8,67,1,67,1, + 67,1,68,1,68,1,68,3,68,1041,8,68,1,68,1,68,3,68,1045,8,68,1,69,1, + 69,3,69,1049,8,69,1,69,1,69,3,69,1053,8,69,1,69,1,69,1,70,1,70,1, + 70,1,70,3,70,1061,8,70,1,70,1,70,3,70,1065,8,70,1,70,1,70,1,71,3, + 71,1070,8,71,1,71,1,71,1,71,1,71,3,71,1076,8,71,1,72,1,72,1,72,1, + 72,3,72,1082,8,72,1,72,3,72,1085,8,72,1,72,1,72,3,72,1089,8,72,1, + 73,1,73,1,73,1,74,1,74,1,74,1,74,5,74,1098,8,74,10,74,12,74,1101, + 9,74,1,75,1,75,1,75,1,75,5,75,1107,8,75,10,75,12,75,1110,9,75,1, + 75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,4,76,1121,8,76,11,76, + 12,76,1122,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1133,8,77, + 11,77,12,77,1134,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,3,78,1150,8,78,1,78,3,78,1153,8,78,1,78,1,78,3, + 78,1157,8,78,1,78,3,78,1160,8,78,3,78,1162,8,78,1,78,1,78,1,78,3, + 78,1167,8,78,1,78,1,78,3,78,1171,8,78,1,78,3,78,1174,8,78,5,78,1176, + 8,78,10,78,12,78,1179,9,78,1,79,1,79,1,79,1,79,5,79,1185,8,79,10, + 79,12,79,1188,9,79,1,80,1,80,1,80,1,80,5,80,1194,8,80,10,80,12,80, + 1197,9,80,1,81,1,81,1,81,1,81,1,81,5,81,1204,8,81,10,81,12,81,1207, + 9,81,1,81,1,81,3,81,1211,8,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82, + 1,83,1,83,3,83,1222,8,83,1,83,3,83,1225,8,83,1,83,3,83,1228,8,83, + 1,83,3,83,1231,8,83,1,83,3,83,1234,8,83,1,83,1,83,1,83,1,83,3,83, + 1240,8,83,1,84,1,84,3,84,1244,8,84,1,84,1,84,1,84,1,84,5,84,1250, + 8,84,10,84,12,84,1253,9,84,3,84,1255,8,84,1,85,1,85,1,85,3,85,1260, + 8,85,1,85,3,85,1263,8,85,1,85,1,85,3,85,1267,8,85,1,85,3,85,1270, + 8,85,3,85,1272,8,85,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86, + 1,86,1,86,1,86,3,86,1286,8,86,1,87,1,87,1,87,1,88,1,88,1,88,1,88, + 5,88,1295,8,88,10,88,12,88,1298,9,88,1,88,1,88,3,88,1302,8,88,1, + 88,1,88,1,88,1,88,1,88,1,88,3,88,1310,8,88,1,88,3,88,1313,8,88,1, + 88,3,88,1316,8,88,1,88,1,88,1,88,3,88,1321,8,88,5,88,1323,8,88,10, + 88,12,88,1326,9,88,1,89,1,89,3,89,1330,8,89,1,90,3,90,1333,8,90, + 1,90,1,90,3,90,1337,8,90,1,90,1,90,3,90,1341,8,90,1,90,1,90,1,90, + 1,90,1,90,1,90,1,90,1,90,5,90,1351,8,90,10,90,12,90,1354,9,90,1, + 90,1,90,1,90,1,90,3,90,1360,8,90,1,90,1,90,1,90,1,90,1,90,1,90,1, + 90,1,90,1,90,3,90,1371,8,90,1,91,1,91,1,91,1,91,1,91,1,91,1,92,1, + 92,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1, + 95,1,95,1,95,5,95,1396,8,95,10,95,12,95,1399,9,95,1,95,1,95,1,96, + 1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, + 1,97,1,97,1,97,3,97,1420,8,97,1,98,1,98,1,99,1,99,1,99,1,99,1,99, + 1,100,1,100,1,100,1,100,3,100,1433,8,100,1,101,1,101,1,101,1,102, + 1,102,1,102,1,102,1,102,5,102,1443,8,102,10,102,12,102,1446,9,102, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103,1456,8,103, + 10,103,12,103,1459,9,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 5,103,1468,8,103,10,103,12,103,1471,9,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,5,103,1480,8,103,10,103,12,103,1483,9,103,1,103, + 1,103,1,103,3,103,1488,8,103,1,104,1,104,1,104,1,105,1,105,1,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,108,1,108,1,109, + 1,109,1,109,1,110,1,110,1,110,1,110,5,110,1513,8,110,10,110,12,110, + 1516,9,110,1,111,1,111,1,111,1,111,1,112,3,112,1523,8,112,1,112, + 1,112,3,112,1527,8,112,1,112,3,112,1530,8,112,1,112,3,112,1533,8, + 112,1,112,1,112,1,113,1,113,1,113,3,113,1540,8,113,1,113,3,113,1543, + 8,113,1,113,3,113,1546,8,113,1,113,3,113,1549,8,113,1,113,3,113, + 1552,8,113,1,113,3,113,1555,8,113,1,113,1,113,1,113,3,113,1560,8, + 113,1,113,3,113,1563,8,113,1,114,1,114,1,114,1,114,1,114,5,114,1570, + 8,114,10,114,12,114,1573,9,114,1,115,1,115,3,115,1577,8,115,1,115, + 1,115,3,115,1581,8,115,1,116,1,116,1,116,3,116,1586,8,116,1,117, + 1,117,1,117,1,117,1,117,5,117,1593,8,117,10,117,12,117,1596,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,1614,8,118,1,119,1,119,1,119, + 1,119,5,119,1620,8,119,10,119,12,119,1623,9,119,1,120,1,120,1,120, + 4,120,1628,8,120,11,120,12,120,1629,1,120,1,120,3,120,1634,8,120, + 1,121,1,121,3,121,1638,8,121,1,122,1,122,1,122,1,122,1,122,1,122, + 1,122,1,122,3,122,1648,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,1674,8,123,1,124, + 1,124,1,124,1,124,5,124,1680,8,124,10,124,12,124,1683,9,124,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,1694,8,125, + 1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,128,1,128,1,129, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1716, + 8,129,3,129,1718,8,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,1,129,3,129,1729,8,129,1,129,5,129,1732,8,129,10,129,12,129, + 1735,9,129,1,130,3,130,1738,8,130,1,130,1,130,3,130,1742,8,130,1, + 130,1,130,1,130,1,130,1,130,3,130,1749,8,130,1,130,1,130,1,130,1, + 130,1,130,5,130,1756,8,130,10,130,12,130,1759,9,130,1,130,1,130, + 1,130,3,130,1764,8,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, + 1,130,1,130,1,130,1,130,3,130,1777,8,130,1,130,1,130,1,130,1,130, + 1,130,3,130,1784,8,130,1,130,1,130,1,130,3,130,1789,8,130,1,130, + 1,130,1,130,1,130,3,130,1795,8,130,1,130,1,130,1,130,1,130,1,130, + 3,130,1802,8,130,3,130,1804,8,130,1,131,3,131,1807,8,131,1,131,1, + 131,1,131,1,131,1,131,1,131,1,131,1,131,5,131,1817,8,131,10,131, + 12,131,1820,9,131,1,131,1,131,3,131,1824,8,131,1,131,3,131,1827, + 8,131,1,131,1,131,1,131,1,131,3,131,1833,8,131,3,131,1835,8,131, + 1,132,1,132,1,132,1,132,3,132,1841,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,5,132,1862,8,132,10,132,12,132,1865,9,132, + 1,133,1,133,1,133,4,133,1870,8,133,11,133,12,133,1871,1,133,1,133, + 3,133,1876,8,133,1,133,1,133,1,133,1,133,1,133,4,133,1883,8,133, + 11,133,12,133,1884,1,133,1,133,3,133,1889,8,133,1,133,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 3,133,1905,8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133, + 1914,8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1874,8,133, - 10,133,12,133,1877,9,133,1,134,1,134,1,134,4,134,1882,8,134,11,134, - 12,134,1883,1,134,1,134,3,134,1888,8,134,1,134,1,134,1,134,1,134, - 1,134,4,134,1895,8,134,11,134,12,134,1896,1,134,1,134,3,134,1901, - 8,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,3,134,1917,8,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,3,134,1926,8,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,3,134,1950,8,134,1,134,1,134, - 1,134,5,134,1955,8,134,10,134,12,134,1958,9,134,3,134,1960,8,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,3,134,1971, - 8,134,1,134,1,134,1,134,1,134,1,134,5,134,1978,8,134,10,134,12,134, - 1981,9,134,1,135,1,135,1,136,1,136,3,136,1987,8,136,1,137,1,137, - 1,137,1,137,3,137,1993,8,137,1,138,1,138,1,139,1,139,1,140,1,140, - 3,140,2001,8,140,1,141,1,141,1,141,3,141,2006,8,141,1,142,1,142, - 3,142,2010,8,142,1,143,1,143,1,143,4,143,2015,8,143,11,143,12,143, - 2016,1,144,1,144,1,144,3,144,2022,8,144,1,145,1,145,1,145,1,145, - 1,145,1,146,3,146,2030,8,146,1,146,1,146,3,146,2034,8,146,1,147, - 3,147,2037,8,147,1,147,1,147,3,147,2041,8,147,1,148,1,148,1,148, - 1,149,1,149,4,149,2048,8,149,11,149,12,149,2049,1,149,3,149,2053, - 8,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151,5,151,2062,8,151, - 10,151,12,151,2065,9,151,1,152,1,152,1,152,3,152,2070,8,152,1,153, - 1,153,1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,1,157, - 1,157,1,158,1,158,1,158,3,158,2088,8,158,1,159,1,159,1,159,3,159, - 2093,8,159,1,160,1,160,1,160,3,160,2098,8,160,1,160,1,160,1,160, - 1,160,1,160,3,160,2105,8,160,3,160,2107,8,160,1,161,1,161,1,161, - 3,161,2112,8,161,1,161,1,161,1,161,1,161,1,161,3,161,2119,8,161, - 3,161,2121,8,161,1,162,1,162,1,162,3,162,2126,8,162,1,162,1,162, - 1,162,1,162,1,162,3,162,2133,8,162,3,162,2135,8,162,1,163,1,163, - 1,163,3,163,2140,8,163,1,163,1,163,1,163,1,163,1,163,3,163,2147, - 8,163,3,163,2149,8,163,1,164,1,164,1,164,5,164,2154,8,164,10,164, - 12,164,2157,9,164,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,167, - 1,167,1,167,1,168,1,168,1,168,1,168,5,168,2173,8,168,10,168,12,168, - 2176,9,168,1,168,1,168,1,169,1,169,3,169,2182,8,169,1,169,3,169, - 2185,8,169,1,170,1,170,1,170,3,170,2190,8,170,1,171,1,171,1,171, - 1,171,3,171,2196,8,171,1,172,1,172,1,172,1,172,1,172,1,172,3,172, - 2204,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,3,173,2220,8,173,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,3,174,2229,8,174,1,175,1,175,1,176,1,176, - 1,177,1,177,1,177,1,177,3,177,2239,8,177,1,177,1,177,1,177,1,177, - 1,177,3,177,2246,8,177,1,177,3,177,2249,8,177,1,178,1,178,1,178, - 1,179,1,179,1,180,1,180,1,181,1,181,1,182,1,182,1,183,1,183,1,184, - 1,184,1,185,1,185,1,186,1,186,1,187,1,187,1,187,1,2155,5,158,178, - 260,266,268,188,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, - 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, - 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, - 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, - 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, - 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, - 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, - 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, - 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, - 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, - 342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372, - 374,0,45,2,0,109,109,450,450,3,0,45,45,128,128,188,188,4,0,42,42, - 90,90,422,422,464,464,2,0,441,441,447,447,2,0,151,151,170,170,2, - 0,437,437,489,489,2,0,482,485,487,487,3,0,32,32,91,91,244,244,11, - 0,28,29,35,35,46,46,92,92,178,179,344,344,360,360,378,378,381,381, - 387,387,416,417,2,0,433,433,435,435,4,0,101,102,115,115,144,144, - 246,246,2,0,13,13,231,231,2,0,455,455,462,462,3,0,5,5,270,270,444, - 444,3,0,266,266,455,455,462,462,3,0,425,425,458,458,477,477,3,0, - 330,330,465,465,481,481,2,0,440,440,490,490,2,0,183,183,265,265, - 3,0,130,130,180,180,402,402,4,0,152,152,174,174,201,201,317,317, - 3,0,445,445,459,459,499,499,4,0,250,250,446,446,494,496,498,498, - 2,0,74,74,320,320,3,0,459,459,492,492,499,499,2,0,439,439,450,450, - 2,0,457,457,467,467,4,0,140,140,244,244,397,397,404,404,2,0,19,19, - 369,369,2,0,5,5,11,11,2,0,509,509,529,530,4,0,452,452,527,527,531, - 531,534,534,2,0,529,530,532,532,1,0,529,530,1,0,538,539,2,0,538, - 538,541,541,4,0,452,452,527,527,529,531,533,534,3,0,241,241,508, - 509,529,530,2,0,140,140,397,397,2,0,5,5,113,113,10,0,97,97,165,165, - 222,222,229,229,334,334,436,436,470,470,472,472,488,488,502,502, - 15,0,97,97,165,165,222,222,229,229,334,334,427,427,436,436,442,442, - 448,449,454,454,460,460,470,475,488,488,491,491,502,503,9,0,5,5, - 13,13,33,33,85,85,113,113,200,200,389,389,413,413,527,527,55,0,4, - 4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,78,78,84, - 85,91,91,98,99,107,107,119,119,134,134,139,139,143,143,145,145,160, - 160,165,165,167,167,194,194,197,197,199,199,201,201,205,205,207, - 209,214,214,220,220,222,223,229,229,243,243,245,245,264,264,276, - 276,281,281,283,283,293,293,317,317,321,323,334,334,357,358,364, - 364,367,367,378,380,395,395,398,399,408,408,419,420,436,436,469, - 469,488,488,502,502,1,0,437,504,2475,0,379,1,0,0,0,2,389,1,0,0,0, - 4,403,1,0,0,0,6,405,1,0,0,0,8,421,1,0,0,0,10,425,1,0,0,0,12,427, - 1,0,0,0,14,430,1,0,0,0,16,441,1,0,0,0,18,449,1,0,0,0,20,457,1,0, - 0,0,22,459,1,0,0,0,24,511,1,0,0,0,26,513,1,0,0,0,28,520,1,0,0,0, - 30,524,1,0,0,0,32,528,1,0,0,0,34,532,1,0,0,0,36,586,1,0,0,0,38,592, - 1,0,0,0,40,598,1,0,0,0,42,600,1,0,0,0,44,641,1,0,0,0,46,655,1,0, - 0,0,48,657,1,0,0,0,50,667,1,0,0,0,52,671,1,0,0,0,54,673,1,0,0,0, - 56,721,1,0,0,0,58,723,1,0,0,0,60,727,1,0,0,0,62,735,1,0,0,0,64,743, - 1,0,0,0,66,747,1,0,0,0,68,754,1,0,0,0,70,782,1,0,0,0,72,784,1,0, - 0,0,74,787,1,0,0,0,76,797,1,0,0,0,78,799,1,0,0,0,80,805,1,0,0,0, - 82,807,1,0,0,0,84,815,1,0,0,0,86,823,1,0,0,0,88,825,1,0,0,0,90,829, - 1,0,0,0,92,833,1,0,0,0,94,856,1,0,0,0,96,860,1,0,0,0,98,862,1,0, - 0,0,100,878,1,0,0,0,102,880,1,0,0,0,104,885,1,0,0,0,106,896,1,0, - 0,0,108,914,1,0,0,0,110,934,1,0,0,0,112,945,1,0,0,0,114,947,1,0, - 0,0,116,960,1,0,0,0,118,967,1,0,0,0,120,970,1,0,0,0,122,979,1,0, - 0,0,124,983,1,0,0,0,126,987,1,0,0,0,128,990,1,0,0,0,130,998,1,0, - 0,0,132,1003,1,0,0,0,134,1020,1,0,0,0,136,1027,1,0,0,0,138,1037, - 1,0,0,0,140,1046,1,0,0,0,142,1056,1,0,0,0,144,1075,1,0,0,0,146,1077, - 1,0,0,0,148,1090,1,0,0,0,150,1093,1,0,0,0,152,1102,1,0,0,0,154,1113, - 1,0,0,0,156,1126,1,0,0,0,158,1161,1,0,0,0,160,1180,1,0,0,0,162,1189, - 1,0,0,0,164,1198,1,0,0,0,166,1217,1,0,0,0,168,1239,1,0,0,0,170,1241, - 1,0,0,0,172,1271,1,0,0,0,174,1285,1,0,0,0,176,1287,1,0,0,0,178,1301, - 1,0,0,0,180,1327,1,0,0,0,182,1382,1,0,0,0,184,1384,1,0,0,0,186,1390, - 1,0,0,0,188,1392,1,0,0,0,190,1397,1,0,0,0,192,1402,1,0,0,0,194,1414, - 1,0,0,0,196,1431,1,0,0,0,198,1433,1,0,0,0,200,1435,1,0,0,0,202,1444, - 1,0,0,0,204,1446,1,0,0,0,206,1449,1,0,0,0,208,1499,1,0,0,0,210,1501, - 1,0,0,0,212,1504,1,0,0,0,214,1506,1,0,0,0,216,1513,1,0,0,0,218,1515, - 1,0,0,0,220,1517,1,0,0,0,222,1520,1,0,0,0,224,1529,1,0,0,0,226,1534, - 1,0,0,0,228,1548,1,0,0,0,230,1576,1,0,0,0,232,1586,1,0,0,0,234,1594, - 1,0,0,0,236,1599,1,0,0,0,238,1625,1,0,0,0,240,1627,1,0,0,0,242,1636, - 1,0,0,0,244,1647,1,0,0,0,246,1659,1,0,0,0,248,1685,1,0,0,0,250,1687, - 1,0,0,0,252,1705,1,0,0,0,254,1707,1,0,0,0,256,1712,1,0,0,0,258,1715, - 1,0,0,0,260,1729,1,0,0,0,262,1815,1,0,0,0,264,1846,1,0,0,0,266,1852, - 1,0,0,0,268,1970,1,0,0,0,270,1982,1,0,0,0,272,1986,1,0,0,0,274,1992, - 1,0,0,0,276,1994,1,0,0,0,278,1996,1,0,0,0,280,2000,1,0,0,0,282,2002, - 1,0,0,0,284,2007,1,0,0,0,286,2014,1,0,0,0,288,2018,1,0,0,0,290,2023, - 1,0,0,0,292,2033,1,0,0,0,294,2036,1,0,0,0,296,2042,1,0,0,0,298,2052, - 1,0,0,0,300,2054,1,0,0,0,302,2058,1,0,0,0,304,2069,1,0,0,0,306,2071, - 1,0,0,0,308,2073,1,0,0,0,310,2075,1,0,0,0,312,2080,1,0,0,0,314,2082, - 1,0,0,0,316,2084,1,0,0,0,318,2089,1,0,0,0,320,2106,1,0,0,0,322,2120, - 1,0,0,0,324,2134,1,0,0,0,326,2148,1,0,0,0,328,2150,1,0,0,0,330,2158, - 1,0,0,0,332,2161,1,0,0,0,334,2165,1,0,0,0,336,2168,1,0,0,0,338,2179, - 1,0,0,0,340,2189,1,0,0,0,342,2195,1,0,0,0,344,2203,1,0,0,0,346,2219, - 1,0,0,0,348,2228,1,0,0,0,350,2230,1,0,0,0,352,2232,1,0,0,0,354,2248, - 1,0,0,0,356,2250,1,0,0,0,358,2253,1,0,0,0,360,2255,1,0,0,0,362,2257, - 1,0,0,0,364,2259,1,0,0,0,366,2261,1,0,0,0,368,2263,1,0,0,0,370,2265, - 1,0,0,0,372,2267,1,0,0,0,374,2269,1,0,0,0,376,378,3,2,1,0,377,376, - 1,0,0,0,378,381,1,0,0,0,379,377,1,0,0,0,379,380,1,0,0,0,380,382, - 1,0,0,0,381,379,1,0,0,0,382,383,5,0,0,1,383,1,1,0,0,0,384,386,3, - 4,2,0,385,387,5,521,0,0,386,385,1,0,0,0,386,387,1,0,0,0,387,390, - 1,0,0,0,388,390,3,6,3,0,389,384,1,0,0,0,389,388,1,0,0,0,390,3,1, - 0,0,0,391,404,3,8,4,0,392,404,3,10,5,0,393,404,3,12,6,0,394,404, - 3,14,7,0,395,404,3,20,10,0,396,404,3,24,12,0,397,404,3,26,13,0,398, - 404,3,28,14,0,399,404,3,30,15,0,400,404,3,32,16,0,401,404,3,34,17, - 0,402,404,3,36,18,0,403,391,1,0,0,0,403,392,1,0,0,0,403,393,1,0, - 0,0,403,394,1,0,0,0,403,395,1,0,0,0,403,396,1,0,0,0,403,397,1,0, - 0,0,403,398,1,0,0,0,403,399,1,0,0,0,403,400,1,0,0,0,403,401,1,0, - 0,0,403,402,1,0,0,0,404,5,1,0,0,0,405,406,5,521,0,0,406,7,1,0,0, - 0,407,422,3,40,20,0,408,422,3,104,52,0,409,422,3,106,53,0,410,422, - 3,108,54,0,411,422,3,102,51,0,412,422,3,114,57,0,413,422,3,128,64, - 0,414,422,3,130,65,0,415,422,3,132,66,0,416,422,3,134,67,0,417,422, - 3,136,68,0,418,422,3,138,69,0,419,422,3,140,70,0,420,422,3,142,71, - 0,421,407,1,0,0,0,421,408,1,0,0,0,421,409,1,0,0,0,421,410,1,0,0, - 0,421,411,1,0,0,0,421,412,1,0,0,0,421,413,1,0,0,0,421,414,1,0,0, - 0,421,415,1,0,0,0,421,416,1,0,0,0,421,417,1,0,0,0,421,418,1,0,0, - 0,421,419,1,0,0,0,421,420,1,0,0,0,422,9,1,0,0,0,423,426,3,158,79, - 0,424,426,3,144,72,0,425,423,1,0,0,0,425,424,1,0,0,0,426,11,1,0, - 0,0,427,428,7,0,0,0,428,429,3,322,161,0,429,13,1,0,0,0,430,434,5, - 135,0,0,431,435,3,16,8,0,432,433,5,479,0,0,433,435,5,146,0,0,434, - 431,1,0,0,0,434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436, - 440,3,10,5,0,437,440,3,146,73,0,438,440,3,156,78,0,439,436,1,0,0, - 0,439,437,1,0,0,0,439,438,1,0,0,0,440,15,1,0,0,0,441,446,3,18,9, - 0,442,443,5,520,0,0,443,445,3,18,9,0,444,442,1,0,0,0,445,448,1,0, - 0,0,446,444,1,0,0,0,446,447,1,0,0,0,447,17,1,0,0,0,448,446,1,0,0, - 0,449,450,7,1,0,0,450,19,1,0,0,0,451,452,5,410,0,0,452,453,5,441, - 0,0,453,458,3,312,156,0,454,455,5,410,0,0,455,458,3,316,158,0,456, - 458,3,22,11,0,457,451,1,0,0,0,457,454,1,0,0,0,457,456,1,0,0,0,458, - 21,1,0,0,0,459,460,5,410,0,0,460,461,5,227,0,0,461,466,3,328,164, - 0,462,463,5,520,0,0,463,465,3,328,164,0,464,462,1,0,0,0,465,468, - 1,0,0,0,466,464,1,0,0,0,466,467,1,0,0,0,467,23,1,0,0,0,468,466,1, - 0,0,0,469,470,5,341,0,0,470,512,7,2,0,0,471,472,5,341,0,0,472,473, - 5,76,0,0,473,512,7,3,0,0,474,475,5,341,0,0,475,478,5,374,0,0,476, - 477,7,4,0,0,477,479,3,316,158,0,478,476,1,0,0,0,478,479,1,0,0,0, - 479,481,1,0,0,0,480,482,3,264,132,0,481,480,1,0,0,0,481,482,1,0, - 0,0,482,512,1,0,0,0,483,484,5,341,0,0,484,485,5,58,0,0,485,488,7, - 4,0,0,486,489,3,324,162,0,487,489,3,322,161,0,488,486,1,0,0,0,488, - 487,1,0,0,0,489,491,1,0,0,0,490,492,3,264,132,0,491,490,1,0,0,0, - 491,492,1,0,0,0,492,512,1,0,0,0,493,494,5,341,0,0,494,499,5,72,0, - 0,495,496,5,373,0,0,496,500,3,322,161,0,497,498,5,501,0,0,498,500, - 3,324,162,0,499,495,1,0,0,0,499,497,1,0,0,0,500,512,1,0,0,0,501, - 503,5,341,0,0,502,504,5,411,0,0,503,502,1,0,0,0,503,504,1,0,0,0, - 504,505,1,0,0,0,505,512,5,154,0,0,506,508,5,341,0,0,507,509,5,152, - 0,0,508,507,1,0,0,0,508,509,1,0,0,0,509,510,1,0,0,0,510,512,5,227, - 0,0,511,469,1,0,0,0,511,471,1,0,0,0,511,474,1,0,0,0,511,483,1,0, - 0,0,511,493,1,0,0,0,511,501,1,0,0,0,511,506,1,0,0,0,512,25,1,0,0, - 0,513,514,5,468,0,0,514,515,5,226,0,0,515,518,3,328,164,0,516,517, - 5,433,0,0,517,519,3,336,168,0,518,516,1,0,0,0,518,519,1,0,0,0,519, - 27,1,0,0,0,520,521,5,500,0,0,521,522,5,226,0,0,522,523,3,328,164, - 0,523,29,1,0,0,0,524,526,5,340,0,0,525,527,3,338,169,0,526,525,1, - 0,0,0,526,527,1,0,0,0,527,31,1,0,0,0,528,530,5,312,0,0,529,531,3, - 340,170,0,530,529,1,0,0,0,530,531,1,0,0,0,531,33,1,0,0,0,532,533, - 7,5,0,0,533,534,5,463,0,0,534,535,3,112,56,0,535,35,1,0,0,0,536, - 537,5,437,0,0,537,538,5,463,0,0,538,539,5,433,0,0,539,542,3,38,19, - 0,540,541,5,17,0,0,541,543,3,328,164,0,542,540,1,0,0,0,542,543,1, - 0,0,0,543,587,1,0,0,0,544,545,5,437,0,0,545,546,5,456,0,0,546,547, - 5,433,0,0,547,550,3,38,19,0,548,549,5,17,0,0,549,551,3,328,164,0, - 550,548,1,0,0,0,550,551,1,0,0,0,551,554,1,0,0,0,552,553,5,311,0, - 0,553,555,3,328,164,0,554,552,1,0,0,0,554,555,1,0,0,0,555,587,1, - 0,0,0,556,557,5,437,0,0,557,558,7,6,0,0,558,559,5,433,0,0,559,560, - 3,38,19,0,560,561,5,311,0,0,561,562,3,328,164,0,562,587,1,0,0,0, - 563,564,5,437,0,0,564,565,5,486,0,0,565,587,3,38,19,0,566,567,5, - 437,0,0,567,568,5,453,0,0,568,569,5,456,0,0,569,570,5,433,0,0,570, - 571,3,38,19,0,571,572,5,311,0,0,572,573,3,328,164,0,573,574,5,466, - 0,0,574,575,3,328,164,0,575,587,1,0,0,0,576,577,5,437,0,0,577,578, - 5,443,0,0,578,579,5,456,0,0,579,580,5,433,0,0,580,581,3,38,19,0, - 581,582,5,146,0,0,582,583,3,328,164,0,583,584,5,17,0,0,584,585,3, - 328,164,0,585,587,1,0,0,0,586,536,1,0,0,0,586,544,1,0,0,0,586,556, - 1,0,0,0,586,563,1,0,0,0,586,566,1,0,0,0,586,576,1,0,0,0,587,37,1, - 0,0,0,588,590,5,534,0,0,589,588,1,0,0,0,589,590,1,0,0,0,590,591, - 1,0,0,0,591,593,3,328,164,0,592,589,1,0,0,0,593,594,1,0,0,0,594, - 592,1,0,0,0,594,595,1,0,0,0,595,39,1,0,0,0,596,599,3,42,21,0,597, - 599,3,44,22,0,598,596,1,0,0,0,598,597,1,0,0,0,599,41,1,0,0,0,600, - 602,5,72,0,0,601,603,5,497,0,0,602,601,1,0,0,0,602,603,1,0,0,0,603, - 604,1,0,0,0,604,606,5,373,0,0,605,607,3,332,166,0,606,605,1,0,0, - 0,606,607,1,0,0,0,607,608,1,0,0,0,608,609,3,320,160,0,609,610,5, - 516,0,0,610,615,3,46,23,0,611,612,5,520,0,0,612,614,3,46,23,0,613, - 611,1,0,0,0,614,617,1,0,0,0,615,613,1,0,0,0,615,616,1,0,0,0,616, - 620,1,0,0,0,617,615,1,0,0,0,618,619,5,520,0,0,619,621,3,82,41,0, - 620,618,1,0,0,0,620,621,1,0,0,0,621,624,1,0,0,0,622,623,5,520,0, - 0,623,625,3,84,42,0,624,622,1,0,0,0,624,625,1,0,0,0,625,628,1,0, - 0,0,626,627,5,520,0,0,627,629,3,88,44,0,628,626,1,0,0,0,628,629, - 1,0,0,0,629,630,1,0,0,0,630,632,5,517,0,0,631,633,3,72,36,0,632, - 631,1,0,0,0,632,633,1,0,0,0,633,635,1,0,0,0,634,636,3,90,45,0,635, - 634,1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,639,3,330,165,0, - 638,640,3,98,49,0,639,638,1,0,0,0,639,640,1,0,0,0,640,43,1,0,0,0, - 641,642,5,72,0,0,642,644,5,373,0,0,643,645,3,332,166,0,644,643,1, - 0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,647,3,320,160,0,647,650, - 3,330,165,0,648,649,5,17,0,0,649,651,3,158,79,0,650,648,1,0,0,0, - 650,651,1,0,0,0,651,45,1,0,0,0,652,656,3,48,24,0,653,656,3,74,37, - 0,654,656,3,78,39,0,655,652,1,0,0,0,655,653,1,0,0,0,655,654,1,0, - 0,0,656,47,1,0,0,0,657,658,3,50,25,0,658,660,3,56,28,0,659,661,3, - 70,35,0,660,659,1,0,0,0,660,661,1,0,0,0,661,663,1,0,0,0,662,664, - 3,72,36,0,663,662,1,0,0,0,663,664,1,0,0,0,664,49,1,0,0,0,665,668, - 3,328,164,0,666,668,3,258,129,0,667,665,1,0,0,0,667,666,1,0,0,0, - 668,51,1,0,0,0,669,672,3,328,164,0,670,672,4,26,0,0,671,669,1,0, - 0,0,671,670,1,0,0,0,672,53,1,0,0,0,673,674,5,516,0,0,674,679,3,52, - 26,0,675,676,5,520,0,0,676,678,3,52,26,0,677,675,1,0,0,0,678,681, - 1,0,0,0,679,677,1,0,0,0,679,680,1,0,0,0,680,682,1,0,0,0,681,679, - 1,0,0,0,682,683,5,517,0,0,683,55,1,0,0,0,684,722,7,7,0,0,685,687, - 7,8,0,0,686,688,3,58,29,0,687,686,1,0,0,0,687,688,1,0,0,0,688,722, - 1,0,0,0,689,691,5,379,0,0,690,692,3,58,29,0,691,690,1,0,0,0,691, - 692,1,0,0,0,692,699,1,0,0,0,693,695,7,9,0,0,694,696,5,206,0,0,695, - 694,1,0,0,0,695,696,1,0,0,0,696,697,1,0,0,0,697,698,5,378,0,0,698, - 700,5,504,0,0,699,693,1,0,0,0,699,700,1,0,0,0,700,722,1,0,0,0,701, - 703,7,10,0,0,702,704,3,60,30,0,703,702,1,0,0,0,703,704,1,0,0,0,704, - 722,1,0,0,0,705,707,7,11,0,0,706,708,3,64,32,0,707,706,1,0,0,0,707, - 708,1,0,0,0,708,722,1,0,0,0,709,711,5,469,0,0,710,712,3,66,33,0, - 711,710,1,0,0,0,711,712,1,0,0,0,712,722,1,0,0,0,713,715,5,321,0, - 0,714,716,3,68,34,0,715,714,1,0,0,0,715,716,1,0,0,0,716,722,1,0, - 0,0,717,719,5,294,0,0,718,720,3,62,31,0,719,718,1,0,0,0,719,720, - 1,0,0,0,720,722,1,0,0,0,721,684,1,0,0,0,721,685,1,0,0,0,721,689, - 1,0,0,0,721,701,1,0,0,0,721,705,1,0,0,0,721,709,1,0,0,0,721,713, - 1,0,0,0,721,717,1,0,0,0,722,57,1,0,0,0,723,724,5,516,0,0,724,725, - 3,360,180,0,725,726,5,517,0,0,726,59,1,0,0,0,727,728,5,516,0,0,728, - 731,3,360,180,0,729,730,5,520,0,0,730,732,3,360,180,0,731,729,1, - 0,0,0,731,732,1,0,0,0,732,733,1,0,0,0,733,734,5,517,0,0,734,61,1, - 0,0,0,735,736,5,516,0,0,736,739,3,358,179,0,737,738,5,520,0,0,738, - 740,3,358,179,0,739,737,1,0,0,0,739,740,1,0,0,0,740,741,1,0,0,0, - 741,742,5,517,0,0,742,63,1,0,0,0,743,744,5,507,0,0,744,745,3,56, - 28,0,745,746,5,506,0,0,746,65,1,0,0,0,747,748,5,507,0,0,748,749, - 3,56,28,0,749,750,5,520,0,0,750,751,3,56,28,0,751,752,1,0,0,0,752, - 753,5,506,0,0,753,67,1,0,0,0,754,755,5,507,0,0,755,756,3,52,26,0, - 756,763,3,56,28,0,757,758,5,520,0,0,758,759,3,52,26,0,759,760,3, - 56,28,0,760,762,1,0,0,0,761,757,1,0,0,0,762,765,1,0,0,0,763,761, + 1,133,1,133,3,133,1938,8,133,1,133,1,133,1,133,5,133,1943,8,133, + 10,133,12,133,1946,9,133,3,133,1948,8,133,1,133,1,133,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,3,133,1959,8,133,1,133,1,133,1,133, + 1,133,1,133,5,133,1966,8,133,10,133,12,133,1969,9,133,1,134,1,134, + 1,135,1,135,3,135,1975,8,135,1,136,1,136,1,136,1,136,3,136,1981, + 8,136,1,137,1,137,1,138,1,138,1,139,1,139,3,139,1989,8,139,1,140, + 1,140,1,140,3,140,1994,8,140,1,141,1,141,3,141,1998,8,141,1,142, + 1,142,1,142,4,142,2003,8,142,11,142,12,142,2004,1,143,1,143,1,143, + 3,143,2010,8,143,1,144,1,144,1,144,1,144,1,144,1,145,3,145,2018, + 8,145,1,145,1,145,3,145,2022,8,145,1,146,3,146,2025,8,146,1,146, + 1,146,3,146,2029,8,146,1,147,1,147,1,147,1,148,1,148,4,148,2036, + 8,148,11,148,12,148,2037,1,148,3,148,2041,8,148,1,149,1,149,1,149, + 1,149,1,150,1,150,1,150,5,150,2050,8,150,10,150,12,150,2053,9,150, + 1,151,1,151,1,151,3,151,2058,8,151,1,152,1,152,1,153,1,153,1,154, + 1,154,1,154,1,154,1,154,1,155,1,155,1,156,1,156,1,157,1,157,1,157, + 3,157,2076,8,157,1,158,1,158,1,158,3,158,2081,8,158,1,159,1,159, + 1,159,3,159,2086,8,159,1,159,1,159,1,159,1,159,1,159,3,159,2093, + 8,159,3,159,2095,8,159,1,160,1,160,1,160,3,160,2100,8,160,1,160, + 1,160,1,160,1,160,1,160,3,160,2107,8,160,3,160,2109,8,160,1,161, + 1,161,1,161,3,161,2114,8,161,1,161,1,161,1,161,1,161,1,161,3,161, + 2121,8,161,3,161,2123,8,161,1,162,1,162,1,162,3,162,2128,8,162,1, + 162,1,162,1,162,1,162,1,162,3,162,2135,8,162,3,162,2137,8,162,1, + 163,1,163,1,163,5,163,2142,8,163,10,163,12,163,2145,9,163,1,164, + 1,164,1,164,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,167,1,167, + 1,167,1,167,5,167,2161,8,167,10,167,12,167,2164,9,167,1,167,1,167, + 1,168,1,168,3,168,2170,8,168,1,168,3,168,2173,8,168,1,169,1,169, + 1,169,3,169,2178,8,169,1,170,1,170,1,170,1,170,3,170,2184,8,170, + 1,171,1,171,1,171,1,171,1,171,1,171,3,171,2192,8,171,1,172,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172, + 1,172,3,172,2208,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173, + 3,173,2217,8,173,1,174,1,174,1,175,1,175,1,176,1,176,1,176,1,176, + 3,176,2227,8,176,1,176,1,176,1,176,1,176,1,176,3,176,2234,8,176, + 1,176,3,176,2237,8,176,1,177,1,177,1,177,1,178,1,178,1,179,1,179, + 1,180,1,180,1,181,1,181,1,182,1,182,1,183,1,183,1,184,1,184,1,185, + 1,185,1,186,1,186,1,186,1,2143,5,156,176,258,264,266,187,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,0,45,2,0,109,109,450,450, + 3,0,45,45,128,128,188,188,4,0,42,42,90,90,422,422,464,464,2,0,441, + 441,447,447,2,0,151,151,170,170,2,0,437,437,489,489,2,0,482,485, + 487,487,3,0,32,32,91,91,244,244,11,0,28,29,35,35,46,46,92,92,178, + 179,344,344,360,360,378,378,381,381,387,387,416,417,2,0,433,433, + 435,435,4,0,101,102,115,115,144,144,246,246,2,0,13,13,231,231,2, + 0,455,455,462,462,3,0,5,5,270,270,444,444,3,0,266,266,455,455,462, + 462,3,0,425,425,458,458,477,477,3,0,330,330,465,465,481,481,2,0, + 440,440,490,490,2,0,183,183,265,265,3,0,130,130,180,180,402,402, + 4,0,152,152,174,174,201,201,317,317,3,0,445,445,459,459,499,499, + 4,0,250,250,446,446,494,496,498,498,2,0,74,74,320,320,3,0,459,459, + 492,492,499,499,2,0,439,439,450,450,2,0,457,457,467,467,4,0,140, + 140,244,244,397,397,404,404,2,0,19,19,369,369,2,0,5,5,11,11,2,0, + 509,509,529,530,4,0,452,452,527,527,531,531,534,534,2,0,529,530, + 532,532,1,0,529,530,1,0,538,539,2,0,538,538,541,541,4,0,452,452, + 527,527,529,531,533,534,3,0,241,241,508,509,529,530,2,0,140,140, + 397,397,2,0,5,5,113,113,10,0,97,97,165,165,222,222,229,229,334,334, + 436,436,470,470,472,472,488,488,502,502,15,0,97,97,165,165,222,222, + 229,229,334,334,427,427,436,436,442,442,448,449,454,454,460,460, + 470,475,488,488,491,491,502,503,9,0,5,5,13,13,33,33,85,85,113,113, + 200,200,389,389,413,413,527,527,55,0,4,4,13,13,23,23,38,38,41,41, + 43,44,54,54,56,56,69,69,75,75,78,78,84,85,91,91,98,99,107,107,119, + 119,134,134,139,139,143,143,145,145,160,160,165,165,167,167,194, + 194,197,197,199,199,201,201,205,205,207,209,214,214,220,220,222, + 223,229,229,243,243,245,245,264,264,276,276,281,281,283,283,293, + 293,317,317,321,323,334,334,357,358,364,364,367,367,378,380,395, + 395,398,399,408,408,419,420,436,436,469,469,488,488,502,502,1,0, + 437,504,2460,0,377,1,0,0,0,2,387,1,0,0,0,4,401,1,0,0,0,6,403,1,0, + 0,0,8,419,1,0,0,0,10,423,1,0,0,0,12,425,1,0,0,0,14,428,1,0,0,0,16, + 439,1,0,0,0,18,447,1,0,0,0,20,455,1,0,0,0,22,457,1,0,0,0,24,509, + 1,0,0,0,26,511,1,0,0,0,28,518,1,0,0,0,30,522,1,0,0,0,32,526,1,0, + 0,0,34,530,1,0,0,0,36,584,1,0,0,0,38,590,1,0,0,0,40,596,1,0,0,0, + 42,598,1,0,0,0,44,640,1,0,0,0,46,654,1,0,0,0,48,656,1,0,0,0,50,667, + 1,0,0,0,52,671,1,0,0,0,54,673,1,0,0,0,56,721,1,0,0,0,58,723,1,0, + 0,0,60,727,1,0,0,0,62,735,1,0,0,0,64,743,1,0,0,0,66,747,1,0,0,0, + 68,754,1,0,0,0,70,782,1,0,0,0,72,784,1,0,0,0,74,794,1,0,0,0,76,796, + 1,0,0,0,78,803,1,0,0,0,80,805,1,0,0,0,82,813,1,0,0,0,84,821,1,0, + 0,0,86,823,1,0,0,0,88,827,1,0,0,0,90,831,1,0,0,0,92,854,1,0,0,0, + 94,858,1,0,0,0,96,860,1,0,0,0,98,876,1,0,0,0,100,878,1,0,0,0,102, + 883,1,0,0,0,104,895,1,0,0,0,106,914,1,0,0,0,108,934,1,0,0,0,110, + 945,1,0,0,0,112,947,1,0,0,0,114,960,1,0,0,0,116,967,1,0,0,0,118, + 970,1,0,0,0,120,979,1,0,0,0,122,983,1,0,0,0,124,987,1,0,0,0,126, + 990,1,0,0,0,128,998,1,0,0,0,130,1003,1,0,0,0,132,1020,1,0,0,0,134, + 1027,1,0,0,0,136,1037,1,0,0,0,138,1046,1,0,0,0,140,1056,1,0,0,0, + 142,1075,1,0,0,0,144,1077,1,0,0,0,146,1090,1,0,0,0,148,1093,1,0, + 0,0,150,1102,1,0,0,0,152,1113,1,0,0,0,154,1126,1,0,0,0,156,1161, + 1,0,0,0,158,1180,1,0,0,0,160,1189,1,0,0,0,162,1198,1,0,0,0,164,1217, + 1,0,0,0,166,1239,1,0,0,0,168,1241,1,0,0,0,170,1271,1,0,0,0,172,1285, + 1,0,0,0,174,1287,1,0,0,0,176,1301,1,0,0,0,178,1327,1,0,0,0,180,1370, + 1,0,0,0,182,1372,1,0,0,0,184,1378,1,0,0,0,186,1380,1,0,0,0,188,1385, + 1,0,0,0,190,1390,1,0,0,0,192,1402,1,0,0,0,194,1419,1,0,0,0,196,1421, + 1,0,0,0,198,1423,1,0,0,0,200,1432,1,0,0,0,202,1434,1,0,0,0,204,1437, + 1,0,0,0,206,1487,1,0,0,0,208,1489,1,0,0,0,210,1492,1,0,0,0,212,1494, + 1,0,0,0,214,1501,1,0,0,0,216,1503,1,0,0,0,218,1505,1,0,0,0,220,1508, + 1,0,0,0,222,1517,1,0,0,0,224,1522,1,0,0,0,226,1536,1,0,0,0,228,1564, + 1,0,0,0,230,1574,1,0,0,0,232,1582,1,0,0,0,234,1587,1,0,0,0,236,1613, + 1,0,0,0,238,1615,1,0,0,0,240,1624,1,0,0,0,242,1635,1,0,0,0,244,1647, + 1,0,0,0,246,1673,1,0,0,0,248,1675,1,0,0,0,250,1693,1,0,0,0,252,1695, + 1,0,0,0,254,1700,1,0,0,0,256,1703,1,0,0,0,258,1717,1,0,0,0,260,1803, + 1,0,0,0,262,1834,1,0,0,0,264,1840,1,0,0,0,266,1958,1,0,0,0,268,1970, + 1,0,0,0,270,1974,1,0,0,0,272,1980,1,0,0,0,274,1982,1,0,0,0,276,1984, + 1,0,0,0,278,1988,1,0,0,0,280,1990,1,0,0,0,282,1995,1,0,0,0,284,2002, + 1,0,0,0,286,2006,1,0,0,0,288,2011,1,0,0,0,290,2021,1,0,0,0,292,2024, + 1,0,0,0,294,2030,1,0,0,0,296,2040,1,0,0,0,298,2042,1,0,0,0,300,2046, + 1,0,0,0,302,2057,1,0,0,0,304,2059,1,0,0,0,306,2061,1,0,0,0,308,2063, + 1,0,0,0,310,2068,1,0,0,0,312,2070,1,0,0,0,314,2072,1,0,0,0,316,2077, + 1,0,0,0,318,2094,1,0,0,0,320,2108,1,0,0,0,322,2122,1,0,0,0,324,2136, + 1,0,0,0,326,2138,1,0,0,0,328,2146,1,0,0,0,330,2149,1,0,0,0,332,2153, + 1,0,0,0,334,2156,1,0,0,0,336,2167,1,0,0,0,338,2177,1,0,0,0,340,2183, + 1,0,0,0,342,2191,1,0,0,0,344,2207,1,0,0,0,346,2216,1,0,0,0,348,2218, + 1,0,0,0,350,2220,1,0,0,0,352,2236,1,0,0,0,354,2238,1,0,0,0,356,2241, + 1,0,0,0,358,2243,1,0,0,0,360,2245,1,0,0,0,362,2247,1,0,0,0,364,2249, + 1,0,0,0,366,2251,1,0,0,0,368,2253,1,0,0,0,370,2255,1,0,0,0,372,2257, + 1,0,0,0,374,376,3,2,1,0,375,374,1,0,0,0,376,379,1,0,0,0,377,375, + 1,0,0,0,377,378,1,0,0,0,378,380,1,0,0,0,379,377,1,0,0,0,380,381, + 5,0,0,1,381,1,1,0,0,0,382,384,3,4,2,0,383,385,5,521,0,0,384,383, + 1,0,0,0,384,385,1,0,0,0,385,388,1,0,0,0,386,388,3,6,3,0,387,382, + 1,0,0,0,387,386,1,0,0,0,388,3,1,0,0,0,389,402,3,8,4,0,390,402,3, + 10,5,0,391,402,3,12,6,0,392,402,3,14,7,0,393,402,3,20,10,0,394,402, + 3,24,12,0,395,402,3,26,13,0,396,402,3,28,14,0,397,402,3,30,15,0, + 398,402,3,32,16,0,399,402,3,34,17,0,400,402,3,36,18,0,401,389,1, + 0,0,0,401,390,1,0,0,0,401,391,1,0,0,0,401,392,1,0,0,0,401,393,1, + 0,0,0,401,394,1,0,0,0,401,395,1,0,0,0,401,396,1,0,0,0,401,397,1, + 0,0,0,401,398,1,0,0,0,401,399,1,0,0,0,401,400,1,0,0,0,402,5,1,0, + 0,0,403,404,5,521,0,0,404,7,1,0,0,0,405,420,3,40,20,0,406,420,3, + 102,51,0,407,420,3,104,52,0,408,420,3,106,53,0,409,420,3,100,50, + 0,410,420,3,112,56,0,411,420,3,126,63,0,412,420,3,128,64,0,413,420, + 3,130,65,0,414,420,3,132,66,0,415,420,3,134,67,0,416,420,3,136,68, + 0,417,420,3,138,69,0,418,420,3,140,70,0,419,405,1,0,0,0,419,406, + 1,0,0,0,419,407,1,0,0,0,419,408,1,0,0,0,419,409,1,0,0,0,419,410, + 1,0,0,0,419,411,1,0,0,0,419,412,1,0,0,0,419,413,1,0,0,0,419,414, + 1,0,0,0,419,415,1,0,0,0,419,416,1,0,0,0,419,417,1,0,0,0,419,418, + 1,0,0,0,420,9,1,0,0,0,421,424,3,156,78,0,422,424,3,142,71,0,423, + 421,1,0,0,0,423,422,1,0,0,0,424,11,1,0,0,0,425,426,7,0,0,0,426,427, + 3,320,160,0,427,13,1,0,0,0,428,432,5,135,0,0,429,433,3,16,8,0,430, + 431,5,479,0,0,431,433,5,146,0,0,432,429,1,0,0,0,432,430,1,0,0,0, + 432,433,1,0,0,0,433,437,1,0,0,0,434,438,3,10,5,0,435,438,3,144,72, + 0,436,438,3,154,77,0,437,434,1,0,0,0,437,435,1,0,0,0,437,436,1,0, + 0,0,438,15,1,0,0,0,439,444,3,18,9,0,440,441,5,520,0,0,441,443,3, + 18,9,0,442,440,1,0,0,0,443,446,1,0,0,0,444,442,1,0,0,0,444,445,1, + 0,0,0,445,17,1,0,0,0,446,444,1,0,0,0,447,448,7,1,0,0,448,19,1,0, + 0,0,449,450,5,410,0,0,450,451,5,441,0,0,451,456,3,310,155,0,452, + 453,5,410,0,0,453,456,3,314,157,0,454,456,3,22,11,0,455,449,1,0, + 0,0,455,452,1,0,0,0,455,454,1,0,0,0,456,21,1,0,0,0,457,458,5,410, + 0,0,458,459,5,227,0,0,459,464,3,326,163,0,460,461,5,520,0,0,461, + 463,3,326,163,0,462,460,1,0,0,0,463,466,1,0,0,0,464,462,1,0,0,0, + 464,465,1,0,0,0,465,23,1,0,0,0,466,464,1,0,0,0,467,468,5,341,0,0, + 468,510,7,2,0,0,469,470,5,341,0,0,470,471,5,76,0,0,471,510,7,3,0, + 0,472,473,5,341,0,0,473,476,5,374,0,0,474,475,7,4,0,0,475,477,3, + 314,157,0,476,474,1,0,0,0,476,477,1,0,0,0,477,479,1,0,0,0,478,480, + 3,262,131,0,479,478,1,0,0,0,479,480,1,0,0,0,480,510,1,0,0,0,481, + 482,5,341,0,0,482,483,5,58,0,0,483,486,7,4,0,0,484,487,3,322,161, + 0,485,487,3,320,160,0,486,484,1,0,0,0,486,485,1,0,0,0,487,489,1, + 0,0,0,488,490,3,262,131,0,489,488,1,0,0,0,489,490,1,0,0,0,490,510, + 1,0,0,0,491,492,5,341,0,0,492,497,5,72,0,0,493,494,5,373,0,0,494, + 498,3,320,160,0,495,496,5,501,0,0,496,498,3,322,161,0,497,493,1, + 0,0,0,497,495,1,0,0,0,498,510,1,0,0,0,499,501,5,341,0,0,500,502, + 5,411,0,0,501,500,1,0,0,0,501,502,1,0,0,0,502,503,1,0,0,0,503,510, + 5,154,0,0,504,506,5,341,0,0,505,507,5,152,0,0,506,505,1,0,0,0,506, + 507,1,0,0,0,507,508,1,0,0,0,508,510,5,227,0,0,509,467,1,0,0,0,509, + 469,1,0,0,0,509,472,1,0,0,0,509,481,1,0,0,0,509,491,1,0,0,0,509, + 499,1,0,0,0,509,504,1,0,0,0,510,25,1,0,0,0,511,512,5,468,0,0,512, + 513,5,226,0,0,513,516,3,326,163,0,514,515,5,433,0,0,515,517,3,334, + 167,0,516,514,1,0,0,0,516,517,1,0,0,0,517,27,1,0,0,0,518,519,5,500, + 0,0,519,520,5,226,0,0,520,521,3,326,163,0,521,29,1,0,0,0,522,524, + 5,340,0,0,523,525,3,336,168,0,524,523,1,0,0,0,524,525,1,0,0,0,525, + 31,1,0,0,0,526,528,5,312,0,0,527,529,3,338,169,0,528,527,1,0,0,0, + 528,529,1,0,0,0,529,33,1,0,0,0,530,531,7,5,0,0,531,532,5,463,0,0, + 532,533,3,110,55,0,533,35,1,0,0,0,534,535,5,437,0,0,535,536,5,463, + 0,0,536,537,5,433,0,0,537,540,3,38,19,0,538,539,5,17,0,0,539,541, + 3,326,163,0,540,538,1,0,0,0,540,541,1,0,0,0,541,585,1,0,0,0,542, + 543,5,437,0,0,543,544,5,456,0,0,544,545,5,433,0,0,545,548,3,38,19, + 0,546,547,5,17,0,0,547,549,3,326,163,0,548,546,1,0,0,0,548,549,1, + 0,0,0,549,552,1,0,0,0,550,551,5,311,0,0,551,553,3,326,163,0,552, + 550,1,0,0,0,552,553,1,0,0,0,553,585,1,0,0,0,554,555,5,437,0,0,555, + 556,7,6,0,0,556,557,5,433,0,0,557,558,3,38,19,0,558,559,5,311,0, + 0,559,560,3,326,163,0,560,585,1,0,0,0,561,562,5,437,0,0,562,563, + 5,486,0,0,563,585,3,38,19,0,564,565,5,437,0,0,565,566,5,453,0,0, + 566,567,5,456,0,0,567,568,5,433,0,0,568,569,3,38,19,0,569,570,5, + 311,0,0,570,571,3,326,163,0,571,572,5,466,0,0,572,573,3,326,163, + 0,573,585,1,0,0,0,574,575,5,437,0,0,575,576,5,443,0,0,576,577,5, + 456,0,0,577,578,5,433,0,0,578,579,3,38,19,0,579,580,5,146,0,0,580, + 581,3,326,163,0,581,582,5,17,0,0,582,583,3,326,163,0,583,585,1,0, + 0,0,584,534,1,0,0,0,584,542,1,0,0,0,584,554,1,0,0,0,584,561,1,0, + 0,0,584,564,1,0,0,0,584,574,1,0,0,0,585,37,1,0,0,0,586,588,5,534, + 0,0,587,586,1,0,0,0,587,588,1,0,0,0,588,589,1,0,0,0,589,591,3,326, + 163,0,590,587,1,0,0,0,591,592,1,0,0,0,592,590,1,0,0,0,592,593,1, + 0,0,0,593,39,1,0,0,0,594,597,3,42,21,0,595,597,3,44,22,0,596,594, + 1,0,0,0,596,595,1,0,0,0,597,41,1,0,0,0,598,600,5,72,0,0,599,601, + 5,497,0,0,600,599,1,0,0,0,600,601,1,0,0,0,601,602,1,0,0,0,602,604, + 5,373,0,0,603,605,3,330,165,0,604,603,1,0,0,0,604,605,1,0,0,0,605, + 606,1,0,0,0,606,607,3,318,159,0,607,608,5,516,0,0,608,613,3,46,23, + 0,609,610,5,520,0,0,610,612,3,46,23,0,611,609,1,0,0,0,612,615,1, + 0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614,618,1,0,0,0,615,613,1, + 0,0,0,616,617,5,520,0,0,617,619,3,80,40,0,618,616,1,0,0,0,618,619, + 1,0,0,0,619,622,1,0,0,0,620,621,5,520,0,0,621,623,3,82,41,0,622, + 620,1,0,0,0,622,623,1,0,0,0,623,626,1,0,0,0,624,625,5,520,0,0,625, + 627,3,86,43,0,626,624,1,0,0,0,626,627,1,0,0,0,627,628,1,0,0,0,628, + 631,5,517,0,0,629,630,5,59,0,0,630,632,5,537,0,0,631,629,1,0,0,0, + 631,632,1,0,0,0,632,634,1,0,0,0,633,635,3,88,44,0,634,633,1,0,0, + 0,634,635,1,0,0,0,635,636,1,0,0,0,636,638,3,328,164,0,637,639,3, + 96,48,0,638,637,1,0,0,0,638,639,1,0,0,0,639,43,1,0,0,0,640,641,5, + 72,0,0,641,643,5,373,0,0,642,644,3,330,165,0,643,642,1,0,0,0,643, + 644,1,0,0,0,644,645,1,0,0,0,645,646,3,318,159,0,646,649,3,328,164, + 0,647,648,5,17,0,0,648,650,3,156,78,0,649,647,1,0,0,0,649,650,1, + 0,0,0,650,45,1,0,0,0,651,655,3,48,24,0,652,655,3,72,36,0,653,655, + 3,76,38,0,654,651,1,0,0,0,654,652,1,0,0,0,654,653,1,0,0,0,655,47, + 1,0,0,0,656,657,3,50,25,0,657,659,3,56,28,0,658,660,3,70,35,0,659, + 658,1,0,0,0,659,660,1,0,0,0,660,663,1,0,0,0,661,662,5,59,0,0,662, + 664,5,537,0,0,663,661,1,0,0,0,663,664,1,0,0,0,664,49,1,0,0,0,665, + 668,3,326,163,0,666,668,3,256,128,0,667,665,1,0,0,0,667,666,1,0, + 0,0,668,51,1,0,0,0,669,672,3,326,163,0,670,672,4,26,0,0,671,669, + 1,0,0,0,671,670,1,0,0,0,672,53,1,0,0,0,673,674,5,516,0,0,674,679, + 3,52,26,0,675,676,5,520,0,0,676,678,3,52,26,0,677,675,1,0,0,0,678, + 681,1,0,0,0,679,677,1,0,0,0,679,680,1,0,0,0,680,682,1,0,0,0,681, + 679,1,0,0,0,682,683,5,517,0,0,683,55,1,0,0,0,684,722,7,7,0,0,685, + 687,7,8,0,0,686,688,3,58,29,0,687,686,1,0,0,0,687,688,1,0,0,0,688, + 722,1,0,0,0,689,691,5,379,0,0,690,692,3,58,29,0,691,690,1,0,0,0, + 691,692,1,0,0,0,692,699,1,0,0,0,693,695,7,9,0,0,694,696,5,206,0, + 0,695,694,1,0,0,0,695,696,1,0,0,0,696,697,1,0,0,0,697,698,5,378, + 0,0,698,700,5,504,0,0,699,693,1,0,0,0,699,700,1,0,0,0,700,722,1, + 0,0,0,701,703,7,10,0,0,702,704,3,60,30,0,703,702,1,0,0,0,703,704, + 1,0,0,0,704,722,1,0,0,0,705,707,7,11,0,0,706,708,3,64,32,0,707,706, + 1,0,0,0,707,708,1,0,0,0,708,722,1,0,0,0,709,711,5,469,0,0,710,712, + 3,66,33,0,711,710,1,0,0,0,711,712,1,0,0,0,712,722,1,0,0,0,713,715, + 5,321,0,0,714,716,3,68,34,0,715,714,1,0,0,0,715,716,1,0,0,0,716, + 722,1,0,0,0,717,719,5,294,0,0,718,720,3,62,31,0,719,718,1,0,0,0, + 719,720,1,0,0,0,720,722,1,0,0,0,721,684,1,0,0,0,721,685,1,0,0,0, + 721,689,1,0,0,0,721,701,1,0,0,0,721,705,1,0,0,0,721,709,1,0,0,0, + 721,713,1,0,0,0,721,717,1,0,0,0,722,57,1,0,0,0,723,724,5,516,0,0, + 724,725,3,358,179,0,725,726,5,517,0,0,726,59,1,0,0,0,727,728,5,516, + 0,0,728,731,3,358,179,0,729,730,5,520,0,0,730,732,3,358,179,0,731, + 729,1,0,0,0,731,732,1,0,0,0,732,733,1,0,0,0,733,734,5,517,0,0,734, + 61,1,0,0,0,735,736,5,516,0,0,736,739,3,356,178,0,737,738,5,520,0, + 0,738,740,3,356,178,0,739,737,1,0,0,0,739,740,1,0,0,0,740,741,1, + 0,0,0,741,742,5,517,0,0,742,63,1,0,0,0,743,744,5,507,0,0,744,745, + 3,56,28,0,745,746,5,506,0,0,746,65,1,0,0,0,747,748,5,507,0,0,748, + 749,3,56,28,0,749,750,5,520,0,0,750,751,3,56,28,0,751,752,1,0,0, + 0,752,753,5,506,0,0,753,67,1,0,0,0,754,755,5,507,0,0,755,756,3,52, + 26,0,756,763,3,56,28,0,757,758,5,520,0,0,758,759,3,52,26,0,759,760, + 3,56,28,0,760,762,1,0,0,0,761,757,1,0,0,0,762,765,1,0,0,0,763,761, 1,0,0,0,763,764,1,0,0,0,764,766,1,0,0,0,765,763,1,0,0,0,766,767, - 5,506,0,0,767,69,1,0,0,0,768,769,5,64,0,0,769,771,3,86,43,0,770, + 5,506,0,0,767,69,1,0,0,0,768,769,5,64,0,0,769,771,3,84,42,0,770, 768,1,0,0,0,770,771,1,0,0,0,771,772,1,0,0,0,772,773,5,288,0,0,773, 776,5,466,0,0,774,775,5,241,0,0,775,777,5,125,0,0,776,774,1,0,0, 0,776,777,1,0,0,0,777,783,1,0,0,0,778,780,5,241,0,0,779,778,1,0, 0,0,779,780,1,0,0,0,780,781,1,0,0,0,781,783,5,244,0,0,782,770,1, - 0,0,0,782,779,1,0,0,0,783,71,1,0,0,0,784,785,5,59,0,0,785,786,5, - 537,0,0,786,73,1,0,0,0,787,788,3,50,25,0,788,789,3,56,28,0,789,792, - 5,218,0,0,790,791,5,151,0,0,791,793,3,76,38,0,792,790,1,0,0,0,792, - 793,1,0,0,0,793,795,1,0,0,0,794,796,5,423,0,0,795,794,1,0,0,0,795, - 796,1,0,0,0,796,75,1,0,0,0,797,798,5,537,0,0,798,77,1,0,0,0,799, - 800,3,50,25,0,800,801,5,17,0,0,801,803,3,80,40,0,802,804,3,72,36, - 0,803,802,1,0,0,0,803,804,1,0,0,0,804,79,1,0,0,0,805,806,3,258,129, - 0,806,81,1,0,0,0,807,808,5,424,0,0,808,809,5,146,0,0,809,810,3,52, - 26,0,810,811,5,17,0,0,811,812,3,258,129,0,812,83,1,0,0,0,813,814, - 5,64,0,0,814,816,3,86,43,0,815,813,1,0,0,0,815,816,1,0,0,0,816,817, - 1,0,0,0,817,818,5,288,0,0,818,819,5,466,0,0,819,820,3,54,27,0,820, - 821,5,241,0,0,821,822,5,125,0,0,822,85,1,0,0,0,823,824,3,304,152, - 0,824,87,1,0,0,0,825,826,5,277,0,0,826,827,5,146,0,0,827,828,5,371, - 0,0,828,89,1,0,0,0,829,830,5,269,0,0,830,831,5,34,0,0,831,832,3, - 92,46,0,832,91,1,0,0,0,833,834,5,516,0,0,834,839,3,94,47,0,835,836, - 5,520,0,0,836,838,3,94,47,0,837,835,1,0,0,0,838,841,1,0,0,0,839, - 837,1,0,0,0,839,840,1,0,0,0,840,842,1,0,0,0,841,839,1,0,0,0,842, - 843,5,517,0,0,843,93,1,0,0,0,844,857,3,52,26,0,845,846,5,516,0,0, - 846,851,3,96,48,0,847,848,5,520,0,0,848,850,3,96,48,0,849,847,1, - 0,0,0,850,853,1,0,0,0,851,849,1,0,0,0,851,852,1,0,0,0,852,854,1, - 0,0,0,853,851,1,0,0,0,854,855,5,517,0,0,855,857,1,0,0,0,856,844, - 1,0,0,0,856,845,1,0,0,0,857,95,1,0,0,0,858,861,3,280,140,0,859,861, - 3,354,177,0,860,858,1,0,0,0,860,859,1,0,0,0,861,97,1,0,0,0,862,863, - 5,202,0,0,863,872,3,322,161,0,864,868,5,516,0,0,865,867,3,100,50, - 0,866,865,1,0,0,0,867,870,1,0,0,0,868,866,1,0,0,0,868,869,1,0,0, - 0,869,871,1,0,0,0,870,868,1,0,0,0,871,873,5,517,0,0,872,864,1,0, - 0,0,872,873,1,0,0,0,873,99,1,0,0,0,874,875,7,12,0,0,875,879,7,13, - 0,0,876,877,7,14,0,0,877,879,7,15,0,0,878,874,1,0,0,0,878,876,1, - 0,0,0,879,101,1,0,0,0,880,881,5,72,0,0,881,882,5,441,0,0,882,883, - 3,314,157,0,883,884,3,330,165,0,884,103,1,0,0,0,885,886,5,72,0,0, - 886,888,5,447,0,0,887,889,3,332,166,0,888,887,1,0,0,0,888,889,1, - 0,0,0,889,890,1,0,0,0,890,892,3,318,159,0,891,893,3,72,36,0,892, - 891,1,0,0,0,892,893,1,0,0,0,893,894,1,0,0,0,894,895,3,330,165,0, - 895,105,1,0,0,0,896,898,5,72,0,0,897,899,5,497,0,0,898,897,1,0,0, - 0,898,899,1,0,0,0,899,900,1,0,0,0,900,902,5,501,0,0,901,903,3,332, - 166,0,902,901,1,0,0,0,902,903,1,0,0,0,903,904,1,0,0,0,904,906,3, - 326,163,0,905,907,3,54,27,0,906,905,1,0,0,0,906,907,1,0,0,0,907, - 909,1,0,0,0,908,910,3,72,36,0,909,908,1,0,0,0,909,910,1,0,0,0,910, - 911,1,0,0,0,911,912,5,17,0,0,912,913,3,158,79,0,913,107,1,0,0,0, + 0,0,0,782,779,1,0,0,0,783,71,1,0,0,0,784,785,3,50,25,0,785,786,3, + 56,28,0,786,789,5,218,0,0,787,788,5,151,0,0,788,790,3,74,37,0,789, + 787,1,0,0,0,789,790,1,0,0,0,790,792,1,0,0,0,791,793,5,423,0,0,792, + 791,1,0,0,0,792,793,1,0,0,0,793,73,1,0,0,0,794,795,5,537,0,0,795, + 75,1,0,0,0,796,797,3,50,25,0,797,798,5,17,0,0,798,801,3,78,39,0, + 799,800,5,59,0,0,800,802,5,537,0,0,801,799,1,0,0,0,801,802,1,0,0, + 0,802,77,1,0,0,0,803,804,3,256,128,0,804,79,1,0,0,0,805,806,5,424, + 0,0,806,807,5,146,0,0,807,808,3,52,26,0,808,809,5,17,0,0,809,810, + 3,256,128,0,810,81,1,0,0,0,811,812,5,64,0,0,812,814,3,84,42,0,813, + 811,1,0,0,0,813,814,1,0,0,0,814,815,1,0,0,0,815,816,5,288,0,0,816, + 817,5,466,0,0,817,818,3,54,27,0,818,819,5,241,0,0,819,820,5,125, + 0,0,820,83,1,0,0,0,821,822,3,302,151,0,822,85,1,0,0,0,823,824,5, + 277,0,0,824,825,5,146,0,0,825,826,5,371,0,0,826,87,1,0,0,0,827,828, + 5,269,0,0,828,829,5,34,0,0,829,830,3,90,45,0,830,89,1,0,0,0,831, + 832,5,516,0,0,832,837,3,92,46,0,833,834,5,520,0,0,834,836,3,92,46, + 0,835,833,1,0,0,0,836,839,1,0,0,0,837,835,1,0,0,0,837,838,1,0,0, + 0,838,840,1,0,0,0,839,837,1,0,0,0,840,841,5,517,0,0,841,91,1,0,0, + 0,842,855,3,52,26,0,843,844,5,516,0,0,844,849,3,94,47,0,845,846, + 5,520,0,0,846,848,3,94,47,0,847,845,1,0,0,0,848,851,1,0,0,0,849, + 847,1,0,0,0,849,850,1,0,0,0,850,852,1,0,0,0,851,849,1,0,0,0,852, + 853,5,517,0,0,853,855,1,0,0,0,854,842,1,0,0,0,854,843,1,0,0,0,855, + 93,1,0,0,0,856,859,3,278,139,0,857,859,3,352,176,0,858,856,1,0,0, + 0,858,857,1,0,0,0,859,95,1,0,0,0,860,861,5,202,0,0,861,870,3,320, + 160,0,862,866,5,516,0,0,863,865,3,98,49,0,864,863,1,0,0,0,865,868, + 1,0,0,0,866,864,1,0,0,0,866,867,1,0,0,0,867,869,1,0,0,0,868,866, + 1,0,0,0,869,871,5,517,0,0,870,862,1,0,0,0,870,871,1,0,0,0,871,97, + 1,0,0,0,872,873,7,12,0,0,873,877,7,13,0,0,874,875,7,14,0,0,875,877, + 7,15,0,0,876,872,1,0,0,0,876,874,1,0,0,0,877,99,1,0,0,0,878,879, + 5,72,0,0,879,880,5,441,0,0,880,881,3,312,156,0,881,882,3,328,164, + 0,882,101,1,0,0,0,883,884,5,72,0,0,884,886,5,447,0,0,885,887,3,330, + 165,0,886,885,1,0,0,0,886,887,1,0,0,0,887,888,1,0,0,0,888,891,3, + 316,158,0,889,890,5,59,0,0,890,892,5,537,0,0,891,889,1,0,0,0,891, + 892,1,0,0,0,892,893,1,0,0,0,893,894,3,328,164,0,894,103,1,0,0,0, + 895,897,5,72,0,0,896,898,5,497,0,0,897,896,1,0,0,0,897,898,1,0,0, + 0,898,899,1,0,0,0,899,901,5,501,0,0,900,902,3,330,165,0,901,900, + 1,0,0,0,901,902,1,0,0,0,902,903,1,0,0,0,903,905,3,324,162,0,904, + 906,3,54,27,0,905,904,1,0,0,0,905,906,1,0,0,0,906,909,1,0,0,0,907, + 908,5,59,0,0,908,910,5,537,0,0,909,907,1,0,0,0,909,910,1,0,0,0,910, + 911,1,0,0,0,911,912,5,17,0,0,912,913,3,156,78,0,913,105,1,0,0,0, 914,918,5,72,0,0,915,919,5,497,0,0,916,917,5,497,0,0,917,919,5,370, 0,0,918,915,1,0,0,0,918,916,1,0,0,0,918,919,1,0,0,0,919,920,1,0, - 0,0,920,922,5,153,0,0,921,923,3,332,166,0,922,921,1,0,0,0,922,923, - 1,0,0,0,923,924,1,0,0,0,924,925,3,270,135,0,925,926,5,17,0,0,926, - 929,3,304,152,0,927,928,5,195,0,0,928,930,7,16,0,0,929,927,1,0,0, - 0,929,930,1,0,0,0,930,932,1,0,0,0,931,933,3,110,55,0,932,931,1,0, - 0,0,932,933,1,0,0,0,933,109,1,0,0,0,934,935,5,412,0,0,935,936,5, - 463,0,0,936,942,3,112,56,0,937,938,5,520,0,0,938,939,5,463,0,0,939, - 941,3,112,56,0,940,937,1,0,0,0,941,944,1,0,0,0,942,940,1,0,0,0,942, - 943,1,0,0,0,943,111,1,0,0,0,944,942,1,0,0,0,945,946,5,537,0,0,946, - 113,1,0,0,0,947,948,5,8,0,0,948,950,5,373,0,0,949,951,3,334,167, - 0,950,949,1,0,0,0,950,951,1,0,0,0,951,952,1,0,0,0,952,958,3,322, - 161,0,953,959,3,116,58,0,954,959,3,118,59,0,955,959,3,120,60,0,956, - 959,3,122,61,0,957,959,3,124,62,0,958,953,1,0,0,0,958,954,1,0,0, - 0,958,955,1,0,0,0,958,956,1,0,0,0,958,957,1,0,0,0,959,115,1,0,0, - 0,960,962,5,311,0,0,961,963,3,328,164,0,962,961,1,0,0,0,962,963, - 1,0,0,0,963,964,1,0,0,0,964,965,5,388,0,0,965,966,3,328,164,0,966, - 117,1,0,0,0,967,968,5,340,0,0,968,969,3,336,168,0,969,119,1,0,0, - 0,970,971,5,437,0,0,971,972,5,64,0,0,972,973,3,86,43,0,973,974,5, - 288,0,0,974,975,5,466,0,0,975,977,3,54,27,0,976,978,3,126,63,0,977, - 976,1,0,0,0,977,978,1,0,0,0,978,121,1,0,0,0,979,980,5,116,0,0,980, - 981,5,64,0,0,981,982,3,86,43,0,982,123,1,0,0,0,983,984,5,437,0,0, - 984,985,5,403,0,0,985,986,3,54,27,0,986,125,1,0,0,0,987,988,5,241, - 0,0,988,989,5,125,0,0,989,127,1,0,0,0,990,991,5,8,0,0,991,992,5, - 501,0,0,992,996,3,324,162,0,993,997,3,116,58,0,994,995,5,17,0,0, - 995,997,3,158,79,0,996,993,1,0,0,0,996,994,1,0,0,0,997,129,1,0,0, - 0,998,999,5,8,0,0,999,1000,5,447,0,0,1000,1001,3,316,158,0,1001, - 1002,3,118,59,0,1002,131,1,0,0,0,1003,1007,5,8,0,0,1004,1008,5,497, + 0,0,920,922,5,153,0,0,921,923,3,330,165,0,922,921,1,0,0,0,922,923, + 1,0,0,0,923,924,1,0,0,0,924,925,3,268,134,0,925,926,5,17,0,0,926, + 929,3,302,151,0,927,928,5,195,0,0,928,930,7,16,0,0,929,927,1,0,0, + 0,929,930,1,0,0,0,930,932,1,0,0,0,931,933,3,108,54,0,932,931,1,0, + 0,0,932,933,1,0,0,0,933,107,1,0,0,0,934,935,5,412,0,0,935,936,5, + 463,0,0,936,942,3,110,55,0,937,938,5,520,0,0,938,939,5,463,0,0,939, + 941,3,110,55,0,940,937,1,0,0,0,941,944,1,0,0,0,942,940,1,0,0,0,942, + 943,1,0,0,0,943,109,1,0,0,0,944,942,1,0,0,0,945,946,5,537,0,0,946, + 111,1,0,0,0,947,948,5,8,0,0,948,950,5,373,0,0,949,951,3,332,166, + 0,950,949,1,0,0,0,950,951,1,0,0,0,951,952,1,0,0,0,952,958,3,320, + 160,0,953,959,3,114,57,0,954,959,3,116,58,0,955,959,3,118,59,0,956, + 959,3,120,60,0,957,959,3,122,61,0,958,953,1,0,0,0,958,954,1,0,0, + 0,958,955,1,0,0,0,958,956,1,0,0,0,958,957,1,0,0,0,959,113,1,0,0, + 0,960,962,5,311,0,0,961,963,3,326,163,0,962,961,1,0,0,0,962,963, + 1,0,0,0,963,964,1,0,0,0,964,965,5,388,0,0,965,966,3,326,163,0,966, + 115,1,0,0,0,967,968,5,340,0,0,968,969,3,334,167,0,969,117,1,0,0, + 0,970,971,5,437,0,0,971,972,5,64,0,0,972,973,3,84,42,0,973,974,5, + 288,0,0,974,975,5,466,0,0,975,977,3,54,27,0,976,978,3,124,62,0,977, + 976,1,0,0,0,977,978,1,0,0,0,978,119,1,0,0,0,979,980,5,116,0,0,980, + 981,5,64,0,0,981,982,3,84,42,0,982,121,1,0,0,0,983,984,5,437,0,0, + 984,985,5,403,0,0,985,986,3,54,27,0,986,123,1,0,0,0,987,988,5,241, + 0,0,988,989,5,125,0,0,989,125,1,0,0,0,990,991,5,8,0,0,991,992,5, + 501,0,0,992,996,3,322,161,0,993,997,3,114,57,0,994,995,5,17,0,0, + 995,997,3,156,78,0,996,993,1,0,0,0,996,994,1,0,0,0,997,127,1,0,0, + 0,998,999,5,8,0,0,999,1000,5,447,0,0,1000,1001,3,314,157,0,1001, + 1002,3,116,58,0,1002,129,1,0,0,0,1003,1007,5,8,0,0,1004,1008,5,497, 0,0,1005,1006,5,497,0,0,1006,1008,5,370,0,0,1007,1004,1,0,0,0,1007, 1005,1,0,0,0,1007,1008,1,0,0,0,1008,1009,1,0,0,0,1009,1011,5,153, - 0,0,1010,1012,3,334,167,0,1011,1010,1,0,0,0,1011,1012,1,0,0,0,1012, - 1013,1,0,0,0,1013,1014,3,272,136,0,1014,1015,5,17,0,0,1015,1018, - 3,304,152,0,1016,1017,5,195,0,0,1017,1019,7,16,0,0,1018,1016,1,0, - 0,0,1018,1019,1,0,0,0,1019,133,1,0,0,0,1020,1021,5,116,0,0,1021, - 1023,5,441,0,0,1022,1024,3,334,167,0,1023,1022,1,0,0,0,1023,1024, - 1,0,0,0,1024,1025,1,0,0,0,1025,1026,3,312,156,0,1026,135,1,0,0,0, + 0,0,1010,1012,3,332,166,0,1011,1010,1,0,0,0,1011,1012,1,0,0,0,1012, + 1013,1,0,0,0,1013,1014,3,270,135,0,1014,1015,5,17,0,0,1015,1018, + 3,302,151,0,1016,1017,5,195,0,0,1017,1019,7,16,0,0,1018,1016,1,0, + 0,0,1018,1019,1,0,0,0,1019,131,1,0,0,0,1020,1021,5,116,0,0,1021, + 1023,5,441,0,0,1022,1024,3,332,166,0,1023,1022,1,0,0,0,1023,1024, + 1,0,0,0,1024,1025,1,0,0,0,1025,1026,3,310,155,0,1026,133,1,0,0,0, 1027,1029,5,116,0,0,1028,1030,5,497,0,0,1029,1028,1,0,0,0,1029,1030, - 1,0,0,0,1030,1031,1,0,0,0,1031,1033,5,373,0,0,1032,1034,3,334,167, + 1,0,0,0,1030,1031,1,0,0,0,1031,1033,5,373,0,0,1032,1034,3,332,166, 0,1033,1032,1,0,0,0,1033,1034,1,0,0,0,1034,1035,1,0,0,0,1035,1036, - 3,322,161,0,1036,137,1,0,0,0,1037,1038,5,116,0,0,1038,1040,5,447, - 0,0,1039,1041,3,334,167,0,1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041, - 1042,1,0,0,0,1042,1044,3,316,158,0,1043,1045,7,17,0,0,1044,1043, - 1,0,0,0,1044,1045,1,0,0,0,1045,139,1,0,0,0,1046,1048,5,116,0,0,1047, + 3,320,160,0,1036,135,1,0,0,0,1037,1038,5,116,0,0,1038,1040,5,447, + 0,0,1039,1041,3,332,166,0,1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041, + 1042,1,0,0,0,1042,1044,3,314,157,0,1043,1045,7,17,0,0,1044,1043, + 1,0,0,0,1044,1045,1,0,0,0,1045,137,1,0,0,0,1046,1048,5,116,0,0,1047, 1049,5,497,0,0,1048,1047,1,0,0,0,1048,1049,1,0,0,0,1049,1050,1,0, - 0,0,1050,1052,5,501,0,0,1051,1053,3,334,167,0,1052,1051,1,0,0,0, - 1052,1053,1,0,0,0,1053,1054,1,0,0,0,1054,1055,3,324,162,0,1055,141, + 0,0,1050,1052,5,501,0,0,1051,1053,3,332,166,0,1052,1051,1,0,0,0, + 1052,1053,1,0,0,0,1053,1054,1,0,0,0,1054,1055,3,322,161,0,1055,139, 1,0,0,0,1056,1060,5,116,0,0,1057,1061,5,497,0,0,1058,1059,5,497, 0,0,1059,1061,5,370,0,0,1060,1057,1,0,0,0,1060,1058,1,0,0,0,1060, - 1061,1,0,0,0,1061,1062,1,0,0,0,1062,1064,5,153,0,0,1063,1065,3,334, - 167,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0,1066, - 1067,3,272,136,0,1067,143,1,0,0,0,1068,1070,5,132,0,0,1069,1068, - 1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1076,3,146,73,0, - 1072,1076,3,154,77,0,1073,1074,5,132,0,0,1074,1076,3,156,78,0,1075, - 1069,1,0,0,0,1075,1072,1,0,0,0,1075,1073,1,0,0,0,1076,145,1,0,0, - 0,1077,1078,5,177,0,0,1078,1079,7,18,0,0,1079,1088,3,322,161,0,1080, - 1082,3,148,74,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1, + 1061,1,0,0,0,1061,1062,1,0,0,0,1062,1064,5,153,0,0,1063,1065,3,332, + 166,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0,1066, + 1067,3,270,135,0,1067,141,1,0,0,0,1068,1070,5,132,0,0,1069,1068, + 1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1076,3,144,72,0, + 1072,1076,3,152,76,0,1073,1074,5,132,0,0,1074,1076,3,154,77,0,1075, + 1069,1,0,0,0,1075,1072,1,0,0,0,1075,1073,1,0,0,0,1076,143,1,0,0, + 0,1077,1078,5,177,0,0,1078,1079,7,18,0,0,1079,1088,3,320,160,0,1080, + 1082,3,146,73,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1, 0,0,0,1083,1085,3,54,27,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085, - 1086,1,0,0,0,1086,1089,3,158,79,0,1087,1089,3,150,75,0,1088,1081, - 1,0,0,0,1088,1087,1,0,0,0,1089,147,1,0,0,0,1090,1091,5,268,0,0,1091, - 1092,3,336,168,0,1092,149,1,0,0,0,1093,1094,5,414,0,0,1094,1099, - 3,152,76,0,1095,1096,5,520,0,0,1096,1098,3,152,76,0,1097,1095,1, + 1086,1,0,0,0,1086,1089,3,156,78,0,1087,1089,3,148,74,0,1088,1081, + 1,0,0,0,1088,1087,1,0,0,0,1089,145,1,0,0,0,1090,1091,5,268,0,0,1091, + 1092,3,334,167,0,1092,147,1,0,0,0,1093,1094,5,414,0,0,1094,1099, + 3,150,75,0,1095,1096,5,520,0,0,1096,1098,3,150,75,0,1097,1095,1, 0,0,0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100,1,0,0,0,1100, - 151,1,0,0,0,1101,1099,1,0,0,0,1102,1103,5,516,0,0,1103,1108,3,354, - 177,0,1104,1105,5,520,0,0,1105,1107,3,354,177,0,1106,1104,1,0,0, + 149,1,0,0,0,1101,1099,1,0,0,0,1102,1103,5,516,0,0,1103,1108,3,352, + 176,0,1104,1105,5,520,0,0,1105,1107,3,352,176,0,1106,1104,1,0,0, 0,1107,1110,1,0,0,0,1108,1106,1,0,0,0,1108,1109,1,0,0,0,1109,1111, - 1,0,0,0,1110,1108,1,0,0,0,1111,1112,5,517,0,0,1112,153,1,0,0,0,1113, + 1,0,0,0,1110,1108,1,0,0,0,1111,1112,5,517,0,0,1112,151,1,0,0,0,1113, 1114,5,24,0,0,1114,1115,5,354,0,0,1115,1116,5,340,0,0,1116,1120, - 5,521,0,0,1117,1118,3,146,73,0,1118,1119,5,521,0,0,1119,1121,1,0, + 5,521,0,0,1117,1118,3,144,72,0,1118,1119,5,521,0,0,1119,1121,1,0, 0,0,1120,1117,1,0,0,0,1121,1122,1,0,0,0,1122,1120,1,0,0,0,1122,1123, - 1,0,0,0,1123,1124,1,0,0,0,1124,1125,5,122,0,0,1125,155,1,0,0,0,1126, + 1,0,0,0,1123,1124,1,0,0,0,1124,1125,5,122,0,0,1125,153,1,0,0,0,1126, 1127,5,354,0,0,1127,1128,5,340,0,0,1128,1132,5,24,0,0,1129,1130, - 3,146,73,0,1130,1131,5,521,0,0,1131,1133,1,0,0,0,1132,1129,1,0,0, + 3,144,72,0,1130,1131,5,521,0,0,1131,1133,1,0,0,0,1132,1129,1,0,0, 0,1133,1134,1,0,0,0,1134,1132,1,0,0,0,1134,1135,1,0,0,0,1135,1136, - 1,0,0,0,1136,1137,5,122,0,0,1137,157,1,0,0,0,1138,1139,6,79,-1,0, - 1139,1162,3,160,80,0,1140,1141,3,162,81,0,1141,1142,3,158,79,5,1142, - 1162,1,0,0,0,1143,1144,5,516,0,0,1144,1145,3,158,79,0,1145,1146, - 5,517,0,0,1146,1162,1,0,0,0,1147,1149,3,170,85,0,1148,1150,3,230, - 115,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1152,1,0,0,0,1151, - 1153,3,234,117,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1162,1, - 0,0,0,1154,1156,3,168,84,0,1155,1157,3,230,115,0,1156,1155,1,0,0, - 0,1156,1157,1,0,0,0,1157,1159,1,0,0,0,1158,1160,3,234,117,0,1159, + 1,0,0,0,1136,1137,5,122,0,0,1137,155,1,0,0,0,1138,1139,6,78,-1,0, + 1139,1162,3,158,79,0,1140,1141,3,160,80,0,1141,1142,3,156,78,5,1142, + 1162,1,0,0,0,1143,1144,5,516,0,0,1144,1145,3,156,78,0,1145,1146, + 5,517,0,0,1146,1162,1,0,0,0,1147,1149,3,168,84,0,1148,1150,3,228, + 114,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1152,1,0,0,0,1151, + 1153,3,232,116,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1162,1, + 0,0,0,1154,1156,3,166,83,0,1155,1157,3,228,114,0,1156,1155,1,0,0, + 0,1156,1157,1,0,0,0,1157,1159,1,0,0,0,1158,1160,3,232,116,0,1159, 1158,1,0,0,0,1159,1160,1,0,0,0,1160,1162,1,0,0,0,1161,1138,1,0,0, 0,1161,1140,1,0,0,0,1161,1143,1,0,0,0,1161,1147,1,0,0,0,1161,1154, 1,0,0,0,1162,1177,1,0,0,0,1163,1164,10,3,0,0,1164,1166,7,19,0,0, 1165,1167,5,5,0,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168, - 1,0,0,0,1168,1170,3,158,79,0,1169,1171,3,230,115,0,1170,1169,1,0, - 0,0,1170,1171,1,0,0,0,1171,1173,1,0,0,0,1172,1174,3,234,117,0,1173, + 1,0,0,0,1168,1170,3,156,78,0,1169,1171,3,228,114,0,1170,1169,1,0, + 0,0,1170,1171,1,0,0,0,1171,1173,1,0,0,0,1172,1174,3,232,116,0,1173, 1172,1,0,0,0,1173,1174,1,0,0,0,1174,1176,1,0,0,0,1175,1163,1,0,0, - 0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1177,1178,1,0,0,0,1178,159, - 1,0,0,0,1179,1177,1,0,0,0,1180,1181,5,414,0,0,1181,1186,3,258,129, - 0,1182,1183,5,520,0,0,1183,1185,3,258,129,0,1184,1182,1,0,0,0,1185, - 1188,1,0,0,0,1186,1184,1,0,0,0,1186,1187,1,0,0,0,1187,161,1,0,0, - 0,1188,1186,1,0,0,0,1189,1190,5,433,0,0,1190,1195,3,164,82,0,1191, - 1192,5,520,0,0,1192,1194,3,164,82,0,1193,1191,1,0,0,0,1194,1197, - 1,0,0,0,1195,1193,1,0,0,0,1195,1196,1,0,0,0,1196,163,1,0,0,0,1197, - 1195,1,0,0,0,1198,1210,3,166,83,0,1199,1200,5,516,0,0,1200,1205, + 0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1177,1178,1,0,0,0,1178,157, + 1,0,0,0,1179,1177,1,0,0,0,1180,1181,5,414,0,0,1181,1186,3,256,128, + 0,1182,1183,5,520,0,0,1183,1185,3,256,128,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,159,1,0,0, + 0,1188,1186,1,0,0,0,1189,1190,5,433,0,0,1190,1195,3,162,81,0,1191, + 1192,5,520,0,0,1192,1194,3,162,81,0,1193,1191,1,0,0,0,1194,1197, + 1,0,0,0,1195,1193,1,0,0,0,1195,1196,1,0,0,0,1196,161,1,0,0,0,1197, + 1195,1,0,0,0,1198,1210,3,164,82,0,1199,1200,5,516,0,0,1200,1205, 3,52,26,0,1201,1202,5,520,0,0,1202,1204,3,52,26,0,1203,1201,1,0, 0,0,1204,1207,1,0,0,0,1205,1203,1,0,0,0,1205,1206,1,0,0,0,1206,1208, 1,0,0,0,1207,1205,1,0,0,0,1208,1209,5,517,0,0,1209,1211,1,0,0,0, 1210,1199,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213, - 5,17,0,0,1213,1214,5,516,0,0,1214,1215,3,158,79,0,1215,1216,5,517, - 0,0,1216,165,1,0,0,0,1217,1218,3,304,152,0,1218,167,1,0,0,0,1219, - 1221,3,170,85,0,1220,1222,3,176,88,0,1221,1220,1,0,0,0,1221,1222, - 1,0,0,0,1222,1224,1,0,0,0,1223,1225,3,204,102,0,1224,1223,1,0,0, - 0,1224,1225,1,0,0,0,1225,1227,1,0,0,0,1226,1228,3,206,103,0,1227, - 1226,1,0,0,0,1227,1228,1,0,0,0,1228,1230,1,0,0,0,1229,1231,3,220, - 110,0,1230,1229,1,0,0,0,1230,1231,1,0,0,0,1231,1233,1,0,0,0,1232, - 1234,3,222,111,0,1233,1232,1,0,0,0,1233,1234,1,0,0,0,1234,1240,1, - 0,0,0,1235,1236,3,170,85,0,1236,1237,3,176,88,0,1237,1238,3,228, - 114,0,1238,1240,1,0,0,0,1239,1219,1,0,0,0,1239,1235,1,0,0,0,1240, - 169,1,0,0,0,1241,1243,5,336,0,0,1242,1244,3,364,182,0,1243,1242, + 5,17,0,0,1213,1214,5,516,0,0,1214,1215,3,156,78,0,1215,1216,5,517, + 0,0,1216,163,1,0,0,0,1217,1218,3,302,151,0,1218,165,1,0,0,0,1219, + 1221,3,168,84,0,1220,1222,3,174,87,0,1221,1220,1,0,0,0,1221,1222, + 1,0,0,0,1222,1224,1,0,0,0,1223,1225,3,202,101,0,1224,1223,1,0,0, + 0,1224,1225,1,0,0,0,1225,1227,1,0,0,0,1226,1228,3,204,102,0,1227, + 1226,1,0,0,0,1227,1228,1,0,0,0,1228,1230,1,0,0,0,1229,1231,3,218, + 109,0,1230,1229,1,0,0,0,1230,1231,1,0,0,0,1231,1233,1,0,0,0,1232, + 1234,3,220,110,0,1233,1232,1,0,0,0,1233,1234,1,0,0,0,1234,1240,1, + 0,0,0,1235,1236,3,168,84,0,1236,1237,3,174,87,0,1237,1238,3,226, + 113,0,1238,1240,1,0,0,0,1239,1219,1,0,0,0,1239,1235,1,0,0,0,1240, + 167,1,0,0,0,1241,1243,5,336,0,0,1242,1244,3,362,181,0,1243,1242, 1,0,0,0,1243,1244,1,0,0,0,1244,1254,1,0,0,0,1245,1255,5,527,0,0, - 1246,1251,3,172,86,0,1247,1248,5,520,0,0,1248,1250,3,172,86,0,1249, + 1246,1251,3,170,85,0,1247,1248,5,520,0,0,1248,1250,3,170,85,0,1249, 1247,1,0,0,0,1250,1253,1,0,0,0,1251,1249,1,0,0,0,1251,1252,1,0,0, 0,1252,1255,1,0,0,0,1253,1251,1,0,0,0,1254,1245,1,0,0,0,1254,1246, - 1,0,0,0,1255,171,1,0,0,0,1256,1272,3,174,87,0,1257,1262,3,52,26, + 1,0,0,0,1255,169,1,0,0,0,1256,1272,3,172,86,0,1257,1262,3,52,26, 0,1258,1260,5,17,0,0,1259,1258,1,0,0,0,1259,1260,1,0,0,0,1260,1261, - 1,0,0,0,1261,1263,3,258,129,0,1262,1259,1,0,0,0,1262,1263,1,0,0, - 0,1263,1272,1,0,0,0,1264,1269,3,258,129,0,1265,1267,5,17,0,0,1266, + 1,0,0,0,1261,1263,3,256,128,0,1262,1259,1,0,0,0,1262,1263,1,0,0, + 0,1263,1272,1,0,0,0,1264,1269,3,256,128,0,1265,1267,5,17,0,0,1266, 1265,1,0,0,0,1266,1267,1,0,0,0,1267,1268,1,0,0,0,1268,1270,3,52, 26,0,1269,1266,1,0,0,0,1269,1270,1,0,0,0,1270,1272,1,0,0,0,1271, - 1256,1,0,0,0,1271,1257,1,0,0,0,1271,1264,1,0,0,0,1272,173,1,0,0, - 0,1273,1274,3,268,134,0,1274,1275,5,262,0,0,1275,1276,3,226,113, - 0,1276,1277,5,17,0,0,1277,1278,3,304,152,0,1278,1286,1,0,0,0,1279, - 1280,3,268,134,0,1280,1281,5,262,0,0,1281,1282,3,296,148,0,1282, - 1283,5,17,0,0,1283,1284,3,304,152,0,1284,1286,1,0,0,0,1285,1273, - 1,0,0,0,1285,1279,1,0,0,0,1286,175,1,0,0,0,1287,1288,5,151,0,0,1288, - 1289,3,178,89,0,1289,177,1,0,0,0,1290,1291,6,89,-1,0,1291,1296,3, - 180,90,0,1292,1293,5,520,0,0,1293,1295,3,180,90,0,1294,1292,1,0, + 1256,1,0,0,0,1271,1257,1,0,0,0,1271,1264,1,0,0,0,1272,171,1,0,0, + 0,1273,1274,3,266,133,0,1274,1275,5,262,0,0,1275,1276,3,224,112, + 0,1276,1277,5,17,0,0,1277,1278,3,302,151,0,1278,1286,1,0,0,0,1279, + 1280,3,266,133,0,1280,1281,5,262,0,0,1281,1282,3,294,147,0,1282, + 1283,5,17,0,0,1283,1284,3,302,151,0,1284,1286,1,0,0,0,1285,1273, + 1,0,0,0,1285,1279,1,0,0,0,1286,173,1,0,0,0,1287,1288,5,151,0,0,1288, + 1289,3,176,88,0,1289,175,1,0,0,0,1290,1291,6,88,-1,0,1291,1296,3, + 178,89,0,1292,1293,5,520,0,0,1293,1295,3,178,89,0,1294,1292,1,0, 0,0,1295,1298,1,0,0,0,1296,1294,1,0,0,0,1296,1297,1,0,0,0,1297,1302, - 1,0,0,0,1298,1296,1,0,0,0,1299,1302,3,188,94,0,1300,1302,3,190,95, + 1,0,0,0,1298,1296,1,0,0,0,1299,1302,3,186,93,0,1300,1302,3,188,94, 0,1301,1290,1,0,0,0,1301,1299,1,0,0,0,1301,1300,1,0,0,0,1302,1324, 1,0,0,0,1303,1304,10,3,0,0,1304,1305,5,73,0,0,1305,1306,5,185,0, - 0,1306,1323,3,178,89,4,1307,1309,10,4,0,0,1308,1310,5,233,0,0,1309, + 0,1306,1323,3,176,88,4,1307,1309,10,4,0,0,1308,1310,5,233,0,0,1309, 1308,1,0,0,0,1309,1310,1,0,0,0,1310,1312,1,0,0,0,1311,1313,7,20, 0,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313,1315,1,0,0,0,1314,1316, 5,261,0,0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1317,1,0,0,0, - 1317,1318,5,185,0,0,1318,1320,3,178,89,0,1319,1321,3,202,101,0,1320, + 1317,1318,5,185,0,0,1318,1320,3,176,88,0,1319,1321,3,200,100,0,1320, 1319,1,0,0,0,1320,1321,1,0,0,0,1321,1323,1,0,0,0,1322,1303,1,0,0, 0,1322,1307,1,0,0,0,1323,1326,1,0,0,0,1324,1322,1,0,0,0,1324,1325, - 1,0,0,0,1325,179,1,0,0,0,1326,1324,1,0,0,0,1327,1329,3,182,91,0, - 1328,1330,3,294,147,0,1329,1328,1,0,0,0,1329,1330,1,0,0,0,1330,181, + 1,0,0,0,1325,177,1,0,0,0,1326,1324,1,0,0,0,1327,1329,3,180,90,0, + 1328,1330,3,292,146,0,1329,1328,1,0,0,0,1329,1330,1,0,0,0,1330,179, 1,0,0,0,1331,1333,5,373,0,0,1332,1331,1,0,0,0,1332,1333,1,0,0,0, - 1333,1334,1,0,0,0,1334,1336,3,322,161,0,1335,1337,3,184,92,0,1336, - 1335,1,0,0,0,1336,1337,1,0,0,0,1337,1342,1,0,0,0,1338,1340,5,17, - 0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341,1,0,0,0,1341,1343, - 3,278,139,0,1342,1339,1,0,0,0,1342,1343,1,0,0,0,1343,1383,1,0,0, - 0,1344,1346,3,324,162,0,1345,1347,3,184,92,0,1346,1345,1,0,0,0,1346, - 1347,1,0,0,0,1347,1352,1,0,0,0,1348,1350,5,17,0,0,1349,1348,1,0, - 0,0,1349,1350,1,0,0,0,1350,1351,1,0,0,0,1351,1353,3,278,139,0,1352, - 1349,1,0,0,0,1352,1353,1,0,0,0,1353,1383,1,0,0,0,1354,1355,5,198, - 0,0,1355,1356,5,373,0,0,1356,1357,5,516,0,0,1357,1358,3,272,136, - 0,1358,1359,5,516,0,0,1359,1364,3,274,137,0,1360,1361,5,520,0,0, - 1361,1363,3,274,137,0,1362,1360,1,0,0,0,1363,1366,1,0,0,0,1364,1362, - 1,0,0,0,1364,1365,1,0,0,0,1365,1367,1,0,0,0,1366,1364,1,0,0,0,1367, - 1368,5,517,0,0,1368,1369,5,517,0,0,1369,1383,1,0,0,0,1370,1372,5, - 198,0,0,1371,1370,1,0,0,0,1371,1372,1,0,0,0,1372,1373,1,0,0,0,1373, - 1374,5,516,0,0,1374,1375,3,158,79,0,1375,1376,5,517,0,0,1376,1383, - 1,0,0,0,1377,1378,5,405,0,0,1378,1379,5,516,0,0,1379,1380,3,258, - 129,0,1380,1381,5,517,0,0,1381,1383,1,0,0,0,1382,1332,1,0,0,0,1382, - 1344,1,0,0,0,1382,1354,1,0,0,0,1382,1371,1,0,0,0,1382,1377,1,0,0, - 0,1383,183,1,0,0,0,1384,1385,5,146,0,0,1385,1386,5,371,0,0,1386, - 1387,5,17,0,0,1387,1388,5,249,0,0,1388,1389,3,186,93,0,1389,185, - 1,0,0,0,1390,1391,3,258,129,0,1391,187,1,0,0,0,1392,1393,5,516,0, - 0,1393,1394,3,150,75,0,1394,1395,5,517,0,0,1395,1396,3,294,147,0, - 1396,189,1,0,0,0,1397,1398,5,373,0,0,1398,1399,5,516,0,0,1399,1400, - 3,192,96,0,1400,1401,5,517,0,0,1401,191,1,0,0,0,1402,1403,3,194, - 97,0,1403,1404,5,516,0,0,1404,1409,3,196,98,0,1405,1406,5,520,0, - 0,1406,1408,3,196,98,0,1407,1405,1,0,0,0,1408,1411,1,0,0,0,1409, - 1407,1,0,0,0,1409,1410,1,0,0,0,1410,1412,1,0,0,0,1411,1409,1,0,0, - 0,1412,1413,5,517,0,0,1413,193,1,0,0,0,1414,1415,7,21,0,0,1415,195, - 1,0,0,0,1416,1417,5,373,0,0,1417,1432,3,218,109,0,1418,1432,3,200, - 100,0,1419,1432,3,282,141,0,1420,1421,5,446,0,0,1421,1422,5,536, - 0,0,1422,1423,5,373,0,0,1423,1432,3,218,109,0,1424,1425,5,498,0, - 0,1425,1426,5,536,0,0,1426,1432,3,200,100,0,1427,1428,3,198,99,0, - 1428,1429,5,536,0,0,1429,1430,3,282,141,0,1430,1432,1,0,0,0,1431, - 1416,1,0,0,0,1431,1418,1,0,0,0,1431,1419,1,0,0,0,1431,1420,1,0,0, - 0,1431,1424,1,0,0,0,1431,1427,1,0,0,0,1432,197,1,0,0,0,1433,1434, - 7,22,0,0,1434,199,1,0,0,0,1435,1436,5,451,0,0,1436,1437,5,516,0, - 0,1437,1438,3,52,26,0,1438,1439,5,517,0,0,1439,201,1,0,0,0,1440, - 1441,5,253,0,0,1441,1445,3,260,130,0,1442,1443,5,412,0,0,1443,1445, - 3,54,27,0,1444,1440,1,0,0,0,1444,1442,1,0,0,0,1445,203,1,0,0,0,1446, - 1447,5,430,0,0,1447,1448,3,260,130,0,1448,205,1,0,0,0,1449,1450, - 5,159,0,0,1450,1451,5,34,0,0,1451,1456,3,208,104,0,1452,1453,5,520, - 0,0,1453,1455,3,208,104,0,1454,1452,1,0,0,0,1455,1458,1,0,0,0,1456, - 1454,1,0,0,0,1456,1457,1,0,0,0,1457,207,1,0,0,0,1458,1456,1,0,0, - 0,1459,1500,3,52,26,0,1460,1500,3,214,107,0,1461,1462,5,516,0,0, - 1462,1500,5,517,0,0,1463,1464,5,516,0,0,1464,1469,3,258,129,0,1465, - 1466,5,520,0,0,1466,1468,3,258,129,0,1467,1465,1,0,0,0,1468,1471, - 1,0,0,0,1469,1467,1,0,0,0,1469,1470,1,0,0,0,1470,1472,1,0,0,0,1471, - 1469,1,0,0,0,1472,1473,5,517,0,0,1473,1500,1,0,0,0,1474,1475,3,212, - 106,0,1475,1476,5,516,0,0,1476,1481,3,258,129,0,1477,1478,5,520, - 0,0,1478,1480,3,258,129,0,1479,1477,1,0,0,0,1480,1483,1,0,0,0,1481, - 1479,1,0,0,0,1481,1482,1,0,0,0,1482,1484,1,0,0,0,1483,1481,1,0,0, - 0,1484,1485,5,517,0,0,1485,1500,1,0,0,0,1486,1487,3,210,105,0,1487, - 1488,5,516,0,0,1488,1493,3,208,104,0,1489,1490,5,520,0,0,1490,1492, - 3,208,104,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0,1493,1491,1,0,0, - 0,1493,1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493,1,0,0,0,1496,1497, - 5,517,0,0,1497,1500,1,0,0,0,1498,1500,3,258,129,0,1499,1459,1,0, - 0,0,1499,1460,1,0,0,0,1499,1461,1,0,0,0,1499,1463,1,0,0,0,1499,1474, - 1,0,0,0,1499,1486,1,0,0,0,1499,1498,1,0,0,0,1500,209,1,0,0,0,1501, - 1502,5,160,0,0,1502,1503,5,493,0,0,1503,211,1,0,0,0,1504,1505,7, - 23,0,0,1505,213,1,0,0,0,1506,1507,3,216,108,0,1507,1508,5,516,0, - 0,1508,1509,3,218,109,0,1509,1510,5,520,0,0,1510,1511,3,282,141, - 0,1511,1512,5,517,0,0,1512,215,1,0,0,0,1513,1514,7,24,0,0,1514,217, - 1,0,0,0,1515,1516,3,328,164,0,1516,219,1,0,0,0,1517,1518,5,163,0, - 0,1518,1519,3,260,130,0,1519,221,1,0,0,0,1520,1521,5,432,0,0,1521, - 1526,3,224,112,0,1522,1523,5,520,0,0,1523,1525,3,224,112,0,1524, - 1522,1,0,0,0,1525,1528,1,0,0,0,1526,1524,1,0,0,0,1526,1527,1,0,0, - 0,1527,223,1,0,0,0,1528,1526,1,0,0,0,1529,1530,3,296,148,0,1530, - 1531,5,17,0,0,1531,1532,3,226,113,0,1532,225,1,0,0,0,1533,1535,3, - 296,148,0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535,1536,1,0,0,0, - 1536,1538,5,516,0,0,1537,1539,3,236,118,0,1538,1537,1,0,0,0,1538, - 1539,1,0,0,0,1539,1541,1,0,0,0,1540,1542,3,230,115,0,1541,1540,1, - 0,0,0,1541,1542,1,0,0,0,1542,1544,1,0,0,0,1543,1545,3,252,126,0, - 1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545,1546,1,0,0,0,1546,1547, - 5,517,0,0,1547,227,1,0,0,0,1548,1549,5,213,0,0,1549,1551,5,516,0, - 0,1550,1552,3,236,118,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552, - 1554,1,0,0,0,1553,1555,3,230,115,0,1554,1553,1,0,0,0,1554,1555,1, - 0,0,0,1555,1557,1,0,0,0,1556,1558,3,240,120,0,1557,1556,1,0,0,0, - 1557,1558,1,0,0,0,1558,1560,1,0,0,0,1559,1561,3,246,123,0,1560,1559, - 1,0,0,0,1560,1561,1,0,0,0,1561,1563,1,0,0,0,1562,1564,3,248,124, - 0,1563,1562,1,0,0,0,1563,1564,1,0,0,0,1564,1566,1,0,0,0,1565,1567, - 3,242,121,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1568,1,0,0, - 0,1568,1569,3,250,125,0,1569,1574,5,517,0,0,1570,1572,5,17,0,0,1571, - 1570,1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0,0,0,1573,1575,3,304, - 152,0,1574,1571,1,0,0,0,1574,1575,1,0,0,0,1575,229,1,0,0,0,1576, - 1577,5,258,0,0,1577,1578,5,34,0,0,1578,1583,3,232,116,0,1579,1580, - 5,520,0,0,1580,1582,3,232,116,0,1581,1579,1,0,0,0,1582,1585,1,0, - 0,0,1583,1581,1,0,0,0,1583,1584,1,0,0,0,1584,231,1,0,0,0,1585,1583, - 1,0,0,0,1586,1588,3,52,26,0,1587,1589,7,25,0,0,1588,1587,1,0,0,0, - 1588,1589,1,0,0,0,1589,1592,1,0,0,0,1590,1591,5,476,0,0,1591,1593, - 7,26,0,0,1592,1590,1,0,0,0,1592,1593,1,0,0,0,1593,233,1,0,0,0,1594, - 1597,5,204,0,0,1595,1598,5,5,0,0,1596,1598,3,258,129,0,1597,1595, - 1,0,0,0,1597,1596,1,0,0,0,1598,235,1,0,0,0,1599,1600,5,268,0,0,1600, - 1601,5,34,0,0,1601,1606,3,52,26,0,1602,1603,5,520,0,0,1603,1605, - 3,52,26,0,1604,1602,1,0,0,0,1605,1608,1,0,0,0,1606,1604,1,0,0,0, - 1606,1607,1,0,0,0,1607,237,1,0,0,0,1608,1606,1,0,0,0,1609,1626,5, - 527,0,0,1610,1626,5,530,0,0,1611,1626,5,535,0,0,1612,1613,5,518, - 0,0,1613,1614,5,538,0,0,1614,1615,5,520,0,0,1615,1616,5,538,0,0, - 1616,1626,5,519,0,0,1617,1618,5,518,0,0,1618,1619,5,538,0,0,1619, - 1620,5,520,0,0,1620,1626,5,519,0,0,1621,1622,5,518,0,0,1622,1623, - 5,520,0,0,1623,1624,5,538,0,0,1624,1626,5,519,0,0,1625,1609,1,0, - 0,0,1625,1610,1,0,0,0,1625,1611,1,0,0,0,1625,1612,1,0,0,0,1625,1617, - 1,0,0,0,1625,1621,1,0,0,0,1626,239,1,0,0,0,1627,1628,5,215,0,0,1628, - 1633,3,172,86,0,1629,1630,5,520,0,0,1630,1632,3,172,86,0,1631,1629, - 1,0,0,0,1632,1635,1,0,0,0,1633,1631,1,0,0,0,1633,1634,1,0,0,0,1634, - 241,1,0,0,0,1635,1633,1,0,0,0,1636,1637,5,271,0,0,1637,1639,5,516, - 0,0,1638,1640,3,244,122,0,1639,1638,1,0,0,0,1640,1641,1,0,0,0,1641, - 1639,1,0,0,0,1641,1642,1,0,0,0,1642,1643,1,0,0,0,1643,1645,5,517, - 0,0,1644,1646,3,256,128,0,1645,1644,1,0,0,0,1645,1646,1,0,0,0,1646, - 243,1,0,0,0,1647,1649,3,306,153,0,1648,1650,3,238,119,0,1649,1648, - 1,0,0,0,1649,1650,1,0,0,0,1650,245,1,0,0,0,1651,1652,5,5,0,0,1652, - 1653,5,322,0,0,1653,1654,5,272,0,0,1654,1660,5,210,0,0,1655,1656, - 5,254,0,0,1656,1657,5,321,0,0,1657,1658,5,272,0,0,1658,1660,5,210, - 0,0,1659,1651,1,0,0,0,1659,1655,1,0,0,0,1660,247,1,0,0,0,1661,1662, - 5,438,0,0,1662,1663,5,210,0,0,1663,1664,5,343,0,0,1664,1665,5,478, - 0,0,1665,1666,5,467,0,0,1666,1686,5,321,0,0,1667,1668,5,438,0,0, - 1668,1669,5,210,0,0,1669,1670,5,343,0,0,1670,1671,5,388,0,0,1671, - 1672,5,237,0,0,1672,1686,5,321,0,0,1673,1674,5,438,0,0,1674,1675, - 5,210,0,0,1675,1676,5,343,0,0,1676,1677,5,388,0,0,1677,1678,5,467, - 0,0,1678,1686,3,306,153,0,1679,1680,5,438,0,0,1680,1681,5,210,0, - 0,1681,1682,5,343,0,0,1682,1683,5,388,0,0,1683,1684,5,457,0,0,1684, - 1686,3,306,153,0,1685,1661,1,0,0,0,1685,1667,1,0,0,0,1685,1673,1, - 0,0,0,1685,1679,1,0,0,0,1686,249,1,0,0,0,1687,1688,5,105,0,0,1688, - 1693,3,172,86,0,1689,1690,5,520,0,0,1690,1692,3,172,86,0,1691,1689, - 1,0,0,0,1692,1695,1,0,0,0,1693,1691,1,0,0,0,1693,1694,1,0,0,0,1694, - 251,1,0,0,0,1695,1693,1,0,0,0,1696,1697,5,292,0,0,1697,1698,5,27, - 0,0,1698,1699,3,282,141,0,1699,1700,3,254,127,0,1700,1706,1,0,0, - 0,1701,1702,5,322,0,0,1702,1703,5,27,0,0,1703,1704,5,538,0,0,1704, - 1706,3,254,127,0,1705,1696,1,0,0,0,1705,1701,1,0,0,0,1706,253,1, - 0,0,0,1707,1708,5,480,0,0,1708,1709,5,10,0,0,1709,1710,5,76,0,0, - 1710,1711,5,321,0,0,1711,255,1,0,0,0,1712,1713,5,434,0,0,1713,1714, - 3,282,141,0,1714,257,1,0,0,0,1715,1716,3,260,130,0,1716,259,1,0, - 0,0,1717,1718,6,130,-1,0,1718,1719,5,241,0,0,1719,1730,3,260,130, - 6,1720,1721,5,133,0,0,1721,1722,5,516,0,0,1722,1723,3,158,79,0,1723, - 1724,5,517,0,0,1724,1730,1,0,0,0,1725,1727,3,266,133,0,1726,1728, - 3,262,131,0,1727,1726,1,0,0,0,1727,1728,1,0,0,0,1728,1730,1,0,0, - 0,1729,1717,1,0,0,0,1729,1720,1,0,0,0,1729,1725,1,0,0,0,1730,1745, - 1,0,0,0,1731,1732,10,3,0,0,1732,1733,5,10,0,0,1733,1744,3,260,130, - 4,1734,1735,10,2,0,0,1735,1736,5,257,0,0,1736,1744,3,260,130,3,1737, - 1738,10,1,0,0,1738,1740,5,184,0,0,1739,1741,5,241,0,0,1740,1739, - 1,0,0,0,1740,1741,1,0,0,0,1741,1742,1,0,0,0,1742,1744,7,27,0,0,1743, - 1731,1,0,0,0,1743,1734,1,0,0,0,1743,1737,1,0,0,0,1744,1747,1,0,0, - 0,1745,1743,1,0,0,0,1745,1746,1,0,0,0,1746,261,1,0,0,0,1747,1745, - 1,0,0,0,1748,1750,5,241,0,0,1749,1748,1,0,0,0,1749,1750,1,0,0,0, - 1750,1751,1,0,0,0,1751,1753,5,27,0,0,1752,1754,7,28,0,0,1753,1752, - 1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0,0,0,1755,1756,3,266,133, - 0,1756,1757,5,10,0,0,1757,1758,3,266,133,0,1758,1816,1,0,0,0,1759, - 1761,5,241,0,0,1760,1759,1,0,0,0,1760,1761,1,0,0,0,1761,1762,1,0, - 0,0,1762,1763,5,170,0,0,1763,1764,5,516,0,0,1764,1769,3,258,129, - 0,1765,1766,5,520,0,0,1766,1768,3,258,129,0,1767,1765,1,0,0,0,1768, - 1771,1,0,0,0,1769,1767,1,0,0,0,1769,1770,1,0,0,0,1770,1772,1,0,0, - 0,1771,1769,1,0,0,0,1772,1773,5,517,0,0,1773,1816,1,0,0,0,1774,1776, - 5,241,0,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776,1777,1,0,0,0, - 1777,1778,5,170,0,0,1778,1779,5,516,0,0,1779,1780,3,158,79,0,1780, - 1781,5,517,0,0,1781,1816,1,0,0,0,1782,1783,5,133,0,0,1783,1784,5, - 516,0,0,1784,1785,3,158,79,0,1785,1786,5,517,0,0,1786,1816,1,0,0, - 0,1787,1789,5,241,0,0,1788,1787,1,0,0,0,1788,1789,1,0,0,0,1789,1790, - 1,0,0,0,1790,1791,5,318,0,0,1791,1816,3,266,133,0,1792,1816,3,264, - 132,0,1793,1795,5,184,0,0,1794,1796,5,241,0,0,1795,1794,1,0,0,0, - 1795,1796,1,0,0,0,1796,1797,1,0,0,0,1797,1816,7,27,0,0,1798,1800, - 5,184,0,0,1799,1801,5,241,0,0,1800,1799,1,0,0,0,1800,1801,1,0,0, - 0,1801,1802,1,0,0,0,1802,1803,5,113,0,0,1803,1804,5,151,0,0,1804, - 1816,3,266,133,0,1805,1807,5,241,0,0,1806,1805,1,0,0,0,1806,1807, - 1,0,0,0,1807,1808,1,0,0,0,1808,1809,5,342,0,0,1809,1810,5,388,0, - 0,1810,1813,3,266,133,0,1811,1812,5,127,0,0,1812,1814,3,358,179, - 0,1813,1811,1,0,0,0,1813,1814,1,0,0,0,1814,1816,1,0,0,0,1815,1749, - 1,0,0,0,1815,1760,1,0,0,0,1815,1775,1,0,0,0,1815,1782,1,0,0,0,1815, - 1788,1,0,0,0,1815,1792,1,0,0,0,1815,1793,1,0,0,0,1815,1798,1,0,0, - 0,1815,1806,1,0,0,0,1816,263,1,0,0,0,1817,1819,5,241,0,0,1818,1817, - 1,0,0,0,1818,1819,1,0,0,0,1819,1820,1,0,0,0,1820,1821,5,202,0,0, - 1821,1835,7,29,0,0,1822,1823,5,516,0,0,1823,1836,5,517,0,0,1824, - 1825,5,516,0,0,1825,1830,3,258,129,0,1826,1827,5,520,0,0,1827,1829, - 3,258,129,0,1828,1826,1,0,0,0,1829,1832,1,0,0,0,1830,1828,1,0,0, - 0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1830,1,0,0,0,1833,1834, - 5,517,0,0,1834,1836,1,0,0,0,1835,1822,1,0,0,0,1835,1824,1,0,0,0, - 1836,1847,1,0,0,0,1837,1839,5,241,0,0,1838,1837,1,0,0,0,1838,1839, - 1,0,0,0,1839,1840,1,0,0,0,1840,1841,5,202,0,0,1841,1844,3,266,133, - 0,1842,1843,5,127,0,0,1843,1845,3,358,179,0,1844,1842,1,0,0,0,1844, - 1845,1,0,0,0,1845,1847,1,0,0,0,1846,1818,1,0,0,0,1846,1838,1,0,0, - 0,1847,265,1,0,0,0,1848,1849,6,133,-1,0,1849,1853,3,268,134,0,1850, - 1851,7,30,0,0,1851,1853,3,266,133,7,1852,1848,1,0,0,0,1852,1850, - 1,0,0,0,1853,1875,1,0,0,0,1854,1855,10,6,0,0,1855,1856,7,31,0,0, - 1856,1874,3,266,133,7,1857,1858,10,5,0,0,1858,1859,7,32,0,0,1859, - 1874,3,266,133,6,1860,1861,10,4,0,0,1861,1862,5,511,0,0,1862,1874, - 3,266,133,5,1863,1864,10,3,0,0,1864,1865,5,512,0,0,1865,1874,3,266, - 133,4,1866,1867,10,2,0,0,1867,1868,5,510,0,0,1868,1874,3,266,133, - 3,1869,1870,10,1,0,0,1870,1871,3,346,173,0,1871,1872,3,266,133,2, - 1872,1874,1,0,0,0,1873,1854,1,0,0,0,1873,1857,1,0,0,0,1873,1860, - 1,0,0,0,1873,1863,1,0,0,0,1873,1866,1,0,0,0,1873,1869,1,0,0,0,1874, - 1877,1,0,0,0,1875,1873,1,0,0,0,1875,1876,1,0,0,0,1876,267,1,0,0, - 0,1877,1875,1,0,0,0,1878,1879,6,134,-1,0,1879,1881,5,40,0,0,1880, - 1882,3,310,155,0,1881,1880,1,0,0,0,1882,1883,1,0,0,0,1883,1881,1, - 0,0,0,1883,1884,1,0,0,0,1884,1887,1,0,0,0,1885,1886,5,120,0,0,1886, - 1888,3,258,129,0,1887,1885,1,0,0,0,1887,1888,1,0,0,0,1888,1889,1, - 0,0,0,1889,1890,5,122,0,0,1890,1971,1,0,0,0,1891,1892,5,40,0,0,1892, - 1894,3,258,129,0,1893,1895,3,310,155,0,1894,1893,1,0,0,0,1895,1896, - 1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897,1900,1,0,0,0,1898, - 1899,5,120,0,0,1899,1901,3,258,129,0,1900,1898,1,0,0,0,1900,1901, - 1,0,0,0,1901,1902,1,0,0,0,1902,1903,5,122,0,0,1903,1971,1,0,0,0, - 1904,1905,5,41,0,0,1905,1906,5,516,0,0,1906,1907,3,258,129,0,1907, - 1908,5,17,0,0,1908,1909,3,56,28,0,1909,1910,5,517,0,0,1910,1971, - 1,0,0,0,1911,1912,5,457,0,0,1912,1913,5,516,0,0,1913,1916,3,258, - 129,0,1914,1915,5,461,0,0,1915,1917,5,476,0,0,1916,1914,1,0,0,0, - 1916,1917,1,0,0,0,1917,1918,1,0,0,0,1918,1919,5,517,0,0,1919,1971, - 1,0,0,0,1920,1921,5,467,0,0,1921,1922,5,516,0,0,1922,1925,3,258, - 129,0,1923,1924,5,461,0,0,1924,1926,5,476,0,0,1925,1923,1,0,0,0, - 1925,1926,1,0,0,0,1926,1927,1,0,0,0,1927,1928,5,517,0,0,1928,1971, - 1,0,0,0,1929,1930,5,281,0,0,1930,1931,5,516,0,0,1931,1932,3,266, - 133,0,1932,1933,5,170,0,0,1933,1934,3,266,133,0,1934,1935,5,517, - 0,0,1935,1971,1,0,0,0,1936,1971,3,354,177,0,1937,1971,5,527,0,0, - 1938,1939,3,328,164,0,1939,1940,5,513,0,0,1940,1941,5,527,0,0,1941, - 1971,1,0,0,0,1942,1943,5,516,0,0,1943,1944,3,158,79,0,1944,1945, - 5,517,0,0,1945,1971,1,0,0,0,1946,1947,3,272,136,0,1947,1959,5,516, - 0,0,1948,1950,3,364,182,0,1949,1948,1,0,0,0,1949,1950,1,0,0,0,1950, - 1951,1,0,0,0,1951,1956,3,274,137,0,1952,1953,5,520,0,0,1953,1955, - 3,274,137,0,1954,1952,1,0,0,0,1955,1958,1,0,0,0,1956,1954,1,0,0, - 0,1956,1957,1,0,0,0,1957,1960,1,0,0,0,1958,1956,1,0,0,0,1959,1949, - 1,0,0,0,1959,1960,1,0,0,0,1960,1961,1,0,0,0,1961,1962,5,517,0,0, - 1962,1971,1,0,0,0,1963,1971,3,304,152,0,1964,1971,3,276,138,0,1965, - 1966,5,516,0,0,1966,1967,3,258,129,0,1967,1968,5,517,0,0,1968,1971, - 1,0,0,0,1969,1971,5,85,0,0,1970,1878,1,0,0,0,1970,1891,1,0,0,0,1970, - 1904,1,0,0,0,1970,1911,1,0,0,0,1970,1920,1,0,0,0,1970,1929,1,0,0, - 0,1970,1936,1,0,0,0,1970,1937,1,0,0,0,1970,1938,1,0,0,0,1970,1942, - 1,0,0,0,1970,1946,1,0,0,0,1970,1963,1,0,0,0,1970,1964,1,0,0,0,1970, - 1965,1,0,0,0,1970,1969,1,0,0,0,1971,1979,1,0,0,0,1972,1973,10,5, - 0,0,1973,1974,5,514,0,0,1974,1975,3,266,133,0,1975,1976,5,515,0, - 0,1976,1978,1,0,0,0,1977,1972,1,0,0,0,1978,1981,1,0,0,0,1979,1977, - 1,0,0,0,1979,1980,1,0,0,0,1980,269,1,0,0,0,1981,1979,1,0,0,0,1982, - 1983,3,328,164,0,1983,271,1,0,0,0,1984,1987,3,372,186,0,1985,1987, - 3,328,164,0,1986,1984,1,0,0,0,1986,1985,1,0,0,0,1987,273,1,0,0,0, - 1988,1993,3,370,185,0,1989,1993,3,368,184,0,1990,1993,3,366,183, - 0,1991,1993,3,258,129,0,1992,1988,1,0,0,0,1992,1989,1,0,0,0,1992, - 1990,1,0,0,0,1992,1991,1,0,0,0,1993,275,1,0,0,0,1994,1995,3,328, - 164,0,1995,277,1,0,0,0,1996,1997,3,304,152,0,1997,279,1,0,0,0,1998, - 2001,3,304,152,0,1999,2001,3,276,138,0,2000,1998,1,0,0,0,2000,1999, - 1,0,0,0,2001,281,1,0,0,0,2002,2005,5,182,0,0,2003,2006,3,284,142, - 0,2004,2006,3,288,144,0,2005,2003,1,0,0,0,2005,2004,1,0,0,0,2005, - 2006,1,0,0,0,2006,283,1,0,0,0,2007,2009,3,286,143,0,2008,2010,3, - 290,145,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010,285,1,0,0,0,2011, - 2012,3,292,146,0,2012,2013,3,368,184,0,2013,2015,1,0,0,0,2014,2011, - 1,0,0,0,2015,2016,1,0,0,0,2016,2014,1,0,0,0,2016,2017,1,0,0,0,2017, - 287,1,0,0,0,2018,2021,3,290,145,0,2019,2022,3,286,143,0,2020,2022, - 3,290,145,0,2021,2019,1,0,0,0,2021,2020,1,0,0,0,2021,2022,1,0,0, - 0,2022,289,1,0,0,0,2023,2024,3,292,146,0,2024,2025,3,368,184,0,2025, - 2026,5,388,0,0,2026,2027,3,368,184,0,2027,291,1,0,0,0,2028,2030, - 7,33,0,0,2029,2028,1,0,0,0,2029,2030,1,0,0,0,2030,2031,1,0,0,0,2031, - 2034,7,34,0,0,2032,2034,5,537,0,0,2033,2029,1,0,0,0,2033,2032,1, - 0,0,0,2034,293,1,0,0,0,2035,2037,5,17,0,0,2036,2035,1,0,0,0,2036, - 2037,1,0,0,0,2037,2038,1,0,0,0,2038,2040,3,304,152,0,2039,2041,3, - 300,150,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041,295,1,0,0,0,2042, - 2043,3,304,152,0,2043,2044,3,298,149,0,2044,297,1,0,0,0,2045,2046, - 5,221,0,0,2046,2048,3,304,152,0,2047,2045,1,0,0,0,2048,2049,1,0, - 0,0,2049,2047,1,0,0,0,2049,2050,1,0,0,0,2050,2053,1,0,0,0,2051,2053, - 1,0,0,0,2052,2047,1,0,0,0,2052,2051,1,0,0,0,2053,299,1,0,0,0,2054, - 2055,5,516,0,0,2055,2056,3,302,151,0,2056,2057,5,517,0,0,2057,301, - 1,0,0,0,2058,2063,3,304,152,0,2059,2060,5,520,0,0,2060,2062,3,304, - 152,0,2061,2059,1,0,0,0,2062,2065,1,0,0,0,2063,2061,1,0,0,0,2063, - 2064,1,0,0,0,2064,303,1,0,0,0,2065,2063,1,0,0,0,2066,2070,3,306, - 153,0,2067,2070,3,308,154,0,2068,2070,3,374,187,0,2069,2066,1,0, - 0,0,2069,2067,1,0,0,0,2069,2068,1,0,0,0,2070,305,1,0,0,0,2071,2072, - 7,35,0,0,2072,307,1,0,0,0,2073,2074,5,537,0,0,2074,309,1,0,0,0,2075, - 2076,5,428,0,0,2076,2077,3,258,129,0,2077,2078,5,376,0,0,2078,2079, - 3,258,129,0,2079,311,1,0,0,0,2080,2081,3,304,152,0,2081,313,1,0, - 0,0,2082,2083,3,304,152,0,2083,315,1,0,0,0,2084,2087,3,304,152,0, - 2085,2086,5,513,0,0,2086,2088,3,304,152,0,2087,2085,1,0,0,0,2087, - 2088,1,0,0,0,2088,317,1,0,0,0,2089,2092,3,304,152,0,2090,2091,5, - 513,0,0,2091,2093,3,304,152,0,2092,2090,1,0,0,0,2092,2093,1,0,0, - 0,2093,319,1,0,0,0,2094,2097,3,304,152,0,2095,2096,5,513,0,0,2096, - 2098,3,304,152,0,2097,2095,1,0,0,0,2097,2098,1,0,0,0,2098,2107,1, - 0,0,0,2099,2100,3,304,152,0,2100,2101,5,513,0,0,2101,2104,3,304, - 152,0,2102,2103,5,513,0,0,2103,2105,3,304,152,0,2104,2102,1,0,0, - 0,2104,2105,1,0,0,0,2105,2107,1,0,0,0,2106,2094,1,0,0,0,2106,2099, - 1,0,0,0,2107,321,1,0,0,0,2108,2111,3,304,152,0,2109,2110,5,513,0, - 0,2110,2112,3,304,152,0,2111,2109,1,0,0,0,2111,2112,1,0,0,0,2112, - 2121,1,0,0,0,2113,2114,3,304,152,0,2114,2115,5,513,0,0,2115,2118, - 3,304,152,0,2116,2117,5,513,0,0,2117,2119,3,304,152,0,2118,2116, - 1,0,0,0,2118,2119,1,0,0,0,2119,2121,1,0,0,0,2120,2108,1,0,0,0,2120, - 2113,1,0,0,0,2121,323,1,0,0,0,2122,2125,3,304,152,0,2123,2124,5, - 513,0,0,2124,2126,3,304,152,0,2125,2123,1,0,0,0,2125,2126,1,0,0, - 0,2126,2135,1,0,0,0,2127,2128,3,304,152,0,2128,2129,5,513,0,0,2129, - 2132,3,304,152,0,2130,2131,5,513,0,0,2131,2133,3,304,152,0,2132, - 2130,1,0,0,0,2132,2133,1,0,0,0,2133,2135,1,0,0,0,2134,2122,1,0,0, - 0,2134,2127,1,0,0,0,2135,325,1,0,0,0,2136,2139,3,304,152,0,2137, - 2138,5,513,0,0,2138,2140,3,304,152,0,2139,2137,1,0,0,0,2139,2140, - 1,0,0,0,2140,2149,1,0,0,0,2141,2142,3,304,152,0,2142,2143,5,513, - 0,0,2143,2146,3,304,152,0,2144,2145,5,513,0,0,2145,2147,3,304,152, - 0,2146,2144,1,0,0,0,2146,2147,1,0,0,0,2147,2149,1,0,0,0,2148,2136, - 1,0,0,0,2148,2141,1,0,0,0,2149,327,1,0,0,0,2150,2155,3,304,152,0, - 2151,2152,5,513,0,0,2152,2154,3,304,152,0,2153,2151,1,0,0,0,2154, - 2157,1,0,0,0,2155,2156,1,0,0,0,2155,2153,1,0,0,0,2156,329,1,0,0, - 0,2157,2155,1,0,0,0,2158,2159,5,433,0,0,2159,2160,3,336,168,0,2160, - 331,1,0,0,0,2161,2162,5,167,0,0,2162,2163,5,241,0,0,2163,2164,5, - 133,0,0,2164,333,1,0,0,0,2165,2166,5,167,0,0,2166,2167,5,133,0,0, - 2167,335,1,0,0,0,2168,2169,5,516,0,0,2169,2174,3,338,169,0,2170, - 2171,5,520,0,0,2171,2173,3,338,169,0,2172,2170,1,0,0,0,2173,2176, - 1,0,0,0,2174,2172,1,0,0,0,2174,2175,1,0,0,0,2175,2177,1,0,0,0,2176, - 2174,1,0,0,0,2177,2178,5,517,0,0,2178,337,1,0,0,0,2179,2184,3,340, - 170,0,2180,2182,5,505,0,0,2181,2180,1,0,0,0,2181,2182,1,0,0,0,2182, - 2183,1,0,0,0,2183,2185,3,342,171,0,2184,2181,1,0,0,0,2184,2185,1, - 0,0,0,2185,339,1,0,0,0,2186,2190,3,304,152,0,2187,2190,3,276,138, - 0,2188,2190,5,537,0,0,2189,2186,1,0,0,0,2189,2187,1,0,0,0,2189,2188, - 1,0,0,0,2190,341,1,0,0,0,2191,2196,5,538,0,0,2192,2196,5,539,0,0, - 2193,2196,3,362,181,0,2194,2196,5,537,0,0,2195,2191,1,0,0,0,2195, - 2192,1,0,0,0,2195,2193,1,0,0,0,2195,2194,1,0,0,0,2196,343,1,0,0, - 0,2197,2204,5,10,0,0,2198,2199,5,511,0,0,2199,2204,5,511,0,0,2200, - 2204,5,257,0,0,2201,2202,5,510,0,0,2202,2204,5,510,0,0,2203,2197, - 1,0,0,0,2203,2198,1,0,0,0,2203,2200,1,0,0,0,2203,2201,1,0,0,0,2204, - 345,1,0,0,0,2205,2220,5,505,0,0,2206,2220,5,506,0,0,2207,2220,5, - 507,0,0,2208,2209,5,507,0,0,2209,2220,5,505,0,0,2210,2211,5,506, - 0,0,2211,2220,5,505,0,0,2212,2213,5,507,0,0,2213,2220,5,506,0,0, - 2214,2215,5,508,0,0,2215,2220,5,505,0,0,2216,2217,5,507,0,0,2217, - 2218,5,505,0,0,2218,2220,5,506,0,0,2219,2205,1,0,0,0,2219,2206,1, - 0,0,0,2219,2207,1,0,0,0,2219,2208,1,0,0,0,2219,2210,1,0,0,0,2219, - 2212,1,0,0,0,2219,2214,1,0,0,0,2219,2216,1,0,0,0,2220,347,1,0,0, - 0,2221,2222,5,507,0,0,2222,2229,5,507,0,0,2223,2224,5,506,0,0,2224, - 2229,5,506,0,0,2225,2229,5,511,0,0,2226,2229,5,512,0,0,2227,2229, - 5,510,0,0,2228,2221,1,0,0,0,2228,2223,1,0,0,0,2228,2225,1,0,0,0, - 2228,2226,1,0,0,0,2228,2227,1,0,0,0,2229,349,1,0,0,0,2230,2231,7, - 36,0,0,2231,351,1,0,0,0,2232,2233,7,37,0,0,2233,353,1,0,0,0,2234, - 2249,3,282,141,0,2235,2249,3,356,178,0,2236,2249,3,358,179,0,2237, - 2239,5,529,0,0,2238,2237,1,0,0,0,2238,2239,1,0,0,0,2239,2240,1,0, - 0,0,2240,2249,3,360,180,0,2241,2249,3,362,181,0,2242,2249,5,539, - 0,0,2243,2249,5,540,0,0,2244,2246,5,241,0,0,2245,2244,1,0,0,0,2245, - 2246,1,0,0,0,2246,2247,1,0,0,0,2247,2249,5,244,0,0,2248,2234,1,0, - 0,0,2248,2235,1,0,0,0,2248,2236,1,0,0,0,2248,2238,1,0,0,0,2248,2241, - 1,0,0,0,2248,2242,1,0,0,0,2248,2243,1,0,0,0,2248,2245,1,0,0,0,2249, - 355,1,0,0,0,2250,2251,3,366,183,0,2251,2252,3,358,179,0,2252,357, - 1,0,0,0,2253,2254,5,537,0,0,2254,359,1,0,0,0,2255,2256,5,538,0,0, - 2256,361,1,0,0,0,2257,2258,7,38,0,0,2258,363,1,0,0,0,2259,2260,7, - 39,0,0,2260,365,1,0,0,0,2261,2262,7,40,0,0,2262,367,1,0,0,0,2263, - 2264,7,41,0,0,2264,369,1,0,0,0,2265,2266,7,42,0,0,2266,371,1,0,0, - 0,2267,2268,7,43,0,0,2268,373,1,0,0,0,2269,2270,7,44,0,0,2270,375, - 1,0,0,0,270,379,386,389,403,421,425,434,439,446,457,466,478,481, - 488,491,499,503,508,511,518,526,530,542,550,554,586,589,594,598, - 602,606,615,620,624,628,632,635,639,644,650,655,660,663,667,671, + 1333,1334,1,0,0,0,1334,1336,3,320,160,0,1335,1337,3,182,91,0,1336, + 1335,1,0,0,0,1336,1337,1,0,0,0,1337,1371,1,0,0,0,1338,1340,3,322, + 161,0,1339,1341,3,182,91,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341, + 1371,1,0,0,0,1342,1343,5,198,0,0,1343,1344,5,373,0,0,1344,1345,5, + 516,0,0,1345,1346,3,270,135,0,1346,1347,5,516,0,0,1347,1352,3,272, + 136,0,1348,1349,5,520,0,0,1349,1351,3,272,136,0,1350,1348,1,0,0, + 0,1351,1354,1,0,0,0,1352,1350,1,0,0,0,1352,1353,1,0,0,0,1353,1355, + 1,0,0,0,1354,1352,1,0,0,0,1355,1356,5,517,0,0,1356,1357,5,517,0, + 0,1357,1371,1,0,0,0,1358,1360,5,198,0,0,1359,1358,1,0,0,0,1359,1360, + 1,0,0,0,1360,1361,1,0,0,0,1361,1362,5,516,0,0,1362,1363,3,156,78, + 0,1363,1364,5,517,0,0,1364,1371,1,0,0,0,1365,1366,5,405,0,0,1366, + 1367,5,516,0,0,1367,1368,3,256,128,0,1368,1369,5,517,0,0,1369,1371, + 1,0,0,0,1370,1332,1,0,0,0,1370,1338,1,0,0,0,1370,1342,1,0,0,0,1370, + 1359,1,0,0,0,1370,1365,1,0,0,0,1371,181,1,0,0,0,1372,1373,5,146, + 0,0,1373,1374,5,371,0,0,1374,1375,5,17,0,0,1375,1376,5,249,0,0,1376, + 1377,3,184,92,0,1377,183,1,0,0,0,1378,1379,3,256,128,0,1379,185, + 1,0,0,0,1380,1381,5,516,0,0,1381,1382,3,148,74,0,1382,1383,5,517, + 0,0,1383,1384,3,292,146,0,1384,187,1,0,0,0,1385,1386,5,373,0,0,1386, + 1387,5,516,0,0,1387,1388,3,190,95,0,1388,1389,5,517,0,0,1389,189, + 1,0,0,0,1390,1391,3,192,96,0,1391,1392,5,516,0,0,1392,1397,3,194, + 97,0,1393,1394,5,520,0,0,1394,1396,3,194,97,0,1395,1393,1,0,0,0, + 1396,1399,1,0,0,0,1397,1395,1,0,0,0,1397,1398,1,0,0,0,1398,1400, + 1,0,0,0,1399,1397,1,0,0,0,1400,1401,5,517,0,0,1401,191,1,0,0,0,1402, + 1403,7,21,0,0,1403,193,1,0,0,0,1404,1405,5,373,0,0,1405,1420,3,216, + 108,0,1406,1420,3,198,99,0,1407,1420,3,280,140,0,1408,1409,5,446, + 0,0,1409,1410,5,536,0,0,1410,1411,5,373,0,0,1411,1420,3,216,108, + 0,1412,1413,5,498,0,0,1413,1414,5,536,0,0,1414,1420,3,198,99,0,1415, + 1416,3,196,98,0,1416,1417,5,536,0,0,1417,1418,3,280,140,0,1418,1420, + 1,0,0,0,1419,1404,1,0,0,0,1419,1406,1,0,0,0,1419,1407,1,0,0,0,1419, + 1408,1,0,0,0,1419,1412,1,0,0,0,1419,1415,1,0,0,0,1420,195,1,0,0, + 0,1421,1422,7,22,0,0,1422,197,1,0,0,0,1423,1424,5,451,0,0,1424,1425, + 5,516,0,0,1425,1426,3,52,26,0,1426,1427,5,517,0,0,1427,199,1,0,0, + 0,1428,1429,5,253,0,0,1429,1433,3,258,129,0,1430,1431,5,412,0,0, + 1431,1433,3,54,27,0,1432,1428,1,0,0,0,1432,1430,1,0,0,0,1433,201, + 1,0,0,0,1434,1435,5,430,0,0,1435,1436,3,258,129,0,1436,203,1,0,0, + 0,1437,1438,5,159,0,0,1438,1439,5,34,0,0,1439,1444,3,206,103,0,1440, + 1441,5,520,0,0,1441,1443,3,206,103,0,1442,1440,1,0,0,0,1443,1446, + 1,0,0,0,1444,1442,1,0,0,0,1444,1445,1,0,0,0,1445,205,1,0,0,0,1446, + 1444,1,0,0,0,1447,1488,3,52,26,0,1448,1488,3,212,106,0,1449,1450, + 5,516,0,0,1450,1488,5,517,0,0,1451,1452,5,516,0,0,1452,1457,3,256, + 128,0,1453,1454,5,520,0,0,1454,1456,3,256,128,0,1455,1453,1,0,0, + 0,1456,1459,1,0,0,0,1457,1455,1,0,0,0,1457,1458,1,0,0,0,1458,1460, + 1,0,0,0,1459,1457,1,0,0,0,1460,1461,5,517,0,0,1461,1488,1,0,0,0, + 1462,1463,3,210,105,0,1463,1464,5,516,0,0,1464,1469,3,256,128,0, + 1465,1466,5,520,0,0,1466,1468,3,256,128,0,1467,1465,1,0,0,0,1468, + 1471,1,0,0,0,1469,1467,1,0,0,0,1469,1470,1,0,0,0,1470,1472,1,0,0, + 0,1471,1469,1,0,0,0,1472,1473,5,517,0,0,1473,1488,1,0,0,0,1474,1475, + 3,208,104,0,1475,1476,5,516,0,0,1476,1481,3,206,103,0,1477,1478, + 5,520,0,0,1478,1480,3,206,103,0,1479,1477,1,0,0,0,1480,1483,1,0, + 0,0,1481,1479,1,0,0,0,1481,1482,1,0,0,0,1482,1484,1,0,0,0,1483,1481, + 1,0,0,0,1484,1485,5,517,0,0,1485,1488,1,0,0,0,1486,1488,3,256,128, + 0,1487,1447,1,0,0,0,1487,1448,1,0,0,0,1487,1449,1,0,0,0,1487,1451, + 1,0,0,0,1487,1462,1,0,0,0,1487,1474,1,0,0,0,1487,1486,1,0,0,0,1488, + 207,1,0,0,0,1489,1490,5,160,0,0,1490,1491,5,493,0,0,1491,209,1,0, + 0,0,1492,1493,7,23,0,0,1493,211,1,0,0,0,1494,1495,3,214,107,0,1495, + 1496,5,516,0,0,1496,1497,3,216,108,0,1497,1498,5,520,0,0,1498,1499, + 3,280,140,0,1499,1500,5,517,0,0,1500,213,1,0,0,0,1501,1502,7,24, + 0,0,1502,215,1,0,0,0,1503,1504,3,326,163,0,1504,217,1,0,0,0,1505, + 1506,5,163,0,0,1506,1507,3,258,129,0,1507,219,1,0,0,0,1508,1509, + 5,432,0,0,1509,1514,3,222,111,0,1510,1511,5,520,0,0,1511,1513,3, + 222,111,0,1512,1510,1,0,0,0,1513,1516,1,0,0,0,1514,1512,1,0,0,0, + 1514,1515,1,0,0,0,1515,221,1,0,0,0,1516,1514,1,0,0,0,1517,1518,3, + 294,147,0,1518,1519,5,17,0,0,1519,1520,3,224,112,0,1520,223,1,0, + 0,0,1521,1523,3,294,147,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523, + 1524,1,0,0,0,1524,1526,5,516,0,0,1525,1527,3,234,117,0,1526,1525, + 1,0,0,0,1526,1527,1,0,0,0,1527,1529,1,0,0,0,1528,1530,3,228,114, + 0,1529,1528,1,0,0,0,1529,1530,1,0,0,0,1530,1532,1,0,0,0,1531,1533, + 3,250,125,0,1532,1531,1,0,0,0,1532,1533,1,0,0,0,1533,1534,1,0,0, + 0,1534,1535,5,517,0,0,1535,225,1,0,0,0,1536,1537,5,213,0,0,1537, + 1539,5,516,0,0,1538,1540,3,234,117,0,1539,1538,1,0,0,0,1539,1540, + 1,0,0,0,1540,1542,1,0,0,0,1541,1543,3,228,114,0,1542,1541,1,0,0, + 0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1546,3,238,119,0,1545, + 1544,1,0,0,0,1545,1546,1,0,0,0,1546,1548,1,0,0,0,1547,1549,3,244, + 122,0,1548,1547,1,0,0,0,1548,1549,1,0,0,0,1549,1551,1,0,0,0,1550, + 1552,3,246,123,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552,1554,1, + 0,0,0,1553,1555,3,240,120,0,1554,1553,1,0,0,0,1554,1555,1,0,0,0, + 1555,1556,1,0,0,0,1556,1557,3,248,124,0,1557,1562,5,517,0,0,1558, + 1560,5,17,0,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0,1560,1561,1,0, + 0,0,1561,1563,3,302,151,0,1562,1559,1,0,0,0,1562,1563,1,0,0,0,1563, + 227,1,0,0,0,1564,1565,5,258,0,0,1565,1566,5,34,0,0,1566,1571,3,230, + 115,0,1567,1568,5,520,0,0,1568,1570,3,230,115,0,1569,1567,1,0,0, + 0,1570,1573,1,0,0,0,1571,1569,1,0,0,0,1571,1572,1,0,0,0,1572,229, + 1,0,0,0,1573,1571,1,0,0,0,1574,1576,3,52,26,0,1575,1577,7,25,0,0, + 1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,1580,1,0,0,0,1578,1579, + 5,476,0,0,1579,1581,7,26,0,0,1580,1578,1,0,0,0,1580,1581,1,0,0,0, + 1581,231,1,0,0,0,1582,1585,5,204,0,0,1583,1586,5,5,0,0,1584,1586, + 3,256,128,0,1585,1583,1,0,0,0,1585,1584,1,0,0,0,1586,233,1,0,0,0, + 1587,1588,5,268,0,0,1588,1589,5,34,0,0,1589,1594,3,52,26,0,1590, + 1591,5,520,0,0,1591,1593,3,52,26,0,1592,1590,1,0,0,0,1593,1596,1, + 0,0,0,1594,1592,1,0,0,0,1594,1595,1,0,0,0,1595,235,1,0,0,0,1596, + 1594,1,0,0,0,1597,1614,5,527,0,0,1598,1614,5,530,0,0,1599,1614,5, + 535,0,0,1600,1601,5,518,0,0,1601,1602,5,538,0,0,1602,1603,5,520, + 0,0,1603,1604,5,538,0,0,1604,1614,5,519,0,0,1605,1606,5,518,0,0, + 1606,1607,5,538,0,0,1607,1608,5,520,0,0,1608,1614,5,519,0,0,1609, + 1610,5,518,0,0,1610,1611,5,520,0,0,1611,1612,5,538,0,0,1612,1614, + 5,519,0,0,1613,1597,1,0,0,0,1613,1598,1,0,0,0,1613,1599,1,0,0,0, + 1613,1600,1,0,0,0,1613,1605,1,0,0,0,1613,1609,1,0,0,0,1614,237,1, + 0,0,0,1615,1616,5,215,0,0,1616,1621,3,170,85,0,1617,1618,5,520,0, + 0,1618,1620,3,170,85,0,1619,1617,1,0,0,0,1620,1623,1,0,0,0,1621, + 1619,1,0,0,0,1621,1622,1,0,0,0,1622,239,1,0,0,0,1623,1621,1,0,0, + 0,1624,1625,5,271,0,0,1625,1627,5,516,0,0,1626,1628,3,242,121,0, + 1627,1626,1,0,0,0,1628,1629,1,0,0,0,1629,1627,1,0,0,0,1629,1630, + 1,0,0,0,1630,1631,1,0,0,0,1631,1633,5,517,0,0,1632,1634,3,254,127, + 0,1633,1632,1,0,0,0,1633,1634,1,0,0,0,1634,241,1,0,0,0,1635,1637, + 3,304,152,0,1636,1638,3,236,118,0,1637,1636,1,0,0,0,1637,1638,1, + 0,0,0,1638,243,1,0,0,0,1639,1640,5,5,0,0,1640,1641,5,322,0,0,1641, + 1642,5,272,0,0,1642,1648,5,210,0,0,1643,1644,5,254,0,0,1644,1645, + 5,321,0,0,1645,1646,5,272,0,0,1646,1648,5,210,0,0,1647,1639,1,0, + 0,0,1647,1643,1,0,0,0,1648,245,1,0,0,0,1649,1650,5,438,0,0,1650, + 1651,5,210,0,0,1651,1652,5,343,0,0,1652,1653,5,478,0,0,1653,1654, + 5,467,0,0,1654,1674,5,321,0,0,1655,1656,5,438,0,0,1656,1657,5,210, + 0,0,1657,1658,5,343,0,0,1658,1659,5,388,0,0,1659,1660,5,237,0,0, + 1660,1674,5,321,0,0,1661,1662,5,438,0,0,1662,1663,5,210,0,0,1663, + 1664,5,343,0,0,1664,1665,5,388,0,0,1665,1666,5,467,0,0,1666,1674, + 3,304,152,0,1667,1668,5,438,0,0,1668,1669,5,210,0,0,1669,1670,5, + 343,0,0,1670,1671,5,388,0,0,1671,1672,5,457,0,0,1672,1674,3,304, + 152,0,1673,1649,1,0,0,0,1673,1655,1,0,0,0,1673,1661,1,0,0,0,1673, + 1667,1,0,0,0,1674,247,1,0,0,0,1675,1676,5,105,0,0,1676,1681,3,170, + 85,0,1677,1678,5,520,0,0,1678,1680,3,170,85,0,1679,1677,1,0,0,0, + 1680,1683,1,0,0,0,1681,1679,1,0,0,0,1681,1682,1,0,0,0,1682,249,1, + 0,0,0,1683,1681,1,0,0,0,1684,1685,5,292,0,0,1685,1686,5,27,0,0,1686, + 1687,3,280,140,0,1687,1688,3,252,126,0,1688,1694,1,0,0,0,1689,1690, + 5,322,0,0,1690,1691,5,27,0,0,1691,1692,5,538,0,0,1692,1694,3,252, + 126,0,1693,1684,1,0,0,0,1693,1689,1,0,0,0,1694,251,1,0,0,0,1695, + 1696,5,480,0,0,1696,1697,5,10,0,0,1697,1698,5,76,0,0,1698,1699,5, + 321,0,0,1699,253,1,0,0,0,1700,1701,5,434,0,0,1701,1702,3,280,140, + 0,1702,255,1,0,0,0,1703,1704,3,258,129,0,1704,257,1,0,0,0,1705,1706, + 6,129,-1,0,1706,1707,5,241,0,0,1707,1718,3,258,129,6,1708,1709,5, + 133,0,0,1709,1710,5,516,0,0,1710,1711,3,156,78,0,1711,1712,5,517, + 0,0,1712,1718,1,0,0,0,1713,1715,3,264,132,0,1714,1716,3,260,130, + 0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1718,1,0,0,0,1717,1705, + 1,0,0,0,1717,1708,1,0,0,0,1717,1713,1,0,0,0,1718,1733,1,0,0,0,1719, + 1720,10,3,0,0,1720,1721,5,10,0,0,1721,1732,3,258,129,4,1722,1723, + 10,2,0,0,1723,1724,5,257,0,0,1724,1732,3,258,129,3,1725,1726,10, + 1,0,0,1726,1728,5,184,0,0,1727,1729,5,241,0,0,1728,1727,1,0,0,0, + 1728,1729,1,0,0,0,1729,1730,1,0,0,0,1730,1732,7,27,0,0,1731,1719, + 1,0,0,0,1731,1722,1,0,0,0,1731,1725,1,0,0,0,1732,1735,1,0,0,0,1733, + 1731,1,0,0,0,1733,1734,1,0,0,0,1734,259,1,0,0,0,1735,1733,1,0,0, + 0,1736,1738,5,241,0,0,1737,1736,1,0,0,0,1737,1738,1,0,0,0,1738,1739, + 1,0,0,0,1739,1741,5,27,0,0,1740,1742,7,28,0,0,1741,1740,1,0,0,0, + 1741,1742,1,0,0,0,1742,1743,1,0,0,0,1743,1744,3,264,132,0,1744,1745, + 5,10,0,0,1745,1746,3,264,132,0,1746,1804,1,0,0,0,1747,1749,5,241, + 0,0,1748,1747,1,0,0,0,1748,1749,1,0,0,0,1749,1750,1,0,0,0,1750,1751, + 5,170,0,0,1751,1752,5,516,0,0,1752,1757,3,256,128,0,1753,1754,5, + 520,0,0,1754,1756,3,256,128,0,1755,1753,1,0,0,0,1756,1759,1,0,0, + 0,1757,1755,1,0,0,0,1757,1758,1,0,0,0,1758,1760,1,0,0,0,1759,1757, + 1,0,0,0,1760,1761,5,517,0,0,1761,1804,1,0,0,0,1762,1764,5,241,0, + 0,1763,1762,1,0,0,0,1763,1764,1,0,0,0,1764,1765,1,0,0,0,1765,1766, + 5,170,0,0,1766,1767,5,516,0,0,1767,1768,3,156,78,0,1768,1769,5,517, + 0,0,1769,1804,1,0,0,0,1770,1771,5,133,0,0,1771,1772,5,516,0,0,1772, + 1773,3,156,78,0,1773,1774,5,517,0,0,1774,1804,1,0,0,0,1775,1777, + 5,241,0,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777,1778,1,0,0,0, + 1778,1779,5,318,0,0,1779,1804,3,264,132,0,1780,1804,3,262,131,0, + 1781,1783,5,184,0,0,1782,1784,5,241,0,0,1783,1782,1,0,0,0,1783,1784, + 1,0,0,0,1784,1785,1,0,0,0,1785,1804,7,27,0,0,1786,1788,5,184,0,0, + 1787,1789,5,241,0,0,1788,1787,1,0,0,0,1788,1789,1,0,0,0,1789,1790, + 1,0,0,0,1790,1791,5,113,0,0,1791,1792,5,151,0,0,1792,1804,3,264, + 132,0,1793,1795,5,241,0,0,1794,1793,1,0,0,0,1794,1795,1,0,0,0,1795, + 1796,1,0,0,0,1796,1797,5,342,0,0,1797,1798,5,388,0,0,1798,1801,3, + 264,132,0,1799,1800,5,127,0,0,1800,1802,3,356,178,0,1801,1799,1, + 0,0,0,1801,1802,1,0,0,0,1802,1804,1,0,0,0,1803,1737,1,0,0,0,1803, + 1748,1,0,0,0,1803,1763,1,0,0,0,1803,1770,1,0,0,0,1803,1776,1,0,0, + 0,1803,1780,1,0,0,0,1803,1781,1,0,0,0,1803,1786,1,0,0,0,1803,1794, + 1,0,0,0,1804,261,1,0,0,0,1805,1807,5,241,0,0,1806,1805,1,0,0,0,1806, + 1807,1,0,0,0,1807,1808,1,0,0,0,1808,1809,5,202,0,0,1809,1823,7,29, + 0,0,1810,1811,5,516,0,0,1811,1824,5,517,0,0,1812,1813,5,516,0,0, + 1813,1818,3,256,128,0,1814,1815,5,520,0,0,1815,1817,3,256,128,0, + 1816,1814,1,0,0,0,1817,1820,1,0,0,0,1818,1816,1,0,0,0,1818,1819, + 1,0,0,0,1819,1821,1,0,0,0,1820,1818,1,0,0,0,1821,1822,5,517,0,0, + 1822,1824,1,0,0,0,1823,1810,1,0,0,0,1823,1812,1,0,0,0,1824,1835, + 1,0,0,0,1825,1827,5,241,0,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0, + 1827,1828,1,0,0,0,1828,1829,5,202,0,0,1829,1832,3,264,132,0,1830, + 1831,5,127,0,0,1831,1833,3,356,178,0,1832,1830,1,0,0,0,1832,1833, + 1,0,0,0,1833,1835,1,0,0,0,1834,1806,1,0,0,0,1834,1826,1,0,0,0,1835, + 263,1,0,0,0,1836,1837,6,132,-1,0,1837,1841,3,266,133,0,1838,1839, + 7,30,0,0,1839,1841,3,264,132,7,1840,1836,1,0,0,0,1840,1838,1,0,0, + 0,1841,1863,1,0,0,0,1842,1843,10,6,0,0,1843,1844,7,31,0,0,1844,1862, + 3,264,132,7,1845,1846,10,5,0,0,1846,1847,7,32,0,0,1847,1862,3,264, + 132,6,1848,1849,10,4,0,0,1849,1850,5,511,0,0,1850,1862,3,264,132, + 5,1851,1852,10,3,0,0,1852,1853,5,512,0,0,1853,1862,3,264,132,4,1854, + 1855,10,2,0,0,1855,1856,5,510,0,0,1856,1862,3,264,132,3,1857,1858, + 10,1,0,0,1858,1859,3,344,172,0,1859,1860,3,264,132,2,1860,1862,1, + 0,0,0,1861,1842,1,0,0,0,1861,1845,1,0,0,0,1861,1848,1,0,0,0,1861, + 1851,1,0,0,0,1861,1854,1,0,0,0,1861,1857,1,0,0,0,1862,1865,1,0,0, + 0,1863,1861,1,0,0,0,1863,1864,1,0,0,0,1864,265,1,0,0,0,1865,1863, + 1,0,0,0,1866,1867,6,133,-1,0,1867,1869,5,40,0,0,1868,1870,3,308, + 154,0,1869,1868,1,0,0,0,1870,1871,1,0,0,0,1871,1869,1,0,0,0,1871, + 1872,1,0,0,0,1872,1875,1,0,0,0,1873,1874,5,120,0,0,1874,1876,3,256, + 128,0,1875,1873,1,0,0,0,1875,1876,1,0,0,0,1876,1877,1,0,0,0,1877, + 1878,5,122,0,0,1878,1959,1,0,0,0,1879,1880,5,40,0,0,1880,1882,3, + 256,128,0,1881,1883,3,308,154,0,1882,1881,1,0,0,0,1883,1884,1,0, + 0,0,1884,1882,1,0,0,0,1884,1885,1,0,0,0,1885,1888,1,0,0,0,1886,1887, + 5,120,0,0,1887,1889,3,256,128,0,1888,1886,1,0,0,0,1888,1889,1,0, + 0,0,1889,1890,1,0,0,0,1890,1891,5,122,0,0,1891,1959,1,0,0,0,1892, + 1893,5,41,0,0,1893,1894,5,516,0,0,1894,1895,3,256,128,0,1895,1896, + 5,17,0,0,1896,1897,3,56,28,0,1897,1898,5,517,0,0,1898,1959,1,0,0, + 0,1899,1900,5,457,0,0,1900,1901,5,516,0,0,1901,1904,3,256,128,0, + 1902,1903,5,461,0,0,1903,1905,5,476,0,0,1904,1902,1,0,0,0,1904,1905, + 1,0,0,0,1905,1906,1,0,0,0,1906,1907,5,517,0,0,1907,1959,1,0,0,0, + 1908,1909,5,467,0,0,1909,1910,5,516,0,0,1910,1913,3,256,128,0,1911, + 1912,5,461,0,0,1912,1914,5,476,0,0,1913,1911,1,0,0,0,1913,1914,1, + 0,0,0,1914,1915,1,0,0,0,1915,1916,5,517,0,0,1916,1959,1,0,0,0,1917, + 1918,5,281,0,0,1918,1919,5,516,0,0,1919,1920,3,264,132,0,1920,1921, + 5,170,0,0,1921,1922,3,264,132,0,1922,1923,5,517,0,0,1923,1959,1, + 0,0,0,1924,1959,3,352,176,0,1925,1959,5,527,0,0,1926,1927,3,326, + 163,0,1927,1928,5,513,0,0,1928,1929,5,527,0,0,1929,1959,1,0,0,0, + 1930,1931,5,516,0,0,1931,1932,3,156,78,0,1932,1933,5,517,0,0,1933, + 1959,1,0,0,0,1934,1935,3,270,135,0,1935,1947,5,516,0,0,1936,1938, + 3,362,181,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939,1,0,0, + 0,1939,1944,3,272,136,0,1940,1941,5,520,0,0,1941,1943,3,272,136, + 0,1942,1940,1,0,0,0,1943,1946,1,0,0,0,1944,1942,1,0,0,0,1944,1945, + 1,0,0,0,1945,1948,1,0,0,0,1946,1944,1,0,0,0,1947,1937,1,0,0,0,1947, + 1948,1,0,0,0,1948,1949,1,0,0,0,1949,1950,5,517,0,0,1950,1959,1,0, + 0,0,1951,1959,3,302,151,0,1952,1959,3,274,137,0,1953,1954,5,516, + 0,0,1954,1955,3,256,128,0,1955,1956,5,517,0,0,1956,1959,1,0,0,0, + 1957,1959,5,85,0,0,1958,1866,1,0,0,0,1958,1879,1,0,0,0,1958,1892, + 1,0,0,0,1958,1899,1,0,0,0,1958,1908,1,0,0,0,1958,1917,1,0,0,0,1958, + 1924,1,0,0,0,1958,1925,1,0,0,0,1958,1926,1,0,0,0,1958,1930,1,0,0, + 0,1958,1934,1,0,0,0,1958,1951,1,0,0,0,1958,1952,1,0,0,0,1958,1953, + 1,0,0,0,1958,1957,1,0,0,0,1959,1967,1,0,0,0,1960,1961,10,5,0,0,1961, + 1962,5,514,0,0,1962,1963,3,264,132,0,1963,1964,5,515,0,0,1964,1966, + 1,0,0,0,1965,1960,1,0,0,0,1966,1969,1,0,0,0,1967,1965,1,0,0,0,1967, + 1968,1,0,0,0,1968,267,1,0,0,0,1969,1967,1,0,0,0,1970,1971,3,326, + 163,0,1971,269,1,0,0,0,1972,1975,3,370,185,0,1973,1975,3,326,163, + 0,1974,1972,1,0,0,0,1974,1973,1,0,0,0,1975,271,1,0,0,0,1976,1981, + 3,368,184,0,1977,1981,3,366,183,0,1978,1981,3,364,182,0,1979,1981, + 3,256,128,0,1980,1976,1,0,0,0,1980,1977,1,0,0,0,1980,1978,1,0,0, + 0,1980,1979,1,0,0,0,1981,273,1,0,0,0,1982,1983,3,326,163,0,1983, + 275,1,0,0,0,1984,1985,3,302,151,0,1985,277,1,0,0,0,1986,1989,3,302, + 151,0,1987,1989,3,274,137,0,1988,1986,1,0,0,0,1988,1987,1,0,0,0, + 1989,279,1,0,0,0,1990,1993,5,182,0,0,1991,1994,3,282,141,0,1992, + 1994,3,286,143,0,1993,1991,1,0,0,0,1993,1992,1,0,0,0,1993,1994,1, + 0,0,0,1994,281,1,0,0,0,1995,1997,3,284,142,0,1996,1998,3,288,144, + 0,1997,1996,1,0,0,0,1997,1998,1,0,0,0,1998,283,1,0,0,0,1999,2000, + 3,290,145,0,2000,2001,3,366,183,0,2001,2003,1,0,0,0,2002,1999,1, + 0,0,0,2003,2004,1,0,0,0,2004,2002,1,0,0,0,2004,2005,1,0,0,0,2005, + 285,1,0,0,0,2006,2009,3,288,144,0,2007,2010,3,284,142,0,2008,2010, + 3,288,144,0,2009,2007,1,0,0,0,2009,2008,1,0,0,0,2009,2010,1,0,0, + 0,2010,287,1,0,0,0,2011,2012,3,290,145,0,2012,2013,3,366,183,0,2013, + 2014,5,388,0,0,2014,2015,3,366,183,0,2015,289,1,0,0,0,2016,2018, + 7,33,0,0,2017,2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019,1,0,0,0,2019, + 2022,7,34,0,0,2020,2022,5,537,0,0,2021,2017,1,0,0,0,2021,2020,1, + 0,0,0,2022,291,1,0,0,0,2023,2025,5,17,0,0,2024,2023,1,0,0,0,2024, + 2025,1,0,0,0,2025,2026,1,0,0,0,2026,2028,3,302,151,0,2027,2029,3, + 298,149,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029,293,1,0,0,0,2030, + 2031,3,302,151,0,2031,2032,3,296,148,0,2032,295,1,0,0,0,2033,2034, + 5,221,0,0,2034,2036,3,302,151,0,2035,2033,1,0,0,0,2036,2037,1,0, + 0,0,2037,2035,1,0,0,0,2037,2038,1,0,0,0,2038,2041,1,0,0,0,2039,2041, + 1,0,0,0,2040,2035,1,0,0,0,2040,2039,1,0,0,0,2041,297,1,0,0,0,2042, + 2043,5,516,0,0,2043,2044,3,300,150,0,2044,2045,5,517,0,0,2045,299, + 1,0,0,0,2046,2051,3,302,151,0,2047,2048,5,520,0,0,2048,2050,3,302, + 151,0,2049,2047,1,0,0,0,2050,2053,1,0,0,0,2051,2049,1,0,0,0,2051, + 2052,1,0,0,0,2052,301,1,0,0,0,2053,2051,1,0,0,0,2054,2058,3,304, + 152,0,2055,2058,3,306,153,0,2056,2058,3,372,186,0,2057,2054,1,0, + 0,0,2057,2055,1,0,0,0,2057,2056,1,0,0,0,2058,303,1,0,0,0,2059,2060, + 7,35,0,0,2060,305,1,0,0,0,2061,2062,5,537,0,0,2062,307,1,0,0,0,2063, + 2064,5,428,0,0,2064,2065,3,256,128,0,2065,2066,5,376,0,0,2066,2067, + 3,256,128,0,2067,309,1,0,0,0,2068,2069,3,302,151,0,2069,311,1,0, + 0,0,2070,2071,3,302,151,0,2071,313,1,0,0,0,2072,2075,3,302,151,0, + 2073,2074,5,513,0,0,2074,2076,3,302,151,0,2075,2073,1,0,0,0,2075, + 2076,1,0,0,0,2076,315,1,0,0,0,2077,2080,3,302,151,0,2078,2079,5, + 513,0,0,2079,2081,3,302,151,0,2080,2078,1,0,0,0,2080,2081,1,0,0, + 0,2081,317,1,0,0,0,2082,2085,3,302,151,0,2083,2084,5,513,0,0,2084, + 2086,3,302,151,0,2085,2083,1,0,0,0,2085,2086,1,0,0,0,2086,2095,1, + 0,0,0,2087,2088,3,302,151,0,2088,2089,5,513,0,0,2089,2092,3,302, + 151,0,2090,2091,5,513,0,0,2091,2093,3,302,151,0,2092,2090,1,0,0, + 0,2092,2093,1,0,0,0,2093,2095,1,0,0,0,2094,2082,1,0,0,0,2094,2087, + 1,0,0,0,2095,319,1,0,0,0,2096,2099,3,302,151,0,2097,2098,5,513,0, + 0,2098,2100,3,302,151,0,2099,2097,1,0,0,0,2099,2100,1,0,0,0,2100, + 2109,1,0,0,0,2101,2102,3,302,151,0,2102,2103,5,513,0,0,2103,2106, + 3,302,151,0,2104,2105,5,513,0,0,2105,2107,3,302,151,0,2106,2104, + 1,0,0,0,2106,2107,1,0,0,0,2107,2109,1,0,0,0,2108,2096,1,0,0,0,2108, + 2101,1,0,0,0,2109,321,1,0,0,0,2110,2113,3,302,151,0,2111,2112,5, + 513,0,0,2112,2114,3,302,151,0,2113,2111,1,0,0,0,2113,2114,1,0,0, + 0,2114,2123,1,0,0,0,2115,2116,3,302,151,0,2116,2117,5,513,0,0,2117, + 2120,3,302,151,0,2118,2119,5,513,0,0,2119,2121,3,302,151,0,2120, + 2118,1,0,0,0,2120,2121,1,0,0,0,2121,2123,1,0,0,0,2122,2110,1,0,0, + 0,2122,2115,1,0,0,0,2123,323,1,0,0,0,2124,2127,3,302,151,0,2125, + 2126,5,513,0,0,2126,2128,3,302,151,0,2127,2125,1,0,0,0,2127,2128, + 1,0,0,0,2128,2137,1,0,0,0,2129,2130,3,302,151,0,2130,2131,5,513, + 0,0,2131,2134,3,302,151,0,2132,2133,5,513,0,0,2133,2135,3,302,151, + 0,2134,2132,1,0,0,0,2134,2135,1,0,0,0,2135,2137,1,0,0,0,2136,2124, + 1,0,0,0,2136,2129,1,0,0,0,2137,325,1,0,0,0,2138,2143,3,302,151,0, + 2139,2140,5,513,0,0,2140,2142,3,302,151,0,2141,2139,1,0,0,0,2142, + 2145,1,0,0,0,2143,2144,1,0,0,0,2143,2141,1,0,0,0,2144,327,1,0,0, + 0,2145,2143,1,0,0,0,2146,2147,5,433,0,0,2147,2148,3,334,167,0,2148, + 329,1,0,0,0,2149,2150,5,167,0,0,2150,2151,5,241,0,0,2151,2152,5, + 133,0,0,2152,331,1,0,0,0,2153,2154,5,167,0,0,2154,2155,5,133,0,0, + 2155,333,1,0,0,0,2156,2157,5,516,0,0,2157,2162,3,336,168,0,2158, + 2159,5,520,0,0,2159,2161,3,336,168,0,2160,2158,1,0,0,0,2161,2164, + 1,0,0,0,2162,2160,1,0,0,0,2162,2163,1,0,0,0,2163,2165,1,0,0,0,2164, + 2162,1,0,0,0,2165,2166,5,517,0,0,2166,335,1,0,0,0,2167,2172,3,338, + 169,0,2168,2170,5,505,0,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170, + 2171,1,0,0,0,2171,2173,3,340,170,0,2172,2169,1,0,0,0,2172,2173,1, + 0,0,0,2173,337,1,0,0,0,2174,2178,3,302,151,0,2175,2178,3,274,137, + 0,2176,2178,5,537,0,0,2177,2174,1,0,0,0,2177,2175,1,0,0,0,2177,2176, + 1,0,0,0,2178,339,1,0,0,0,2179,2184,5,538,0,0,2180,2184,5,539,0,0, + 2181,2184,3,360,180,0,2182,2184,5,537,0,0,2183,2179,1,0,0,0,2183, + 2180,1,0,0,0,2183,2181,1,0,0,0,2183,2182,1,0,0,0,2184,341,1,0,0, + 0,2185,2192,5,10,0,0,2186,2187,5,511,0,0,2187,2192,5,511,0,0,2188, + 2192,5,257,0,0,2189,2190,5,510,0,0,2190,2192,5,510,0,0,2191,2185, + 1,0,0,0,2191,2186,1,0,0,0,2191,2188,1,0,0,0,2191,2189,1,0,0,0,2192, + 343,1,0,0,0,2193,2208,5,505,0,0,2194,2208,5,506,0,0,2195,2208,5, + 507,0,0,2196,2197,5,507,0,0,2197,2208,5,505,0,0,2198,2199,5,506, + 0,0,2199,2208,5,505,0,0,2200,2201,5,507,0,0,2201,2208,5,506,0,0, + 2202,2203,5,508,0,0,2203,2208,5,505,0,0,2204,2205,5,507,0,0,2205, + 2206,5,505,0,0,2206,2208,5,506,0,0,2207,2193,1,0,0,0,2207,2194,1, + 0,0,0,2207,2195,1,0,0,0,2207,2196,1,0,0,0,2207,2198,1,0,0,0,2207, + 2200,1,0,0,0,2207,2202,1,0,0,0,2207,2204,1,0,0,0,2208,345,1,0,0, + 0,2209,2210,5,507,0,0,2210,2217,5,507,0,0,2211,2212,5,506,0,0,2212, + 2217,5,506,0,0,2213,2217,5,511,0,0,2214,2217,5,512,0,0,2215,2217, + 5,510,0,0,2216,2209,1,0,0,0,2216,2211,1,0,0,0,2216,2213,1,0,0,0, + 2216,2214,1,0,0,0,2216,2215,1,0,0,0,2217,347,1,0,0,0,2218,2219,7, + 36,0,0,2219,349,1,0,0,0,2220,2221,7,37,0,0,2221,351,1,0,0,0,2222, + 2237,3,280,140,0,2223,2237,3,354,177,0,2224,2237,3,356,178,0,2225, + 2227,5,529,0,0,2226,2225,1,0,0,0,2226,2227,1,0,0,0,2227,2228,1,0, + 0,0,2228,2237,3,358,179,0,2229,2237,3,360,180,0,2230,2237,5,539, + 0,0,2231,2237,5,540,0,0,2232,2234,5,241,0,0,2233,2232,1,0,0,0,2233, + 2234,1,0,0,0,2234,2235,1,0,0,0,2235,2237,5,244,0,0,2236,2222,1,0, + 0,0,2236,2223,1,0,0,0,2236,2224,1,0,0,0,2236,2226,1,0,0,0,2236,2229, + 1,0,0,0,2236,2230,1,0,0,0,2236,2231,1,0,0,0,2236,2233,1,0,0,0,2237, + 353,1,0,0,0,2238,2239,3,364,182,0,2239,2240,3,356,178,0,2240,355, + 1,0,0,0,2241,2242,5,537,0,0,2242,357,1,0,0,0,2243,2244,5,538,0,0, + 2244,359,1,0,0,0,2245,2246,7,38,0,0,2246,361,1,0,0,0,2247,2248,7, + 39,0,0,2248,363,1,0,0,0,2249,2250,7,40,0,0,2250,365,1,0,0,0,2251, + 2252,7,41,0,0,2252,367,1,0,0,0,2253,2254,7,42,0,0,2254,369,1,0,0, + 0,2255,2256,7,43,0,0,2256,371,1,0,0,0,2257,2258,7,44,0,0,2258,373, + 1,0,0,0,266,377,384,387,401,419,423,432,437,444,455,464,476,479, + 486,489,497,501,506,509,516,524,528,540,548,552,584,587,592,596, + 600,604,613,618,622,626,631,634,638,643,649,654,659,663,667,671, 679,687,691,695,699,703,707,711,715,719,721,731,739,763,770,776, - 779,782,792,795,803,815,839,851,856,860,868,872,878,888,892,898, - 902,906,909,918,922,929,932,942,950,958,962,977,996,1007,1011,1018, + 779,782,789,792,801,813,837,849,854,858,866,870,876,886,891,897, + 901,905,909,918,922,929,932,942,950,958,962,977,996,1007,1011,1018, 1023,1029,1033,1040,1044,1048,1052,1060,1064,1069,1075,1081,1084, 1088,1099,1108,1122,1134,1149,1152,1156,1159,1161,1166,1170,1173, 1177,1186,1195,1205,1210,1221,1224,1227,1230,1233,1239,1243,1251, 1254,1259,1262,1266,1269,1271,1285,1296,1301,1309,1312,1315,1320, - 1322,1324,1329,1332,1336,1339,1342,1346,1349,1352,1364,1371,1382, - 1409,1431,1444,1456,1469,1481,1493,1499,1526,1534,1538,1541,1544, - 1551,1554,1557,1560,1563,1566,1571,1574,1583,1588,1592,1597,1606, - 1625,1633,1641,1645,1649,1659,1685,1693,1705,1727,1729,1740,1743, - 1745,1749,1753,1760,1769,1775,1788,1795,1800,1806,1813,1815,1818, - 1830,1835,1838,1844,1846,1852,1873,1875,1883,1887,1896,1900,1916, - 1925,1949,1956,1959,1970,1979,1986,1992,2000,2005,2009,2016,2021, - 2029,2033,2036,2040,2049,2052,2063,2069,2087,2092,2097,2104,2106, - 2111,2118,2120,2125,2132,2134,2139,2146,2148,2155,2174,2181,2184, - 2189,2195,2203,2219,2228,2238,2245,2248 + 1322,1324,1329,1332,1336,1340,1352,1359,1370,1397,1419,1432,1444, + 1457,1469,1481,1487,1514,1522,1526,1529,1532,1539,1542,1545,1548, + 1551,1554,1559,1562,1571,1576,1580,1585,1594,1613,1621,1629,1633, + 1637,1647,1673,1681,1693,1715,1717,1728,1731,1733,1737,1741,1748, + 1757,1763,1776,1783,1788,1794,1801,1803,1806,1818,1823,1826,1832, + 1834,1840,1861,1863,1871,1875,1884,1888,1904,1913,1937,1944,1947, + 1958,1967,1974,1980,1988,1993,1997,2004,2009,2017,2021,2024,2028, + 2037,2040,2051,2057,2075,2080,2085,2092,2094,2099,2106,2108,2113, + 2120,2122,2127,2134,2136,2143,2162,2169,2172,2177,2183,2191,2207, + 2216,2226,2233,2236 ]; private static __ATN: antlr.ATN; @@ -13559,6 +13497,7 @@ export class CreateTableContext extends antlr.ParserRuleContext { export class SimpleCreateTableContext extends antlr.ParserRuleContext { + public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -13613,8 +13552,8 @@ export class SimpleCreateTableContext extends antlr.ParserRuleContext { public selfDefinitionClause(): SelfDefinitionClauseContext | null { return this.getRuleContext(0, SelfDefinitionClauseContext); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_COMMENT, 0); } public partitionDefinition(): PartitionDefinitionContext | null { return this.getRuleContext(0, PartitionDefinitionContext); @@ -13622,6 +13561,9 @@ export class SimpleCreateTableContext extends antlr.ParserRuleContext { public likeDefinition(): LikeDefinitionContext | null { return this.getRuleContext(0, LikeDefinitionContext); } + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); + } public override get ruleIndex(): number { return FlinkSqlParser.RULE_simpleCreateTable; } @@ -13730,6 +13672,7 @@ export class ColumnOptionDefinitionContext extends antlr.ParserRuleContext { export class PhysicalColumnDefinitionContext extends antlr.ParserRuleContext { + public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -13742,8 +13685,11 @@ export class PhysicalColumnDefinitionContext extends antlr.ParserRuleContext { public columnConstraint(): ColumnConstraintContext | null { return this.getRuleContext(0, ColumnConstraintContext); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_COMMENT, 0); + } + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_physicalColumnDefinition; @@ -13883,8 +13829,7 @@ export class ColumnNameListContext extends antlr.ParserRuleContext { export class ColumnTypeContext extends antlr.ParserRuleContext { - public _typeName?: Token | null; - public _type_?: Token | null; + public _colType?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14340,39 +14285,6 @@ export class ColumnConstraintContext extends antlr.ParserRuleContext { } -export class CommentSpecContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_COMMENT(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_COMMENT, 0)!; - } - public STRING_LITERAL(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.STRING_LITERAL, 0)!; - } - public override get ruleIndex(): number { - return FlinkSqlParser.RULE_commentSpec; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterCommentSpec) { - listener.enterCommentSpec(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitCommentSpec) { - listener.exitCommentSpec(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitCommentSpec) { - return visitor.visitCommentSpec(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class MetadataColumnDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -14449,6 +14361,7 @@ export class MetadataKeyContext extends antlr.ParserRuleContext { export class ComputedColumnDefinitionContext extends antlr.ParserRuleContext { + public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14461,8 +14374,11 @@ export class ComputedColumnDefinitionContext extends antlr.ParserRuleContext { public computedColumnExpression(): ComputedColumnExpressionContext { return this.getRuleContext(0, ComputedColumnExpressionContext)!; } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_COMMENT, 0); + } + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_computedColumnDefinition; @@ -15021,6 +14937,7 @@ export class CreateCatalogContext extends antlr.ParserRuleContext { export class CreateDatabaseContext extends antlr.ParserRuleContext { + public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -15039,8 +14956,11 @@ export class CreateDatabaseContext extends antlr.ParserRuleContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_COMMENT, 0); + } + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_createDatabase; @@ -15066,6 +14986,7 @@ export class CreateDatabaseContext extends antlr.ParserRuleContext { export class CreateViewContext extends antlr.ParserRuleContext { + public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -15093,8 +15014,11 @@ export class CreateViewContext extends antlr.ParserRuleContext { public columnNameList(): ColumnNameListContext | null { return this.getRuleContext(0, ColumnNameListContext); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_COMMENT, 0); + } + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_createView; @@ -16876,12 +16800,6 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { public systemTimePeriod(): SystemTimePeriodContext | null { return this.getRuleContext(0, SystemTimePeriodContext); } - public correlationName(): CorrelationNameContext | null { - return this.getRuleContext(0, CorrelationNameContext); - } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_AS, 0); - } public viewPath(): ViewPathContext | null { return this.getRuleContext(0, ViewPathContext); } @@ -20179,6 +20097,7 @@ export class IntervalValueContext extends antlr.ParserRuleContext { export class TableAliasContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; 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 7d29d303..0f911f55 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -44,7 +44,6 @@ import { LengthOneTypeDimensionContext } from "./FlinkSqlParser.js"; import { MapTypeDimensionContext } from "./FlinkSqlParser.js"; import { RowTypeDimensionContext } from "./FlinkSqlParser.js"; import { ColumnConstraintContext } from "./FlinkSqlParser.js"; -import { CommentSpecContext } from "./FlinkSqlParser.js"; import { MetadataColumnDefinitionContext } from "./FlinkSqlParser.js"; import { MetadataKeyContext } from "./FlinkSqlParser.js"; import { ComputedColumnDefinitionContext } from "./FlinkSqlParser.js"; @@ -588,16 +587,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnConstraint?: (ctx: ColumnConstraintContext) => void; - /** - * Enter a parse tree produced by `FlinkSqlParser.commentSpec`. - * @param ctx the parse tree - */ - enterCommentSpec?: (ctx: CommentSpecContext) => void; - /** - * Exit a parse tree produced by `FlinkSqlParser.commentSpec`. - * @param ctx the parse tree - */ - exitCommentSpec?: (ctx: CommentSpecContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.metadataColumnDefinition`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 74f12419..e410f95a 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -44,7 +44,6 @@ import { LengthOneTypeDimensionContext } from "./FlinkSqlParser.js"; import { MapTypeDimensionContext } from "./FlinkSqlParser.js"; import { RowTypeDimensionContext } from "./FlinkSqlParser.js"; import { ColumnConstraintContext } from "./FlinkSqlParser.js"; -import { CommentSpecContext } from "./FlinkSqlParser.js"; import { MetadataColumnDefinitionContext } from "./FlinkSqlParser.js"; import { MetadataKeyContext } from "./FlinkSqlParser.js"; import { ComputedColumnDefinitionContext } from "./FlinkSqlParser.js"; @@ -447,12 +446,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `FlinkSqlParser.commentSpec`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommentSpec?: (ctx: CommentSpecContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.metadataColumnDefinition`. * @param ctx the parse tree diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index 60bbbf97..29979440 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -1,8 +1,16 @@ -import { ParserRuleContext } from 'antlr4ng'; -import { EntityContextType } from './types'; -import { WordPosition, TextPosition } from './textAndWord'; -import { ctxToText, ctxToWord } from './textAndWord'; +import { isToken, ParserRuleContext, Token } from 'antlr4ng'; + import { SimpleStack } from './simpleStack'; +import { + ctxToText, + isWordRange, + TextPosition, + TextSlice, + tokenToWord, + WordPosition, + WordRange, +} from './textAndWord'; +import { EntityContextType } from './types'; /** * TODO: more stmt type should be supported. @@ -47,25 +55,80 @@ export function toStmtContext( }; } -export interface BaseAliasContext { - readonly isAlias: boolean; - alias?: string | EntityContext | null; - origin?: string | EntityContext | StmtContext | null; +/** + * entity's attribute + * @key comment: entity's comment attribute + * @key colType: column entity's type attribute + * @key alias: entity's alias attribute + * */ +export enum AttrName { + comment = '_comment', + colType = '_colType', + alias = '_alias', } - -const baseAlias: BaseAliasContext = { - isAlias: false, - origin: null, - alias: null, +/** + * ParserRuleContext with custom attributes + * */ +type ParserRuleContextWithAttr = ParserRuleContext & { + [K in AttrName]?: Token; }; -export interface EntityContext extends BaseAliasContext { +/** + * Function's arguments + * */ +export interface Argument { + argMode?: WordRange; + argName?: WordRange; + argType: WordRange; +} +export interface BaseEntityContext { readonly entityContextType: EntityContextType; readonly text: string; readonly position: WordPosition; readonly belongStmt: StmtContext; - relatedEntities: EntityContext[] | null; - columns: EntityContext[] | null; + reference?: string | EntityContext; // reference entity + [AttrName.comment]: WordRange | null; + [AttrName.alias]?: WordRange | null; // alias token +} + +export interface CommonEntityContext extends BaseEntityContext { + relatedEntities: CommonEntityContext[] | null; + columns?: ColumnEntityContext[]; +} + +export interface ColumnEntityContext extends BaseEntityContext { + [AttrName.colType]: WordRange | null; +} + +export interface FuncEntityContext extends BaseEntityContext { + relatedEntities: CommonEntityContext[] | null; + arguments: Argument[] | null; // function arguments + returns?: Argument[]; // function return value +} + +export type EntityContext = CommonEntityContext | FuncEntityContext | ColumnEntityContext; + +export function isCommonEntityContext(entity: EntityContext): entity is CommonEntityContext { + if (!entity) return false; + return 'relatedEntities' in entity && !('arguments' in entity); +} + +export function isFuncEntityContext(entity: EntityContext): entity is FuncEntityContext { + if (!entity) return false; + return 'arguments' in entity; +} + +export function isColumnEntityContext(entity: EntityContext): entity is ColumnEntityContext { + if (!entity) return false; + return AttrName.colType in entity; +} + +/** + * what we need when collect attribute information + * */ +interface AttrInfo { + attrNameList: AttrName[]; + endContextList: string[]; } export function toEntityContext( @@ -73,23 +136,113 @@ export function toEntityContext( type: EntityContextType, input: string, belongStmt: StmtContext, - alias?: BaseAliasContext + attrInfo?: AttrInfo ): EntityContext | null { - const word = ctxToWord(ctx, input); + const word = ctxToText(ctx, input); if (!word) return null; - const { text, ...position } = word; - const finalAlias = Object.assign({}, baseAlias, alias ?? {}); - return { + const { text, startLine, endLine, ...rest } = word; + const position = { + ...rest, + line: startLine, + }; + let entityInfo = { entityContextType: type, text, position, belongStmt, - relatedEntities: null, - columns: null, - ...finalAlias, + [AttrName.comment]: null, }; + switch (entityInfo.entityContextType) { + case EntityContextType.FUNCTION: + case EntityContextType.FUNCTION_CREATE: { + (entityInfo as FuncEntityContext).relatedEntities = null; + (entityInfo as FuncEntityContext).arguments = null; + break; + } + case EntityContextType.COLUMN: + case EntityContextType.COLUMN_CREATE: + (entityInfo as ColumnEntityContext)[AttrName.colType] = null; + break; + default: + (entityInfo as CommonEntityContext).relatedEntities = null; + break; + } + if (attrInfo) { + for (let k = 0; k < attrInfo?.attrNameList?.length; k++) { + const attributeName: AttrName = attrInfo?.attrNameList[k]; + const attrToken = findAttribute(ctx, attributeName, attrInfo?.endContextList); + if (attrToken) { + const attrVal: WordRange | TextSlice | null = isToken(attrToken) + ? tokenToWord(attrToken, input) + : ctxToText(attrToken, input); + if (attrVal) { + if (isWordRange(attrVal)) { + entityInfo = Object.assign(entityInfo, { + [attributeName]: attrVal, + }); + } else { + const { startIndex, endIndex, startColumn, endColumn, text, ...rest } = + attrVal; + entityInfo = Object.assign(entityInfo, { + [attributeName]: { + startIndex, + endIndex, + startColumn, + endColumn, + text, + line: rest?.startLine, + }, + }); + } + } + } + } + } + return entityInfo; +} + +export function findAttribute( + ctx: ParserRuleContextWithAttr | null, + keyName: AttrName, + endContextNameList: string[] +): Token | null { + const parent: ParserRuleContextWithAttr | null = ctx?.parent || null; + let attrVal: Token | null = null; + if (parent?.[keyName]) { + attrVal = parent?.[keyName] || null; + return attrVal; + } else { + if (parent?.constructor?.name && !endContextNameList.includes(parent?.constructor?.name)) { + attrVal = findAttribute(parent, keyName, endContextNameList); + } + if (!attrVal) { + if (parent?.children) { + attrVal = findAttributeChildren(parent, keyName); + } + } + } + return attrVal; } +function findAttributeChildren( + ctx: ParserRuleContextWithAttr | null, + keyName: AttrName +): Token | null { + const visitChildren = ctx?.children || []; + let attrVal: Token | null = null; + if (visitChildren.length) { + for (let i = 0; i < visitChildren.length; i++) { + const child = visitChildren[i] || null; + if (child?.[keyName]) { + attrVal = child?.[keyName] || null; + return attrVal; + } else { + attrVal = findAttributeChildren(child, keyName); + } + } + } + return attrVal; +} /** * @todo: Handle alias, includes column alias, table alias, query as alias and so on. * @todo: [may be need] Combine the entities in each clause. @@ -124,8 +277,12 @@ export abstract class EntityCollector { exitEveryRule() {} + getRootStmt() { + return this._rootStmt; + } + getEntities() { - return Array.from(this._entitiesSet); + return Array.from(this._entitiesSet) as EntityContext[]; } enterProgram() { @@ -176,17 +333,13 @@ export abstract class EntityCollector { return stmtContext; } - protected pushEntity( - ctx: ParserRuleContext, - type: EntityContextType, - alias?: BaseAliasContext - ) { + protected pushEntity(ctx: ParserRuleContext, type: EntityContextType, attrInfo?: AttrInfo) { const entityContext = toEntityContext( ctx, type, this._input, this._stmtStack.peek(), - alias + attrInfo ); if (entityContext) { if (this._stmtStack.isEmpty()) { @@ -272,13 +425,20 @@ export abstract class EntityCollector { } return result; }, [] as EntityContext[]); - if (mainEntity && columns.length) { - (mainEntity as EntityContext).columns = columns; + if (isCommonEntityContext(mainEntity)) { + mainEntity = Object.assign(mainEntity, { + columns, + }); + } } if (mainEntity && relatedEntities.length) { - (mainEntity as EntityContext).relatedEntities = relatedEntities; + if (isCommonEntityContext(mainEntity) || isFuncEntityContext(mainEntity)) { + mainEntity = Object.assign(mainEntity, { + relatedEntities, + }); + } } return finalEntities; diff --git a/src/parser/common/textAndWord.ts b/src/parser/common/textAndWord.ts index df3066ca..a7217adc 100644 --- a/src/parser/common/textAndWord.ts +++ b/src/parser/common/textAndWord.ts @@ -40,7 +40,7 @@ export interface TextSlice extends TextPosition { /** * Convert Token to Word */ -export function tokenToWord(token: Token, input: string): WordPosition & { text: string } { +export function tokenToWord(token: Token, input: string): WordRange { const startIndex = token.start; const endIndex = token.stop; const text = token.text ?? ''; @@ -54,29 +54,6 @@ export function tokenToWord(token: Token, input: string): WordPosition & { text: }; } -/** - * Convert ParserRuleContext to Word - */ -export function ctxToWord( - ctx: ParserRuleContext, - input: string -): (WordPosition & { text: string }) | null { - if (!ctx.start || !ctx.stop) { - return null; - } - const startIndex = ctx.start.start; - const endIndex = ctx.stop.stop; - const text = input.slice(startIndex, endIndex + 1); - return { - text, - line: ctx.start.line, - startIndex, - endIndex, - startColumn: ctx.start.column + 1, - endColumn: ctx.stop.column + 1 + (ctx.stop.text?.length ?? 0), - }; -} - /** * Convert ParserRuleContext to Text */ @@ -100,3 +77,12 @@ export function ctxToText( endColumn: ctx.stop.column + 1 + (ctx.stop.text?.length ?? 0), }; } + +/** + * judge whether the context is a WordRange + * @param textOrWord TextSlice or WordRange object + * */ +export function isWordRange(textOrWord: TextSlice | WordRange): textOrWord is WordRange { + if (!textOrWord) return false; + return 'line' in textOrWord; +} diff --git a/src/parser/flink/flinkEntityCollector.ts b/src/parser/flink/flinkEntityCollector.ts index ea401719..e8a7e6c6 100644 --- a/src/parser/flink/flinkEntityCollector.ts +++ b/src/parser/flink/flinkEntityCollector.ts @@ -1,4 +1,3 @@ -import { EntityContextType } from '../common/types'; import { CatalogPathContext, CatalogPathCreateContext, @@ -12,15 +11,18 @@ import { DatabasePathCreateContext, FunctionNameCreateContext, InsertStatementContext, + PhysicalColumnDefinitionContext, QueryStatementContext, SqlStatementContext, TablePathContext, TablePathCreateContext, + TableReferenceContext, ViewPathContext, ViewPathCreateContext, } from '../../lib/flink/FlinkSqlParser'; import { FlinkSqlParserListener } from '../../lib/flink/FlinkSqlParserListener'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { EntityContextType } from '../common/types'; export class FlinkEntityCollector extends EntityCollector implements FlinkSqlParserListener { /** ====== Entity Begin */ @@ -33,7 +35,10 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitDatabasePathCreate(ctx: DatabasePathCreateContext) { - this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE, { + attrNameList: [AttrName.comment], + endContextList: [CreateDatabaseContext.name], + }); } exitDatabasePath(ctx: DatabasePathContext) { @@ -41,11 +46,24 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitTablePath(ctx: TablePathContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? { + attrNameList: [AttrName.alias], + endContextList: [TableReferenceContext.name], + } + : undefined + ); } exitTablePathCreate(ctx: TablePathCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, { + attrNameList: [AttrName.comment], + endContextList: [CreateTableContext.name], + }); } exitViewPath(ctx: ViewPathContext) { @@ -53,11 +71,17 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitViewPathCreate(ctx: ViewPathCreateContext) { - this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + this.pushEntity(ctx, EntityContextType.VIEW_CREATE, { + attrNameList: [AttrName.comment], + endContextList: [CreateViewContext.name], + }); } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, { + attrNameList: [AttrName.comment, AttrName.colType], + endContextList: [PhysicalColumnDefinitionContext.name], + }); } exitFunctionNameCreate(ctx: FunctionNameCreateContext) { diff --git a/test/parser/flink/contextCollect/entityCollector.test.ts b/test/parser/flink/contextCollect/entityCollector.test.ts index 8f412c9f..622565a3 100644 --- a/test/parser/flink/contextCollect/entityCollector.test.ts +++ b/test/parser/flink/contextCollect/entityCollector.test.ts @@ -1,10 +1,15 @@ +import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; -import { ParseTreeListener } from 'antlr4ng'; -import { FlinkSQL, FlinkEntityCollector, FlinkSqlSplitListener } from 'src/parser/flink'; import { FlinkSqlParserListener } from 'src/lib/flink/FlinkSqlParserListener'; +import { + AttrName, + isCommonEntityContext, + isFuncEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; -import { StmtContextType } from 'src/parser/common/entityCollector'; +import { FlinkEntityCollector, FlinkSQL, FlinkSqlSplitListener } from 'src/parser/flink'; const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); @@ -49,23 +54,60 @@ describe('Flink entity collector tests', () => { ); expect(tableCreateEntity.belongStmt.position).toEqual({ startIndex: 0, - endIndex: 85, + endIndex: 180, startLine: 1, endLine: 1, startColumn: 1, - endColumn: 87, + endColumn: 182, }); - expect(tableCreateEntity.relatedEntities).toBeNull(); - - expect(tableCreateEntity.columns.length).toBe(2); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'test table comment ABC.'", + startIndex: 78, + endIndex: 102, + line: 1, + startColumn: 79, + endColumn: 104, }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + + expect(tableCreateEntity.columns?.length).toBe(2); + tableCreateEntity.columns?.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + expect(tableCreateEntity.columns[0][AttrName.comment]).toEqual({ + text: "'col1'", + startIndex: 47, + endIndex: 52, + line: 1, + startColumn: 48, + endColumn: 54, + }); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'BIGINT', + startIndex: 32, + endIndex: 37, + line: 1, + startColumn: 33, + endColumn: 39, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'STRING', + startIndex: 62, + endIndex: 67, + line: 1, + startColumn: 63, + endColumn: 69, + }); + } }); test('create table as select', () => { @@ -83,8 +125,8 @@ describe('Flink entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('my_ctas_table'); expect(tableCreateEntity.position).toEqual({ - startIndex: 102, - endIndex: 114, + startIndex: 197, + endIndex: 209, line: 3, startColumn: 14, endColumn: 27, @@ -94,27 +136,26 @@ describe('Flink entity collector tests', () => { StmtContextType.CREATE_TABLE_STMT ); expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 89, - endIndex: 228, + startIndex: 184, + endIndex: 323, startLine: 3, endLine: 11, startColumn: 1, endColumn: 20, }); - - expect(tableCreateEntity.columns).toBeNull(); - - expect(tableCreateEntity.relatedEntities.length).toBe(1); - tableCreateEntity.relatedEntities.forEach((relatedEntity) => { - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities.length).toBe(1); + tableCreateEntity.relatedEntities.forEach((relatedEntity) => { + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + }); + } expect(allEntities[1].text).toBe('source_table'); expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); expect(allEntities[1].position).toEqual({ - startIndex: 191, - endIndex: 202, + startIndex: 286, + endIndex: 297, line: 9, startColumn: 5, endColumn: 17, @@ -140,14 +181,15 @@ describe('Flink entity collector tests', () => { StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.columns.length).toBe(1); - expect(tableCreateEntity.columns[0].text).toBe('id'); - expect(tableCreateEntity.columns[0].entityContextType).toBe( - EntityContextType.COLUMN_CREATE - ); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); - + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns.length).toBe(1); + expect(tableCreateEntity.columns[0].text).toBe('id'); + expect(tableCreateEntity.columns[0].entityContextType).toBe( + EntityContextType.COLUMN_CREATE + ); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('Orders_in_file'); expect(originTableEntity.belongStmt).toBe(tableCreateEntity.belongStmt); @@ -160,16 +202,41 @@ describe('Flink entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const tableEntity = allEntities[0]; - + const tableEntity1 = allEntities[1]; expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(tableEntity.text).toBe('Orders'); - expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity.text).toBe('Order1'); + expect(tableEntity[AttrName.alias]).toEqual({ + text: 'o1', + startIndex: 616, + endIndex: 617, + line: 23, + startColumn: 54, + endColumn: 56, + }); - expect(tableEntity.columns).toBeNull(); - expect(tableEntity.relatedEntities).toBeNull(); + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('Order2'); + expect(tableEntity1[AttrName.alias]).toEqual({ + text: 't2', + startIndex: 634, + endIndex: 635, + line: 23, + startColumn: 72, + endColumn: 74, + }); + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } }); test('select from table join', () => { @@ -187,16 +254,18 @@ describe('Flink entity collector tests', () => { expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('Orders'); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity1.columns).toBeNull(); - expect(tableEntity1.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.text).toBe('Product'); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity2.columns).toBeNull(); - expect(tableEntity2.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity2)) { + expect(tableEntity2.columns).toBeUndefined(); + expect(tableEntity2.relatedEntities).toBeNull(); + } expect(tableEntity1.belongStmt).toBe(tableEntity2.belongStmt); }); @@ -216,16 +285,17 @@ describe('Flink entity collector tests', () => { expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('t1'); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity1.columns).toBeNull(); - expect(tableEntity1.relatedEntities).toBeNull(); - + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.text).toBe('t2'); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity2.columns).toBeNull(); - expect(tableEntity2.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity2)) { + expect(tableEntity2.columns).toBeUndefined(); + expect(tableEntity2.relatedEntities).toBeNull(); + } expect(tableEntity1.belongStmt.rootStmt).toBe(tableEntity2.belongStmt.rootStmt); }); @@ -244,9 +314,10 @@ describe('Flink entity collector tests', () => { expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.text).toBe('country_page_view'); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - - expect(tableEntity.columns).toBeNull(); - expect(tableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity)) { + expect(tableEntity.columns).toBeUndefined(); + expect(tableEntity.relatedEntities).toBeNull(); + } }); test('insert into table select', () => { @@ -307,11 +378,18 @@ describe('Flink entity collector tests', () => { flink.listen(collectListener as ParseTreeListener, insertTableContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(allEntities[0].text).toBe('view1'); + expect(allEntities[0][AttrName.comment]).toEqual({ + text: "'this is a view'", + startIndex: 1254, + endIndex: 1269, + line: 42, + startColumn: 39, + endColumn: 55, + }); expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); expect(allEntities[1].entityContextType).toBe(EntityContextType.TABLE); @@ -333,26 +411,35 @@ describe('Flink entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(dbEntity.text).toBe('db1'); + expect(dbEntity[AttrName.comment]).toEqual({ + text: "'this is a created database'", + startIndex: 1345, + endIndex: 1372, + line: 44, + startColumn: 43, + endColumn: 71, + }); expect(dbEntity.position).toEqual({ endColumn: 34, - endIndex: 1160, + endIndex: 1335, line: 44, startColumn: 31, - startIndex: 1158, + startIndex: 1333, }); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 82, - endIndex: 1208, + endColumn: 119, + endIndex: 1420, endLine: 44, startColumn: 1, - startIndex: 1128, + startIndex: 1303, startLine: 44, }); - - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create function', () => { @@ -371,10 +458,10 @@ describe('Flink entity collector tests', () => { expect(functionEntity.text).toBe('tempFunction'); expect(functionEntity.position).toEqual({ endColumn: 43, - endIndex: 1253, + endIndex: 1465, line: 46, startColumn: 31, - startIndex: 1242, + startIndex: 1454, }); expect(functionEntity.belongStmt.stmtContextType).toBe( @@ -382,14 +469,15 @@ describe('Flink entity collector tests', () => { ); expect(functionEntity.belongStmt.position).toEqual({ endColumn: 58, - endIndex: 1268, + endIndex: 1480, endLine: 46, startColumn: 1, - startIndex: 1212, + startIndex: 1424, startLine: 46, }); - - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity?.arguments)?.toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); }); diff --git a/test/parser/flink/contextCollect/fixtures/common.sql b/test/parser/flink/contextCollect/fixtures/common.sql index db3f9ccf..3dc20d59 100644 --- a/test/parser/flink/contextCollect/fixtures/common.sql +++ b/test/parser/flink/contextCollect/fixtures/common.sql @@ -1,4 +1,4 @@ -CREATE TABLE MyTable ('user_id' BIGINT, 'name' STRING) WITH ('connector' = 'oracle-x'); +CREATE TABLE MyTable ('user_id' BIGINT COMMENT 'col1', 'name' STRING) COMMENT 'test table comment ABC.' PARTITIONED BY (a, h) WITH ('connector' = 'kafka','kafka.topic' = 'log.test'); CREATE TABLE my_ctas_table WITH ('connector' = 'kafka') AS SELECT @@ -20,7 +20,7 @@ CREATE TABLE Orders_with_watermark ( INCLUDING GENERATED ); -SELECT order_id, price + tax FROM Orders; +SELECT order_id, price + tax AS total FROM Order1 AS o1 JOIN Order2 AS t2 ON t1.id = t2.user_id; SELECT * FROM Orders LEFT JOIN Product ON Orders.product_id = Product.id; @@ -39,8 +39,8 @@ EXECUTE STATEMENT SET BEGIN ('Amercian', 'georage', 22); END; -CREATE VIEW view1(col1, col2) AS SELECT col3, col4 FROM tbl; +CREATE VIEW view1(col1, col2) COMMENT 'this is a view' AS SELECT col3, col4 FROM tbl; -CREATE DATABASE IF NOT EXISTS db1 WITH ('key1' = 'value1', 'key2.a' = 'value2.a'); +CREATE DATABASE IF NOT EXISTS db1 COMMENT 'this is a created database' WITH ('key1' = 'value1', 'key2.a' = 'value2.a'); CREATE FUNCTION IF NOT EXISTS tempFunction AS 'SimpleUdf'; \ No newline at end of file diff --git a/test/parser/hive/contextCollect/entityCollector.test.ts b/test/parser/hive/contextCollect/entityCollector.test.ts index 3b4785f5..70361a5f 100644 --- a/test/parser/hive/contextCollect/entityCollector.test.ts +++ b/test/parser/hive/contextCollect/entityCollector.test.ts @@ -2,10 +2,14 @@ import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; import { HiveSqlParserListener } from 'src/lib/hive/HiveSqlParserListener'; +import { + isCommonEntityContext, + isFuncEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; -import { HiveSQL, HiveEntityCollector } from 'src/parser/hive'; +import { HiveEntityCollector, HiveSQL } from 'src/parser/hive'; import { HiveSqlSplitListener } from 'src/parser/hive/hiveSplitListener'; -import { StmtContextType } from 'src/parser/common/entityCollector'; const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); @@ -58,9 +62,11 @@ describe('Hive entity collector tests', () => { startColumn: 1, }); - expect(tableCreateEntity.relatedEntities).not.toBeNull(); - expect(tableCreateEntity.relatedEntities[0]).toEqual(tableLikeEntity); - expect(tableCreateEntity.columns).toBeNull(); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).not.toBeNull(); + expect(tableCreateEntity.relatedEntities[0]).toEqual(tableLikeEntity); + expect(tableCreateEntity.columns).toBeUndefined(); + } expect(tableLikeEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableLikeEntity.text).toBe('origin_table'); @@ -100,17 +106,21 @@ describe('Hive entity collector tests', () => { startIndex: 68, startLine: 3, }); - - expect(tableCreateEntity.relatedEntities).toBeNull(); - expect(tableCreateEntity.columns).not.toBeNull(); - expect(tableCreateEntity.columns.length).toBe(3); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns).not.toBeNull(); + expect(tableCreateEntity.columns.length).toBe(3); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create table by select', () => { @@ -147,11 +157,11 @@ describe('Hive entity collector tests', () => { startIndex: 202, startLine: 5, }); - - expect(tableCreateEntity.relatedEntities).not.toBeNull(); - expect(tableCreateEntity.relatedEntities[0]).toBe(tableFromEntity); - expect(tableCreateEntity.columns).toBeNull(); - + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).not.toBeNull(); + expect(tableCreateEntity.relatedEntities[0]).toBe(tableFromEntity); + expect(tableCreateEntity.columns).toBeUndefined(); + } expect(tableFromEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableFromEntity.text).toBe('origin_table'); expect(tableFromEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -189,11 +199,11 @@ describe('Hive entity collector tests', () => { startIndex: 283, startLine: 11, }); - - expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); - expect(viewCreateEntity.columns).toBeNull(); - + if (isCommonEntityContext(viewCreateEntity)) { + expect(viewCreateEntity.relatedEntities).not.toBeNull(); + expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.columns).toBeUndefined(); + } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); expect(viewSelectEntity.text).toBe('mydb.sale_tbl'); expect(viewSelectEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -231,18 +241,22 @@ describe('Hive entity collector tests', () => { startIndex: 342, startLine: 14, }); - - expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); - expect(viewCreateEntity.columns).not.toBeNull(); - expect(viewCreateEntity.columns.length).toBe(3); - viewCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(viewCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(viewCreateEntity)) { + expect(viewCreateEntity.relatedEntities).not.toBeNull(); + expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.columns).not.toBeNull(); + expect(viewCreateEntity.columns.length).toBe(3); + viewCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(viewCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); expect(viewSelectEntity.text).toBe('task_tbl'); @@ -281,11 +295,11 @@ describe('Hive entity collector tests', () => { startIndex: 600, startLine: 27, }); - - expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); - expect(viewCreateEntity.columns).toBeNull(); - + if (isCommonEntityContext(viewCreateEntity)) { + expect(viewCreateEntity.relatedEntities).not.toBeNull(); + expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.columns).toBeUndefined(); + } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); expect(viewSelectEntity.text).toBe('mydb.sale_tbl'); expect(viewSelectEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -322,9 +336,10 @@ describe('Hive entity collector tests', () => { startIndex: 719, startLine: 32, }); - - expect(selectTableEntity.columns).toBeNull(); - expect(selectTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(selectTableEntity)) { + expect(selectTableEntity.columns).toBeUndefined(); + expect(selectTableEntity.relatedEntities).toBeNull(); + } }); test('select table with join', () => { @@ -359,14 +374,17 @@ describe('Hive entity collector tests', () => { startIndex: 757, startLine: 34, }); - - expect(selectTableEntity.columns).toBeNull(); - expect(selectTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(selectTableEntity)) { + expect(selectTableEntity.columns).toBeUndefined(); + expect(selectTableEntity.relatedEntities).toBeNull(); + } expect(selectTableEntity.belongStmt).toEqual(joinTableEntity.belongStmt); expect(joinTableEntity.text).toBe('b'); - expect(joinTableEntity.columns).toBeNull(); - expect(joinTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(joinTableEntity)) { + expect(joinTableEntity.columns).toBeUndefined(); + expect(joinTableEntity.relatedEntities).toBeNull(); + } }); test('from select table', () => { @@ -400,9 +418,10 @@ describe('Hive entity collector tests', () => { startIndex: 833, startLine: 36, }); - - expect(selectTableEntity.columns).toBeNull(); - expect(selectTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(selectTableEntity)) { + expect(selectTableEntity?.columns)?.toBeUndefined(); + expect(selectTableEntity.relatedEntities).toBeNull(); + } }); test('from select table with join', () => { @@ -437,14 +456,16 @@ describe('Hive entity collector tests', () => { startIndex: 871, startLine: 38, }); - - expect(selectTableEntity.columns).toBeNull(); - expect(selectTableEntity.relatedEntities).toBeNull(); - + if (isCommonEntityContext(selectTableEntity)) { + expect(selectTableEntity.columns).toBeUndefined(); + expect(selectTableEntity.relatedEntities).toBeNull(); + } expect(selectTableEntity.belongStmt).toEqual(joinTableEntity.belongStmt); expect(joinTableEntity.text).toBe('b'); - expect(joinTableEntity.columns).toBeNull(); - expect(joinTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(joinTableEntity)) { + expect(joinTableEntity.columns).toBeUndefined(); + expect(joinTableEntity.relatedEntities).toBeNull(); + } }); test('insert table with values', () => { @@ -478,9 +499,10 @@ describe('Hive entity collector tests', () => { startIndex: 947, startLine: 40, }); - - expect(insertTableEntity.columns).toBeNull(); - expect(insertTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(insertTableEntity)) { + expect(insertTableEntity.columns).toBeUndefined(); + expect(insertTableEntity.relatedEntities).toBeNull(); + } }); test('insert table use select', () => { @@ -515,9 +537,10 @@ describe('Hive entity collector tests', () => { startIndex: 1049, startLine: 43, }); - - expect(insertTableEntity.columns).toBeNull(); - expect(insertTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(insertTableEntity)) { + expect(insertTableEntity.columns).toBeUndefined(); + expect(insertTableEntity.relatedEntities).toBeNull(); + } expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(fromTableEntity.text).toBe('source_table'); @@ -557,9 +580,10 @@ describe('Hive entity collector tests', () => { startIndex: 1187, startLine: 48, }); - - expect(insertTableEntity.columns).toBeNull(); - expect(insertTableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(insertTableEntity)) { + expect(insertTableEntity.columns).toBeUndefined(); + expect(insertTableEntity.relatedEntities).toBeNull(); + } expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); expect(fromTableEntity.text).toBe('page_view_stg'); @@ -597,9 +621,10 @@ describe('Hive entity collector tests', () => { startIndex: 1374, startLine: 52, }); - - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create remote db', () => { @@ -634,8 +659,10 @@ describe('Hive entity collector tests', () => { startLine: 54, }); - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('show locks db', () => { @@ -670,8 +697,10 @@ describe('Hive entity collector tests', () => { startLine: 56, }); - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create function', () => { @@ -708,8 +737,10 @@ describe('Hive entity collector tests', () => { startLine: 58, }); - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); test('create temporary function', () => { @@ -745,8 +776,9 @@ describe('Hive entity collector tests', () => { startIndex: 1537, startLine: 60, }); - - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); }); diff --git a/test/parser/impala/contextCollect/entityCollector.test.ts b/test/parser/impala/contextCollect/entityCollector.test.ts index b7cb6d28..515cda11 100644 --- a/test/parser/impala/contextCollect/entityCollector.test.ts +++ b/test/parser/impala/contextCollect/entityCollector.test.ts @@ -1,10 +1,14 @@ +import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; -import { EntityContextType } from 'src/parser/common/types'; -import { StmtContextType } from 'src/parser/common/entityCollector'; -import { ImpalaSQL, ImpalaEntityCollector, ImpalaSqlSplitListener } from 'src/parser/impala'; import { ImpalaSqlParserListener } from 'src/lib/impala/ImpalaSqlParserListener'; -import { ParseTreeListener } from 'antlr4ng'; +import { + isCommonEntityContext, + isFuncEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; +import { EntityContextType } from 'src/parser/common/types'; +import { ImpalaEntityCollector, ImpalaSQL, ImpalaSqlSplitListener } from 'src/parser/impala'; const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); @@ -56,11 +60,11 @@ describe('ImpalaSQL entity collector tests', () => { startIndex: 0, startLine: 1, }); - - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.columns).toBeNull(); - expect(tableCreateEntity.relatedEntities[0]).toBe(likeTableEntity); - + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.columns).toBeUndefined(); + expect(tableCreateEntity.relatedEntities[0]).toBe(likeTableEntity); + } expect(likeTableEntity.text).toBe('old_table'); expect(likeTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(likeTableEntity.belongStmt).toBe(tableCreateEntity.belongStmt); @@ -100,15 +104,20 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 3, }); - expect(tableCreateEntity.relatedEntities).toBeNull(); - expect(tableCreateEntity.columns.length).toBe(2); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create table by select', () => { @@ -146,12 +155,14 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 5, }); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.columns).toBeNull(); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.columns).toBeUndefined(); - expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(fromCreateEntity.text).toBe('unsorted_census_data'); - expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromCreateEntity.text).toBe('unsorted_census_data'); + expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + } }); test('create kudu table by select', () => { @@ -189,12 +200,14 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 11, }); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.columns).toBeNull(); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.columns).toBeUndefined(); - expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(fromCreateEntity.text).toBe('kudu_t1'); - expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromCreateEntity.text).toBe('kudu_t1'); + expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + } }); test('create kudu table by columns', () => { @@ -231,15 +244,20 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 16, }); - expect(tableCreateEntity.relatedEntities).toBeNull(); - expect(tableCreateEntity.columns.length).toBe(4); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns.length).toBe(4); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create view', () => { @@ -275,15 +293,20 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 25, }); - expect(viewCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); - expect(viewCreateEntity.columns.length).toBe(2); - viewCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(viewCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(viewCreateEntity)) { + expect(viewCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(viewCreateEntity.columns.length).toBe(2); + viewCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(viewCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } expect(fromCreateEntity.entityContextType).toBe(EntityContextType.TABLE); expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -322,8 +345,9 @@ describe('ImpalaSQL entity collector tests', () => { startIndex: 857, startLine: 27, }); - - expect(tableInsertEntity.columns).toBeNull(); + if (isCommonEntityContext(tableInsertEntity)) { + expect(tableInsertEntity.columns).toBeUndefined(); + } expect(fromTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -362,9 +386,10 @@ describe('ImpalaSQL entity collector tests', () => { startIndex: 899, startLine: 29, }); - - expect(tableEntity1.columns).toBeNull(); - expect(tableEntity1.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } }); test('select table join', () => { @@ -399,16 +424,20 @@ describe('ImpalaSQL entity collector tests', () => { startIndex: 917, startLine: 31, }); - - expect(tableEntity1.columns).toBeNull(); - expect(tableEntity1.relatedEntities).toBeNull(); - - expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); - expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity2.text).toBe('t2'); - expect(tableEntity2.columns).toBeNull(); - expect(tableEntity2.relatedEntities).toBeNull(); - expect(tableEntity2.belongStmt).toBe(tableEntity1.belongStmt); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity2.text).toBe('t2'); + } + + if (isCommonEntityContext(tableEntity2)) { + expect(tableEntity2.columns).toBeUndefined(); + expect(tableEntity2.relatedEntities).toBeNull(); + expect(tableEntity2.belongStmt).toBe(tableEntity1.belongStmt); + } }); test('create db', () => { @@ -443,8 +472,10 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 35, }); - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create schema', () => { @@ -478,9 +509,10 @@ describe('ImpalaSQL entity collector tests', () => { startIndex: 1080, startLine: 37, }); - - expect(schemaEntity.columns).toBeNull(); - expect(schemaEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(schemaEntity)) { + expect(schemaEntity.columns).toBeUndefined(); + expect(schemaEntity.relatedEntities).toBeNull(); + } }); test('comment dbName', () => { @@ -516,8 +548,10 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 39, }); - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create aggregate function', () => { @@ -554,8 +588,10 @@ describe('ImpalaSQL entity collector tests', () => { startLine: 41, }); - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); test('create function', () => { @@ -591,8 +627,9 @@ describe('ImpalaSQL entity collector tests', () => { startIndex: 1395, startLine: 47, }); - - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); }); diff --git a/test/parser/mysql/contextCollect/entityCollector.test.ts b/test/parser/mysql/contextCollect/entityCollector.test.ts index f037149f..4b0ba341 100644 --- a/test/parser/mysql/contextCollect/entityCollector.test.ts +++ b/test/parser/mysql/contextCollect/entityCollector.test.ts @@ -1,11 +1,14 @@ +import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; -import { MySQL } from 'src/parser/mysql'; -import { MySqlEntityCollector, MysqlSplitListener } from 'src/parser/mysql'; -import { ParseTreeListener } from 'antlr4ng'; import { MySqlParserListener } from 'src/lib/mysql/MySqlParserListener'; +import { + isCommonEntityContext, + isFuncEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; -import { StmtContextType } from 'src/parser/common/entityCollector'; +import { MySQL, MySqlEntityCollector, MysqlSplitListener } from 'src/parser/mysql'; const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); @@ -56,17 +59,21 @@ describe('MySQL entity collector tests', () => { startColumn: 1, endColumn: 47, }); - - expect(tableCreateEntity.relatedEntities).toBeNull(); - - expect(tableCreateEntity.columns.length).toBe(2); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create table by select', () => { @@ -102,15 +109,15 @@ describe('MySQL entity collector tests', () => { startColumn: 1, endColumn: 34, }); - - expect(tableCreateEntity.columns).toBeNull(); - - expect(tableCreateEntity.relatedEntities.length).toBe(2); - tableCreateEntity.relatedEntities.forEach((relatedEntity) => { - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - }); - + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); + + expect(tableCreateEntity.relatedEntities.length).toBe(2); + tableCreateEntity.relatedEntities.forEach((relatedEntity) => { + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + }); + } expect(allEntities[1].text).toBe('old_tb1'); expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); expect(allEntities[1].position).toEqual({ @@ -150,11 +157,11 @@ describe('MySQL entity collector tests', () => { expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - - expect(tableCreateEntity.columns).toBeNull(); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); - + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('old_tb'); expect(originTableEntity.belongStmt).toBe(tableCreateEntity.belongStmt); @@ -174,9 +181,10 @@ describe('MySQL entity collector tests', () => { expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.text).toBe('select_tb'); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity.columns).toBeNull(); - expect(tableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity)) { + expect(tableEntity.columns).toBeUndefined(); + expect(tableEntity.relatedEntities).toBeNull(); + } }); test('select into from table', () => { @@ -193,9 +201,10 @@ describe('MySQL entity collector tests', () => { expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.text).toBe('into_select_tb'); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity.columns).toBeNull(); - expect(tableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity)) { + expect(tableEntity.columns).toBeUndefined(); + expect(tableEntity.relatedEntities).toBeNull(); + } }); test('select from table join', () => { @@ -213,16 +222,18 @@ describe('MySQL entity collector tests', () => { expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('from_tb'); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity1.columns).toBeNull(); - expect(tableEntity1.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.text).toBe('join_tb'); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - - expect(tableEntity2.columns).toBeNull(); - expect(tableEntity2.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity2)) { + expect(tableEntity2.columns).toBeUndefined(); + expect(tableEntity2.relatedEntities).toBeNull(); + } expect(tableEntity1.belongStmt).toBe(tableEntity2.belongStmt); }); @@ -241,9 +252,10 @@ describe('MySQL entity collector tests', () => { expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.text).toBe('insert_tb'); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - - expect(tableEntity.columns).toBeNull(); - expect(tableEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity)) { + expect(tableEntity.columns).toBeUndefined(); + expect(tableEntity.relatedEntities).toBeNull(); + } }); test('insert into table select', () => { @@ -289,12 +301,15 @@ describe('MySQL entity collector tests', () => { expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(allEntities[0].text).toBe('new_view'); expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - - expect(allEntities[0].columns.length).toBe(2); - expect(allEntities[0].columns[0].text).toBe('col1'); - expect(allEntities[0].columns[1].text).toBe('col2'); - expect(allEntities[0].columns[0].entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(allEntities[0].columns[0].belongStmt).toBe(allEntities[0].belongStmt); + if (isCommonEntityContext(allEntities[0])) { + expect(allEntities[0].columns.length).toBe(2); + expect(allEntities[0].columns[0].text).toBe('col1'); + expect(allEntities[0].columns[1].text).toBe('col2'); + expect(allEntities[0].columns[0].entityContextType).toBe( + EntityContextType.COLUMN_CREATE + ); + expect(allEntities[0].columns[0].belongStmt).toBe(allEntities[0].belongStmt); + } }); test('create view as select table', () => { @@ -342,9 +357,10 @@ describe('MySQL entity collector tests', () => { startIndex: 756, startLine: 31, }); - - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create schema', () => { @@ -378,9 +394,10 @@ describe('MySQL entity collector tests', () => { startIndex: 805, startLine: 33, }); - - expect(schemaEntity.columns).toBeNull(); - expect(schemaEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(schemaEntity)) { + expect(schemaEntity.columns).toBeUndefined(); + expect(schemaEntity.relatedEntities).toBeNull(); + } }); test('show create database', () => { @@ -414,9 +431,10 @@ describe('MySQL entity collector tests', () => { startIndex: 866, startLine: 35, }); - - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('drop database', () => { @@ -450,9 +468,10 @@ describe('MySQL entity collector tests', () => { startIndex: 909, startLine: 37, }); - - expect(dbEntity.columns).toBeNull(); - expect(dbEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } }); test('create function', () => { @@ -488,8 +507,9 @@ describe('MySQL entity collector tests', () => { startIndex: 941, startLine: 39, }); - - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); }); diff --git a/test/parser/postgresql/contextCollect/entityCollector.test.ts b/test/parser/postgresql/contextCollect/entityCollector.test.ts index 410c563e..92b4bbc4 100644 --- a/test/parser/postgresql/contextCollect/entityCollector.test.ts +++ b/test/parser/postgresql/contextCollect/entityCollector.test.ts @@ -2,8 +2,12 @@ import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; import { PostgreSqlParserListener } from 'src/lib/postgresql/PostgreSqlParserListener'; +import { + isCommonEntityContext, + isFuncEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; -import { StmtContextType } from 'src/parser/common/entityCollector'; import { PostgreSQL, PostgreSqlEntityCollector, @@ -76,14 +80,15 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 122, }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); - expect(tableCreateEntity.columns).toBeNull(); - - expect(tableCreateEntity.relatedEntities.length).toBe(2); - tableCreateEntity.relatedEntities.forEach((relatedEntity) => { - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - }); + expect(tableCreateEntity.relatedEntities.length).toBe(2); + tableCreateEntity.relatedEntities.forEach((relatedEntity) => { + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + }); + } expect(allEntities[1].text).toBe('films'); expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); @@ -138,15 +143,19 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 2, }); - - expect(tableCreateEntity.columns.length).toBe(3); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns.length).toBe(3); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create foreign table by columns', () => { @@ -181,15 +190,19 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 19, }); - - expect(tableCreateEntity.columns.length).toBe(6); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns.length).toBe(6); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create foreign table of partition', () => { @@ -224,15 +237,16 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 21, }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); - expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - - const relatedEntity = tableCreateEntity.relatedEntities[0]; - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - expect(relatedEntity.text).toBe('measurement'); + const relatedEntity = tableCreateEntity.relatedEntities[0]; + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + expect(relatedEntity.text).toBe('measurement'); + } }); test('create view by select', () => { @@ -265,15 +279,16 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 26, }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); - expect(tableCreateEntity.columns).toBeNull(); - - expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities.length).toBe(1); - const relatedEntity = tableCreateEntity.relatedEntities[0]; - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - expect(relatedEntity.text).toBe('films'); + const relatedEntity = tableCreateEntity.relatedEntities[0]; + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + expect(relatedEntity.text).toBe('films'); + } }); test('create materialized view by columns', () => { @@ -306,16 +321,20 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 17, }); - - expect(tableCreateEntity.columns.length).toBe(2); - - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns.length).toBe(2); + + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('select with clause', () => { @@ -348,9 +367,10 @@ describe('PostgreSql entity collector tests', () => { startColumn: 36, endColumn: 67, }); - expect(tableEntity1.columns).toBeNull(); - expect(tableEntity1.relatedEntities).toBeNull(); - + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.text).toBe('table_expression1'); expect(tableEntity2.position).toEqual({ @@ -370,8 +390,10 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 111, }); - expect(tableEntity2.columns).toBeNull(); - expect(tableEntity2.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableEntity2)) { + expect(tableEntity2.columns).toBeUndefined(); + expect(tableEntity2.relatedEntities).toBeNull(); + } }); test('insert into table', () => { @@ -404,9 +426,10 @@ describe('PostgreSql entity collector tests', () => { startColumn: 1, endColumn: 55, }); - - expect(tableInsertEntity.columns).toBeNull(); - expect(tableInsertEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableInsertEntity)) { + expect(tableInsertEntity.columns).toBeUndefined(); + expect(tableInsertEntity.relatedEntities).toBeNull(); + } }); test('create function', () => { @@ -441,8 +464,9 @@ describe('PostgreSql entity collector tests', () => { startIndex: 1359, startLine: 47, }); - - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); }); diff --git a/test/parser/spark/contextCollect/entityCollector.test.ts b/test/parser/spark/contextCollect/entityCollector.test.ts index 3bba4858..e4ff5624 100644 --- a/test/parser/spark/contextCollect/entityCollector.test.ts +++ b/test/parser/spark/contextCollect/entityCollector.test.ts @@ -1,10 +1,14 @@ +import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; -import { SparkSQL, SparkSqlSplitListener, SparkEntityCollector } from 'src/parser/spark'; -import { ParseTreeListener } from 'antlr4ng'; import { SparkSqlParserListener } from 'src/lib/spark/SparkSqlParserListener'; +import { + isCommonEntityContext, + isFuncEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; -import { StmtContextType } from 'src/parser/common/entityCollector'; +import { SparkEntityCollector, SparkSQL, SparkSqlSplitListener } from 'src/parser/spark'; const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); @@ -55,15 +59,16 @@ describe('SparkSQL entity collector tests', () => { startColumn: 1, endColumn: 52, }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - - const beLikedEntity = allEntities[1]; + const beLikedEntity = allEntities[1]; - expect(tableCreateEntity.relatedEntities[0]).toBe(beLikedEntity); - expect(beLikedEntity.text).toBe('like_old_tb'); - expect(beLikedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(beLikedEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(tableCreateEntity.relatedEntities[0]).toBe(beLikedEntity); + expect(beLikedEntity.text).toBe('like_old_tb'); + expect(beLikedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(beLikedEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + } }); test('create hive format table', () => { @@ -99,17 +104,21 @@ describe('SparkSQL entity collector tests', () => { startColumn: 1, endColumn: 22, }); - - expect(tableCreateEntity.relatedEntities).toBeNull(); - expect(tableCreateEntity.columns.length).toBe(2); - - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns.length).toBe(2); + + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } }); test('create data source table', () => { @@ -130,11 +139,11 @@ describe('SparkSQL entity collector tests', () => { expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - - expect(tableCreateEntity.columns).toBeNull(); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); - + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('student'); expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); @@ -156,15 +165,19 @@ describe('SparkSQL entity collector tests', () => { expect(viewEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); expect(viewEntity.text).toBe('new_view1'); - expect(viewEntity.columns.length).toBe(2); - viewEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(viewEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); - + if (isCommonEntityContext(viewEntity)) { + expect(viewEntity.columns.length).toBe(2); + viewEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(viewEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + } expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(tableEntity.belongStmt.rootStmt).toBe(viewEntity.belongStmt); @@ -317,8 +330,10 @@ describe('SparkSQL entity collector tests', () => { startLine: 28, }); - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); test('create xxx function', () => { @@ -354,8 +369,9 @@ describe('SparkSQL entity collector tests', () => { startIndex: 925, startLine: 30, }); - - expect(functionEntity.columns).toBeNull(); - expect(functionEntity.relatedEntities).toBeNull(); + if (isFuncEntityContext(functionEntity)) { + expect(functionEntity.arguments).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + } }); }); diff --git a/test/parser/trino/contextCollect/entityCollector.test.ts b/test/parser/trino/contextCollect/entityCollector.test.ts index d6471701..a0369b47 100644 --- a/test/parser/trino/contextCollect/entityCollector.test.ts +++ b/test/parser/trino/contextCollect/entityCollector.test.ts @@ -1,10 +1,10 @@ +import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; -import { TrinoSQL, TrinoSqlSplitListener, TrinoEntityCollector } from 'src/parser/trino'; -import { ParseTreeListener } from 'antlr4ng'; import { TrinoSqlListener } from 'src/lib/trino/TrinoSqlListener'; +import { isCommonEntityContext, StmtContextType } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; -import { StmtContextType } from 'src/parser/common/entityCollector'; +import { TrinoEntityCollector, TrinoSQL, TrinoSqlSplitListener } from 'src/parser/trino'; const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); @@ -55,15 +55,16 @@ describe('Trino entity collector tests', () => { startColumn: 1, endColumn: 70, }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - - const beLikedEntity = allEntities[1]; + const beLikedEntity = allEntities[1]; - expect(tableCreateEntity.relatedEntities[0]).toBe(beLikedEntity); - expect(beLikedEntity.text).toBe('like_table'); - expect(beLikedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(beLikedEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(tableCreateEntity.relatedEntities[0]).toBe(beLikedEntity); + expect(beLikedEntity.text).toBe('like_table'); + expect(beLikedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(beLikedEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + } }); test('create table as select', () => { @@ -84,21 +85,25 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - - expect(tableCreateEntity.columns.length).toBe(2); - tableCreateEntity.columns.forEach((columEntity) => { - expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); - expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); - expect(columEntity.text).toBe( - commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) - ); - }); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); - - expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(originTableEntity.text).toBe('t'); - expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('t'); + expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + } }); test('create view as select', () => { @@ -117,10 +122,11 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('a'); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - - expect(tableCreateEntity.columns).toBeNull(); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('t'); @@ -144,9 +150,11 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.text).toBe('a'); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(tableCreateEntity.columns).toBeNull(); - expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('t'); @@ -169,8 +177,10 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.text).toBe('table1'); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableCreateEntity.columns).toBeNull(); - expect(tableCreateEntity.relatedEntities).toBeNull(); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns).toBeUndefined(); + expect(tableCreateEntity.relatedEntities).toBeNull(); + } }); test('insert into table as select', () => {