diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 index 320e5b5..a7e8c79 100644 --- a/src/grammar/flinksql/FlinkSqlLexer.g4 +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -46,6 +46,7 @@ KW_DIV: 'DIV'; KW_ENCODING: 'ENCODING'; KW_ENFORCED: 'ENFORCED'; KW_ENGINE: 'ENGINE'; +KW_EPOCH: 'EPOCH'; KW_ERROR: 'ERROR'; KW_ESTIMATED_COST: 'ESTIMATED_COST'; KW_EXCEPTION: 'EXCEPTION'; @@ -181,6 +182,7 @@ KW_VIRTUAL: 'VIRTUAL'; KW_WATERMARK: 'WATERMARK'; KW_WATERMARKS: 'WATERMARKS'; KW_WEEK: 'WEEK'; +KW_WEEKS: 'WEEKS'; KW_WORK: 'WORK'; KW_WRAPPER: 'WRAPPER'; KW_YEARS: 'YEARS'; @@ -194,13 +196,14 @@ KW_ZONE: 'ZONE'; KW_ABS: 'ABS'; KW_ALL: 'ALL'; -ALLOW: 'ALLOW'; +KW_ALLOW: 'ALLOW'; KW_ALTER : 'ALTER'; KW_AND: 'AND'; KW_ANY: 'ANY'; KW_ARE: 'ARE'; KW_ARRAY: 'ARRAY'; KW_AS: 'AS'; +KW_ASYMMETRIC: 'ASYMMETRIC'; KW_AT: 'AT'; KW_AVG: 'AVG'; KW_BEGIN: 'BEGIN'; @@ -256,6 +259,7 @@ KW_EACH: 'EACH'; KW_ELSE: 'ELSE'; KW_END: 'END'; KW_EQUALS: 'EQUALS'; +KW_ESCAPE: 'ESCAPE'; KW_EXCEPT: 'EXCEPT'; KW_EXECUTE: 'EXECUTE'; KW_EXISTS: 'EXISTS'; @@ -330,6 +334,7 @@ KW_PER: 'PER'; KW_PERCENT: 'PERCENT'; KW_PERIOD: 'PERIOD'; KW_POSITION: 'POSITION'; +KW_POWER: 'POWER'; KW_PRIMARY: 'PRIMARY'; KW_RANGE: 'RANGE'; KW_RANK: 'RANK'; @@ -345,12 +350,14 @@ KW_SECOND: 'SECOND'; KW_SELECT: 'SELECT'; KW_SET: 'SET'; KW_SHOW: 'SHOW'; +KW_SIMILAR: 'SIMILAR'; KW_SKIP: 'SKIP'; KW_SMALLINT: 'SMALLINT'; KW_START: 'START'; KW_STATIC: 'STATIC'; KW_SUBSTRING: 'SUBSTRING'; KW_SUM: 'SUM'; +KW_SYMMETRIC: 'SYMMETRIC'; KW_SYSTEM: 'SYSTEM'; KW_SYSTEM_TIME: 'SYSTEM_TIME'; KW_SYSTEM_USER: 'SYSTEM_USER'; @@ -361,6 +368,7 @@ KW_TIME: 'TIME'; KW_TIMESTAMP: 'TIMESTAMP'; KW_TINYINT: 'TINYINT'; KW_TO: 'TO'; +KW_TRAILING: 'TRAILING'; KW_TRUE: 'TRUE'; KW_TRUNCATE: 'TRUNCATE'; KW_UNION: 'UNION'; @@ -425,7 +433,7 @@ DOUBLE_VERTICAL_SIGN: '||'; DOUBLE_HYPNEN_SIGN: '--'; SLASH_SIGN: '/'; QUESTION_MARK_SIGN: '?'; -DOUBLE_RIGHT_ARROW: '=>'; +DOUBLE_RIGHT_ARROW: '=>'; STRING_LITERAL: DQUOTA_STRING | SQUOTA_STRING | BQUOTA_STRING; DIG_LITERAL: DEC_DIGIT+; REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index 36f8f3e..2c71898 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -445,7 +445,7 @@ tableReference tablePrimary : KW_TABLE? tablePath systemTimePeriod? (KW_AS? correlationName)? - | KW_LATERAL KW_TABLE LR_BRACKET functionName LR_BRACKET expression (COMMA expression)* RR_BRACKET RR_BRACKET + | 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 ; @@ -664,24 +664,27 @@ booleanExpression | valueExpression predicate? #predicated | left=booleanExpression operator=KW_AND right=booleanExpression #logicalBinary | left=booleanExpression operator=KW_OR right=booleanExpression #logicalBinary + | booleanExpression KW_IS KW_NOT? kind=(KW_TRUE | KW_FALSE | KW_UNKNOWN | KW_NULL) #logicalNested ; predicate - : KW_NOT? kind=KW_BETWEEN lower=valueExpression KW_AND upper=valueExpression + : KW_NOT? + kind=KW_BETWEEN (KW_ASYMMETRIC | KW_SYMMETRIC)? + lower=valueExpression KW_AND + upper=valueExpression | KW_NOT? kind=KW_IN '(' expression (',' expression)* ')' | KW_NOT? kind=KW_IN '(' queryStatement ')' | kind=KW_EXISTS '(' queryStatement ')' | KW_NOT? kind=KW_RLIKE pattern=valueExpression - | KW_NOT? kind=KW_LIKE quantifier=(KW_ANY | KW_ALL) ('('')' | '(' expression (',' expression)* ')') - | KW_NOT? kind=KW_LIKE pattern=valueExpression - | KW_IS KW_NOT? kind=KW_NULL - | KW_IS KW_NOT? kind=(KW_TRUE | KW_FALSE) + | likePredicate + | KW_IS KW_NOT? kind=(KW_TRUE | KW_FALSE | KW_UNKNOWN | KW_NULL) | KW_IS KW_NOT? kind=KW_DISTINCT KW_FROM right=valueExpression + | KW_NOT? kind=KW_SIMILAR KW_TO right=valueExpression (KW_ESCAPE stringLiteral)? ; likePredicate : KW_NOT? kind=KW_LIKE quantifier=(KW_ANY | KW_ALL) ('('')' | '(' expression (',' expression)* ')') - | KW_NOT? kind=KW_LIKE pattern=valueExpression + | KW_NOT? kind=KW_LIKE pattern=valueExpression (KW_ESCAPE stringLiteral)? ; valueExpression @@ -708,7 +711,7 @@ primaryExpression | uid '.' '*' #star // | '(' namedExpression (',' namedExpression)+ ')' #rowConstructor | '(' queryStatement ')' #subqueryExpression - | functionName '(' (setQuantifier? expression (',' expression)*)? ')' #functionCall + | functionName '(' (setQuantifier? functionParam (',' functionParam)*)? ')' #functionCall // | identifier '->' expression #lambda // | '(' identifier (',' identifier)+ ')' '->' expression #lambda | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET #subscript @@ -725,16 +728,22 @@ primaryExpression ; functionName - : reservedKeywords + : reservedKeywordsUsedAsFuncName | nonReservedKeywords | uid ; +functionParam + : reservedKeywordsUsedAsFuncParam + | timeIntervalUnit + | timePointUnit + | expression + ; + dereferenceDefinition : uid ; - // base common correlationName @@ -754,7 +763,7 @@ errorCapturingMultiUnitsInterval ; multiUnitsInterval - : (intervalValue intervalTimeUnit)+ + : (intervalValue timeIntervalUnit)+ ; errorCapturingUnitToUnitInterval @@ -762,7 +771,7 @@ errorCapturingUnitToUnitInterval ; unitToUnitInterval - : value=intervalValue from=intervalTimeUnit KW_TO to=intervalTimeUnit + : value=intervalValue from=timeIntervalUnit KW_TO to=timeIntervalUnit ; intervalValue @@ -770,11 +779,6 @@ intervalValue | STRING_LITERAL ; -intervalTimeUnit // TODO: 需要整理 interval 时间粒度比如 SECOND、DAY - : identifier - | reservedKeywords - ; - columnAlias : KW_AS? identifier identifierList? ; @@ -853,34 +857,62 @@ tablePropertyValue ; logicalOperator - : KW_AND | '&' '&' | KW_OR | '|' '|' + : KW_AND + | '&' '&' + | KW_OR + | '|' '|' ; comparisonOperator - : '=' | '>' | '<' | '<' '=' | '>' '=' - | '<' '>' | '!' '=' | '<' '=' '>' + : '=' + | '>' + | '<' + | '<' '=' + | '>' '=' + | '<' '>' + | '!' '=' + | '<' '=' '>' ; + bitOperator - : '<' '<' | '>' '>' | '&' | '^' | '|' + : '<' '<' + | '>' '>' + | '&' + | '^' + | '|' ; mathOperator - : '*' | SLASH_SIGN | PENCENT_SIGN | KW_DIV | '+' | '-' | DOUBLE_HYPNEN_SIGN + : '*' + | SLASH_SIGN + | PENCENT_SIGN + | KW_DIV + | '+' + | '-' + | DOUBLE_HYPNEN_SIGN ; unaryOperator - : '!' | '~' | ADD_SIGN | '-' | KW_NOT + : '!' + | '~' + | ADD_SIGN + | '-' + | KW_NOT ; constant - : stringLiteral // 引号包含的字符串 - | decimalLiteral // 整数 - | timeIntervalExpression // KW_INTERVAL keywords - | HYPNEN_SIGN decimalLiteral // 负整数 + : timeIntervalExpression + | timePointLiteral + | stringLiteral // 引号包含的字符串 + | HYPNEN_SIGN? decimalLiteral // 正/负整数 | booleanLiteral // 布尔值 | REAL_LITERAL // 小数 | BIT_STRING - | KW_NOT? KW_NULL // 空 | 非空 + | KW_NOT? KW_NULL // 空 | 非空 + ; + +timePointLiteral + : timePointUnit stringLiteral ; stringLiteral @@ -899,16 +931,99 @@ setQuantifier | KW_ALL ; +timePointUnit + : KW_YEAR + | KW_QUARTER + | KW_MONTH + | KW_WEEK + | KW_DAY + | KW_HOUR + | KW_MINUTE + | KW_SECOND + | KW_MILLISECOND + | KW_MICROSECOND + ; + +timeIntervalUnit + : KW_MILLENNIUM + | KW_CENTURY + | KW_DECADE + | KW_YEAR + | KW_YEARS + | KW_QUARTER + | KW_MONTH + | KW_MONTHS + | KW_WEEK + | KW_WEEKS + | KW_DAY + | KW_DAYS + | KW_HOUR + | KW_HOURS + | KW_MINUTE + | KW_MINUTES + | KW_SECOND + | KW_SECONDS + | KW_MILLISECOND + | KW_MICROSECOND + | KW_NANOSECOND + | KW_EPOCH + ; + +reservedKeywordsUsedAsFuncParam + : KW_LEADING + | KW_TRAILING + | KW_BOTH + | KW_ALL + | KW_DISTINCT + | ASTERISK_SIGN + ; + +reservedKeywordsUsedAsFuncName + : KW_ABS + | KW_ARRAY + | KW_AVG + | KW_CAST + | KW_CEIL + | KW_COALESCE + | KW_COLLECT + | KW_COUNT + | KW_DATE + | KW_GROUPING + | KW_HOUR + | KW_IF + | KW_LAG + | KW_LEFT + | KW_MAP + | KW_MINUTE + | KW_MONTH + | KW_OVERLAY + | KW_POSITION + | KW_POWER + | KW_QUARTER + | KW_RANK + | KW_RIGHT + | KW_SECOND + | KW_SUBSTRING + | KW_SUM + | KW_TIME + | KW_TIMESTAMP + | KW_TRUNCATE + | KW_UPPER + | KW_WEEK + | KW_YEAR + ; + reservedKeywords : KW_ABS | KW_ALL - | ALLOW + | KW_ALLOW | KW_ALTER | KW_AND | KW_ANY | KW_ARE | KW_ARRAY | KW_AS + | KW_ASYMMETRIC | KW_AT | KW_AVG | KW_BEGIN @@ -1053,12 +1168,14 @@ reservedKeywords | KW_SELECT | KW_SET | KW_SHOW + | KW_SIMILAR | KW_SKIP | KW_SMALLINT | KW_START | KW_STATIC | KW_SUBSTRING | KW_SUM + | KW_SYSTEM_TIME | KW_SYSTEM | KW_SYSTEM_TIME | KW_SYSTEM_USER diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index 101340d..bf4db0d 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -183,6 +183,7 @@ null 'ARE' 'ARRAY' 'AS' +'ASYMMETRIC' 'AT' 'AVG' 'BEGIN' @@ -238,6 +239,7 @@ null 'ELSE' 'END' 'EQUALS' +'ESCAPE' 'EXCEPT' 'EXECUTE' 'EXISTS' @@ -312,6 +314,7 @@ null 'PERCENT' 'PERIOD' 'POSITION' +'POWER' 'PRIMARY' 'RANGE' 'RANK' @@ -327,12 +330,14 @@ null 'SELECT' 'SET' 'SHOW' +'SIMILAR' 'SKIP' 'SMALLINT' 'START' 'STATIC' 'SUBSTRING' 'SUM' +'SYMMETRIC' 'SYSTEM' 'SYSTEM_TIME' 'SYSTEM_USER' @@ -581,13 +586,14 @@ KW_YEARS KW_ZONE KW_ABS KW_ALL -ALLOW +KW_ALLOW KW_ALTER KW_AND KW_ANY KW_ARE KW_ARRAY KW_AS +KW_ASYMMETRIC KW_AT KW_AVG KW_BEGIN @@ -643,6 +649,7 @@ KW_EACH KW_ELSE KW_END KW_EQUALS +KW_ESCAPE KW_EXCEPT KW_EXECUTE KW_EXISTS @@ -717,6 +724,7 @@ KW_PER KW_PERCENT KW_PERIOD KW_POSITION +KW_POWER KW_PRIMARY KW_RANGE KW_RANK @@ -732,12 +740,14 @@ KW_SECOND KW_SELECT KW_SET KW_SHOW +KW_SIMILAR KW_SKIP KW_SMALLINT KW_START KW_STATIC KW_SUBSTRING KW_SUM +KW_SYMMETRIC KW_SYSTEM KW_SYSTEM_TIME KW_SYSTEM_USER @@ -985,13 +995,14 @@ KW_YEARS KW_ZONE KW_ABS KW_ALL -ALLOW +KW_ALLOW KW_ALTER KW_AND KW_ANY KW_ARE KW_ARRAY KW_AS +KW_ASYMMETRIC KW_AT KW_AVG KW_BEGIN @@ -1047,6 +1058,7 @@ KW_EACH KW_ELSE KW_END KW_EQUALS +KW_ESCAPE KW_EXCEPT KW_EXECUTE KW_EXISTS @@ -1121,6 +1133,7 @@ KW_PER KW_PERCENT KW_PERIOD KW_POSITION +KW_POWER KW_PRIMARY KW_RANGE KW_RANK @@ -1136,12 +1149,14 @@ KW_SECOND KW_SELECT KW_SET KW_SHOW +KW_SIMILAR KW_SKIP KW_SMALLINT KW_START KW_STATIC KW_SUBSTRING KW_SUM +KW_SYMMETRIC KW_SYSTEM KW_SYSTEM_TIME KW_SYSTEM_USER @@ -1230,4 +1245,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 402, 3709, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 1, 0, 4, 0, 827, 8, 0, 11, 0, 12, 0, 828, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 837, 8, 1, 10, 1, 12, 1, 840, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 850, 8, 2, 1, 2, 5, 2, 853, 8, 2, 10, 2, 12, 2, 856, 9, 2, 1, 2, 3, 2, 859, 8, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 869, 8, 2, 1, 2, 1, 2, 3, 2, 873, 8, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 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, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 368, 1, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 375, 1, 375, 1, 376, 1, 376, 1, 377, 1, 377, 1, 378, 1, 378, 1, 379, 1, 379, 1, 380, 1, 380, 1, 381, 1, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 3, 396, 3550, 8, 396, 1, 397, 4, 397, 3553, 8, 397, 11, 397, 12, 397, 3554, 1, 398, 4, 398, 3558, 8, 398, 11, 398, 12, 398, 3559, 3, 398, 3562, 8, 398, 1, 398, 1, 398, 4, 398, 3566, 8, 398, 11, 398, 12, 398, 3567, 1, 398, 4, 398, 3571, 8, 398, 11, 398, 12, 398, 3572, 1, 398, 1, 398, 1, 398, 1, 398, 4, 398, 3579, 8, 398, 11, 398, 12, 398, 3580, 3, 398, 3583, 8, 398, 1, 398, 1, 398, 4, 398, 3587, 8, 398, 11, 398, 12, 398, 3588, 1, 398, 1, 398, 1, 398, 4, 398, 3594, 8, 398, 11, 398, 12, 398, 3595, 1, 398, 1, 398, 3, 398, 3600, 8, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 5, 402, 3610, 8, 402, 10, 402, 12, 402, 3613, 9, 402, 4, 402, 3615, 8, 402, 11, 402, 12, 402, 3616, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 5, 403, 3625, 8, 403, 10, 403, 12, 403, 3628, 9, 403, 1, 403, 1, 403, 1, 404, 1, 404, 3, 404, 3634, 8, 404, 1, 404, 4, 404, 3637, 8, 404, 11, 404, 12, 404, 3638, 1, 405, 5, 405, 3642, 8, 405, 10, 405, 12, 405, 3645, 9, 405, 1, 405, 4, 405, 3648, 8, 405, 11, 405, 12, 405, 3649, 1, 405, 5, 405, 3653, 8, 405, 10, 405, 12, 405, 3656, 9, 405, 1, 406, 1, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 3668, 8, 408, 10, 408, 12, 408, 3671, 9, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 3681, 8, 409, 10, 409, 12, 409, 3684, 9, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 4, 410, 3691, 8, 410, 11, 410, 12, 410, 3692, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 3703, 8, 411, 10, 411, 12, 411, 3706, 9, 411, 1, 411, 1, 411, 3, 838, 3643, 3649, 0, 412, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 0, 807, 0, 809, 0, 811, 0, 813, 0, 815, 0, 817, 0, 819, 0, 821, 0, 823, 0, 1, 0, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 47, 47, 92, 92, 3, 0, 32, 32, 47, 47, 92, 92, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 3741, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 1, 826, 1, 0, 0, 0, 3, 832, 1, 0, 0, 0, 5, 874, 1, 0, 0, 0, 7, 878, 1, 0, 0, 0, 9, 882, 1, 0, 0, 0, 11, 888, 1, 0, 0, 0, 13, 894, 1, 0, 0, 0, 15, 902, 1, 0, 0, 0, 17, 906, 1, 0, 0, 0, 19, 913, 1, 0, 0, 0, 21, 919, 1, 0, 0, 0, 23, 927, 1, 0, 0, 0, 25, 935, 1, 0, 0, 0, 27, 944, 1, 0, 0, 0, 29, 952, 1, 0, 0, 0, 31, 958, 1, 0, 0, 0, 33, 973, 1, 0, 0, 0, 35, 984, 1, 0, 0, 0, 37, 992, 1, 0, 0, 0, 39, 1000, 1, 0, 0, 0, 41, 1008, 1, 0, 0, 0, 43, 1020, 1, 0, 0, 0, 45, 1032, 1, 0, 0, 0, 47, 1041, 1, 0, 0, 0, 49, 1046, 1, 0, 0, 0, 51, 1055, 1, 0, 0, 0, 53, 1065, 1, 0, 0, 0, 55, 1070, 1, 0, 0, 0, 57, 1077, 1, 0, 0, 0, 59, 1085, 1, 0, 0, 0, 61, 1090, 1, 0, 0, 0, 63, 1101, 1, 0, 0, 0, 65, 1105, 1, 0, 0, 0, 67, 1114, 1, 0, 0, 0, 69, 1123, 1, 0, 0, 0, 71, 1130, 1, 0, 0, 0, 73, 1136, 1, 0, 0, 0, 75, 1151, 1, 0, 0, 0, 77, 1161, 1, 0, 0, 0, 79, 1169, 1, 0, 0, 0, 81, 1179, 1, 0, 0, 0, 83, 1188, 1, 0, 0, 0, 85, 1193, 1, 0, 0, 0, 87, 1199, 1, 0, 0, 0, 89, 1205, 1, 0, 0, 0, 91, 1215, 1, 0, 0, 0, 93, 1222, 1, 0, 0, 0, 95, 1230, 1, 0, 0, 0, 97, 1236, 1, 0, 0, 0, 99, 1248, 1, 0, 0, 0, 101, 1258, 1, 0, 0, 0, 103, 1266, 1, 0, 0, 0, 105, 1276, 1, 0, 0, 0, 107, 1279, 1, 0, 0, 0, 109, 1284, 1, 0, 0, 0, 111, 1292, 1, 0, 0, 0, 113, 1296, 1, 0, 0, 0, 115, 1302, 1, 0, 0, 0, 117, 1305, 1, 0, 0, 0, 119, 1312, 1, 0, 0, 0, 121, 1322, 1, 0, 0, 0, 123, 1328, 1, 0, 0, 0, 125, 1336, 1, 0, 0, 0, 127, 1340, 1, 0, 0, 0, 129, 1345, 1, 0, 0, 0, 131, 1350, 1, 0, 0, 0, 133, 1355, 1, 0, 0, 0, 135, 1375, 1, 0, 0, 0, 137, 1379, 1, 0, 0, 0, 139, 1390, 1, 0, 0, 0, 141, 1399, 1, 0, 0, 0, 143, 1405, 1, 0, 0, 0, 145, 1410, 1, 0, 0, 0, 147, 1417, 1, 0, 0, 0, 149, 1423, 1, 0, 0, 0, 151, 1428, 1, 0, 0, 0, 153, 1432, 1, 0, 0, 0, 155, 1444, 1, 0, 0, 0, 157, 1455, 1, 0, 0, 0, 159, 1467, 1, 0, 0, 0, 161, 1475, 1, 0, 0, 0, 163, 1484, 1, 0, 0, 0, 165, 1491, 1, 0, 0, 0, 167, 1499, 1, 0, 0, 0, 169, 1506, 1, 0, 0, 0, 171, 1517, 1, 0, 0, 0, 173, 1523, 1, 0, 0, 0, 175, 1530, 1, 0, 0, 0, 177, 1537, 1, 0, 0, 0, 179, 1545, 1, 0, 0, 0, 181, 1554, 1, 0, 0, 0, 183, 1561, 1, 0, 0, 0, 185, 1571, 1, 0, 0, 0, 187, 1583, 1, 0, 0, 0, 189, 1595, 1, 0, 0, 0, 191, 1606, 1, 0, 0, 0, 193, 1614, 1, 0, 0, 0, 195, 1619, 1, 0, 0, 0, 197, 1624, 1, 0, 0, 0, 199, 1632, 1, 0, 0, 0, 201, 1637, 1, 0, 0, 0, 203, 1647, 1, 0, 0, 0, 205, 1656, 1, 0, 0, 0, 207, 1662, 1, 0, 0, 0, 209, 1673, 1, 0, 0, 0, 211, 1680, 1, 0, 0, 0, 213, 1687, 1, 0, 0, 0, 215, 1700, 1, 0, 0, 0, 217, 1720, 1, 0, 0, 0, 219, 1740, 1, 0, 0, 0, 221, 1751, 1, 0, 0, 0, 223, 1767, 1, 0, 0, 0, 225, 1784, 1, 0, 0, 0, 227, 1792, 1, 0, 0, 0, 229, 1796, 1, 0, 0, 0, 231, 1801, 1, 0, 0, 0, 233, 1810, 1, 0, 0, 0, 235, 1817, 1, 0, 0, 0, 237, 1824, 1, 0, 0, 0, 239, 1832, 1, 0, 0, 0, 241, 1840, 1, 0, 0, 0, 243, 1848, 1, 0, 0, 0, 245, 1857, 1, 0, 0, 0, 247, 1862, 1, 0, 0, 0, 249, 1872, 1, 0, 0, 0, 251, 1878, 1, 0, 0, 0, 253, 1885, 1, 0, 0, 0, 255, 1891, 1, 0, 0, 0, 257, 1898, 1, 0, 0, 0, 259, 1906, 1, 0, 0, 0, 261, 1914, 1, 0, 0, 0, 263, 1923, 1, 0, 0, 0, 265, 1928, 1, 0, 0, 0, 267, 1935, 1, 0, 0, 0, 269, 1947, 1, 0, 0, 0, 271, 1955, 1, 0, 0, 0, 273, 1960, 1, 0, 0, 0, 275, 1967, 1, 0, 0, 0, 277, 1972, 1, 0, 0, 0, 279, 1978, 1, 0, 0, 0, 281, 1985, 1, 0, 0, 0, 283, 1991, 1, 0, 0, 0, 285, 1997, 1, 0, 0, 0, 287, 2007, 1, 0, 0, 0, 289, 2012, 1, 0, 0, 0, 291, 2019, 1, 0, 0, 0, 293, 2029, 1, 0, 0, 0, 295, 2035, 1, 0, 0, 0, 297, 2042, 1, 0, 0, 0, 299, 2052, 1, 0, 0, 0, 301, 2060, 1, 0, 0, 0, 303, 2074, 1, 0, 0, 0, 305, 2087, 1, 0, 0, 0, 307, 2101, 1, 0, 0, 0, 309, 2111, 1, 0, 0, 0, 311, 2118, 1, 0, 0, 0, 313, 2123, 1, 0, 0, 0, 315, 2129, 1, 0, 0, 0, 317, 2136, 1, 0, 0, 0, 319, 2142, 1, 0, 0, 0, 321, 2146, 1, 0, 0, 0, 323, 2152, 1, 0, 0, 0, 325, 2158, 1, 0, 0, 0, 327, 2163, 1, 0, 0, 0, 329, 2171, 1, 0, 0, 0, 331, 2176, 1, 0, 0, 0, 333, 2182, 1, 0, 0, 0, 335, 2190, 1, 0, 0, 0, 337, 2200, 1, 0, 0, 0, 339, 2211, 1, 0, 0, 0, 341, 2216, 1, 0, 0, 0, 343, 2221, 1, 0, 0, 0, 345, 2229, 1, 0, 0, 0, 347, 2235, 1, 0, 0, 0, 349, 2240, 1, 0, 0, 0, 351, 2244, 1, 0, 0, 0, 353, 2248, 1, 0, 0, 0, 355, 2254, 1, 0, 0, 0, 357, 2260, 1, 0, 0, 0, 359, 2264, 1, 0, 0, 0, 361, 2268, 1, 0, 0, 0, 363, 2272, 1, 0, 0, 0, 365, 2278, 1, 0, 0, 0, 367, 2281, 1, 0, 0, 0, 369, 2284, 1, 0, 0, 0, 371, 2288, 1, 0, 0, 0, 373, 2294, 1, 0, 0, 0, 375, 2302, 1, 0, 0, 0, 377, 2309, 1, 0, 0, 0, 379, 2316, 1, 0, 0, 0, 381, 2320, 1, 0, 0, 0, 383, 2325, 1, 0, 0, 0, 385, 2333, 1, 0, 0, 0, 387, 2338, 1, 0, 0, 0, 389, 2341, 1, 0, 0, 0, 391, 2346, 1, 0, 0, 0, 393, 2353, 1, 0, 0, 0, 395, 2362, 1, 0, 0, 0, 397, 2367, 1, 0, 0, 0, 399, 2372, 1, 0, 0, 0, 401, 2377, 1, 0, 0, 0, 403, 2382, 1, 0, 0, 0, 405, 2392, 1, 0, 0, 0, 407, 2398, 1, 0, 0, 0, 409, 2403, 1, 0, 0, 0, 411, 2409, 1, 0, 0, 0, 413, 2418, 1, 0, 0, 0, 415, 2426, 1, 0, 0, 0, 417, 2434, 1, 0, 0, 0, 419, 2441, 1, 0, 0, 0, 421, 2448, 1, 0, 0, 0, 423, 2456, 1, 0, 0, 0, 425, 2467, 1, 0, 0, 0, 427, 2476, 1, 0, 0, 0, 429, 2484, 1, 0, 0, 0, 431, 2490, 1, 0, 0, 0, 433, 2497, 1, 0, 0, 0, 435, 2503, 1, 0, 0, 0, 437, 2508, 1, 0, 0, 0, 439, 2516, 1, 0, 0, 0, 441, 2523, 1, 0, 0, 0, 443, 2529, 1, 0, 0, 0, 445, 2534, 1, 0, 0, 0, 447, 2543, 1, 0, 0, 0, 449, 2547, 1, 0, 0, 0, 451, 2551, 1, 0, 0, 0, 453, 2559, 1, 0, 0, 0, 455, 2567, 1, 0, 0, 0, 457, 2575, 1, 0, 0, 0, 459, 2582, 1, 0, 0, 0, 461, 2589, 1, 0, 0, 0, 463, 2598, 1, 0, 0, 0, 465, 2607, 1, 0, 0, 0, 467, 2614, 1, 0, 0, 0, 469, 2619, 1, 0, 0, 0, 471, 2624, 1, 0, 0, 0, 473, 2629, 1, 0, 0, 0, 475, 2633, 1, 0, 0, 0, 477, 2640, 1, 0, 0, 0, 479, 2647, 1, 0, 0, 0, 481, 2655, 1, 0, 0, 0, 483, 2662, 1, 0, 0, 0, 485, 2670, 1, 0, 0, 0, 487, 2679, 1, 0, 0, 0, 489, 2687, 1, 0, 0, 0, 491, 2693, 1, 0, 0, 0, 493, 2699, 1, 0, 0, 0, 495, 2703, 1, 0, 0, 0, 497, 2708, 1, 0, 0, 0, 499, 2713, 1, 0, 0, 0, 501, 2722, 1, 0, 0, 0, 503, 2729, 1, 0, 0, 0, 505, 2735, 1, 0, 0, 0, 507, 2741, 1, 0, 0, 0, 509, 2750, 1, 0, 0, 0, 511, 2757, 1, 0, 0, 0, 513, 2764, 1, 0, 0, 0, 515, 2769, 1, 0, 0, 0, 517, 2776, 1, 0, 0, 0, 519, 2779, 1, 0, 0, 0, 521, 2789, 1, 0, 0, 0, 523, 2795, 1, 0, 0, 0, 525, 2801, 1, 0, 0, 0, 527, 2808, 1, 0, 0, 0, 529, 2812, 1, 0, 0, 0, 531, 2820, 1, 0, 0, 0, 533, 2830, 1, 0, 0, 0, 535, 2839, 1, 0, 0, 0, 537, 2844, 1, 0, 0, 0, 539, 2847, 1, 0, 0, 0, 541, 2852, 1, 0, 0, 0, 543, 2856, 1, 0, 0, 0, 545, 2865, 1, 0, 0, 0, 547, 2873, 1, 0, 0, 0, 549, 2881, 1, 0, 0, 0, 551, 2886, 1, 0, 0, 0, 553, 2891, 1, 0, 0, 0, 555, 2897, 1, 0, 0, 0, 557, 2903, 1, 0, 0, 0, 559, 2909, 1, 0, 0, 0, 561, 2925, 1, 0, 0, 0, 563, 2934, 1, 0, 0, 0, 565, 2940, 1, 0, 0, 0, 567, 2949, 1, 0, 0, 0, 569, 2955, 1, 0, 0, 0, 571, 2962, 1, 0, 0, 0, 573, 2971, 1, 0, 0, 0, 575, 2978, 1, 0, 0, 0, 577, 2984, 1, 0, 0, 0, 579, 2993, 1, 0, 0, 0, 581, 3001, 1, 0, 0, 0, 583, 3006, 1, 0, 0, 0, 585, 3009, 1, 0, 0, 0, 587, 3014, 1, 0, 0, 0, 589, 3018, 1, 0, 0, 0, 591, 3023, 1, 0, 0, 0, 593, 3031, 1, 0, 0, 0, 595, 3034, 1, 0, 0, 0, 597, 3041, 1, 0, 0, 0, 599, 3044, 1, 0, 0, 0, 601, 3048, 1, 0, 0, 0, 603, 3051, 1, 0, 0, 0, 605, 3057, 1, 0, 0, 0, 607, 3061, 1, 0, 0, 0, 609, 3067, 1, 0, 0, 0, 611, 3072, 1, 0, 0, 0, 613, 3080, 1, 0, 0, 0, 615, 3090, 1, 0, 0, 0, 617, 3098, 1, 0, 0, 0, 619, 3102, 1, 0, 0, 0, 621, 3110, 1, 0, 0, 0, 623, 3117, 1, 0, 0, 0, 625, 3126, 1, 0, 0, 0, 627, 3134, 1, 0, 0, 0, 629, 3140, 1, 0, 0, 0, 631, 3145, 1, 0, 0, 0, 633, 3151, 1, 0, 0, 0, 635, 3158, 1, 0, 0, 0, 637, 3164, 1, 0, 0, 0, 639, 3170, 1, 0, 0, 0, 641, 3179, 1, 0, 0, 0, 643, 3186, 1, 0, 0, 0, 645, 3190, 1, 0, 0, 0, 647, 3195, 1, 0, 0, 0, 649, 3202, 1, 0, 0, 0, 651, 3209, 1, 0, 0, 0, 653, 3213, 1, 0, 0, 0, 655, 3218, 1, 0, 0, 0, 657, 3223, 1, 0, 0, 0, 659, 3232, 1, 0, 0, 0, 661, 3238, 1, 0, 0, 0, 663, 3245, 1, 0, 0, 0, 665, 3255, 1, 0, 0, 0, 667, 3259, 1, 0, 0, 0, 669, 3266, 1, 0, 0, 0, 671, 3278, 1, 0, 0, 0, 673, 3290, 1, 0, 0, 0, 675, 3296, 1, 0, 0, 0, 677, 3308, 1, 0, 0, 0, 679, 3313, 1, 0, 0, 0, 681, 3318, 1, 0, 0, 0, 683, 3328, 1, 0, 0, 0, 685, 3336, 1, 0, 0, 0, 687, 3339, 1, 0, 0, 0, 689, 3344, 1, 0, 0, 0, 691, 3353, 1, 0, 0, 0, 693, 3359, 1, 0, 0, 0, 695, 3366, 1, 0, 0, 0, 697, 3374, 1, 0, 0, 0, 699, 3381, 1, 0, 0, 0, 701, 3387, 1, 0, 0, 0, 703, 3394, 1, 0, 0, 0, 705, 3399, 1, 0, 0, 0, 707, 3405, 1, 0, 0, 0, 709, 3411, 1, 0, 0, 0, 711, 3418, 1, 0, 0, 0, 713, 3428, 1, 0, 0, 0, 715, 3436, 1, 0, 0, 0, 717, 3441, 1, 0, 0, 0, 719, 3447, 1, 0, 0, 0, 721, 3454, 1, 0, 0, 0, 723, 3459, 1, 0, 0, 0, 725, 3466, 1, 0, 0, 0, 727, 3474, 1, 0, 0, 0, 729, 3479, 1, 0, 0, 0, 731, 3481, 1, 0, 0, 0, 733, 3483, 1, 0, 0, 0, 735, 3485, 1, 0, 0, 0, 737, 3487, 1, 0, 0, 0, 739, 3489, 1, 0, 0, 0, 741, 3491, 1, 0, 0, 0, 743, 3493, 1, 0, 0, 0, 745, 3495, 1, 0, 0, 0, 747, 3497, 1, 0, 0, 0, 749, 3499, 1, 0, 0, 0, 751, 3501, 1, 0, 0, 0, 753, 3503, 1, 0, 0, 0, 755, 3505, 1, 0, 0, 0, 757, 3507, 1, 0, 0, 0, 759, 3509, 1, 0, 0, 0, 761, 3511, 1, 0, 0, 0, 763, 3513, 1, 0, 0, 0, 765, 3515, 1, 0, 0, 0, 767, 3517, 1, 0, 0, 0, 769, 3519, 1, 0, 0, 0, 771, 3521, 1, 0, 0, 0, 773, 3523, 1, 0, 0, 0, 775, 3525, 1, 0, 0, 0, 777, 3527, 1, 0, 0, 0, 779, 3529, 1, 0, 0, 0, 781, 3531, 1, 0, 0, 0, 783, 3533, 1, 0, 0, 0, 785, 3536, 1, 0, 0, 0, 787, 3539, 1, 0, 0, 0, 789, 3541, 1, 0, 0, 0, 791, 3543, 1, 0, 0, 0, 793, 3549, 1, 0, 0, 0, 795, 3552, 1, 0, 0, 0, 797, 3599, 1, 0, 0, 0, 799, 3601, 1, 0, 0, 0, 801, 3603, 1, 0, 0, 0, 803, 3605, 1, 0, 0, 0, 805, 3614, 1, 0, 0, 0, 807, 3618, 1, 0, 0, 0, 809, 3631, 1, 0, 0, 0, 811, 3643, 1, 0, 0, 0, 813, 3657, 1, 0, 0, 0, 815, 3659, 1, 0, 0, 0, 817, 3661, 1, 0, 0, 0, 819, 3674, 1, 0, 0, 0, 821, 3687, 1, 0, 0, 0, 823, 3696, 1, 0, 0, 0, 825, 827, 7, 0, 0, 0, 826, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 6, 0, 0, 0, 831, 2, 1, 0, 0, 0, 832, 833, 5, 47, 0, 0, 833, 834, 5, 42, 0, 0, 834, 838, 1, 0, 0, 0, 835, 837, 9, 0, 0, 0, 836, 835, 1, 0, 0, 0, 837, 840, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 839, 841, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 842, 5, 42, 0, 0, 842, 843, 5, 47, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 6, 1, 0, 0, 845, 4, 1, 0, 0, 0, 846, 847, 5, 45, 0, 0, 847, 850, 5, 45, 0, 0, 848, 850, 5, 35, 0, 0, 849, 846, 1, 0, 0, 0, 849, 848, 1, 0, 0, 0, 850, 854, 1, 0, 0, 0, 851, 853, 8, 1, 0, 0, 852, 851, 1, 0, 0, 0, 853, 856, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 862, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 857, 859, 5, 13, 0, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 863, 5, 10, 0, 0, 861, 863, 5, 0, 0, 1, 862, 858, 1, 0, 0, 0, 862, 861, 1, 0, 0, 0, 863, 875, 1, 0, 0, 0, 864, 865, 5, 45, 0, 0, 865, 866, 5, 45, 0, 0, 866, 872, 1, 0, 0, 0, 867, 869, 5, 13, 0, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 873, 5, 10, 0, 0, 871, 873, 5, 0, 0, 1, 872, 868, 1, 0, 0, 0, 872, 871, 1, 0, 0, 0, 873, 875, 1, 0, 0, 0, 874, 849, 1, 0, 0, 0, 874, 864, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 6, 2, 0, 0, 877, 6, 1, 0, 0, 0, 878, 879, 5, 65, 0, 0, 879, 880, 5, 68, 0, 0, 880, 881, 5, 68, 0, 0, 881, 8, 1, 0, 0, 0, 882, 883, 5, 65, 0, 0, 883, 884, 5, 68, 0, 0, 884, 885, 5, 77, 0, 0, 885, 886, 5, 73, 0, 0, 886, 887, 5, 78, 0, 0, 887, 10, 1, 0, 0, 0, 888, 889, 5, 65, 0, 0, 889, 890, 5, 70, 0, 0, 890, 891, 5, 84, 0, 0, 891, 892, 5, 69, 0, 0, 892, 893, 5, 82, 0, 0, 893, 12, 1, 0, 0, 0, 894, 895, 5, 65, 0, 0, 895, 896, 5, 78, 0, 0, 896, 897, 5, 65, 0, 0, 897, 898, 5, 76, 0, 0, 898, 899, 5, 89, 0, 0, 899, 900, 5, 90, 0, 0, 900, 901, 5, 69, 0, 0, 901, 14, 1, 0, 0, 0, 902, 903, 5, 65, 0, 0, 903, 904, 5, 83, 0, 0, 904, 905, 5, 67, 0, 0, 905, 16, 1, 0, 0, 0, 906, 907, 5, 66, 0, 0, 907, 908, 5, 69, 0, 0, 908, 909, 5, 70, 0, 0, 909, 910, 5, 79, 0, 0, 910, 911, 5, 82, 0, 0, 911, 912, 5, 69, 0, 0, 912, 18, 1, 0, 0, 0, 913, 914, 5, 66, 0, 0, 914, 915, 5, 89, 0, 0, 915, 916, 5, 84, 0, 0, 916, 917, 5, 69, 0, 0, 917, 918, 5, 83, 0, 0, 918, 20, 1, 0, 0, 0, 919, 920, 5, 67, 0, 0, 920, 921, 5, 65, 0, 0, 921, 922, 5, 83, 0, 0, 922, 923, 5, 67, 0, 0, 923, 924, 5, 65, 0, 0, 924, 925, 5, 68, 0, 0, 925, 926, 5, 69, 0, 0, 926, 22, 1, 0, 0, 0, 927, 928, 5, 67, 0, 0, 928, 929, 5, 65, 0, 0, 929, 930, 5, 84, 0, 0, 930, 931, 5, 65, 0, 0, 931, 932, 5, 76, 0, 0, 932, 933, 5, 79, 0, 0, 933, 934, 5, 71, 0, 0, 934, 24, 1, 0, 0, 0, 935, 936, 5, 67, 0, 0, 936, 937, 5, 65, 0, 0, 937, 938, 5, 84, 0, 0, 938, 939, 5, 65, 0, 0, 939, 940, 5, 76, 0, 0, 940, 941, 5, 79, 0, 0, 941, 942, 5, 71, 0, 0, 942, 943, 5, 83, 0, 0, 943, 26, 1, 0, 0, 0, 944, 945, 5, 67, 0, 0, 945, 946, 5, 69, 0, 0, 946, 947, 5, 78, 0, 0, 947, 948, 5, 84, 0, 0, 948, 949, 5, 85, 0, 0, 949, 950, 5, 82, 0, 0, 950, 951, 5, 89, 0, 0, 951, 28, 1, 0, 0, 0, 952, 953, 5, 67, 0, 0, 953, 954, 5, 72, 0, 0, 954, 955, 5, 65, 0, 0, 955, 956, 5, 73, 0, 0, 956, 957, 5, 78, 0, 0, 957, 30, 1, 0, 0, 0, 958, 959, 5, 67, 0, 0, 959, 960, 5, 72, 0, 0, 960, 961, 5, 65, 0, 0, 961, 962, 5, 78, 0, 0, 962, 963, 5, 71, 0, 0, 963, 964, 5, 69, 0, 0, 964, 965, 5, 76, 0, 0, 965, 966, 5, 79, 0, 0, 966, 967, 5, 71, 0, 0, 967, 968, 5, 95, 0, 0, 968, 969, 5, 77, 0, 0, 969, 970, 5, 79, 0, 0, 970, 971, 5, 68, 0, 0, 971, 972, 5, 69, 0, 0, 972, 32, 1, 0, 0, 0, 973, 974, 5, 67, 0, 0, 974, 975, 5, 72, 0, 0, 975, 976, 5, 65, 0, 0, 976, 977, 5, 82, 0, 0, 977, 978, 5, 65, 0, 0, 978, 979, 5, 67, 0, 0, 979, 980, 5, 84, 0, 0, 980, 981, 5, 69, 0, 0, 981, 982, 5, 82, 0, 0, 982, 983, 5, 83, 0, 0, 983, 34, 1, 0, 0, 0, 984, 985, 5, 67, 0, 0, 985, 986, 5, 79, 0, 0, 986, 987, 5, 77, 0, 0, 987, 988, 5, 77, 0, 0, 988, 989, 5, 69, 0, 0, 989, 990, 5, 78, 0, 0, 990, 991, 5, 84, 0, 0, 991, 36, 1, 0, 0, 0, 992, 993, 5, 67, 0, 0, 993, 994, 5, 79, 0, 0, 994, 995, 5, 77, 0, 0, 995, 996, 5, 80, 0, 0, 996, 997, 5, 65, 0, 0, 997, 998, 5, 67, 0, 0, 998, 999, 5, 84, 0, 0, 999, 38, 1, 0, 0, 0, 1000, 1001, 5, 67, 0, 0, 1001, 1002, 5, 79, 0, 0, 1002, 1003, 5, 76, 0, 0, 1003, 1004, 5, 85, 0, 0, 1004, 1005, 5, 77, 0, 0, 1005, 1006, 5, 78, 0, 0, 1006, 1007, 5, 83, 0, 0, 1007, 40, 1, 0, 0, 0, 1008, 1009, 5, 67, 0, 0, 1009, 1010, 5, 79, 0, 0, 1010, 1011, 5, 78, 0, 0, 1011, 1012, 5, 83, 0, 0, 1012, 1013, 5, 84, 0, 0, 1013, 1014, 5, 82, 0, 0, 1014, 1015, 5, 65, 0, 0, 1015, 1016, 5, 73, 0, 0, 1016, 1017, 5, 78, 0, 0, 1017, 1018, 5, 84, 0, 0, 1018, 1019, 5, 83, 0, 0, 1019, 42, 1, 0, 0, 0, 1020, 1021, 5, 67, 0, 0, 1021, 1022, 5, 79, 0, 0, 1022, 1023, 5, 78, 0, 0, 1023, 1024, 5, 83, 0, 0, 1024, 1025, 5, 84, 0, 0, 1025, 1026, 5, 82, 0, 0, 1026, 1027, 5, 85, 0, 0, 1027, 1028, 5, 67, 0, 0, 1028, 1029, 5, 84, 0, 0, 1029, 1030, 5, 79, 0, 0, 1030, 1031, 5, 82, 0, 0, 1031, 44, 1, 0, 0, 0, 1032, 1033, 5, 67, 0, 0, 1033, 1034, 5, 85, 0, 0, 1034, 1035, 5, 77, 0, 0, 1035, 1036, 5, 85, 0, 0, 1036, 1037, 5, 76, 0, 0, 1037, 1038, 5, 65, 0, 0, 1038, 1039, 5, 84, 0, 0, 1039, 1040, 5, 69, 0, 0, 1040, 46, 1, 0, 0, 0, 1041, 1042, 5, 68, 0, 0, 1042, 1043, 5, 65, 0, 0, 1043, 1044, 5, 84, 0, 0, 1044, 1045, 5, 65, 0, 0, 1045, 48, 1, 0, 0, 0, 1046, 1047, 5, 68, 0, 0, 1047, 1048, 5, 65, 0, 0, 1048, 1049, 5, 84, 0, 0, 1049, 1050, 5, 65, 0, 0, 1050, 1051, 5, 66, 0, 0, 1051, 1052, 5, 65, 0, 0, 1052, 1053, 5, 83, 0, 0, 1053, 1054, 5, 69, 0, 0, 1054, 50, 1, 0, 0, 0, 1055, 1056, 5, 68, 0, 0, 1056, 1057, 5, 65, 0, 0, 1057, 1058, 5, 84, 0, 0, 1058, 1059, 5, 65, 0, 0, 1059, 1060, 5, 66, 0, 0, 1060, 1061, 5, 65, 0, 0, 1061, 1062, 5, 83, 0, 0, 1062, 1063, 5, 69, 0, 0, 1063, 1064, 5, 83, 0, 0, 1064, 52, 1, 0, 0, 0, 1065, 1066, 5, 68, 0, 0, 1066, 1067, 5, 65, 0, 0, 1067, 1068, 5, 89, 0, 0, 1068, 1069, 5, 83, 0, 0, 1069, 54, 1, 0, 0, 0, 1070, 1071, 5, 68, 0, 0, 1071, 1072, 5, 69, 0, 0, 1072, 1073, 5, 67, 0, 0, 1073, 1074, 5, 65, 0, 0, 1074, 1075, 5, 68, 0, 0, 1075, 1076, 5, 69, 0, 0, 1076, 56, 1, 0, 0, 0, 1077, 1078, 5, 68, 0, 0, 1078, 1079, 5, 69, 0, 0, 1079, 1080, 5, 70, 0, 0, 1080, 1081, 5, 73, 0, 0, 1081, 1082, 5, 78, 0, 0, 1082, 1083, 5, 69, 0, 0, 1083, 1084, 5, 68, 0, 0, 1084, 58, 1, 0, 0, 0, 1085, 1086, 5, 68, 0, 0, 1086, 1087, 5, 69, 0, 0, 1087, 1088, 5, 83, 0, 0, 1088, 1089, 5, 67, 0, 0, 1089, 60, 1, 0, 0, 0, 1090, 1091, 5, 68, 0, 0, 1091, 1092, 5, 69, 0, 0, 1092, 1093, 5, 83, 0, 0, 1093, 1094, 5, 67, 0, 0, 1094, 1095, 5, 82, 0, 0, 1095, 1096, 5, 73, 0, 0, 1096, 1097, 5, 80, 0, 0, 1097, 1098, 5, 84, 0, 0, 1098, 1099, 5, 79, 0, 0, 1099, 1100, 5, 82, 0, 0, 1100, 62, 1, 0, 0, 0, 1101, 1102, 5, 68, 0, 0, 1102, 1103, 5, 73, 0, 0, 1103, 1104, 5, 86, 0, 0, 1104, 64, 1, 0, 0, 0, 1105, 1106, 5, 69, 0, 0, 1106, 1107, 5, 78, 0, 0, 1107, 1108, 5, 67, 0, 0, 1108, 1109, 5, 79, 0, 0, 1109, 1110, 5, 68, 0, 0, 1110, 1111, 5, 73, 0, 0, 1111, 1112, 5, 78, 0, 0, 1112, 1113, 5, 71, 0, 0, 1113, 66, 1, 0, 0, 0, 1114, 1115, 5, 69, 0, 0, 1115, 1116, 5, 78, 0, 0, 1116, 1117, 5, 70, 0, 0, 1117, 1118, 5, 79, 0, 0, 1118, 1119, 5, 82, 0, 0, 1119, 1120, 5, 67, 0, 0, 1120, 1121, 5, 69, 0, 0, 1121, 1122, 5, 68, 0, 0, 1122, 68, 1, 0, 0, 0, 1123, 1124, 5, 69, 0, 0, 1124, 1125, 5, 78, 0, 0, 1125, 1126, 5, 71, 0, 0, 1126, 1127, 5, 73, 0, 0, 1127, 1128, 5, 78, 0, 0, 1128, 1129, 5, 69, 0, 0, 1129, 70, 1, 0, 0, 0, 1130, 1131, 5, 69, 0, 0, 1131, 1132, 5, 82, 0, 0, 1132, 1133, 5, 82, 0, 0, 1133, 1134, 5, 79, 0, 0, 1134, 1135, 5, 82, 0, 0, 1135, 72, 1, 0, 0, 0, 1136, 1137, 5, 69, 0, 0, 1137, 1138, 5, 83, 0, 0, 1138, 1139, 5, 84, 0, 0, 1139, 1140, 5, 73, 0, 0, 1140, 1141, 5, 77, 0, 0, 1141, 1142, 5, 65, 0, 0, 1142, 1143, 5, 84, 0, 0, 1143, 1144, 5, 69, 0, 0, 1144, 1145, 5, 68, 0, 0, 1145, 1146, 5, 95, 0, 0, 1146, 1147, 5, 67, 0, 0, 1147, 1148, 5, 79, 0, 0, 1148, 1149, 5, 83, 0, 0, 1149, 1150, 5, 84, 0, 0, 1150, 74, 1, 0, 0, 0, 1151, 1152, 5, 69, 0, 0, 1152, 1153, 5, 88, 0, 0, 1153, 1154, 5, 67, 0, 0, 1154, 1155, 5, 69, 0, 0, 1155, 1156, 5, 80, 0, 0, 1156, 1157, 5, 84, 0, 0, 1157, 1158, 5, 73, 0, 0, 1158, 1159, 5, 79, 0, 0, 1159, 1160, 5, 78, 0, 0, 1160, 76, 1, 0, 0, 0, 1161, 1162, 5, 69, 0, 0, 1162, 1163, 5, 88, 0, 0, 1163, 1164, 5, 67, 0, 0, 1164, 1165, 5, 76, 0, 0, 1165, 1166, 5, 85, 0, 0, 1166, 1167, 5, 68, 0, 0, 1167, 1168, 5, 69, 0, 0, 1168, 78, 1, 0, 0, 0, 1169, 1170, 5, 69, 0, 0, 1170, 1171, 5, 88, 0, 0, 1171, 1172, 5, 67, 0, 0, 1172, 1173, 5, 76, 0, 0, 1173, 1174, 5, 85, 0, 0, 1174, 1175, 5, 68, 0, 0, 1175, 1176, 5, 73, 0, 0, 1176, 1177, 5, 78, 0, 0, 1177, 1178, 5, 71, 0, 0, 1178, 80, 1, 0, 0, 0, 1179, 1180, 5, 69, 0, 0, 1180, 1181, 5, 88, 0, 0, 1181, 1182, 5, 84, 0, 0, 1182, 1183, 5, 69, 0, 0, 1183, 1184, 5, 78, 0, 0, 1184, 1185, 5, 68, 0, 0, 1185, 1186, 5, 69, 0, 0, 1186, 1187, 5, 68, 0, 0, 1187, 82, 1, 0, 0, 0, 1188, 1189, 5, 70, 0, 0, 1189, 1190, 5, 73, 0, 0, 1190, 1191, 5, 76, 0, 0, 1191, 1192, 5, 69, 0, 0, 1192, 84, 1, 0, 0, 0, 1193, 1194, 5, 70, 0, 0, 1194, 1195, 5, 73, 0, 0, 1195, 1196, 5, 78, 0, 0, 1196, 1197, 5, 65, 0, 0, 1197, 1198, 5, 76, 0, 0, 1198, 86, 1, 0, 0, 0, 1199, 1200, 5, 70, 0, 0, 1200, 1201, 5, 73, 0, 0, 1201, 1202, 5, 82, 0, 0, 1202, 1203, 5, 83, 0, 0, 1203, 1204, 5, 84, 0, 0, 1204, 88, 1, 0, 0, 0, 1205, 1206, 5, 70, 0, 0, 1206, 1207, 5, 79, 0, 0, 1207, 1208, 5, 76, 0, 0, 1208, 1209, 5, 76, 0, 0, 1209, 1210, 5, 79, 0, 0, 1210, 1211, 5, 87, 0, 0, 1211, 1212, 5, 73, 0, 0, 1212, 1213, 5, 78, 0, 0, 1213, 1214, 5, 71, 0, 0, 1214, 90, 1, 0, 0, 0, 1215, 1216, 5, 70, 0, 0, 1216, 1217, 5, 79, 0, 0, 1217, 1218, 5, 82, 0, 0, 1218, 1219, 5, 77, 0, 0, 1219, 1220, 5, 65, 0, 0, 1220, 1221, 5, 84, 0, 0, 1221, 92, 1, 0, 0, 0, 1222, 1223, 5, 70, 0, 0, 1223, 1224, 5, 79, 0, 0, 1224, 1225, 5, 82, 0, 0, 1225, 1226, 5, 84, 0, 0, 1226, 1227, 5, 82, 0, 0, 1227, 1228, 5, 65, 0, 0, 1228, 1229, 5, 78, 0, 0, 1229, 94, 1, 0, 0, 0, 1230, 1231, 5, 70, 0, 0, 1231, 1232, 5, 79, 0, 0, 1232, 1233, 5, 85, 0, 0, 1233, 1234, 5, 78, 0, 0, 1234, 1235, 5, 68, 0, 0, 1235, 96, 1, 0, 0, 0, 1236, 1237, 5, 70, 0, 0, 1237, 1238, 5, 82, 0, 0, 1238, 1239, 5, 65, 0, 0, 1239, 1240, 5, 67, 0, 0, 1240, 1241, 5, 95, 0, 0, 1241, 1242, 5, 83, 0, 0, 1242, 1243, 5, 69, 0, 0, 1243, 1244, 5, 67, 0, 0, 1244, 1245, 5, 79, 0, 0, 1245, 1246, 5, 78, 0, 0, 1246, 1247, 5, 68, 0, 0, 1247, 98, 1, 0, 0, 0, 1248, 1249, 5, 70, 0, 0, 1249, 1250, 5, 85, 0, 0, 1250, 1251, 5, 78, 0, 0, 1251, 1252, 5, 67, 0, 0, 1252, 1253, 5, 84, 0, 0, 1253, 1254, 5, 73, 0, 0, 1254, 1255, 5, 79, 0, 0, 1255, 1256, 5, 78, 0, 0, 1256, 1257, 5, 83, 0, 0, 1257, 100, 1, 0, 0, 0, 1258, 1259, 5, 71, 0, 0, 1259, 1260, 5, 69, 0, 0, 1260, 1261, 5, 78, 0, 0, 1261, 1262, 5, 69, 0, 0, 1262, 1263, 5, 82, 0, 0, 1263, 1264, 5, 65, 0, 0, 1264, 1265, 5, 76, 0, 0, 1265, 102, 1, 0, 0, 0, 1266, 1267, 5, 71, 0, 0, 1267, 1268, 5, 69, 0, 0, 1268, 1269, 5, 78, 0, 0, 1269, 1270, 5, 69, 0, 0, 1270, 1271, 5, 82, 0, 0, 1271, 1272, 5, 65, 0, 0, 1272, 1273, 5, 84, 0, 0, 1273, 1274, 5, 69, 0, 0, 1274, 1275, 5, 68, 0, 0, 1275, 104, 1, 0, 0, 0, 1276, 1277, 5, 71, 0, 0, 1277, 1278, 5, 79, 0, 0, 1278, 106, 1, 0, 0, 0, 1279, 1280, 5, 71, 0, 0, 1280, 1281, 5, 79, 0, 0, 1281, 1282, 5, 84, 0, 0, 1282, 1283, 5, 79, 0, 0, 1283, 108, 1, 0, 0, 0, 1284, 1285, 5, 71, 0, 0, 1285, 1286, 5, 82, 0, 0, 1286, 1287, 5, 65, 0, 0, 1287, 1288, 5, 78, 0, 0, 1288, 1289, 5, 84, 0, 0, 1289, 1290, 5, 69, 0, 0, 1290, 1291, 5, 68, 0, 0, 1291, 110, 1, 0, 0, 0, 1292, 1293, 5, 72, 0, 0, 1293, 1294, 5, 79, 0, 0, 1294, 1295, 5, 80, 0, 0, 1295, 112, 1, 0, 0, 0, 1296, 1297, 5, 72, 0, 0, 1297, 1298, 5, 79, 0, 0, 1298, 1299, 5, 85, 0, 0, 1299, 1300, 5, 82, 0, 0, 1300, 1301, 5, 83, 0, 0, 1301, 114, 1, 0, 0, 0, 1302, 1303, 5, 73, 0, 0, 1303, 1304, 5, 70, 0, 0, 1304, 116, 1, 0, 0, 0, 1305, 1306, 5, 73, 0, 0, 1306, 1307, 5, 71, 0, 0, 1307, 1308, 5, 78, 0, 0, 1308, 1309, 5, 79, 0, 0, 1309, 1310, 5, 82, 0, 0, 1310, 1311, 5, 69, 0, 0, 1311, 118, 1, 0, 0, 0, 1312, 1313, 5, 73, 0, 0, 1313, 1314, 5, 78, 0, 0, 1314, 1315, 5, 67, 0, 0, 1315, 1316, 5, 82, 0, 0, 1316, 1317, 5, 69, 0, 0, 1317, 1318, 5, 77, 0, 0, 1318, 1319, 5, 69, 0, 0, 1319, 1320, 5, 78, 0, 0, 1320, 1321, 5, 84, 0, 0, 1321, 120, 1, 0, 0, 0, 1322, 1323, 5, 73, 0, 0, 1323, 1324, 5, 78, 0, 0, 1324, 1325, 5, 80, 0, 0, 1325, 1326, 5, 85, 0, 0, 1326, 1327, 5, 84, 0, 0, 1327, 122, 1, 0, 0, 0, 1328, 1329, 5, 73, 0, 0, 1329, 1330, 5, 78, 0, 0, 1330, 1331, 5, 86, 0, 0, 1331, 1332, 5, 79, 0, 0, 1332, 1333, 5, 75, 0, 0, 1333, 1334, 5, 69, 0, 0, 1334, 1335, 5, 82, 0, 0, 1335, 124, 1, 0, 0, 0, 1336, 1337, 5, 74, 0, 0, 1337, 1338, 5, 65, 0, 0, 1338, 1339, 5, 82, 0, 0, 1339, 126, 1, 0, 0, 0, 1340, 1341, 5, 74, 0, 0, 1341, 1342, 5, 65, 0, 0, 1342, 1343, 5, 82, 0, 0, 1343, 1344, 5, 83, 0, 0, 1344, 128, 1, 0, 0, 0, 1345, 1346, 5, 74, 0, 0, 1346, 1347, 5, 65, 0, 0, 1347, 1348, 5, 86, 0, 0, 1348, 1349, 5, 65, 0, 0, 1349, 130, 1, 0, 0, 0, 1350, 1351, 5, 74, 0, 0, 1351, 1352, 5, 83, 0, 0, 1352, 1353, 5, 79, 0, 0, 1353, 1354, 5, 78, 0, 0, 1354, 132, 1, 0, 0, 0, 1355, 1356, 5, 74, 0, 0, 1356, 1357, 5, 83, 0, 0, 1357, 1358, 5, 79, 0, 0, 1358, 1359, 5, 78, 0, 0, 1359, 1360, 5, 95, 0, 0, 1360, 1361, 5, 69, 0, 0, 1361, 1362, 5, 88, 0, 0, 1362, 1363, 5, 69, 0, 0, 1363, 1364, 5, 67, 0, 0, 1364, 1365, 5, 85, 0, 0, 1365, 1366, 5, 84, 0, 0, 1366, 1367, 5, 73, 0, 0, 1367, 1368, 5, 79, 0, 0, 1368, 1369, 5, 78, 0, 0, 1369, 1370, 5, 95, 0, 0, 1370, 1371, 5, 80, 0, 0, 1371, 1372, 5, 76, 0, 0, 1372, 1373, 5, 65, 0, 0, 1373, 1374, 5, 78, 0, 0, 1374, 134, 1, 0, 0, 0, 1375, 1376, 5, 75, 0, 0, 1376, 1377, 5, 69, 0, 0, 1377, 1378, 5, 89, 0, 0, 1378, 136, 1, 0, 0, 0, 1379, 1380, 5, 75, 0, 0, 1380, 1381, 5, 69, 0, 0, 1381, 1382, 5, 89, 0, 0, 1382, 1383, 5, 95, 0, 0, 1383, 1384, 5, 77, 0, 0, 1384, 1385, 5, 69, 0, 0, 1385, 1386, 5, 77, 0, 0, 1386, 1387, 5, 66, 0, 0, 1387, 1388, 5, 69, 0, 0, 1388, 1389, 5, 82, 0, 0, 1389, 138, 1, 0, 0, 0, 1390, 1391, 5, 75, 0, 0, 1391, 1392, 5, 69, 0, 0, 1392, 1393, 5, 89, 0, 0, 1393, 1394, 5, 95, 0, 0, 1394, 1395, 5, 84, 0, 0, 1395, 1396, 5, 89, 0, 0, 1396, 1397, 5, 80, 0, 0, 1397, 1398, 5, 69, 0, 0, 1398, 140, 1, 0, 0, 0, 1399, 1400, 5, 76, 0, 0, 1400, 1401, 5, 65, 0, 0, 1401, 1402, 5, 66, 0, 0, 1402, 1403, 5, 69, 0, 0, 1403, 1404, 5, 76, 0, 0, 1404, 142, 1, 0, 0, 0, 1405, 1406, 5, 76, 0, 0, 1406, 1407, 5, 65, 0, 0, 1407, 1408, 5, 83, 0, 0, 1408, 1409, 5, 84, 0, 0, 1409, 144, 1, 0, 0, 0, 1410, 1411, 5, 76, 0, 0, 1411, 1412, 5, 69, 0, 0, 1412, 1413, 5, 78, 0, 0, 1413, 1414, 5, 71, 0, 0, 1414, 1415, 5, 84, 0, 0, 1415, 1416, 5, 72, 0, 0, 1416, 146, 1, 0, 0, 0, 1417, 1418, 5, 76, 0, 0, 1418, 1419, 5, 69, 0, 0, 1419, 1420, 5, 86, 0, 0, 1420, 1421, 5, 69, 0, 0, 1421, 1422, 5, 76, 0, 0, 1422, 148, 1, 0, 0, 0, 1423, 1424, 5, 76, 0, 0, 1424, 1425, 5, 79, 0, 0, 1425, 1426, 5, 65, 0, 0, 1426, 1427, 5, 68, 0, 0, 1427, 150, 1, 0, 0, 0, 1428, 1429, 5, 77, 0, 0, 1429, 1430, 5, 65, 0, 0, 1430, 1431, 5, 80, 0, 0, 1431, 152, 1, 0, 0, 0, 1432, 1433, 5, 77, 0, 0, 1433, 1434, 5, 73, 0, 0, 1434, 1435, 5, 67, 0, 0, 1435, 1436, 5, 82, 0, 0, 1436, 1437, 5, 79, 0, 0, 1437, 1438, 5, 83, 0, 0, 1438, 1439, 5, 69, 0, 0, 1439, 1440, 5, 67, 0, 0, 1440, 1441, 5, 79, 0, 0, 1441, 1442, 5, 78, 0, 0, 1442, 1443, 5, 68, 0, 0, 1443, 154, 1, 0, 0, 0, 1444, 1445, 5, 77, 0, 0, 1445, 1446, 5, 73, 0, 0, 1446, 1447, 5, 76, 0, 0, 1447, 1448, 5, 76, 0, 0, 1448, 1449, 5, 69, 0, 0, 1449, 1450, 5, 78, 0, 0, 1450, 1451, 5, 78, 0, 0, 1451, 1452, 5, 73, 0, 0, 1452, 1453, 5, 85, 0, 0, 1453, 1454, 5, 77, 0, 0, 1454, 156, 1, 0, 0, 0, 1455, 1456, 5, 77, 0, 0, 1456, 1457, 5, 73, 0, 0, 1457, 1458, 5, 76, 0, 0, 1458, 1459, 5, 76, 0, 0, 1459, 1460, 5, 73, 0, 0, 1460, 1461, 5, 83, 0, 0, 1461, 1462, 5, 69, 0, 0, 1462, 1463, 5, 67, 0, 0, 1463, 1464, 5, 79, 0, 0, 1464, 1465, 5, 78, 0, 0, 1465, 1466, 5, 68, 0, 0, 1466, 158, 1, 0, 0, 0, 1467, 1468, 5, 77, 0, 0, 1468, 1469, 5, 73, 0, 0, 1469, 1470, 5, 78, 0, 0, 1470, 1471, 5, 85, 0, 0, 1471, 1472, 5, 84, 0, 0, 1472, 1473, 5, 69, 0, 0, 1473, 1474, 5, 83, 0, 0, 1474, 160, 1, 0, 0, 0, 1475, 1476, 5, 77, 0, 0, 1476, 1477, 5, 73, 0, 0, 1477, 1478, 5, 78, 0, 0, 1478, 1479, 5, 86, 0, 0, 1479, 1480, 5, 65, 0, 0, 1480, 1481, 5, 76, 0, 0, 1481, 1482, 5, 85, 0, 0, 1482, 1483, 5, 69, 0, 0, 1483, 162, 1, 0, 0, 0, 1484, 1485, 5, 77, 0, 0, 1485, 1486, 5, 79, 0, 0, 1486, 1487, 5, 68, 0, 0, 1487, 1488, 5, 73, 0, 0, 1488, 1489, 5, 70, 0, 0, 1489, 1490, 5, 89, 0, 0, 1490, 164, 1, 0, 0, 0, 1491, 1492, 5, 77, 0, 0, 1492, 1493, 5, 79, 0, 0, 1493, 1494, 5, 68, 0, 0, 1494, 1495, 5, 85, 0, 0, 1495, 1496, 5, 76, 0, 0, 1496, 1497, 5, 69, 0, 0, 1497, 1498, 5, 83, 0, 0, 1498, 166, 1, 0, 0, 0, 1499, 1500, 5, 77, 0, 0, 1500, 1501, 5, 79, 0, 0, 1501, 1502, 5, 78, 0, 0, 1502, 1503, 5, 84, 0, 0, 1503, 1504, 5, 72, 0, 0, 1504, 1505, 5, 83, 0, 0, 1505, 168, 1, 0, 0, 0, 1506, 1507, 5, 78, 0, 0, 1507, 1508, 5, 65, 0, 0, 1508, 1509, 5, 78, 0, 0, 1509, 1510, 5, 79, 0, 0, 1510, 1511, 5, 83, 0, 0, 1511, 1512, 5, 69, 0, 0, 1512, 1513, 5, 67, 0, 0, 1513, 1514, 5, 79, 0, 0, 1514, 1515, 5, 78, 0, 0, 1515, 1516, 5, 68, 0, 0, 1516, 170, 1, 0, 0, 0, 1517, 1518, 5, 78, 0, 0, 1518, 1519, 5, 85, 0, 0, 1519, 1520, 5, 76, 0, 0, 1520, 1521, 5, 76, 0, 0, 1521, 1522, 5, 83, 0, 0, 1522, 172, 1, 0, 0, 0, 1523, 1524, 5, 78, 0, 0, 1524, 1525, 5, 85, 0, 0, 1525, 1526, 5, 77, 0, 0, 1526, 1527, 5, 66, 0, 0, 1527, 1528, 5, 69, 0, 0, 1528, 1529, 5, 82, 0, 0, 1529, 174, 1, 0, 0, 0, 1530, 1531, 5, 79, 0, 0, 1531, 1532, 5, 80, 0, 0, 1532, 1533, 5, 84, 0, 0, 1533, 1534, 5, 73, 0, 0, 1534, 1535, 5, 79, 0, 0, 1535, 1536, 5, 78, 0, 0, 1536, 176, 1, 0, 0, 0, 1537, 1538, 5, 79, 0, 0, 1538, 1539, 5, 80, 0, 0, 1539, 1540, 5, 84, 0, 0, 1540, 1541, 5, 73, 0, 0, 1541, 1542, 5, 79, 0, 0, 1542, 1543, 5, 78, 0, 0, 1543, 1544, 5, 83, 0, 0, 1544, 178, 1, 0, 0, 0, 1545, 1546, 5, 79, 0, 0, 1546, 1547, 5, 82, 0, 0, 1547, 1548, 5, 68, 0, 0, 1548, 1549, 5, 69, 0, 0, 1549, 1550, 5, 82, 0, 0, 1550, 1551, 5, 73, 0, 0, 1551, 1552, 5, 78, 0, 0, 1552, 1553, 5, 71, 0, 0, 1553, 180, 1, 0, 0, 0, 1554, 1555, 5, 79, 0, 0, 1555, 1556, 5, 85, 0, 0, 1556, 1557, 5, 84, 0, 0, 1557, 1558, 5, 80, 0, 0, 1558, 1559, 5, 85, 0, 0, 1559, 1560, 5, 84, 0, 0, 1560, 182, 1, 0, 0, 0, 1561, 1562, 5, 79, 0, 0, 1562, 1563, 5, 86, 0, 0, 1563, 1564, 5, 69, 0, 0, 1564, 1565, 5, 82, 0, 0, 1565, 1566, 5, 87, 0, 0, 1566, 1567, 5, 82, 0, 0, 1567, 1568, 5, 73, 0, 0, 1568, 1569, 5, 84, 0, 0, 1569, 1570, 5, 69, 0, 0, 1570, 184, 1, 0, 0, 0, 1571, 1572, 5, 79, 0, 0, 1572, 1573, 5, 86, 0, 0, 1573, 1574, 5, 69, 0, 0, 1574, 1575, 5, 82, 0, 0, 1575, 1576, 5, 87, 0, 0, 1576, 1577, 5, 82, 0, 0, 1577, 1578, 5, 73, 0, 0, 1578, 1579, 5, 84, 0, 0, 1579, 1580, 5, 73, 0, 0, 1580, 1581, 5, 78, 0, 0, 1581, 1582, 5, 71, 0, 0, 1582, 186, 1, 0, 0, 0, 1583, 1584, 5, 80, 0, 0, 1584, 1585, 5, 65, 0, 0, 1585, 1586, 5, 82, 0, 0, 1586, 1587, 5, 84, 0, 0, 1587, 1588, 5, 73, 0, 0, 1588, 1589, 5, 84, 0, 0, 1589, 1590, 5, 73, 0, 0, 1590, 1591, 5, 79, 0, 0, 1591, 1592, 5, 78, 0, 0, 1592, 1593, 5, 69, 0, 0, 1593, 1594, 5, 68, 0, 0, 1594, 188, 1, 0, 0, 0, 1595, 1596, 5, 80, 0, 0, 1596, 1597, 5, 65, 0, 0, 1597, 1598, 5, 82, 0, 0, 1598, 1599, 5, 84, 0, 0, 1599, 1600, 5, 73, 0, 0, 1600, 1601, 5, 84, 0, 0, 1601, 1602, 5, 73, 0, 0, 1602, 1603, 5, 79, 0, 0, 1603, 1604, 5, 78, 0, 0, 1604, 1605, 5, 83, 0, 0, 1605, 190, 1, 0, 0, 0, 1606, 1607, 5, 80, 0, 0, 1607, 1608, 5, 65, 0, 0, 1608, 1609, 5, 83, 0, 0, 1609, 1610, 5, 83, 0, 0, 1610, 1611, 5, 73, 0, 0, 1611, 1612, 5, 78, 0, 0, 1612, 1613, 5, 71, 0, 0, 1613, 192, 1, 0, 0, 0, 1614, 1615, 5, 80, 0, 0, 1615, 1616, 5, 65, 0, 0, 1616, 1617, 5, 83, 0, 0, 1617, 1618, 5, 84, 0, 0, 1618, 194, 1, 0, 0, 0, 1619, 1620, 5, 80, 0, 0, 1620, 1621, 5, 65, 0, 0, 1621, 1622, 5, 84, 0, 0, 1622, 1623, 5, 72, 0, 0, 1623, 196, 1, 0, 0, 0, 1624, 1625, 5, 80, 0, 0, 1625, 1626, 5, 76, 0, 0, 1626, 1627, 5, 65, 0, 0, 1627, 1628, 5, 67, 0, 0, 1628, 1629, 5, 73, 0, 0, 1629, 1630, 5, 78, 0, 0, 1630, 1631, 5, 71, 0, 0, 1631, 198, 1, 0, 0, 0, 1632, 1633, 5, 80, 0, 0, 1633, 1634, 5, 76, 0, 0, 1634, 1635, 5, 65, 0, 0, 1635, 1636, 5, 78, 0, 0, 1636, 200, 1, 0, 0, 0, 1637, 1638, 5, 80, 0, 0, 1638, 1639, 5, 82, 0, 0, 1639, 1640, 5, 69, 0, 0, 1640, 1641, 5, 67, 0, 0, 1641, 1642, 5, 69, 0, 0, 1642, 1643, 5, 68, 0, 0, 1643, 1644, 5, 73, 0, 0, 1644, 1645, 5, 78, 0, 0, 1645, 1646, 5, 71, 0, 0, 1646, 202, 1, 0, 0, 0, 1647, 1648, 5, 80, 0, 0, 1648, 1649, 5, 82, 0, 0, 1649, 1650, 5, 69, 0, 0, 1650, 1651, 5, 83, 0, 0, 1651, 1652, 5, 69, 0, 0, 1652, 1653, 5, 82, 0, 0, 1653, 1654, 5, 86, 0, 0, 1654, 1655, 5, 69, 0, 0, 1655, 204, 1, 0, 0, 0, 1656, 1657, 5, 80, 0, 0, 1657, 1658, 5, 82, 0, 0, 1658, 1659, 5, 73, 0, 0, 1659, 1660, 5, 79, 0, 0, 1660, 1661, 5, 82, 0, 0, 1661, 206, 1, 0, 0, 0, 1662, 1663, 5, 80, 0, 0, 1663, 1664, 5, 82, 0, 0, 1664, 1665, 5, 73, 0, 0, 1665, 1666, 5, 86, 0, 0, 1666, 1667, 5, 73, 0, 0, 1667, 1668, 5, 76, 0, 0, 1668, 1669, 5, 69, 0, 0, 1669, 1670, 5, 71, 0, 0, 1670, 1671, 5, 69, 0, 0, 1671, 1672, 5, 83, 0, 0, 1672, 208, 1, 0, 0, 0, 1673, 1674, 5, 80, 0, 0, 1674, 1675, 5, 85, 0, 0, 1675, 1676, 5, 66, 0, 0, 1676, 1677, 5, 76, 0, 0, 1677, 1678, 5, 73, 0, 0, 1678, 1679, 5, 67, 0, 0, 1679, 210, 1, 0, 0, 0, 1680, 1681, 5, 80, 0, 0, 1681, 1682, 5, 89, 0, 0, 1682, 1683, 5, 84, 0, 0, 1683, 1684, 5, 72, 0, 0, 1684, 1685, 5, 79, 0, 0, 1685, 1686, 5, 78, 0, 0, 1686, 212, 1, 0, 0, 0, 1687, 1688, 5, 80, 0, 0, 1688, 1689, 5, 89, 0, 0, 1689, 1690, 5, 84, 0, 0, 1690, 1691, 5, 72, 0, 0, 1691, 1692, 5, 79, 0, 0, 1692, 1693, 5, 78, 0, 0, 1693, 1694, 5, 95, 0, 0, 1694, 1695, 5, 70, 0, 0, 1695, 1696, 5, 73, 0, 0, 1696, 1697, 5, 76, 0, 0, 1697, 1698, 5, 69, 0, 0, 1698, 1699, 5, 83, 0, 0, 1699, 214, 1, 0, 0, 0, 1700, 1701, 5, 80, 0, 0, 1701, 1702, 5, 89, 0, 0, 1702, 1703, 5, 84, 0, 0, 1703, 1704, 5, 72, 0, 0, 1704, 1705, 5, 79, 0, 0, 1705, 1706, 5, 78, 0, 0, 1706, 1707, 5, 95, 0, 0, 1707, 1708, 5, 82, 0, 0, 1708, 1709, 5, 69, 0, 0, 1709, 1710, 5, 81, 0, 0, 1710, 1711, 5, 85, 0, 0, 1711, 1712, 5, 73, 0, 0, 1712, 1713, 5, 82, 0, 0, 1713, 1714, 5, 69, 0, 0, 1714, 1715, 5, 77, 0, 0, 1715, 1716, 5, 69, 0, 0, 1716, 1717, 5, 78, 0, 0, 1717, 1718, 5, 84, 0, 0, 1718, 1719, 5, 83, 0, 0, 1719, 216, 1, 0, 0, 0, 1720, 1721, 5, 80, 0, 0, 1721, 1722, 5, 89, 0, 0, 1722, 1723, 5, 84, 0, 0, 1723, 1724, 5, 72, 0, 0, 1724, 1725, 5, 79, 0, 0, 1725, 1726, 5, 78, 0, 0, 1726, 1727, 5, 95, 0, 0, 1727, 1728, 5, 68, 0, 0, 1728, 1729, 5, 69, 0, 0, 1729, 1730, 5, 80, 0, 0, 1730, 1731, 5, 69, 0, 0, 1731, 1732, 5, 78, 0, 0, 1732, 1733, 5, 68, 0, 0, 1733, 1734, 5, 69, 0, 0, 1734, 1735, 5, 78, 0, 0, 1735, 1736, 5, 67, 0, 0, 1736, 1737, 5, 73, 0, 0, 1737, 1738, 5, 69, 0, 0, 1738, 1739, 5, 83, 0, 0, 1739, 218, 1, 0, 0, 0, 1740, 1741, 5, 80, 0, 0, 1741, 1742, 5, 89, 0, 0, 1742, 1743, 5, 84, 0, 0, 1743, 1744, 5, 72, 0, 0, 1744, 1745, 5, 79, 0, 0, 1745, 1746, 5, 78, 0, 0, 1746, 1747, 5, 95, 0, 0, 1747, 1748, 5, 74, 0, 0, 1748, 1749, 5, 65, 0, 0, 1749, 1750, 5, 82, 0, 0, 1750, 220, 1, 0, 0, 0, 1751, 1752, 5, 80, 0, 0, 1752, 1753, 5, 89, 0, 0, 1753, 1754, 5, 84, 0, 0, 1754, 1755, 5, 72, 0, 0, 1755, 1756, 5, 79, 0, 0, 1756, 1757, 5, 78, 0, 0, 1757, 1758, 5, 95, 0, 0, 1758, 1759, 5, 65, 0, 0, 1759, 1760, 5, 82, 0, 0, 1760, 1761, 5, 67, 0, 0, 1761, 1762, 5, 72, 0, 0, 1762, 1763, 5, 73, 0, 0, 1763, 1764, 5, 86, 0, 0, 1764, 1765, 5, 69, 0, 0, 1765, 1766, 5, 83, 0, 0, 1766, 222, 1, 0, 0, 0, 1767, 1768, 5, 80, 0, 0, 1768, 1769, 5, 89, 0, 0, 1769, 1770, 5, 84, 0, 0, 1770, 1771, 5, 72, 0, 0, 1771, 1772, 5, 79, 0, 0, 1772, 1773, 5, 78, 0, 0, 1773, 1774, 5, 95, 0, 0, 1774, 1775, 5, 80, 0, 0, 1775, 1776, 5, 65, 0, 0, 1776, 1777, 5, 82, 0, 0, 1777, 1778, 5, 65, 0, 0, 1778, 1779, 5, 77, 0, 0, 1779, 1780, 5, 69, 0, 0, 1780, 1781, 5, 84, 0, 0, 1781, 1782, 5, 69, 0, 0, 1782, 1783, 5, 82, 0, 0, 1783, 224, 1, 0, 0, 0, 1784, 1785, 5, 81, 0, 0, 1785, 1786, 5, 85, 0, 0, 1786, 1787, 5, 65, 0, 0, 1787, 1788, 5, 82, 0, 0, 1788, 1789, 5, 84, 0, 0, 1789, 1790, 5, 69, 0, 0, 1790, 1791, 5, 82, 0, 0, 1791, 226, 1, 0, 0, 0, 1792, 1793, 5, 82, 0, 0, 1793, 1794, 5, 65, 0, 0, 1794, 1795, 5, 87, 0, 0, 1795, 228, 1, 0, 0, 0, 1796, 1797, 5, 82, 0, 0, 1797, 1798, 5, 69, 0, 0, 1798, 1799, 5, 65, 0, 0, 1799, 1800, 5, 68, 0, 0, 1800, 230, 1, 0, 0, 0, 1801, 1802, 5, 82, 0, 0, 1802, 1803, 5, 69, 0, 0, 1803, 1804, 5, 76, 0, 0, 1804, 1805, 5, 65, 0, 0, 1805, 1806, 5, 84, 0, 0, 1806, 1807, 5, 73, 0, 0, 1807, 1808, 5, 86, 0, 0, 1808, 1809, 5, 69, 0, 0, 1809, 232, 1, 0, 0, 0, 1810, 1811, 5, 82, 0, 0, 1811, 1812, 5, 69, 0, 0, 1812, 1813, 5, 77, 0, 0, 1813, 1814, 5, 79, 0, 0, 1814, 1815, 5, 86, 0, 0, 1815, 1816, 5, 69, 0, 0, 1816, 234, 1, 0, 0, 0, 1817, 1818, 5, 82, 0, 0, 1818, 1819, 5, 69, 0, 0, 1819, 1820, 5, 78, 0, 0, 1820, 1821, 5, 65, 0, 0, 1821, 1822, 5, 77, 0, 0, 1822, 1823, 5, 69, 0, 0, 1823, 236, 1, 0, 0, 0, 1824, 1825, 5, 82, 0, 0, 1825, 1826, 5, 69, 0, 0, 1826, 1827, 5, 80, 0, 0, 1827, 1828, 5, 76, 0, 0, 1828, 1829, 5, 65, 0, 0, 1829, 1830, 5, 67, 0, 0, 1830, 1831, 5, 69, 0, 0, 1831, 238, 1, 0, 0, 0, 1832, 1833, 5, 82, 0, 0, 1833, 1834, 5, 69, 0, 0, 1834, 1835, 5, 83, 0, 0, 1835, 1836, 5, 80, 0, 0, 1836, 1837, 5, 69, 0, 0, 1837, 1838, 5, 67, 0, 0, 1838, 1839, 5, 84, 0, 0, 1839, 240, 1, 0, 0, 0, 1840, 1841, 5, 82, 0, 0, 1841, 1842, 5, 69, 0, 0, 1842, 1843, 5, 83, 0, 0, 1843, 1844, 5, 84, 0, 0, 1844, 1845, 5, 65, 0, 0, 1845, 1846, 5, 82, 0, 0, 1846, 1847, 5, 84, 0, 0, 1847, 242, 1, 0, 0, 0, 1848, 1849, 5, 82, 0, 0, 1849, 1850, 5, 69, 0, 0, 1850, 1851, 5, 83, 0, 0, 1851, 1852, 5, 84, 0, 0, 1852, 1853, 5, 82, 0, 0, 1853, 1854, 5, 73, 0, 0, 1854, 1855, 5, 67, 0, 0, 1855, 1856, 5, 84, 0, 0, 1856, 244, 1, 0, 0, 0, 1857, 1858, 5, 82, 0, 0, 1858, 1859, 5, 79, 0, 0, 1859, 1860, 5, 76, 0, 0, 1860, 1861, 5, 69, 0, 0, 1861, 246, 1, 0, 0, 0, 1862, 1863, 5, 82, 0, 0, 1863, 1864, 5, 79, 0, 0, 1864, 1865, 5, 87, 0, 0, 1865, 1866, 5, 95, 0, 0, 1866, 1867, 5, 67, 0, 0, 1867, 1868, 5, 79, 0, 0, 1868, 1869, 5, 85, 0, 0, 1869, 1870, 5, 78, 0, 0, 1870, 1871, 5, 84, 0, 0, 1871, 248, 1, 0, 0, 0, 1872, 1873, 5, 83, 0, 0, 1873, 1874, 5, 67, 0, 0, 1874, 1875, 5, 65, 0, 0, 1875, 1876, 5, 76, 0, 0, 1876, 1877, 5, 65, 0, 0, 1877, 250, 1, 0, 0, 0, 1878, 1879, 5, 83, 0, 0, 1879, 1880, 5, 67, 0, 0, 1880, 1881, 5, 65, 0, 0, 1881, 1882, 5, 76, 0, 0, 1882, 1883, 5, 65, 0, 0, 1883, 1884, 5, 82, 0, 0, 1884, 252, 1, 0, 0, 0, 1885, 1886, 5, 83, 0, 0, 1886, 1887, 5, 67, 0, 0, 1887, 1888, 5, 65, 0, 0, 1888, 1889, 5, 76, 0, 0, 1889, 1890, 5, 69, 0, 0, 1890, 254, 1, 0, 0, 0, 1891, 1892, 5, 83, 0, 0, 1892, 1893, 5, 67, 0, 0, 1893, 1894, 5, 72, 0, 0, 1894, 1895, 5, 69, 0, 0, 1895, 1896, 5, 77, 0, 0, 1896, 1897, 5, 65, 0, 0, 1897, 256, 1, 0, 0, 0, 1898, 1899, 5, 83, 0, 0, 1899, 1900, 5, 69, 0, 0, 1900, 1901, 5, 67, 0, 0, 1901, 1902, 5, 79, 0, 0, 1902, 1903, 5, 78, 0, 0, 1903, 1904, 5, 68, 0, 0, 1904, 1905, 5, 83, 0, 0, 1905, 258, 1, 0, 0, 0, 1906, 1907, 5, 83, 0, 0, 1907, 1908, 5, 69, 0, 0, 1908, 1909, 5, 67, 0, 0, 1909, 1910, 5, 84, 0, 0, 1910, 1911, 5, 73, 0, 0, 1911, 1912, 5, 79, 0, 0, 1912, 1913, 5, 78, 0, 0, 1913, 260, 1, 0, 0, 0, 1914, 1915, 5, 83, 0, 0, 1915, 1916, 5, 69, 0, 0, 1916, 1917, 5, 67, 0, 0, 1917, 1918, 5, 85, 0, 0, 1918, 1919, 5, 82, 0, 0, 1919, 1920, 5, 73, 0, 0, 1920, 1921, 5, 84, 0, 0, 1921, 1922, 5, 89, 0, 0, 1922, 262, 1, 0, 0, 0, 1923, 1924, 5, 83, 0, 0, 1924, 1925, 5, 69, 0, 0, 1925, 1926, 5, 76, 0, 0, 1926, 1927, 5, 70, 0, 0, 1927, 264, 1, 0, 0, 0, 1928, 1929, 5, 83, 0, 0, 1929, 1930, 5, 69, 0, 0, 1930, 1931, 5, 82, 0, 0, 1931, 1932, 5, 86, 0, 0, 1932, 1933, 5, 69, 0, 0, 1933, 1934, 5, 82, 0, 0, 1934, 266, 1, 0, 0, 0, 1935, 1936, 5, 83, 0, 0, 1936, 1937, 5, 69, 0, 0, 1937, 1938, 5, 82, 0, 0, 1938, 1939, 5, 86, 0, 0, 1939, 1940, 5, 69, 0, 0, 1940, 1941, 5, 82, 0, 0, 1941, 1942, 5, 95, 0, 0, 1942, 1943, 5, 78, 0, 0, 1943, 1944, 5, 65, 0, 0, 1944, 1945, 5, 77, 0, 0, 1945, 1946, 5, 69, 0, 0, 1946, 268, 1, 0, 0, 0, 1947, 1948, 5, 83, 0, 0, 1948, 1949, 5, 69, 0, 0, 1949, 1950, 5, 83, 0, 0, 1950, 1951, 5, 83, 0, 0, 1951, 1952, 5, 73, 0, 0, 1952, 1953, 5, 79, 0, 0, 1953, 1954, 5, 78, 0, 0, 1954, 270, 1, 0, 0, 0, 1955, 1956, 5, 83, 0, 0, 1956, 1957, 5, 69, 0, 0, 1957, 1958, 5, 84, 0, 0, 1958, 1959, 5, 83, 0, 0, 1959, 272, 1, 0, 0, 0, 1960, 1961, 5, 83, 0, 0, 1961, 1962, 5, 73, 0, 0, 1962, 1963, 5, 77, 0, 0, 1963, 1964, 5, 80, 0, 0, 1964, 1965, 5, 76, 0, 0, 1965, 1966, 5, 69, 0, 0, 1966, 274, 1, 0, 0, 0, 1967, 1968, 5, 83, 0, 0, 1968, 1969, 5, 73, 0, 0, 1969, 1970, 5, 90, 0, 0, 1970, 1971, 5, 69, 0, 0, 1971, 276, 1, 0, 0, 0, 1972, 1973, 5, 83, 0, 0, 1973, 1974, 5, 76, 0, 0, 1974, 1975, 5, 73, 0, 0, 1975, 1976, 5, 68, 0, 0, 1976, 1977, 5, 69, 0, 0, 1977, 278, 1, 0, 0, 0, 1978, 1979, 5, 83, 0, 0, 1979, 1980, 5, 79, 0, 0, 1980, 1981, 5, 85, 0, 0, 1981, 1982, 5, 82, 0, 0, 1982, 1983, 5, 67, 0, 0, 1983, 1984, 5, 69, 0, 0, 1984, 280, 1, 0, 0, 0, 1985, 1986, 5, 83, 0, 0, 1986, 1987, 5, 80, 0, 0, 1987, 1988, 5, 65, 0, 0, 1988, 1989, 5, 67, 0, 0, 1989, 1990, 5, 69, 0, 0, 1990, 282, 1, 0, 0, 0, 1991, 1992, 5, 83, 0, 0, 1992, 1993, 5, 84, 0, 0, 1993, 1994, 5, 65, 0, 0, 1994, 1995, 5, 84, 0, 0, 1995, 1996, 5, 69, 0, 0, 1996, 284, 1, 0, 0, 0, 1997, 1998, 5, 83, 0, 0, 1998, 1999, 5, 84, 0, 0, 1999, 2000, 5, 65, 0, 0, 2000, 2001, 5, 84, 0, 0, 2001, 2002, 5, 69, 0, 0, 2002, 2003, 5, 77, 0, 0, 2003, 2004, 5, 69, 0, 0, 2004, 2005, 5, 78, 0, 0, 2005, 2006, 5, 84, 0, 0, 2006, 286, 1, 0, 0, 0, 2007, 2008, 5, 83, 0, 0, 2008, 2009, 5, 84, 0, 0, 2009, 2010, 5, 69, 0, 0, 2010, 2011, 5, 80, 0, 0, 2011, 288, 1, 0, 0, 0, 2012, 2013, 5, 83, 0, 0, 2013, 2014, 5, 84, 0, 0, 2014, 2015, 5, 82, 0, 0, 2015, 2016, 5, 73, 0, 0, 2016, 2017, 5, 78, 0, 0, 2017, 2018, 5, 71, 0, 0, 2018, 290, 1, 0, 0, 0, 2019, 2020, 5, 83, 0, 0, 2020, 2021, 5, 84, 0, 0, 2021, 2022, 5, 82, 0, 0, 2022, 2023, 5, 85, 0, 0, 2023, 2024, 5, 67, 0, 0, 2024, 2025, 5, 84, 0, 0, 2025, 2026, 5, 85, 0, 0, 2026, 2027, 5, 82, 0, 0, 2027, 2028, 5, 69, 0, 0, 2028, 292, 1, 0, 0, 0, 2029, 2030, 5, 83, 0, 0, 2030, 2031, 5, 84, 0, 0, 2031, 2032, 5, 89, 0, 0, 2032, 2033, 5, 76, 0, 0, 2033, 2034, 5, 69, 0, 0, 2034, 294, 1, 0, 0, 0, 2035, 2036, 5, 84, 0, 0, 2036, 2037, 5, 65, 0, 0, 2037, 2038, 5, 66, 0, 0, 2038, 2039, 5, 76, 0, 0, 2039, 2040, 5, 69, 0, 0, 2040, 2041, 5, 83, 0, 0, 2041, 296, 1, 0, 0, 0, 2042, 2043, 5, 84, 0, 0, 2043, 2044, 5, 69, 0, 0, 2044, 2045, 5, 77, 0, 0, 2045, 2046, 5, 80, 0, 0, 2046, 2047, 5, 79, 0, 0, 2047, 2048, 5, 82, 0, 0, 2048, 2049, 5, 65, 0, 0, 2049, 2050, 5, 82, 0, 0, 2050, 2051, 5, 89, 0, 0, 2051, 298, 1, 0, 0, 0, 2052, 2053, 5, 84, 0, 0, 2053, 2054, 5, 73, 0, 0, 2054, 2055, 5, 77, 0, 0, 2055, 2056, 5, 69, 0, 0, 2056, 2057, 5, 67, 0, 0, 2057, 2058, 5, 79, 0, 0, 2058, 2059, 5, 76, 0, 0, 2059, 300, 1, 0, 0, 0, 2060, 2061, 5, 84, 0, 0, 2061, 2062, 5, 73, 0, 0, 2062, 2063, 5, 77, 0, 0, 2063, 2064, 5, 69, 0, 0, 2064, 2065, 5, 83, 0, 0, 2065, 2066, 5, 84, 0, 0, 2066, 2067, 5, 65, 0, 0, 2067, 2068, 5, 77, 0, 0, 2068, 2069, 5, 80, 0, 0, 2069, 2070, 5, 95, 0, 0, 2070, 2071, 5, 76, 0, 0, 2071, 2072, 5, 84, 0, 0, 2072, 2073, 5, 90, 0, 0, 2073, 302, 1, 0, 0, 0, 2074, 2075, 5, 84, 0, 0, 2075, 2076, 5, 73, 0, 0, 2076, 2077, 5, 77, 0, 0, 2077, 2078, 5, 69, 0, 0, 2078, 2079, 5, 83, 0, 0, 2079, 2080, 5, 84, 0, 0, 2080, 2081, 5, 65, 0, 0, 2081, 2082, 5, 77, 0, 0, 2082, 2083, 5, 80, 0, 0, 2083, 2084, 5, 65, 0, 0, 2084, 2085, 5, 68, 0, 0, 2085, 2086, 5, 68, 0, 0, 2086, 304, 1, 0, 0, 0, 2087, 2088, 5, 84, 0, 0, 2088, 2089, 5, 73, 0, 0, 2089, 2090, 5, 77, 0, 0, 2090, 2091, 5, 69, 0, 0, 2091, 2092, 5, 83, 0, 0, 2092, 2093, 5, 84, 0, 0, 2093, 2094, 5, 65, 0, 0, 2094, 2095, 5, 77, 0, 0, 2095, 2096, 5, 80, 0, 0, 2096, 2097, 5, 68, 0, 0, 2097, 2098, 5, 73, 0, 0, 2098, 2099, 5, 70, 0, 0, 2099, 2100, 5, 70, 0, 0, 2100, 306, 1, 0, 0, 0, 2101, 2102, 5, 84, 0, 0, 2102, 2103, 5, 82, 0, 0, 2103, 2104, 5, 65, 0, 0, 2104, 2105, 5, 78, 0, 0, 2105, 2106, 5, 83, 0, 0, 2106, 2107, 5, 70, 0, 0, 2107, 2108, 5, 79, 0, 0, 2108, 2109, 5, 82, 0, 0, 2109, 2110, 5, 77, 0, 0, 2110, 308, 1, 0, 0, 0, 2111, 2112, 5, 84, 0, 0, 2112, 2113, 5, 85, 0, 0, 2113, 2114, 5, 77, 0, 0, 2114, 2115, 5, 66, 0, 0, 2115, 2116, 5, 76, 0, 0, 2116, 2117, 5, 69, 0, 0, 2117, 310, 1, 0, 0, 0, 2118, 2119, 5, 84, 0, 0, 2119, 2120, 5, 89, 0, 0, 2120, 2121, 5, 80, 0, 0, 2121, 2122, 5, 69, 0, 0, 2122, 312, 1, 0, 0, 0, 2123, 2124, 5, 85, 0, 0, 2124, 2125, 5, 78, 0, 0, 2125, 2126, 5, 68, 0, 0, 2126, 2127, 5, 69, 0, 0, 2127, 2128, 5, 82, 0, 0, 2128, 314, 1, 0, 0, 0, 2129, 2130, 5, 85, 0, 0, 2130, 2131, 5, 78, 0, 0, 2131, 2132, 5, 76, 0, 0, 2132, 2133, 5, 79, 0, 0, 2133, 2134, 5, 65, 0, 0, 2134, 2135, 5, 68, 0, 0, 2135, 316, 1, 0, 0, 0, 2136, 2137, 5, 85, 0, 0, 2137, 2138, 5, 83, 0, 0, 2138, 2139, 5, 65, 0, 0, 2139, 2140, 5, 71, 0, 0, 2140, 2141, 5, 69, 0, 0, 2141, 318, 1, 0, 0, 0, 2142, 2143, 5, 85, 0, 0, 2143, 2144, 5, 83, 0, 0, 2144, 2145, 5, 69, 0, 0, 2145, 320, 1, 0, 0, 0, 2146, 2147, 5, 85, 0, 0, 2147, 2148, 5, 84, 0, 0, 2148, 2149, 5, 70, 0, 0, 2149, 2150, 5, 49, 0, 0, 2150, 2151, 5, 54, 0, 0, 2151, 322, 1, 0, 0, 0, 2152, 2153, 5, 85, 0, 0, 2153, 2154, 5, 84, 0, 0, 2154, 2155, 5, 70, 0, 0, 2155, 2156, 5, 51, 0, 0, 2156, 2157, 5, 50, 0, 0, 2157, 324, 1, 0, 0, 0, 2158, 2159, 5, 85, 0, 0, 2159, 2160, 5, 84, 0, 0, 2160, 2161, 5, 70, 0, 0, 2161, 2162, 5, 56, 0, 0, 2162, 326, 1, 0, 0, 0, 2163, 2164, 5, 86, 0, 0, 2164, 2165, 5, 69, 0, 0, 2165, 2166, 5, 82, 0, 0, 2166, 2167, 5, 83, 0, 0, 2167, 2168, 5, 73, 0, 0, 2168, 2169, 5, 79, 0, 0, 2169, 2170, 5, 78, 0, 0, 2170, 328, 1, 0, 0, 0, 2171, 2172, 5, 86, 0, 0, 2172, 2173, 5, 73, 0, 0, 2173, 2174, 5, 69, 0, 0, 2174, 2175, 5, 87, 0, 0, 2175, 330, 1, 0, 0, 0, 2176, 2177, 5, 86, 0, 0, 2177, 2178, 5, 73, 0, 0, 2178, 2179, 5, 69, 0, 0, 2179, 2180, 5, 87, 0, 0, 2180, 2181, 5, 83, 0, 0, 2181, 332, 1, 0, 0, 0, 2182, 2183, 5, 86, 0, 0, 2183, 2184, 5, 73, 0, 0, 2184, 2185, 5, 82, 0, 0, 2185, 2186, 5, 84, 0, 0, 2186, 2187, 5, 85, 0, 0, 2187, 2188, 5, 65, 0, 0, 2188, 2189, 5, 76, 0, 0, 2189, 334, 1, 0, 0, 0, 2190, 2191, 5, 87, 0, 0, 2191, 2192, 5, 65, 0, 0, 2192, 2193, 5, 84, 0, 0, 2193, 2194, 5, 69, 0, 0, 2194, 2195, 5, 82, 0, 0, 2195, 2196, 5, 77, 0, 0, 2196, 2197, 5, 65, 0, 0, 2197, 2198, 5, 82, 0, 0, 2198, 2199, 5, 75, 0, 0, 2199, 336, 1, 0, 0, 0, 2200, 2201, 5, 87, 0, 0, 2201, 2202, 5, 65, 0, 0, 2202, 2203, 5, 84, 0, 0, 2203, 2204, 5, 69, 0, 0, 2204, 2205, 5, 82, 0, 0, 2205, 2206, 5, 77, 0, 0, 2206, 2207, 5, 65, 0, 0, 2207, 2208, 5, 82, 0, 0, 2208, 2209, 5, 75, 0, 0, 2209, 2210, 5, 83, 0, 0, 2210, 338, 1, 0, 0, 0, 2211, 2212, 5, 87, 0, 0, 2212, 2213, 5, 69, 0, 0, 2213, 2214, 5, 69, 0, 0, 2214, 2215, 5, 75, 0, 0, 2215, 340, 1, 0, 0, 0, 2216, 2217, 5, 87, 0, 0, 2217, 2218, 5, 79, 0, 0, 2218, 2219, 5, 82, 0, 0, 2219, 2220, 5, 75, 0, 0, 2220, 342, 1, 0, 0, 0, 2221, 2222, 5, 87, 0, 0, 2222, 2223, 5, 82, 0, 0, 2223, 2224, 5, 65, 0, 0, 2224, 2225, 5, 80, 0, 0, 2225, 2226, 5, 80, 0, 0, 2226, 2227, 5, 69, 0, 0, 2227, 2228, 5, 82, 0, 0, 2228, 344, 1, 0, 0, 0, 2229, 2230, 5, 89, 0, 0, 2230, 2231, 5, 69, 0, 0, 2231, 2232, 5, 65, 0, 0, 2232, 2233, 5, 82, 0, 0, 2233, 2234, 5, 83, 0, 0, 2234, 346, 1, 0, 0, 0, 2235, 2236, 5, 90, 0, 0, 2236, 2237, 5, 79, 0, 0, 2237, 2238, 5, 78, 0, 0, 2238, 2239, 5, 69, 0, 0, 2239, 348, 1, 0, 0, 0, 2240, 2241, 5, 65, 0, 0, 2241, 2242, 5, 66, 0, 0, 2242, 2243, 5, 83, 0, 0, 2243, 350, 1, 0, 0, 0, 2244, 2245, 5, 65, 0, 0, 2245, 2246, 5, 76, 0, 0, 2246, 2247, 5, 76, 0, 0, 2247, 352, 1, 0, 0, 0, 2248, 2249, 5, 65, 0, 0, 2249, 2250, 5, 76, 0, 0, 2250, 2251, 5, 76, 0, 0, 2251, 2252, 5, 79, 0, 0, 2252, 2253, 5, 87, 0, 0, 2253, 354, 1, 0, 0, 0, 2254, 2255, 5, 65, 0, 0, 2255, 2256, 5, 76, 0, 0, 2256, 2257, 5, 84, 0, 0, 2257, 2258, 5, 69, 0, 0, 2258, 2259, 5, 82, 0, 0, 2259, 356, 1, 0, 0, 0, 2260, 2261, 5, 65, 0, 0, 2261, 2262, 5, 78, 0, 0, 2262, 2263, 5, 68, 0, 0, 2263, 358, 1, 0, 0, 0, 2264, 2265, 5, 65, 0, 0, 2265, 2266, 5, 78, 0, 0, 2266, 2267, 5, 89, 0, 0, 2267, 360, 1, 0, 0, 0, 2268, 2269, 5, 65, 0, 0, 2269, 2270, 5, 82, 0, 0, 2270, 2271, 5, 69, 0, 0, 2271, 362, 1, 0, 0, 0, 2272, 2273, 5, 65, 0, 0, 2273, 2274, 5, 82, 0, 0, 2274, 2275, 5, 82, 0, 0, 2275, 2276, 5, 65, 0, 0, 2276, 2277, 5, 89, 0, 0, 2277, 364, 1, 0, 0, 0, 2278, 2279, 5, 65, 0, 0, 2279, 2280, 5, 83, 0, 0, 2280, 366, 1, 0, 0, 0, 2281, 2282, 5, 65, 0, 0, 2282, 2283, 5, 84, 0, 0, 2283, 368, 1, 0, 0, 0, 2284, 2285, 5, 65, 0, 0, 2285, 2286, 5, 86, 0, 0, 2286, 2287, 5, 71, 0, 0, 2287, 370, 1, 0, 0, 0, 2288, 2289, 5, 66, 0, 0, 2289, 2290, 5, 69, 0, 0, 2290, 2291, 5, 71, 0, 0, 2291, 2292, 5, 73, 0, 0, 2292, 2293, 5, 78, 0, 0, 2293, 372, 1, 0, 0, 0, 2294, 2295, 5, 66, 0, 0, 2295, 2296, 5, 69, 0, 0, 2296, 2297, 5, 84, 0, 0, 2297, 2298, 5, 87, 0, 0, 2298, 2299, 5, 69, 0, 0, 2299, 2300, 5, 69, 0, 0, 2300, 2301, 5, 78, 0, 0, 2301, 374, 1, 0, 0, 0, 2302, 2303, 5, 66, 0, 0, 2303, 2304, 5, 73, 0, 0, 2304, 2305, 5, 71, 0, 0, 2305, 2306, 5, 73, 0, 0, 2306, 2307, 5, 78, 0, 0, 2307, 2308, 5, 84, 0, 0, 2308, 376, 1, 0, 0, 0, 2309, 2310, 5, 66, 0, 0, 2310, 2311, 5, 73, 0, 0, 2311, 2312, 5, 78, 0, 0, 2312, 2313, 5, 65, 0, 0, 2313, 2314, 5, 82, 0, 0, 2314, 2315, 5, 89, 0, 0, 2315, 378, 1, 0, 0, 0, 2316, 2317, 5, 66, 0, 0, 2317, 2318, 5, 73, 0, 0, 2318, 2319, 5, 84, 0, 0, 2319, 380, 1, 0, 0, 0, 2320, 2321, 5, 66, 0, 0, 2321, 2322, 5, 76, 0, 0, 2322, 2323, 5, 79, 0, 0, 2323, 2324, 5, 66, 0, 0, 2324, 382, 1, 0, 0, 0, 2325, 2326, 5, 66, 0, 0, 2326, 2327, 5, 79, 0, 0, 2327, 2328, 5, 79, 0, 0, 2328, 2329, 5, 76, 0, 0, 2329, 2330, 5, 69, 0, 0, 2330, 2331, 5, 65, 0, 0, 2331, 2332, 5, 78, 0, 0, 2332, 384, 1, 0, 0, 0, 2333, 2334, 5, 66, 0, 0, 2334, 2335, 5, 79, 0, 0, 2335, 2336, 5, 84, 0, 0, 2336, 2337, 5, 72, 0, 0, 2337, 386, 1, 0, 0, 0, 2338, 2339, 5, 66, 0, 0, 2339, 2340, 5, 89, 0, 0, 2340, 388, 1, 0, 0, 0, 2341, 2342, 5, 67, 0, 0, 2342, 2343, 5, 65, 0, 0, 2343, 2344, 5, 76, 0, 0, 2344, 2345, 5, 76, 0, 0, 2345, 390, 1, 0, 0, 0, 2346, 2347, 5, 67, 0, 0, 2347, 2348, 5, 65, 0, 0, 2348, 2349, 5, 76, 0, 0, 2349, 2350, 5, 76, 0, 0, 2350, 2351, 5, 69, 0, 0, 2351, 2352, 5, 68, 0, 0, 2352, 392, 1, 0, 0, 0, 2353, 2354, 5, 67, 0, 0, 2354, 2355, 5, 65, 0, 0, 2355, 2356, 5, 83, 0, 0, 2356, 2357, 5, 67, 0, 0, 2357, 2358, 5, 65, 0, 0, 2358, 2359, 5, 68, 0, 0, 2359, 2360, 5, 69, 0, 0, 2360, 2361, 5, 68, 0, 0, 2361, 394, 1, 0, 0, 0, 2362, 2363, 5, 67, 0, 0, 2363, 2364, 5, 65, 0, 0, 2364, 2365, 5, 83, 0, 0, 2365, 2366, 5, 69, 0, 0, 2366, 396, 1, 0, 0, 0, 2367, 2368, 5, 67, 0, 0, 2368, 2369, 5, 65, 0, 0, 2369, 2370, 5, 83, 0, 0, 2370, 2371, 5, 84, 0, 0, 2371, 398, 1, 0, 0, 0, 2372, 2373, 5, 67, 0, 0, 2373, 2374, 5, 69, 0, 0, 2374, 2375, 5, 73, 0, 0, 2375, 2376, 5, 76, 0, 0, 2376, 400, 1, 0, 0, 0, 2377, 2378, 5, 67, 0, 0, 2378, 2379, 5, 72, 0, 0, 2379, 2380, 5, 65, 0, 0, 2380, 2381, 5, 82, 0, 0, 2381, 402, 1, 0, 0, 0, 2382, 2383, 5, 67, 0, 0, 2383, 2384, 5, 72, 0, 0, 2384, 2385, 5, 65, 0, 0, 2385, 2386, 5, 82, 0, 0, 2386, 2387, 5, 65, 0, 0, 2387, 2388, 5, 67, 0, 0, 2388, 2389, 5, 84, 0, 0, 2389, 2390, 5, 69, 0, 0, 2390, 2391, 5, 82, 0, 0, 2391, 404, 1, 0, 0, 0, 2392, 2393, 5, 67, 0, 0, 2393, 2394, 5, 72, 0, 0, 2394, 2395, 5, 69, 0, 0, 2395, 2396, 5, 67, 0, 0, 2396, 2397, 5, 75, 0, 0, 2397, 406, 1, 0, 0, 0, 2398, 2399, 5, 67, 0, 0, 2399, 2400, 5, 76, 0, 0, 2400, 2401, 5, 79, 0, 0, 2401, 2402, 5, 66, 0, 0, 2402, 408, 1, 0, 0, 0, 2403, 2404, 5, 67, 0, 0, 2404, 2405, 5, 76, 0, 0, 2405, 2406, 5, 79, 0, 0, 2406, 2407, 5, 83, 0, 0, 2407, 2408, 5, 69, 0, 0, 2408, 410, 1, 0, 0, 0, 2409, 2410, 5, 67, 0, 0, 2410, 2411, 5, 79, 0, 0, 2411, 2412, 5, 65, 0, 0, 2412, 2413, 5, 76, 0, 0, 2413, 2414, 5, 69, 0, 0, 2414, 2415, 5, 83, 0, 0, 2415, 2416, 5, 67, 0, 0, 2416, 2417, 5, 69, 0, 0, 2417, 412, 1, 0, 0, 0, 2418, 2419, 5, 67, 0, 0, 2419, 2420, 5, 79, 0, 0, 2420, 2421, 5, 76, 0, 0, 2421, 2422, 5, 76, 0, 0, 2422, 2423, 5, 65, 0, 0, 2423, 2424, 5, 84, 0, 0, 2424, 2425, 5, 69, 0, 0, 2425, 414, 1, 0, 0, 0, 2426, 2427, 5, 67, 0, 0, 2427, 2428, 5, 79, 0, 0, 2428, 2429, 5, 76, 0, 0, 2429, 2430, 5, 76, 0, 0, 2430, 2431, 5, 69, 0, 0, 2431, 2432, 5, 67, 0, 0, 2432, 2433, 5, 84, 0, 0, 2433, 416, 1, 0, 0, 0, 2434, 2435, 5, 67, 0, 0, 2435, 2436, 5, 79, 0, 0, 2436, 2437, 5, 76, 0, 0, 2437, 2438, 5, 85, 0, 0, 2438, 2439, 5, 77, 0, 0, 2439, 2440, 5, 78, 0, 0, 2440, 418, 1, 0, 0, 0, 2441, 2442, 5, 67, 0, 0, 2442, 2443, 5, 79, 0, 0, 2443, 2444, 5, 77, 0, 0, 2444, 2445, 5, 77, 0, 0, 2445, 2446, 5, 73, 0, 0, 2446, 2447, 5, 84, 0, 0, 2447, 420, 1, 0, 0, 0, 2448, 2449, 5, 67, 0, 0, 2449, 2450, 5, 79, 0, 0, 2450, 2451, 5, 78, 0, 0, 2451, 2452, 5, 78, 0, 0, 2452, 2453, 5, 69, 0, 0, 2453, 2454, 5, 67, 0, 0, 2454, 2455, 5, 84, 0, 0, 2455, 422, 1, 0, 0, 0, 2456, 2457, 5, 67, 0, 0, 2457, 2458, 5, 79, 0, 0, 2458, 2459, 5, 78, 0, 0, 2459, 2460, 5, 83, 0, 0, 2460, 2461, 5, 84, 0, 0, 2461, 2462, 5, 82, 0, 0, 2462, 2463, 5, 65, 0, 0, 2463, 2464, 5, 73, 0, 0, 2464, 2465, 5, 78, 0, 0, 2465, 2466, 5, 84, 0, 0, 2466, 424, 1, 0, 0, 0, 2467, 2468, 5, 67, 0, 0, 2468, 2469, 5, 79, 0, 0, 2469, 2470, 5, 78, 0, 0, 2470, 2471, 5, 84, 0, 0, 2471, 2472, 5, 65, 0, 0, 2472, 2473, 5, 73, 0, 0, 2473, 2474, 5, 78, 0, 0, 2474, 2475, 5, 83, 0, 0, 2475, 426, 1, 0, 0, 0, 2476, 2477, 5, 67, 0, 0, 2477, 2478, 5, 79, 0, 0, 2478, 2479, 5, 78, 0, 0, 2479, 2480, 5, 86, 0, 0, 2480, 2481, 5, 69, 0, 0, 2481, 2482, 5, 82, 0, 0, 2482, 2483, 5, 84, 0, 0, 2483, 428, 1, 0, 0, 0, 2484, 2485, 5, 67, 0, 0, 2485, 2486, 5, 79, 0, 0, 2486, 2487, 5, 85, 0, 0, 2487, 2488, 5, 78, 0, 0, 2488, 2489, 5, 84, 0, 0, 2489, 430, 1, 0, 0, 0, 2490, 2491, 5, 67, 0, 0, 2491, 2492, 5, 82, 0, 0, 2492, 2493, 5, 69, 0, 0, 2493, 2494, 5, 65, 0, 0, 2494, 2495, 5, 84, 0, 0, 2495, 2496, 5, 69, 0, 0, 2496, 432, 1, 0, 0, 0, 2497, 2498, 5, 67, 0, 0, 2498, 2499, 5, 82, 0, 0, 2499, 2500, 5, 79, 0, 0, 2500, 2501, 5, 83, 0, 0, 2501, 2502, 5, 83, 0, 0, 2502, 434, 1, 0, 0, 0, 2503, 2504, 5, 67, 0, 0, 2504, 2505, 5, 85, 0, 0, 2505, 2506, 5, 66, 0, 0, 2506, 2507, 5, 69, 0, 0, 2507, 436, 1, 0, 0, 0, 2508, 2509, 5, 67, 0, 0, 2509, 2510, 5, 85, 0, 0, 2510, 2511, 5, 82, 0, 0, 2511, 2512, 5, 82, 0, 0, 2512, 2513, 5, 69, 0, 0, 2513, 2514, 5, 78, 0, 0, 2514, 2515, 5, 84, 0, 0, 2515, 438, 1, 0, 0, 0, 2516, 2517, 5, 67, 0, 0, 2517, 2518, 5, 85, 0, 0, 2518, 2519, 5, 82, 0, 0, 2519, 2520, 5, 83, 0, 0, 2520, 2521, 5, 79, 0, 0, 2521, 2522, 5, 82, 0, 0, 2522, 440, 1, 0, 0, 0, 2523, 2524, 5, 67, 0, 0, 2524, 2525, 5, 89, 0, 0, 2525, 2526, 5, 67, 0, 0, 2526, 2527, 5, 76, 0, 0, 2527, 2528, 5, 69, 0, 0, 2528, 442, 1, 0, 0, 0, 2529, 2530, 5, 68, 0, 0, 2530, 2531, 5, 65, 0, 0, 2531, 2532, 5, 84, 0, 0, 2532, 2533, 5, 69, 0, 0, 2533, 444, 1, 0, 0, 0, 2534, 2535, 5, 68, 0, 0, 2535, 2536, 5, 65, 0, 0, 2536, 2537, 5, 84, 0, 0, 2537, 2538, 5, 69, 0, 0, 2538, 2539, 5, 84, 0, 0, 2539, 2540, 5, 73, 0, 0, 2540, 2541, 5, 77, 0, 0, 2541, 2542, 5, 69, 0, 0, 2542, 446, 1, 0, 0, 0, 2543, 2544, 5, 68, 0, 0, 2544, 2545, 5, 65, 0, 0, 2545, 2546, 5, 89, 0, 0, 2546, 448, 1, 0, 0, 0, 2547, 2548, 5, 68, 0, 0, 2548, 2549, 5, 69, 0, 0, 2549, 2550, 5, 67, 0, 0, 2550, 450, 1, 0, 0, 0, 2551, 2552, 5, 68, 0, 0, 2552, 2553, 5, 69, 0, 0, 2553, 2554, 5, 67, 0, 0, 2554, 2555, 5, 73, 0, 0, 2555, 2556, 5, 77, 0, 0, 2556, 2557, 5, 65, 0, 0, 2557, 2558, 5, 76, 0, 0, 2558, 452, 1, 0, 0, 0, 2559, 2560, 5, 68, 0, 0, 2560, 2561, 5, 69, 0, 0, 2561, 2562, 5, 67, 0, 0, 2562, 2563, 5, 76, 0, 0, 2563, 2564, 5, 65, 0, 0, 2564, 2565, 5, 82, 0, 0, 2565, 2566, 5, 69, 0, 0, 2566, 454, 1, 0, 0, 0, 2567, 2568, 5, 68, 0, 0, 2568, 2569, 5, 69, 0, 0, 2569, 2570, 5, 70, 0, 0, 2570, 2571, 5, 65, 0, 0, 2571, 2572, 5, 85, 0, 0, 2572, 2573, 5, 76, 0, 0, 2573, 2574, 5, 84, 0, 0, 2574, 456, 1, 0, 0, 0, 2575, 2576, 5, 68, 0, 0, 2576, 2577, 5, 69, 0, 0, 2577, 2578, 5, 70, 0, 0, 2578, 2579, 5, 73, 0, 0, 2579, 2580, 5, 78, 0, 0, 2580, 2581, 5, 69, 0, 0, 2581, 458, 1, 0, 0, 0, 2582, 2583, 5, 68, 0, 0, 2583, 2584, 5, 69, 0, 0, 2584, 2585, 5, 76, 0, 0, 2585, 2586, 5, 69, 0, 0, 2586, 2587, 5, 84, 0, 0, 2587, 2588, 5, 69, 0, 0, 2588, 460, 1, 0, 0, 0, 2589, 2590, 5, 68, 0, 0, 2590, 2591, 5, 69, 0, 0, 2591, 2592, 5, 83, 0, 0, 2592, 2593, 5, 67, 0, 0, 2593, 2594, 5, 82, 0, 0, 2594, 2595, 5, 73, 0, 0, 2595, 2596, 5, 66, 0, 0, 2596, 2597, 5, 69, 0, 0, 2597, 462, 1, 0, 0, 0, 2598, 2599, 5, 68, 0, 0, 2599, 2600, 5, 73, 0, 0, 2600, 2601, 5, 83, 0, 0, 2601, 2602, 5, 84, 0, 0, 2602, 2603, 5, 73, 0, 0, 2603, 2604, 5, 78, 0, 0, 2604, 2605, 5, 67, 0, 0, 2605, 2606, 5, 84, 0, 0, 2606, 464, 1, 0, 0, 0, 2607, 2608, 5, 68, 0, 0, 2608, 2609, 5, 79, 0, 0, 2609, 2610, 5, 85, 0, 0, 2610, 2611, 5, 66, 0, 0, 2611, 2612, 5, 76, 0, 0, 2612, 2613, 5, 69, 0, 0, 2613, 466, 1, 0, 0, 0, 2614, 2615, 5, 68, 0, 0, 2615, 2616, 5, 82, 0, 0, 2616, 2617, 5, 79, 0, 0, 2617, 2618, 5, 80, 0, 0, 2618, 468, 1, 0, 0, 0, 2619, 2620, 5, 69, 0, 0, 2620, 2621, 5, 65, 0, 0, 2621, 2622, 5, 67, 0, 0, 2622, 2623, 5, 72, 0, 0, 2623, 470, 1, 0, 0, 0, 2624, 2625, 5, 69, 0, 0, 2625, 2626, 5, 76, 0, 0, 2626, 2627, 5, 83, 0, 0, 2627, 2628, 5, 69, 0, 0, 2628, 472, 1, 0, 0, 0, 2629, 2630, 5, 69, 0, 0, 2630, 2631, 5, 78, 0, 0, 2631, 2632, 5, 68, 0, 0, 2632, 474, 1, 0, 0, 0, 2633, 2634, 5, 69, 0, 0, 2634, 2635, 5, 81, 0, 0, 2635, 2636, 5, 85, 0, 0, 2636, 2637, 5, 65, 0, 0, 2637, 2638, 5, 76, 0, 0, 2638, 2639, 5, 83, 0, 0, 2639, 476, 1, 0, 0, 0, 2640, 2641, 5, 69, 0, 0, 2641, 2642, 5, 88, 0, 0, 2642, 2643, 5, 67, 0, 0, 2643, 2644, 5, 69, 0, 0, 2644, 2645, 5, 80, 0, 0, 2645, 2646, 5, 84, 0, 0, 2646, 478, 1, 0, 0, 0, 2647, 2648, 5, 69, 0, 0, 2648, 2649, 5, 88, 0, 0, 2649, 2650, 5, 69, 0, 0, 2650, 2651, 5, 67, 0, 0, 2651, 2652, 5, 85, 0, 0, 2652, 2653, 5, 84, 0, 0, 2653, 2654, 5, 69, 0, 0, 2654, 480, 1, 0, 0, 0, 2655, 2656, 5, 69, 0, 0, 2656, 2657, 5, 88, 0, 0, 2657, 2658, 5, 73, 0, 0, 2658, 2659, 5, 83, 0, 0, 2659, 2660, 5, 84, 0, 0, 2660, 2661, 5, 83, 0, 0, 2661, 482, 1, 0, 0, 0, 2662, 2663, 5, 69, 0, 0, 2663, 2664, 5, 88, 0, 0, 2664, 2665, 5, 80, 0, 0, 2665, 2666, 5, 76, 0, 0, 2666, 2667, 5, 65, 0, 0, 2667, 2668, 5, 73, 0, 0, 2668, 2669, 5, 78, 0, 0, 2669, 484, 1, 0, 0, 0, 2670, 2671, 5, 69, 0, 0, 2671, 2672, 5, 88, 0, 0, 2672, 2673, 5, 84, 0, 0, 2673, 2674, 5, 69, 0, 0, 2674, 2675, 5, 82, 0, 0, 2675, 2676, 5, 78, 0, 0, 2676, 2677, 5, 65, 0, 0, 2677, 2678, 5, 76, 0, 0, 2678, 486, 1, 0, 0, 0, 2679, 2680, 5, 69, 0, 0, 2680, 2681, 5, 88, 0, 0, 2681, 2682, 5, 84, 0, 0, 2682, 2683, 5, 82, 0, 0, 2683, 2684, 5, 65, 0, 0, 2684, 2685, 5, 67, 0, 0, 2685, 2686, 5, 84, 0, 0, 2686, 488, 1, 0, 0, 0, 2687, 2688, 5, 70, 0, 0, 2688, 2689, 5, 65, 0, 0, 2689, 2690, 5, 76, 0, 0, 2690, 2691, 5, 83, 0, 0, 2691, 2692, 5, 69, 0, 0, 2692, 490, 1, 0, 0, 0, 2693, 2694, 5, 70, 0, 0, 2694, 2695, 5, 76, 0, 0, 2695, 2696, 5, 79, 0, 0, 2696, 2697, 5, 65, 0, 0, 2697, 2698, 5, 84, 0, 0, 2698, 492, 1, 0, 0, 0, 2699, 2700, 5, 70, 0, 0, 2700, 2701, 5, 79, 0, 0, 2701, 2702, 5, 82, 0, 0, 2702, 494, 1, 0, 0, 0, 2703, 2704, 5, 70, 0, 0, 2704, 2705, 5, 82, 0, 0, 2705, 2706, 5, 79, 0, 0, 2706, 2707, 5, 77, 0, 0, 2707, 496, 1, 0, 0, 0, 2708, 2709, 5, 70, 0, 0, 2709, 2710, 5, 85, 0, 0, 2710, 2711, 5, 76, 0, 0, 2711, 2712, 5, 76, 0, 0, 2712, 498, 1, 0, 0, 0, 2713, 2714, 5, 70, 0, 0, 2714, 2715, 5, 85, 0, 0, 2715, 2716, 5, 78, 0, 0, 2716, 2717, 5, 67, 0, 0, 2717, 2718, 5, 84, 0, 0, 2718, 2719, 5, 73, 0, 0, 2719, 2720, 5, 79, 0, 0, 2720, 2721, 5, 78, 0, 0, 2721, 500, 1, 0, 0, 0, 2722, 2723, 5, 71, 0, 0, 2723, 2724, 5, 76, 0, 0, 2724, 2725, 5, 79, 0, 0, 2725, 2726, 5, 66, 0, 0, 2726, 2727, 5, 65, 0, 0, 2727, 2728, 5, 76, 0, 0, 2728, 502, 1, 0, 0, 0, 2729, 2730, 5, 71, 0, 0, 2730, 2731, 5, 82, 0, 0, 2731, 2732, 5, 65, 0, 0, 2732, 2733, 5, 78, 0, 0, 2733, 2734, 5, 84, 0, 0, 2734, 504, 1, 0, 0, 0, 2735, 2736, 5, 71, 0, 0, 2736, 2737, 5, 82, 0, 0, 2737, 2738, 5, 79, 0, 0, 2738, 2739, 5, 85, 0, 0, 2739, 2740, 5, 80, 0, 0, 2740, 506, 1, 0, 0, 0, 2741, 2742, 5, 71, 0, 0, 2742, 2743, 5, 82, 0, 0, 2743, 2744, 5, 79, 0, 0, 2744, 2745, 5, 85, 0, 0, 2745, 2746, 5, 80, 0, 0, 2746, 2747, 5, 73, 0, 0, 2747, 2748, 5, 78, 0, 0, 2748, 2749, 5, 71, 0, 0, 2749, 508, 1, 0, 0, 0, 2750, 2751, 5, 71, 0, 0, 2751, 2752, 5, 82, 0, 0, 2752, 2753, 5, 79, 0, 0, 2753, 2754, 5, 85, 0, 0, 2754, 2755, 5, 80, 0, 0, 2755, 2756, 5, 83, 0, 0, 2756, 510, 1, 0, 0, 0, 2757, 2758, 5, 72, 0, 0, 2758, 2759, 5, 65, 0, 0, 2759, 2760, 5, 86, 0, 0, 2760, 2761, 5, 73, 0, 0, 2761, 2762, 5, 78, 0, 0, 2762, 2763, 5, 71, 0, 0, 2763, 512, 1, 0, 0, 0, 2764, 2765, 5, 72, 0, 0, 2765, 2766, 5, 79, 0, 0, 2766, 2767, 5, 85, 0, 0, 2767, 2768, 5, 82, 0, 0, 2768, 514, 1, 0, 0, 0, 2769, 2770, 5, 73, 0, 0, 2770, 2771, 5, 77, 0, 0, 2771, 2772, 5, 80, 0, 0, 2772, 2773, 5, 79, 0, 0, 2773, 2774, 5, 82, 0, 0, 2774, 2775, 5, 84, 0, 0, 2775, 516, 1, 0, 0, 0, 2776, 2777, 5, 73, 0, 0, 2777, 2778, 5, 78, 0, 0, 2778, 518, 1, 0, 0, 0, 2779, 2780, 5, 73, 0, 0, 2780, 2781, 5, 78, 0, 0, 2781, 2782, 5, 67, 0, 0, 2782, 2783, 5, 76, 0, 0, 2783, 2784, 5, 85, 0, 0, 2784, 2785, 5, 68, 0, 0, 2785, 2786, 5, 73, 0, 0, 2786, 2787, 5, 78, 0, 0, 2787, 2788, 5, 71, 0, 0, 2788, 520, 1, 0, 0, 0, 2789, 2790, 5, 73, 0, 0, 2790, 2791, 5, 78, 0, 0, 2791, 2792, 5, 78, 0, 0, 2792, 2793, 5, 69, 0, 0, 2793, 2794, 5, 82, 0, 0, 2794, 522, 1, 0, 0, 0, 2795, 2796, 5, 73, 0, 0, 2796, 2797, 5, 78, 0, 0, 2797, 2798, 5, 79, 0, 0, 2798, 2799, 5, 85, 0, 0, 2799, 2800, 5, 84, 0, 0, 2800, 524, 1, 0, 0, 0, 2801, 2802, 5, 73, 0, 0, 2802, 2803, 5, 78, 0, 0, 2803, 2804, 5, 83, 0, 0, 2804, 2805, 5, 69, 0, 0, 2805, 2806, 5, 82, 0, 0, 2806, 2807, 5, 84, 0, 0, 2807, 526, 1, 0, 0, 0, 2808, 2809, 5, 73, 0, 0, 2809, 2810, 5, 78, 0, 0, 2810, 2811, 5, 84, 0, 0, 2811, 528, 1, 0, 0, 0, 2812, 2813, 5, 73, 0, 0, 2813, 2814, 5, 78, 0, 0, 2814, 2815, 5, 84, 0, 0, 2815, 2816, 5, 69, 0, 0, 2816, 2817, 5, 71, 0, 0, 2817, 2818, 5, 69, 0, 0, 2818, 2819, 5, 82, 0, 0, 2819, 530, 1, 0, 0, 0, 2820, 2821, 5, 73, 0, 0, 2821, 2822, 5, 78, 0, 0, 2822, 2823, 5, 84, 0, 0, 2823, 2824, 5, 69, 0, 0, 2824, 2825, 5, 82, 0, 0, 2825, 2826, 5, 83, 0, 0, 2826, 2827, 5, 69, 0, 0, 2827, 2828, 5, 67, 0, 0, 2828, 2829, 5, 84, 0, 0, 2829, 532, 1, 0, 0, 0, 2830, 2831, 5, 73, 0, 0, 2831, 2832, 5, 78, 0, 0, 2832, 2833, 5, 84, 0, 0, 2833, 2834, 5, 69, 0, 0, 2834, 2835, 5, 82, 0, 0, 2835, 2836, 5, 86, 0, 0, 2836, 2837, 5, 65, 0, 0, 2837, 2838, 5, 76, 0, 0, 2838, 534, 1, 0, 0, 0, 2839, 2840, 5, 73, 0, 0, 2840, 2841, 5, 78, 0, 0, 2841, 2842, 5, 84, 0, 0, 2842, 2843, 5, 79, 0, 0, 2843, 536, 1, 0, 0, 0, 2844, 2845, 5, 73, 0, 0, 2845, 2846, 5, 83, 0, 0, 2846, 538, 1, 0, 0, 0, 2847, 2848, 5, 74, 0, 0, 2848, 2849, 5, 79, 0, 0, 2849, 2850, 5, 73, 0, 0, 2850, 2851, 5, 78, 0, 0, 2851, 540, 1, 0, 0, 0, 2852, 2853, 5, 76, 0, 0, 2853, 2854, 5, 65, 0, 0, 2854, 2855, 5, 71, 0, 0, 2855, 542, 1, 0, 0, 0, 2856, 2857, 5, 76, 0, 0, 2857, 2858, 5, 65, 0, 0, 2858, 2859, 5, 78, 0, 0, 2859, 2860, 5, 71, 0, 0, 2860, 2861, 5, 85, 0, 0, 2861, 2862, 5, 65, 0, 0, 2862, 2863, 5, 71, 0, 0, 2863, 2864, 5, 69, 0, 0, 2864, 544, 1, 0, 0, 0, 2865, 2866, 5, 76, 0, 0, 2866, 2867, 5, 65, 0, 0, 2867, 2868, 5, 84, 0, 0, 2868, 2869, 5, 69, 0, 0, 2869, 2870, 5, 82, 0, 0, 2870, 2871, 5, 65, 0, 0, 2871, 2872, 5, 76, 0, 0, 2872, 546, 1, 0, 0, 0, 2873, 2874, 5, 76, 0, 0, 2874, 2875, 5, 69, 0, 0, 2875, 2876, 5, 65, 0, 0, 2876, 2877, 5, 68, 0, 0, 2877, 2878, 5, 73, 0, 0, 2878, 2879, 5, 78, 0, 0, 2879, 2880, 5, 71, 0, 0, 2880, 548, 1, 0, 0, 0, 2881, 2882, 5, 76, 0, 0, 2882, 2883, 5, 69, 0, 0, 2883, 2884, 5, 70, 0, 0, 2884, 2885, 5, 84, 0, 0, 2885, 550, 1, 0, 0, 0, 2886, 2887, 5, 76, 0, 0, 2887, 2888, 5, 73, 0, 0, 2888, 2889, 5, 75, 0, 0, 2889, 2890, 5, 69, 0, 0, 2890, 552, 1, 0, 0, 0, 2891, 2892, 5, 76, 0, 0, 2892, 2893, 5, 73, 0, 0, 2893, 2894, 5, 77, 0, 0, 2894, 2895, 5, 73, 0, 0, 2895, 2896, 5, 84, 0, 0, 2896, 554, 1, 0, 0, 0, 2897, 2898, 5, 76, 0, 0, 2898, 2899, 5, 79, 0, 0, 2899, 2900, 5, 67, 0, 0, 2900, 2901, 5, 65, 0, 0, 2901, 2902, 5, 76, 0, 0, 2902, 556, 1, 0, 0, 0, 2903, 2904, 5, 77, 0, 0, 2904, 2905, 5, 65, 0, 0, 2905, 2906, 5, 84, 0, 0, 2906, 2907, 5, 67, 0, 0, 2907, 2908, 5, 72, 0, 0, 2908, 558, 1, 0, 0, 0, 2909, 2910, 5, 77, 0, 0, 2910, 2911, 5, 65, 0, 0, 2911, 2912, 5, 84, 0, 0, 2912, 2913, 5, 67, 0, 0, 2913, 2914, 5, 72, 0, 0, 2914, 2915, 5, 95, 0, 0, 2915, 2916, 5, 82, 0, 0, 2916, 2917, 5, 69, 0, 0, 2917, 2918, 5, 67, 0, 0, 2918, 2919, 5, 79, 0, 0, 2919, 2920, 5, 71, 0, 0, 2920, 2921, 5, 78, 0, 0, 2921, 2922, 5, 73, 0, 0, 2922, 2923, 5, 90, 0, 0, 2923, 2924, 5, 69, 0, 0, 2924, 560, 1, 0, 0, 0, 2925, 2926, 5, 77, 0, 0, 2926, 2927, 5, 69, 0, 0, 2927, 2928, 5, 65, 0, 0, 2928, 2929, 5, 83, 0, 0, 2929, 2930, 5, 85, 0, 0, 2930, 2931, 5, 82, 0, 0, 2931, 2932, 5, 69, 0, 0, 2932, 2933, 5, 83, 0, 0, 2933, 562, 1, 0, 0, 0, 2934, 2935, 5, 77, 0, 0, 2935, 2936, 5, 69, 0, 0, 2936, 2937, 5, 82, 0, 0, 2937, 2938, 5, 71, 0, 0, 2938, 2939, 5, 69, 0, 0, 2939, 564, 1, 0, 0, 0, 2940, 2941, 5, 77, 0, 0, 2941, 2942, 5, 69, 0, 0, 2942, 2943, 5, 84, 0, 0, 2943, 2944, 5, 65, 0, 0, 2944, 2945, 5, 68, 0, 0, 2945, 2946, 5, 65, 0, 0, 2946, 2947, 5, 84, 0, 0, 2947, 2948, 5, 65, 0, 0, 2948, 566, 1, 0, 0, 0, 2949, 2950, 5, 77, 0, 0, 2950, 2951, 5, 73, 0, 0, 2951, 2952, 5, 78, 0, 0, 2952, 2953, 5, 85, 0, 0, 2953, 2954, 5, 83, 0, 0, 2954, 568, 1, 0, 0, 0, 2955, 2956, 5, 77, 0, 0, 2956, 2957, 5, 73, 0, 0, 2957, 2958, 5, 78, 0, 0, 2958, 2959, 5, 85, 0, 0, 2959, 2960, 5, 84, 0, 0, 2960, 2961, 5, 69, 0, 0, 2961, 570, 1, 0, 0, 0, 2962, 2963, 5, 77, 0, 0, 2963, 2964, 5, 79, 0, 0, 2964, 2965, 5, 68, 0, 0, 2965, 2966, 5, 73, 0, 0, 2966, 2967, 5, 70, 0, 0, 2967, 2968, 5, 73, 0, 0, 2968, 2969, 5, 69, 0, 0, 2969, 2970, 5, 83, 0, 0, 2970, 572, 1, 0, 0, 0, 2971, 2972, 5, 77, 0, 0, 2972, 2973, 5, 79, 0, 0, 2973, 2974, 5, 68, 0, 0, 2974, 2975, 5, 85, 0, 0, 2975, 2976, 5, 76, 0, 0, 2976, 2977, 5, 69, 0, 0, 2977, 574, 1, 0, 0, 0, 2978, 2979, 5, 77, 0, 0, 2979, 2980, 5, 79, 0, 0, 2980, 2981, 5, 78, 0, 0, 2981, 2982, 5, 84, 0, 0, 2982, 2983, 5, 72, 0, 0, 2983, 576, 1, 0, 0, 0, 2984, 2985, 5, 77, 0, 0, 2985, 2986, 5, 85, 0, 0, 2986, 2987, 5, 76, 0, 0, 2987, 2988, 5, 84, 0, 0, 2988, 2989, 5, 73, 0, 0, 2989, 2990, 5, 83, 0, 0, 2990, 2991, 5, 69, 0, 0, 2991, 2992, 5, 84, 0, 0, 2992, 578, 1, 0, 0, 0, 2993, 2994, 5, 78, 0, 0, 2994, 2995, 5, 65, 0, 0, 2995, 2996, 5, 84, 0, 0, 2996, 2997, 5, 85, 0, 0, 2997, 2998, 5, 82, 0, 0, 2998, 2999, 5, 65, 0, 0, 2999, 3000, 5, 76, 0, 0, 3000, 580, 1, 0, 0, 0, 3001, 3002, 5, 78, 0, 0, 3002, 3003, 5, 69, 0, 0, 3003, 3004, 5, 88, 0, 0, 3004, 3005, 5, 84, 0, 0, 3005, 582, 1, 0, 0, 0, 3006, 3007, 5, 78, 0, 0, 3007, 3008, 5, 79, 0, 0, 3008, 584, 1, 0, 0, 0, 3009, 3010, 5, 78, 0, 0, 3010, 3011, 5, 79, 0, 0, 3011, 3012, 5, 78, 0, 0, 3012, 3013, 5, 69, 0, 0, 3013, 586, 1, 0, 0, 0, 3014, 3015, 5, 78, 0, 0, 3015, 3016, 5, 79, 0, 0, 3016, 3017, 5, 84, 0, 0, 3017, 588, 1, 0, 0, 0, 3018, 3019, 5, 78, 0, 0, 3019, 3020, 5, 85, 0, 0, 3020, 3021, 5, 76, 0, 0, 3021, 3022, 5, 76, 0, 0, 3022, 590, 1, 0, 0, 0, 3023, 3024, 5, 78, 0, 0, 3024, 3025, 5, 85, 0, 0, 3025, 3026, 5, 77, 0, 0, 3026, 3027, 5, 69, 0, 0, 3027, 3028, 5, 82, 0, 0, 3028, 3029, 5, 73, 0, 0, 3029, 3030, 5, 67, 0, 0, 3030, 592, 1, 0, 0, 0, 3031, 3032, 5, 79, 0, 0, 3032, 3033, 5, 70, 0, 0, 3033, 594, 1, 0, 0, 0, 3034, 3035, 5, 79, 0, 0, 3035, 3036, 5, 70, 0, 0, 3036, 3037, 5, 70, 0, 0, 3037, 3038, 5, 83, 0, 0, 3038, 3039, 5, 69, 0, 0, 3039, 3040, 5, 84, 0, 0, 3040, 596, 1, 0, 0, 0, 3041, 3042, 5, 79, 0, 0, 3042, 3043, 5, 78, 0, 0, 3043, 598, 1, 0, 0, 0, 3044, 3045, 5, 79, 0, 0, 3045, 3046, 5, 78, 0, 0, 3046, 3047, 5, 69, 0, 0, 3047, 600, 1, 0, 0, 0, 3048, 3049, 5, 79, 0, 0, 3049, 3050, 5, 82, 0, 0, 3050, 602, 1, 0, 0, 0, 3051, 3052, 5, 79, 0, 0, 3052, 3053, 5, 82, 0, 0, 3053, 3054, 5, 68, 0, 0, 3054, 3055, 5, 69, 0, 0, 3055, 3056, 5, 82, 0, 0, 3056, 604, 1, 0, 0, 0, 3057, 3058, 5, 79, 0, 0, 3058, 3059, 5, 85, 0, 0, 3059, 3060, 5, 84, 0, 0, 3060, 606, 1, 0, 0, 0, 3061, 3062, 5, 79, 0, 0, 3062, 3063, 5, 85, 0, 0, 3063, 3064, 5, 84, 0, 0, 3064, 3065, 5, 69, 0, 0, 3065, 3066, 5, 82, 0, 0, 3066, 608, 1, 0, 0, 0, 3067, 3068, 5, 79, 0, 0, 3068, 3069, 5, 86, 0, 0, 3069, 3070, 5, 69, 0, 0, 3070, 3071, 5, 82, 0, 0, 3071, 610, 1, 0, 0, 0, 3072, 3073, 5, 79, 0, 0, 3073, 3074, 5, 86, 0, 0, 3074, 3075, 5, 69, 0, 0, 3075, 3076, 5, 82, 0, 0, 3076, 3077, 5, 76, 0, 0, 3077, 3078, 5, 65, 0, 0, 3078, 3079, 5, 89, 0, 0, 3079, 612, 1, 0, 0, 0, 3080, 3081, 5, 80, 0, 0, 3081, 3082, 5, 65, 0, 0, 3082, 3083, 5, 82, 0, 0, 3083, 3084, 5, 84, 0, 0, 3084, 3085, 5, 73, 0, 0, 3085, 3086, 5, 84, 0, 0, 3086, 3087, 5, 73, 0, 0, 3087, 3088, 5, 79, 0, 0, 3088, 3089, 5, 78, 0, 0, 3089, 614, 1, 0, 0, 0, 3090, 3091, 5, 80, 0, 0, 3091, 3092, 5, 65, 0, 0, 3092, 3093, 5, 84, 0, 0, 3093, 3094, 5, 84, 0, 0, 3094, 3095, 5, 69, 0, 0, 3095, 3096, 5, 82, 0, 0, 3096, 3097, 5, 78, 0, 0, 3097, 616, 1, 0, 0, 0, 3098, 3099, 5, 80, 0, 0, 3099, 3100, 5, 69, 0, 0, 3100, 3101, 5, 82, 0, 0, 3101, 618, 1, 0, 0, 0, 3102, 3103, 5, 80, 0, 0, 3103, 3104, 5, 69, 0, 0, 3104, 3105, 5, 82, 0, 0, 3105, 3106, 5, 67, 0, 0, 3106, 3107, 5, 69, 0, 0, 3107, 3108, 5, 78, 0, 0, 3108, 3109, 5, 84, 0, 0, 3109, 620, 1, 0, 0, 0, 3110, 3111, 5, 80, 0, 0, 3111, 3112, 5, 69, 0, 0, 3112, 3113, 5, 82, 0, 0, 3113, 3114, 5, 73, 0, 0, 3114, 3115, 5, 79, 0, 0, 3115, 3116, 5, 68, 0, 0, 3116, 622, 1, 0, 0, 0, 3117, 3118, 5, 80, 0, 0, 3118, 3119, 5, 79, 0, 0, 3119, 3120, 5, 83, 0, 0, 3120, 3121, 5, 73, 0, 0, 3121, 3122, 5, 84, 0, 0, 3122, 3123, 5, 73, 0, 0, 3123, 3124, 5, 79, 0, 0, 3124, 3125, 5, 78, 0, 0, 3125, 624, 1, 0, 0, 0, 3126, 3127, 5, 80, 0, 0, 3127, 3128, 5, 82, 0, 0, 3128, 3129, 5, 73, 0, 0, 3129, 3130, 5, 77, 0, 0, 3130, 3131, 5, 65, 0, 0, 3131, 3132, 5, 82, 0, 0, 3132, 3133, 5, 89, 0, 0, 3133, 626, 1, 0, 0, 0, 3134, 3135, 5, 82, 0, 0, 3135, 3136, 5, 65, 0, 0, 3136, 3137, 5, 78, 0, 0, 3137, 3138, 5, 71, 0, 0, 3138, 3139, 5, 69, 0, 0, 3139, 628, 1, 0, 0, 0, 3140, 3141, 5, 82, 0, 0, 3141, 3142, 5, 65, 0, 0, 3142, 3143, 5, 78, 0, 0, 3143, 3144, 5, 75, 0, 0, 3144, 630, 1, 0, 0, 0, 3145, 3146, 5, 82, 0, 0, 3146, 3147, 5, 69, 0, 0, 3147, 3148, 5, 83, 0, 0, 3148, 3149, 5, 69, 0, 0, 3149, 3150, 5, 84, 0, 0, 3150, 632, 1, 0, 0, 0, 3151, 3152, 5, 82, 0, 0, 3152, 3153, 5, 69, 0, 0, 3153, 3154, 5, 86, 0, 0, 3154, 3155, 5, 79, 0, 0, 3155, 3156, 5, 75, 0, 0, 3156, 3157, 5, 69, 0, 0, 3157, 634, 1, 0, 0, 0, 3158, 3159, 5, 82, 0, 0, 3159, 3160, 5, 73, 0, 0, 3160, 3161, 5, 71, 0, 0, 3161, 3162, 5, 72, 0, 0, 3162, 3163, 5, 84, 0, 0, 3163, 636, 1, 0, 0, 0, 3164, 3165, 5, 82, 0, 0, 3165, 3166, 5, 76, 0, 0, 3166, 3167, 5, 73, 0, 0, 3167, 3168, 5, 75, 0, 0, 3168, 3169, 5, 69, 0, 0, 3169, 638, 1, 0, 0, 0, 3170, 3171, 5, 82, 0, 0, 3171, 3172, 5, 79, 0, 0, 3172, 3173, 5, 76, 0, 0, 3173, 3174, 5, 76, 0, 0, 3174, 3175, 5, 66, 0, 0, 3175, 3176, 5, 65, 0, 0, 3176, 3177, 5, 67, 0, 0, 3177, 3178, 5, 75, 0, 0, 3178, 640, 1, 0, 0, 0, 3179, 3180, 5, 82, 0, 0, 3180, 3181, 5, 79, 0, 0, 3181, 3182, 5, 76, 0, 0, 3182, 3183, 5, 76, 0, 0, 3183, 3184, 5, 85, 0, 0, 3184, 3185, 5, 80, 0, 0, 3185, 642, 1, 0, 0, 0, 3186, 3187, 5, 82, 0, 0, 3187, 3188, 5, 79, 0, 0, 3188, 3189, 5, 87, 0, 0, 3189, 644, 1, 0, 0, 0, 3190, 3191, 5, 82, 0, 0, 3191, 3192, 5, 79, 0, 0, 3192, 3193, 5, 87, 0, 0, 3193, 3194, 5, 83, 0, 0, 3194, 646, 1, 0, 0, 0, 3195, 3196, 5, 83, 0, 0, 3196, 3197, 5, 69, 0, 0, 3197, 3198, 5, 67, 0, 0, 3198, 3199, 5, 79, 0, 0, 3199, 3200, 5, 78, 0, 0, 3200, 3201, 5, 68, 0, 0, 3201, 648, 1, 0, 0, 0, 3202, 3203, 5, 83, 0, 0, 3203, 3204, 5, 69, 0, 0, 3204, 3205, 5, 76, 0, 0, 3205, 3206, 5, 69, 0, 0, 3206, 3207, 5, 67, 0, 0, 3207, 3208, 5, 84, 0, 0, 3208, 650, 1, 0, 0, 0, 3209, 3210, 5, 83, 0, 0, 3210, 3211, 5, 69, 0, 0, 3211, 3212, 5, 84, 0, 0, 3212, 652, 1, 0, 0, 0, 3213, 3214, 5, 83, 0, 0, 3214, 3215, 5, 72, 0, 0, 3215, 3216, 5, 79, 0, 0, 3216, 3217, 5, 87, 0, 0, 3217, 654, 1, 0, 0, 0, 3218, 3219, 5, 83, 0, 0, 3219, 3220, 5, 75, 0, 0, 3220, 3221, 5, 73, 0, 0, 3221, 3222, 5, 80, 0, 0, 3222, 656, 1, 0, 0, 0, 3223, 3224, 5, 83, 0, 0, 3224, 3225, 5, 77, 0, 0, 3225, 3226, 5, 65, 0, 0, 3226, 3227, 5, 76, 0, 0, 3227, 3228, 5, 76, 0, 0, 3228, 3229, 5, 73, 0, 0, 3229, 3230, 5, 78, 0, 0, 3230, 3231, 5, 84, 0, 0, 3231, 658, 1, 0, 0, 0, 3232, 3233, 5, 83, 0, 0, 3233, 3234, 5, 84, 0, 0, 3234, 3235, 5, 65, 0, 0, 3235, 3236, 5, 82, 0, 0, 3236, 3237, 5, 84, 0, 0, 3237, 660, 1, 0, 0, 0, 3238, 3239, 5, 83, 0, 0, 3239, 3240, 5, 84, 0, 0, 3240, 3241, 5, 65, 0, 0, 3241, 3242, 5, 84, 0, 0, 3242, 3243, 5, 73, 0, 0, 3243, 3244, 5, 67, 0, 0, 3244, 662, 1, 0, 0, 0, 3245, 3246, 5, 83, 0, 0, 3246, 3247, 5, 85, 0, 0, 3247, 3248, 5, 66, 0, 0, 3248, 3249, 5, 83, 0, 0, 3249, 3250, 5, 84, 0, 0, 3250, 3251, 5, 82, 0, 0, 3251, 3252, 5, 73, 0, 0, 3252, 3253, 5, 78, 0, 0, 3253, 3254, 5, 71, 0, 0, 3254, 664, 1, 0, 0, 0, 3255, 3256, 5, 83, 0, 0, 3256, 3257, 5, 85, 0, 0, 3257, 3258, 5, 77, 0, 0, 3258, 666, 1, 0, 0, 0, 3259, 3260, 5, 83, 0, 0, 3260, 3261, 5, 89, 0, 0, 3261, 3262, 5, 83, 0, 0, 3262, 3263, 5, 84, 0, 0, 3263, 3264, 5, 69, 0, 0, 3264, 3265, 5, 77, 0, 0, 3265, 668, 1, 0, 0, 0, 3266, 3267, 5, 83, 0, 0, 3267, 3268, 5, 89, 0, 0, 3268, 3269, 5, 83, 0, 0, 3269, 3270, 5, 84, 0, 0, 3270, 3271, 5, 69, 0, 0, 3271, 3272, 5, 77, 0, 0, 3272, 3273, 5, 95, 0, 0, 3273, 3274, 5, 84, 0, 0, 3274, 3275, 5, 73, 0, 0, 3275, 3276, 5, 77, 0, 0, 3276, 3277, 5, 69, 0, 0, 3277, 670, 1, 0, 0, 0, 3278, 3279, 5, 83, 0, 0, 3279, 3280, 5, 89, 0, 0, 3280, 3281, 5, 83, 0, 0, 3281, 3282, 5, 84, 0, 0, 3282, 3283, 5, 69, 0, 0, 3283, 3284, 5, 77, 0, 0, 3284, 3285, 5, 95, 0, 0, 3285, 3286, 5, 85, 0, 0, 3286, 3287, 5, 83, 0, 0, 3287, 3288, 5, 69, 0, 0, 3288, 3289, 5, 82, 0, 0, 3289, 672, 1, 0, 0, 0, 3290, 3291, 5, 84, 0, 0, 3291, 3292, 5, 65, 0, 0, 3292, 3293, 5, 66, 0, 0, 3293, 3294, 5, 76, 0, 0, 3294, 3295, 5, 69, 0, 0, 3295, 674, 1, 0, 0, 0, 3296, 3297, 5, 84, 0, 0, 3297, 3298, 5, 65, 0, 0, 3298, 3299, 5, 66, 0, 0, 3299, 3300, 5, 76, 0, 0, 3300, 3301, 5, 69, 0, 0, 3301, 3302, 5, 83, 0, 0, 3302, 3303, 5, 65, 0, 0, 3303, 3304, 5, 77, 0, 0, 3304, 3305, 5, 80, 0, 0, 3305, 3306, 5, 76, 0, 0, 3306, 3307, 5, 69, 0, 0, 3307, 676, 1, 0, 0, 0, 3308, 3309, 5, 84, 0, 0, 3309, 3310, 5, 72, 0, 0, 3310, 3311, 5, 69, 0, 0, 3311, 3312, 5, 78, 0, 0, 3312, 678, 1, 0, 0, 0, 3313, 3314, 5, 84, 0, 0, 3314, 3315, 5, 73, 0, 0, 3315, 3316, 5, 77, 0, 0, 3316, 3317, 5, 69, 0, 0, 3317, 680, 1, 0, 0, 0, 3318, 3319, 5, 84, 0, 0, 3319, 3320, 5, 73, 0, 0, 3320, 3321, 5, 77, 0, 0, 3321, 3322, 5, 69, 0, 0, 3322, 3323, 5, 83, 0, 0, 3323, 3324, 5, 84, 0, 0, 3324, 3325, 5, 65, 0, 0, 3325, 3326, 5, 77, 0, 0, 3326, 3327, 5, 80, 0, 0, 3327, 682, 1, 0, 0, 0, 3328, 3329, 5, 84, 0, 0, 3329, 3330, 5, 73, 0, 0, 3330, 3331, 5, 78, 0, 0, 3331, 3332, 5, 89, 0, 0, 3332, 3333, 5, 73, 0, 0, 3333, 3334, 5, 78, 0, 0, 3334, 3335, 5, 84, 0, 0, 3335, 684, 1, 0, 0, 0, 3336, 3337, 5, 84, 0, 0, 3337, 3338, 5, 79, 0, 0, 3338, 686, 1, 0, 0, 0, 3339, 3340, 5, 84, 0, 0, 3340, 3341, 5, 82, 0, 0, 3341, 3342, 5, 85, 0, 0, 3342, 3343, 5, 69, 0, 0, 3343, 688, 1, 0, 0, 0, 3344, 3345, 5, 84, 0, 0, 3345, 3346, 5, 82, 0, 0, 3346, 3347, 5, 85, 0, 0, 3347, 3348, 5, 78, 0, 0, 3348, 3349, 5, 67, 0, 0, 3349, 3350, 5, 65, 0, 0, 3350, 3351, 5, 84, 0, 0, 3351, 3352, 5, 69, 0, 0, 3352, 690, 1, 0, 0, 0, 3353, 3354, 5, 85, 0, 0, 3354, 3355, 5, 78, 0, 0, 3355, 3356, 5, 73, 0, 0, 3356, 3357, 5, 79, 0, 0, 3357, 3358, 5, 78, 0, 0, 3358, 692, 1, 0, 0, 0, 3359, 3360, 5, 85, 0, 0, 3360, 3361, 5, 78, 0, 0, 3361, 3362, 5, 73, 0, 0, 3362, 3363, 5, 81, 0, 0, 3363, 3364, 5, 85, 0, 0, 3364, 3365, 5, 69, 0, 0, 3365, 694, 1, 0, 0, 0, 3366, 3367, 5, 85, 0, 0, 3367, 3368, 5, 78, 0, 0, 3368, 3369, 5, 75, 0, 0, 3369, 3370, 5, 78, 0, 0, 3370, 3371, 5, 79, 0, 0, 3371, 3372, 5, 87, 0, 0, 3372, 3373, 5, 78, 0, 0, 3373, 696, 1, 0, 0, 0, 3374, 3375, 5, 85, 0, 0, 3375, 3376, 5, 78, 0, 0, 3376, 3377, 5, 78, 0, 0, 3377, 3378, 5, 69, 0, 0, 3378, 3379, 5, 83, 0, 0, 3379, 3380, 5, 84, 0, 0, 3380, 698, 1, 0, 0, 0, 3381, 3382, 5, 85, 0, 0, 3382, 3383, 5, 80, 0, 0, 3383, 3384, 5, 80, 0, 0, 3384, 3385, 5, 69, 0, 0, 3385, 3386, 5, 82, 0, 0, 3386, 700, 1, 0, 0, 0, 3387, 3388, 5, 85, 0, 0, 3388, 3389, 5, 80, 0, 0, 3389, 3390, 5, 83, 0, 0, 3390, 3391, 5, 69, 0, 0, 3391, 3392, 5, 82, 0, 0, 3392, 3393, 5, 84, 0, 0, 3393, 702, 1, 0, 0, 0, 3394, 3395, 5, 85, 0, 0, 3395, 3396, 5, 83, 0, 0, 3396, 3397, 5, 69, 0, 0, 3397, 3398, 5, 82, 0, 0, 3398, 704, 1, 0, 0, 0, 3399, 3400, 5, 85, 0, 0, 3400, 3401, 5, 83, 0, 0, 3401, 3402, 5, 73, 0, 0, 3402, 3403, 5, 78, 0, 0, 3403, 3404, 5, 71, 0, 0, 3404, 706, 1, 0, 0, 0, 3405, 3406, 5, 86, 0, 0, 3406, 3407, 5, 65, 0, 0, 3407, 3408, 5, 76, 0, 0, 3408, 3409, 5, 85, 0, 0, 3409, 3410, 5, 69, 0, 0, 3410, 708, 1, 0, 0, 0, 3411, 3412, 5, 86, 0, 0, 3412, 3413, 5, 65, 0, 0, 3413, 3414, 5, 76, 0, 0, 3414, 3415, 5, 85, 0, 0, 3415, 3416, 5, 69, 0, 0, 3416, 3417, 5, 83, 0, 0, 3417, 710, 1, 0, 0, 0, 3418, 3419, 5, 86, 0, 0, 3419, 3420, 5, 65, 0, 0, 3420, 3421, 5, 82, 0, 0, 3421, 3422, 5, 66, 0, 0, 3422, 3423, 5, 73, 0, 0, 3423, 3424, 5, 78, 0, 0, 3424, 3425, 5, 65, 0, 0, 3425, 3426, 5, 82, 0, 0, 3426, 3427, 5, 89, 0, 0, 3427, 712, 1, 0, 0, 0, 3428, 3429, 5, 86, 0, 0, 3429, 3430, 5, 65, 0, 0, 3430, 3431, 5, 82, 0, 0, 3431, 3432, 5, 67, 0, 0, 3432, 3433, 5, 72, 0, 0, 3433, 3434, 5, 65, 0, 0, 3434, 3435, 5, 82, 0, 0, 3435, 714, 1, 0, 0, 0, 3436, 3437, 5, 87, 0, 0, 3437, 3438, 5, 72, 0, 0, 3438, 3439, 5, 69, 0, 0, 3439, 3440, 5, 78, 0, 0, 3440, 716, 1, 0, 0, 0, 3441, 3442, 5, 87, 0, 0, 3442, 3443, 5, 72, 0, 0, 3443, 3444, 5, 69, 0, 0, 3444, 3445, 5, 82, 0, 0, 3445, 3446, 5, 69, 0, 0, 3446, 718, 1, 0, 0, 0, 3447, 3448, 5, 87, 0, 0, 3448, 3449, 5, 73, 0, 0, 3449, 3450, 5, 78, 0, 0, 3450, 3451, 5, 68, 0, 0, 3451, 3452, 5, 79, 0, 0, 3452, 3453, 5, 87, 0, 0, 3453, 720, 1, 0, 0, 0, 3454, 3455, 5, 87, 0, 0, 3455, 3456, 5, 73, 0, 0, 3456, 3457, 5, 84, 0, 0, 3457, 3458, 5, 72, 0, 0, 3458, 722, 1, 0, 0, 0, 3459, 3460, 5, 87, 0, 0, 3460, 3461, 5, 73, 0, 0, 3461, 3462, 5, 84, 0, 0, 3462, 3463, 5, 72, 0, 0, 3463, 3464, 5, 73, 0, 0, 3464, 3465, 5, 78, 0, 0, 3465, 724, 1, 0, 0, 0, 3466, 3467, 5, 87, 0, 0, 3467, 3468, 5, 73, 0, 0, 3468, 3469, 5, 84, 0, 0, 3469, 3470, 5, 72, 0, 0, 3470, 3471, 5, 79, 0, 0, 3471, 3472, 5, 85, 0, 0, 3472, 3473, 5, 84, 0, 0, 3473, 726, 1, 0, 0, 0, 3474, 3475, 5, 89, 0, 0, 3475, 3476, 5, 69, 0, 0, 3476, 3477, 5, 65, 0, 0, 3477, 3478, 5, 82, 0, 0, 3478, 728, 1, 0, 0, 0, 3479, 3480, 5, 61, 0, 0, 3480, 730, 1, 0, 0, 0, 3481, 3482, 5, 62, 0, 0, 3482, 732, 1, 0, 0, 0, 3483, 3484, 5, 60, 0, 0, 3484, 734, 1, 0, 0, 0, 3485, 3486, 5, 33, 0, 0, 3486, 736, 1, 0, 0, 0, 3487, 3488, 5, 126, 0, 0, 3488, 738, 1, 0, 0, 0, 3489, 3490, 5, 124, 0, 0, 3490, 740, 1, 0, 0, 0, 3491, 3492, 5, 38, 0, 0, 3492, 742, 1, 0, 0, 0, 3493, 3494, 5, 94, 0, 0, 3494, 744, 1, 0, 0, 0, 3495, 3496, 5, 46, 0, 0, 3496, 746, 1, 0, 0, 0, 3497, 3498, 5, 91, 0, 0, 3498, 748, 1, 0, 0, 0, 3499, 3500, 5, 93, 0, 0, 3500, 750, 1, 0, 0, 0, 3501, 3502, 5, 40, 0, 0, 3502, 752, 1, 0, 0, 0, 3503, 3504, 5, 41, 0, 0, 3504, 754, 1, 0, 0, 0, 3505, 3506, 5, 123, 0, 0, 3506, 756, 1, 0, 0, 0, 3507, 3508, 5, 125, 0, 0, 3508, 758, 1, 0, 0, 0, 3509, 3510, 5, 44, 0, 0, 3510, 760, 1, 0, 0, 0, 3511, 3512, 5, 59, 0, 0, 3512, 762, 1, 0, 0, 0, 3513, 3514, 5, 64, 0, 0, 3514, 764, 1, 0, 0, 0, 3515, 3516, 5, 39, 0, 0, 3516, 766, 1, 0, 0, 0, 3517, 3518, 5, 34, 0, 0, 3518, 768, 1, 0, 0, 0, 3519, 3520, 5, 96, 0, 0, 3520, 770, 1, 0, 0, 0, 3521, 3522, 5, 58, 0, 0, 3522, 772, 1, 0, 0, 0, 3523, 3524, 5, 42, 0, 0, 3524, 774, 1, 0, 0, 0, 3525, 3526, 5, 95, 0, 0, 3526, 776, 1, 0, 0, 0, 3527, 3528, 5, 45, 0, 0, 3528, 778, 1, 0, 0, 0, 3529, 3530, 5, 43, 0, 0, 3530, 780, 1, 0, 0, 0, 3531, 3532, 5, 37, 0, 0, 3532, 782, 1, 0, 0, 0, 3533, 3534, 5, 124, 0, 0, 3534, 3535, 5, 124, 0, 0, 3535, 784, 1, 0, 0, 0, 3536, 3537, 5, 45, 0, 0, 3537, 3538, 5, 45, 0, 0, 3538, 786, 1, 0, 0, 0, 3539, 3540, 5, 47, 0, 0, 3540, 788, 1, 0, 0, 0, 3541, 3542, 5, 63, 0, 0, 3542, 790, 1, 0, 0, 0, 3543, 3544, 5, 61, 0, 0, 3544, 3545, 5, 62, 0, 0, 3545, 792, 1, 0, 0, 0, 3546, 3550, 3, 817, 408, 0, 3547, 3550, 3, 819, 409, 0, 3548, 3550, 3, 823, 411, 0, 3549, 3546, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3548, 1, 0, 0, 0, 3550, 794, 1, 0, 0, 0, 3551, 3553, 3, 813, 406, 0, 3552, 3551, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 796, 1, 0, 0, 0, 3556, 3558, 3, 813, 406, 0, 3557, 3556, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3562, 1, 0, 0, 0, 3561, 3557, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, 5, 46, 0, 0, 3564, 3566, 3, 813, 406, 0, 3565, 3564, 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 3565, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3600, 1, 0, 0, 0, 3569, 3571, 3, 813, 406, 0, 3570, 3569, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3570, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3575, 5, 46, 0, 0, 3575, 3576, 3, 809, 404, 0, 3576, 3600, 1, 0, 0, 0, 3577, 3579, 3, 813, 406, 0, 3578, 3577, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3578, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3583, 1, 0, 0, 0, 3582, 3578, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 5, 46, 0, 0, 3585, 3587, 3, 813, 406, 0, 3586, 3585, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 3, 809, 404, 0, 3591, 3600, 1, 0, 0, 0, 3592, 3594, 3, 813, 406, 0, 3593, 3592, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3597, 1, 0, 0, 0, 3597, 3598, 3, 809, 404, 0, 3598, 3600, 1, 0, 0, 0, 3599, 3561, 1, 0, 0, 0, 3599, 3570, 1, 0, 0, 0, 3599, 3582, 1, 0, 0, 0, 3599, 3593, 1, 0, 0, 0, 3600, 798, 1, 0, 0, 0, 3601, 3602, 3, 821, 410, 0, 3602, 800, 1, 0, 0, 0, 3603, 3604, 3, 811, 405, 0, 3604, 802, 1, 0, 0, 0, 3605, 3606, 3, 805, 402, 0, 3606, 804, 1, 0, 0, 0, 3607, 3611, 7, 2, 0, 0, 3608, 3610, 8, 3, 0, 0, 3609, 3608, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3607, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3614, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 806, 1, 0, 0, 0, 3618, 3626, 5, 96, 0, 0, 3619, 3620, 5, 92, 0, 0, 3620, 3625, 9, 0, 0, 0, 3621, 3622, 5, 96, 0, 0, 3622, 3625, 5, 96, 0, 0, 3623, 3625, 8, 4, 0, 0, 3624, 3619, 1, 0, 0, 0, 3624, 3621, 1, 0, 0, 0, 3624, 3623, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3624, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3629, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3629, 3630, 5, 96, 0, 0, 3630, 808, 1, 0, 0, 0, 3631, 3633, 5, 69, 0, 0, 3632, 3634, 7, 5, 0, 0, 3633, 3632, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3636, 1, 0, 0, 0, 3635, 3637, 3, 813, 406, 0, 3636, 3635, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3636, 1, 0, 0, 0, 3638, 3639, 1, 0, 0, 0, 3639, 810, 1, 0, 0, 0, 3640, 3642, 7, 6, 0, 0, 3641, 3640, 1, 0, 0, 0, 3642, 3645, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3643, 3641, 1, 0, 0, 0, 3644, 3647, 1, 0, 0, 0, 3645, 3643, 1, 0, 0, 0, 3646, 3648, 7, 7, 0, 0, 3647, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3654, 1, 0, 0, 0, 3651, 3653, 7, 6, 0, 0, 3652, 3651, 1, 0, 0, 0, 3653, 3656, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 812, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 3658, 7, 8, 0, 0, 3658, 814, 1, 0, 0, 0, 3659, 3660, 7, 9, 0, 0, 3660, 816, 1, 0, 0, 0, 3661, 3669, 5, 34, 0, 0, 3662, 3663, 5, 92, 0, 0, 3663, 3668, 9, 0, 0, 0, 3664, 3665, 5, 34, 0, 0, 3665, 3668, 5, 34, 0, 0, 3666, 3668, 8, 10, 0, 0, 3667, 3662, 1, 0, 0, 0, 3667, 3664, 1, 0, 0, 0, 3667, 3666, 1, 0, 0, 0, 3668, 3671, 1, 0, 0, 0, 3669, 3667, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3672, 1, 0, 0, 0, 3671, 3669, 1, 0, 0, 0, 3672, 3673, 5, 34, 0, 0, 3673, 818, 1, 0, 0, 0, 3674, 3682, 5, 39, 0, 0, 3675, 3676, 5, 92, 0, 0, 3676, 3681, 9, 0, 0, 0, 3677, 3678, 5, 39, 0, 0, 3678, 3681, 5, 39, 0, 0, 3679, 3681, 8, 11, 0, 0, 3680, 3675, 1, 0, 0, 0, 3680, 3677, 1, 0, 0, 0, 3680, 3679, 1, 0, 0, 0, 3681, 3684, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3685, 1, 0, 0, 0, 3684, 3682, 1, 0, 0, 0, 3685, 3686, 5, 39, 0, 0, 3686, 820, 1, 0, 0, 0, 3687, 3688, 5, 66, 0, 0, 3688, 3690, 5, 39, 0, 0, 3689, 3691, 7, 12, 0, 0, 3690, 3689, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 5, 39, 0, 0, 3695, 822, 1, 0, 0, 0, 3696, 3704, 5, 96, 0, 0, 3697, 3698, 5, 92, 0, 0, 3698, 3703, 9, 0, 0, 0, 3699, 3700, 5, 96, 0, 0, 3700, 3703, 5, 96, 0, 0, 3701, 3703, 8, 4, 0, 0, 3702, 3697, 1, 0, 0, 0, 3702, 3699, 1, 0, 0, 0, 3702, 3701, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3707, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3707, 3708, 5, 96, 0, 0, 3708, 824, 1, 0, 0, 0, 37, 0, 828, 838, 849, 854, 858, 862, 868, 872, 874, 3549, 3554, 3559, 3561, 3567, 3572, 3580, 3582, 3588, 3595, 3599, 3611, 3616, 3624, 3626, 3633, 3638, 3643, 3649, 3654, 3667, 3669, 3680, 3682, 3692, 3702, 3704, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 407, 3761, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 1, 0, 4, 0, 837, 8, 0, 11, 0, 12, 0, 838, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 847, 8, 1, 10, 1, 12, 1, 850, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 860, 8, 2, 1, 2, 5, 2, 863, 8, 2, 10, 2, 12, 2, 866, 9, 2, 1, 2, 3, 2, 869, 8, 2, 1, 2, 1, 2, 3, 2, 873, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 879, 8, 2, 1, 2, 1, 2, 3, 2, 883, 8, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 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, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 375, 1, 375, 1, 376, 1, 376, 1, 377, 1, 377, 1, 378, 1, 378, 1, 379, 1, 379, 1, 380, 1, 380, 1, 381, 1, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 3, 401, 3602, 8, 401, 1, 402, 4, 402, 3605, 8, 402, 11, 402, 12, 402, 3606, 1, 403, 4, 403, 3610, 8, 403, 11, 403, 12, 403, 3611, 3, 403, 3614, 8, 403, 1, 403, 1, 403, 4, 403, 3618, 8, 403, 11, 403, 12, 403, 3619, 1, 403, 4, 403, 3623, 8, 403, 11, 403, 12, 403, 3624, 1, 403, 1, 403, 1, 403, 1, 403, 4, 403, 3631, 8, 403, 11, 403, 12, 403, 3632, 3, 403, 3635, 8, 403, 1, 403, 1, 403, 4, 403, 3639, 8, 403, 11, 403, 12, 403, 3640, 1, 403, 1, 403, 1, 403, 4, 403, 3646, 8, 403, 11, 403, 12, 403, 3647, 1, 403, 1, 403, 3, 403, 3652, 8, 403, 1, 404, 1, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 407, 1, 407, 5, 407, 3662, 8, 407, 10, 407, 12, 407, 3665, 9, 407, 4, 407, 3667, 8, 407, 11, 407, 12, 407, 3668, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 3677, 8, 408, 10, 408, 12, 408, 3680, 9, 408, 1, 408, 1, 408, 1, 409, 1, 409, 3, 409, 3686, 8, 409, 1, 409, 4, 409, 3689, 8, 409, 11, 409, 12, 409, 3690, 1, 410, 5, 410, 3694, 8, 410, 10, 410, 12, 410, 3697, 9, 410, 1, 410, 4, 410, 3700, 8, 410, 11, 410, 12, 410, 3701, 1, 410, 5, 410, 3705, 8, 410, 10, 410, 12, 410, 3708, 9, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 5, 413, 3720, 8, 413, 10, 413, 12, 413, 3723, 9, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 5, 414, 3733, 8, 414, 10, 414, 12, 414, 3736, 9, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 4, 415, 3743, 8, 415, 11, 415, 12, 415, 3744, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 5, 416, 3755, 8, 416, 10, 416, 12, 416, 3758, 9, 416, 1, 416, 1, 416, 3, 848, 3695, 3701, 0, 417, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 0, 817, 0, 819, 0, 821, 0, 823, 0, 825, 0, 827, 0, 829, 0, 831, 0, 833, 0, 1, 0, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 47, 47, 92, 92, 3, 0, 32, 32, 47, 47, 92, 92, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 3793, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 1, 836, 1, 0, 0, 0, 3, 842, 1, 0, 0, 0, 5, 884, 1, 0, 0, 0, 7, 888, 1, 0, 0, 0, 9, 892, 1, 0, 0, 0, 11, 898, 1, 0, 0, 0, 13, 904, 1, 0, 0, 0, 15, 912, 1, 0, 0, 0, 17, 916, 1, 0, 0, 0, 19, 923, 1, 0, 0, 0, 21, 929, 1, 0, 0, 0, 23, 937, 1, 0, 0, 0, 25, 945, 1, 0, 0, 0, 27, 954, 1, 0, 0, 0, 29, 962, 1, 0, 0, 0, 31, 968, 1, 0, 0, 0, 33, 983, 1, 0, 0, 0, 35, 994, 1, 0, 0, 0, 37, 1002, 1, 0, 0, 0, 39, 1010, 1, 0, 0, 0, 41, 1018, 1, 0, 0, 0, 43, 1030, 1, 0, 0, 0, 45, 1042, 1, 0, 0, 0, 47, 1051, 1, 0, 0, 0, 49, 1056, 1, 0, 0, 0, 51, 1065, 1, 0, 0, 0, 53, 1075, 1, 0, 0, 0, 55, 1080, 1, 0, 0, 0, 57, 1087, 1, 0, 0, 0, 59, 1095, 1, 0, 0, 0, 61, 1100, 1, 0, 0, 0, 63, 1111, 1, 0, 0, 0, 65, 1115, 1, 0, 0, 0, 67, 1124, 1, 0, 0, 0, 69, 1133, 1, 0, 0, 0, 71, 1140, 1, 0, 0, 0, 73, 1146, 1, 0, 0, 0, 75, 1161, 1, 0, 0, 0, 77, 1171, 1, 0, 0, 0, 79, 1179, 1, 0, 0, 0, 81, 1189, 1, 0, 0, 0, 83, 1198, 1, 0, 0, 0, 85, 1203, 1, 0, 0, 0, 87, 1209, 1, 0, 0, 0, 89, 1215, 1, 0, 0, 0, 91, 1225, 1, 0, 0, 0, 93, 1232, 1, 0, 0, 0, 95, 1240, 1, 0, 0, 0, 97, 1246, 1, 0, 0, 0, 99, 1258, 1, 0, 0, 0, 101, 1268, 1, 0, 0, 0, 103, 1276, 1, 0, 0, 0, 105, 1286, 1, 0, 0, 0, 107, 1289, 1, 0, 0, 0, 109, 1294, 1, 0, 0, 0, 111, 1302, 1, 0, 0, 0, 113, 1306, 1, 0, 0, 0, 115, 1312, 1, 0, 0, 0, 117, 1315, 1, 0, 0, 0, 119, 1322, 1, 0, 0, 0, 121, 1332, 1, 0, 0, 0, 123, 1338, 1, 0, 0, 0, 125, 1346, 1, 0, 0, 0, 127, 1350, 1, 0, 0, 0, 129, 1355, 1, 0, 0, 0, 131, 1360, 1, 0, 0, 0, 133, 1365, 1, 0, 0, 0, 135, 1385, 1, 0, 0, 0, 137, 1389, 1, 0, 0, 0, 139, 1400, 1, 0, 0, 0, 141, 1409, 1, 0, 0, 0, 143, 1415, 1, 0, 0, 0, 145, 1420, 1, 0, 0, 0, 147, 1427, 1, 0, 0, 0, 149, 1433, 1, 0, 0, 0, 151, 1438, 1, 0, 0, 0, 153, 1442, 1, 0, 0, 0, 155, 1454, 1, 0, 0, 0, 157, 1465, 1, 0, 0, 0, 159, 1477, 1, 0, 0, 0, 161, 1485, 1, 0, 0, 0, 163, 1494, 1, 0, 0, 0, 165, 1501, 1, 0, 0, 0, 167, 1509, 1, 0, 0, 0, 169, 1516, 1, 0, 0, 0, 171, 1527, 1, 0, 0, 0, 173, 1533, 1, 0, 0, 0, 175, 1540, 1, 0, 0, 0, 177, 1547, 1, 0, 0, 0, 179, 1555, 1, 0, 0, 0, 181, 1564, 1, 0, 0, 0, 183, 1571, 1, 0, 0, 0, 185, 1581, 1, 0, 0, 0, 187, 1593, 1, 0, 0, 0, 189, 1605, 1, 0, 0, 0, 191, 1616, 1, 0, 0, 0, 193, 1624, 1, 0, 0, 0, 195, 1629, 1, 0, 0, 0, 197, 1634, 1, 0, 0, 0, 199, 1642, 1, 0, 0, 0, 201, 1647, 1, 0, 0, 0, 203, 1657, 1, 0, 0, 0, 205, 1666, 1, 0, 0, 0, 207, 1672, 1, 0, 0, 0, 209, 1683, 1, 0, 0, 0, 211, 1690, 1, 0, 0, 0, 213, 1697, 1, 0, 0, 0, 215, 1710, 1, 0, 0, 0, 217, 1730, 1, 0, 0, 0, 219, 1750, 1, 0, 0, 0, 221, 1761, 1, 0, 0, 0, 223, 1777, 1, 0, 0, 0, 225, 1794, 1, 0, 0, 0, 227, 1802, 1, 0, 0, 0, 229, 1806, 1, 0, 0, 0, 231, 1811, 1, 0, 0, 0, 233, 1820, 1, 0, 0, 0, 235, 1827, 1, 0, 0, 0, 237, 1834, 1, 0, 0, 0, 239, 1842, 1, 0, 0, 0, 241, 1850, 1, 0, 0, 0, 243, 1858, 1, 0, 0, 0, 245, 1867, 1, 0, 0, 0, 247, 1872, 1, 0, 0, 0, 249, 1882, 1, 0, 0, 0, 251, 1888, 1, 0, 0, 0, 253, 1895, 1, 0, 0, 0, 255, 1901, 1, 0, 0, 0, 257, 1908, 1, 0, 0, 0, 259, 1916, 1, 0, 0, 0, 261, 1924, 1, 0, 0, 0, 263, 1933, 1, 0, 0, 0, 265, 1938, 1, 0, 0, 0, 267, 1945, 1, 0, 0, 0, 269, 1957, 1, 0, 0, 0, 271, 1965, 1, 0, 0, 0, 273, 1970, 1, 0, 0, 0, 275, 1977, 1, 0, 0, 0, 277, 1982, 1, 0, 0, 0, 279, 1988, 1, 0, 0, 0, 281, 1995, 1, 0, 0, 0, 283, 2001, 1, 0, 0, 0, 285, 2007, 1, 0, 0, 0, 287, 2017, 1, 0, 0, 0, 289, 2022, 1, 0, 0, 0, 291, 2029, 1, 0, 0, 0, 293, 2039, 1, 0, 0, 0, 295, 2045, 1, 0, 0, 0, 297, 2052, 1, 0, 0, 0, 299, 2062, 1, 0, 0, 0, 301, 2070, 1, 0, 0, 0, 303, 2084, 1, 0, 0, 0, 305, 2097, 1, 0, 0, 0, 307, 2111, 1, 0, 0, 0, 309, 2121, 1, 0, 0, 0, 311, 2128, 1, 0, 0, 0, 313, 2133, 1, 0, 0, 0, 315, 2139, 1, 0, 0, 0, 317, 2146, 1, 0, 0, 0, 319, 2152, 1, 0, 0, 0, 321, 2156, 1, 0, 0, 0, 323, 2162, 1, 0, 0, 0, 325, 2168, 1, 0, 0, 0, 327, 2173, 1, 0, 0, 0, 329, 2181, 1, 0, 0, 0, 331, 2186, 1, 0, 0, 0, 333, 2192, 1, 0, 0, 0, 335, 2200, 1, 0, 0, 0, 337, 2210, 1, 0, 0, 0, 339, 2221, 1, 0, 0, 0, 341, 2226, 1, 0, 0, 0, 343, 2231, 1, 0, 0, 0, 345, 2239, 1, 0, 0, 0, 347, 2245, 1, 0, 0, 0, 349, 2250, 1, 0, 0, 0, 351, 2254, 1, 0, 0, 0, 353, 2258, 1, 0, 0, 0, 355, 2264, 1, 0, 0, 0, 357, 2270, 1, 0, 0, 0, 359, 2274, 1, 0, 0, 0, 361, 2278, 1, 0, 0, 0, 363, 2282, 1, 0, 0, 0, 365, 2288, 1, 0, 0, 0, 367, 2291, 1, 0, 0, 0, 369, 2302, 1, 0, 0, 0, 371, 2305, 1, 0, 0, 0, 373, 2309, 1, 0, 0, 0, 375, 2315, 1, 0, 0, 0, 377, 2323, 1, 0, 0, 0, 379, 2330, 1, 0, 0, 0, 381, 2337, 1, 0, 0, 0, 383, 2341, 1, 0, 0, 0, 385, 2346, 1, 0, 0, 0, 387, 2354, 1, 0, 0, 0, 389, 2359, 1, 0, 0, 0, 391, 2362, 1, 0, 0, 0, 393, 2367, 1, 0, 0, 0, 395, 2374, 1, 0, 0, 0, 397, 2383, 1, 0, 0, 0, 399, 2388, 1, 0, 0, 0, 401, 2393, 1, 0, 0, 0, 403, 2398, 1, 0, 0, 0, 405, 2403, 1, 0, 0, 0, 407, 2413, 1, 0, 0, 0, 409, 2419, 1, 0, 0, 0, 411, 2424, 1, 0, 0, 0, 413, 2430, 1, 0, 0, 0, 415, 2439, 1, 0, 0, 0, 417, 2447, 1, 0, 0, 0, 419, 2455, 1, 0, 0, 0, 421, 2462, 1, 0, 0, 0, 423, 2469, 1, 0, 0, 0, 425, 2477, 1, 0, 0, 0, 427, 2488, 1, 0, 0, 0, 429, 2497, 1, 0, 0, 0, 431, 2505, 1, 0, 0, 0, 433, 2511, 1, 0, 0, 0, 435, 2518, 1, 0, 0, 0, 437, 2524, 1, 0, 0, 0, 439, 2529, 1, 0, 0, 0, 441, 2537, 1, 0, 0, 0, 443, 2544, 1, 0, 0, 0, 445, 2550, 1, 0, 0, 0, 447, 2555, 1, 0, 0, 0, 449, 2564, 1, 0, 0, 0, 451, 2568, 1, 0, 0, 0, 453, 2572, 1, 0, 0, 0, 455, 2580, 1, 0, 0, 0, 457, 2588, 1, 0, 0, 0, 459, 2596, 1, 0, 0, 0, 461, 2603, 1, 0, 0, 0, 463, 2610, 1, 0, 0, 0, 465, 2619, 1, 0, 0, 0, 467, 2628, 1, 0, 0, 0, 469, 2635, 1, 0, 0, 0, 471, 2640, 1, 0, 0, 0, 473, 2645, 1, 0, 0, 0, 475, 2650, 1, 0, 0, 0, 477, 2654, 1, 0, 0, 0, 479, 2661, 1, 0, 0, 0, 481, 2668, 1, 0, 0, 0, 483, 2675, 1, 0, 0, 0, 485, 2683, 1, 0, 0, 0, 487, 2690, 1, 0, 0, 0, 489, 2698, 1, 0, 0, 0, 491, 2707, 1, 0, 0, 0, 493, 2715, 1, 0, 0, 0, 495, 2721, 1, 0, 0, 0, 497, 2727, 1, 0, 0, 0, 499, 2731, 1, 0, 0, 0, 501, 2736, 1, 0, 0, 0, 503, 2741, 1, 0, 0, 0, 505, 2750, 1, 0, 0, 0, 507, 2757, 1, 0, 0, 0, 509, 2763, 1, 0, 0, 0, 511, 2769, 1, 0, 0, 0, 513, 2778, 1, 0, 0, 0, 515, 2785, 1, 0, 0, 0, 517, 2792, 1, 0, 0, 0, 519, 2797, 1, 0, 0, 0, 521, 2804, 1, 0, 0, 0, 523, 2807, 1, 0, 0, 0, 525, 2817, 1, 0, 0, 0, 527, 2823, 1, 0, 0, 0, 529, 2829, 1, 0, 0, 0, 531, 2836, 1, 0, 0, 0, 533, 2840, 1, 0, 0, 0, 535, 2848, 1, 0, 0, 0, 537, 2858, 1, 0, 0, 0, 539, 2867, 1, 0, 0, 0, 541, 2872, 1, 0, 0, 0, 543, 2875, 1, 0, 0, 0, 545, 2880, 1, 0, 0, 0, 547, 2884, 1, 0, 0, 0, 549, 2893, 1, 0, 0, 0, 551, 2901, 1, 0, 0, 0, 553, 2909, 1, 0, 0, 0, 555, 2914, 1, 0, 0, 0, 557, 2919, 1, 0, 0, 0, 559, 2925, 1, 0, 0, 0, 561, 2931, 1, 0, 0, 0, 563, 2937, 1, 0, 0, 0, 565, 2953, 1, 0, 0, 0, 567, 2962, 1, 0, 0, 0, 569, 2968, 1, 0, 0, 0, 571, 2977, 1, 0, 0, 0, 573, 2983, 1, 0, 0, 0, 575, 2990, 1, 0, 0, 0, 577, 2999, 1, 0, 0, 0, 579, 3006, 1, 0, 0, 0, 581, 3012, 1, 0, 0, 0, 583, 3021, 1, 0, 0, 0, 585, 3029, 1, 0, 0, 0, 587, 3034, 1, 0, 0, 0, 589, 3037, 1, 0, 0, 0, 591, 3042, 1, 0, 0, 0, 593, 3046, 1, 0, 0, 0, 595, 3051, 1, 0, 0, 0, 597, 3059, 1, 0, 0, 0, 599, 3062, 1, 0, 0, 0, 601, 3069, 1, 0, 0, 0, 603, 3072, 1, 0, 0, 0, 605, 3076, 1, 0, 0, 0, 607, 3079, 1, 0, 0, 0, 609, 3085, 1, 0, 0, 0, 611, 3089, 1, 0, 0, 0, 613, 3095, 1, 0, 0, 0, 615, 3100, 1, 0, 0, 0, 617, 3108, 1, 0, 0, 0, 619, 3118, 1, 0, 0, 0, 621, 3126, 1, 0, 0, 0, 623, 3130, 1, 0, 0, 0, 625, 3138, 1, 0, 0, 0, 627, 3145, 1, 0, 0, 0, 629, 3154, 1, 0, 0, 0, 631, 3160, 1, 0, 0, 0, 633, 3168, 1, 0, 0, 0, 635, 3174, 1, 0, 0, 0, 637, 3179, 1, 0, 0, 0, 639, 3185, 1, 0, 0, 0, 641, 3192, 1, 0, 0, 0, 643, 3198, 1, 0, 0, 0, 645, 3204, 1, 0, 0, 0, 647, 3213, 1, 0, 0, 0, 649, 3220, 1, 0, 0, 0, 651, 3224, 1, 0, 0, 0, 653, 3229, 1, 0, 0, 0, 655, 3236, 1, 0, 0, 0, 657, 3243, 1, 0, 0, 0, 659, 3247, 1, 0, 0, 0, 661, 3252, 1, 0, 0, 0, 663, 3260, 1, 0, 0, 0, 665, 3265, 1, 0, 0, 0, 667, 3274, 1, 0, 0, 0, 669, 3280, 1, 0, 0, 0, 671, 3287, 1, 0, 0, 0, 673, 3297, 1, 0, 0, 0, 675, 3301, 1, 0, 0, 0, 677, 3311, 1, 0, 0, 0, 679, 3318, 1, 0, 0, 0, 681, 3330, 1, 0, 0, 0, 683, 3342, 1, 0, 0, 0, 685, 3348, 1, 0, 0, 0, 687, 3360, 1, 0, 0, 0, 689, 3365, 1, 0, 0, 0, 691, 3370, 1, 0, 0, 0, 693, 3380, 1, 0, 0, 0, 695, 3388, 1, 0, 0, 0, 697, 3391, 1, 0, 0, 0, 699, 3396, 1, 0, 0, 0, 701, 3405, 1, 0, 0, 0, 703, 3411, 1, 0, 0, 0, 705, 3418, 1, 0, 0, 0, 707, 3426, 1, 0, 0, 0, 709, 3433, 1, 0, 0, 0, 711, 3439, 1, 0, 0, 0, 713, 3446, 1, 0, 0, 0, 715, 3451, 1, 0, 0, 0, 717, 3457, 1, 0, 0, 0, 719, 3463, 1, 0, 0, 0, 721, 3470, 1, 0, 0, 0, 723, 3480, 1, 0, 0, 0, 725, 3488, 1, 0, 0, 0, 727, 3493, 1, 0, 0, 0, 729, 3499, 1, 0, 0, 0, 731, 3506, 1, 0, 0, 0, 733, 3511, 1, 0, 0, 0, 735, 3518, 1, 0, 0, 0, 737, 3526, 1, 0, 0, 0, 739, 3531, 1, 0, 0, 0, 741, 3533, 1, 0, 0, 0, 743, 3535, 1, 0, 0, 0, 745, 3537, 1, 0, 0, 0, 747, 3539, 1, 0, 0, 0, 749, 3541, 1, 0, 0, 0, 751, 3543, 1, 0, 0, 0, 753, 3545, 1, 0, 0, 0, 755, 3547, 1, 0, 0, 0, 757, 3549, 1, 0, 0, 0, 759, 3551, 1, 0, 0, 0, 761, 3553, 1, 0, 0, 0, 763, 3555, 1, 0, 0, 0, 765, 3557, 1, 0, 0, 0, 767, 3559, 1, 0, 0, 0, 769, 3561, 1, 0, 0, 0, 771, 3563, 1, 0, 0, 0, 773, 3565, 1, 0, 0, 0, 775, 3567, 1, 0, 0, 0, 777, 3569, 1, 0, 0, 0, 779, 3571, 1, 0, 0, 0, 781, 3573, 1, 0, 0, 0, 783, 3575, 1, 0, 0, 0, 785, 3577, 1, 0, 0, 0, 787, 3579, 1, 0, 0, 0, 789, 3581, 1, 0, 0, 0, 791, 3583, 1, 0, 0, 0, 793, 3585, 1, 0, 0, 0, 795, 3588, 1, 0, 0, 0, 797, 3591, 1, 0, 0, 0, 799, 3593, 1, 0, 0, 0, 801, 3595, 1, 0, 0, 0, 803, 3601, 1, 0, 0, 0, 805, 3604, 1, 0, 0, 0, 807, 3651, 1, 0, 0, 0, 809, 3653, 1, 0, 0, 0, 811, 3655, 1, 0, 0, 0, 813, 3657, 1, 0, 0, 0, 815, 3666, 1, 0, 0, 0, 817, 3670, 1, 0, 0, 0, 819, 3683, 1, 0, 0, 0, 821, 3695, 1, 0, 0, 0, 823, 3709, 1, 0, 0, 0, 825, 3711, 1, 0, 0, 0, 827, 3713, 1, 0, 0, 0, 829, 3726, 1, 0, 0, 0, 831, 3739, 1, 0, 0, 0, 833, 3748, 1, 0, 0, 0, 835, 837, 7, 0, 0, 0, 836, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 6, 0, 0, 0, 841, 2, 1, 0, 0, 0, 842, 843, 5, 47, 0, 0, 843, 844, 5, 42, 0, 0, 844, 848, 1, 0, 0, 0, 845, 847, 9, 0, 0, 0, 846, 845, 1, 0, 0, 0, 847, 850, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 849, 851, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 851, 852, 5, 42, 0, 0, 852, 853, 5, 47, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 6, 1, 0, 0, 855, 4, 1, 0, 0, 0, 856, 857, 5, 45, 0, 0, 857, 860, 5, 45, 0, 0, 858, 860, 5, 35, 0, 0, 859, 856, 1, 0, 0, 0, 859, 858, 1, 0, 0, 0, 860, 864, 1, 0, 0, 0, 861, 863, 8, 1, 0, 0, 862, 861, 1, 0, 0, 0, 863, 866, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 872, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 867, 869, 5, 13, 0, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 873, 5, 10, 0, 0, 871, 873, 5, 0, 0, 1, 872, 868, 1, 0, 0, 0, 872, 871, 1, 0, 0, 0, 873, 885, 1, 0, 0, 0, 874, 875, 5, 45, 0, 0, 875, 876, 5, 45, 0, 0, 876, 882, 1, 0, 0, 0, 877, 879, 5, 13, 0, 0, 878, 877, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 883, 5, 10, 0, 0, 881, 883, 5, 0, 0, 1, 882, 878, 1, 0, 0, 0, 882, 881, 1, 0, 0, 0, 883, 885, 1, 0, 0, 0, 884, 859, 1, 0, 0, 0, 884, 874, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 6, 2, 0, 0, 887, 6, 1, 0, 0, 0, 888, 889, 5, 65, 0, 0, 889, 890, 5, 68, 0, 0, 890, 891, 5, 68, 0, 0, 891, 8, 1, 0, 0, 0, 892, 893, 5, 65, 0, 0, 893, 894, 5, 68, 0, 0, 894, 895, 5, 77, 0, 0, 895, 896, 5, 73, 0, 0, 896, 897, 5, 78, 0, 0, 897, 10, 1, 0, 0, 0, 898, 899, 5, 65, 0, 0, 899, 900, 5, 70, 0, 0, 900, 901, 5, 84, 0, 0, 901, 902, 5, 69, 0, 0, 902, 903, 5, 82, 0, 0, 903, 12, 1, 0, 0, 0, 904, 905, 5, 65, 0, 0, 905, 906, 5, 78, 0, 0, 906, 907, 5, 65, 0, 0, 907, 908, 5, 76, 0, 0, 908, 909, 5, 89, 0, 0, 909, 910, 5, 90, 0, 0, 910, 911, 5, 69, 0, 0, 911, 14, 1, 0, 0, 0, 912, 913, 5, 65, 0, 0, 913, 914, 5, 83, 0, 0, 914, 915, 5, 67, 0, 0, 915, 16, 1, 0, 0, 0, 916, 917, 5, 66, 0, 0, 917, 918, 5, 69, 0, 0, 918, 919, 5, 70, 0, 0, 919, 920, 5, 79, 0, 0, 920, 921, 5, 82, 0, 0, 921, 922, 5, 69, 0, 0, 922, 18, 1, 0, 0, 0, 923, 924, 5, 66, 0, 0, 924, 925, 5, 89, 0, 0, 925, 926, 5, 84, 0, 0, 926, 927, 5, 69, 0, 0, 927, 928, 5, 83, 0, 0, 928, 20, 1, 0, 0, 0, 929, 930, 5, 67, 0, 0, 930, 931, 5, 65, 0, 0, 931, 932, 5, 83, 0, 0, 932, 933, 5, 67, 0, 0, 933, 934, 5, 65, 0, 0, 934, 935, 5, 68, 0, 0, 935, 936, 5, 69, 0, 0, 936, 22, 1, 0, 0, 0, 937, 938, 5, 67, 0, 0, 938, 939, 5, 65, 0, 0, 939, 940, 5, 84, 0, 0, 940, 941, 5, 65, 0, 0, 941, 942, 5, 76, 0, 0, 942, 943, 5, 79, 0, 0, 943, 944, 5, 71, 0, 0, 944, 24, 1, 0, 0, 0, 945, 946, 5, 67, 0, 0, 946, 947, 5, 65, 0, 0, 947, 948, 5, 84, 0, 0, 948, 949, 5, 65, 0, 0, 949, 950, 5, 76, 0, 0, 950, 951, 5, 79, 0, 0, 951, 952, 5, 71, 0, 0, 952, 953, 5, 83, 0, 0, 953, 26, 1, 0, 0, 0, 954, 955, 5, 67, 0, 0, 955, 956, 5, 69, 0, 0, 956, 957, 5, 78, 0, 0, 957, 958, 5, 84, 0, 0, 958, 959, 5, 85, 0, 0, 959, 960, 5, 82, 0, 0, 960, 961, 5, 89, 0, 0, 961, 28, 1, 0, 0, 0, 962, 963, 5, 67, 0, 0, 963, 964, 5, 72, 0, 0, 964, 965, 5, 65, 0, 0, 965, 966, 5, 73, 0, 0, 966, 967, 5, 78, 0, 0, 967, 30, 1, 0, 0, 0, 968, 969, 5, 67, 0, 0, 969, 970, 5, 72, 0, 0, 970, 971, 5, 65, 0, 0, 971, 972, 5, 78, 0, 0, 972, 973, 5, 71, 0, 0, 973, 974, 5, 69, 0, 0, 974, 975, 5, 76, 0, 0, 975, 976, 5, 79, 0, 0, 976, 977, 5, 71, 0, 0, 977, 978, 5, 95, 0, 0, 978, 979, 5, 77, 0, 0, 979, 980, 5, 79, 0, 0, 980, 981, 5, 68, 0, 0, 981, 982, 5, 69, 0, 0, 982, 32, 1, 0, 0, 0, 983, 984, 5, 67, 0, 0, 984, 985, 5, 72, 0, 0, 985, 986, 5, 65, 0, 0, 986, 987, 5, 82, 0, 0, 987, 988, 5, 65, 0, 0, 988, 989, 5, 67, 0, 0, 989, 990, 5, 84, 0, 0, 990, 991, 5, 69, 0, 0, 991, 992, 5, 82, 0, 0, 992, 993, 5, 83, 0, 0, 993, 34, 1, 0, 0, 0, 994, 995, 5, 67, 0, 0, 995, 996, 5, 79, 0, 0, 996, 997, 5, 77, 0, 0, 997, 998, 5, 77, 0, 0, 998, 999, 5, 69, 0, 0, 999, 1000, 5, 78, 0, 0, 1000, 1001, 5, 84, 0, 0, 1001, 36, 1, 0, 0, 0, 1002, 1003, 5, 67, 0, 0, 1003, 1004, 5, 79, 0, 0, 1004, 1005, 5, 77, 0, 0, 1005, 1006, 5, 80, 0, 0, 1006, 1007, 5, 65, 0, 0, 1007, 1008, 5, 67, 0, 0, 1008, 1009, 5, 84, 0, 0, 1009, 38, 1, 0, 0, 0, 1010, 1011, 5, 67, 0, 0, 1011, 1012, 5, 79, 0, 0, 1012, 1013, 5, 76, 0, 0, 1013, 1014, 5, 85, 0, 0, 1014, 1015, 5, 77, 0, 0, 1015, 1016, 5, 78, 0, 0, 1016, 1017, 5, 83, 0, 0, 1017, 40, 1, 0, 0, 0, 1018, 1019, 5, 67, 0, 0, 1019, 1020, 5, 79, 0, 0, 1020, 1021, 5, 78, 0, 0, 1021, 1022, 5, 83, 0, 0, 1022, 1023, 5, 84, 0, 0, 1023, 1024, 5, 82, 0, 0, 1024, 1025, 5, 65, 0, 0, 1025, 1026, 5, 73, 0, 0, 1026, 1027, 5, 78, 0, 0, 1027, 1028, 5, 84, 0, 0, 1028, 1029, 5, 83, 0, 0, 1029, 42, 1, 0, 0, 0, 1030, 1031, 5, 67, 0, 0, 1031, 1032, 5, 79, 0, 0, 1032, 1033, 5, 78, 0, 0, 1033, 1034, 5, 83, 0, 0, 1034, 1035, 5, 84, 0, 0, 1035, 1036, 5, 82, 0, 0, 1036, 1037, 5, 85, 0, 0, 1037, 1038, 5, 67, 0, 0, 1038, 1039, 5, 84, 0, 0, 1039, 1040, 5, 79, 0, 0, 1040, 1041, 5, 82, 0, 0, 1041, 44, 1, 0, 0, 0, 1042, 1043, 5, 67, 0, 0, 1043, 1044, 5, 85, 0, 0, 1044, 1045, 5, 77, 0, 0, 1045, 1046, 5, 85, 0, 0, 1046, 1047, 5, 76, 0, 0, 1047, 1048, 5, 65, 0, 0, 1048, 1049, 5, 84, 0, 0, 1049, 1050, 5, 69, 0, 0, 1050, 46, 1, 0, 0, 0, 1051, 1052, 5, 68, 0, 0, 1052, 1053, 5, 65, 0, 0, 1053, 1054, 5, 84, 0, 0, 1054, 1055, 5, 65, 0, 0, 1055, 48, 1, 0, 0, 0, 1056, 1057, 5, 68, 0, 0, 1057, 1058, 5, 65, 0, 0, 1058, 1059, 5, 84, 0, 0, 1059, 1060, 5, 65, 0, 0, 1060, 1061, 5, 66, 0, 0, 1061, 1062, 5, 65, 0, 0, 1062, 1063, 5, 83, 0, 0, 1063, 1064, 5, 69, 0, 0, 1064, 50, 1, 0, 0, 0, 1065, 1066, 5, 68, 0, 0, 1066, 1067, 5, 65, 0, 0, 1067, 1068, 5, 84, 0, 0, 1068, 1069, 5, 65, 0, 0, 1069, 1070, 5, 66, 0, 0, 1070, 1071, 5, 65, 0, 0, 1071, 1072, 5, 83, 0, 0, 1072, 1073, 5, 69, 0, 0, 1073, 1074, 5, 83, 0, 0, 1074, 52, 1, 0, 0, 0, 1075, 1076, 5, 68, 0, 0, 1076, 1077, 5, 65, 0, 0, 1077, 1078, 5, 89, 0, 0, 1078, 1079, 5, 83, 0, 0, 1079, 54, 1, 0, 0, 0, 1080, 1081, 5, 68, 0, 0, 1081, 1082, 5, 69, 0, 0, 1082, 1083, 5, 67, 0, 0, 1083, 1084, 5, 65, 0, 0, 1084, 1085, 5, 68, 0, 0, 1085, 1086, 5, 69, 0, 0, 1086, 56, 1, 0, 0, 0, 1087, 1088, 5, 68, 0, 0, 1088, 1089, 5, 69, 0, 0, 1089, 1090, 5, 70, 0, 0, 1090, 1091, 5, 73, 0, 0, 1091, 1092, 5, 78, 0, 0, 1092, 1093, 5, 69, 0, 0, 1093, 1094, 5, 68, 0, 0, 1094, 58, 1, 0, 0, 0, 1095, 1096, 5, 68, 0, 0, 1096, 1097, 5, 69, 0, 0, 1097, 1098, 5, 83, 0, 0, 1098, 1099, 5, 67, 0, 0, 1099, 60, 1, 0, 0, 0, 1100, 1101, 5, 68, 0, 0, 1101, 1102, 5, 69, 0, 0, 1102, 1103, 5, 83, 0, 0, 1103, 1104, 5, 67, 0, 0, 1104, 1105, 5, 82, 0, 0, 1105, 1106, 5, 73, 0, 0, 1106, 1107, 5, 80, 0, 0, 1107, 1108, 5, 84, 0, 0, 1108, 1109, 5, 79, 0, 0, 1109, 1110, 5, 82, 0, 0, 1110, 62, 1, 0, 0, 0, 1111, 1112, 5, 68, 0, 0, 1112, 1113, 5, 73, 0, 0, 1113, 1114, 5, 86, 0, 0, 1114, 64, 1, 0, 0, 0, 1115, 1116, 5, 69, 0, 0, 1116, 1117, 5, 78, 0, 0, 1117, 1118, 5, 67, 0, 0, 1118, 1119, 5, 79, 0, 0, 1119, 1120, 5, 68, 0, 0, 1120, 1121, 5, 73, 0, 0, 1121, 1122, 5, 78, 0, 0, 1122, 1123, 5, 71, 0, 0, 1123, 66, 1, 0, 0, 0, 1124, 1125, 5, 69, 0, 0, 1125, 1126, 5, 78, 0, 0, 1126, 1127, 5, 70, 0, 0, 1127, 1128, 5, 79, 0, 0, 1128, 1129, 5, 82, 0, 0, 1129, 1130, 5, 67, 0, 0, 1130, 1131, 5, 69, 0, 0, 1131, 1132, 5, 68, 0, 0, 1132, 68, 1, 0, 0, 0, 1133, 1134, 5, 69, 0, 0, 1134, 1135, 5, 78, 0, 0, 1135, 1136, 5, 71, 0, 0, 1136, 1137, 5, 73, 0, 0, 1137, 1138, 5, 78, 0, 0, 1138, 1139, 5, 69, 0, 0, 1139, 70, 1, 0, 0, 0, 1140, 1141, 5, 69, 0, 0, 1141, 1142, 5, 82, 0, 0, 1142, 1143, 5, 82, 0, 0, 1143, 1144, 5, 79, 0, 0, 1144, 1145, 5, 82, 0, 0, 1145, 72, 1, 0, 0, 0, 1146, 1147, 5, 69, 0, 0, 1147, 1148, 5, 83, 0, 0, 1148, 1149, 5, 84, 0, 0, 1149, 1150, 5, 73, 0, 0, 1150, 1151, 5, 77, 0, 0, 1151, 1152, 5, 65, 0, 0, 1152, 1153, 5, 84, 0, 0, 1153, 1154, 5, 69, 0, 0, 1154, 1155, 5, 68, 0, 0, 1155, 1156, 5, 95, 0, 0, 1156, 1157, 5, 67, 0, 0, 1157, 1158, 5, 79, 0, 0, 1158, 1159, 5, 83, 0, 0, 1159, 1160, 5, 84, 0, 0, 1160, 74, 1, 0, 0, 0, 1161, 1162, 5, 69, 0, 0, 1162, 1163, 5, 88, 0, 0, 1163, 1164, 5, 67, 0, 0, 1164, 1165, 5, 69, 0, 0, 1165, 1166, 5, 80, 0, 0, 1166, 1167, 5, 84, 0, 0, 1167, 1168, 5, 73, 0, 0, 1168, 1169, 5, 79, 0, 0, 1169, 1170, 5, 78, 0, 0, 1170, 76, 1, 0, 0, 0, 1171, 1172, 5, 69, 0, 0, 1172, 1173, 5, 88, 0, 0, 1173, 1174, 5, 67, 0, 0, 1174, 1175, 5, 76, 0, 0, 1175, 1176, 5, 85, 0, 0, 1176, 1177, 5, 68, 0, 0, 1177, 1178, 5, 69, 0, 0, 1178, 78, 1, 0, 0, 0, 1179, 1180, 5, 69, 0, 0, 1180, 1181, 5, 88, 0, 0, 1181, 1182, 5, 67, 0, 0, 1182, 1183, 5, 76, 0, 0, 1183, 1184, 5, 85, 0, 0, 1184, 1185, 5, 68, 0, 0, 1185, 1186, 5, 73, 0, 0, 1186, 1187, 5, 78, 0, 0, 1187, 1188, 5, 71, 0, 0, 1188, 80, 1, 0, 0, 0, 1189, 1190, 5, 69, 0, 0, 1190, 1191, 5, 88, 0, 0, 1191, 1192, 5, 84, 0, 0, 1192, 1193, 5, 69, 0, 0, 1193, 1194, 5, 78, 0, 0, 1194, 1195, 5, 68, 0, 0, 1195, 1196, 5, 69, 0, 0, 1196, 1197, 5, 68, 0, 0, 1197, 82, 1, 0, 0, 0, 1198, 1199, 5, 70, 0, 0, 1199, 1200, 5, 73, 0, 0, 1200, 1201, 5, 76, 0, 0, 1201, 1202, 5, 69, 0, 0, 1202, 84, 1, 0, 0, 0, 1203, 1204, 5, 70, 0, 0, 1204, 1205, 5, 73, 0, 0, 1205, 1206, 5, 78, 0, 0, 1206, 1207, 5, 65, 0, 0, 1207, 1208, 5, 76, 0, 0, 1208, 86, 1, 0, 0, 0, 1209, 1210, 5, 70, 0, 0, 1210, 1211, 5, 73, 0, 0, 1211, 1212, 5, 82, 0, 0, 1212, 1213, 5, 83, 0, 0, 1213, 1214, 5, 84, 0, 0, 1214, 88, 1, 0, 0, 0, 1215, 1216, 5, 70, 0, 0, 1216, 1217, 5, 79, 0, 0, 1217, 1218, 5, 76, 0, 0, 1218, 1219, 5, 76, 0, 0, 1219, 1220, 5, 79, 0, 0, 1220, 1221, 5, 87, 0, 0, 1221, 1222, 5, 73, 0, 0, 1222, 1223, 5, 78, 0, 0, 1223, 1224, 5, 71, 0, 0, 1224, 90, 1, 0, 0, 0, 1225, 1226, 5, 70, 0, 0, 1226, 1227, 5, 79, 0, 0, 1227, 1228, 5, 82, 0, 0, 1228, 1229, 5, 77, 0, 0, 1229, 1230, 5, 65, 0, 0, 1230, 1231, 5, 84, 0, 0, 1231, 92, 1, 0, 0, 0, 1232, 1233, 5, 70, 0, 0, 1233, 1234, 5, 79, 0, 0, 1234, 1235, 5, 82, 0, 0, 1235, 1236, 5, 84, 0, 0, 1236, 1237, 5, 82, 0, 0, 1237, 1238, 5, 65, 0, 0, 1238, 1239, 5, 78, 0, 0, 1239, 94, 1, 0, 0, 0, 1240, 1241, 5, 70, 0, 0, 1241, 1242, 5, 79, 0, 0, 1242, 1243, 5, 85, 0, 0, 1243, 1244, 5, 78, 0, 0, 1244, 1245, 5, 68, 0, 0, 1245, 96, 1, 0, 0, 0, 1246, 1247, 5, 70, 0, 0, 1247, 1248, 5, 82, 0, 0, 1248, 1249, 5, 65, 0, 0, 1249, 1250, 5, 67, 0, 0, 1250, 1251, 5, 95, 0, 0, 1251, 1252, 5, 83, 0, 0, 1252, 1253, 5, 69, 0, 0, 1253, 1254, 5, 67, 0, 0, 1254, 1255, 5, 79, 0, 0, 1255, 1256, 5, 78, 0, 0, 1256, 1257, 5, 68, 0, 0, 1257, 98, 1, 0, 0, 0, 1258, 1259, 5, 70, 0, 0, 1259, 1260, 5, 85, 0, 0, 1260, 1261, 5, 78, 0, 0, 1261, 1262, 5, 67, 0, 0, 1262, 1263, 5, 84, 0, 0, 1263, 1264, 5, 73, 0, 0, 1264, 1265, 5, 79, 0, 0, 1265, 1266, 5, 78, 0, 0, 1266, 1267, 5, 83, 0, 0, 1267, 100, 1, 0, 0, 0, 1268, 1269, 5, 71, 0, 0, 1269, 1270, 5, 69, 0, 0, 1270, 1271, 5, 78, 0, 0, 1271, 1272, 5, 69, 0, 0, 1272, 1273, 5, 82, 0, 0, 1273, 1274, 5, 65, 0, 0, 1274, 1275, 5, 76, 0, 0, 1275, 102, 1, 0, 0, 0, 1276, 1277, 5, 71, 0, 0, 1277, 1278, 5, 69, 0, 0, 1278, 1279, 5, 78, 0, 0, 1279, 1280, 5, 69, 0, 0, 1280, 1281, 5, 82, 0, 0, 1281, 1282, 5, 65, 0, 0, 1282, 1283, 5, 84, 0, 0, 1283, 1284, 5, 69, 0, 0, 1284, 1285, 5, 68, 0, 0, 1285, 104, 1, 0, 0, 0, 1286, 1287, 5, 71, 0, 0, 1287, 1288, 5, 79, 0, 0, 1288, 106, 1, 0, 0, 0, 1289, 1290, 5, 71, 0, 0, 1290, 1291, 5, 79, 0, 0, 1291, 1292, 5, 84, 0, 0, 1292, 1293, 5, 79, 0, 0, 1293, 108, 1, 0, 0, 0, 1294, 1295, 5, 71, 0, 0, 1295, 1296, 5, 82, 0, 0, 1296, 1297, 5, 65, 0, 0, 1297, 1298, 5, 78, 0, 0, 1298, 1299, 5, 84, 0, 0, 1299, 1300, 5, 69, 0, 0, 1300, 1301, 5, 68, 0, 0, 1301, 110, 1, 0, 0, 0, 1302, 1303, 5, 72, 0, 0, 1303, 1304, 5, 79, 0, 0, 1304, 1305, 5, 80, 0, 0, 1305, 112, 1, 0, 0, 0, 1306, 1307, 5, 72, 0, 0, 1307, 1308, 5, 79, 0, 0, 1308, 1309, 5, 85, 0, 0, 1309, 1310, 5, 82, 0, 0, 1310, 1311, 5, 83, 0, 0, 1311, 114, 1, 0, 0, 0, 1312, 1313, 5, 73, 0, 0, 1313, 1314, 5, 70, 0, 0, 1314, 116, 1, 0, 0, 0, 1315, 1316, 5, 73, 0, 0, 1316, 1317, 5, 71, 0, 0, 1317, 1318, 5, 78, 0, 0, 1318, 1319, 5, 79, 0, 0, 1319, 1320, 5, 82, 0, 0, 1320, 1321, 5, 69, 0, 0, 1321, 118, 1, 0, 0, 0, 1322, 1323, 5, 73, 0, 0, 1323, 1324, 5, 78, 0, 0, 1324, 1325, 5, 67, 0, 0, 1325, 1326, 5, 82, 0, 0, 1326, 1327, 5, 69, 0, 0, 1327, 1328, 5, 77, 0, 0, 1328, 1329, 5, 69, 0, 0, 1329, 1330, 5, 78, 0, 0, 1330, 1331, 5, 84, 0, 0, 1331, 120, 1, 0, 0, 0, 1332, 1333, 5, 73, 0, 0, 1333, 1334, 5, 78, 0, 0, 1334, 1335, 5, 80, 0, 0, 1335, 1336, 5, 85, 0, 0, 1336, 1337, 5, 84, 0, 0, 1337, 122, 1, 0, 0, 0, 1338, 1339, 5, 73, 0, 0, 1339, 1340, 5, 78, 0, 0, 1340, 1341, 5, 86, 0, 0, 1341, 1342, 5, 79, 0, 0, 1342, 1343, 5, 75, 0, 0, 1343, 1344, 5, 69, 0, 0, 1344, 1345, 5, 82, 0, 0, 1345, 124, 1, 0, 0, 0, 1346, 1347, 5, 74, 0, 0, 1347, 1348, 5, 65, 0, 0, 1348, 1349, 5, 82, 0, 0, 1349, 126, 1, 0, 0, 0, 1350, 1351, 5, 74, 0, 0, 1351, 1352, 5, 65, 0, 0, 1352, 1353, 5, 82, 0, 0, 1353, 1354, 5, 83, 0, 0, 1354, 128, 1, 0, 0, 0, 1355, 1356, 5, 74, 0, 0, 1356, 1357, 5, 65, 0, 0, 1357, 1358, 5, 86, 0, 0, 1358, 1359, 5, 65, 0, 0, 1359, 130, 1, 0, 0, 0, 1360, 1361, 5, 74, 0, 0, 1361, 1362, 5, 83, 0, 0, 1362, 1363, 5, 79, 0, 0, 1363, 1364, 5, 78, 0, 0, 1364, 132, 1, 0, 0, 0, 1365, 1366, 5, 74, 0, 0, 1366, 1367, 5, 83, 0, 0, 1367, 1368, 5, 79, 0, 0, 1368, 1369, 5, 78, 0, 0, 1369, 1370, 5, 95, 0, 0, 1370, 1371, 5, 69, 0, 0, 1371, 1372, 5, 88, 0, 0, 1372, 1373, 5, 69, 0, 0, 1373, 1374, 5, 67, 0, 0, 1374, 1375, 5, 85, 0, 0, 1375, 1376, 5, 84, 0, 0, 1376, 1377, 5, 73, 0, 0, 1377, 1378, 5, 79, 0, 0, 1378, 1379, 5, 78, 0, 0, 1379, 1380, 5, 95, 0, 0, 1380, 1381, 5, 80, 0, 0, 1381, 1382, 5, 76, 0, 0, 1382, 1383, 5, 65, 0, 0, 1383, 1384, 5, 78, 0, 0, 1384, 134, 1, 0, 0, 0, 1385, 1386, 5, 75, 0, 0, 1386, 1387, 5, 69, 0, 0, 1387, 1388, 5, 89, 0, 0, 1388, 136, 1, 0, 0, 0, 1389, 1390, 5, 75, 0, 0, 1390, 1391, 5, 69, 0, 0, 1391, 1392, 5, 89, 0, 0, 1392, 1393, 5, 95, 0, 0, 1393, 1394, 5, 77, 0, 0, 1394, 1395, 5, 69, 0, 0, 1395, 1396, 5, 77, 0, 0, 1396, 1397, 5, 66, 0, 0, 1397, 1398, 5, 69, 0, 0, 1398, 1399, 5, 82, 0, 0, 1399, 138, 1, 0, 0, 0, 1400, 1401, 5, 75, 0, 0, 1401, 1402, 5, 69, 0, 0, 1402, 1403, 5, 89, 0, 0, 1403, 1404, 5, 95, 0, 0, 1404, 1405, 5, 84, 0, 0, 1405, 1406, 5, 89, 0, 0, 1406, 1407, 5, 80, 0, 0, 1407, 1408, 5, 69, 0, 0, 1408, 140, 1, 0, 0, 0, 1409, 1410, 5, 76, 0, 0, 1410, 1411, 5, 65, 0, 0, 1411, 1412, 5, 66, 0, 0, 1412, 1413, 5, 69, 0, 0, 1413, 1414, 5, 76, 0, 0, 1414, 142, 1, 0, 0, 0, 1415, 1416, 5, 76, 0, 0, 1416, 1417, 5, 65, 0, 0, 1417, 1418, 5, 83, 0, 0, 1418, 1419, 5, 84, 0, 0, 1419, 144, 1, 0, 0, 0, 1420, 1421, 5, 76, 0, 0, 1421, 1422, 5, 69, 0, 0, 1422, 1423, 5, 78, 0, 0, 1423, 1424, 5, 71, 0, 0, 1424, 1425, 5, 84, 0, 0, 1425, 1426, 5, 72, 0, 0, 1426, 146, 1, 0, 0, 0, 1427, 1428, 5, 76, 0, 0, 1428, 1429, 5, 69, 0, 0, 1429, 1430, 5, 86, 0, 0, 1430, 1431, 5, 69, 0, 0, 1431, 1432, 5, 76, 0, 0, 1432, 148, 1, 0, 0, 0, 1433, 1434, 5, 76, 0, 0, 1434, 1435, 5, 79, 0, 0, 1435, 1436, 5, 65, 0, 0, 1436, 1437, 5, 68, 0, 0, 1437, 150, 1, 0, 0, 0, 1438, 1439, 5, 77, 0, 0, 1439, 1440, 5, 65, 0, 0, 1440, 1441, 5, 80, 0, 0, 1441, 152, 1, 0, 0, 0, 1442, 1443, 5, 77, 0, 0, 1443, 1444, 5, 73, 0, 0, 1444, 1445, 5, 67, 0, 0, 1445, 1446, 5, 82, 0, 0, 1446, 1447, 5, 79, 0, 0, 1447, 1448, 5, 83, 0, 0, 1448, 1449, 5, 69, 0, 0, 1449, 1450, 5, 67, 0, 0, 1450, 1451, 5, 79, 0, 0, 1451, 1452, 5, 78, 0, 0, 1452, 1453, 5, 68, 0, 0, 1453, 154, 1, 0, 0, 0, 1454, 1455, 5, 77, 0, 0, 1455, 1456, 5, 73, 0, 0, 1456, 1457, 5, 76, 0, 0, 1457, 1458, 5, 76, 0, 0, 1458, 1459, 5, 69, 0, 0, 1459, 1460, 5, 78, 0, 0, 1460, 1461, 5, 78, 0, 0, 1461, 1462, 5, 73, 0, 0, 1462, 1463, 5, 85, 0, 0, 1463, 1464, 5, 77, 0, 0, 1464, 156, 1, 0, 0, 0, 1465, 1466, 5, 77, 0, 0, 1466, 1467, 5, 73, 0, 0, 1467, 1468, 5, 76, 0, 0, 1468, 1469, 5, 76, 0, 0, 1469, 1470, 5, 73, 0, 0, 1470, 1471, 5, 83, 0, 0, 1471, 1472, 5, 69, 0, 0, 1472, 1473, 5, 67, 0, 0, 1473, 1474, 5, 79, 0, 0, 1474, 1475, 5, 78, 0, 0, 1475, 1476, 5, 68, 0, 0, 1476, 158, 1, 0, 0, 0, 1477, 1478, 5, 77, 0, 0, 1478, 1479, 5, 73, 0, 0, 1479, 1480, 5, 78, 0, 0, 1480, 1481, 5, 85, 0, 0, 1481, 1482, 5, 84, 0, 0, 1482, 1483, 5, 69, 0, 0, 1483, 1484, 5, 83, 0, 0, 1484, 160, 1, 0, 0, 0, 1485, 1486, 5, 77, 0, 0, 1486, 1487, 5, 73, 0, 0, 1487, 1488, 5, 78, 0, 0, 1488, 1489, 5, 86, 0, 0, 1489, 1490, 5, 65, 0, 0, 1490, 1491, 5, 76, 0, 0, 1491, 1492, 5, 85, 0, 0, 1492, 1493, 5, 69, 0, 0, 1493, 162, 1, 0, 0, 0, 1494, 1495, 5, 77, 0, 0, 1495, 1496, 5, 79, 0, 0, 1496, 1497, 5, 68, 0, 0, 1497, 1498, 5, 73, 0, 0, 1498, 1499, 5, 70, 0, 0, 1499, 1500, 5, 89, 0, 0, 1500, 164, 1, 0, 0, 0, 1501, 1502, 5, 77, 0, 0, 1502, 1503, 5, 79, 0, 0, 1503, 1504, 5, 68, 0, 0, 1504, 1505, 5, 85, 0, 0, 1505, 1506, 5, 76, 0, 0, 1506, 1507, 5, 69, 0, 0, 1507, 1508, 5, 83, 0, 0, 1508, 166, 1, 0, 0, 0, 1509, 1510, 5, 77, 0, 0, 1510, 1511, 5, 79, 0, 0, 1511, 1512, 5, 78, 0, 0, 1512, 1513, 5, 84, 0, 0, 1513, 1514, 5, 72, 0, 0, 1514, 1515, 5, 83, 0, 0, 1515, 168, 1, 0, 0, 0, 1516, 1517, 5, 78, 0, 0, 1517, 1518, 5, 65, 0, 0, 1518, 1519, 5, 78, 0, 0, 1519, 1520, 5, 79, 0, 0, 1520, 1521, 5, 83, 0, 0, 1521, 1522, 5, 69, 0, 0, 1522, 1523, 5, 67, 0, 0, 1523, 1524, 5, 79, 0, 0, 1524, 1525, 5, 78, 0, 0, 1525, 1526, 5, 68, 0, 0, 1526, 170, 1, 0, 0, 0, 1527, 1528, 5, 78, 0, 0, 1528, 1529, 5, 85, 0, 0, 1529, 1530, 5, 76, 0, 0, 1530, 1531, 5, 76, 0, 0, 1531, 1532, 5, 83, 0, 0, 1532, 172, 1, 0, 0, 0, 1533, 1534, 5, 78, 0, 0, 1534, 1535, 5, 85, 0, 0, 1535, 1536, 5, 77, 0, 0, 1536, 1537, 5, 66, 0, 0, 1537, 1538, 5, 69, 0, 0, 1538, 1539, 5, 82, 0, 0, 1539, 174, 1, 0, 0, 0, 1540, 1541, 5, 79, 0, 0, 1541, 1542, 5, 80, 0, 0, 1542, 1543, 5, 84, 0, 0, 1543, 1544, 5, 73, 0, 0, 1544, 1545, 5, 79, 0, 0, 1545, 1546, 5, 78, 0, 0, 1546, 176, 1, 0, 0, 0, 1547, 1548, 5, 79, 0, 0, 1548, 1549, 5, 80, 0, 0, 1549, 1550, 5, 84, 0, 0, 1550, 1551, 5, 73, 0, 0, 1551, 1552, 5, 79, 0, 0, 1552, 1553, 5, 78, 0, 0, 1553, 1554, 5, 83, 0, 0, 1554, 178, 1, 0, 0, 0, 1555, 1556, 5, 79, 0, 0, 1556, 1557, 5, 82, 0, 0, 1557, 1558, 5, 68, 0, 0, 1558, 1559, 5, 69, 0, 0, 1559, 1560, 5, 82, 0, 0, 1560, 1561, 5, 73, 0, 0, 1561, 1562, 5, 78, 0, 0, 1562, 1563, 5, 71, 0, 0, 1563, 180, 1, 0, 0, 0, 1564, 1565, 5, 79, 0, 0, 1565, 1566, 5, 85, 0, 0, 1566, 1567, 5, 84, 0, 0, 1567, 1568, 5, 80, 0, 0, 1568, 1569, 5, 85, 0, 0, 1569, 1570, 5, 84, 0, 0, 1570, 182, 1, 0, 0, 0, 1571, 1572, 5, 79, 0, 0, 1572, 1573, 5, 86, 0, 0, 1573, 1574, 5, 69, 0, 0, 1574, 1575, 5, 82, 0, 0, 1575, 1576, 5, 87, 0, 0, 1576, 1577, 5, 82, 0, 0, 1577, 1578, 5, 73, 0, 0, 1578, 1579, 5, 84, 0, 0, 1579, 1580, 5, 69, 0, 0, 1580, 184, 1, 0, 0, 0, 1581, 1582, 5, 79, 0, 0, 1582, 1583, 5, 86, 0, 0, 1583, 1584, 5, 69, 0, 0, 1584, 1585, 5, 82, 0, 0, 1585, 1586, 5, 87, 0, 0, 1586, 1587, 5, 82, 0, 0, 1587, 1588, 5, 73, 0, 0, 1588, 1589, 5, 84, 0, 0, 1589, 1590, 5, 73, 0, 0, 1590, 1591, 5, 78, 0, 0, 1591, 1592, 5, 71, 0, 0, 1592, 186, 1, 0, 0, 0, 1593, 1594, 5, 80, 0, 0, 1594, 1595, 5, 65, 0, 0, 1595, 1596, 5, 82, 0, 0, 1596, 1597, 5, 84, 0, 0, 1597, 1598, 5, 73, 0, 0, 1598, 1599, 5, 84, 0, 0, 1599, 1600, 5, 73, 0, 0, 1600, 1601, 5, 79, 0, 0, 1601, 1602, 5, 78, 0, 0, 1602, 1603, 5, 69, 0, 0, 1603, 1604, 5, 68, 0, 0, 1604, 188, 1, 0, 0, 0, 1605, 1606, 5, 80, 0, 0, 1606, 1607, 5, 65, 0, 0, 1607, 1608, 5, 82, 0, 0, 1608, 1609, 5, 84, 0, 0, 1609, 1610, 5, 73, 0, 0, 1610, 1611, 5, 84, 0, 0, 1611, 1612, 5, 73, 0, 0, 1612, 1613, 5, 79, 0, 0, 1613, 1614, 5, 78, 0, 0, 1614, 1615, 5, 83, 0, 0, 1615, 190, 1, 0, 0, 0, 1616, 1617, 5, 80, 0, 0, 1617, 1618, 5, 65, 0, 0, 1618, 1619, 5, 83, 0, 0, 1619, 1620, 5, 83, 0, 0, 1620, 1621, 5, 73, 0, 0, 1621, 1622, 5, 78, 0, 0, 1622, 1623, 5, 71, 0, 0, 1623, 192, 1, 0, 0, 0, 1624, 1625, 5, 80, 0, 0, 1625, 1626, 5, 65, 0, 0, 1626, 1627, 5, 83, 0, 0, 1627, 1628, 5, 84, 0, 0, 1628, 194, 1, 0, 0, 0, 1629, 1630, 5, 80, 0, 0, 1630, 1631, 5, 65, 0, 0, 1631, 1632, 5, 84, 0, 0, 1632, 1633, 5, 72, 0, 0, 1633, 196, 1, 0, 0, 0, 1634, 1635, 5, 80, 0, 0, 1635, 1636, 5, 76, 0, 0, 1636, 1637, 5, 65, 0, 0, 1637, 1638, 5, 67, 0, 0, 1638, 1639, 5, 73, 0, 0, 1639, 1640, 5, 78, 0, 0, 1640, 1641, 5, 71, 0, 0, 1641, 198, 1, 0, 0, 0, 1642, 1643, 5, 80, 0, 0, 1643, 1644, 5, 76, 0, 0, 1644, 1645, 5, 65, 0, 0, 1645, 1646, 5, 78, 0, 0, 1646, 200, 1, 0, 0, 0, 1647, 1648, 5, 80, 0, 0, 1648, 1649, 5, 82, 0, 0, 1649, 1650, 5, 69, 0, 0, 1650, 1651, 5, 67, 0, 0, 1651, 1652, 5, 69, 0, 0, 1652, 1653, 5, 68, 0, 0, 1653, 1654, 5, 73, 0, 0, 1654, 1655, 5, 78, 0, 0, 1655, 1656, 5, 71, 0, 0, 1656, 202, 1, 0, 0, 0, 1657, 1658, 5, 80, 0, 0, 1658, 1659, 5, 82, 0, 0, 1659, 1660, 5, 69, 0, 0, 1660, 1661, 5, 83, 0, 0, 1661, 1662, 5, 69, 0, 0, 1662, 1663, 5, 82, 0, 0, 1663, 1664, 5, 86, 0, 0, 1664, 1665, 5, 69, 0, 0, 1665, 204, 1, 0, 0, 0, 1666, 1667, 5, 80, 0, 0, 1667, 1668, 5, 82, 0, 0, 1668, 1669, 5, 73, 0, 0, 1669, 1670, 5, 79, 0, 0, 1670, 1671, 5, 82, 0, 0, 1671, 206, 1, 0, 0, 0, 1672, 1673, 5, 80, 0, 0, 1673, 1674, 5, 82, 0, 0, 1674, 1675, 5, 73, 0, 0, 1675, 1676, 5, 86, 0, 0, 1676, 1677, 5, 73, 0, 0, 1677, 1678, 5, 76, 0, 0, 1678, 1679, 5, 69, 0, 0, 1679, 1680, 5, 71, 0, 0, 1680, 1681, 5, 69, 0, 0, 1681, 1682, 5, 83, 0, 0, 1682, 208, 1, 0, 0, 0, 1683, 1684, 5, 80, 0, 0, 1684, 1685, 5, 85, 0, 0, 1685, 1686, 5, 66, 0, 0, 1686, 1687, 5, 76, 0, 0, 1687, 1688, 5, 73, 0, 0, 1688, 1689, 5, 67, 0, 0, 1689, 210, 1, 0, 0, 0, 1690, 1691, 5, 80, 0, 0, 1691, 1692, 5, 89, 0, 0, 1692, 1693, 5, 84, 0, 0, 1693, 1694, 5, 72, 0, 0, 1694, 1695, 5, 79, 0, 0, 1695, 1696, 5, 78, 0, 0, 1696, 212, 1, 0, 0, 0, 1697, 1698, 5, 80, 0, 0, 1698, 1699, 5, 89, 0, 0, 1699, 1700, 5, 84, 0, 0, 1700, 1701, 5, 72, 0, 0, 1701, 1702, 5, 79, 0, 0, 1702, 1703, 5, 78, 0, 0, 1703, 1704, 5, 95, 0, 0, 1704, 1705, 5, 70, 0, 0, 1705, 1706, 5, 73, 0, 0, 1706, 1707, 5, 76, 0, 0, 1707, 1708, 5, 69, 0, 0, 1708, 1709, 5, 83, 0, 0, 1709, 214, 1, 0, 0, 0, 1710, 1711, 5, 80, 0, 0, 1711, 1712, 5, 89, 0, 0, 1712, 1713, 5, 84, 0, 0, 1713, 1714, 5, 72, 0, 0, 1714, 1715, 5, 79, 0, 0, 1715, 1716, 5, 78, 0, 0, 1716, 1717, 5, 95, 0, 0, 1717, 1718, 5, 82, 0, 0, 1718, 1719, 5, 69, 0, 0, 1719, 1720, 5, 81, 0, 0, 1720, 1721, 5, 85, 0, 0, 1721, 1722, 5, 73, 0, 0, 1722, 1723, 5, 82, 0, 0, 1723, 1724, 5, 69, 0, 0, 1724, 1725, 5, 77, 0, 0, 1725, 1726, 5, 69, 0, 0, 1726, 1727, 5, 78, 0, 0, 1727, 1728, 5, 84, 0, 0, 1728, 1729, 5, 83, 0, 0, 1729, 216, 1, 0, 0, 0, 1730, 1731, 5, 80, 0, 0, 1731, 1732, 5, 89, 0, 0, 1732, 1733, 5, 84, 0, 0, 1733, 1734, 5, 72, 0, 0, 1734, 1735, 5, 79, 0, 0, 1735, 1736, 5, 78, 0, 0, 1736, 1737, 5, 95, 0, 0, 1737, 1738, 5, 68, 0, 0, 1738, 1739, 5, 69, 0, 0, 1739, 1740, 5, 80, 0, 0, 1740, 1741, 5, 69, 0, 0, 1741, 1742, 5, 78, 0, 0, 1742, 1743, 5, 68, 0, 0, 1743, 1744, 5, 69, 0, 0, 1744, 1745, 5, 78, 0, 0, 1745, 1746, 5, 67, 0, 0, 1746, 1747, 5, 73, 0, 0, 1747, 1748, 5, 69, 0, 0, 1748, 1749, 5, 83, 0, 0, 1749, 218, 1, 0, 0, 0, 1750, 1751, 5, 80, 0, 0, 1751, 1752, 5, 89, 0, 0, 1752, 1753, 5, 84, 0, 0, 1753, 1754, 5, 72, 0, 0, 1754, 1755, 5, 79, 0, 0, 1755, 1756, 5, 78, 0, 0, 1756, 1757, 5, 95, 0, 0, 1757, 1758, 5, 74, 0, 0, 1758, 1759, 5, 65, 0, 0, 1759, 1760, 5, 82, 0, 0, 1760, 220, 1, 0, 0, 0, 1761, 1762, 5, 80, 0, 0, 1762, 1763, 5, 89, 0, 0, 1763, 1764, 5, 84, 0, 0, 1764, 1765, 5, 72, 0, 0, 1765, 1766, 5, 79, 0, 0, 1766, 1767, 5, 78, 0, 0, 1767, 1768, 5, 95, 0, 0, 1768, 1769, 5, 65, 0, 0, 1769, 1770, 5, 82, 0, 0, 1770, 1771, 5, 67, 0, 0, 1771, 1772, 5, 72, 0, 0, 1772, 1773, 5, 73, 0, 0, 1773, 1774, 5, 86, 0, 0, 1774, 1775, 5, 69, 0, 0, 1775, 1776, 5, 83, 0, 0, 1776, 222, 1, 0, 0, 0, 1777, 1778, 5, 80, 0, 0, 1778, 1779, 5, 89, 0, 0, 1779, 1780, 5, 84, 0, 0, 1780, 1781, 5, 72, 0, 0, 1781, 1782, 5, 79, 0, 0, 1782, 1783, 5, 78, 0, 0, 1783, 1784, 5, 95, 0, 0, 1784, 1785, 5, 80, 0, 0, 1785, 1786, 5, 65, 0, 0, 1786, 1787, 5, 82, 0, 0, 1787, 1788, 5, 65, 0, 0, 1788, 1789, 5, 77, 0, 0, 1789, 1790, 5, 69, 0, 0, 1790, 1791, 5, 84, 0, 0, 1791, 1792, 5, 69, 0, 0, 1792, 1793, 5, 82, 0, 0, 1793, 224, 1, 0, 0, 0, 1794, 1795, 5, 81, 0, 0, 1795, 1796, 5, 85, 0, 0, 1796, 1797, 5, 65, 0, 0, 1797, 1798, 5, 82, 0, 0, 1798, 1799, 5, 84, 0, 0, 1799, 1800, 5, 69, 0, 0, 1800, 1801, 5, 82, 0, 0, 1801, 226, 1, 0, 0, 0, 1802, 1803, 5, 82, 0, 0, 1803, 1804, 5, 65, 0, 0, 1804, 1805, 5, 87, 0, 0, 1805, 228, 1, 0, 0, 0, 1806, 1807, 5, 82, 0, 0, 1807, 1808, 5, 69, 0, 0, 1808, 1809, 5, 65, 0, 0, 1809, 1810, 5, 68, 0, 0, 1810, 230, 1, 0, 0, 0, 1811, 1812, 5, 82, 0, 0, 1812, 1813, 5, 69, 0, 0, 1813, 1814, 5, 76, 0, 0, 1814, 1815, 5, 65, 0, 0, 1815, 1816, 5, 84, 0, 0, 1816, 1817, 5, 73, 0, 0, 1817, 1818, 5, 86, 0, 0, 1818, 1819, 5, 69, 0, 0, 1819, 232, 1, 0, 0, 0, 1820, 1821, 5, 82, 0, 0, 1821, 1822, 5, 69, 0, 0, 1822, 1823, 5, 77, 0, 0, 1823, 1824, 5, 79, 0, 0, 1824, 1825, 5, 86, 0, 0, 1825, 1826, 5, 69, 0, 0, 1826, 234, 1, 0, 0, 0, 1827, 1828, 5, 82, 0, 0, 1828, 1829, 5, 69, 0, 0, 1829, 1830, 5, 78, 0, 0, 1830, 1831, 5, 65, 0, 0, 1831, 1832, 5, 77, 0, 0, 1832, 1833, 5, 69, 0, 0, 1833, 236, 1, 0, 0, 0, 1834, 1835, 5, 82, 0, 0, 1835, 1836, 5, 69, 0, 0, 1836, 1837, 5, 80, 0, 0, 1837, 1838, 5, 76, 0, 0, 1838, 1839, 5, 65, 0, 0, 1839, 1840, 5, 67, 0, 0, 1840, 1841, 5, 69, 0, 0, 1841, 238, 1, 0, 0, 0, 1842, 1843, 5, 82, 0, 0, 1843, 1844, 5, 69, 0, 0, 1844, 1845, 5, 83, 0, 0, 1845, 1846, 5, 80, 0, 0, 1846, 1847, 5, 69, 0, 0, 1847, 1848, 5, 67, 0, 0, 1848, 1849, 5, 84, 0, 0, 1849, 240, 1, 0, 0, 0, 1850, 1851, 5, 82, 0, 0, 1851, 1852, 5, 69, 0, 0, 1852, 1853, 5, 83, 0, 0, 1853, 1854, 5, 84, 0, 0, 1854, 1855, 5, 65, 0, 0, 1855, 1856, 5, 82, 0, 0, 1856, 1857, 5, 84, 0, 0, 1857, 242, 1, 0, 0, 0, 1858, 1859, 5, 82, 0, 0, 1859, 1860, 5, 69, 0, 0, 1860, 1861, 5, 83, 0, 0, 1861, 1862, 5, 84, 0, 0, 1862, 1863, 5, 82, 0, 0, 1863, 1864, 5, 73, 0, 0, 1864, 1865, 5, 67, 0, 0, 1865, 1866, 5, 84, 0, 0, 1866, 244, 1, 0, 0, 0, 1867, 1868, 5, 82, 0, 0, 1868, 1869, 5, 79, 0, 0, 1869, 1870, 5, 76, 0, 0, 1870, 1871, 5, 69, 0, 0, 1871, 246, 1, 0, 0, 0, 1872, 1873, 5, 82, 0, 0, 1873, 1874, 5, 79, 0, 0, 1874, 1875, 5, 87, 0, 0, 1875, 1876, 5, 95, 0, 0, 1876, 1877, 5, 67, 0, 0, 1877, 1878, 5, 79, 0, 0, 1878, 1879, 5, 85, 0, 0, 1879, 1880, 5, 78, 0, 0, 1880, 1881, 5, 84, 0, 0, 1881, 248, 1, 0, 0, 0, 1882, 1883, 5, 83, 0, 0, 1883, 1884, 5, 67, 0, 0, 1884, 1885, 5, 65, 0, 0, 1885, 1886, 5, 76, 0, 0, 1886, 1887, 5, 65, 0, 0, 1887, 250, 1, 0, 0, 0, 1888, 1889, 5, 83, 0, 0, 1889, 1890, 5, 67, 0, 0, 1890, 1891, 5, 65, 0, 0, 1891, 1892, 5, 76, 0, 0, 1892, 1893, 5, 65, 0, 0, 1893, 1894, 5, 82, 0, 0, 1894, 252, 1, 0, 0, 0, 1895, 1896, 5, 83, 0, 0, 1896, 1897, 5, 67, 0, 0, 1897, 1898, 5, 65, 0, 0, 1898, 1899, 5, 76, 0, 0, 1899, 1900, 5, 69, 0, 0, 1900, 254, 1, 0, 0, 0, 1901, 1902, 5, 83, 0, 0, 1902, 1903, 5, 67, 0, 0, 1903, 1904, 5, 72, 0, 0, 1904, 1905, 5, 69, 0, 0, 1905, 1906, 5, 77, 0, 0, 1906, 1907, 5, 65, 0, 0, 1907, 256, 1, 0, 0, 0, 1908, 1909, 5, 83, 0, 0, 1909, 1910, 5, 69, 0, 0, 1910, 1911, 5, 67, 0, 0, 1911, 1912, 5, 79, 0, 0, 1912, 1913, 5, 78, 0, 0, 1913, 1914, 5, 68, 0, 0, 1914, 1915, 5, 83, 0, 0, 1915, 258, 1, 0, 0, 0, 1916, 1917, 5, 83, 0, 0, 1917, 1918, 5, 69, 0, 0, 1918, 1919, 5, 67, 0, 0, 1919, 1920, 5, 84, 0, 0, 1920, 1921, 5, 73, 0, 0, 1921, 1922, 5, 79, 0, 0, 1922, 1923, 5, 78, 0, 0, 1923, 260, 1, 0, 0, 0, 1924, 1925, 5, 83, 0, 0, 1925, 1926, 5, 69, 0, 0, 1926, 1927, 5, 67, 0, 0, 1927, 1928, 5, 85, 0, 0, 1928, 1929, 5, 82, 0, 0, 1929, 1930, 5, 73, 0, 0, 1930, 1931, 5, 84, 0, 0, 1931, 1932, 5, 89, 0, 0, 1932, 262, 1, 0, 0, 0, 1933, 1934, 5, 83, 0, 0, 1934, 1935, 5, 69, 0, 0, 1935, 1936, 5, 76, 0, 0, 1936, 1937, 5, 70, 0, 0, 1937, 264, 1, 0, 0, 0, 1938, 1939, 5, 83, 0, 0, 1939, 1940, 5, 69, 0, 0, 1940, 1941, 5, 82, 0, 0, 1941, 1942, 5, 86, 0, 0, 1942, 1943, 5, 69, 0, 0, 1943, 1944, 5, 82, 0, 0, 1944, 266, 1, 0, 0, 0, 1945, 1946, 5, 83, 0, 0, 1946, 1947, 5, 69, 0, 0, 1947, 1948, 5, 82, 0, 0, 1948, 1949, 5, 86, 0, 0, 1949, 1950, 5, 69, 0, 0, 1950, 1951, 5, 82, 0, 0, 1951, 1952, 5, 95, 0, 0, 1952, 1953, 5, 78, 0, 0, 1953, 1954, 5, 65, 0, 0, 1954, 1955, 5, 77, 0, 0, 1955, 1956, 5, 69, 0, 0, 1956, 268, 1, 0, 0, 0, 1957, 1958, 5, 83, 0, 0, 1958, 1959, 5, 69, 0, 0, 1959, 1960, 5, 83, 0, 0, 1960, 1961, 5, 83, 0, 0, 1961, 1962, 5, 73, 0, 0, 1962, 1963, 5, 79, 0, 0, 1963, 1964, 5, 78, 0, 0, 1964, 270, 1, 0, 0, 0, 1965, 1966, 5, 83, 0, 0, 1966, 1967, 5, 69, 0, 0, 1967, 1968, 5, 84, 0, 0, 1968, 1969, 5, 83, 0, 0, 1969, 272, 1, 0, 0, 0, 1970, 1971, 5, 83, 0, 0, 1971, 1972, 5, 73, 0, 0, 1972, 1973, 5, 77, 0, 0, 1973, 1974, 5, 80, 0, 0, 1974, 1975, 5, 76, 0, 0, 1975, 1976, 5, 69, 0, 0, 1976, 274, 1, 0, 0, 0, 1977, 1978, 5, 83, 0, 0, 1978, 1979, 5, 73, 0, 0, 1979, 1980, 5, 90, 0, 0, 1980, 1981, 5, 69, 0, 0, 1981, 276, 1, 0, 0, 0, 1982, 1983, 5, 83, 0, 0, 1983, 1984, 5, 76, 0, 0, 1984, 1985, 5, 73, 0, 0, 1985, 1986, 5, 68, 0, 0, 1986, 1987, 5, 69, 0, 0, 1987, 278, 1, 0, 0, 0, 1988, 1989, 5, 83, 0, 0, 1989, 1990, 5, 79, 0, 0, 1990, 1991, 5, 85, 0, 0, 1991, 1992, 5, 82, 0, 0, 1992, 1993, 5, 67, 0, 0, 1993, 1994, 5, 69, 0, 0, 1994, 280, 1, 0, 0, 0, 1995, 1996, 5, 83, 0, 0, 1996, 1997, 5, 80, 0, 0, 1997, 1998, 5, 65, 0, 0, 1998, 1999, 5, 67, 0, 0, 1999, 2000, 5, 69, 0, 0, 2000, 282, 1, 0, 0, 0, 2001, 2002, 5, 83, 0, 0, 2002, 2003, 5, 84, 0, 0, 2003, 2004, 5, 65, 0, 0, 2004, 2005, 5, 84, 0, 0, 2005, 2006, 5, 69, 0, 0, 2006, 284, 1, 0, 0, 0, 2007, 2008, 5, 83, 0, 0, 2008, 2009, 5, 84, 0, 0, 2009, 2010, 5, 65, 0, 0, 2010, 2011, 5, 84, 0, 0, 2011, 2012, 5, 69, 0, 0, 2012, 2013, 5, 77, 0, 0, 2013, 2014, 5, 69, 0, 0, 2014, 2015, 5, 78, 0, 0, 2015, 2016, 5, 84, 0, 0, 2016, 286, 1, 0, 0, 0, 2017, 2018, 5, 83, 0, 0, 2018, 2019, 5, 84, 0, 0, 2019, 2020, 5, 69, 0, 0, 2020, 2021, 5, 80, 0, 0, 2021, 288, 1, 0, 0, 0, 2022, 2023, 5, 83, 0, 0, 2023, 2024, 5, 84, 0, 0, 2024, 2025, 5, 82, 0, 0, 2025, 2026, 5, 73, 0, 0, 2026, 2027, 5, 78, 0, 0, 2027, 2028, 5, 71, 0, 0, 2028, 290, 1, 0, 0, 0, 2029, 2030, 5, 83, 0, 0, 2030, 2031, 5, 84, 0, 0, 2031, 2032, 5, 82, 0, 0, 2032, 2033, 5, 85, 0, 0, 2033, 2034, 5, 67, 0, 0, 2034, 2035, 5, 84, 0, 0, 2035, 2036, 5, 85, 0, 0, 2036, 2037, 5, 82, 0, 0, 2037, 2038, 5, 69, 0, 0, 2038, 292, 1, 0, 0, 0, 2039, 2040, 5, 83, 0, 0, 2040, 2041, 5, 84, 0, 0, 2041, 2042, 5, 89, 0, 0, 2042, 2043, 5, 76, 0, 0, 2043, 2044, 5, 69, 0, 0, 2044, 294, 1, 0, 0, 0, 2045, 2046, 5, 84, 0, 0, 2046, 2047, 5, 65, 0, 0, 2047, 2048, 5, 66, 0, 0, 2048, 2049, 5, 76, 0, 0, 2049, 2050, 5, 69, 0, 0, 2050, 2051, 5, 83, 0, 0, 2051, 296, 1, 0, 0, 0, 2052, 2053, 5, 84, 0, 0, 2053, 2054, 5, 69, 0, 0, 2054, 2055, 5, 77, 0, 0, 2055, 2056, 5, 80, 0, 0, 2056, 2057, 5, 79, 0, 0, 2057, 2058, 5, 82, 0, 0, 2058, 2059, 5, 65, 0, 0, 2059, 2060, 5, 82, 0, 0, 2060, 2061, 5, 89, 0, 0, 2061, 298, 1, 0, 0, 0, 2062, 2063, 5, 84, 0, 0, 2063, 2064, 5, 73, 0, 0, 2064, 2065, 5, 77, 0, 0, 2065, 2066, 5, 69, 0, 0, 2066, 2067, 5, 67, 0, 0, 2067, 2068, 5, 79, 0, 0, 2068, 2069, 5, 76, 0, 0, 2069, 300, 1, 0, 0, 0, 2070, 2071, 5, 84, 0, 0, 2071, 2072, 5, 73, 0, 0, 2072, 2073, 5, 77, 0, 0, 2073, 2074, 5, 69, 0, 0, 2074, 2075, 5, 83, 0, 0, 2075, 2076, 5, 84, 0, 0, 2076, 2077, 5, 65, 0, 0, 2077, 2078, 5, 77, 0, 0, 2078, 2079, 5, 80, 0, 0, 2079, 2080, 5, 95, 0, 0, 2080, 2081, 5, 76, 0, 0, 2081, 2082, 5, 84, 0, 0, 2082, 2083, 5, 90, 0, 0, 2083, 302, 1, 0, 0, 0, 2084, 2085, 5, 84, 0, 0, 2085, 2086, 5, 73, 0, 0, 2086, 2087, 5, 77, 0, 0, 2087, 2088, 5, 69, 0, 0, 2088, 2089, 5, 83, 0, 0, 2089, 2090, 5, 84, 0, 0, 2090, 2091, 5, 65, 0, 0, 2091, 2092, 5, 77, 0, 0, 2092, 2093, 5, 80, 0, 0, 2093, 2094, 5, 65, 0, 0, 2094, 2095, 5, 68, 0, 0, 2095, 2096, 5, 68, 0, 0, 2096, 304, 1, 0, 0, 0, 2097, 2098, 5, 84, 0, 0, 2098, 2099, 5, 73, 0, 0, 2099, 2100, 5, 77, 0, 0, 2100, 2101, 5, 69, 0, 0, 2101, 2102, 5, 83, 0, 0, 2102, 2103, 5, 84, 0, 0, 2103, 2104, 5, 65, 0, 0, 2104, 2105, 5, 77, 0, 0, 2105, 2106, 5, 80, 0, 0, 2106, 2107, 5, 68, 0, 0, 2107, 2108, 5, 73, 0, 0, 2108, 2109, 5, 70, 0, 0, 2109, 2110, 5, 70, 0, 0, 2110, 306, 1, 0, 0, 0, 2111, 2112, 5, 84, 0, 0, 2112, 2113, 5, 82, 0, 0, 2113, 2114, 5, 65, 0, 0, 2114, 2115, 5, 78, 0, 0, 2115, 2116, 5, 83, 0, 0, 2116, 2117, 5, 70, 0, 0, 2117, 2118, 5, 79, 0, 0, 2118, 2119, 5, 82, 0, 0, 2119, 2120, 5, 77, 0, 0, 2120, 308, 1, 0, 0, 0, 2121, 2122, 5, 84, 0, 0, 2122, 2123, 5, 85, 0, 0, 2123, 2124, 5, 77, 0, 0, 2124, 2125, 5, 66, 0, 0, 2125, 2126, 5, 76, 0, 0, 2126, 2127, 5, 69, 0, 0, 2127, 310, 1, 0, 0, 0, 2128, 2129, 5, 84, 0, 0, 2129, 2130, 5, 89, 0, 0, 2130, 2131, 5, 80, 0, 0, 2131, 2132, 5, 69, 0, 0, 2132, 312, 1, 0, 0, 0, 2133, 2134, 5, 85, 0, 0, 2134, 2135, 5, 78, 0, 0, 2135, 2136, 5, 68, 0, 0, 2136, 2137, 5, 69, 0, 0, 2137, 2138, 5, 82, 0, 0, 2138, 314, 1, 0, 0, 0, 2139, 2140, 5, 85, 0, 0, 2140, 2141, 5, 78, 0, 0, 2141, 2142, 5, 76, 0, 0, 2142, 2143, 5, 79, 0, 0, 2143, 2144, 5, 65, 0, 0, 2144, 2145, 5, 68, 0, 0, 2145, 316, 1, 0, 0, 0, 2146, 2147, 5, 85, 0, 0, 2147, 2148, 5, 83, 0, 0, 2148, 2149, 5, 65, 0, 0, 2149, 2150, 5, 71, 0, 0, 2150, 2151, 5, 69, 0, 0, 2151, 318, 1, 0, 0, 0, 2152, 2153, 5, 85, 0, 0, 2153, 2154, 5, 83, 0, 0, 2154, 2155, 5, 69, 0, 0, 2155, 320, 1, 0, 0, 0, 2156, 2157, 5, 85, 0, 0, 2157, 2158, 5, 84, 0, 0, 2158, 2159, 5, 70, 0, 0, 2159, 2160, 5, 49, 0, 0, 2160, 2161, 5, 54, 0, 0, 2161, 322, 1, 0, 0, 0, 2162, 2163, 5, 85, 0, 0, 2163, 2164, 5, 84, 0, 0, 2164, 2165, 5, 70, 0, 0, 2165, 2166, 5, 51, 0, 0, 2166, 2167, 5, 50, 0, 0, 2167, 324, 1, 0, 0, 0, 2168, 2169, 5, 85, 0, 0, 2169, 2170, 5, 84, 0, 0, 2170, 2171, 5, 70, 0, 0, 2171, 2172, 5, 56, 0, 0, 2172, 326, 1, 0, 0, 0, 2173, 2174, 5, 86, 0, 0, 2174, 2175, 5, 69, 0, 0, 2175, 2176, 5, 82, 0, 0, 2176, 2177, 5, 83, 0, 0, 2177, 2178, 5, 73, 0, 0, 2178, 2179, 5, 79, 0, 0, 2179, 2180, 5, 78, 0, 0, 2180, 328, 1, 0, 0, 0, 2181, 2182, 5, 86, 0, 0, 2182, 2183, 5, 73, 0, 0, 2183, 2184, 5, 69, 0, 0, 2184, 2185, 5, 87, 0, 0, 2185, 330, 1, 0, 0, 0, 2186, 2187, 5, 86, 0, 0, 2187, 2188, 5, 73, 0, 0, 2188, 2189, 5, 69, 0, 0, 2189, 2190, 5, 87, 0, 0, 2190, 2191, 5, 83, 0, 0, 2191, 332, 1, 0, 0, 0, 2192, 2193, 5, 86, 0, 0, 2193, 2194, 5, 73, 0, 0, 2194, 2195, 5, 82, 0, 0, 2195, 2196, 5, 84, 0, 0, 2196, 2197, 5, 85, 0, 0, 2197, 2198, 5, 65, 0, 0, 2198, 2199, 5, 76, 0, 0, 2199, 334, 1, 0, 0, 0, 2200, 2201, 5, 87, 0, 0, 2201, 2202, 5, 65, 0, 0, 2202, 2203, 5, 84, 0, 0, 2203, 2204, 5, 69, 0, 0, 2204, 2205, 5, 82, 0, 0, 2205, 2206, 5, 77, 0, 0, 2206, 2207, 5, 65, 0, 0, 2207, 2208, 5, 82, 0, 0, 2208, 2209, 5, 75, 0, 0, 2209, 336, 1, 0, 0, 0, 2210, 2211, 5, 87, 0, 0, 2211, 2212, 5, 65, 0, 0, 2212, 2213, 5, 84, 0, 0, 2213, 2214, 5, 69, 0, 0, 2214, 2215, 5, 82, 0, 0, 2215, 2216, 5, 77, 0, 0, 2216, 2217, 5, 65, 0, 0, 2217, 2218, 5, 82, 0, 0, 2218, 2219, 5, 75, 0, 0, 2219, 2220, 5, 83, 0, 0, 2220, 338, 1, 0, 0, 0, 2221, 2222, 5, 87, 0, 0, 2222, 2223, 5, 69, 0, 0, 2223, 2224, 5, 69, 0, 0, 2224, 2225, 5, 75, 0, 0, 2225, 340, 1, 0, 0, 0, 2226, 2227, 5, 87, 0, 0, 2227, 2228, 5, 79, 0, 0, 2228, 2229, 5, 82, 0, 0, 2229, 2230, 5, 75, 0, 0, 2230, 342, 1, 0, 0, 0, 2231, 2232, 5, 87, 0, 0, 2232, 2233, 5, 82, 0, 0, 2233, 2234, 5, 65, 0, 0, 2234, 2235, 5, 80, 0, 0, 2235, 2236, 5, 80, 0, 0, 2236, 2237, 5, 69, 0, 0, 2237, 2238, 5, 82, 0, 0, 2238, 344, 1, 0, 0, 0, 2239, 2240, 5, 89, 0, 0, 2240, 2241, 5, 69, 0, 0, 2241, 2242, 5, 65, 0, 0, 2242, 2243, 5, 82, 0, 0, 2243, 2244, 5, 83, 0, 0, 2244, 346, 1, 0, 0, 0, 2245, 2246, 5, 90, 0, 0, 2246, 2247, 5, 79, 0, 0, 2247, 2248, 5, 78, 0, 0, 2248, 2249, 5, 69, 0, 0, 2249, 348, 1, 0, 0, 0, 2250, 2251, 5, 65, 0, 0, 2251, 2252, 5, 66, 0, 0, 2252, 2253, 5, 83, 0, 0, 2253, 350, 1, 0, 0, 0, 2254, 2255, 5, 65, 0, 0, 2255, 2256, 5, 76, 0, 0, 2256, 2257, 5, 76, 0, 0, 2257, 352, 1, 0, 0, 0, 2258, 2259, 5, 65, 0, 0, 2259, 2260, 5, 76, 0, 0, 2260, 2261, 5, 76, 0, 0, 2261, 2262, 5, 79, 0, 0, 2262, 2263, 5, 87, 0, 0, 2263, 354, 1, 0, 0, 0, 2264, 2265, 5, 65, 0, 0, 2265, 2266, 5, 76, 0, 0, 2266, 2267, 5, 84, 0, 0, 2267, 2268, 5, 69, 0, 0, 2268, 2269, 5, 82, 0, 0, 2269, 356, 1, 0, 0, 0, 2270, 2271, 5, 65, 0, 0, 2271, 2272, 5, 78, 0, 0, 2272, 2273, 5, 68, 0, 0, 2273, 358, 1, 0, 0, 0, 2274, 2275, 5, 65, 0, 0, 2275, 2276, 5, 78, 0, 0, 2276, 2277, 5, 89, 0, 0, 2277, 360, 1, 0, 0, 0, 2278, 2279, 5, 65, 0, 0, 2279, 2280, 5, 82, 0, 0, 2280, 2281, 5, 69, 0, 0, 2281, 362, 1, 0, 0, 0, 2282, 2283, 5, 65, 0, 0, 2283, 2284, 5, 82, 0, 0, 2284, 2285, 5, 82, 0, 0, 2285, 2286, 5, 65, 0, 0, 2286, 2287, 5, 89, 0, 0, 2287, 364, 1, 0, 0, 0, 2288, 2289, 5, 65, 0, 0, 2289, 2290, 5, 83, 0, 0, 2290, 366, 1, 0, 0, 0, 2291, 2292, 5, 65, 0, 0, 2292, 2293, 5, 83, 0, 0, 2293, 2294, 5, 89, 0, 0, 2294, 2295, 5, 77, 0, 0, 2295, 2296, 5, 77, 0, 0, 2296, 2297, 5, 69, 0, 0, 2297, 2298, 5, 84, 0, 0, 2298, 2299, 5, 82, 0, 0, 2299, 2300, 5, 73, 0, 0, 2300, 2301, 5, 67, 0, 0, 2301, 368, 1, 0, 0, 0, 2302, 2303, 5, 65, 0, 0, 2303, 2304, 5, 84, 0, 0, 2304, 370, 1, 0, 0, 0, 2305, 2306, 5, 65, 0, 0, 2306, 2307, 5, 86, 0, 0, 2307, 2308, 5, 71, 0, 0, 2308, 372, 1, 0, 0, 0, 2309, 2310, 5, 66, 0, 0, 2310, 2311, 5, 69, 0, 0, 2311, 2312, 5, 71, 0, 0, 2312, 2313, 5, 73, 0, 0, 2313, 2314, 5, 78, 0, 0, 2314, 374, 1, 0, 0, 0, 2315, 2316, 5, 66, 0, 0, 2316, 2317, 5, 69, 0, 0, 2317, 2318, 5, 84, 0, 0, 2318, 2319, 5, 87, 0, 0, 2319, 2320, 5, 69, 0, 0, 2320, 2321, 5, 69, 0, 0, 2321, 2322, 5, 78, 0, 0, 2322, 376, 1, 0, 0, 0, 2323, 2324, 5, 66, 0, 0, 2324, 2325, 5, 73, 0, 0, 2325, 2326, 5, 71, 0, 0, 2326, 2327, 5, 73, 0, 0, 2327, 2328, 5, 78, 0, 0, 2328, 2329, 5, 84, 0, 0, 2329, 378, 1, 0, 0, 0, 2330, 2331, 5, 66, 0, 0, 2331, 2332, 5, 73, 0, 0, 2332, 2333, 5, 78, 0, 0, 2333, 2334, 5, 65, 0, 0, 2334, 2335, 5, 82, 0, 0, 2335, 2336, 5, 89, 0, 0, 2336, 380, 1, 0, 0, 0, 2337, 2338, 5, 66, 0, 0, 2338, 2339, 5, 73, 0, 0, 2339, 2340, 5, 84, 0, 0, 2340, 382, 1, 0, 0, 0, 2341, 2342, 5, 66, 0, 0, 2342, 2343, 5, 76, 0, 0, 2343, 2344, 5, 79, 0, 0, 2344, 2345, 5, 66, 0, 0, 2345, 384, 1, 0, 0, 0, 2346, 2347, 5, 66, 0, 0, 2347, 2348, 5, 79, 0, 0, 2348, 2349, 5, 79, 0, 0, 2349, 2350, 5, 76, 0, 0, 2350, 2351, 5, 69, 0, 0, 2351, 2352, 5, 65, 0, 0, 2352, 2353, 5, 78, 0, 0, 2353, 386, 1, 0, 0, 0, 2354, 2355, 5, 66, 0, 0, 2355, 2356, 5, 79, 0, 0, 2356, 2357, 5, 84, 0, 0, 2357, 2358, 5, 72, 0, 0, 2358, 388, 1, 0, 0, 0, 2359, 2360, 5, 66, 0, 0, 2360, 2361, 5, 89, 0, 0, 2361, 390, 1, 0, 0, 0, 2362, 2363, 5, 67, 0, 0, 2363, 2364, 5, 65, 0, 0, 2364, 2365, 5, 76, 0, 0, 2365, 2366, 5, 76, 0, 0, 2366, 392, 1, 0, 0, 0, 2367, 2368, 5, 67, 0, 0, 2368, 2369, 5, 65, 0, 0, 2369, 2370, 5, 76, 0, 0, 2370, 2371, 5, 76, 0, 0, 2371, 2372, 5, 69, 0, 0, 2372, 2373, 5, 68, 0, 0, 2373, 394, 1, 0, 0, 0, 2374, 2375, 5, 67, 0, 0, 2375, 2376, 5, 65, 0, 0, 2376, 2377, 5, 83, 0, 0, 2377, 2378, 5, 67, 0, 0, 2378, 2379, 5, 65, 0, 0, 2379, 2380, 5, 68, 0, 0, 2380, 2381, 5, 69, 0, 0, 2381, 2382, 5, 68, 0, 0, 2382, 396, 1, 0, 0, 0, 2383, 2384, 5, 67, 0, 0, 2384, 2385, 5, 65, 0, 0, 2385, 2386, 5, 83, 0, 0, 2386, 2387, 5, 69, 0, 0, 2387, 398, 1, 0, 0, 0, 2388, 2389, 5, 67, 0, 0, 2389, 2390, 5, 65, 0, 0, 2390, 2391, 5, 83, 0, 0, 2391, 2392, 5, 84, 0, 0, 2392, 400, 1, 0, 0, 0, 2393, 2394, 5, 67, 0, 0, 2394, 2395, 5, 69, 0, 0, 2395, 2396, 5, 73, 0, 0, 2396, 2397, 5, 76, 0, 0, 2397, 402, 1, 0, 0, 0, 2398, 2399, 5, 67, 0, 0, 2399, 2400, 5, 72, 0, 0, 2400, 2401, 5, 65, 0, 0, 2401, 2402, 5, 82, 0, 0, 2402, 404, 1, 0, 0, 0, 2403, 2404, 5, 67, 0, 0, 2404, 2405, 5, 72, 0, 0, 2405, 2406, 5, 65, 0, 0, 2406, 2407, 5, 82, 0, 0, 2407, 2408, 5, 65, 0, 0, 2408, 2409, 5, 67, 0, 0, 2409, 2410, 5, 84, 0, 0, 2410, 2411, 5, 69, 0, 0, 2411, 2412, 5, 82, 0, 0, 2412, 406, 1, 0, 0, 0, 2413, 2414, 5, 67, 0, 0, 2414, 2415, 5, 72, 0, 0, 2415, 2416, 5, 69, 0, 0, 2416, 2417, 5, 67, 0, 0, 2417, 2418, 5, 75, 0, 0, 2418, 408, 1, 0, 0, 0, 2419, 2420, 5, 67, 0, 0, 2420, 2421, 5, 76, 0, 0, 2421, 2422, 5, 79, 0, 0, 2422, 2423, 5, 66, 0, 0, 2423, 410, 1, 0, 0, 0, 2424, 2425, 5, 67, 0, 0, 2425, 2426, 5, 76, 0, 0, 2426, 2427, 5, 79, 0, 0, 2427, 2428, 5, 83, 0, 0, 2428, 2429, 5, 69, 0, 0, 2429, 412, 1, 0, 0, 0, 2430, 2431, 5, 67, 0, 0, 2431, 2432, 5, 79, 0, 0, 2432, 2433, 5, 65, 0, 0, 2433, 2434, 5, 76, 0, 0, 2434, 2435, 5, 69, 0, 0, 2435, 2436, 5, 83, 0, 0, 2436, 2437, 5, 67, 0, 0, 2437, 2438, 5, 69, 0, 0, 2438, 414, 1, 0, 0, 0, 2439, 2440, 5, 67, 0, 0, 2440, 2441, 5, 79, 0, 0, 2441, 2442, 5, 76, 0, 0, 2442, 2443, 5, 76, 0, 0, 2443, 2444, 5, 65, 0, 0, 2444, 2445, 5, 84, 0, 0, 2445, 2446, 5, 69, 0, 0, 2446, 416, 1, 0, 0, 0, 2447, 2448, 5, 67, 0, 0, 2448, 2449, 5, 79, 0, 0, 2449, 2450, 5, 76, 0, 0, 2450, 2451, 5, 76, 0, 0, 2451, 2452, 5, 69, 0, 0, 2452, 2453, 5, 67, 0, 0, 2453, 2454, 5, 84, 0, 0, 2454, 418, 1, 0, 0, 0, 2455, 2456, 5, 67, 0, 0, 2456, 2457, 5, 79, 0, 0, 2457, 2458, 5, 76, 0, 0, 2458, 2459, 5, 85, 0, 0, 2459, 2460, 5, 77, 0, 0, 2460, 2461, 5, 78, 0, 0, 2461, 420, 1, 0, 0, 0, 2462, 2463, 5, 67, 0, 0, 2463, 2464, 5, 79, 0, 0, 2464, 2465, 5, 77, 0, 0, 2465, 2466, 5, 77, 0, 0, 2466, 2467, 5, 73, 0, 0, 2467, 2468, 5, 84, 0, 0, 2468, 422, 1, 0, 0, 0, 2469, 2470, 5, 67, 0, 0, 2470, 2471, 5, 79, 0, 0, 2471, 2472, 5, 78, 0, 0, 2472, 2473, 5, 78, 0, 0, 2473, 2474, 5, 69, 0, 0, 2474, 2475, 5, 67, 0, 0, 2475, 2476, 5, 84, 0, 0, 2476, 424, 1, 0, 0, 0, 2477, 2478, 5, 67, 0, 0, 2478, 2479, 5, 79, 0, 0, 2479, 2480, 5, 78, 0, 0, 2480, 2481, 5, 83, 0, 0, 2481, 2482, 5, 84, 0, 0, 2482, 2483, 5, 82, 0, 0, 2483, 2484, 5, 65, 0, 0, 2484, 2485, 5, 73, 0, 0, 2485, 2486, 5, 78, 0, 0, 2486, 2487, 5, 84, 0, 0, 2487, 426, 1, 0, 0, 0, 2488, 2489, 5, 67, 0, 0, 2489, 2490, 5, 79, 0, 0, 2490, 2491, 5, 78, 0, 0, 2491, 2492, 5, 84, 0, 0, 2492, 2493, 5, 65, 0, 0, 2493, 2494, 5, 73, 0, 0, 2494, 2495, 5, 78, 0, 0, 2495, 2496, 5, 83, 0, 0, 2496, 428, 1, 0, 0, 0, 2497, 2498, 5, 67, 0, 0, 2498, 2499, 5, 79, 0, 0, 2499, 2500, 5, 78, 0, 0, 2500, 2501, 5, 86, 0, 0, 2501, 2502, 5, 69, 0, 0, 2502, 2503, 5, 82, 0, 0, 2503, 2504, 5, 84, 0, 0, 2504, 430, 1, 0, 0, 0, 2505, 2506, 5, 67, 0, 0, 2506, 2507, 5, 79, 0, 0, 2507, 2508, 5, 85, 0, 0, 2508, 2509, 5, 78, 0, 0, 2509, 2510, 5, 84, 0, 0, 2510, 432, 1, 0, 0, 0, 2511, 2512, 5, 67, 0, 0, 2512, 2513, 5, 82, 0, 0, 2513, 2514, 5, 69, 0, 0, 2514, 2515, 5, 65, 0, 0, 2515, 2516, 5, 84, 0, 0, 2516, 2517, 5, 69, 0, 0, 2517, 434, 1, 0, 0, 0, 2518, 2519, 5, 67, 0, 0, 2519, 2520, 5, 82, 0, 0, 2520, 2521, 5, 79, 0, 0, 2521, 2522, 5, 83, 0, 0, 2522, 2523, 5, 83, 0, 0, 2523, 436, 1, 0, 0, 0, 2524, 2525, 5, 67, 0, 0, 2525, 2526, 5, 85, 0, 0, 2526, 2527, 5, 66, 0, 0, 2527, 2528, 5, 69, 0, 0, 2528, 438, 1, 0, 0, 0, 2529, 2530, 5, 67, 0, 0, 2530, 2531, 5, 85, 0, 0, 2531, 2532, 5, 82, 0, 0, 2532, 2533, 5, 82, 0, 0, 2533, 2534, 5, 69, 0, 0, 2534, 2535, 5, 78, 0, 0, 2535, 2536, 5, 84, 0, 0, 2536, 440, 1, 0, 0, 0, 2537, 2538, 5, 67, 0, 0, 2538, 2539, 5, 85, 0, 0, 2539, 2540, 5, 82, 0, 0, 2540, 2541, 5, 83, 0, 0, 2541, 2542, 5, 79, 0, 0, 2542, 2543, 5, 82, 0, 0, 2543, 442, 1, 0, 0, 0, 2544, 2545, 5, 67, 0, 0, 2545, 2546, 5, 89, 0, 0, 2546, 2547, 5, 67, 0, 0, 2547, 2548, 5, 76, 0, 0, 2548, 2549, 5, 69, 0, 0, 2549, 444, 1, 0, 0, 0, 2550, 2551, 5, 68, 0, 0, 2551, 2552, 5, 65, 0, 0, 2552, 2553, 5, 84, 0, 0, 2553, 2554, 5, 69, 0, 0, 2554, 446, 1, 0, 0, 0, 2555, 2556, 5, 68, 0, 0, 2556, 2557, 5, 65, 0, 0, 2557, 2558, 5, 84, 0, 0, 2558, 2559, 5, 69, 0, 0, 2559, 2560, 5, 84, 0, 0, 2560, 2561, 5, 73, 0, 0, 2561, 2562, 5, 77, 0, 0, 2562, 2563, 5, 69, 0, 0, 2563, 448, 1, 0, 0, 0, 2564, 2565, 5, 68, 0, 0, 2565, 2566, 5, 65, 0, 0, 2566, 2567, 5, 89, 0, 0, 2567, 450, 1, 0, 0, 0, 2568, 2569, 5, 68, 0, 0, 2569, 2570, 5, 69, 0, 0, 2570, 2571, 5, 67, 0, 0, 2571, 452, 1, 0, 0, 0, 2572, 2573, 5, 68, 0, 0, 2573, 2574, 5, 69, 0, 0, 2574, 2575, 5, 67, 0, 0, 2575, 2576, 5, 73, 0, 0, 2576, 2577, 5, 77, 0, 0, 2577, 2578, 5, 65, 0, 0, 2578, 2579, 5, 76, 0, 0, 2579, 454, 1, 0, 0, 0, 2580, 2581, 5, 68, 0, 0, 2581, 2582, 5, 69, 0, 0, 2582, 2583, 5, 67, 0, 0, 2583, 2584, 5, 76, 0, 0, 2584, 2585, 5, 65, 0, 0, 2585, 2586, 5, 82, 0, 0, 2586, 2587, 5, 69, 0, 0, 2587, 456, 1, 0, 0, 0, 2588, 2589, 5, 68, 0, 0, 2589, 2590, 5, 69, 0, 0, 2590, 2591, 5, 70, 0, 0, 2591, 2592, 5, 65, 0, 0, 2592, 2593, 5, 85, 0, 0, 2593, 2594, 5, 76, 0, 0, 2594, 2595, 5, 84, 0, 0, 2595, 458, 1, 0, 0, 0, 2596, 2597, 5, 68, 0, 0, 2597, 2598, 5, 69, 0, 0, 2598, 2599, 5, 70, 0, 0, 2599, 2600, 5, 73, 0, 0, 2600, 2601, 5, 78, 0, 0, 2601, 2602, 5, 69, 0, 0, 2602, 460, 1, 0, 0, 0, 2603, 2604, 5, 68, 0, 0, 2604, 2605, 5, 69, 0, 0, 2605, 2606, 5, 76, 0, 0, 2606, 2607, 5, 69, 0, 0, 2607, 2608, 5, 84, 0, 0, 2608, 2609, 5, 69, 0, 0, 2609, 462, 1, 0, 0, 0, 2610, 2611, 5, 68, 0, 0, 2611, 2612, 5, 69, 0, 0, 2612, 2613, 5, 83, 0, 0, 2613, 2614, 5, 67, 0, 0, 2614, 2615, 5, 82, 0, 0, 2615, 2616, 5, 73, 0, 0, 2616, 2617, 5, 66, 0, 0, 2617, 2618, 5, 69, 0, 0, 2618, 464, 1, 0, 0, 0, 2619, 2620, 5, 68, 0, 0, 2620, 2621, 5, 73, 0, 0, 2621, 2622, 5, 83, 0, 0, 2622, 2623, 5, 84, 0, 0, 2623, 2624, 5, 73, 0, 0, 2624, 2625, 5, 78, 0, 0, 2625, 2626, 5, 67, 0, 0, 2626, 2627, 5, 84, 0, 0, 2627, 466, 1, 0, 0, 0, 2628, 2629, 5, 68, 0, 0, 2629, 2630, 5, 79, 0, 0, 2630, 2631, 5, 85, 0, 0, 2631, 2632, 5, 66, 0, 0, 2632, 2633, 5, 76, 0, 0, 2633, 2634, 5, 69, 0, 0, 2634, 468, 1, 0, 0, 0, 2635, 2636, 5, 68, 0, 0, 2636, 2637, 5, 82, 0, 0, 2637, 2638, 5, 79, 0, 0, 2638, 2639, 5, 80, 0, 0, 2639, 470, 1, 0, 0, 0, 2640, 2641, 5, 69, 0, 0, 2641, 2642, 5, 65, 0, 0, 2642, 2643, 5, 67, 0, 0, 2643, 2644, 5, 72, 0, 0, 2644, 472, 1, 0, 0, 0, 2645, 2646, 5, 69, 0, 0, 2646, 2647, 5, 76, 0, 0, 2647, 2648, 5, 83, 0, 0, 2648, 2649, 5, 69, 0, 0, 2649, 474, 1, 0, 0, 0, 2650, 2651, 5, 69, 0, 0, 2651, 2652, 5, 78, 0, 0, 2652, 2653, 5, 68, 0, 0, 2653, 476, 1, 0, 0, 0, 2654, 2655, 5, 69, 0, 0, 2655, 2656, 5, 81, 0, 0, 2656, 2657, 5, 85, 0, 0, 2657, 2658, 5, 65, 0, 0, 2658, 2659, 5, 76, 0, 0, 2659, 2660, 5, 83, 0, 0, 2660, 478, 1, 0, 0, 0, 2661, 2662, 5, 69, 0, 0, 2662, 2663, 5, 83, 0, 0, 2663, 2664, 5, 67, 0, 0, 2664, 2665, 5, 65, 0, 0, 2665, 2666, 5, 80, 0, 0, 2666, 2667, 5, 69, 0, 0, 2667, 480, 1, 0, 0, 0, 2668, 2669, 5, 69, 0, 0, 2669, 2670, 5, 88, 0, 0, 2670, 2671, 5, 67, 0, 0, 2671, 2672, 5, 69, 0, 0, 2672, 2673, 5, 80, 0, 0, 2673, 2674, 5, 84, 0, 0, 2674, 482, 1, 0, 0, 0, 2675, 2676, 5, 69, 0, 0, 2676, 2677, 5, 88, 0, 0, 2677, 2678, 5, 69, 0, 0, 2678, 2679, 5, 67, 0, 0, 2679, 2680, 5, 85, 0, 0, 2680, 2681, 5, 84, 0, 0, 2681, 2682, 5, 69, 0, 0, 2682, 484, 1, 0, 0, 0, 2683, 2684, 5, 69, 0, 0, 2684, 2685, 5, 88, 0, 0, 2685, 2686, 5, 73, 0, 0, 2686, 2687, 5, 83, 0, 0, 2687, 2688, 5, 84, 0, 0, 2688, 2689, 5, 83, 0, 0, 2689, 486, 1, 0, 0, 0, 2690, 2691, 5, 69, 0, 0, 2691, 2692, 5, 88, 0, 0, 2692, 2693, 5, 80, 0, 0, 2693, 2694, 5, 76, 0, 0, 2694, 2695, 5, 65, 0, 0, 2695, 2696, 5, 73, 0, 0, 2696, 2697, 5, 78, 0, 0, 2697, 488, 1, 0, 0, 0, 2698, 2699, 5, 69, 0, 0, 2699, 2700, 5, 88, 0, 0, 2700, 2701, 5, 84, 0, 0, 2701, 2702, 5, 69, 0, 0, 2702, 2703, 5, 82, 0, 0, 2703, 2704, 5, 78, 0, 0, 2704, 2705, 5, 65, 0, 0, 2705, 2706, 5, 76, 0, 0, 2706, 490, 1, 0, 0, 0, 2707, 2708, 5, 69, 0, 0, 2708, 2709, 5, 88, 0, 0, 2709, 2710, 5, 84, 0, 0, 2710, 2711, 5, 82, 0, 0, 2711, 2712, 5, 65, 0, 0, 2712, 2713, 5, 67, 0, 0, 2713, 2714, 5, 84, 0, 0, 2714, 492, 1, 0, 0, 0, 2715, 2716, 5, 70, 0, 0, 2716, 2717, 5, 65, 0, 0, 2717, 2718, 5, 76, 0, 0, 2718, 2719, 5, 83, 0, 0, 2719, 2720, 5, 69, 0, 0, 2720, 494, 1, 0, 0, 0, 2721, 2722, 5, 70, 0, 0, 2722, 2723, 5, 76, 0, 0, 2723, 2724, 5, 79, 0, 0, 2724, 2725, 5, 65, 0, 0, 2725, 2726, 5, 84, 0, 0, 2726, 496, 1, 0, 0, 0, 2727, 2728, 5, 70, 0, 0, 2728, 2729, 5, 79, 0, 0, 2729, 2730, 5, 82, 0, 0, 2730, 498, 1, 0, 0, 0, 2731, 2732, 5, 70, 0, 0, 2732, 2733, 5, 82, 0, 0, 2733, 2734, 5, 79, 0, 0, 2734, 2735, 5, 77, 0, 0, 2735, 500, 1, 0, 0, 0, 2736, 2737, 5, 70, 0, 0, 2737, 2738, 5, 85, 0, 0, 2738, 2739, 5, 76, 0, 0, 2739, 2740, 5, 76, 0, 0, 2740, 502, 1, 0, 0, 0, 2741, 2742, 5, 70, 0, 0, 2742, 2743, 5, 85, 0, 0, 2743, 2744, 5, 78, 0, 0, 2744, 2745, 5, 67, 0, 0, 2745, 2746, 5, 84, 0, 0, 2746, 2747, 5, 73, 0, 0, 2747, 2748, 5, 79, 0, 0, 2748, 2749, 5, 78, 0, 0, 2749, 504, 1, 0, 0, 0, 2750, 2751, 5, 71, 0, 0, 2751, 2752, 5, 76, 0, 0, 2752, 2753, 5, 79, 0, 0, 2753, 2754, 5, 66, 0, 0, 2754, 2755, 5, 65, 0, 0, 2755, 2756, 5, 76, 0, 0, 2756, 506, 1, 0, 0, 0, 2757, 2758, 5, 71, 0, 0, 2758, 2759, 5, 82, 0, 0, 2759, 2760, 5, 65, 0, 0, 2760, 2761, 5, 78, 0, 0, 2761, 2762, 5, 84, 0, 0, 2762, 508, 1, 0, 0, 0, 2763, 2764, 5, 71, 0, 0, 2764, 2765, 5, 82, 0, 0, 2765, 2766, 5, 79, 0, 0, 2766, 2767, 5, 85, 0, 0, 2767, 2768, 5, 80, 0, 0, 2768, 510, 1, 0, 0, 0, 2769, 2770, 5, 71, 0, 0, 2770, 2771, 5, 82, 0, 0, 2771, 2772, 5, 79, 0, 0, 2772, 2773, 5, 85, 0, 0, 2773, 2774, 5, 80, 0, 0, 2774, 2775, 5, 73, 0, 0, 2775, 2776, 5, 78, 0, 0, 2776, 2777, 5, 71, 0, 0, 2777, 512, 1, 0, 0, 0, 2778, 2779, 5, 71, 0, 0, 2779, 2780, 5, 82, 0, 0, 2780, 2781, 5, 79, 0, 0, 2781, 2782, 5, 85, 0, 0, 2782, 2783, 5, 80, 0, 0, 2783, 2784, 5, 83, 0, 0, 2784, 514, 1, 0, 0, 0, 2785, 2786, 5, 72, 0, 0, 2786, 2787, 5, 65, 0, 0, 2787, 2788, 5, 86, 0, 0, 2788, 2789, 5, 73, 0, 0, 2789, 2790, 5, 78, 0, 0, 2790, 2791, 5, 71, 0, 0, 2791, 516, 1, 0, 0, 0, 2792, 2793, 5, 72, 0, 0, 2793, 2794, 5, 79, 0, 0, 2794, 2795, 5, 85, 0, 0, 2795, 2796, 5, 82, 0, 0, 2796, 518, 1, 0, 0, 0, 2797, 2798, 5, 73, 0, 0, 2798, 2799, 5, 77, 0, 0, 2799, 2800, 5, 80, 0, 0, 2800, 2801, 5, 79, 0, 0, 2801, 2802, 5, 82, 0, 0, 2802, 2803, 5, 84, 0, 0, 2803, 520, 1, 0, 0, 0, 2804, 2805, 5, 73, 0, 0, 2805, 2806, 5, 78, 0, 0, 2806, 522, 1, 0, 0, 0, 2807, 2808, 5, 73, 0, 0, 2808, 2809, 5, 78, 0, 0, 2809, 2810, 5, 67, 0, 0, 2810, 2811, 5, 76, 0, 0, 2811, 2812, 5, 85, 0, 0, 2812, 2813, 5, 68, 0, 0, 2813, 2814, 5, 73, 0, 0, 2814, 2815, 5, 78, 0, 0, 2815, 2816, 5, 71, 0, 0, 2816, 524, 1, 0, 0, 0, 2817, 2818, 5, 73, 0, 0, 2818, 2819, 5, 78, 0, 0, 2819, 2820, 5, 78, 0, 0, 2820, 2821, 5, 69, 0, 0, 2821, 2822, 5, 82, 0, 0, 2822, 526, 1, 0, 0, 0, 2823, 2824, 5, 73, 0, 0, 2824, 2825, 5, 78, 0, 0, 2825, 2826, 5, 79, 0, 0, 2826, 2827, 5, 85, 0, 0, 2827, 2828, 5, 84, 0, 0, 2828, 528, 1, 0, 0, 0, 2829, 2830, 5, 73, 0, 0, 2830, 2831, 5, 78, 0, 0, 2831, 2832, 5, 83, 0, 0, 2832, 2833, 5, 69, 0, 0, 2833, 2834, 5, 82, 0, 0, 2834, 2835, 5, 84, 0, 0, 2835, 530, 1, 0, 0, 0, 2836, 2837, 5, 73, 0, 0, 2837, 2838, 5, 78, 0, 0, 2838, 2839, 5, 84, 0, 0, 2839, 532, 1, 0, 0, 0, 2840, 2841, 5, 73, 0, 0, 2841, 2842, 5, 78, 0, 0, 2842, 2843, 5, 84, 0, 0, 2843, 2844, 5, 69, 0, 0, 2844, 2845, 5, 71, 0, 0, 2845, 2846, 5, 69, 0, 0, 2846, 2847, 5, 82, 0, 0, 2847, 534, 1, 0, 0, 0, 2848, 2849, 5, 73, 0, 0, 2849, 2850, 5, 78, 0, 0, 2850, 2851, 5, 84, 0, 0, 2851, 2852, 5, 69, 0, 0, 2852, 2853, 5, 82, 0, 0, 2853, 2854, 5, 83, 0, 0, 2854, 2855, 5, 69, 0, 0, 2855, 2856, 5, 67, 0, 0, 2856, 2857, 5, 84, 0, 0, 2857, 536, 1, 0, 0, 0, 2858, 2859, 5, 73, 0, 0, 2859, 2860, 5, 78, 0, 0, 2860, 2861, 5, 84, 0, 0, 2861, 2862, 5, 69, 0, 0, 2862, 2863, 5, 82, 0, 0, 2863, 2864, 5, 86, 0, 0, 2864, 2865, 5, 65, 0, 0, 2865, 2866, 5, 76, 0, 0, 2866, 538, 1, 0, 0, 0, 2867, 2868, 5, 73, 0, 0, 2868, 2869, 5, 78, 0, 0, 2869, 2870, 5, 84, 0, 0, 2870, 2871, 5, 79, 0, 0, 2871, 540, 1, 0, 0, 0, 2872, 2873, 5, 73, 0, 0, 2873, 2874, 5, 83, 0, 0, 2874, 542, 1, 0, 0, 0, 2875, 2876, 5, 74, 0, 0, 2876, 2877, 5, 79, 0, 0, 2877, 2878, 5, 73, 0, 0, 2878, 2879, 5, 78, 0, 0, 2879, 544, 1, 0, 0, 0, 2880, 2881, 5, 76, 0, 0, 2881, 2882, 5, 65, 0, 0, 2882, 2883, 5, 71, 0, 0, 2883, 546, 1, 0, 0, 0, 2884, 2885, 5, 76, 0, 0, 2885, 2886, 5, 65, 0, 0, 2886, 2887, 5, 78, 0, 0, 2887, 2888, 5, 71, 0, 0, 2888, 2889, 5, 85, 0, 0, 2889, 2890, 5, 65, 0, 0, 2890, 2891, 5, 71, 0, 0, 2891, 2892, 5, 69, 0, 0, 2892, 548, 1, 0, 0, 0, 2893, 2894, 5, 76, 0, 0, 2894, 2895, 5, 65, 0, 0, 2895, 2896, 5, 84, 0, 0, 2896, 2897, 5, 69, 0, 0, 2897, 2898, 5, 82, 0, 0, 2898, 2899, 5, 65, 0, 0, 2899, 2900, 5, 76, 0, 0, 2900, 550, 1, 0, 0, 0, 2901, 2902, 5, 76, 0, 0, 2902, 2903, 5, 69, 0, 0, 2903, 2904, 5, 65, 0, 0, 2904, 2905, 5, 68, 0, 0, 2905, 2906, 5, 73, 0, 0, 2906, 2907, 5, 78, 0, 0, 2907, 2908, 5, 71, 0, 0, 2908, 552, 1, 0, 0, 0, 2909, 2910, 5, 76, 0, 0, 2910, 2911, 5, 69, 0, 0, 2911, 2912, 5, 70, 0, 0, 2912, 2913, 5, 84, 0, 0, 2913, 554, 1, 0, 0, 0, 2914, 2915, 5, 76, 0, 0, 2915, 2916, 5, 73, 0, 0, 2916, 2917, 5, 75, 0, 0, 2917, 2918, 5, 69, 0, 0, 2918, 556, 1, 0, 0, 0, 2919, 2920, 5, 76, 0, 0, 2920, 2921, 5, 73, 0, 0, 2921, 2922, 5, 77, 0, 0, 2922, 2923, 5, 73, 0, 0, 2923, 2924, 5, 84, 0, 0, 2924, 558, 1, 0, 0, 0, 2925, 2926, 5, 76, 0, 0, 2926, 2927, 5, 79, 0, 0, 2927, 2928, 5, 67, 0, 0, 2928, 2929, 5, 65, 0, 0, 2929, 2930, 5, 76, 0, 0, 2930, 560, 1, 0, 0, 0, 2931, 2932, 5, 77, 0, 0, 2932, 2933, 5, 65, 0, 0, 2933, 2934, 5, 84, 0, 0, 2934, 2935, 5, 67, 0, 0, 2935, 2936, 5, 72, 0, 0, 2936, 562, 1, 0, 0, 0, 2937, 2938, 5, 77, 0, 0, 2938, 2939, 5, 65, 0, 0, 2939, 2940, 5, 84, 0, 0, 2940, 2941, 5, 67, 0, 0, 2941, 2942, 5, 72, 0, 0, 2942, 2943, 5, 95, 0, 0, 2943, 2944, 5, 82, 0, 0, 2944, 2945, 5, 69, 0, 0, 2945, 2946, 5, 67, 0, 0, 2946, 2947, 5, 79, 0, 0, 2947, 2948, 5, 71, 0, 0, 2948, 2949, 5, 78, 0, 0, 2949, 2950, 5, 73, 0, 0, 2950, 2951, 5, 90, 0, 0, 2951, 2952, 5, 69, 0, 0, 2952, 564, 1, 0, 0, 0, 2953, 2954, 5, 77, 0, 0, 2954, 2955, 5, 69, 0, 0, 2955, 2956, 5, 65, 0, 0, 2956, 2957, 5, 83, 0, 0, 2957, 2958, 5, 85, 0, 0, 2958, 2959, 5, 82, 0, 0, 2959, 2960, 5, 69, 0, 0, 2960, 2961, 5, 83, 0, 0, 2961, 566, 1, 0, 0, 0, 2962, 2963, 5, 77, 0, 0, 2963, 2964, 5, 69, 0, 0, 2964, 2965, 5, 82, 0, 0, 2965, 2966, 5, 71, 0, 0, 2966, 2967, 5, 69, 0, 0, 2967, 568, 1, 0, 0, 0, 2968, 2969, 5, 77, 0, 0, 2969, 2970, 5, 69, 0, 0, 2970, 2971, 5, 84, 0, 0, 2971, 2972, 5, 65, 0, 0, 2972, 2973, 5, 68, 0, 0, 2973, 2974, 5, 65, 0, 0, 2974, 2975, 5, 84, 0, 0, 2975, 2976, 5, 65, 0, 0, 2976, 570, 1, 0, 0, 0, 2977, 2978, 5, 77, 0, 0, 2978, 2979, 5, 73, 0, 0, 2979, 2980, 5, 78, 0, 0, 2980, 2981, 5, 85, 0, 0, 2981, 2982, 5, 83, 0, 0, 2982, 572, 1, 0, 0, 0, 2983, 2984, 5, 77, 0, 0, 2984, 2985, 5, 73, 0, 0, 2985, 2986, 5, 78, 0, 0, 2986, 2987, 5, 85, 0, 0, 2987, 2988, 5, 84, 0, 0, 2988, 2989, 5, 69, 0, 0, 2989, 574, 1, 0, 0, 0, 2990, 2991, 5, 77, 0, 0, 2991, 2992, 5, 79, 0, 0, 2992, 2993, 5, 68, 0, 0, 2993, 2994, 5, 73, 0, 0, 2994, 2995, 5, 70, 0, 0, 2995, 2996, 5, 73, 0, 0, 2996, 2997, 5, 69, 0, 0, 2997, 2998, 5, 83, 0, 0, 2998, 576, 1, 0, 0, 0, 2999, 3000, 5, 77, 0, 0, 3000, 3001, 5, 79, 0, 0, 3001, 3002, 5, 68, 0, 0, 3002, 3003, 5, 85, 0, 0, 3003, 3004, 5, 76, 0, 0, 3004, 3005, 5, 69, 0, 0, 3005, 578, 1, 0, 0, 0, 3006, 3007, 5, 77, 0, 0, 3007, 3008, 5, 79, 0, 0, 3008, 3009, 5, 78, 0, 0, 3009, 3010, 5, 84, 0, 0, 3010, 3011, 5, 72, 0, 0, 3011, 580, 1, 0, 0, 0, 3012, 3013, 5, 77, 0, 0, 3013, 3014, 5, 85, 0, 0, 3014, 3015, 5, 76, 0, 0, 3015, 3016, 5, 84, 0, 0, 3016, 3017, 5, 73, 0, 0, 3017, 3018, 5, 83, 0, 0, 3018, 3019, 5, 69, 0, 0, 3019, 3020, 5, 84, 0, 0, 3020, 582, 1, 0, 0, 0, 3021, 3022, 5, 78, 0, 0, 3022, 3023, 5, 65, 0, 0, 3023, 3024, 5, 84, 0, 0, 3024, 3025, 5, 85, 0, 0, 3025, 3026, 5, 82, 0, 0, 3026, 3027, 5, 65, 0, 0, 3027, 3028, 5, 76, 0, 0, 3028, 584, 1, 0, 0, 0, 3029, 3030, 5, 78, 0, 0, 3030, 3031, 5, 69, 0, 0, 3031, 3032, 5, 88, 0, 0, 3032, 3033, 5, 84, 0, 0, 3033, 586, 1, 0, 0, 0, 3034, 3035, 5, 78, 0, 0, 3035, 3036, 5, 79, 0, 0, 3036, 588, 1, 0, 0, 0, 3037, 3038, 5, 78, 0, 0, 3038, 3039, 5, 79, 0, 0, 3039, 3040, 5, 78, 0, 0, 3040, 3041, 5, 69, 0, 0, 3041, 590, 1, 0, 0, 0, 3042, 3043, 5, 78, 0, 0, 3043, 3044, 5, 79, 0, 0, 3044, 3045, 5, 84, 0, 0, 3045, 592, 1, 0, 0, 0, 3046, 3047, 5, 78, 0, 0, 3047, 3048, 5, 85, 0, 0, 3048, 3049, 5, 76, 0, 0, 3049, 3050, 5, 76, 0, 0, 3050, 594, 1, 0, 0, 0, 3051, 3052, 5, 78, 0, 0, 3052, 3053, 5, 85, 0, 0, 3053, 3054, 5, 77, 0, 0, 3054, 3055, 5, 69, 0, 0, 3055, 3056, 5, 82, 0, 0, 3056, 3057, 5, 73, 0, 0, 3057, 3058, 5, 67, 0, 0, 3058, 596, 1, 0, 0, 0, 3059, 3060, 5, 79, 0, 0, 3060, 3061, 5, 70, 0, 0, 3061, 598, 1, 0, 0, 0, 3062, 3063, 5, 79, 0, 0, 3063, 3064, 5, 70, 0, 0, 3064, 3065, 5, 70, 0, 0, 3065, 3066, 5, 83, 0, 0, 3066, 3067, 5, 69, 0, 0, 3067, 3068, 5, 84, 0, 0, 3068, 600, 1, 0, 0, 0, 3069, 3070, 5, 79, 0, 0, 3070, 3071, 5, 78, 0, 0, 3071, 602, 1, 0, 0, 0, 3072, 3073, 5, 79, 0, 0, 3073, 3074, 5, 78, 0, 0, 3074, 3075, 5, 69, 0, 0, 3075, 604, 1, 0, 0, 0, 3076, 3077, 5, 79, 0, 0, 3077, 3078, 5, 82, 0, 0, 3078, 606, 1, 0, 0, 0, 3079, 3080, 5, 79, 0, 0, 3080, 3081, 5, 82, 0, 0, 3081, 3082, 5, 68, 0, 0, 3082, 3083, 5, 69, 0, 0, 3083, 3084, 5, 82, 0, 0, 3084, 608, 1, 0, 0, 0, 3085, 3086, 5, 79, 0, 0, 3086, 3087, 5, 85, 0, 0, 3087, 3088, 5, 84, 0, 0, 3088, 610, 1, 0, 0, 0, 3089, 3090, 5, 79, 0, 0, 3090, 3091, 5, 85, 0, 0, 3091, 3092, 5, 84, 0, 0, 3092, 3093, 5, 69, 0, 0, 3093, 3094, 5, 82, 0, 0, 3094, 612, 1, 0, 0, 0, 3095, 3096, 5, 79, 0, 0, 3096, 3097, 5, 86, 0, 0, 3097, 3098, 5, 69, 0, 0, 3098, 3099, 5, 82, 0, 0, 3099, 614, 1, 0, 0, 0, 3100, 3101, 5, 79, 0, 0, 3101, 3102, 5, 86, 0, 0, 3102, 3103, 5, 69, 0, 0, 3103, 3104, 5, 82, 0, 0, 3104, 3105, 5, 76, 0, 0, 3105, 3106, 5, 65, 0, 0, 3106, 3107, 5, 89, 0, 0, 3107, 616, 1, 0, 0, 0, 3108, 3109, 5, 80, 0, 0, 3109, 3110, 5, 65, 0, 0, 3110, 3111, 5, 82, 0, 0, 3111, 3112, 5, 84, 0, 0, 3112, 3113, 5, 73, 0, 0, 3113, 3114, 5, 84, 0, 0, 3114, 3115, 5, 73, 0, 0, 3115, 3116, 5, 79, 0, 0, 3116, 3117, 5, 78, 0, 0, 3117, 618, 1, 0, 0, 0, 3118, 3119, 5, 80, 0, 0, 3119, 3120, 5, 65, 0, 0, 3120, 3121, 5, 84, 0, 0, 3121, 3122, 5, 84, 0, 0, 3122, 3123, 5, 69, 0, 0, 3123, 3124, 5, 82, 0, 0, 3124, 3125, 5, 78, 0, 0, 3125, 620, 1, 0, 0, 0, 3126, 3127, 5, 80, 0, 0, 3127, 3128, 5, 69, 0, 0, 3128, 3129, 5, 82, 0, 0, 3129, 622, 1, 0, 0, 0, 3130, 3131, 5, 80, 0, 0, 3131, 3132, 5, 69, 0, 0, 3132, 3133, 5, 82, 0, 0, 3133, 3134, 5, 67, 0, 0, 3134, 3135, 5, 69, 0, 0, 3135, 3136, 5, 78, 0, 0, 3136, 3137, 5, 84, 0, 0, 3137, 624, 1, 0, 0, 0, 3138, 3139, 5, 80, 0, 0, 3139, 3140, 5, 69, 0, 0, 3140, 3141, 5, 82, 0, 0, 3141, 3142, 5, 73, 0, 0, 3142, 3143, 5, 79, 0, 0, 3143, 3144, 5, 68, 0, 0, 3144, 626, 1, 0, 0, 0, 3145, 3146, 5, 80, 0, 0, 3146, 3147, 5, 79, 0, 0, 3147, 3148, 5, 83, 0, 0, 3148, 3149, 5, 73, 0, 0, 3149, 3150, 5, 84, 0, 0, 3150, 3151, 5, 73, 0, 0, 3151, 3152, 5, 79, 0, 0, 3152, 3153, 5, 78, 0, 0, 3153, 628, 1, 0, 0, 0, 3154, 3155, 5, 80, 0, 0, 3155, 3156, 5, 79, 0, 0, 3156, 3157, 5, 87, 0, 0, 3157, 3158, 5, 69, 0, 0, 3158, 3159, 5, 82, 0, 0, 3159, 630, 1, 0, 0, 0, 3160, 3161, 5, 80, 0, 0, 3161, 3162, 5, 82, 0, 0, 3162, 3163, 5, 73, 0, 0, 3163, 3164, 5, 77, 0, 0, 3164, 3165, 5, 65, 0, 0, 3165, 3166, 5, 82, 0, 0, 3166, 3167, 5, 89, 0, 0, 3167, 632, 1, 0, 0, 0, 3168, 3169, 5, 82, 0, 0, 3169, 3170, 5, 65, 0, 0, 3170, 3171, 5, 78, 0, 0, 3171, 3172, 5, 71, 0, 0, 3172, 3173, 5, 69, 0, 0, 3173, 634, 1, 0, 0, 0, 3174, 3175, 5, 82, 0, 0, 3175, 3176, 5, 65, 0, 0, 3176, 3177, 5, 78, 0, 0, 3177, 3178, 5, 75, 0, 0, 3178, 636, 1, 0, 0, 0, 3179, 3180, 5, 82, 0, 0, 3180, 3181, 5, 69, 0, 0, 3181, 3182, 5, 83, 0, 0, 3182, 3183, 5, 69, 0, 0, 3183, 3184, 5, 84, 0, 0, 3184, 638, 1, 0, 0, 0, 3185, 3186, 5, 82, 0, 0, 3186, 3187, 5, 69, 0, 0, 3187, 3188, 5, 86, 0, 0, 3188, 3189, 5, 79, 0, 0, 3189, 3190, 5, 75, 0, 0, 3190, 3191, 5, 69, 0, 0, 3191, 640, 1, 0, 0, 0, 3192, 3193, 5, 82, 0, 0, 3193, 3194, 5, 73, 0, 0, 3194, 3195, 5, 71, 0, 0, 3195, 3196, 5, 72, 0, 0, 3196, 3197, 5, 84, 0, 0, 3197, 642, 1, 0, 0, 0, 3198, 3199, 5, 82, 0, 0, 3199, 3200, 5, 76, 0, 0, 3200, 3201, 5, 73, 0, 0, 3201, 3202, 5, 75, 0, 0, 3202, 3203, 5, 69, 0, 0, 3203, 644, 1, 0, 0, 0, 3204, 3205, 5, 82, 0, 0, 3205, 3206, 5, 79, 0, 0, 3206, 3207, 5, 76, 0, 0, 3207, 3208, 5, 76, 0, 0, 3208, 3209, 5, 66, 0, 0, 3209, 3210, 5, 65, 0, 0, 3210, 3211, 5, 67, 0, 0, 3211, 3212, 5, 75, 0, 0, 3212, 646, 1, 0, 0, 0, 3213, 3214, 5, 82, 0, 0, 3214, 3215, 5, 79, 0, 0, 3215, 3216, 5, 76, 0, 0, 3216, 3217, 5, 76, 0, 0, 3217, 3218, 5, 85, 0, 0, 3218, 3219, 5, 80, 0, 0, 3219, 648, 1, 0, 0, 0, 3220, 3221, 5, 82, 0, 0, 3221, 3222, 5, 79, 0, 0, 3222, 3223, 5, 87, 0, 0, 3223, 650, 1, 0, 0, 0, 3224, 3225, 5, 82, 0, 0, 3225, 3226, 5, 79, 0, 0, 3226, 3227, 5, 87, 0, 0, 3227, 3228, 5, 83, 0, 0, 3228, 652, 1, 0, 0, 0, 3229, 3230, 5, 83, 0, 0, 3230, 3231, 5, 69, 0, 0, 3231, 3232, 5, 67, 0, 0, 3232, 3233, 5, 79, 0, 0, 3233, 3234, 5, 78, 0, 0, 3234, 3235, 5, 68, 0, 0, 3235, 654, 1, 0, 0, 0, 3236, 3237, 5, 83, 0, 0, 3237, 3238, 5, 69, 0, 0, 3238, 3239, 5, 76, 0, 0, 3239, 3240, 5, 69, 0, 0, 3240, 3241, 5, 67, 0, 0, 3241, 3242, 5, 84, 0, 0, 3242, 656, 1, 0, 0, 0, 3243, 3244, 5, 83, 0, 0, 3244, 3245, 5, 69, 0, 0, 3245, 3246, 5, 84, 0, 0, 3246, 658, 1, 0, 0, 0, 3247, 3248, 5, 83, 0, 0, 3248, 3249, 5, 72, 0, 0, 3249, 3250, 5, 79, 0, 0, 3250, 3251, 5, 87, 0, 0, 3251, 660, 1, 0, 0, 0, 3252, 3253, 5, 83, 0, 0, 3253, 3254, 5, 73, 0, 0, 3254, 3255, 5, 77, 0, 0, 3255, 3256, 5, 73, 0, 0, 3256, 3257, 5, 76, 0, 0, 3257, 3258, 5, 65, 0, 0, 3258, 3259, 5, 82, 0, 0, 3259, 662, 1, 0, 0, 0, 3260, 3261, 5, 83, 0, 0, 3261, 3262, 5, 75, 0, 0, 3262, 3263, 5, 73, 0, 0, 3263, 3264, 5, 80, 0, 0, 3264, 664, 1, 0, 0, 0, 3265, 3266, 5, 83, 0, 0, 3266, 3267, 5, 77, 0, 0, 3267, 3268, 5, 65, 0, 0, 3268, 3269, 5, 76, 0, 0, 3269, 3270, 5, 76, 0, 0, 3270, 3271, 5, 73, 0, 0, 3271, 3272, 5, 78, 0, 0, 3272, 3273, 5, 84, 0, 0, 3273, 666, 1, 0, 0, 0, 3274, 3275, 5, 83, 0, 0, 3275, 3276, 5, 84, 0, 0, 3276, 3277, 5, 65, 0, 0, 3277, 3278, 5, 82, 0, 0, 3278, 3279, 5, 84, 0, 0, 3279, 668, 1, 0, 0, 0, 3280, 3281, 5, 83, 0, 0, 3281, 3282, 5, 84, 0, 0, 3282, 3283, 5, 65, 0, 0, 3283, 3284, 5, 84, 0, 0, 3284, 3285, 5, 73, 0, 0, 3285, 3286, 5, 67, 0, 0, 3286, 670, 1, 0, 0, 0, 3287, 3288, 5, 83, 0, 0, 3288, 3289, 5, 85, 0, 0, 3289, 3290, 5, 66, 0, 0, 3290, 3291, 5, 83, 0, 0, 3291, 3292, 5, 84, 0, 0, 3292, 3293, 5, 82, 0, 0, 3293, 3294, 5, 73, 0, 0, 3294, 3295, 5, 78, 0, 0, 3295, 3296, 5, 71, 0, 0, 3296, 672, 1, 0, 0, 0, 3297, 3298, 5, 83, 0, 0, 3298, 3299, 5, 85, 0, 0, 3299, 3300, 5, 77, 0, 0, 3300, 674, 1, 0, 0, 0, 3301, 3302, 5, 83, 0, 0, 3302, 3303, 5, 89, 0, 0, 3303, 3304, 5, 77, 0, 0, 3304, 3305, 5, 77, 0, 0, 3305, 3306, 5, 69, 0, 0, 3306, 3307, 5, 84, 0, 0, 3307, 3308, 5, 82, 0, 0, 3308, 3309, 5, 73, 0, 0, 3309, 3310, 5, 67, 0, 0, 3310, 676, 1, 0, 0, 0, 3311, 3312, 5, 83, 0, 0, 3312, 3313, 5, 89, 0, 0, 3313, 3314, 5, 83, 0, 0, 3314, 3315, 5, 84, 0, 0, 3315, 3316, 5, 69, 0, 0, 3316, 3317, 5, 77, 0, 0, 3317, 678, 1, 0, 0, 0, 3318, 3319, 5, 83, 0, 0, 3319, 3320, 5, 89, 0, 0, 3320, 3321, 5, 83, 0, 0, 3321, 3322, 5, 84, 0, 0, 3322, 3323, 5, 69, 0, 0, 3323, 3324, 5, 77, 0, 0, 3324, 3325, 5, 95, 0, 0, 3325, 3326, 5, 84, 0, 0, 3326, 3327, 5, 73, 0, 0, 3327, 3328, 5, 77, 0, 0, 3328, 3329, 5, 69, 0, 0, 3329, 680, 1, 0, 0, 0, 3330, 3331, 5, 83, 0, 0, 3331, 3332, 5, 89, 0, 0, 3332, 3333, 5, 83, 0, 0, 3333, 3334, 5, 84, 0, 0, 3334, 3335, 5, 69, 0, 0, 3335, 3336, 5, 77, 0, 0, 3336, 3337, 5, 95, 0, 0, 3337, 3338, 5, 85, 0, 0, 3338, 3339, 5, 83, 0, 0, 3339, 3340, 5, 69, 0, 0, 3340, 3341, 5, 82, 0, 0, 3341, 682, 1, 0, 0, 0, 3342, 3343, 5, 84, 0, 0, 3343, 3344, 5, 65, 0, 0, 3344, 3345, 5, 66, 0, 0, 3345, 3346, 5, 76, 0, 0, 3346, 3347, 5, 69, 0, 0, 3347, 684, 1, 0, 0, 0, 3348, 3349, 5, 84, 0, 0, 3349, 3350, 5, 65, 0, 0, 3350, 3351, 5, 66, 0, 0, 3351, 3352, 5, 76, 0, 0, 3352, 3353, 5, 69, 0, 0, 3353, 3354, 5, 83, 0, 0, 3354, 3355, 5, 65, 0, 0, 3355, 3356, 5, 77, 0, 0, 3356, 3357, 5, 80, 0, 0, 3357, 3358, 5, 76, 0, 0, 3358, 3359, 5, 69, 0, 0, 3359, 686, 1, 0, 0, 0, 3360, 3361, 5, 84, 0, 0, 3361, 3362, 5, 72, 0, 0, 3362, 3363, 5, 69, 0, 0, 3363, 3364, 5, 78, 0, 0, 3364, 688, 1, 0, 0, 0, 3365, 3366, 5, 84, 0, 0, 3366, 3367, 5, 73, 0, 0, 3367, 3368, 5, 77, 0, 0, 3368, 3369, 5, 69, 0, 0, 3369, 690, 1, 0, 0, 0, 3370, 3371, 5, 84, 0, 0, 3371, 3372, 5, 73, 0, 0, 3372, 3373, 5, 77, 0, 0, 3373, 3374, 5, 69, 0, 0, 3374, 3375, 5, 83, 0, 0, 3375, 3376, 5, 84, 0, 0, 3376, 3377, 5, 65, 0, 0, 3377, 3378, 5, 77, 0, 0, 3378, 3379, 5, 80, 0, 0, 3379, 692, 1, 0, 0, 0, 3380, 3381, 5, 84, 0, 0, 3381, 3382, 5, 73, 0, 0, 3382, 3383, 5, 78, 0, 0, 3383, 3384, 5, 89, 0, 0, 3384, 3385, 5, 73, 0, 0, 3385, 3386, 5, 78, 0, 0, 3386, 3387, 5, 84, 0, 0, 3387, 694, 1, 0, 0, 0, 3388, 3389, 5, 84, 0, 0, 3389, 3390, 5, 79, 0, 0, 3390, 696, 1, 0, 0, 0, 3391, 3392, 5, 84, 0, 0, 3392, 3393, 5, 82, 0, 0, 3393, 3394, 5, 85, 0, 0, 3394, 3395, 5, 69, 0, 0, 3395, 698, 1, 0, 0, 0, 3396, 3397, 5, 84, 0, 0, 3397, 3398, 5, 82, 0, 0, 3398, 3399, 5, 85, 0, 0, 3399, 3400, 5, 78, 0, 0, 3400, 3401, 5, 67, 0, 0, 3401, 3402, 5, 65, 0, 0, 3402, 3403, 5, 84, 0, 0, 3403, 3404, 5, 69, 0, 0, 3404, 700, 1, 0, 0, 0, 3405, 3406, 5, 85, 0, 0, 3406, 3407, 5, 78, 0, 0, 3407, 3408, 5, 73, 0, 0, 3408, 3409, 5, 79, 0, 0, 3409, 3410, 5, 78, 0, 0, 3410, 702, 1, 0, 0, 0, 3411, 3412, 5, 85, 0, 0, 3412, 3413, 5, 78, 0, 0, 3413, 3414, 5, 73, 0, 0, 3414, 3415, 5, 81, 0, 0, 3415, 3416, 5, 85, 0, 0, 3416, 3417, 5, 69, 0, 0, 3417, 704, 1, 0, 0, 0, 3418, 3419, 5, 85, 0, 0, 3419, 3420, 5, 78, 0, 0, 3420, 3421, 5, 75, 0, 0, 3421, 3422, 5, 78, 0, 0, 3422, 3423, 5, 79, 0, 0, 3423, 3424, 5, 87, 0, 0, 3424, 3425, 5, 78, 0, 0, 3425, 706, 1, 0, 0, 0, 3426, 3427, 5, 85, 0, 0, 3427, 3428, 5, 78, 0, 0, 3428, 3429, 5, 78, 0, 0, 3429, 3430, 5, 69, 0, 0, 3430, 3431, 5, 83, 0, 0, 3431, 3432, 5, 84, 0, 0, 3432, 708, 1, 0, 0, 0, 3433, 3434, 5, 85, 0, 0, 3434, 3435, 5, 80, 0, 0, 3435, 3436, 5, 80, 0, 0, 3436, 3437, 5, 69, 0, 0, 3437, 3438, 5, 82, 0, 0, 3438, 710, 1, 0, 0, 0, 3439, 3440, 5, 85, 0, 0, 3440, 3441, 5, 80, 0, 0, 3441, 3442, 5, 83, 0, 0, 3442, 3443, 5, 69, 0, 0, 3443, 3444, 5, 82, 0, 0, 3444, 3445, 5, 84, 0, 0, 3445, 712, 1, 0, 0, 0, 3446, 3447, 5, 85, 0, 0, 3447, 3448, 5, 83, 0, 0, 3448, 3449, 5, 69, 0, 0, 3449, 3450, 5, 82, 0, 0, 3450, 714, 1, 0, 0, 0, 3451, 3452, 5, 85, 0, 0, 3452, 3453, 5, 83, 0, 0, 3453, 3454, 5, 73, 0, 0, 3454, 3455, 5, 78, 0, 0, 3455, 3456, 5, 71, 0, 0, 3456, 716, 1, 0, 0, 0, 3457, 3458, 5, 86, 0, 0, 3458, 3459, 5, 65, 0, 0, 3459, 3460, 5, 76, 0, 0, 3460, 3461, 5, 85, 0, 0, 3461, 3462, 5, 69, 0, 0, 3462, 718, 1, 0, 0, 0, 3463, 3464, 5, 86, 0, 0, 3464, 3465, 5, 65, 0, 0, 3465, 3466, 5, 76, 0, 0, 3466, 3467, 5, 85, 0, 0, 3467, 3468, 5, 69, 0, 0, 3468, 3469, 5, 83, 0, 0, 3469, 720, 1, 0, 0, 0, 3470, 3471, 5, 86, 0, 0, 3471, 3472, 5, 65, 0, 0, 3472, 3473, 5, 82, 0, 0, 3473, 3474, 5, 66, 0, 0, 3474, 3475, 5, 73, 0, 0, 3475, 3476, 5, 78, 0, 0, 3476, 3477, 5, 65, 0, 0, 3477, 3478, 5, 82, 0, 0, 3478, 3479, 5, 89, 0, 0, 3479, 722, 1, 0, 0, 0, 3480, 3481, 5, 86, 0, 0, 3481, 3482, 5, 65, 0, 0, 3482, 3483, 5, 82, 0, 0, 3483, 3484, 5, 67, 0, 0, 3484, 3485, 5, 72, 0, 0, 3485, 3486, 5, 65, 0, 0, 3486, 3487, 5, 82, 0, 0, 3487, 724, 1, 0, 0, 0, 3488, 3489, 5, 87, 0, 0, 3489, 3490, 5, 72, 0, 0, 3490, 3491, 5, 69, 0, 0, 3491, 3492, 5, 78, 0, 0, 3492, 726, 1, 0, 0, 0, 3493, 3494, 5, 87, 0, 0, 3494, 3495, 5, 72, 0, 0, 3495, 3496, 5, 69, 0, 0, 3496, 3497, 5, 82, 0, 0, 3497, 3498, 5, 69, 0, 0, 3498, 728, 1, 0, 0, 0, 3499, 3500, 5, 87, 0, 0, 3500, 3501, 5, 73, 0, 0, 3501, 3502, 5, 78, 0, 0, 3502, 3503, 5, 68, 0, 0, 3503, 3504, 5, 79, 0, 0, 3504, 3505, 5, 87, 0, 0, 3505, 730, 1, 0, 0, 0, 3506, 3507, 5, 87, 0, 0, 3507, 3508, 5, 73, 0, 0, 3508, 3509, 5, 84, 0, 0, 3509, 3510, 5, 72, 0, 0, 3510, 732, 1, 0, 0, 0, 3511, 3512, 5, 87, 0, 0, 3512, 3513, 5, 73, 0, 0, 3513, 3514, 5, 84, 0, 0, 3514, 3515, 5, 72, 0, 0, 3515, 3516, 5, 73, 0, 0, 3516, 3517, 5, 78, 0, 0, 3517, 734, 1, 0, 0, 0, 3518, 3519, 5, 87, 0, 0, 3519, 3520, 5, 73, 0, 0, 3520, 3521, 5, 84, 0, 0, 3521, 3522, 5, 72, 0, 0, 3522, 3523, 5, 79, 0, 0, 3523, 3524, 5, 85, 0, 0, 3524, 3525, 5, 84, 0, 0, 3525, 736, 1, 0, 0, 0, 3526, 3527, 5, 89, 0, 0, 3527, 3528, 5, 69, 0, 0, 3528, 3529, 5, 65, 0, 0, 3529, 3530, 5, 82, 0, 0, 3530, 738, 1, 0, 0, 0, 3531, 3532, 5, 61, 0, 0, 3532, 740, 1, 0, 0, 0, 3533, 3534, 5, 62, 0, 0, 3534, 742, 1, 0, 0, 0, 3535, 3536, 5, 60, 0, 0, 3536, 744, 1, 0, 0, 0, 3537, 3538, 5, 33, 0, 0, 3538, 746, 1, 0, 0, 0, 3539, 3540, 5, 126, 0, 0, 3540, 748, 1, 0, 0, 0, 3541, 3542, 5, 124, 0, 0, 3542, 750, 1, 0, 0, 0, 3543, 3544, 5, 38, 0, 0, 3544, 752, 1, 0, 0, 0, 3545, 3546, 5, 94, 0, 0, 3546, 754, 1, 0, 0, 0, 3547, 3548, 5, 46, 0, 0, 3548, 756, 1, 0, 0, 0, 3549, 3550, 5, 91, 0, 0, 3550, 758, 1, 0, 0, 0, 3551, 3552, 5, 93, 0, 0, 3552, 760, 1, 0, 0, 0, 3553, 3554, 5, 40, 0, 0, 3554, 762, 1, 0, 0, 0, 3555, 3556, 5, 41, 0, 0, 3556, 764, 1, 0, 0, 0, 3557, 3558, 5, 123, 0, 0, 3558, 766, 1, 0, 0, 0, 3559, 3560, 5, 125, 0, 0, 3560, 768, 1, 0, 0, 0, 3561, 3562, 5, 44, 0, 0, 3562, 770, 1, 0, 0, 0, 3563, 3564, 5, 59, 0, 0, 3564, 772, 1, 0, 0, 0, 3565, 3566, 5, 64, 0, 0, 3566, 774, 1, 0, 0, 0, 3567, 3568, 5, 39, 0, 0, 3568, 776, 1, 0, 0, 0, 3569, 3570, 5, 34, 0, 0, 3570, 778, 1, 0, 0, 0, 3571, 3572, 5, 96, 0, 0, 3572, 780, 1, 0, 0, 0, 3573, 3574, 5, 58, 0, 0, 3574, 782, 1, 0, 0, 0, 3575, 3576, 5, 42, 0, 0, 3576, 784, 1, 0, 0, 0, 3577, 3578, 5, 95, 0, 0, 3578, 786, 1, 0, 0, 0, 3579, 3580, 5, 45, 0, 0, 3580, 788, 1, 0, 0, 0, 3581, 3582, 5, 43, 0, 0, 3582, 790, 1, 0, 0, 0, 3583, 3584, 5, 37, 0, 0, 3584, 792, 1, 0, 0, 0, 3585, 3586, 5, 124, 0, 0, 3586, 3587, 5, 124, 0, 0, 3587, 794, 1, 0, 0, 0, 3588, 3589, 5, 45, 0, 0, 3589, 3590, 5, 45, 0, 0, 3590, 796, 1, 0, 0, 0, 3591, 3592, 5, 47, 0, 0, 3592, 798, 1, 0, 0, 0, 3593, 3594, 5, 63, 0, 0, 3594, 800, 1, 0, 0, 0, 3595, 3596, 5, 61, 0, 0, 3596, 3597, 5, 62, 0, 0, 3597, 802, 1, 0, 0, 0, 3598, 3602, 3, 827, 413, 0, 3599, 3602, 3, 829, 414, 0, 3600, 3602, 3, 833, 416, 0, 3601, 3598, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3600, 1, 0, 0, 0, 3602, 804, 1, 0, 0, 0, 3603, 3605, 3, 823, 411, 0, 3604, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 806, 1, 0, 0, 0, 3608, 3610, 3, 823, 411, 0, 3609, 3608, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3614, 1, 0, 0, 0, 3613, 3609, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 5, 46, 0, 0, 3616, 3618, 3, 823, 411, 0, 3617, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3652, 1, 0, 0, 0, 3621, 3623, 3, 823, 411, 0, 3622, 3621, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3626, 1, 0, 0, 0, 3626, 3627, 5, 46, 0, 0, 3627, 3628, 3, 819, 409, 0, 3628, 3652, 1, 0, 0, 0, 3629, 3631, 3, 823, 411, 0, 3630, 3629, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3635, 1, 0, 0, 0, 3634, 3630, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3636, 1, 0, 0, 0, 3636, 3638, 5, 46, 0, 0, 3637, 3639, 3, 823, 411, 0, 3638, 3637, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 3, 819, 409, 0, 3643, 3652, 1, 0, 0, 0, 3644, 3646, 3, 823, 411, 0, 3645, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3650, 3, 819, 409, 0, 3650, 3652, 1, 0, 0, 0, 3651, 3613, 1, 0, 0, 0, 3651, 3622, 1, 0, 0, 0, 3651, 3634, 1, 0, 0, 0, 3651, 3645, 1, 0, 0, 0, 3652, 808, 1, 0, 0, 0, 3653, 3654, 3, 831, 415, 0, 3654, 810, 1, 0, 0, 0, 3655, 3656, 3, 821, 410, 0, 3656, 812, 1, 0, 0, 0, 3657, 3658, 3, 815, 407, 0, 3658, 814, 1, 0, 0, 0, 3659, 3663, 7, 2, 0, 0, 3660, 3662, 8, 3, 0, 0, 3661, 3660, 1, 0, 0, 0, 3662, 3665, 1, 0, 0, 0, 3663, 3661, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3667, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3666, 3659, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3666, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 816, 1, 0, 0, 0, 3670, 3678, 5, 96, 0, 0, 3671, 3672, 5, 92, 0, 0, 3672, 3677, 9, 0, 0, 0, 3673, 3674, 5, 96, 0, 0, 3674, 3677, 5, 96, 0, 0, 3675, 3677, 8, 4, 0, 0, 3676, 3671, 1, 0, 0, 0, 3676, 3673, 1, 0, 0, 0, 3676, 3675, 1, 0, 0, 0, 3677, 3680, 1, 0, 0, 0, 3678, 3676, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3681, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3681, 3682, 5, 96, 0, 0, 3682, 818, 1, 0, 0, 0, 3683, 3685, 5, 69, 0, 0, 3684, 3686, 7, 5, 0, 0, 3685, 3684, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 1, 0, 0, 0, 3687, 3689, 3, 823, 411, 0, 3688, 3687, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 820, 1, 0, 0, 0, 3692, 3694, 7, 6, 0, 0, 3693, 3692, 1, 0, 0, 0, 3694, 3697, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3696, 3699, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3700, 7, 7, 0, 0, 3699, 3698, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3706, 1, 0, 0, 0, 3703, 3705, 7, 6, 0, 0, 3704, 3703, 1, 0, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 822, 1, 0, 0, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3710, 7, 8, 0, 0, 3710, 824, 1, 0, 0, 0, 3711, 3712, 7, 9, 0, 0, 3712, 826, 1, 0, 0, 0, 3713, 3721, 5, 34, 0, 0, 3714, 3715, 5, 92, 0, 0, 3715, 3720, 9, 0, 0, 0, 3716, 3717, 5, 34, 0, 0, 3717, 3720, 5, 34, 0, 0, 3718, 3720, 8, 10, 0, 0, 3719, 3714, 1, 0, 0, 0, 3719, 3716, 1, 0, 0, 0, 3719, 3718, 1, 0, 0, 0, 3720, 3723, 1, 0, 0, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3724, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3725, 5, 34, 0, 0, 3725, 828, 1, 0, 0, 0, 3726, 3734, 5, 39, 0, 0, 3727, 3728, 5, 92, 0, 0, 3728, 3733, 9, 0, 0, 0, 3729, 3730, 5, 39, 0, 0, 3730, 3733, 5, 39, 0, 0, 3731, 3733, 8, 11, 0, 0, 3732, 3727, 1, 0, 0, 0, 3732, 3729, 1, 0, 0, 0, 3732, 3731, 1, 0, 0, 0, 3733, 3736, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3734, 1, 0, 0, 0, 3737, 3738, 5, 39, 0, 0, 3738, 830, 1, 0, 0, 0, 3739, 3740, 5, 66, 0, 0, 3740, 3742, 5, 39, 0, 0, 3741, 3743, 7, 12, 0, 0, 3742, 3741, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3742, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3747, 5, 39, 0, 0, 3747, 832, 1, 0, 0, 0, 3748, 3756, 5, 96, 0, 0, 3749, 3750, 5, 92, 0, 0, 3750, 3755, 9, 0, 0, 0, 3751, 3752, 5, 96, 0, 0, 3752, 3755, 5, 96, 0, 0, 3753, 3755, 8, 4, 0, 0, 3754, 3749, 1, 0, 0, 0, 3754, 3751, 1, 0, 0, 0, 3754, 3753, 1, 0, 0, 0, 3755, 3758, 1, 0, 0, 0, 3756, 3754, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3759, 1, 0, 0, 0, 3758, 3756, 1, 0, 0, 0, 3759, 3760, 5, 96, 0, 0, 3760, 834, 1, 0, 0, 0, 37, 0, 838, 848, 859, 864, 868, 872, 878, 882, 884, 3601, 3606, 3611, 3613, 3619, 3624, 3632, 3634, 3640, 3647, 3651, 3663, 3668, 3676, 3678, 3685, 3690, 3695, 3701, 3706, 3719, 3721, 3732, 3734, 3744, 3754, 3756, 1, 0, 1, 0] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.tokens b/src/lib/flinksql/FlinkSqlLexer.tokens index 3b1fd9d..a5841d1 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -174,232 +174,237 @@ KW_YEARS=173 KW_ZONE=174 KW_ABS=175 KW_ALL=176 -ALLOW=177 +KW_ALLOW=177 KW_ALTER=178 KW_AND=179 KW_ANY=180 KW_ARE=181 KW_ARRAY=182 KW_AS=183 -KW_AT=184 -KW_AVG=185 -KW_BEGIN=186 -KW_BETWEEN=187 -KW_BIGINT=188 -KW_BINARY=189 -KW_BIT=190 -KW_BLOB=191 -KW_BOOLEAN=192 -KW_BOTH=193 -KW_BY=194 -KW_CALL=195 -KW_CALLED=196 -KW_CASCADED=197 -KW_CASE=198 -KW_CAST=199 -KW_CEIL=200 -KW_CHAR=201 -KW_CHARACTER=202 -KW_CHECK=203 -KW_CLOB=204 -KW_CLOSE=205 -KW_COALESCE=206 -KW_COLLATE=207 -KW_COLLECT=208 -KW_COLUMN=209 -KW_COMMIT=210 -KW_CONNECT=211 -KW_CONSTRAINT=212 -KW_CONTAINS=213 -KW_CONVERT=214 -KW_COUNT=215 -KW_CREATE=216 -KW_CROSS=217 -KW_CUBE=218 -KW_CURRENT=219 -KW_CURSOR=220 -KW_CYCLE=221 -KW_DATE=222 -KW_DATETIME=223 -KW_DAY=224 -KW_DEC=225 -KW_DECIMAL=226 -KW_DECLARE=227 -KW_DEFAULT=228 -KW_DEFINE=229 -KW_DELETE=230 -KW_DESCRIBE=231 -KW_DISTINCT=232 -KW_DOUBLE=233 -KW_DROP=234 -KW_EACH=235 -KW_ELSE=236 -KW_END=237 -KW_EQUALS=238 -KW_EXCEPT=239 -KW_EXECUTE=240 -KW_EXISTS=241 -KW_EXPLAIN=242 -KW_EXTERNAL=243 -KW_EXTRACT=244 -KW_FALSE=245 -KW_FLOAT=246 -KW_FOR=247 -KW_FROM=248 -KW_FULL=249 -KW_FUNCTION=250 -KW_GLOBAL=251 -KW_GRANT=252 -KW_GROUP=253 -KW_GROUPING=254 -KW_GROUPS=255 -KW_HAVING=256 -KW_HOUR=257 -KW_IMPORT=258 -KW_IN=259 -KW_INCLUDING=260 -KW_INNER=261 -KW_INOUT=262 -KW_INSERT=263 -KW_INT=264 -KW_INTEGER=265 -KW_INTERSECT=266 -KW_INTERVAL=267 -KW_INTO=268 -KW_IS=269 -KW_JOIN=270 -KW_LAG=271 -KW_LANGUAGE=272 -KW_LATERAL=273 -KW_LEADING=274 -KW_LEFT=275 -KW_LIKE=276 -KW_LIMIT=277 -KW_LOCAL=278 -KW_MATCH=279 -KW_MATCH_RECOGNIZE=280 -KW_MEASURES=281 -KW_MERGE=282 -KW_METADATA=283 -KW_MINUS=284 -KW_MINUTE=285 -KW_MODIFIES=286 -KW_MODULE=287 -KW_MONTH=288 -KW_MULTISET=289 -KW_NATURAL=290 -KW_NEXT=291 -KW_NO=292 -KW_NONE=293 -KW_NOT=294 -KW_NULL=295 -KW_NUMERIC=296 -KW_OF=297 -KW_OFFSET=298 -KW_ON=299 -KW_ONE=300 -KW_OR=301 -KW_ORDER=302 -KW_OUT=303 -KW_OUTER=304 -KW_OVER=305 -KW_OVERLAY=306 -KW_PARTITION=307 -KW_PATTERN=308 -KW_PER=309 -KW_PERCENT=310 -KW_PERIOD=311 -KW_POSITION=312 -KW_PRIMARY=313 -KW_RANGE=314 -KW_RANK=315 -KW_RESET=316 -KW_REVOKE=317 -KW_RIGHT=318 -KW_RLIKE=319 -KW_ROLLBACK=320 -KW_ROLLUP=321 -KW_ROW=322 -KW_ROWS=323 -KW_SECOND=324 -KW_SELECT=325 -KW_SET=326 -KW_SHOW=327 -KW_SKIP=328 -KW_SMALLINT=329 -KW_START=330 -KW_STATIC=331 -KW_SUBSTRING=332 -KW_SUM=333 -KW_SYSTEM=334 -KW_SYSTEM_TIME=335 -KW_SYSTEM_USER=336 -KW_TABLE=337 -KW_TABLESAMPLE=338 -KW_THEN=339 -KW_TIME=340 -KW_TIMESTAMP=341 -KW_TINYINT=342 -KW_TO=343 -KW_TRUE=344 -KW_TRUNCATE=345 -KW_UNION=346 -KW_UNIQUE=347 -KW_UNKNOWN=348 -KW_UNNEST=349 -KW_UPPER=350 -KW_UPSERT=351 -KW_USER=352 -KW_USING=353 -KW_VALUE=354 -KW_VALUES=355 -KW_VARBINARY=356 -KW_VARCHAR=357 -KW_WHEN=358 -KW_WHERE=359 -KW_WINDOW=360 -KW_WITH=361 -KW_WITHIN=362 -KW_WITHOUT=363 -KW_YEAR=364 -EQUAL_SYMBOL=365 -GREATER_SYMBOL=366 -LESS_SYMBOL=367 -EXCLAMATION_SYMBOL=368 -BIT_NOT_OP=369 -BIT_OR_OP=370 -BIT_AND_OP=371 -BIT_XOR_OP=372 -DOT=373 -LS_BRACKET=374 -RS_BRACKET=375 -LR_BRACKET=376 -RR_BRACKET=377 -LB_BRACKET=378 -RB_BRACKET=379 -COMMA=380 -SEMICOLON=381 -AT_SIGN=382 -SINGLE_QUOTE_SYMB=383 -DOUBLE_QUOTE_SYMB=384 -REVERSE_QUOTE_SYMB=385 -COLON_SYMB=386 -ASTERISK_SIGN=387 -UNDERLINE_SIGN=388 -HYPNEN_SIGN=389 -ADD_SIGN=390 -PENCENT_SIGN=391 -DOUBLE_VERTICAL_SIGN=392 -DOUBLE_HYPNEN_SIGN=393 -SLASH_SIGN=394 -QUESTION_MARK_SIGN=395 -DOUBLE_RIGHT_ARROW=396 -STRING_LITERAL=397 -DIG_LITERAL=398 -REAL_LITERAL=399 -BIT_STRING=400 -ID_LITERAL=401 -FILE_PATH=402 +KW_ASYMMETRIC=184 +KW_AT=185 +KW_AVG=186 +KW_BEGIN=187 +KW_BETWEEN=188 +KW_BIGINT=189 +KW_BINARY=190 +KW_BIT=191 +KW_BLOB=192 +KW_BOOLEAN=193 +KW_BOTH=194 +KW_BY=195 +KW_CALL=196 +KW_CALLED=197 +KW_CASCADED=198 +KW_CASE=199 +KW_CAST=200 +KW_CEIL=201 +KW_CHAR=202 +KW_CHARACTER=203 +KW_CHECK=204 +KW_CLOB=205 +KW_CLOSE=206 +KW_COALESCE=207 +KW_COLLATE=208 +KW_COLLECT=209 +KW_COLUMN=210 +KW_COMMIT=211 +KW_CONNECT=212 +KW_CONSTRAINT=213 +KW_CONTAINS=214 +KW_CONVERT=215 +KW_COUNT=216 +KW_CREATE=217 +KW_CROSS=218 +KW_CUBE=219 +KW_CURRENT=220 +KW_CURSOR=221 +KW_CYCLE=222 +KW_DATE=223 +KW_DATETIME=224 +KW_DAY=225 +KW_DEC=226 +KW_DECIMAL=227 +KW_DECLARE=228 +KW_DEFAULT=229 +KW_DEFINE=230 +KW_DELETE=231 +KW_DESCRIBE=232 +KW_DISTINCT=233 +KW_DOUBLE=234 +KW_DROP=235 +KW_EACH=236 +KW_ELSE=237 +KW_END=238 +KW_EQUALS=239 +KW_ESCAPE=240 +KW_EXCEPT=241 +KW_EXECUTE=242 +KW_EXISTS=243 +KW_EXPLAIN=244 +KW_EXTERNAL=245 +KW_EXTRACT=246 +KW_FALSE=247 +KW_FLOAT=248 +KW_FOR=249 +KW_FROM=250 +KW_FULL=251 +KW_FUNCTION=252 +KW_GLOBAL=253 +KW_GRANT=254 +KW_GROUP=255 +KW_GROUPING=256 +KW_GROUPS=257 +KW_HAVING=258 +KW_HOUR=259 +KW_IMPORT=260 +KW_IN=261 +KW_INCLUDING=262 +KW_INNER=263 +KW_INOUT=264 +KW_INSERT=265 +KW_INT=266 +KW_INTEGER=267 +KW_INTERSECT=268 +KW_INTERVAL=269 +KW_INTO=270 +KW_IS=271 +KW_JOIN=272 +KW_LAG=273 +KW_LANGUAGE=274 +KW_LATERAL=275 +KW_LEADING=276 +KW_LEFT=277 +KW_LIKE=278 +KW_LIMIT=279 +KW_LOCAL=280 +KW_MATCH=281 +KW_MATCH_RECOGNIZE=282 +KW_MEASURES=283 +KW_MERGE=284 +KW_METADATA=285 +KW_MINUS=286 +KW_MINUTE=287 +KW_MODIFIES=288 +KW_MODULE=289 +KW_MONTH=290 +KW_MULTISET=291 +KW_NATURAL=292 +KW_NEXT=293 +KW_NO=294 +KW_NONE=295 +KW_NOT=296 +KW_NULL=297 +KW_NUMERIC=298 +KW_OF=299 +KW_OFFSET=300 +KW_ON=301 +KW_ONE=302 +KW_OR=303 +KW_ORDER=304 +KW_OUT=305 +KW_OUTER=306 +KW_OVER=307 +KW_OVERLAY=308 +KW_PARTITION=309 +KW_PATTERN=310 +KW_PER=311 +KW_PERCENT=312 +KW_PERIOD=313 +KW_POSITION=314 +KW_POWER=315 +KW_PRIMARY=316 +KW_RANGE=317 +KW_RANK=318 +KW_RESET=319 +KW_REVOKE=320 +KW_RIGHT=321 +KW_RLIKE=322 +KW_ROLLBACK=323 +KW_ROLLUP=324 +KW_ROW=325 +KW_ROWS=326 +KW_SECOND=327 +KW_SELECT=328 +KW_SET=329 +KW_SHOW=330 +KW_SIMILAR=331 +KW_SKIP=332 +KW_SMALLINT=333 +KW_START=334 +KW_STATIC=335 +KW_SUBSTRING=336 +KW_SUM=337 +KW_SYMMETRIC=338 +KW_SYSTEM=339 +KW_SYSTEM_TIME=340 +KW_SYSTEM_USER=341 +KW_TABLE=342 +KW_TABLESAMPLE=343 +KW_THEN=344 +KW_TIME=345 +KW_TIMESTAMP=346 +KW_TINYINT=347 +KW_TO=348 +KW_TRUE=349 +KW_TRUNCATE=350 +KW_UNION=351 +KW_UNIQUE=352 +KW_UNKNOWN=353 +KW_UNNEST=354 +KW_UPPER=355 +KW_UPSERT=356 +KW_USER=357 +KW_USING=358 +KW_VALUE=359 +KW_VALUES=360 +KW_VARBINARY=361 +KW_VARCHAR=362 +KW_WHEN=363 +KW_WHERE=364 +KW_WINDOW=365 +KW_WITH=366 +KW_WITHIN=367 +KW_WITHOUT=368 +KW_YEAR=369 +EQUAL_SYMBOL=370 +GREATER_SYMBOL=371 +LESS_SYMBOL=372 +EXCLAMATION_SYMBOL=373 +BIT_NOT_OP=374 +BIT_OR_OP=375 +BIT_AND_OP=376 +BIT_XOR_OP=377 +DOT=378 +LS_BRACKET=379 +RS_BRACKET=380 +LR_BRACKET=381 +RR_BRACKET=382 +LB_BRACKET=383 +RB_BRACKET=384 +COMMA=385 +SEMICOLON=386 +AT_SIGN=387 +SINGLE_QUOTE_SYMB=388 +DOUBLE_QUOTE_SYMB=389 +REVERSE_QUOTE_SYMB=390 +COLON_SYMB=391 +ASTERISK_SIGN=392 +UNDERLINE_SIGN=393 +HYPNEN_SIGN=394 +ADD_SIGN=395 +PENCENT_SIGN=396 +DOUBLE_VERTICAL_SIGN=397 +DOUBLE_HYPNEN_SIGN=398 +SLASH_SIGN=399 +QUESTION_MARK_SIGN=400 +DOUBLE_RIGHT_ARROW=401 +STRING_LITERAL=402 +DIG_LITERAL=403 +REAL_LITERAL=404 +BIT_STRING=405 +ID_LITERAL=406 +FILE_PATH=407 'ADD'=4 'ADMIN'=5 'AFTER'=6 @@ -580,216 +585,221 @@ FILE_PATH=402 'ARE'=181 'ARRAY'=182 'AS'=183 -'AT'=184 -'AVG'=185 -'BEGIN'=186 -'BETWEEN'=187 -'BIGINT'=188 -'BINARY'=189 -'BIT'=190 -'BLOB'=191 -'BOOLEAN'=192 -'BOTH'=193 -'BY'=194 -'CALL'=195 -'CALLED'=196 -'CASCADED'=197 -'CASE'=198 -'CAST'=199 -'CEIL'=200 -'CHAR'=201 -'CHARACTER'=202 -'CHECK'=203 -'CLOB'=204 -'CLOSE'=205 -'COALESCE'=206 -'COLLATE'=207 -'COLLECT'=208 -'COLUMN'=209 -'COMMIT'=210 -'CONNECT'=211 -'CONSTRAINT'=212 -'CONTAINS'=213 -'CONVERT'=214 -'COUNT'=215 -'CREATE'=216 -'CROSS'=217 -'CUBE'=218 -'CURRENT'=219 -'CURSOR'=220 -'CYCLE'=221 -'DATE'=222 -'DATETIME'=223 -'DAY'=224 -'DEC'=225 -'DECIMAL'=226 -'DECLARE'=227 -'DEFAULT'=228 -'DEFINE'=229 -'DELETE'=230 -'DESCRIBE'=231 -'DISTINCT'=232 -'DOUBLE'=233 -'DROP'=234 -'EACH'=235 -'ELSE'=236 -'END'=237 -'EQUALS'=238 -'EXCEPT'=239 -'EXECUTE'=240 -'EXISTS'=241 -'EXPLAIN'=242 -'EXTERNAL'=243 -'EXTRACT'=244 -'FALSE'=245 -'FLOAT'=246 -'FOR'=247 -'FROM'=248 -'FULL'=249 -'FUNCTION'=250 -'GLOBAL'=251 -'GRANT'=252 -'GROUP'=253 -'GROUPING'=254 -'GROUPS'=255 -'HAVING'=256 -'HOUR'=257 -'IMPORT'=258 -'IN'=259 -'INCLUDING'=260 -'INNER'=261 -'INOUT'=262 -'INSERT'=263 -'INT'=264 -'INTEGER'=265 -'INTERSECT'=266 -'INTERVAL'=267 -'INTO'=268 -'IS'=269 -'JOIN'=270 -'LAG'=271 -'LANGUAGE'=272 -'LATERAL'=273 -'LEADING'=274 -'LEFT'=275 -'LIKE'=276 -'LIMIT'=277 -'LOCAL'=278 -'MATCH'=279 -'MATCH_RECOGNIZE'=280 -'MEASURES'=281 -'MERGE'=282 -'METADATA'=283 -'MINUS'=284 -'MINUTE'=285 -'MODIFIES'=286 -'MODULE'=287 -'MONTH'=288 -'MULTISET'=289 -'NATURAL'=290 -'NEXT'=291 -'NO'=292 -'NONE'=293 -'NOT'=294 -'NULL'=295 -'NUMERIC'=296 -'OF'=297 -'OFFSET'=298 -'ON'=299 -'ONE'=300 -'OR'=301 -'ORDER'=302 -'OUT'=303 -'OUTER'=304 -'OVER'=305 -'OVERLAY'=306 -'PARTITION'=307 -'PATTERN'=308 -'PER'=309 -'PERCENT'=310 -'PERIOD'=311 -'POSITION'=312 -'PRIMARY'=313 -'RANGE'=314 -'RANK'=315 -'RESET'=316 -'REVOKE'=317 -'RIGHT'=318 -'RLIKE'=319 -'ROLLBACK'=320 -'ROLLUP'=321 -'ROW'=322 -'ROWS'=323 -'SECOND'=324 -'SELECT'=325 -'SET'=326 -'SHOW'=327 -'SKIP'=328 -'SMALLINT'=329 -'START'=330 -'STATIC'=331 -'SUBSTRING'=332 -'SUM'=333 -'SYSTEM'=334 -'SYSTEM_TIME'=335 -'SYSTEM_USER'=336 -'TABLE'=337 -'TABLESAMPLE'=338 -'THEN'=339 -'TIME'=340 -'TIMESTAMP'=341 -'TINYINT'=342 -'TO'=343 -'TRUE'=344 -'TRUNCATE'=345 -'UNION'=346 -'UNIQUE'=347 -'UNKNOWN'=348 -'UNNEST'=349 -'UPPER'=350 -'UPSERT'=351 -'USER'=352 -'USING'=353 -'VALUE'=354 -'VALUES'=355 -'VARBINARY'=356 -'VARCHAR'=357 -'WHEN'=358 -'WHERE'=359 -'WINDOW'=360 -'WITH'=361 -'WITHIN'=362 -'WITHOUT'=363 -'YEAR'=364 -'='=365 -'>'=366 -'<'=367 -'!'=368 -'~'=369 -'|'=370 -'&'=371 -'^'=372 -'.'=373 -'['=374 -']'=375 -'('=376 -')'=377 -'{'=378 -'}'=379 -','=380 -';'=381 -'@'=382 -'\''=383 -'"'=384 -'`'=385 -':'=386 -'*'=387 -'_'=388 -'-'=389 -'+'=390 -'%'=391 -'||'=392 -'--'=393 -'/'=394 -'?'=395 -'=>'=396 +'ASYMMETRIC'=184 +'AT'=185 +'AVG'=186 +'BEGIN'=187 +'BETWEEN'=188 +'BIGINT'=189 +'BINARY'=190 +'BIT'=191 +'BLOB'=192 +'BOOLEAN'=193 +'BOTH'=194 +'BY'=195 +'CALL'=196 +'CALLED'=197 +'CASCADED'=198 +'CASE'=199 +'CAST'=200 +'CEIL'=201 +'CHAR'=202 +'CHARACTER'=203 +'CHECK'=204 +'CLOB'=205 +'CLOSE'=206 +'COALESCE'=207 +'COLLATE'=208 +'COLLECT'=209 +'COLUMN'=210 +'COMMIT'=211 +'CONNECT'=212 +'CONSTRAINT'=213 +'CONTAINS'=214 +'CONVERT'=215 +'COUNT'=216 +'CREATE'=217 +'CROSS'=218 +'CUBE'=219 +'CURRENT'=220 +'CURSOR'=221 +'CYCLE'=222 +'DATE'=223 +'DATETIME'=224 +'DAY'=225 +'DEC'=226 +'DECIMAL'=227 +'DECLARE'=228 +'DEFAULT'=229 +'DEFINE'=230 +'DELETE'=231 +'DESCRIBE'=232 +'DISTINCT'=233 +'DOUBLE'=234 +'DROP'=235 +'EACH'=236 +'ELSE'=237 +'END'=238 +'EQUALS'=239 +'ESCAPE'=240 +'EXCEPT'=241 +'EXECUTE'=242 +'EXISTS'=243 +'EXPLAIN'=244 +'EXTERNAL'=245 +'EXTRACT'=246 +'FALSE'=247 +'FLOAT'=248 +'FOR'=249 +'FROM'=250 +'FULL'=251 +'FUNCTION'=252 +'GLOBAL'=253 +'GRANT'=254 +'GROUP'=255 +'GROUPING'=256 +'GROUPS'=257 +'HAVING'=258 +'HOUR'=259 +'IMPORT'=260 +'IN'=261 +'INCLUDING'=262 +'INNER'=263 +'INOUT'=264 +'INSERT'=265 +'INT'=266 +'INTEGER'=267 +'INTERSECT'=268 +'INTERVAL'=269 +'INTO'=270 +'IS'=271 +'JOIN'=272 +'LAG'=273 +'LANGUAGE'=274 +'LATERAL'=275 +'LEADING'=276 +'LEFT'=277 +'LIKE'=278 +'LIMIT'=279 +'LOCAL'=280 +'MATCH'=281 +'MATCH_RECOGNIZE'=282 +'MEASURES'=283 +'MERGE'=284 +'METADATA'=285 +'MINUS'=286 +'MINUTE'=287 +'MODIFIES'=288 +'MODULE'=289 +'MONTH'=290 +'MULTISET'=291 +'NATURAL'=292 +'NEXT'=293 +'NO'=294 +'NONE'=295 +'NOT'=296 +'NULL'=297 +'NUMERIC'=298 +'OF'=299 +'OFFSET'=300 +'ON'=301 +'ONE'=302 +'OR'=303 +'ORDER'=304 +'OUT'=305 +'OUTER'=306 +'OVER'=307 +'OVERLAY'=308 +'PARTITION'=309 +'PATTERN'=310 +'PER'=311 +'PERCENT'=312 +'PERIOD'=313 +'POSITION'=314 +'POWER'=315 +'PRIMARY'=316 +'RANGE'=317 +'RANK'=318 +'RESET'=319 +'REVOKE'=320 +'RIGHT'=321 +'RLIKE'=322 +'ROLLBACK'=323 +'ROLLUP'=324 +'ROW'=325 +'ROWS'=326 +'SECOND'=327 +'SELECT'=328 +'SET'=329 +'SHOW'=330 +'SIMILAR'=331 +'SKIP'=332 +'SMALLINT'=333 +'START'=334 +'STATIC'=335 +'SUBSTRING'=336 +'SUM'=337 +'SYMMETRIC'=338 +'SYSTEM'=339 +'SYSTEM_TIME'=340 +'SYSTEM_USER'=341 +'TABLE'=342 +'TABLESAMPLE'=343 +'THEN'=344 +'TIME'=345 +'TIMESTAMP'=346 +'TINYINT'=347 +'TO'=348 +'TRUE'=349 +'TRUNCATE'=350 +'UNION'=351 +'UNIQUE'=352 +'UNKNOWN'=353 +'UNNEST'=354 +'UPPER'=355 +'UPSERT'=356 +'USER'=357 +'USING'=358 +'VALUE'=359 +'VALUES'=360 +'VARBINARY'=361 +'VARCHAR'=362 +'WHEN'=363 +'WHERE'=364 +'WINDOW'=365 +'WITH'=366 +'WITHIN'=367 +'WITHOUT'=368 +'YEAR'=369 +'='=370 +'>'=371 +'<'=372 +'!'=373 +'~'=374 +'|'=375 +'&'=376 +'^'=377 +'.'=378 +'['=379 +']'=380 +'('=381 +')'=382 +'{'=383 +'}'=384 +','=385 +';'=386 +'@'=387 +'\''=388 +'"'=389 +'`'=390 +':'=391 +'*'=392 +'_'=393 +'-'=394 +'+'=395 +'%'=396 +'||'=397 +'--'=398 +'/'=399 +'?'=400 +'=>'=401 diff --git a/src/lib/flinksql/FlinkSqlLexer.ts b/src/lib/flinksql/FlinkSqlLexer.ts index 022b9b9..c74523e 100644 --- a/src/lib/flinksql/FlinkSqlLexer.ts +++ b/src/lib/flinksql/FlinkSqlLexer.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlLexer.g4 by ANTLR 4.12.0 +// Generated from /Users/hayden/Desktop/dt-works/dt-sql-parser/src/grammar/flinksql/FlinkSqlLexer.g4 by ANTLR 4.12.0 // noinspection ES6UnusedImports,JSUnusedGlobalSymbols,JSUnusedLocalSymbols import { ATN, @@ -188,232 +188,237 @@ export default class FlinkSqlLexer extends Lexer { public static readonly KW_ZONE = 174; public static readonly KW_ABS = 175; public static readonly KW_ALL = 176; - public static readonly ALLOW = 177; + public static readonly KW_ALLOW = 177; public static readonly KW_ALTER = 178; public static readonly KW_AND = 179; public static readonly KW_ANY = 180; public static readonly KW_ARE = 181; public static readonly KW_ARRAY = 182; public static readonly KW_AS = 183; - public static readonly KW_AT = 184; - public static readonly KW_AVG = 185; - public static readonly KW_BEGIN = 186; - public static readonly KW_BETWEEN = 187; - public static readonly KW_BIGINT = 188; - public static readonly KW_BINARY = 189; - public static readonly KW_BIT = 190; - public static readonly KW_BLOB = 191; - public static readonly KW_BOOLEAN = 192; - public static readonly KW_BOTH = 193; - public static readonly KW_BY = 194; - public static readonly KW_CALL = 195; - public static readonly KW_CALLED = 196; - public static readonly KW_CASCADED = 197; - public static readonly KW_CASE = 198; - public static readonly KW_CAST = 199; - public static readonly KW_CEIL = 200; - public static readonly KW_CHAR = 201; - public static readonly KW_CHARACTER = 202; - public static readonly KW_CHECK = 203; - public static readonly KW_CLOB = 204; - public static readonly KW_CLOSE = 205; - public static readonly KW_COALESCE = 206; - public static readonly KW_COLLATE = 207; - public static readonly KW_COLLECT = 208; - public static readonly KW_COLUMN = 209; - public static readonly KW_COMMIT = 210; - public static readonly KW_CONNECT = 211; - public static readonly KW_CONSTRAINT = 212; - public static readonly KW_CONTAINS = 213; - public static readonly KW_CONVERT = 214; - public static readonly KW_COUNT = 215; - public static readonly KW_CREATE = 216; - public static readonly KW_CROSS = 217; - public static readonly KW_CUBE = 218; - public static readonly KW_CURRENT = 219; - public static readonly KW_CURSOR = 220; - public static readonly KW_CYCLE = 221; - public static readonly KW_DATE = 222; - public static readonly KW_DATETIME = 223; - public static readonly KW_DAY = 224; - public static readonly KW_DEC = 225; - public static readonly KW_DECIMAL = 226; - public static readonly KW_DECLARE = 227; - public static readonly KW_DEFAULT = 228; - public static readonly KW_DEFINE = 229; - public static readonly KW_DELETE = 230; - public static readonly KW_DESCRIBE = 231; - public static readonly KW_DISTINCT = 232; - public static readonly KW_DOUBLE = 233; - public static readonly KW_DROP = 234; - public static readonly KW_EACH = 235; - public static readonly KW_ELSE = 236; - public static readonly KW_END = 237; - public static readonly KW_EQUALS = 238; - public static readonly KW_EXCEPT = 239; - public static readonly KW_EXECUTE = 240; - public static readonly KW_EXISTS = 241; - public static readonly KW_EXPLAIN = 242; - public static readonly KW_EXTERNAL = 243; - public static readonly KW_EXTRACT = 244; - public static readonly KW_FALSE = 245; - public static readonly KW_FLOAT = 246; - public static readonly KW_FOR = 247; - public static readonly KW_FROM = 248; - public static readonly KW_FULL = 249; - public static readonly KW_FUNCTION = 250; - public static readonly KW_GLOBAL = 251; - public static readonly KW_GRANT = 252; - public static readonly KW_GROUP = 253; - public static readonly KW_GROUPING = 254; - public static readonly KW_GROUPS = 255; - public static readonly KW_HAVING = 256; - public static readonly KW_HOUR = 257; - public static readonly KW_IMPORT = 258; - public static readonly KW_IN = 259; - public static readonly KW_INCLUDING = 260; - public static readonly KW_INNER = 261; - public static readonly KW_INOUT = 262; - public static readonly KW_INSERT = 263; - public static readonly KW_INT = 264; - public static readonly KW_INTEGER = 265; - public static readonly KW_INTERSECT = 266; - public static readonly KW_INTERVAL = 267; - public static readonly KW_INTO = 268; - public static readonly KW_IS = 269; - public static readonly KW_JOIN = 270; - public static readonly KW_LAG = 271; - public static readonly KW_LANGUAGE = 272; - public static readonly KW_LATERAL = 273; - public static readonly KW_LEADING = 274; - public static readonly KW_LEFT = 275; - public static readonly KW_LIKE = 276; - public static readonly KW_LIMIT = 277; - public static readonly KW_LOCAL = 278; - public static readonly KW_MATCH = 279; - public static readonly KW_MATCH_RECOGNIZE = 280; - public static readonly KW_MEASURES = 281; - public static readonly KW_MERGE = 282; - public static readonly KW_METADATA = 283; - public static readonly KW_MINUS = 284; - public static readonly KW_MINUTE = 285; - public static readonly KW_MODIFIES = 286; - public static readonly KW_MODULE = 287; - public static readonly KW_MONTH = 288; - public static readonly KW_MULTISET = 289; - public static readonly KW_NATURAL = 290; - public static readonly KW_NEXT = 291; - public static readonly KW_NO = 292; - public static readonly KW_NONE = 293; - public static readonly KW_NOT = 294; - public static readonly KW_NULL = 295; - public static readonly KW_NUMERIC = 296; - public static readonly KW_OF = 297; - public static readonly KW_OFFSET = 298; - public static readonly KW_ON = 299; - public static readonly KW_ONE = 300; - public static readonly KW_OR = 301; - public static readonly KW_ORDER = 302; - public static readonly KW_OUT = 303; - public static readonly KW_OUTER = 304; - public static readonly KW_OVER = 305; - public static readonly KW_OVERLAY = 306; - public static readonly KW_PARTITION = 307; - public static readonly KW_PATTERN = 308; - public static readonly KW_PER = 309; - public static readonly KW_PERCENT = 310; - public static readonly KW_PERIOD = 311; - public static readonly KW_POSITION = 312; - public static readonly KW_PRIMARY = 313; - public static readonly KW_RANGE = 314; - public static readonly KW_RANK = 315; - public static readonly KW_RESET = 316; - public static readonly KW_REVOKE = 317; - public static readonly KW_RIGHT = 318; - public static readonly KW_RLIKE = 319; - public static readonly KW_ROLLBACK = 320; - public static readonly KW_ROLLUP = 321; - public static readonly KW_ROW = 322; - public static readonly KW_ROWS = 323; - public static readonly KW_SECOND = 324; - public static readonly KW_SELECT = 325; - public static readonly KW_SET = 326; - public static readonly KW_SHOW = 327; - public static readonly KW_SKIP = 328; - public static readonly KW_SMALLINT = 329; - public static readonly KW_START = 330; - public static readonly KW_STATIC = 331; - public static readonly KW_SUBSTRING = 332; - public static readonly KW_SUM = 333; - public static readonly KW_SYSTEM = 334; - public static readonly KW_SYSTEM_TIME = 335; - public static readonly KW_SYSTEM_USER = 336; - public static readonly KW_TABLE = 337; - public static readonly KW_TABLESAMPLE = 338; - public static readonly KW_THEN = 339; - public static readonly KW_TIME = 340; - public static readonly KW_TIMESTAMP = 341; - public static readonly KW_TINYINT = 342; - public static readonly KW_TO = 343; - public static readonly KW_TRUE = 344; - public static readonly KW_TRUNCATE = 345; - public static readonly KW_UNION = 346; - public static readonly KW_UNIQUE = 347; - public static readonly KW_UNKNOWN = 348; - public static readonly KW_UNNEST = 349; - public static readonly KW_UPPER = 350; - public static readonly KW_UPSERT = 351; - public static readonly KW_USER = 352; - public static readonly KW_USING = 353; - public static readonly KW_VALUE = 354; - public static readonly KW_VALUES = 355; - public static readonly KW_VARBINARY = 356; - public static readonly KW_VARCHAR = 357; - public static readonly KW_WHEN = 358; - public static readonly KW_WHERE = 359; - public static readonly KW_WINDOW = 360; - public static readonly KW_WITH = 361; - public static readonly KW_WITHIN = 362; - public static readonly KW_WITHOUT = 363; - public static readonly KW_YEAR = 364; - public static readonly EQUAL_SYMBOL = 365; - public static readonly GREATER_SYMBOL = 366; - public static readonly LESS_SYMBOL = 367; - public static readonly EXCLAMATION_SYMBOL = 368; - public static readonly BIT_NOT_OP = 369; - public static readonly BIT_OR_OP = 370; - public static readonly BIT_AND_OP = 371; - public static readonly BIT_XOR_OP = 372; - public static readonly DOT = 373; - public static readonly LS_BRACKET = 374; - public static readonly RS_BRACKET = 375; - public static readonly LR_BRACKET = 376; - public static readonly RR_BRACKET = 377; - public static readonly LB_BRACKET = 378; - public static readonly RB_BRACKET = 379; - public static readonly COMMA = 380; - public static readonly SEMICOLON = 381; - public static readonly AT_SIGN = 382; - public static readonly SINGLE_QUOTE_SYMB = 383; - public static readonly DOUBLE_QUOTE_SYMB = 384; - public static readonly REVERSE_QUOTE_SYMB = 385; - public static readonly COLON_SYMB = 386; - public static readonly ASTERISK_SIGN = 387; - public static readonly UNDERLINE_SIGN = 388; - public static readonly HYPNEN_SIGN = 389; - public static readonly ADD_SIGN = 390; - public static readonly PENCENT_SIGN = 391; - public static readonly DOUBLE_VERTICAL_SIGN = 392; - public static readonly DOUBLE_HYPNEN_SIGN = 393; - public static readonly SLASH_SIGN = 394; - public static readonly QUESTION_MARK_SIGN = 395; - public static readonly DOUBLE_RIGHT_ARROW = 396; - public static readonly STRING_LITERAL = 397; - public static readonly DIG_LITERAL = 398; - public static readonly REAL_LITERAL = 399; - public static readonly BIT_STRING = 400; - public static readonly ID_LITERAL = 401; - public static readonly FILE_PATH = 402; + public static readonly KW_ASYMMETRIC = 184; + public static readonly KW_AT = 185; + public static readonly KW_AVG = 186; + public static readonly KW_BEGIN = 187; + public static readonly KW_BETWEEN = 188; + public static readonly KW_BIGINT = 189; + public static readonly KW_BINARY = 190; + public static readonly KW_BIT = 191; + public static readonly KW_BLOB = 192; + public static readonly KW_BOOLEAN = 193; + public static readonly KW_BOTH = 194; + public static readonly KW_BY = 195; + public static readonly KW_CALL = 196; + public static readonly KW_CALLED = 197; + public static readonly KW_CASCADED = 198; + public static readonly KW_CASE = 199; + public static readonly KW_CAST = 200; + public static readonly KW_CEIL = 201; + public static readonly KW_CHAR = 202; + public static readonly KW_CHARACTER = 203; + public static readonly KW_CHECK = 204; + public static readonly KW_CLOB = 205; + public static readonly KW_CLOSE = 206; + public static readonly KW_COALESCE = 207; + public static readonly KW_COLLATE = 208; + public static readonly KW_COLLECT = 209; + public static readonly KW_COLUMN = 210; + public static readonly KW_COMMIT = 211; + public static readonly KW_CONNECT = 212; + public static readonly KW_CONSTRAINT = 213; + public static readonly KW_CONTAINS = 214; + public static readonly KW_CONVERT = 215; + public static readonly KW_COUNT = 216; + public static readonly KW_CREATE = 217; + public static readonly KW_CROSS = 218; + public static readonly KW_CUBE = 219; + public static readonly KW_CURRENT = 220; + public static readonly KW_CURSOR = 221; + public static readonly KW_CYCLE = 222; + public static readonly KW_DATE = 223; + public static readonly KW_DATETIME = 224; + public static readonly KW_DAY = 225; + public static readonly KW_DEC = 226; + public static readonly KW_DECIMAL = 227; + public static readonly KW_DECLARE = 228; + public static readonly KW_DEFAULT = 229; + public static readonly KW_DEFINE = 230; + public static readonly KW_DELETE = 231; + public static readonly KW_DESCRIBE = 232; + public static readonly KW_DISTINCT = 233; + public static readonly KW_DOUBLE = 234; + public static readonly KW_DROP = 235; + public static readonly KW_EACH = 236; + public static readonly KW_ELSE = 237; + public static readonly KW_END = 238; + public static readonly KW_EQUALS = 239; + public static readonly KW_ESCAPE = 240; + public static readonly KW_EXCEPT = 241; + public static readonly KW_EXECUTE = 242; + public static readonly KW_EXISTS = 243; + public static readonly KW_EXPLAIN = 244; + public static readonly KW_EXTERNAL = 245; + public static readonly KW_EXTRACT = 246; + public static readonly KW_FALSE = 247; + public static readonly KW_FLOAT = 248; + public static readonly KW_FOR = 249; + public static readonly KW_FROM = 250; + public static readonly KW_FULL = 251; + public static readonly KW_FUNCTION = 252; + public static readonly KW_GLOBAL = 253; + public static readonly KW_GRANT = 254; + public static readonly KW_GROUP = 255; + public static readonly KW_GROUPING = 256; + public static readonly KW_GROUPS = 257; + public static readonly KW_HAVING = 258; + public static readonly KW_HOUR = 259; + public static readonly KW_IMPORT = 260; + public static readonly KW_IN = 261; + public static readonly KW_INCLUDING = 262; + public static readonly KW_INNER = 263; + public static readonly KW_INOUT = 264; + public static readonly KW_INSERT = 265; + public static readonly KW_INT = 266; + public static readonly KW_INTEGER = 267; + public static readonly KW_INTERSECT = 268; + public static readonly KW_INTERVAL = 269; + public static readonly KW_INTO = 270; + public static readonly KW_IS = 271; + public static readonly KW_JOIN = 272; + public static readonly KW_LAG = 273; + public static readonly KW_LANGUAGE = 274; + public static readonly KW_LATERAL = 275; + public static readonly KW_LEADING = 276; + public static readonly KW_LEFT = 277; + public static readonly KW_LIKE = 278; + public static readonly KW_LIMIT = 279; + public static readonly KW_LOCAL = 280; + public static readonly KW_MATCH = 281; + public static readonly KW_MATCH_RECOGNIZE = 282; + public static readonly KW_MEASURES = 283; + public static readonly KW_MERGE = 284; + public static readonly KW_METADATA = 285; + public static readonly KW_MINUS = 286; + public static readonly KW_MINUTE = 287; + public static readonly KW_MODIFIES = 288; + public static readonly KW_MODULE = 289; + public static readonly KW_MONTH = 290; + public static readonly KW_MULTISET = 291; + public static readonly KW_NATURAL = 292; + public static readonly KW_NEXT = 293; + public static readonly KW_NO = 294; + public static readonly KW_NONE = 295; + public static readonly KW_NOT = 296; + public static readonly KW_NULL = 297; + public static readonly KW_NUMERIC = 298; + public static readonly KW_OF = 299; + public static readonly KW_OFFSET = 300; + public static readonly KW_ON = 301; + public static readonly KW_ONE = 302; + public static readonly KW_OR = 303; + public static readonly KW_ORDER = 304; + public static readonly KW_OUT = 305; + public static readonly KW_OUTER = 306; + public static readonly KW_OVER = 307; + public static readonly KW_OVERLAY = 308; + public static readonly KW_PARTITION = 309; + public static readonly KW_PATTERN = 310; + public static readonly KW_PER = 311; + public static readonly KW_PERCENT = 312; + public static readonly KW_PERIOD = 313; + public static readonly KW_POSITION = 314; + public static readonly KW_POWER = 315; + public static readonly KW_PRIMARY = 316; + public static readonly KW_RANGE = 317; + public static readonly KW_RANK = 318; + public static readonly KW_RESET = 319; + public static readonly KW_REVOKE = 320; + public static readonly KW_RIGHT = 321; + public static readonly KW_RLIKE = 322; + public static readonly KW_ROLLBACK = 323; + public static readonly KW_ROLLUP = 324; + public static readonly KW_ROW = 325; + public static readonly KW_ROWS = 326; + public static readonly KW_SECOND = 327; + public static readonly KW_SELECT = 328; + public static readonly KW_SET = 329; + public static readonly KW_SHOW = 330; + public static readonly KW_SIMILAR = 331; + public static readonly KW_SKIP = 332; + public static readonly KW_SMALLINT = 333; + public static readonly KW_START = 334; + public static readonly KW_STATIC = 335; + public static readonly KW_SUBSTRING = 336; + public static readonly KW_SUM = 337; + public static readonly KW_SYMMETRIC = 338; + public static readonly KW_SYSTEM = 339; + public static readonly KW_SYSTEM_TIME = 340; + public static readonly KW_SYSTEM_USER = 341; + public static readonly KW_TABLE = 342; + public static readonly KW_TABLESAMPLE = 343; + public static readonly KW_THEN = 344; + public static readonly KW_TIME = 345; + public static readonly KW_TIMESTAMP = 346; + public static readonly KW_TINYINT = 347; + public static readonly KW_TO = 348; + public static readonly KW_TRUE = 349; + public static readonly KW_TRUNCATE = 350; + public static readonly KW_UNION = 351; + public static readonly KW_UNIQUE = 352; + public static readonly KW_UNKNOWN = 353; + public static readonly KW_UNNEST = 354; + public static readonly KW_UPPER = 355; + public static readonly KW_UPSERT = 356; + public static readonly KW_USER = 357; + public static readonly KW_USING = 358; + public static readonly KW_VALUE = 359; + public static readonly KW_VALUES = 360; + public static readonly KW_VARBINARY = 361; + public static readonly KW_VARCHAR = 362; + public static readonly KW_WHEN = 363; + public static readonly KW_WHERE = 364; + public static readonly KW_WINDOW = 365; + public static readonly KW_WITH = 366; + public static readonly KW_WITHIN = 367; + public static readonly KW_WITHOUT = 368; + public static readonly KW_YEAR = 369; + public static readonly EQUAL_SYMBOL = 370; + public static readonly GREATER_SYMBOL = 371; + public static readonly LESS_SYMBOL = 372; + public static readonly EXCLAMATION_SYMBOL = 373; + public static readonly BIT_NOT_OP = 374; + public static readonly BIT_OR_OP = 375; + public static readonly BIT_AND_OP = 376; + public static readonly BIT_XOR_OP = 377; + public static readonly DOT = 378; + public static readonly LS_BRACKET = 379; + public static readonly RS_BRACKET = 380; + public static readonly LR_BRACKET = 381; + public static readonly RR_BRACKET = 382; + public static readonly LB_BRACKET = 383; + public static readonly RB_BRACKET = 384; + public static readonly COMMA = 385; + public static readonly SEMICOLON = 386; + public static readonly AT_SIGN = 387; + public static readonly SINGLE_QUOTE_SYMB = 388; + public static readonly DOUBLE_QUOTE_SYMB = 389; + public static readonly REVERSE_QUOTE_SYMB = 390; + public static readonly COLON_SYMB = 391; + public static readonly ASTERISK_SIGN = 392; + public static readonly UNDERLINE_SIGN = 393; + public static readonly HYPNEN_SIGN = 394; + public static readonly ADD_SIGN = 395; + public static readonly PENCENT_SIGN = 396; + public static readonly DOUBLE_VERTICAL_SIGN = 397; + public static readonly DOUBLE_HYPNEN_SIGN = 398; + public static readonly SLASH_SIGN = 399; + public static readonly QUESTION_MARK_SIGN = 400; + public static readonly DOUBLE_RIGHT_ARROW = 401; + public static readonly STRING_LITERAL = 402; + public static readonly DIG_LITERAL = 403; + public static readonly REAL_LITERAL = 404; + public static readonly BIT_STRING = 405; + public static readonly ID_LITERAL = 406; + public static readonly FILE_PATH = 407; public static readonly EOF = Token.EOF; public static readonly channelNames: string[] = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; @@ -505,10 +510,10 @@ export default class FlinkSqlLexer extends Lexer { "'ABS'", "'ALL'", "'ALLOW'", "'ALTER'", "'AND'", "'ANY'", "'ARE'", "'ARRAY'", "'AS'", - "'AT'", "'AVG'", "'BEGIN'", - "'BETWEEN'", "'BIGINT'", - "'BINARY'", "'BIT'", - "'BLOB'", "'BOOLEAN'", + "'ASYMMETRIC'", "'AT'", + "'AVG'", "'BEGIN'", "'BETWEEN'", + "'BIGINT'", "'BINARY'", + "'BIT'", "'BLOB'", "'BOOLEAN'", "'BOTH'", "'BY'", "'CALL'", "'CALLED'", "'CASCADED'", "'CASE'", "'CAST'", "'CEIL'", @@ -530,17 +535,17 @@ export default class FlinkSqlLexer extends Lexer { "'DESCRIBE'", "'DISTINCT'", "'DOUBLE'", "'DROP'", "'EACH'", "'ELSE'", "'END'", - "'EQUALS'", "'EXCEPT'", - "'EXECUTE'", "'EXISTS'", - "'EXPLAIN'", "'EXTERNAL'", - "'EXTRACT'", "'FALSE'", - "'FLOAT'", "'FOR'", "'FROM'", - "'FULL'", "'FUNCTION'", - "'GLOBAL'", "'GRANT'", - "'GROUP'", "'GROUPING'", - "'GROUPS'", "'HAVING'", - "'HOUR'", "'IMPORT'", - "'IN'", "'INCLUDING'", + "'EQUALS'", "'ESCAPE'", + "'EXCEPT'", "'EXECUTE'", + "'EXISTS'", "'EXPLAIN'", + "'EXTERNAL'", "'EXTRACT'", + "'FALSE'", "'FLOAT'", + "'FOR'", "'FROM'", "'FULL'", + "'FUNCTION'", "'GLOBAL'", + "'GRANT'", "'GROUP'", + "'GROUPING'", "'GROUPS'", + "'HAVING'", "'HOUR'", + "'IMPORT'", "'IN'", "'INCLUDING'", "'INNER'", "'INOUT'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", @@ -564,20 +569,22 @@ export default class FlinkSqlLexer extends Lexer { "'OVERLAY'", "'PARTITION'", "'PATTERN'", "'PER'", "'PERCENT'", "'PERIOD'", - "'POSITION'", "'PRIMARY'", - "'RANGE'", "'RANK'", - "'RESET'", "'REVOKE'", - "'RIGHT'", "'RLIKE'", - "'ROLLBACK'", "'ROLLUP'", - "'ROW'", "'ROWS'", "'SECOND'", + "'POSITION'", "'POWER'", + "'PRIMARY'", "'RANGE'", + "'RANK'", "'RESET'", + "'REVOKE'", "'RIGHT'", + "'RLIKE'", "'ROLLBACK'", + "'ROLLUP'", "'ROW'", + "'ROWS'", "'SECOND'", "'SELECT'", "'SET'", - "'SHOW'", "'SKIP'", "'SMALLINT'", + "'SHOW'", "'SIMILAR'", + "'SKIP'", "'SMALLINT'", "'START'", "'STATIC'", "'SUBSTRING'", "'SUM'", - "'SYSTEM'", "'SYSTEM_TIME'", - "'SYSTEM_USER'", "'TABLE'", - "'TABLESAMPLE'", "'THEN'", - "'TIME'", "'TIMESTAMP'", + "'SYMMETRIC'", "'SYSTEM'", + "'SYSTEM_TIME'", "'SYSTEM_USER'", + "'TABLE'", "'TABLESAMPLE'", + "'THEN'", "'TIME'", "'TIMESTAMP'", "'TINYINT'", "'TO'", "'TRUE'", "'TRUNCATE'", "'UNION'", "'UNIQUE'", @@ -690,37 +697,39 @@ export default class FlinkSqlLexer extends Lexer { "KW_WEEK", "KW_WORK", "KW_WRAPPER", "KW_YEARS", "KW_ZONE", "KW_ABS", - "KW_ALL", "ALLOW", "KW_ALTER", - "KW_AND", "KW_ANY", - "KW_ARE", "KW_ARRAY", - "KW_AS", "KW_AT", "KW_AVG", - "KW_BEGIN", "KW_BETWEEN", - "KW_BIGINT", "KW_BINARY", - "KW_BIT", "KW_BLOB", - "KW_BOOLEAN", "KW_BOTH", - "KW_BY", "KW_CALL", - "KW_CALLED", "KW_CASCADED", - "KW_CASE", "KW_CAST", - "KW_CEIL", "KW_CHAR", - "KW_CHARACTER", "KW_CHECK", - "KW_CLOB", "KW_CLOSE", - "KW_COALESCE", "KW_COLLATE", - "KW_COLLECT", "KW_COLUMN", - "KW_COMMIT", "KW_CONNECT", - "KW_CONSTRAINT", "KW_CONTAINS", - "KW_CONVERT", "KW_COUNT", - "KW_CREATE", "KW_CROSS", - "KW_CUBE", "KW_CURRENT", - "KW_CURSOR", "KW_CYCLE", - "KW_DATE", "KW_DATETIME", - "KW_DAY", "KW_DEC", - "KW_DECIMAL", "KW_DECLARE", - "KW_DEFAULT", "KW_DEFINE", - "KW_DELETE", "KW_DESCRIBE", - "KW_DISTINCT", "KW_DOUBLE", - "KW_DROP", "KW_EACH", - "KW_ELSE", "KW_END", - "KW_EQUALS", "KW_EXCEPT", + "KW_ALL", "KW_ALLOW", + "KW_ALTER", "KW_AND", + "KW_ANY", "KW_ARE", + "KW_ARRAY", "KW_AS", + "KW_ASYMMETRIC", "KW_AT", + "KW_AVG", "KW_BEGIN", + "KW_BETWEEN", "KW_BIGINT", + "KW_BINARY", "KW_BIT", + "KW_BLOB", "KW_BOOLEAN", + "KW_BOTH", "KW_BY", + "KW_CALL", "KW_CALLED", + "KW_CASCADED", "KW_CASE", + "KW_CAST", "KW_CEIL", + "KW_CHAR", "KW_CHARACTER", + "KW_CHECK", "KW_CLOB", + "KW_CLOSE", "KW_COALESCE", + "KW_COLLATE", "KW_COLLECT", + "KW_COLUMN", "KW_COMMIT", + "KW_CONNECT", "KW_CONSTRAINT", + "KW_CONTAINS", "KW_CONVERT", + "KW_COUNT", "KW_CREATE", + "KW_CROSS", "KW_CUBE", + "KW_CURRENT", "KW_CURSOR", + "KW_CYCLE", "KW_DATE", + "KW_DATETIME", "KW_DAY", + "KW_DEC", "KW_DECIMAL", + "KW_DECLARE", "KW_DEFAULT", + "KW_DEFINE", "KW_DELETE", + "KW_DESCRIBE", "KW_DISTINCT", + "KW_DOUBLE", "KW_DROP", + "KW_EACH", "KW_ELSE", + "KW_END", "KW_EQUALS", + "KW_ESCAPE", "KW_EXCEPT", "KW_EXECUTE", "KW_EXISTS", "KW_EXPLAIN", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", @@ -757,35 +766,36 @@ export default class FlinkSqlLexer extends Lexer { "KW_OVERLAY", "KW_PARTITION", "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERIOD", - "KW_POSITION", "KW_PRIMARY", - "KW_RANGE", "KW_RANK", - "KW_RESET", "KW_REVOKE", - "KW_RIGHT", "KW_RLIKE", - "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", - "KW_SECOND", "KW_SELECT", - "KW_SET", "KW_SHOW", + "KW_POSITION", "KW_POWER", + "KW_PRIMARY", "KW_RANGE", + "KW_RANK", "KW_RESET", + "KW_REVOKE", "KW_RIGHT", + "KW_RLIKE", "KW_ROLLBACK", + "KW_ROLLUP", "KW_ROW", + "KW_ROWS", "KW_SECOND", + "KW_SELECT", "KW_SET", + "KW_SHOW", "KW_SIMILAR", "KW_SKIP", "KW_SMALLINT", "KW_START", "KW_STATIC", "KW_SUBSTRING", "KW_SUM", - "KW_SYSTEM", "KW_SYSTEM_TIME", - "KW_SYSTEM_USER", "KW_TABLE", - "KW_TABLESAMPLE", "KW_THEN", - "KW_TIME", "KW_TIMESTAMP", - "KW_TINYINT", "KW_TO", - "KW_TRUE", "KW_TRUNCATE", - "KW_UNION", "KW_UNIQUE", - "KW_UNKNOWN", "KW_UNNEST", - "KW_UPPER", "KW_UPSERT", - "KW_USER", "KW_USING", - "KW_VALUE", "KW_VALUES", - "KW_VARBINARY", "KW_VARCHAR", - "KW_WHEN", "KW_WHERE", - "KW_WINDOW", "KW_WITH", - "KW_WITHIN", "KW_WITHOUT", - "KW_YEAR", "EQUAL_SYMBOL", - "GREATER_SYMBOL", "LESS_SYMBOL", - "EXCLAMATION_SYMBOL", + "KW_SYMMETRIC", "KW_SYSTEM", + "KW_SYSTEM_TIME", "KW_SYSTEM_USER", + "KW_TABLE", "KW_TABLESAMPLE", + "KW_THEN", "KW_TIME", + "KW_TIMESTAMP", "KW_TINYINT", + "KW_TO", "KW_TRUE", + "KW_TRUNCATE", "KW_UNION", + "KW_UNIQUE", "KW_UNKNOWN", + "KW_UNNEST", "KW_UPPER", + "KW_UPSERT", "KW_USER", + "KW_USING", "KW_VALUE", + "KW_VALUES", "KW_VARBINARY", + "KW_VARCHAR", "KW_WHEN", + "KW_WHERE", "KW_WINDOW", + "KW_WITH", "KW_WITHIN", + "KW_WITHOUT", "KW_YEAR", + "EQUAL_SYMBOL", "GREATER_SYMBOL", + "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", @@ -840,41 +850,42 @@ export default class FlinkSqlLexer extends Lexer { "KW_UNDER", "KW_UNLOAD", "KW_USAGE", "KW_USE", "KW_UTF16", "KW_UTF32", "KW_UTF8", "KW_VERSION", "KW_VIEW", "KW_VIEWS", "KW_VIRTUAL", "KW_WATERMARK", "KW_WATERMARKS", "KW_WEEK", "KW_WORK", "KW_WRAPPER", "KW_YEARS", "KW_ZONE", - "KW_ABS", "KW_ALL", "ALLOW", "KW_ALTER", "KW_AND", "KW_ANY", "KW_ARE", - "KW_ARRAY", "KW_AS", "KW_AT", "KW_AVG", "KW_BEGIN", "KW_BETWEEN", "KW_BIGINT", - "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", "KW_BOTH", "KW_BY", "KW_CALL", - "KW_CALLED", "KW_CASCADED", "KW_CASE", "KW_CAST", "KW_CEIL", "KW_CHAR", - "KW_CHARACTER", "KW_CHECK", "KW_CLOB", "KW_CLOSE", "KW_COALESCE", "KW_COLLATE", - "KW_COLLECT", "KW_COLUMN", "KW_COMMIT", "KW_CONNECT", "KW_CONSTRAINT", - "KW_CONTAINS", "KW_CONVERT", "KW_COUNT", "KW_CREATE", "KW_CROSS", "KW_CUBE", - "KW_CURRENT", "KW_CURSOR", "KW_CYCLE", "KW_DATE", "KW_DATETIME", "KW_DAY", - "KW_DEC", "KW_DECIMAL", "KW_DECLARE", "KW_DEFAULT", "KW_DEFINE", "KW_DELETE", - "KW_DESCRIBE", "KW_DISTINCT", "KW_DOUBLE", "KW_DROP", "KW_EACH", "KW_ELSE", - "KW_END", "KW_EQUALS", "KW_EXCEPT", "KW_EXECUTE", "KW_EXISTS", "KW_EXPLAIN", - "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FLOAT", "KW_FOR", "KW_FROM", - "KW_FULL", "KW_FUNCTION", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", - "KW_GROUPS", "KW_HAVING", "KW_HOUR", "KW_IMPORT", "KW_IN", "KW_INCLUDING", - "KW_INNER", "KW_INOUT", "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", - "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_LAG", "KW_LANGUAGE", - "KW_LATERAL", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LOCAL", - "KW_MATCH", "KW_MATCH_RECOGNIZE", "KW_MEASURES", "KW_MERGE", "KW_METADATA", - "KW_MINUS", "KW_MINUTE", "KW_MODIFIES", "KW_MODULE", "KW_MONTH", "KW_MULTISET", - "KW_NATURAL", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NOT", "KW_NULL", "KW_NUMERIC", - "KW_OF", "KW_OFFSET", "KW_ON", "KW_ONE", "KW_OR", "KW_ORDER", "KW_OUT", - "KW_OUTER", "KW_OVER", "KW_OVERLAY", "KW_PARTITION", "KW_PATTERN", "KW_PER", - "KW_PERCENT", "KW_PERIOD", "KW_POSITION", "KW_PRIMARY", "KW_RANGE", "KW_RANK", - "KW_RESET", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", "KW_SECOND", "KW_SELECT", "KW_SET", "KW_SHOW", "KW_SKIP", - "KW_SMALLINT", "KW_START", "KW_STATIC", "KW_SUBSTRING", "KW_SUM", "KW_SYSTEM", - "KW_SYSTEM_TIME", "KW_SYSTEM_USER", "KW_TABLE", "KW_TABLESAMPLE", "KW_THEN", - "KW_TIME", "KW_TIMESTAMP", "KW_TINYINT", "KW_TO", "KW_TRUE", "KW_TRUNCATE", - "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UPPER", "KW_UPSERT", - "KW_USER", "KW_USING", "KW_VALUE", "KW_VALUES", "KW_VARBINARY", "KW_VARCHAR", - "KW_WHEN", "KW_WHERE", "KW_WINDOW", "KW_WITH", "KW_WITHIN", "KW_WITHOUT", - "KW_YEAR", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", - "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", - "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", - "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", + "KW_ABS", "KW_ALL", "KW_ALLOW", "KW_ALTER", "KW_AND", "KW_ANY", "KW_ARE", + "KW_ARRAY", "KW_AS", "KW_ASYMMETRIC", "KW_AT", "KW_AVG", "KW_BEGIN", "KW_BETWEEN", + "KW_BIGINT", "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", "KW_BOTH", + "KW_BY", "KW_CALL", "KW_CALLED", "KW_CASCADED", "KW_CASE", "KW_CAST", + "KW_CEIL", "KW_CHAR", "KW_CHARACTER", "KW_CHECK", "KW_CLOB", "KW_CLOSE", + "KW_COALESCE", "KW_COLLATE", "KW_COLLECT", "KW_COLUMN", "KW_COMMIT", "KW_CONNECT", + "KW_CONSTRAINT", "KW_CONTAINS", "KW_CONVERT", "KW_COUNT", "KW_CREATE", + "KW_CROSS", "KW_CUBE", "KW_CURRENT", "KW_CURSOR", "KW_CYCLE", "KW_DATE", + "KW_DATETIME", "KW_DAY", "KW_DEC", "KW_DECIMAL", "KW_DECLARE", "KW_DEFAULT", + "KW_DEFINE", "KW_DELETE", "KW_DESCRIBE", "KW_DISTINCT", "KW_DOUBLE", "KW_DROP", + "KW_EACH", "KW_ELSE", "KW_END", "KW_EQUALS", "KW_ESCAPE", "KW_EXCEPT", + "KW_EXECUTE", "KW_EXISTS", "KW_EXPLAIN", "KW_EXTERNAL", "KW_EXTRACT", + "KW_FALSE", "KW_FLOAT", "KW_FOR", "KW_FROM", "KW_FULL", "KW_FUNCTION", + "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", "KW_HAVING", + "KW_HOUR", "KW_IMPORT", "KW_IN", "KW_INCLUDING", "KW_INNER", "KW_INOUT", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERVAL", "KW_INTO", + "KW_IS", "KW_JOIN", "KW_LAG", "KW_LANGUAGE", "KW_LATERAL", "KW_LEADING", + "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LOCAL", "KW_MATCH", "KW_MATCH_RECOGNIZE", + "KW_MEASURES", "KW_MERGE", "KW_METADATA", "KW_MINUS", "KW_MINUTE", "KW_MODIFIES", + "KW_MODULE", "KW_MONTH", "KW_MULTISET", "KW_NATURAL", "KW_NEXT", "KW_NO", + "KW_NONE", "KW_NOT", "KW_NULL", "KW_NUMERIC", "KW_OF", "KW_OFFSET", "KW_ON", + "KW_ONE", "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAY", + "KW_PARTITION", "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERIOD", "KW_POSITION", + "KW_POWER", "KW_PRIMARY", "KW_RANGE", "KW_RANK", "KW_RESET", "KW_REVOKE", + "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", "KW_ROLLUP", "KW_ROW", "KW_ROWS", + "KW_SECOND", "KW_SELECT", "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", + "KW_SMALLINT", "KW_START", "KW_STATIC", "KW_SUBSTRING", "KW_SUM", "KW_SYMMETRIC", + "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", "KW_TABLE", "KW_TABLESAMPLE", + "KW_THEN", "KW_TIME", "KW_TIMESTAMP", "KW_TINYINT", "KW_TO", "KW_TRUE", + "KW_TRUNCATE", "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UPPER", + "KW_UPSERT", "KW_USER", "KW_USING", "KW_VALUE", "KW_VALUES", "KW_VARBINARY", + "KW_VARCHAR", "KW_WHEN", "KW_WHERE", "KW_WINDOW", "KW_WITH", "KW_WITHIN", + "KW_WITHOUT", "KW_YEAR", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", + "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", + "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "LB_BRACKET", + "RB_BRACKET", "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", "STRING_LITERAL", @@ -902,7 +913,7 @@ export default class FlinkSqlLexer extends Lexer { public get modeNames(): string[] { return FlinkSqlLexer.modeNames; } - public static readonly _serializedATN: number[] = [4,0,402,3709,6,-1,2, + public static readonly _serializedATN: number[] = [4,0,407,3761,6,-1,2, 0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6,7,6,2,7,7,7,2,8,7,8,2, 9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7,13,2,14,7,14,2,15,7,15,2,16, 7,16,2,17,7,17,2,18,7,18,2,19,7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7, @@ -968,1212 +979,1231 @@ export default class FlinkSqlLexer extends Lexer { 2,391,7,391,2,392,7,392,2,393,7,393,2,394,7,394,2,395,7,395,2,396,7,396, 2,397,7,397,2,398,7,398,2,399,7,399,2,400,7,400,2,401,7,401,2,402,7,402, 2,403,7,403,2,404,7,404,2,405,7,405,2,406,7,406,2,407,7,407,2,408,7,408, - 2,409,7,409,2,410,7,410,2,411,7,411,1,0,4,0,827,8,0,11,0,12,0,828,1,0,1, - 0,1,1,1,1,1,1,1,1,5,1,837,8,1,10,1,12,1,840,9,1,1,1,1,1,1,1,1,1,1,1,1,2, - 1,2,1,2,3,2,850,8,2,1,2,5,2,853,8,2,10,2,12,2,856,9,2,1,2,3,2,859,8,2,1, - 2,1,2,3,2,863,8,2,1,2,1,2,1,2,1,2,3,2,869,8,2,1,2,1,2,3,2,873,8,2,3,2,875, - 8,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5, - 1,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, - 1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1, - 12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14,1,14,1,14, - 1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, - 15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,17, - 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20, - 1,20,1,20,1,20,1,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1, - 21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,23,1,23, - 1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1,25,1, - 25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,27,1,27, - 1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1, - 29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30, - 1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1, - 33,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, - 1,35,1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1, - 36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1, - 39,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40, - 1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1, - 43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45, - 1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1, - 47,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1, - 50,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1, - 54,1,54,1,54,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57, - 1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61, - 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1, - 64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66, - 1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1, - 67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,69, - 1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1, - 71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73, - 1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,76,1,76,1, - 76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77, - 1,77,1,77,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1, - 82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84, - 1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1, - 85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1, - 89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91, - 1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1, - 92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93, - 1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1, - 95,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97, - 1,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1, - 100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,101,1,101,1, - 101,1,101,1,101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1, - 102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1, - 104,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1, - 105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1, - 106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1, - 107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1, + 2,409,7,409,2,410,7,410,2,411,7,411,2,412,7,412,2,413,7,413,2,414,7,414, + 2,415,7,415,2,416,7,416,1,0,4,0,837,8,0,11,0,12,0,838,1,0,1,0,1,1,1,1,1, + 1,1,1,5,1,847,8,1,10,1,12,1,850,9,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,3,2, + 860,8,2,1,2,5,2,863,8,2,10,2,12,2,866,9,2,1,2,3,2,869,8,2,1,2,1,2,3,2,873, + 8,2,1,2,1,2,1,2,1,2,3,2,879,8,2,1,2,1,2,3,2,883,8,2,3,2,885,8,2,1,2,1,2, + 1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6, + 1,6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9, + 1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,11,1,11,1, + 11,1,11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, + 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14,1,14,1,14,1,14,1,14,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1, + 17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19, + 1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1, + 20,1,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,23,1,23,1,23,1,23,1, + 23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25, + 1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1, + 27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29, + 1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, + 31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,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,1,35,1,35,1, + 35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39, + 1,39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,1, + 41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43, + 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1, + 45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47, + 1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50, + 1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,52,1, + 52,1,52,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59, + 1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1, + 61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64, + 1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1, + 66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67, + 1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1, + 69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71, + 1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1, + 73,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76, + 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1, + 77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1, + 80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82, + 1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1, + 84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,86, + 1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,88,1, + 88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89, + 1,89,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1, + 91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, + 1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1, + 94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95, + 1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,98,1, + 98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1, + 100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1,101,1, + 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,102,1,103,1, + 103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1, + 104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1, + 106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1, + 106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1, + 107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,108,1, 108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1, - 108,1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1, - 109,1,109,1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1, - 110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1, + 108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1, + 109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1, + 110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111,1, 111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1, - 111,1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,113,1, - 113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1, - 115,1,115,1,115,1,115,1,115,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1, - 117,1,117,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1, - 118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1, - 120,1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1, - 121,1,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1, - 123,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1, - 124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1, - 126,1,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128,1, - 128,1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1, - 129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131,1,131,1, - 131,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1, - 133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,134,1,134,1, - 134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,136,1, - 136,1,136,1,136,1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,138,1, - 138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1, - 140,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141,1, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1, - 143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145,1, - 145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1, - 146,1,146,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1, - 148,1,148,1,148,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1, - 149,1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1, - 150,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1, - 151,1,151,1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1, - 152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1, - 153,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,154,1, - 154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,156,1, - 157,1,157,1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1, - 158,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,161,1, - 161,1,161,1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,163,1,163,1, - 163,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,165,1, - 165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1, - 166,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,168,1, - 168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1, - 169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1, - 171,1,171,1,171,1,171,1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1, - 173,1,173,1,173,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,176,1, - 176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,178,1, - 178,1,178,1,178,1,179,1,179,1,179,1,179,1,180,1,180,1,180,1,180,1,181,1, - 181,1,181,1,181,1,181,1,181,1,182,1,182,1,182,1,183,1,183,1,183,1,184,1, - 184,1,184,1,184,1,185,1,185,1,185,1,185,1,185,1,185,1,186,1,186,1,186,1, - 186,1,186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1, - 188,1,188,1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,190,1, - 190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1, - 192,1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,194,1,194,1,194,1,194,1, - 194,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,196,1,196,1,196,1,196,1, - 196,1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197,1,197,1,198,1,198,1, - 198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,200,1,200,1,200,1,200,1, - 200,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,202,1, - 202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203,1,203,1,204,1,204,1, - 204,1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1, - 205,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,207,1,207,1,207,1, - 207,1,207,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1, - 209,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,1, - 210,1,210,1,210,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1, - 211,1,211,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,213,1, - 213,1,213,1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,1,214,1, - 214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216,1, - 216,1,216,1,217,1,217,1,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1, - 218,1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220,1, - 220,1,220,1,220,1,220,1,221,1,221,1,221,1,221,1,221,1,222,1,222,1,222,1, - 222,1,222,1,222,1,222,1,222,1,222,1,223,1,223,1,223,1,223,1,224,1,224,1, - 224,1,224,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,226,1,226,1, - 226,1,226,1,226,1,226,1,226,1,226,1,227,1,227,1,227,1,227,1,227,1,227,1, - 227,1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,229,1,229,1,229,1, - 229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,230,1,230,1, + 111,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1, + 113,1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,115,1, + 115,1,115,1,115,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1, + 117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1, + 118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1, + 120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1, + 121,1,121,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1, + 123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1, + 125,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,1, + 127,1,127,1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1, + 128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130,1, + 130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131,1, + 131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1, + 133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,134,1,134,1,134,1,134,1, + 134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,136,1,136,1,136,1, + 136,1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1, + 138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,140,1,140,1, + 140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142,1, + 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1, + 143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1, + 145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,146,1, + 147,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1, + 148,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1, + 149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1, + 150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1, + 151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1, + 152,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,153,1, + 153,1,153,1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1, + 155,1,155,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1, + 157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1, + 159,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,161,1,161,1,161,1, + 161,1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1, + 163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165,1, + 165,1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,167,1, + 167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1, + 168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169,1, + 169,1,170,1,170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1, + 171,1,171,1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1, + 173,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1, + 176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1, + 178,1,179,1,179,1,179,1,179,1,180,1,180,1,180,1,180,1,181,1,181,1,181,1, + 181,1,181,1,181,1,182,1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,183,1, + 183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,185,1,185,1,185,1,185,1, + 186,1,186,1,186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187,1,187,1, + 187,1,187,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1, + 189,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1, + 191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,193,1,193,1,193,1, + 193,1,193,1,194,1,194,1,194,1,195,1,195,1,195,1,195,1,195,1,196,1,196,1, + 196,1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1, + 197,1,197,1,198,1,198,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1, + 200,1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,202,1,202,1, + 202,1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203,1, + 203,1,203,1,204,1,204,1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205,1, + 205,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,207,1,207,1, + 207,1,207,1,207,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1, + 208,1,208,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1, + 210,1,210,1,210,1,210,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1, + 212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,213,1, + 213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,1, + 214,1,214,1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,216,1,216,1, + 216,1,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,218,1, + 218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219,1,219,1, + 220,1,220,1,220,1,220,1,220,1,220,1,220,1,221,1,221,1,221,1,221,1,221,1, + 221,1,222,1,222,1,222,1,222,1,222,1,223,1,223,1,223,1,223,1,223,1,223,1, + 223,1,223,1,223,1,224,1,224,1,224,1,224,1,225,1,225,1,225,1,225,1,226,1, + 226,1,226,1,226,1,226,1,226,1,226,1,226,1,227,1,227,1,227,1,227,1,227,1, + 227,1,227,1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,229,1, + 229,1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230,1, 230,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,232,1,232,1, - 232,1,232,1,232,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,234,1,234,1, - 234,1,234,1,234,1,235,1,235,1,235,1,235,1,235,1,236,1,236,1,236,1,236,1, - 237,1,237,1,237,1,237,1,237,1,237,1,237,1,238,1,238,1,238,1,238,1,238,1, - 238,1,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,240,1,240,1, - 240,1,240,1,240,1,240,1,240,1,241,1,241,1,241,1,241,1,241,1,241,1,241,1, - 241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,243,1,243,1, - 243,1,243,1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244,1,244,1, - 245,1,245,1,245,1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,247,1,247,1, - 247,1,247,1,247,1,248,1,248,1,248,1,248,1,248,1,249,1,249,1,249,1,249,1, - 249,1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1, - 251,1,251,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252,1,252,1,252,1, - 253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,254,1,254,1,254,1, - 254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,256,1, - 256,1,256,1,256,1,256,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,258,1, - 258,1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1, - 260,1,260,1,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,1,261,1,261,1, - 262,1,262,1,262,1,262,1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,264,1, - 264,1,264,1,264,1,264,1,264,1,264,1,264,1,265,1,265,1,265,1,265,1,265,1, - 265,1,265,1,265,1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1, - 266,1,266,1,267,1,267,1,267,1,267,1,267,1,268,1,268,1,268,1,269,1,269,1, - 269,1,269,1,269,1,270,1,270,1,270,1,270,1,271,1,271,1,271,1,271,1,271,1, - 271,1,271,1,271,1,271,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1, + 232,1,232,1,232,1,232,1,232,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1, + 233,1,233,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235,1,235,1,235,1, + 236,1,236,1,236,1,236,1,236,1,237,1,237,1,237,1,237,1,238,1,238,1,238,1, + 238,1,238,1,238,1,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,240,1, + 240,1,240,1,240,1,240,1,240,1,240,1,241,1,241,1,241,1,241,1,241,1,241,1, + 241,1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,243,1,243,1,243,1, + 243,1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1, + 244,1,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246,1,246,1, + 246,1,246,1,246,1,246,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248,1, + 248,1,248,1,249,1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250,1, + 251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1, + 252,1,252,1,252,1,252,1,253,1,253,1,253,1,253,1,253,1,253,1,254,1,254,1, + 254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1, + 255,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,257,1,257,1,257,1,257,1, + 257,1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,259,1,259,1,259,1,259,1, + 259,1,259,1,259,1,260,1,260,1,260,1,261,1,261,1,261,1,261,1,261,1,261,1, + 261,1,261,1,261,1,261,1,262,1,262,1,262,1,262,1,262,1,262,1,263,1,263,1, + 263,1,263,1,263,1,263,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,265,1, + 265,1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,267,1, + 267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,268,1,268,1,268,1, + 268,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269,1,269,1,269,1,270,1, + 270,1,270,1,271,1,271,1,271,1,271,1,271,1,272,1,272,1,272,1,272,1,273,1, 273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274,1, - 274,1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,276,1,276,1, - 277,1,277,1,277,1,277,1,277,1,277,1,278,1,278,1,278,1,278,1,278,1,278,1, - 279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1, - 279,1,279,1,279,1,279,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1, - 280,1,281,1,281,1,281,1,281,1,281,1,281,1,282,1,282,1,282,1,282,1,282,1, - 282,1,282,1,282,1,282,1,283,1,283,1,283,1,283,1,283,1,283,1,284,1,284,1, - 284,1,284,1,284,1,284,1,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1, + 274,1,274,1,274,1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1, + 276,1,276,1,276,1,276,1,276,1,277,1,277,1,277,1,277,1,277,1,278,1,278,1, + 278,1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1, + 280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1, + 281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,282,1,282,1,282,1,282,1, + 282,1,282,1,282,1,282,1,282,1,283,1,283,1,283,1,283,1,283,1,283,1,284,1, + 284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,285,1,285,1,285,1,285,1, 285,1,285,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,287,1,287,1,287,1, - 287,1,287,1,287,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1, - 289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,290,1,290,1,290,1,290,1, - 290,1,291,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,293,1,293,1,293,1, - 293,1,294,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295,1,295,1,295,1, - 295,1,295,1,296,1,296,1,296,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1, - 298,1,298,1,298,1,299,1,299,1,299,1,299,1,300,1,300,1,300,1,301,1,301,1, - 301,1,301,1,301,1,301,1,302,1,302,1,302,1,302,1,303,1,303,1,303,1,303,1, - 303,1,303,1,304,1,304,1,304,1,304,1,304,1,305,1,305,1,305,1,305,1,305,1, - 305,1,305,1,305,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1, - 306,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,308,1,308,1,308,1, - 308,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,310,1,310,1,310,1, - 310,1,310,1,310,1,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1, - 311,1,312,1,312,1,312,1,312,1,312,1,312,1,312,1,312,1,313,1,313,1,313,1, - 313,1,313,1,313,1,314,1,314,1,314,1,314,1,314,1,315,1,315,1,315,1,315,1, - 315,1,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,317,1,317,1,317,1, - 317,1,317,1,317,1,318,1,318,1,318,1,318,1,318,1,318,1,319,1,319,1,319,1, - 319,1,319,1,319,1,319,1,319,1,319,1,320,1,320,1,320,1,320,1,320,1,320,1, - 320,1,321,1,321,1,321,1,321,1,322,1,322,1,322,1,322,1,322,1,323,1,323,1, - 323,1,323,1,323,1,323,1,323,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1, - 325,1,325,1,325,1,325,1,326,1,326,1,326,1,326,1,326,1,327,1,327,1,327,1, - 327,1,327,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,329,1, - 329,1,329,1,329,1,329,1,329,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1, - 331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,332,1,332,1, - 332,1,332,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,334,1,334,1,334,1, - 334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,335,1,335,1,335,1, - 335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,336,1,336,1,336,1, - 336,1,336,1,336,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1, - 337,1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,339,1,339,1,339,1,339,1, - 339,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,341,1, - 341,1,341,1,341,1,341,1,341,1,341,1,341,1,342,1,342,1,342,1,343,1,343,1, - 343,1,343,1,343,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1, - 345,1,345,1,345,1,345,1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1, - 346,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,348,1,348,1,348,1, - 348,1,348,1,348,1,348,1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350,1, - 350,1,350,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,351,1,352,1,352,1, - 352,1,352,1,352,1,352,1,353,1,353,1,353,1,353,1,353,1,353,1,354,1,354,1, - 354,1,354,1,354,1,354,1,354,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1, - 355,1,355,1,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,357,1, - 357,1,357,1,357,1,357,1,358,1,358,1,358,1,358,1,358,1,358,1,359,1,359,1, - 359,1,359,1,359,1,359,1,359,1,360,1,360,1,360,1,360,1,360,1,361,1,361,1, - 361,1,361,1,361,1,361,1,361,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1, - 362,1,363,1,363,1,363,1,363,1,363,1,364,1,364,1,365,1,365,1,366,1,366,1, - 367,1,367,1,368,1,368,1,369,1,369,1,370,1,370,1,371,1,371,1,372,1,372,1, - 373,1,373,1,374,1,374,1,375,1,375,1,376,1,376,1,377,1,377,1,378,1,378,1, - 379,1,379,1,380,1,380,1,381,1,381,1,382,1,382,1,383,1,383,1,384,1,384,1, - 385,1,385,1,386,1,386,1,387,1,387,1,388,1,388,1,389,1,389,1,390,1,390,1, - 391,1,391,1,391,1,392,1,392,1,392,1,393,1,393,1,394,1,394,1,395,1,395,1, - 395,1,396,1,396,1,396,3,396,3550,8,396,1,397,4,397,3553,8,397,11,397,12, - 397,3554,1,398,4,398,3558,8,398,11,398,12,398,3559,3,398,3562,8,398,1,398, - 1,398,4,398,3566,8,398,11,398,12,398,3567,1,398,4,398,3571,8,398,11,398, - 12,398,3572,1,398,1,398,1,398,1,398,4,398,3579,8,398,11,398,12,398,3580, - 3,398,3583,8,398,1,398,1,398,4,398,3587,8,398,11,398,12,398,3588,1,398, - 1,398,1,398,4,398,3594,8,398,11,398,12,398,3595,1,398,1,398,3,398,3600, - 8,398,1,399,1,399,1,400,1,400,1,401,1,401,1,402,1,402,5,402,3610,8,402, - 10,402,12,402,3613,9,402,4,402,3615,8,402,11,402,12,402,3616,1,403,1,403, - 1,403,1,403,1,403,1,403,5,403,3625,8,403,10,403,12,403,3628,9,403,1,403, - 1,403,1,404,1,404,3,404,3634,8,404,1,404,4,404,3637,8,404,11,404,12,404, - 3638,1,405,5,405,3642,8,405,10,405,12,405,3645,9,405,1,405,4,405,3648,8, - 405,11,405,12,405,3649,1,405,5,405,3653,8,405,10,405,12,405,3656,9,405, - 1,406,1,406,1,407,1,407,1,408,1,408,1,408,1,408,1,408,1,408,5,408,3668, - 8,408,10,408,12,408,3671,9,408,1,408,1,408,1,409,1,409,1,409,1,409,1,409, - 1,409,5,409,3681,8,409,10,409,12,409,3684,9,409,1,409,1,409,1,410,1,410, - 1,410,4,410,3691,8,410,11,410,12,410,3692,1,410,1,410,1,411,1,411,1,411, - 1,411,1,411,1,411,5,411,3703,8,411,10,411,12,411,3706,9,411,1,411,1,411, - 3,838,3643,3649,0,412,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21, - 11,23,12,25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45, - 23,47,24,49,25,51,26,53,27,55,28,57,29,59,30,61,31,63,32,65,33,67,34,69, - 35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93, - 47,95,48,97,49,99,50,101,51,103,52,105,53,107,54,109,55,111,56,113,57,115, - 58,117,59,119,60,121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68, - 137,69,139,70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155,78,157, - 79,159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87,175,88,177,89, - 179,90,181,91,183,92,185,93,187,94,189,95,191,96,193,97,195,98,197,99,199, - 100,201,101,203,102,205,103,207,104,209,105,211,106,213,107,215,108,217, - 109,219,110,221,111,223,112,225,113,227,114,229,115,231,116,233,117,235, - 118,237,119,239,120,241,121,243,122,245,123,247,124,249,125,251,126,253, - 127,255,128,257,129,259,130,261,131,263,132,265,133,267,134,269,135,271, - 136,273,137,275,138,277,139,279,140,281,141,283,142,285,143,287,144,289, - 145,291,146,293,147,295,148,297,149,299,150,301,151,303,152,305,153,307, - 154,309,155,311,156,313,157,315,158,317,159,319,160,321,161,323,162,325, - 163,327,164,329,165,331,166,333,167,335,168,337,169,339,170,341,171,343, - 172,345,173,347,174,349,175,351,176,353,177,355,178,357,179,359,180,361, - 181,363,182,365,183,367,184,369,185,371,186,373,187,375,188,377,189,379, - 190,381,191,383,192,385,193,387,194,389,195,391,196,393,197,395,198,397, - 199,399,200,401,201,403,202,405,203,407,204,409,205,411,206,413,207,415, - 208,417,209,419,210,421,211,423,212,425,213,427,214,429,215,431,216,433, - 217,435,218,437,219,439,220,441,221,443,222,445,223,447,224,449,225,451, - 226,453,227,455,228,457,229,459,230,461,231,463,232,465,233,467,234,469, - 235,471,236,473,237,475,238,477,239,479,240,481,241,483,242,485,243,487, - 244,489,245,491,246,493,247,495,248,497,249,499,250,501,251,503,252,505, - 253,507,254,509,255,511,256,513,257,515,258,517,259,519,260,521,261,523, - 262,525,263,527,264,529,265,531,266,533,267,535,268,537,269,539,270,541, - 271,543,272,545,273,547,274,549,275,551,276,553,277,555,278,557,279,559, - 280,561,281,563,282,565,283,567,284,569,285,571,286,573,287,575,288,577, - 289,579,290,581,291,583,292,585,293,587,294,589,295,591,296,593,297,595, - 298,597,299,599,300,601,301,603,302,605,303,607,304,609,305,611,306,613, - 307,615,308,617,309,619,310,621,311,623,312,625,313,627,314,629,315,631, - 316,633,317,635,318,637,319,639,320,641,321,643,322,645,323,647,324,649, - 325,651,326,653,327,655,328,657,329,659,330,661,331,663,332,665,333,667, - 334,669,335,671,336,673,337,675,338,677,339,679,340,681,341,683,342,685, - 343,687,344,689,345,691,346,693,347,695,348,697,349,699,350,701,351,703, - 352,705,353,707,354,709,355,711,356,713,357,715,358,717,359,719,360,721, - 361,723,362,725,363,727,364,729,365,731,366,733,367,735,368,737,369,739, - 370,741,371,743,372,745,373,747,374,749,375,751,376,753,377,755,378,757, - 379,759,380,761,381,763,382,765,383,767,384,769,385,771,386,773,387,775, - 388,777,389,779,390,781,391,783,392,785,393,787,394,789,395,791,396,793, - 397,795,398,797,399,799,400,801,401,803,402,805,0,807,0,809,0,811,0,813, - 0,815,0,817,0,819,0,821,0,823,0,1,0,13,3,0,9,10,13,13,32,32,2,0,10,10,13, - 13,2,0,47,47,92,92,3,0,32,32,47,47,92,92,2,0,92,92,96,96,2,0,43,43,45,45, - 4,0,48,57,65,90,95,95,97,122,3,0,65,90,95,95,97,122,1,0,48,57,2,0,65,90, - 97,122,2,0,34,34,92,92,2,0,39,39,92,92,1,0,48,49,3741,0,1,1,0,0,0,0,3,1, - 0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15, - 1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0, - 0,0,27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37, - 1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0, - 0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59, - 1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0, - 0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81, - 1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0, - 0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103, - 1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1, - 0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0, - 0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0, - 0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0, - 0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0, - 155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165, - 1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1, - 0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0, - 0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0, - 0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0, - 0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0, - 217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227, - 1,0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1, - 0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0, - 0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0, - 0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0, - 0,269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0, - 279,1,0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289, - 1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1, - 0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0, - 0,0,0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0, - 0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0, - 0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0, - 341,1,0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351, - 1,0,0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1, - 0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0, - 0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0, - 0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0, - 0,393,1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,401,1,0,0,0,0, - 403,1,0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1,0,0,0,0,411,1,0,0,0,0,413, - 1,0,0,0,0,415,1,0,0,0,0,417,1,0,0,0,0,419,1,0,0,0,0,421,1,0,0,0,0,423,1, - 0,0,0,0,425,1,0,0,0,0,427,1,0,0,0,0,429,1,0,0,0,0,431,1,0,0,0,0,433,1,0, - 0,0,0,435,1,0,0,0,0,437,1,0,0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1,0,0, - 0,0,445,1,0,0,0,0,447,1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0, - 0,455,1,0,0,0,0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0, - 465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475, - 1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485,1, - 0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495,1,0, - 0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0,0,505,1,0,0, - 0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0, - 0,517,1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0, - 527,1,0,0,0,0,529,1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537, - 1,0,0,0,0,539,1,0,0,0,0,541,1,0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0,547,1, - 0,0,0,0,549,1,0,0,0,0,551,1,0,0,0,0,553,1,0,0,0,0,555,1,0,0,0,0,557,1,0, - 0,0,0,559,1,0,0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565,1,0,0,0,0,567,1,0,0, - 0,0,569,1,0,0,0,0,571,1,0,0,0,0,573,1,0,0,0,0,575,1,0,0,0,0,577,1,0,0,0, - 0,579,1,0,0,0,0,581,1,0,0,0,0,583,1,0,0,0,0,585,1,0,0,0,0,587,1,0,0,0,0, - 589,1,0,0,0,0,591,1,0,0,0,0,593,1,0,0,0,0,595,1,0,0,0,0,597,1,0,0,0,0,599, - 1,0,0,0,0,601,1,0,0,0,0,603,1,0,0,0,0,605,1,0,0,0,0,607,1,0,0,0,0,609,1, - 0,0,0,0,611,1,0,0,0,0,613,1,0,0,0,0,615,1,0,0,0,0,617,1,0,0,0,0,619,1,0, - 0,0,0,621,1,0,0,0,0,623,1,0,0,0,0,625,1,0,0,0,0,627,1,0,0,0,0,629,1,0,0, - 0,0,631,1,0,0,0,0,633,1,0,0,0,0,635,1,0,0,0,0,637,1,0,0,0,0,639,1,0,0,0, - 0,641,1,0,0,0,0,643,1,0,0,0,0,645,1,0,0,0,0,647,1,0,0,0,0,649,1,0,0,0,0, - 651,1,0,0,0,0,653,1,0,0,0,0,655,1,0,0,0,0,657,1,0,0,0,0,659,1,0,0,0,0,661, - 1,0,0,0,0,663,1,0,0,0,0,665,1,0,0,0,0,667,1,0,0,0,0,669,1,0,0,0,0,671,1, - 0,0,0,0,673,1,0,0,0,0,675,1,0,0,0,0,677,1,0,0,0,0,679,1,0,0,0,0,681,1,0, - 0,0,0,683,1,0,0,0,0,685,1,0,0,0,0,687,1,0,0,0,0,689,1,0,0,0,0,691,1,0,0, - 0,0,693,1,0,0,0,0,695,1,0,0,0,0,697,1,0,0,0,0,699,1,0,0,0,0,701,1,0,0,0, - 0,703,1,0,0,0,0,705,1,0,0,0,0,707,1,0,0,0,0,709,1,0,0,0,0,711,1,0,0,0,0, - 713,1,0,0,0,0,715,1,0,0,0,0,717,1,0,0,0,0,719,1,0,0,0,0,721,1,0,0,0,0,723, - 1,0,0,0,0,725,1,0,0,0,0,727,1,0,0,0,0,729,1,0,0,0,0,731,1,0,0,0,0,733,1, - 0,0,0,0,735,1,0,0,0,0,737,1,0,0,0,0,739,1,0,0,0,0,741,1,0,0,0,0,743,1,0, - 0,0,0,745,1,0,0,0,0,747,1,0,0,0,0,749,1,0,0,0,0,751,1,0,0,0,0,753,1,0,0, - 0,0,755,1,0,0,0,0,757,1,0,0,0,0,759,1,0,0,0,0,761,1,0,0,0,0,763,1,0,0,0, - 0,765,1,0,0,0,0,767,1,0,0,0,0,769,1,0,0,0,0,771,1,0,0,0,0,773,1,0,0,0,0, - 775,1,0,0,0,0,777,1,0,0,0,0,779,1,0,0,0,0,781,1,0,0,0,0,783,1,0,0,0,0,785, - 1,0,0,0,0,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0,0,0,0,793,1,0,0,0,0,795,1, - 0,0,0,0,797,1,0,0,0,0,799,1,0,0,0,0,801,1,0,0,0,0,803,1,0,0,0,1,826,1,0, - 0,0,3,832,1,0,0,0,5,874,1,0,0,0,7,878,1,0,0,0,9,882,1,0,0,0,11,888,1,0, - 0,0,13,894,1,0,0,0,15,902,1,0,0,0,17,906,1,0,0,0,19,913,1,0,0,0,21,919, - 1,0,0,0,23,927,1,0,0,0,25,935,1,0,0,0,27,944,1,0,0,0,29,952,1,0,0,0,31, - 958,1,0,0,0,33,973,1,0,0,0,35,984,1,0,0,0,37,992,1,0,0,0,39,1000,1,0,0, - 0,41,1008,1,0,0,0,43,1020,1,0,0,0,45,1032,1,0,0,0,47,1041,1,0,0,0,49,1046, - 1,0,0,0,51,1055,1,0,0,0,53,1065,1,0,0,0,55,1070,1,0,0,0,57,1077,1,0,0,0, - 59,1085,1,0,0,0,61,1090,1,0,0,0,63,1101,1,0,0,0,65,1105,1,0,0,0,67,1114, - 1,0,0,0,69,1123,1,0,0,0,71,1130,1,0,0,0,73,1136,1,0,0,0,75,1151,1,0,0,0, - 77,1161,1,0,0,0,79,1169,1,0,0,0,81,1179,1,0,0,0,83,1188,1,0,0,0,85,1193, - 1,0,0,0,87,1199,1,0,0,0,89,1205,1,0,0,0,91,1215,1,0,0,0,93,1222,1,0,0,0, - 95,1230,1,0,0,0,97,1236,1,0,0,0,99,1248,1,0,0,0,101,1258,1,0,0,0,103,1266, - 1,0,0,0,105,1276,1,0,0,0,107,1279,1,0,0,0,109,1284,1,0,0,0,111,1292,1,0, - 0,0,113,1296,1,0,0,0,115,1302,1,0,0,0,117,1305,1,0,0,0,119,1312,1,0,0,0, - 121,1322,1,0,0,0,123,1328,1,0,0,0,125,1336,1,0,0,0,127,1340,1,0,0,0,129, - 1345,1,0,0,0,131,1350,1,0,0,0,133,1355,1,0,0,0,135,1375,1,0,0,0,137,1379, - 1,0,0,0,139,1390,1,0,0,0,141,1399,1,0,0,0,143,1405,1,0,0,0,145,1410,1,0, - 0,0,147,1417,1,0,0,0,149,1423,1,0,0,0,151,1428,1,0,0,0,153,1432,1,0,0,0, - 155,1444,1,0,0,0,157,1455,1,0,0,0,159,1467,1,0,0,0,161,1475,1,0,0,0,163, - 1484,1,0,0,0,165,1491,1,0,0,0,167,1499,1,0,0,0,169,1506,1,0,0,0,171,1517, - 1,0,0,0,173,1523,1,0,0,0,175,1530,1,0,0,0,177,1537,1,0,0,0,179,1545,1,0, - 0,0,181,1554,1,0,0,0,183,1561,1,0,0,0,185,1571,1,0,0,0,187,1583,1,0,0,0, - 189,1595,1,0,0,0,191,1606,1,0,0,0,193,1614,1,0,0,0,195,1619,1,0,0,0,197, - 1624,1,0,0,0,199,1632,1,0,0,0,201,1637,1,0,0,0,203,1647,1,0,0,0,205,1656, - 1,0,0,0,207,1662,1,0,0,0,209,1673,1,0,0,0,211,1680,1,0,0,0,213,1687,1,0, - 0,0,215,1700,1,0,0,0,217,1720,1,0,0,0,219,1740,1,0,0,0,221,1751,1,0,0,0, - 223,1767,1,0,0,0,225,1784,1,0,0,0,227,1792,1,0,0,0,229,1796,1,0,0,0,231, - 1801,1,0,0,0,233,1810,1,0,0,0,235,1817,1,0,0,0,237,1824,1,0,0,0,239,1832, - 1,0,0,0,241,1840,1,0,0,0,243,1848,1,0,0,0,245,1857,1,0,0,0,247,1862,1,0, - 0,0,249,1872,1,0,0,0,251,1878,1,0,0,0,253,1885,1,0,0,0,255,1891,1,0,0,0, - 257,1898,1,0,0,0,259,1906,1,0,0,0,261,1914,1,0,0,0,263,1923,1,0,0,0,265, - 1928,1,0,0,0,267,1935,1,0,0,0,269,1947,1,0,0,0,271,1955,1,0,0,0,273,1960, - 1,0,0,0,275,1967,1,0,0,0,277,1972,1,0,0,0,279,1978,1,0,0,0,281,1985,1,0, - 0,0,283,1991,1,0,0,0,285,1997,1,0,0,0,287,2007,1,0,0,0,289,2012,1,0,0,0, - 291,2019,1,0,0,0,293,2029,1,0,0,0,295,2035,1,0,0,0,297,2042,1,0,0,0,299, - 2052,1,0,0,0,301,2060,1,0,0,0,303,2074,1,0,0,0,305,2087,1,0,0,0,307,2101, - 1,0,0,0,309,2111,1,0,0,0,311,2118,1,0,0,0,313,2123,1,0,0,0,315,2129,1,0, - 0,0,317,2136,1,0,0,0,319,2142,1,0,0,0,321,2146,1,0,0,0,323,2152,1,0,0,0, - 325,2158,1,0,0,0,327,2163,1,0,0,0,329,2171,1,0,0,0,331,2176,1,0,0,0,333, - 2182,1,0,0,0,335,2190,1,0,0,0,337,2200,1,0,0,0,339,2211,1,0,0,0,341,2216, - 1,0,0,0,343,2221,1,0,0,0,345,2229,1,0,0,0,347,2235,1,0,0,0,349,2240,1,0, - 0,0,351,2244,1,0,0,0,353,2248,1,0,0,0,355,2254,1,0,0,0,357,2260,1,0,0,0, - 359,2264,1,0,0,0,361,2268,1,0,0,0,363,2272,1,0,0,0,365,2278,1,0,0,0,367, - 2281,1,0,0,0,369,2284,1,0,0,0,371,2288,1,0,0,0,373,2294,1,0,0,0,375,2302, - 1,0,0,0,377,2309,1,0,0,0,379,2316,1,0,0,0,381,2320,1,0,0,0,383,2325,1,0, - 0,0,385,2333,1,0,0,0,387,2338,1,0,0,0,389,2341,1,0,0,0,391,2346,1,0,0,0, - 393,2353,1,0,0,0,395,2362,1,0,0,0,397,2367,1,0,0,0,399,2372,1,0,0,0,401, - 2377,1,0,0,0,403,2382,1,0,0,0,405,2392,1,0,0,0,407,2398,1,0,0,0,409,2403, - 1,0,0,0,411,2409,1,0,0,0,413,2418,1,0,0,0,415,2426,1,0,0,0,417,2434,1,0, - 0,0,419,2441,1,0,0,0,421,2448,1,0,0,0,423,2456,1,0,0,0,425,2467,1,0,0,0, - 427,2476,1,0,0,0,429,2484,1,0,0,0,431,2490,1,0,0,0,433,2497,1,0,0,0,435, - 2503,1,0,0,0,437,2508,1,0,0,0,439,2516,1,0,0,0,441,2523,1,0,0,0,443,2529, - 1,0,0,0,445,2534,1,0,0,0,447,2543,1,0,0,0,449,2547,1,0,0,0,451,2551,1,0, - 0,0,453,2559,1,0,0,0,455,2567,1,0,0,0,457,2575,1,0,0,0,459,2582,1,0,0,0, - 461,2589,1,0,0,0,463,2598,1,0,0,0,465,2607,1,0,0,0,467,2614,1,0,0,0,469, - 2619,1,0,0,0,471,2624,1,0,0,0,473,2629,1,0,0,0,475,2633,1,0,0,0,477,2640, - 1,0,0,0,479,2647,1,0,0,0,481,2655,1,0,0,0,483,2662,1,0,0,0,485,2670,1,0, - 0,0,487,2679,1,0,0,0,489,2687,1,0,0,0,491,2693,1,0,0,0,493,2699,1,0,0,0, - 495,2703,1,0,0,0,497,2708,1,0,0,0,499,2713,1,0,0,0,501,2722,1,0,0,0,503, - 2729,1,0,0,0,505,2735,1,0,0,0,507,2741,1,0,0,0,509,2750,1,0,0,0,511,2757, - 1,0,0,0,513,2764,1,0,0,0,515,2769,1,0,0,0,517,2776,1,0,0,0,519,2779,1,0, - 0,0,521,2789,1,0,0,0,523,2795,1,0,0,0,525,2801,1,0,0,0,527,2808,1,0,0,0, - 529,2812,1,0,0,0,531,2820,1,0,0,0,533,2830,1,0,0,0,535,2839,1,0,0,0,537, - 2844,1,0,0,0,539,2847,1,0,0,0,541,2852,1,0,0,0,543,2856,1,0,0,0,545,2865, - 1,0,0,0,547,2873,1,0,0,0,549,2881,1,0,0,0,551,2886,1,0,0,0,553,2891,1,0, - 0,0,555,2897,1,0,0,0,557,2903,1,0,0,0,559,2909,1,0,0,0,561,2925,1,0,0,0, - 563,2934,1,0,0,0,565,2940,1,0,0,0,567,2949,1,0,0,0,569,2955,1,0,0,0,571, - 2962,1,0,0,0,573,2971,1,0,0,0,575,2978,1,0,0,0,577,2984,1,0,0,0,579,2993, - 1,0,0,0,581,3001,1,0,0,0,583,3006,1,0,0,0,585,3009,1,0,0,0,587,3014,1,0, - 0,0,589,3018,1,0,0,0,591,3023,1,0,0,0,593,3031,1,0,0,0,595,3034,1,0,0,0, - 597,3041,1,0,0,0,599,3044,1,0,0,0,601,3048,1,0,0,0,603,3051,1,0,0,0,605, - 3057,1,0,0,0,607,3061,1,0,0,0,609,3067,1,0,0,0,611,3072,1,0,0,0,613,3080, - 1,0,0,0,615,3090,1,0,0,0,617,3098,1,0,0,0,619,3102,1,0,0,0,621,3110,1,0, - 0,0,623,3117,1,0,0,0,625,3126,1,0,0,0,627,3134,1,0,0,0,629,3140,1,0,0,0, - 631,3145,1,0,0,0,633,3151,1,0,0,0,635,3158,1,0,0,0,637,3164,1,0,0,0,639, - 3170,1,0,0,0,641,3179,1,0,0,0,643,3186,1,0,0,0,645,3190,1,0,0,0,647,3195, - 1,0,0,0,649,3202,1,0,0,0,651,3209,1,0,0,0,653,3213,1,0,0,0,655,3218,1,0, - 0,0,657,3223,1,0,0,0,659,3232,1,0,0,0,661,3238,1,0,0,0,663,3245,1,0,0,0, - 665,3255,1,0,0,0,667,3259,1,0,0,0,669,3266,1,0,0,0,671,3278,1,0,0,0,673, - 3290,1,0,0,0,675,3296,1,0,0,0,677,3308,1,0,0,0,679,3313,1,0,0,0,681,3318, - 1,0,0,0,683,3328,1,0,0,0,685,3336,1,0,0,0,687,3339,1,0,0,0,689,3344,1,0, - 0,0,691,3353,1,0,0,0,693,3359,1,0,0,0,695,3366,1,0,0,0,697,3374,1,0,0,0, - 699,3381,1,0,0,0,701,3387,1,0,0,0,703,3394,1,0,0,0,705,3399,1,0,0,0,707, - 3405,1,0,0,0,709,3411,1,0,0,0,711,3418,1,0,0,0,713,3428,1,0,0,0,715,3436, - 1,0,0,0,717,3441,1,0,0,0,719,3447,1,0,0,0,721,3454,1,0,0,0,723,3459,1,0, - 0,0,725,3466,1,0,0,0,727,3474,1,0,0,0,729,3479,1,0,0,0,731,3481,1,0,0,0, - 733,3483,1,0,0,0,735,3485,1,0,0,0,737,3487,1,0,0,0,739,3489,1,0,0,0,741, - 3491,1,0,0,0,743,3493,1,0,0,0,745,3495,1,0,0,0,747,3497,1,0,0,0,749,3499, - 1,0,0,0,751,3501,1,0,0,0,753,3503,1,0,0,0,755,3505,1,0,0,0,757,3507,1,0, - 0,0,759,3509,1,0,0,0,761,3511,1,0,0,0,763,3513,1,0,0,0,765,3515,1,0,0,0, - 767,3517,1,0,0,0,769,3519,1,0,0,0,771,3521,1,0,0,0,773,3523,1,0,0,0,775, - 3525,1,0,0,0,777,3527,1,0,0,0,779,3529,1,0,0,0,781,3531,1,0,0,0,783,3533, - 1,0,0,0,785,3536,1,0,0,0,787,3539,1,0,0,0,789,3541,1,0,0,0,791,3543,1,0, - 0,0,793,3549,1,0,0,0,795,3552,1,0,0,0,797,3599,1,0,0,0,799,3601,1,0,0,0, - 801,3603,1,0,0,0,803,3605,1,0,0,0,805,3614,1,0,0,0,807,3618,1,0,0,0,809, - 3631,1,0,0,0,811,3643,1,0,0,0,813,3657,1,0,0,0,815,3659,1,0,0,0,817,3661, - 1,0,0,0,819,3674,1,0,0,0,821,3687,1,0,0,0,823,3696,1,0,0,0,825,827,7,0, - 0,0,826,825,1,0,0,0,827,828,1,0,0,0,828,826,1,0,0,0,828,829,1,0,0,0,829, - 830,1,0,0,0,830,831,6,0,0,0,831,2,1,0,0,0,832,833,5,47,0,0,833,834,5,42, - 0,0,834,838,1,0,0,0,835,837,9,0,0,0,836,835,1,0,0,0,837,840,1,0,0,0,838, - 839,1,0,0,0,838,836,1,0,0,0,839,841,1,0,0,0,840,838,1,0,0,0,841,842,5,42, - 0,0,842,843,5,47,0,0,843,844,1,0,0,0,844,845,6,1,0,0,845,4,1,0,0,0,846, - 847,5,45,0,0,847,850,5,45,0,0,848,850,5,35,0,0,849,846,1,0,0,0,849,848, - 1,0,0,0,850,854,1,0,0,0,851,853,8,1,0,0,852,851,1,0,0,0,853,856,1,0,0,0, - 854,852,1,0,0,0,854,855,1,0,0,0,855,862,1,0,0,0,856,854,1,0,0,0,857,859, - 5,13,0,0,858,857,1,0,0,0,858,859,1,0,0,0,859,860,1,0,0,0,860,863,5,10,0, - 0,861,863,5,0,0,1,862,858,1,0,0,0,862,861,1,0,0,0,863,875,1,0,0,0,864,865, - 5,45,0,0,865,866,5,45,0,0,866,872,1,0,0,0,867,869,5,13,0,0,868,867,1,0, - 0,0,868,869,1,0,0,0,869,870,1,0,0,0,870,873,5,10,0,0,871,873,5,0,0,1,872, - 868,1,0,0,0,872,871,1,0,0,0,873,875,1,0,0,0,874,849,1,0,0,0,874,864,1,0, - 0,0,875,876,1,0,0,0,876,877,6,2,0,0,877,6,1,0,0,0,878,879,5,65,0,0,879, - 880,5,68,0,0,880,881,5,68,0,0,881,8,1,0,0,0,882,883,5,65,0,0,883,884,5, - 68,0,0,884,885,5,77,0,0,885,886,5,73,0,0,886,887,5,78,0,0,887,10,1,0,0, - 0,888,889,5,65,0,0,889,890,5,70,0,0,890,891,5,84,0,0,891,892,5,69,0,0,892, - 893,5,82,0,0,893,12,1,0,0,0,894,895,5,65,0,0,895,896,5,78,0,0,896,897,5, - 65,0,0,897,898,5,76,0,0,898,899,5,89,0,0,899,900,5,90,0,0,900,901,5,69, - 0,0,901,14,1,0,0,0,902,903,5,65,0,0,903,904,5,83,0,0,904,905,5,67,0,0,905, - 16,1,0,0,0,906,907,5,66,0,0,907,908,5,69,0,0,908,909,5,70,0,0,909,910,5, - 79,0,0,910,911,5,82,0,0,911,912,5,69,0,0,912,18,1,0,0,0,913,914,5,66,0, - 0,914,915,5,89,0,0,915,916,5,84,0,0,916,917,5,69,0,0,917,918,5,83,0,0,918, - 20,1,0,0,0,919,920,5,67,0,0,920,921,5,65,0,0,921,922,5,83,0,0,922,923,5, - 67,0,0,923,924,5,65,0,0,924,925,5,68,0,0,925,926,5,69,0,0,926,22,1,0,0, - 0,927,928,5,67,0,0,928,929,5,65,0,0,929,930,5,84,0,0,930,931,5,65,0,0,931, - 932,5,76,0,0,932,933,5,79,0,0,933,934,5,71,0,0,934,24,1,0,0,0,935,936,5, - 67,0,0,936,937,5,65,0,0,937,938,5,84,0,0,938,939,5,65,0,0,939,940,5,76, - 0,0,940,941,5,79,0,0,941,942,5,71,0,0,942,943,5,83,0,0,943,26,1,0,0,0,944, - 945,5,67,0,0,945,946,5,69,0,0,946,947,5,78,0,0,947,948,5,84,0,0,948,949, - 5,85,0,0,949,950,5,82,0,0,950,951,5,89,0,0,951,28,1,0,0,0,952,953,5,67, - 0,0,953,954,5,72,0,0,954,955,5,65,0,0,955,956,5,73,0,0,956,957,5,78,0,0, - 957,30,1,0,0,0,958,959,5,67,0,0,959,960,5,72,0,0,960,961,5,65,0,0,961,962, - 5,78,0,0,962,963,5,71,0,0,963,964,5,69,0,0,964,965,5,76,0,0,965,966,5,79, - 0,0,966,967,5,71,0,0,967,968,5,95,0,0,968,969,5,77,0,0,969,970,5,79,0,0, - 970,971,5,68,0,0,971,972,5,69,0,0,972,32,1,0,0,0,973,974,5,67,0,0,974,975, - 5,72,0,0,975,976,5,65,0,0,976,977,5,82,0,0,977,978,5,65,0,0,978,979,5,67, - 0,0,979,980,5,84,0,0,980,981,5,69,0,0,981,982,5,82,0,0,982,983,5,83,0,0, - 983,34,1,0,0,0,984,985,5,67,0,0,985,986,5,79,0,0,986,987,5,77,0,0,987,988, - 5,77,0,0,988,989,5,69,0,0,989,990,5,78,0,0,990,991,5,84,0,0,991,36,1,0, - 0,0,992,993,5,67,0,0,993,994,5,79,0,0,994,995,5,77,0,0,995,996,5,80,0,0, - 996,997,5,65,0,0,997,998,5,67,0,0,998,999,5,84,0,0,999,38,1,0,0,0,1000, - 1001,5,67,0,0,1001,1002,5,79,0,0,1002,1003,5,76,0,0,1003,1004,5,85,0,0, - 1004,1005,5,77,0,0,1005,1006,5,78,0,0,1006,1007,5,83,0,0,1007,40,1,0,0, - 0,1008,1009,5,67,0,0,1009,1010,5,79,0,0,1010,1011,5,78,0,0,1011,1012,5, - 83,0,0,1012,1013,5,84,0,0,1013,1014,5,82,0,0,1014,1015,5,65,0,0,1015,1016, - 5,73,0,0,1016,1017,5,78,0,0,1017,1018,5,84,0,0,1018,1019,5,83,0,0,1019, - 42,1,0,0,0,1020,1021,5,67,0,0,1021,1022,5,79,0,0,1022,1023,5,78,0,0,1023, - 1024,5,83,0,0,1024,1025,5,84,0,0,1025,1026,5,82,0,0,1026,1027,5,85,0,0, - 1027,1028,5,67,0,0,1028,1029,5,84,0,0,1029,1030,5,79,0,0,1030,1031,5,82, - 0,0,1031,44,1,0,0,0,1032,1033,5,67,0,0,1033,1034,5,85,0,0,1034,1035,5,77, - 0,0,1035,1036,5,85,0,0,1036,1037,5,76,0,0,1037,1038,5,65,0,0,1038,1039, - 5,84,0,0,1039,1040,5,69,0,0,1040,46,1,0,0,0,1041,1042,5,68,0,0,1042,1043, - 5,65,0,0,1043,1044,5,84,0,0,1044,1045,5,65,0,0,1045,48,1,0,0,0,1046,1047, - 5,68,0,0,1047,1048,5,65,0,0,1048,1049,5,84,0,0,1049,1050,5,65,0,0,1050, - 1051,5,66,0,0,1051,1052,5,65,0,0,1052,1053,5,83,0,0,1053,1054,5,69,0,0, - 1054,50,1,0,0,0,1055,1056,5,68,0,0,1056,1057,5,65,0,0,1057,1058,5,84,0, - 0,1058,1059,5,65,0,0,1059,1060,5,66,0,0,1060,1061,5,65,0,0,1061,1062,5, - 83,0,0,1062,1063,5,69,0,0,1063,1064,5,83,0,0,1064,52,1,0,0,0,1065,1066, - 5,68,0,0,1066,1067,5,65,0,0,1067,1068,5,89,0,0,1068,1069,5,83,0,0,1069, - 54,1,0,0,0,1070,1071,5,68,0,0,1071,1072,5,69,0,0,1072,1073,5,67,0,0,1073, - 1074,5,65,0,0,1074,1075,5,68,0,0,1075,1076,5,69,0,0,1076,56,1,0,0,0,1077, - 1078,5,68,0,0,1078,1079,5,69,0,0,1079,1080,5,70,0,0,1080,1081,5,73,0,0, - 1081,1082,5,78,0,0,1082,1083,5,69,0,0,1083,1084,5,68,0,0,1084,58,1,0,0, - 0,1085,1086,5,68,0,0,1086,1087,5,69,0,0,1087,1088,5,83,0,0,1088,1089,5, - 67,0,0,1089,60,1,0,0,0,1090,1091,5,68,0,0,1091,1092,5,69,0,0,1092,1093, - 5,83,0,0,1093,1094,5,67,0,0,1094,1095,5,82,0,0,1095,1096,5,73,0,0,1096, - 1097,5,80,0,0,1097,1098,5,84,0,0,1098,1099,5,79,0,0,1099,1100,5,82,0,0, - 1100,62,1,0,0,0,1101,1102,5,68,0,0,1102,1103,5,73,0,0,1103,1104,5,86,0, - 0,1104,64,1,0,0,0,1105,1106,5,69,0,0,1106,1107,5,78,0,0,1107,1108,5,67, - 0,0,1108,1109,5,79,0,0,1109,1110,5,68,0,0,1110,1111,5,73,0,0,1111,1112, - 5,78,0,0,1112,1113,5,71,0,0,1113,66,1,0,0,0,1114,1115,5,69,0,0,1115,1116, - 5,78,0,0,1116,1117,5,70,0,0,1117,1118,5,79,0,0,1118,1119,5,82,0,0,1119, - 1120,5,67,0,0,1120,1121,5,69,0,0,1121,1122,5,68,0,0,1122,68,1,0,0,0,1123, - 1124,5,69,0,0,1124,1125,5,78,0,0,1125,1126,5,71,0,0,1126,1127,5,73,0,0, - 1127,1128,5,78,0,0,1128,1129,5,69,0,0,1129,70,1,0,0,0,1130,1131,5,69,0, - 0,1131,1132,5,82,0,0,1132,1133,5,82,0,0,1133,1134,5,79,0,0,1134,1135,5, - 82,0,0,1135,72,1,0,0,0,1136,1137,5,69,0,0,1137,1138,5,83,0,0,1138,1139, - 5,84,0,0,1139,1140,5,73,0,0,1140,1141,5,77,0,0,1141,1142,5,65,0,0,1142, - 1143,5,84,0,0,1143,1144,5,69,0,0,1144,1145,5,68,0,0,1145,1146,5,95,0,0, - 1146,1147,5,67,0,0,1147,1148,5,79,0,0,1148,1149,5,83,0,0,1149,1150,5,84, - 0,0,1150,74,1,0,0,0,1151,1152,5,69,0,0,1152,1153,5,88,0,0,1153,1154,5,67, - 0,0,1154,1155,5,69,0,0,1155,1156,5,80,0,0,1156,1157,5,84,0,0,1157,1158, - 5,73,0,0,1158,1159,5,79,0,0,1159,1160,5,78,0,0,1160,76,1,0,0,0,1161,1162, - 5,69,0,0,1162,1163,5,88,0,0,1163,1164,5,67,0,0,1164,1165,5,76,0,0,1165, - 1166,5,85,0,0,1166,1167,5,68,0,0,1167,1168,5,69,0,0,1168,78,1,0,0,0,1169, - 1170,5,69,0,0,1170,1171,5,88,0,0,1171,1172,5,67,0,0,1172,1173,5,76,0,0, - 1173,1174,5,85,0,0,1174,1175,5,68,0,0,1175,1176,5,73,0,0,1176,1177,5,78, - 0,0,1177,1178,5,71,0,0,1178,80,1,0,0,0,1179,1180,5,69,0,0,1180,1181,5,88, - 0,0,1181,1182,5,84,0,0,1182,1183,5,69,0,0,1183,1184,5,78,0,0,1184,1185, - 5,68,0,0,1185,1186,5,69,0,0,1186,1187,5,68,0,0,1187,82,1,0,0,0,1188,1189, - 5,70,0,0,1189,1190,5,73,0,0,1190,1191,5,76,0,0,1191,1192,5,69,0,0,1192, - 84,1,0,0,0,1193,1194,5,70,0,0,1194,1195,5,73,0,0,1195,1196,5,78,0,0,1196, - 1197,5,65,0,0,1197,1198,5,76,0,0,1198,86,1,0,0,0,1199,1200,5,70,0,0,1200, - 1201,5,73,0,0,1201,1202,5,82,0,0,1202,1203,5,83,0,0,1203,1204,5,84,0,0, - 1204,88,1,0,0,0,1205,1206,5,70,0,0,1206,1207,5,79,0,0,1207,1208,5,76,0, - 0,1208,1209,5,76,0,0,1209,1210,5,79,0,0,1210,1211,5,87,0,0,1211,1212,5, - 73,0,0,1212,1213,5,78,0,0,1213,1214,5,71,0,0,1214,90,1,0,0,0,1215,1216, - 5,70,0,0,1216,1217,5,79,0,0,1217,1218,5,82,0,0,1218,1219,5,77,0,0,1219, - 1220,5,65,0,0,1220,1221,5,84,0,0,1221,92,1,0,0,0,1222,1223,5,70,0,0,1223, - 1224,5,79,0,0,1224,1225,5,82,0,0,1225,1226,5,84,0,0,1226,1227,5,82,0,0, - 1227,1228,5,65,0,0,1228,1229,5,78,0,0,1229,94,1,0,0,0,1230,1231,5,70,0, - 0,1231,1232,5,79,0,0,1232,1233,5,85,0,0,1233,1234,5,78,0,0,1234,1235,5, - 68,0,0,1235,96,1,0,0,0,1236,1237,5,70,0,0,1237,1238,5,82,0,0,1238,1239, - 5,65,0,0,1239,1240,5,67,0,0,1240,1241,5,95,0,0,1241,1242,5,83,0,0,1242, - 1243,5,69,0,0,1243,1244,5,67,0,0,1244,1245,5,79,0,0,1245,1246,5,78,0,0, - 1246,1247,5,68,0,0,1247,98,1,0,0,0,1248,1249,5,70,0,0,1249,1250,5,85,0, - 0,1250,1251,5,78,0,0,1251,1252,5,67,0,0,1252,1253,5,84,0,0,1253,1254,5, - 73,0,0,1254,1255,5,79,0,0,1255,1256,5,78,0,0,1256,1257,5,83,0,0,1257,100, - 1,0,0,0,1258,1259,5,71,0,0,1259,1260,5,69,0,0,1260,1261,5,78,0,0,1261,1262, - 5,69,0,0,1262,1263,5,82,0,0,1263,1264,5,65,0,0,1264,1265,5,76,0,0,1265, - 102,1,0,0,0,1266,1267,5,71,0,0,1267,1268,5,69,0,0,1268,1269,5,78,0,0,1269, - 1270,5,69,0,0,1270,1271,5,82,0,0,1271,1272,5,65,0,0,1272,1273,5,84,0,0, - 1273,1274,5,69,0,0,1274,1275,5,68,0,0,1275,104,1,0,0,0,1276,1277,5,71,0, - 0,1277,1278,5,79,0,0,1278,106,1,0,0,0,1279,1280,5,71,0,0,1280,1281,5,79, - 0,0,1281,1282,5,84,0,0,1282,1283,5,79,0,0,1283,108,1,0,0,0,1284,1285,5, - 71,0,0,1285,1286,5,82,0,0,1286,1287,5,65,0,0,1287,1288,5,78,0,0,1288,1289, - 5,84,0,0,1289,1290,5,69,0,0,1290,1291,5,68,0,0,1291,110,1,0,0,0,1292,1293, - 5,72,0,0,1293,1294,5,79,0,0,1294,1295,5,80,0,0,1295,112,1,0,0,0,1296,1297, - 5,72,0,0,1297,1298,5,79,0,0,1298,1299,5,85,0,0,1299,1300,5,82,0,0,1300, - 1301,5,83,0,0,1301,114,1,0,0,0,1302,1303,5,73,0,0,1303,1304,5,70,0,0,1304, - 116,1,0,0,0,1305,1306,5,73,0,0,1306,1307,5,71,0,0,1307,1308,5,78,0,0,1308, - 1309,5,79,0,0,1309,1310,5,82,0,0,1310,1311,5,69,0,0,1311,118,1,0,0,0,1312, - 1313,5,73,0,0,1313,1314,5,78,0,0,1314,1315,5,67,0,0,1315,1316,5,82,0,0, - 1316,1317,5,69,0,0,1317,1318,5,77,0,0,1318,1319,5,69,0,0,1319,1320,5,78, - 0,0,1320,1321,5,84,0,0,1321,120,1,0,0,0,1322,1323,5,73,0,0,1323,1324,5, - 78,0,0,1324,1325,5,80,0,0,1325,1326,5,85,0,0,1326,1327,5,84,0,0,1327,122, - 1,0,0,0,1328,1329,5,73,0,0,1329,1330,5,78,0,0,1330,1331,5,86,0,0,1331,1332, - 5,79,0,0,1332,1333,5,75,0,0,1333,1334,5,69,0,0,1334,1335,5,82,0,0,1335, - 124,1,0,0,0,1336,1337,5,74,0,0,1337,1338,5,65,0,0,1338,1339,5,82,0,0,1339, - 126,1,0,0,0,1340,1341,5,74,0,0,1341,1342,5,65,0,0,1342,1343,5,82,0,0,1343, - 1344,5,83,0,0,1344,128,1,0,0,0,1345,1346,5,74,0,0,1346,1347,5,65,0,0,1347, - 1348,5,86,0,0,1348,1349,5,65,0,0,1349,130,1,0,0,0,1350,1351,5,74,0,0,1351, - 1352,5,83,0,0,1352,1353,5,79,0,0,1353,1354,5,78,0,0,1354,132,1,0,0,0,1355, - 1356,5,74,0,0,1356,1357,5,83,0,0,1357,1358,5,79,0,0,1358,1359,5,78,0,0, - 1359,1360,5,95,0,0,1360,1361,5,69,0,0,1361,1362,5,88,0,0,1362,1363,5,69, - 0,0,1363,1364,5,67,0,0,1364,1365,5,85,0,0,1365,1366,5,84,0,0,1366,1367, - 5,73,0,0,1367,1368,5,79,0,0,1368,1369,5,78,0,0,1369,1370,5,95,0,0,1370, - 1371,5,80,0,0,1371,1372,5,76,0,0,1372,1373,5,65,0,0,1373,1374,5,78,0,0, - 1374,134,1,0,0,0,1375,1376,5,75,0,0,1376,1377,5,69,0,0,1377,1378,5,89,0, - 0,1378,136,1,0,0,0,1379,1380,5,75,0,0,1380,1381,5,69,0,0,1381,1382,5,89, - 0,0,1382,1383,5,95,0,0,1383,1384,5,77,0,0,1384,1385,5,69,0,0,1385,1386, - 5,77,0,0,1386,1387,5,66,0,0,1387,1388,5,69,0,0,1388,1389,5,82,0,0,1389, - 138,1,0,0,0,1390,1391,5,75,0,0,1391,1392,5,69,0,0,1392,1393,5,89,0,0,1393, - 1394,5,95,0,0,1394,1395,5,84,0,0,1395,1396,5,89,0,0,1396,1397,5,80,0,0, - 1397,1398,5,69,0,0,1398,140,1,0,0,0,1399,1400,5,76,0,0,1400,1401,5,65,0, - 0,1401,1402,5,66,0,0,1402,1403,5,69,0,0,1403,1404,5,76,0,0,1404,142,1,0, - 0,0,1405,1406,5,76,0,0,1406,1407,5,65,0,0,1407,1408,5,83,0,0,1408,1409, - 5,84,0,0,1409,144,1,0,0,0,1410,1411,5,76,0,0,1411,1412,5,69,0,0,1412,1413, - 5,78,0,0,1413,1414,5,71,0,0,1414,1415,5,84,0,0,1415,1416,5,72,0,0,1416, - 146,1,0,0,0,1417,1418,5,76,0,0,1418,1419,5,69,0,0,1419,1420,5,86,0,0,1420, - 1421,5,69,0,0,1421,1422,5,76,0,0,1422,148,1,0,0,0,1423,1424,5,76,0,0,1424, - 1425,5,79,0,0,1425,1426,5,65,0,0,1426,1427,5,68,0,0,1427,150,1,0,0,0,1428, - 1429,5,77,0,0,1429,1430,5,65,0,0,1430,1431,5,80,0,0,1431,152,1,0,0,0,1432, - 1433,5,77,0,0,1433,1434,5,73,0,0,1434,1435,5,67,0,0,1435,1436,5,82,0,0, - 1436,1437,5,79,0,0,1437,1438,5,83,0,0,1438,1439,5,69,0,0,1439,1440,5,67, - 0,0,1440,1441,5,79,0,0,1441,1442,5,78,0,0,1442,1443,5,68,0,0,1443,154,1, - 0,0,0,1444,1445,5,77,0,0,1445,1446,5,73,0,0,1446,1447,5,76,0,0,1447,1448, - 5,76,0,0,1448,1449,5,69,0,0,1449,1450,5,78,0,0,1450,1451,5,78,0,0,1451, - 1452,5,73,0,0,1452,1453,5,85,0,0,1453,1454,5,77,0,0,1454,156,1,0,0,0,1455, - 1456,5,77,0,0,1456,1457,5,73,0,0,1457,1458,5,76,0,0,1458,1459,5,76,0,0, - 1459,1460,5,73,0,0,1460,1461,5,83,0,0,1461,1462,5,69,0,0,1462,1463,5,67, - 0,0,1463,1464,5,79,0,0,1464,1465,5,78,0,0,1465,1466,5,68,0,0,1466,158,1, - 0,0,0,1467,1468,5,77,0,0,1468,1469,5,73,0,0,1469,1470,5,78,0,0,1470,1471, - 5,85,0,0,1471,1472,5,84,0,0,1472,1473,5,69,0,0,1473,1474,5,83,0,0,1474, - 160,1,0,0,0,1475,1476,5,77,0,0,1476,1477,5,73,0,0,1477,1478,5,78,0,0,1478, - 1479,5,86,0,0,1479,1480,5,65,0,0,1480,1481,5,76,0,0,1481,1482,5,85,0,0, - 1482,1483,5,69,0,0,1483,162,1,0,0,0,1484,1485,5,77,0,0,1485,1486,5,79,0, - 0,1486,1487,5,68,0,0,1487,1488,5,73,0,0,1488,1489,5,70,0,0,1489,1490,5, - 89,0,0,1490,164,1,0,0,0,1491,1492,5,77,0,0,1492,1493,5,79,0,0,1493,1494, - 5,68,0,0,1494,1495,5,85,0,0,1495,1496,5,76,0,0,1496,1497,5,69,0,0,1497, - 1498,5,83,0,0,1498,166,1,0,0,0,1499,1500,5,77,0,0,1500,1501,5,79,0,0,1501, - 1502,5,78,0,0,1502,1503,5,84,0,0,1503,1504,5,72,0,0,1504,1505,5,83,0,0, - 1505,168,1,0,0,0,1506,1507,5,78,0,0,1507,1508,5,65,0,0,1508,1509,5,78,0, - 0,1509,1510,5,79,0,0,1510,1511,5,83,0,0,1511,1512,5,69,0,0,1512,1513,5, - 67,0,0,1513,1514,5,79,0,0,1514,1515,5,78,0,0,1515,1516,5,68,0,0,1516,170, - 1,0,0,0,1517,1518,5,78,0,0,1518,1519,5,85,0,0,1519,1520,5,76,0,0,1520,1521, - 5,76,0,0,1521,1522,5,83,0,0,1522,172,1,0,0,0,1523,1524,5,78,0,0,1524,1525, - 5,85,0,0,1525,1526,5,77,0,0,1526,1527,5,66,0,0,1527,1528,5,69,0,0,1528, - 1529,5,82,0,0,1529,174,1,0,0,0,1530,1531,5,79,0,0,1531,1532,5,80,0,0,1532, - 1533,5,84,0,0,1533,1534,5,73,0,0,1534,1535,5,79,0,0,1535,1536,5,78,0,0, - 1536,176,1,0,0,0,1537,1538,5,79,0,0,1538,1539,5,80,0,0,1539,1540,5,84,0, - 0,1540,1541,5,73,0,0,1541,1542,5,79,0,0,1542,1543,5,78,0,0,1543,1544,5, - 83,0,0,1544,178,1,0,0,0,1545,1546,5,79,0,0,1546,1547,5,82,0,0,1547,1548, - 5,68,0,0,1548,1549,5,69,0,0,1549,1550,5,82,0,0,1550,1551,5,73,0,0,1551, - 1552,5,78,0,0,1552,1553,5,71,0,0,1553,180,1,0,0,0,1554,1555,5,79,0,0,1555, - 1556,5,85,0,0,1556,1557,5,84,0,0,1557,1558,5,80,0,0,1558,1559,5,85,0,0, - 1559,1560,5,84,0,0,1560,182,1,0,0,0,1561,1562,5,79,0,0,1562,1563,5,86,0, - 0,1563,1564,5,69,0,0,1564,1565,5,82,0,0,1565,1566,5,87,0,0,1566,1567,5, - 82,0,0,1567,1568,5,73,0,0,1568,1569,5,84,0,0,1569,1570,5,69,0,0,1570,184, - 1,0,0,0,1571,1572,5,79,0,0,1572,1573,5,86,0,0,1573,1574,5,69,0,0,1574,1575, + 287,1,287,1,287,1,287,1,287,1,287,1,288,1,288,1,288,1,288,1,288,1,288,1, + 288,1,289,1,289,1,289,1,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290,1, + 290,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1, + 292,1,292,1,292,1,292,1,292,1,293,1,293,1,293,1,294,1,294,1,294,1,294,1, + 294,1,295,1,295,1,295,1,295,1,296,1,296,1,296,1,296,1,296,1,297,1,297,1, + 297,1,297,1,297,1,297,1,297,1,297,1,298,1,298,1,298,1,299,1,299,1,299,1, + 299,1,299,1,299,1,299,1,300,1,300,1,300,1,301,1,301,1,301,1,301,1,302,1, + 302,1,302,1,303,1,303,1,303,1,303,1,303,1,303,1,304,1,304,1,304,1,304,1, + 305,1,305,1,305,1,305,1,305,1,305,1,306,1,306,1,306,1,306,1,306,1,307,1, + 307,1,307,1,307,1,307,1,307,1,307,1,307,1,308,1,308,1,308,1,308,1,308,1, + 308,1,308,1,308,1,308,1,308,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1, + 309,1,310,1,310,1,310,1,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1, + 311,1,312,1,312,1,312,1,312,1,312,1,312,1,312,1,313,1,313,1,313,1,313,1, + 313,1,313,1,313,1,313,1,313,1,314,1,314,1,314,1,314,1,314,1,314,1,315,1, + 315,1,315,1,315,1,315,1,315,1,315,1,315,1,316,1,316,1,316,1,316,1,316,1, + 316,1,317,1,317,1,317,1,317,1,317,1,318,1,318,1,318,1,318,1,318,1,318,1, + 319,1,319,1,319,1,319,1,319,1,319,1,319,1,320,1,320,1,320,1,320,1,320,1, + 320,1,321,1,321,1,321,1,321,1,321,1,321,1,322,1,322,1,322,1,322,1,322,1, + 322,1,322,1,322,1,322,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,324,1, + 324,1,324,1,324,1,325,1,325,1,325,1,325,1,325,1,326,1,326,1,326,1,326,1, + 326,1,326,1,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,328,1,328,1, + 328,1,328,1,329,1,329,1,329,1,329,1,329,1,330,1,330,1,330,1,330,1,330,1, + 330,1,330,1,330,1,331,1,331,1,331,1,331,1,331,1,332,1,332,1,332,1,332,1, + 332,1,332,1,332,1,332,1,332,1,333,1,333,1,333,1,333,1,333,1,333,1,334,1, + 334,1,334,1,334,1,334,1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1, + 335,1,335,1,335,1,335,1,336,1,336,1,336,1,336,1,337,1,337,1,337,1,337,1, + 337,1,337,1,337,1,337,1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,338,1, + 338,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1, + 339,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1, + 340,1,341,1,341,1,341,1,341,1,341,1,341,1,342,1,342,1,342,1,342,1,342,1, + 342,1,342,1,342,1,342,1,342,1,342,1,342,1,343,1,343,1,343,1,343,1,343,1, + 344,1,344,1,344,1,344,1,344,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1, + 345,1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,347,1, + 347,1,347,1,348,1,348,1,348,1,348,1,348,1,349,1,349,1,349,1,349,1,349,1, + 349,1,349,1,349,1,349,1,350,1,350,1,350,1,350,1,350,1,350,1,351,1,351,1, + 351,1,351,1,351,1,351,1,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1, + 352,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,354,1,354,1,354,1,354,1, + 354,1,354,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,356,1,356,1,356,1, + 356,1,356,1,357,1,357,1,357,1,357,1,357,1,357,1,358,1,358,1,358,1,358,1, + 358,1,358,1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,360,1,360,1,360,1, + 360,1,360,1,360,1,360,1,360,1,360,1,360,1,361,1,361,1,361,1,361,1,361,1, + 361,1,361,1,361,1,362,1,362,1,362,1,362,1,362,1,363,1,363,1,363,1,363,1, + 363,1,363,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,365,1,365,1,365,1, + 365,1,365,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,367,1,367,1,367,1, + 367,1,367,1,367,1,367,1,367,1,368,1,368,1,368,1,368,1,368,1,369,1,369,1, + 370,1,370,1,371,1,371,1,372,1,372,1,373,1,373,1,374,1,374,1,375,1,375,1, + 376,1,376,1,377,1,377,1,378,1,378,1,379,1,379,1,380,1,380,1,381,1,381,1, + 382,1,382,1,383,1,383,1,384,1,384,1,385,1,385,1,386,1,386,1,387,1,387,1, + 388,1,388,1,389,1,389,1,390,1,390,1,391,1,391,1,392,1,392,1,393,1,393,1, + 394,1,394,1,395,1,395,1,396,1,396,1,396,1,397,1,397,1,397,1,398,1,398,1, + 399,1,399,1,400,1,400,1,400,1,401,1,401,1,401,3,401,3602,8,401,1,402,4, + 402,3605,8,402,11,402,12,402,3606,1,403,4,403,3610,8,403,11,403,12,403, + 3611,3,403,3614,8,403,1,403,1,403,4,403,3618,8,403,11,403,12,403,3619,1, + 403,4,403,3623,8,403,11,403,12,403,3624,1,403,1,403,1,403,1,403,4,403,3631, + 8,403,11,403,12,403,3632,3,403,3635,8,403,1,403,1,403,4,403,3639,8,403, + 11,403,12,403,3640,1,403,1,403,1,403,4,403,3646,8,403,11,403,12,403,3647, + 1,403,1,403,3,403,3652,8,403,1,404,1,404,1,405,1,405,1,406,1,406,1,407, + 1,407,5,407,3662,8,407,10,407,12,407,3665,9,407,4,407,3667,8,407,11,407, + 12,407,3668,1,408,1,408,1,408,1,408,1,408,1,408,5,408,3677,8,408,10,408, + 12,408,3680,9,408,1,408,1,408,1,409,1,409,3,409,3686,8,409,1,409,4,409, + 3689,8,409,11,409,12,409,3690,1,410,5,410,3694,8,410,10,410,12,410,3697, + 9,410,1,410,4,410,3700,8,410,11,410,12,410,3701,1,410,5,410,3705,8,410, + 10,410,12,410,3708,9,410,1,411,1,411,1,412,1,412,1,413,1,413,1,413,1,413, + 1,413,1,413,5,413,3720,8,413,10,413,12,413,3723,9,413,1,413,1,413,1,414, + 1,414,1,414,1,414,1,414,1,414,5,414,3733,8,414,10,414,12,414,3736,9,414, + 1,414,1,414,1,415,1,415,1,415,4,415,3743,8,415,11,415,12,415,3744,1,415, + 1,415,1,416,1,416,1,416,1,416,1,416,1,416,5,416,3755,8,416,10,416,12,416, + 3758,9,416,1,416,1,416,3,848,3695,3701,0,417,1,1,3,2,5,3,7,4,9,5,11,6,13, + 7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16,33,17,35,18,37,19, + 39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27,55,28,57,29,59,30,61,31, + 63,32,65,33,67,34,69,35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43, + 87,44,89,45,91,46,93,47,95,48,97,49,99,50,101,51,103,52,105,53,107,54,109, + 55,111,56,113,57,115,58,117,59,119,60,121,61,123,62,125,63,127,64,129,65, + 131,66,133,67,135,68,137,69,139,70,141,71,143,72,145,73,147,74,149,75,151, + 76,153,77,155,78,157,79,159,80,161,81,163,82,165,83,167,84,169,85,171,86, + 173,87,175,88,177,89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193, + 97,195,98,197,99,199,100,201,101,203,102,205,103,207,104,209,105,211,106, + 213,107,215,108,217,109,219,110,221,111,223,112,225,113,227,114,229,115, + 231,116,233,117,235,118,237,119,239,120,241,121,243,122,245,123,247,124, + 249,125,251,126,253,127,255,128,257,129,259,130,261,131,263,132,265,133, + 267,134,269,135,271,136,273,137,275,138,277,139,279,140,281,141,283,142, + 285,143,287,144,289,145,291,146,293,147,295,148,297,149,299,150,301,151, + 303,152,305,153,307,154,309,155,311,156,313,157,315,158,317,159,319,160, + 321,161,323,162,325,163,327,164,329,165,331,166,333,167,335,168,337,169, + 339,170,341,171,343,172,345,173,347,174,349,175,351,176,353,177,355,178, + 357,179,359,180,361,181,363,182,365,183,367,184,369,185,371,186,373,187, + 375,188,377,189,379,190,381,191,383,192,385,193,387,194,389,195,391,196, + 393,197,395,198,397,199,399,200,401,201,403,202,405,203,407,204,409,205, + 411,206,413,207,415,208,417,209,419,210,421,211,423,212,425,213,427,214, + 429,215,431,216,433,217,435,218,437,219,439,220,441,221,443,222,445,223, + 447,224,449,225,451,226,453,227,455,228,457,229,459,230,461,231,463,232, + 465,233,467,234,469,235,471,236,473,237,475,238,477,239,479,240,481,241, + 483,242,485,243,487,244,489,245,491,246,493,247,495,248,497,249,499,250, + 501,251,503,252,505,253,507,254,509,255,511,256,513,257,515,258,517,259, + 519,260,521,261,523,262,525,263,527,264,529,265,531,266,533,267,535,268, + 537,269,539,270,541,271,543,272,545,273,547,274,549,275,551,276,553,277, + 555,278,557,279,559,280,561,281,563,282,565,283,567,284,569,285,571,286, + 573,287,575,288,577,289,579,290,581,291,583,292,585,293,587,294,589,295, + 591,296,593,297,595,298,597,299,599,300,601,301,603,302,605,303,607,304, + 609,305,611,306,613,307,615,308,617,309,619,310,621,311,623,312,625,313, + 627,314,629,315,631,316,633,317,635,318,637,319,639,320,641,321,643,322, + 645,323,647,324,649,325,651,326,653,327,655,328,657,329,659,330,661,331, + 663,332,665,333,667,334,669,335,671,336,673,337,675,338,677,339,679,340, + 681,341,683,342,685,343,687,344,689,345,691,346,693,347,695,348,697,349, + 699,350,701,351,703,352,705,353,707,354,709,355,711,356,713,357,715,358, + 717,359,719,360,721,361,723,362,725,363,727,364,729,365,731,366,733,367, + 735,368,737,369,739,370,741,371,743,372,745,373,747,374,749,375,751,376, + 753,377,755,378,757,379,759,380,761,381,763,382,765,383,767,384,769,385, + 771,386,773,387,775,388,777,389,779,390,781,391,783,392,785,393,787,394, + 789,395,791,396,793,397,795,398,797,399,799,400,801,401,803,402,805,403, + 807,404,809,405,811,406,813,407,815,0,817,0,819,0,821,0,823,0,825,0,827, + 0,829,0,831,0,833,0,1,0,13,3,0,9,10,13,13,32,32,2,0,10,10,13,13,2,0,47, + 47,92,92,3,0,32,32,47,47,92,92,2,0,92,92,96,96,2,0,43,43,45,45,4,0,48,57, + 65,90,95,95,97,122,3,0,65,90,95,95,97,122,1,0,48,57,2,0,65,90,97,122,2, + 0,34,34,92,92,2,0,39,39,92,92,1,0,48,49,3793,0,1,1,0,0,0,0,3,1,0,0,0,0, + 5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0, + 0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27, + 1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0, + 0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49, + 1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0, + 0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71, + 1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0, + 0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93, + 1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0, + 0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0, + 0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0, + 0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0, + 135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145, + 1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1, + 0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1,0, + 0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0, + 0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0,0,0, + 0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0, + 197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207, + 1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1, + 0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0, + 0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0, + 0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0, + 0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0, + 259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269, + 1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1, + 0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0, + 0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0, + 0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0, + 0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0, + 321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331, + 1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1, + 0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0, + 0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0, + 0,0,363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0, + 0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0, + 383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0,0,393, + 1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,401,1,0,0,0,0,403,1, + 0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1,0,0,0,0,411,1,0,0,0,0,413,1,0, + 0,0,0,415,1,0,0,0,0,417,1,0,0,0,0,419,1,0,0,0,0,421,1,0,0,0,0,423,1,0,0, + 0,0,425,1,0,0,0,0,427,1,0,0,0,0,429,1,0,0,0,0,431,1,0,0,0,0,433,1,0,0,0, + 0,435,1,0,0,0,0,437,1,0,0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1,0,0,0,0, + 445,1,0,0,0,0,447,1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0,455, + 1,0,0,0,0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1, + 0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475,1,0, + 0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485,1,0,0, + 0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495,1,0,0,0, + 0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0, + 507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517, + 1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1, + 0,0,0,0,529,1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0, + 0,0,0,539,1,0,0,0,0,541,1,0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0,547,1,0,0, + 0,0,549,1,0,0,0,0,551,1,0,0,0,0,553,1,0,0,0,0,555,1,0,0,0,0,557,1,0,0,0, + 0,559,1,0,0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565,1,0,0,0,0,567,1,0,0,0,0, + 569,1,0,0,0,0,571,1,0,0,0,0,573,1,0,0,0,0,575,1,0,0,0,0,577,1,0,0,0,0,579, + 1,0,0,0,0,581,1,0,0,0,0,583,1,0,0,0,0,585,1,0,0,0,0,587,1,0,0,0,0,589,1, + 0,0,0,0,591,1,0,0,0,0,593,1,0,0,0,0,595,1,0,0,0,0,597,1,0,0,0,0,599,1,0, + 0,0,0,601,1,0,0,0,0,603,1,0,0,0,0,605,1,0,0,0,0,607,1,0,0,0,0,609,1,0,0, + 0,0,611,1,0,0,0,0,613,1,0,0,0,0,615,1,0,0,0,0,617,1,0,0,0,0,619,1,0,0,0, + 0,621,1,0,0,0,0,623,1,0,0,0,0,625,1,0,0,0,0,627,1,0,0,0,0,629,1,0,0,0,0, + 631,1,0,0,0,0,633,1,0,0,0,0,635,1,0,0,0,0,637,1,0,0,0,0,639,1,0,0,0,0,641, + 1,0,0,0,0,643,1,0,0,0,0,645,1,0,0,0,0,647,1,0,0,0,0,649,1,0,0,0,0,651,1, + 0,0,0,0,653,1,0,0,0,0,655,1,0,0,0,0,657,1,0,0,0,0,659,1,0,0,0,0,661,1,0, + 0,0,0,663,1,0,0,0,0,665,1,0,0,0,0,667,1,0,0,0,0,669,1,0,0,0,0,671,1,0,0, + 0,0,673,1,0,0,0,0,675,1,0,0,0,0,677,1,0,0,0,0,679,1,0,0,0,0,681,1,0,0,0, + 0,683,1,0,0,0,0,685,1,0,0,0,0,687,1,0,0,0,0,689,1,0,0,0,0,691,1,0,0,0,0, + 693,1,0,0,0,0,695,1,0,0,0,0,697,1,0,0,0,0,699,1,0,0,0,0,701,1,0,0,0,0,703, + 1,0,0,0,0,705,1,0,0,0,0,707,1,0,0,0,0,709,1,0,0,0,0,711,1,0,0,0,0,713,1, + 0,0,0,0,715,1,0,0,0,0,717,1,0,0,0,0,719,1,0,0,0,0,721,1,0,0,0,0,723,1,0, + 0,0,0,725,1,0,0,0,0,727,1,0,0,0,0,729,1,0,0,0,0,731,1,0,0,0,0,733,1,0,0, + 0,0,735,1,0,0,0,0,737,1,0,0,0,0,739,1,0,0,0,0,741,1,0,0,0,0,743,1,0,0,0, + 0,745,1,0,0,0,0,747,1,0,0,0,0,749,1,0,0,0,0,751,1,0,0,0,0,753,1,0,0,0,0, + 755,1,0,0,0,0,757,1,0,0,0,0,759,1,0,0,0,0,761,1,0,0,0,0,763,1,0,0,0,0,765, + 1,0,0,0,0,767,1,0,0,0,0,769,1,0,0,0,0,771,1,0,0,0,0,773,1,0,0,0,0,775,1, + 0,0,0,0,777,1,0,0,0,0,779,1,0,0,0,0,781,1,0,0,0,0,783,1,0,0,0,0,785,1,0, + 0,0,0,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0,0,0,0,793,1,0,0,0,0,795,1,0,0, + 0,0,797,1,0,0,0,0,799,1,0,0,0,0,801,1,0,0,0,0,803,1,0,0,0,0,805,1,0,0,0, + 0,807,1,0,0,0,0,809,1,0,0,0,0,811,1,0,0,0,0,813,1,0,0,0,1,836,1,0,0,0,3, + 842,1,0,0,0,5,884,1,0,0,0,7,888,1,0,0,0,9,892,1,0,0,0,11,898,1,0,0,0,13, + 904,1,0,0,0,15,912,1,0,0,0,17,916,1,0,0,0,19,923,1,0,0,0,21,929,1,0,0,0, + 23,937,1,0,0,0,25,945,1,0,0,0,27,954,1,0,0,0,29,962,1,0,0,0,31,968,1,0, + 0,0,33,983,1,0,0,0,35,994,1,0,0,0,37,1002,1,0,0,0,39,1010,1,0,0,0,41,1018, + 1,0,0,0,43,1030,1,0,0,0,45,1042,1,0,0,0,47,1051,1,0,0,0,49,1056,1,0,0,0, + 51,1065,1,0,0,0,53,1075,1,0,0,0,55,1080,1,0,0,0,57,1087,1,0,0,0,59,1095, + 1,0,0,0,61,1100,1,0,0,0,63,1111,1,0,0,0,65,1115,1,0,0,0,67,1124,1,0,0,0, + 69,1133,1,0,0,0,71,1140,1,0,0,0,73,1146,1,0,0,0,75,1161,1,0,0,0,77,1171, + 1,0,0,0,79,1179,1,0,0,0,81,1189,1,0,0,0,83,1198,1,0,0,0,85,1203,1,0,0,0, + 87,1209,1,0,0,0,89,1215,1,0,0,0,91,1225,1,0,0,0,93,1232,1,0,0,0,95,1240, + 1,0,0,0,97,1246,1,0,0,0,99,1258,1,0,0,0,101,1268,1,0,0,0,103,1276,1,0,0, + 0,105,1286,1,0,0,0,107,1289,1,0,0,0,109,1294,1,0,0,0,111,1302,1,0,0,0,113, + 1306,1,0,0,0,115,1312,1,0,0,0,117,1315,1,0,0,0,119,1322,1,0,0,0,121,1332, + 1,0,0,0,123,1338,1,0,0,0,125,1346,1,0,0,0,127,1350,1,0,0,0,129,1355,1,0, + 0,0,131,1360,1,0,0,0,133,1365,1,0,0,0,135,1385,1,0,0,0,137,1389,1,0,0,0, + 139,1400,1,0,0,0,141,1409,1,0,0,0,143,1415,1,0,0,0,145,1420,1,0,0,0,147, + 1427,1,0,0,0,149,1433,1,0,0,0,151,1438,1,0,0,0,153,1442,1,0,0,0,155,1454, + 1,0,0,0,157,1465,1,0,0,0,159,1477,1,0,0,0,161,1485,1,0,0,0,163,1494,1,0, + 0,0,165,1501,1,0,0,0,167,1509,1,0,0,0,169,1516,1,0,0,0,171,1527,1,0,0,0, + 173,1533,1,0,0,0,175,1540,1,0,0,0,177,1547,1,0,0,0,179,1555,1,0,0,0,181, + 1564,1,0,0,0,183,1571,1,0,0,0,185,1581,1,0,0,0,187,1593,1,0,0,0,189,1605, + 1,0,0,0,191,1616,1,0,0,0,193,1624,1,0,0,0,195,1629,1,0,0,0,197,1634,1,0, + 0,0,199,1642,1,0,0,0,201,1647,1,0,0,0,203,1657,1,0,0,0,205,1666,1,0,0,0, + 207,1672,1,0,0,0,209,1683,1,0,0,0,211,1690,1,0,0,0,213,1697,1,0,0,0,215, + 1710,1,0,0,0,217,1730,1,0,0,0,219,1750,1,0,0,0,221,1761,1,0,0,0,223,1777, + 1,0,0,0,225,1794,1,0,0,0,227,1802,1,0,0,0,229,1806,1,0,0,0,231,1811,1,0, + 0,0,233,1820,1,0,0,0,235,1827,1,0,0,0,237,1834,1,0,0,0,239,1842,1,0,0,0, + 241,1850,1,0,0,0,243,1858,1,0,0,0,245,1867,1,0,0,0,247,1872,1,0,0,0,249, + 1882,1,0,0,0,251,1888,1,0,0,0,253,1895,1,0,0,0,255,1901,1,0,0,0,257,1908, + 1,0,0,0,259,1916,1,0,0,0,261,1924,1,0,0,0,263,1933,1,0,0,0,265,1938,1,0, + 0,0,267,1945,1,0,0,0,269,1957,1,0,0,0,271,1965,1,0,0,0,273,1970,1,0,0,0, + 275,1977,1,0,0,0,277,1982,1,0,0,0,279,1988,1,0,0,0,281,1995,1,0,0,0,283, + 2001,1,0,0,0,285,2007,1,0,0,0,287,2017,1,0,0,0,289,2022,1,0,0,0,291,2029, + 1,0,0,0,293,2039,1,0,0,0,295,2045,1,0,0,0,297,2052,1,0,0,0,299,2062,1,0, + 0,0,301,2070,1,0,0,0,303,2084,1,0,0,0,305,2097,1,0,0,0,307,2111,1,0,0,0, + 309,2121,1,0,0,0,311,2128,1,0,0,0,313,2133,1,0,0,0,315,2139,1,0,0,0,317, + 2146,1,0,0,0,319,2152,1,0,0,0,321,2156,1,0,0,0,323,2162,1,0,0,0,325,2168, + 1,0,0,0,327,2173,1,0,0,0,329,2181,1,0,0,0,331,2186,1,0,0,0,333,2192,1,0, + 0,0,335,2200,1,0,0,0,337,2210,1,0,0,0,339,2221,1,0,0,0,341,2226,1,0,0,0, + 343,2231,1,0,0,0,345,2239,1,0,0,0,347,2245,1,0,0,0,349,2250,1,0,0,0,351, + 2254,1,0,0,0,353,2258,1,0,0,0,355,2264,1,0,0,0,357,2270,1,0,0,0,359,2274, + 1,0,0,0,361,2278,1,0,0,0,363,2282,1,0,0,0,365,2288,1,0,0,0,367,2291,1,0, + 0,0,369,2302,1,0,0,0,371,2305,1,0,0,0,373,2309,1,0,0,0,375,2315,1,0,0,0, + 377,2323,1,0,0,0,379,2330,1,0,0,0,381,2337,1,0,0,0,383,2341,1,0,0,0,385, + 2346,1,0,0,0,387,2354,1,0,0,0,389,2359,1,0,0,0,391,2362,1,0,0,0,393,2367, + 1,0,0,0,395,2374,1,0,0,0,397,2383,1,0,0,0,399,2388,1,0,0,0,401,2393,1,0, + 0,0,403,2398,1,0,0,0,405,2403,1,0,0,0,407,2413,1,0,0,0,409,2419,1,0,0,0, + 411,2424,1,0,0,0,413,2430,1,0,0,0,415,2439,1,0,0,0,417,2447,1,0,0,0,419, + 2455,1,0,0,0,421,2462,1,0,0,0,423,2469,1,0,0,0,425,2477,1,0,0,0,427,2488, + 1,0,0,0,429,2497,1,0,0,0,431,2505,1,0,0,0,433,2511,1,0,0,0,435,2518,1,0, + 0,0,437,2524,1,0,0,0,439,2529,1,0,0,0,441,2537,1,0,0,0,443,2544,1,0,0,0, + 445,2550,1,0,0,0,447,2555,1,0,0,0,449,2564,1,0,0,0,451,2568,1,0,0,0,453, + 2572,1,0,0,0,455,2580,1,0,0,0,457,2588,1,0,0,0,459,2596,1,0,0,0,461,2603, + 1,0,0,0,463,2610,1,0,0,0,465,2619,1,0,0,0,467,2628,1,0,0,0,469,2635,1,0, + 0,0,471,2640,1,0,0,0,473,2645,1,0,0,0,475,2650,1,0,0,0,477,2654,1,0,0,0, + 479,2661,1,0,0,0,481,2668,1,0,0,0,483,2675,1,0,0,0,485,2683,1,0,0,0,487, + 2690,1,0,0,0,489,2698,1,0,0,0,491,2707,1,0,0,0,493,2715,1,0,0,0,495,2721, + 1,0,0,0,497,2727,1,0,0,0,499,2731,1,0,0,0,501,2736,1,0,0,0,503,2741,1,0, + 0,0,505,2750,1,0,0,0,507,2757,1,0,0,0,509,2763,1,0,0,0,511,2769,1,0,0,0, + 513,2778,1,0,0,0,515,2785,1,0,0,0,517,2792,1,0,0,0,519,2797,1,0,0,0,521, + 2804,1,0,0,0,523,2807,1,0,0,0,525,2817,1,0,0,0,527,2823,1,0,0,0,529,2829, + 1,0,0,0,531,2836,1,0,0,0,533,2840,1,0,0,0,535,2848,1,0,0,0,537,2858,1,0, + 0,0,539,2867,1,0,0,0,541,2872,1,0,0,0,543,2875,1,0,0,0,545,2880,1,0,0,0, + 547,2884,1,0,0,0,549,2893,1,0,0,0,551,2901,1,0,0,0,553,2909,1,0,0,0,555, + 2914,1,0,0,0,557,2919,1,0,0,0,559,2925,1,0,0,0,561,2931,1,0,0,0,563,2937, + 1,0,0,0,565,2953,1,0,0,0,567,2962,1,0,0,0,569,2968,1,0,0,0,571,2977,1,0, + 0,0,573,2983,1,0,0,0,575,2990,1,0,0,0,577,2999,1,0,0,0,579,3006,1,0,0,0, + 581,3012,1,0,0,0,583,3021,1,0,0,0,585,3029,1,0,0,0,587,3034,1,0,0,0,589, + 3037,1,0,0,0,591,3042,1,0,0,0,593,3046,1,0,0,0,595,3051,1,0,0,0,597,3059, + 1,0,0,0,599,3062,1,0,0,0,601,3069,1,0,0,0,603,3072,1,0,0,0,605,3076,1,0, + 0,0,607,3079,1,0,0,0,609,3085,1,0,0,0,611,3089,1,0,0,0,613,3095,1,0,0,0, + 615,3100,1,0,0,0,617,3108,1,0,0,0,619,3118,1,0,0,0,621,3126,1,0,0,0,623, + 3130,1,0,0,0,625,3138,1,0,0,0,627,3145,1,0,0,0,629,3154,1,0,0,0,631,3160, + 1,0,0,0,633,3168,1,0,0,0,635,3174,1,0,0,0,637,3179,1,0,0,0,639,3185,1,0, + 0,0,641,3192,1,0,0,0,643,3198,1,0,0,0,645,3204,1,0,0,0,647,3213,1,0,0,0, + 649,3220,1,0,0,0,651,3224,1,0,0,0,653,3229,1,0,0,0,655,3236,1,0,0,0,657, + 3243,1,0,0,0,659,3247,1,0,0,0,661,3252,1,0,0,0,663,3260,1,0,0,0,665,3265, + 1,0,0,0,667,3274,1,0,0,0,669,3280,1,0,0,0,671,3287,1,0,0,0,673,3297,1,0, + 0,0,675,3301,1,0,0,0,677,3311,1,0,0,0,679,3318,1,0,0,0,681,3330,1,0,0,0, + 683,3342,1,0,0,0,685,3348,1,0,0,0,687,3360,1,0,0,0,689,3365,1,0,0,0,691, + 3370,1,0,0,0,693,3380,1,0,0,0,695,3388,1,0,0,0,697,3391,1,0,0,0,699,3396, + 1,0,0,0,701,3405,1,0,0,0,703,3411,1,0,0,0,705,3418,1,0,0,0,707,3426,1,0, + 0,0,709,3433,1,0,0,0,711,3439,1,0,0,0,713,3446,1,0,0,0,715,3451,1,0,0,0, + 717,3457,1,0,0,0,719,3463,1,0,0,0,721,3470,1,0,0,0,723,3480,1,0,0,0,725, + 3488,1,0,0,0,727,3493,1,0,0,0,729,3499,1,0,0,0,731,3506,1,0,0,0,733,3511, + 1,0,0,0,735,3518,1,0,0,0,737,3526,1,0,0,0,739,3531,1,0,0,0,741,3533,1,0, + 0,0,743,3535,1,0,0,0,745,3537,1,0,0,0,747,3539,1,0,0,0,749,3541,1,0,0,0, + 751,3543,1,0,0,0,753,3545,1,0,0,0,755,3547,1,0,0,0,757,3549,1,0,0,0,759, + 3551,1,0,0,0,761,3553,1,0,0,0,763,3555,1,0,0,0,765,3557,1,0,0,0,767,3559, + 1,0,0,0,769,3561,1,0,0,0,771,3563,1,0,0,0,773,3565,1,0,0,0,775,3567,1,0, + 0,0,777,3569,1,0,0,0,779,3571,1,0,0,0,781,3573,1,0,0,0,783,3575,1,0,0,0, + 785,3577,1,0,0,0,787,3579,1,0,0,0,789,3581,1,0,0,0,791,3583,1,0,0,0,793, + 3585,1,0,0,0,795,3588,1,0,0,0,797,3591,1,0,0,0,799,3593,1,0,0,0,801,3595, + 1,0,0,0,803,3601,1,0,0,0,805,3604,1,0,0,0,807,3651,1,0,0,0,809,3653,1,0, + 0,0,811,3655,1,0,0,0,813,3657,1,0,0,0,815,3666,1,0,0,0,817,3670,1,0,0,0, + 819,3683,1,0,0,0,821,3695,1,0,0,0,823,3709,1,0,0,0,825,3711,1,0,0,0,827, + 3713,1,0,0,0,829,3726,1,0,0,0,831,3739,1,0,0,0,833,3748,1,0,0,0,835,837, + 7,0,0,0,836,835,1,0,0,0,837,838,1,0,0,0,838,836,1,0,0,0,838,839,1,0,0,0, + 839,840,1,0,0,0,840,841,6,0,0,0,841,2,1,0,0,0,842,843,5,47,0,0,843,844, + 5,42,0,0,844,848,1,0,0,0,845,847,9,0,0,0,846,845,1,0,0,0,847,850,1,0,0, + 0,848,849,1,0,0,0,848,846,1,0,0,0,849,851,1,0,0,0,850,848,1,0,0,0,851,852, + 5,42,0,0,852,853,5,47,0,0,853,854,1,0,0,0,854,855,6,1,0,0,855,4,1,0,0,0, + 856,857,5,45,0,0,857,860,5,45,0,0,858,860,5,35,0,0,859,856,1,0,0,0,859, + 858,1,0,0,0,860,864,1,0,0,0,861,863,8,1,0,0,862,861,1,0,0,0,863,866,1,0, + 0,0,864,862,1,0,0,0,864,865,1,0,0,0,865,872,1,0,0,0,866,864,1,0,0,0,867, + 869,5,13,0,0,868,867,1,0,0,0,868,869,1,0,0,0,869,870,1,0,0,0,870,873,5, + 10,0,0,871,873,5,0,0,1,872,868,1,0,0,0,872,871,1,0,0,0,873,885,1,0,0,0, + 874,875,5,45,0,0,875,876,5,45,0,0,876,882,1,0,0,0,877,879,5,13,0,0,878, + 877,1,0,0,0,878,879,1,0,0,0,879,880,1,0,0,0,880,883,5,10,0,0,881,883,5, + 0,0,1,882,878,1,0,0,0,882,881,1,0,0,0,883,885,1,0,0,0,884,859,1,0,0,0,884, + 874,1,0,0,0,885,886,1,0,0,0,886,887,6,2,0,0,887,6,1,0,0,0,888,889,5,65, + 0,0,889,890,5,68,0,0,890,891,5,68,0,0,891,8,1,0,0,0,892,893,5,65,0,0,893, + 894,5,68,0,0,894,895,5,77,0,0,895,896,5,73,0,0,896,897,5,78,0,0,897,10, + 1,0,0,0,898,899,5,65,0,0,899,900,5,70,0,0,900,901,5,84,0,0,901,902,5,69, + 0,0,902,903,5,82,0,0,903,12,1,0,0,0,904,905,5,65,0,0,905,906,5,78,0,0,906, + 907,5,65,0,0,907,908,5,76,0,0,908,909,5,89,0,0,909,910,5,90,0,0,910,911, + 5,69,0,0,911,14,1,0,0,0,912,913,5,65,0,0,913,914,5,83,0,0,914,915,5,67, + 0,0,915,16,1,0,0,0,916,917,5,66,0,0,917,918,5,69,0,0,918,919,5,70,0,0,919, + 920,5,79,0,0,920,921,5,82,0,0,921,922,5,69,0,0,922,18,1,0,0,0,923,924,5, + 66,0,0,924,925,5,89,0,0,925,926,5,84,0,0,926,927,5,69,0,0,927,928,5,83, + 0,0,928,20,1,0,0,0,929,930,5,67,0,0,930,931,5,65,0,0,931,932,5,83,0,0,932, + 933,5,67,0,0,933,934,5,65,0,0,934,935,5,68,0,0,935,936,5,69,0,0,936,22, + 1,0,0,0,937,938,5,67,0,0,938,939,5,65,0,0,939,940,5,84,0,0,940,941,5,65, + 0,0,941,942,5,76,0,0,942,943,5,79,0,0,943,944,5,71,0,0,944,24,1,0,0,0,945, + 946,5,67,0,0,946,947,5,65,0,0,947,948,5,84,0,0,948,949,5,65,0,0,949,950, + 5,76,0,0,950,951,5,79,0,0,951,952,5,71,0,0,952,953,5,83,0,0,953,26,1,0, + 0,0,954,955,5,67,0,0,955,956,5,69,0,0,956,957,5,78,0,0,957,958,5,84,0,0, + 958,959,5,85,0,0,959,960,5,82,0,0,960,961,5,89,0,0,961,28,1,0,0,0,962,963, + 5,67,0,0,963,964,5,72,0,0,964,965,5,65,0,0,965,966,5,73,0,0,966,967,5,78, + 0,0,967,30,1,0,0,0,968,969,5,67,0,0,969,970,5,72,0,0,970,971,5,65,0,0,971, + 972,5,78,0,0,972,973,5,71,0,0,973,974,5,69,0,0,974,975,5,76,0,0,975,976, + 5,79,0,0,976,977,5,71,0,0,977,978,5,95,0,0,978,979,5,77,0,0,979,980,5,79, + 0,0,980,981,5,68,0,0,981,982,5,69,0,0,982,32,1,0,0,0,983,984,5,67,0,0,984, + 985,5,72,0,0,985,986,5,65,0,0,986,987,5,82,0,0,987,988,5,65,0,0,988,989, + 5,67,0,0,989,990,5,84,0,0,990,991,5,69,0,0,991,992,5,82,0,0,992,993,5,83, + 0,0,993,34,1,0,0,0,994,995,5,67,0,0,995,996,5,79,0,0,996,997,5,77,0,0,997, + 998,5,77,0,0,998,999,5,69,0,0,999,1000,5,78,0,0,1000,1001,5,84,0,0,1001, + 36,1,0,0,0,1002,1003,5,67,0,0,1003,1004,5,79,0,0,1004,1005,5,77,0,0,1005, + 1006,5,80,0,0,1006,1007,5,65,0,0,1007,1008,5,67,0,0,1008,1009,5,84,0,0, + 1009,38,1,0,0,0,1010,1011,5,67,0,0,1011,1012,5,79,0,0,1012,1013,5,76,0, + 0,1013,1014,5,85,0,0,1014,1015,5,77,0,0,1015,1016,5,78,0,0,1016,1017,5, + 83,0,0,1017,40,1,0,0,0,1018,1019,5,67,0,0,1019,1020,5,79,0,0,1020,1021, + 5,78,0,0,1021,1022,5,83,0,0,1022,1023,5,84,0,0,1023,1024,5,82,0,0,1024, + 1025,5,65,0,0,1025,1026,5,73,0,0,1026,1027,5,78,0,0,1027,1028,5,84,0,0, + 1028,1029,5,83,0,0,1029,42,1,0,0,0,1030,1031,5,67,0,0,1031,1032,5,79,0, + 0,1032,1033,5,78,0,0,1033,1034,5,83,0,0,1034,1035,5,84,0,0,1035,1036,5, + 82,0,0,1036,1037,5,85,0,0,1037,1038,5,67,0,0,1038,1039,5,84,0,0,1039,1040, + 5,79,0,0,1040,1041,5,82,0,0,1041,44,1,0,0,0,1042,1043,5,67,0,0,1043,1044, + 5,85,0,0,1044,1045,5,77,0,0,1045,1046,5,85,0,0,1046,1047,5,76,0,0,1047, + 1048,5,65,0,0,1048,1049,5,84,0,0,1049,1050,5,69,0,0,1050,46,1,0,0,0,1051, + 1052,5,68,0,0,1052,1053,5,65,0,0,1053,1054,5,84,0,0,1054,1055,5,65,0,0, + 1055,48,1,0,0,0,1056,1057,5,68,0,0,1057,1058,5,65,0,0,1058,1059,5,84,0, + 0,1059,1060,5,65,0,0,1060,1061,5,66,0,0,1061,1062,5,65,0,0,1062,1063,5, + 83,0,0,1063,1064,5,69,0,0,1064,50,1,0,0,0,1065,1066,5,68,0,0,1066,1067, + 5,65,0,0,1067,1068,5,84,0,0,1068,1069,5,65,0,0,1069,1070,5,66,0,0,1070, + 1071,5,65,0,0,1071,1072,5,83,0,0,1072,1073,5,69,0,0,1073,1074,5,83,0,0, + 1074,52,1,0,0,0,1075,1076,5,68,0,0,1076,1077,5,65,0,0,1077,1078,5,89,0, + 0,1078,1079,5,83,0,0,1079,54,1,0,0,0,1080,1081,5,68,0,0,1081,1082,5,69, + 0,0,1082,1083,5,67,0,0,1083,1084,5,65,0,0,1084,1085,5,68,0,0,1085,1086, + 5,69,0,0,1086,56,1,0,0,0,1087,1088,5,68,0,0,1088,1089,5,69,0,0,1089,1090, + 5,70,0,0,1090,1091,5,73,0,0,1091,1092,5,78,0,0,1092,1093,5,69,0,0,1093, + 1094,5,68,0,0,1094,58,1,0,0,0,1095,1096,5,68,0,0,1096,1097,5,69,0,0,1097, + 1098,5,83,0,0,1098,1099,5,67,0,0,1099,60,1,0,0,0,1100,1101,5,68,0,0,1101, + 1102,5,69,0,0,1102,1103,5,83,0,0,1103,1104,5,67,0,0,1104,1105,5,82,0,0, + 1105,1106,5,73,0,0,1106,1107,5,80,0,0,1107,1108,5,84,0,0,1108,1109,5,79, + 0,0,1109,1110,5,82,0,0,1110,62,1,0,0,0,1111,1112,5,68,0,0,1112,1113,5,73, + 0,0,1113,1114,5,86,0,0,1114,64,1,0,0,0,1115,1116,5,69,0,0,1116,1117,5,78, + 0,0,1117,1118,5,67,0,0,1118,1119,5,79,0,0,1119,1120,5,68,0,0,1120,1121, + 5,73,0,0,1121,1122,5,78,0,0,1122,1123,5,71,0,0,1123,66,1,0,0,0,1124,1125, + 5,69,0,0,1125,1126,5,78,0,0,1126,1127,5,70,0,0,1127,1128,5,79,0,0,1128, + 1129,5,82,0,0,1129,1130,5,67,0,0,1130,1131,5,69,0,0,1131,1132,5,68,0,0, + 1132,68,1,0,0,0,1133,1134,5,69,0,0,1134,1135,5,78,0,0,1135,1136,5,71,0, + 0,1136,1137,5,73,0,0,1137,1138,5,78,0,0,1138,1139,5,69,0,0,1139,70,1,0, + 0,0,1140,1141,5,69,0,0,1141,1142,5,82,0,0,1142,1143,5,82,0,0,1143,1144, + 5,79,0,0,1144,1145,5,82,0,0,1145,72,1,0,0,0,1146,1147,5,69,0,0,1147,1148, + 5,83,0,0,1148,1149,5,84,0,0,1149,1150,5,73,0,0,1150,1151,5,77,0,0,1151, + 1152,5,65,0,0,1152,1153,5,84,0,0,1153,1154,5,69,0,0,1154,1155,5,68,0,0, + 1155,1156,5,95,0,0,1156,1157,5,67,0,0,1157,1158,5,79,0,0,1158,1159,5,83, + 0,0,1159,1160,5,84,0,0,1160,74,1,0,0,0,1161,1162,5,69,0,0,1162,1163,5,88, + 0,0,1163,1164,5,67,0,0,1164,1165,5,69,0,0,1165,1166,5,80,0,0,1166,1167, + 5,84,0,0,1167,1168,5,73,0,0,1168,1169,5,79,0,0,1169,1170,5,78,0,0,1170, + 76,1,0,0,0,1171,1172,5,69,0,0,1172,1173,5,88,0,0,1173,1174,5,67,0,0,1174, + 1175,5,76,0,0,1175,1176,5,85,0,0,1176,1177,5,68,0,0,1177,1178,5,69,0,0, + 1178,78,1,0,0,0,1179,1180,5,69,0,0,1180,1181,5,88,0,0,1181,1182,5,67,0, + 0,1182,1183,5,76,0,0,1183,1184,5,85,0,0,1184,1185,5,68,0,0,1185,1186,5, + 73,0,0,1186,1187,5,78,0,0,1187,1188,5,71,0,0,1188,80,1,0,0,0,1189,1190, + 5,69,0,0,1190,1191,5,88,0,0,1191,1192,5,84,0,0,1192,1193,5,69,0,0,1193, + 1194,5,78,0,0,1194,1195,5,68,0,0,1195,1196,5,69,0,0,1196,1197,5,68,0,0, + 1197,82,1,0,0,0,1198,1199,5,70,0,0,1199,1200,5,73,0,0,1200,1201,5,76,0, + 0,1201,1202,5,69,0,0,1202,84,1,0,0,0,1203,1204,5,70,0,0,1204,1205,5,73, + 0,0,1205,1206,5,78,0,0,1206,1207,5,65,0,0,1207,1208,5,76,0,0,1208,86,1, + 0,0,0,1209,1210,5,70,0,0,1210,1211,5,73,0,0,1211,1212,5,82,0,0,1212,1213, + 5,83,0,0,1213,1214,5,84,0,0,1214,88,1,0,0,0,1215,1216,5,70,0,0,1216,1217, + 5,79,0,0,1217,1218,5,76,0,0,1218,1219,5,76,0,0,1219,1220,5,79,0,0,1220, + 1221,5,87,0,0,1221,1222,5,73,0,0,1222,1223,5,78,0,0,1223,1224,5,71,0,0, + 1224,90,1,0,0,0,1225,1226,5,70,0,0,1226,1227,5,79,0,0,1227,1228,5,82,0, + 0,1228,1229,5,77,0,0,1229,1230,5,65,0,0,1230,1231,5,84,0,0,1231,92,1,0, + 0,0,1232,1233,5,70,0,0,1233,1234,5,79,0,0,1234,1235,5,82,0,0,1235,1236, + 5,84,0,0,1236,1237,5,82,0,0,1237,1238,5,65,0,0,1238,1239,5,78,0,0,1239, + 94,1,0,0,0,1240,1241,5,70,0,0,1241,1242,5,79,0,0,1242,1243,5,85,0,0,1243, + 1244,5,78,0,0,1244,1245,5,68,0,0,1245,96,1,0,0,0,1246,1247,5,70,0,0,1247, + 1248,5,82,0,0,1248,1249,5,65,0,0,1249,1250,5,67,0,0,1250,1251,5,95,0,0, + 1251,1252,5,83,0,0,1252,1253,5,69,0,0,1253,1254,5,67,0,0,1254,1255,5,79, + 0,0,1255,1256,5,78,0,0,1256,1257,5,68,0,0,1257,98,1,0,0,0,1258,1259,5,70, + 0,0,1259,1260,5,85,0,0,1260,1261,5,78,0,0,1261,1262,5,67,0,0,1262,1263, + 5,84,0,0,1263,1264,5,73,0,0,1264,1265,5,79,0,0,1265,1266,5,78,0,0,1266, + 1267,5,83,0,0,1267,100,1,0,0,0,1268,1269,5,71,0,0,1269,1270,5,69,0,0,1270, + 1271,5,78,0,0,1271,1272,5,69,0,0,1272,1273,5,82,0,0,1273,1274,5,65,0,0, + 1274,1275,5,76,0,0,1275,102,1,0,0,0,1276,1277,5,71,0,0,1277,1278,5,69,0, + 0,1278,1279,5,78,0,0,1279,1280,5,69,0,0,1280,1281,5,82,0,0,1281,1282,5, + 65,0,0,1282,1283,5,84,0,0,1283,1284,5,69,0,0,1284,1285,5,68,0,0,1285,104, + 1,0,0,0,1286,1287,5,71,0,0,1287,1288,5,79,0,0,1288,106,1,0,0,0,1289,1290, + 5,71,0,0,1290,1291,5,79,0,0,1291,1292,5,84,0,0,1292,1293,5,79,0,0,1293, + 108,1,0,0,0,1294,1295,5,71,0,0,1295,1296,5,82,0,0,1296,1297,5,65,0,0,1297, + 1298,5,78,0,0,1298,1299,5,84,0,0,1299,1300,5,69,0,0,1300,1301,5,68,0,0, + 1301,110,1,0,0,0,1302,1303,5,72,0,0,1303,1304,5,79,0,0,1304,1305,5,80,0, + 0,1305,112,1,0,0,0,1306,1307,5,72,0,0,1307,1308,5,79,0,0,1308,1309,5,85, + 0,0,1309,1310,5,82,0,0,1310,1311,5,83,0,0,1311,114,1,0,0,0,1312,1313,5, + 73,0,0,1313,1314,5,70,0,0,1314,116,1,0,0,0,1315,1316,5,73,0,0,1316,1317, + 5,71,0,0,1317,1318,5,78,0,0,1318,1319,5,79,0,0,1319,1320,5,82,0,0,1320, + 1321,5,69,0,0,1321,118,1,0,0,0,1322,1323,5,73,0,0,1323,1324,5,78,0,0,1324, + 1325,5,67,0,0,1325,1326,5,82,0,0,1326,1327,5,69,0,0,1327,1328,5,77,0,0, + 1328,1329,5,69,0,0,1329,1330,5,78,0,0,1330,1331,5,84,0,0,1331,120,1,0,0, + 0,1332,1333,5,73,0,0,1333,1334,5,78,0,0,1334,1335,5,80,0,0,1335,1336,5, + 85,0,0,1336,1337,5,84,0,0,1337,122,1,0,0,0,1338,1339,5,73,0,0,1339,1340, + 5,78,0,0,1340,1341,5,86,0,0,1341,1342,5,79,0,0,1342,1343,5,75,0,0,1343, + 1344,5,69,0,0,1344,1345,5,82,0,0,1345,124,1,0,0,0,1346,1347,5,74,0,0,1347, + 1348,5,65,0,0,1348,1349,5,82,0,0,1349,126,1,0,0,0,1350,1351,5,74,0,0,1351, + 1352,5,65,0,0,1352,1353,5,82,0,0,1353,1354,5,83,0,0,1354,128,1,0,0,0,1355, + 1356,5,74,0,0,1356,1357,5,65,0,0,1357,1358,5,86,0,0,1358,1359,5,65,0,0, + 1359,130,1,0,0,0,1360,1361,5,74,0,0,1361,1362,5,83,0,0,1362,1363,5,79,0, + 0,1363,1364,5,78,0,0,1364,132,1,0,0,0,1365,1366,5,74,0,0,1366,1367,5,83, + 0,0,1367,1368,5,79,0,0,1368,1369,5,78,0,0,1369,1370,5,95,0,0,1370,1371, + 5,69,0,0,1371,1372,5,88,0,0,1372,1373,5,69,0,0,1373,1374,5,67,0,0,1374, + 1375,5,85,0,0,1375,1376,5,84,0,0,1376,1377,5,73,0,0,1377,1378,5,79,0,0, + 1378,1379,5,78,0,0,1379,1380,5,95,0,0,1380,1381,5,80,0,0,1381,1382,5,76, + 0,0,1382,1383,5,65,0,0,1383,1384,5,78,0,0,1384,134,1,0,0,0,1385,1386,5, + 75,0,0,1386,1387,5,69,0,0,1387,1388,5,89,0,0,1388,136,1,0,0,0,1389,1390, + 5,75,0,0,1390,1391,5,69,0,0,1391,1392,5,89,0,0,1392,1393,5,95,0,0,1393, + 1394,5,77,0,0,1394,1395,5,69,0,0,1395,1396,5,77,0,0,1396,1397,5,66,0,0, + 1397,1398,5,69,0,0,1398,1399,5,82,0,0,1399,138,1,0,0,0,1400,1401,5,75,0, + 0,1401,1402,5,69,0,0,1402,1403,5,89,0,0,1403,1404,5,95,0,0,1404,1405,5, + 84,0,0,1405,1406,5,89,0,0,1406,1407,5,80,0,0,1407,1408,5,69,0,0,1408,140, + 1,0,0,0,1409,1410,5,76,0,0,1410,1411,5,65,0,0,1411,1412,5,66,0,0,1412,1413, + 5,69,0,0,1413,1414,5,76,0,0,1414,142,1,0,0,0,1415,1416,5,76,0,0,1416,1417, + 5,65,0,0,1417,1418,5,83,0,0,1418,1419,5,84,0,0,1419,144,1,0,0,0,1420,1421, + 5,76,0,0,1421,1422,5,69,0,0,1422,1423,5,78,0,0,1423,1424,5,71,0,0,1424, + 1425,5,84,0,0,1425,1426,5,72,0,0,1426,146,1,0,0,0,1427,1428,5,76,0,0,1428, + 1429,5,69,0,0,1429,1430,5,86,0,0,1430,1431,5,69,0,0,1431,1432,5,76,0,0, + 1432,148,1,0,0,0,1433,1434,5,76,0,0,1434,1435,5,79,0,0,1435,1436,5,65,0, + 0,1436,1437,5,68,0,0,1437,150,1,0,0,0,1438,1439,5,77,0,0,1439,1440,5,65, + 0,0,1440,1441,5,80,0,0,1441,152,1,0,0,0,1442,1443,5,77,0,0,1443,1444,5, + 73,0,0,1444,1445,5,67,0,0,1445,1446,5,82,0,0,1446,1447,5,79,0,0,1447,1448, + 5,83,0,0,1448,1449,5,69,0,0,1449,1450,5,67,0,0,1450,1451,5,79,0,0,1451, + 1452,5,78,0,0,1452,1453,5,68,0,0,1453,154,1,0,0,0,1454,1455,5,77,0,0,1455, + 1456,5,73,0,0,1456,1457,5,76,0,0,1457,1458,5,76,0,0,1458,1459,5,69,0,0, + 1459,1460,5,78,0,0,1460,1461,5,78,0,0,1461,1462,5,73,0,0,1462,1463,5,85, + 0,0,1463,1464,5,77,0,0,1464,156,1,0,0,0,1465,1466,5,77,0,0,1466,1467,5, + 73,0,0,1467,1468,5,76,0,0,1468,1469,5,76,0,0,1469,1470,5,73,0,0,1470,1471, + 5,83,0,0,1471,1472,5,69,0,0,1472,1473,5,67,0,0,1473,1474,5,79,0,0,1474, + 1475,5,78,0,0,1475,1476,5,68,0,0,1476,158,1,0,0,0,1477,1478,5,77,0,0,1478, + 1479,5,73,0,0,1479,1480,5,78,0,0,1480,1481,5,85,0,0,1481,1482,5,84,0,0, + 1482,1483,5,69,0,0,1483,1484,5,83,0,0,1484,160,1,0,0,0,1485,1486,5,77,0, + 0,1486,1487,5,73,0,0,1487,1488,5,78,0,0,1488,1489,5,86,0,0,1489,1490,5, + 65,0,0,1490,1491,5,76,0,0,1491,1492,5,85,0,0,1492,1493,5,69,0,0,1493,162, + 1,0,0,0,1494,1495,5,77,0,0,1495,1496,5,79,0,0,1496,1497,5,68,0,0,1497,1498, + 5,73,0,0,1498,1499,5,70,0,0,1499,1500,5,89,0,0,1500,164,1,0,0,0,1501,1502, + 5,77,0,0,1502,1503,5,79,0,0,1503,1504,5,68,0,0,1504,1505,5,85,0,0,1505, + 1506,5,76,0,0,1506,1507,5,69,0,0,1507,1508,5,83,0,0,1508,166,1,0,0,0,1509, + 1510,5,77,0,0,1510,1511,5,79,0,0,1511,1512,5,78,0,0,1512,1513,5,84,0,0, + 1513,1514,5,72,0,0,1514,1515,5,83,0,0,1515,168,1,0,0,0,1516,1517,5,78,0, + 0,1517,1518,5,65,0,0,1518,1519,5,78,0,0,1519,1520,5,79,0,0,1520,1521,5, + 83,0,0,1521,1522,5,69,0,0,1522,1523,5,67,0,0,1523,1524,5,79,0,0,1524,1525, + 5,78,0,0,1525,1526,5,68,0,0,1526,170,1,0,0,0,1527,1528,5,78,0,0,1528,1529, + 5,85,0,0,1529,1530,5,76,0,0,1530,1531,5,76,0,0,1531,1532,5,83,0,0,1532, + 172,1,0,0,0,1533,1534,5,78,0,0,1534,1535,5,85,0,0,1535,1536,5,77,0,0,1536, + 1537,5,66,0,0,1537,1538,5,69,0,0,1538,1539,5,82,0,0,1539,174,1,0,0,0,1540, + 1541,5,79,0,0,1541,1542,5,80,0,0,1542,1543,5,84,0,0,1543,1544,5,73,0,0, + 1544,1545,5,79,0,0,1545,1546,5,78,0,0,1546,176,1,0,0,0,1547,1548,5,79,0, + 0,1548,1549,5,80,0,0,1549,1550,5,84,0,0,1550,1551,5,73,0,0,1551,1552,5, + 79,0,0,1552,1553,5,78,0,0,1553,1554,5,83,0,0,1554,178,1,0,0,0,1555,1556, + 5,79,0,0,1556,1557,5,82,0,0,1557,1558,5,68,0,0,1558,1559,5,69,0,0,1559, + 1560,5,82,0,0,1560,1561,5,73,0,0,1561,1562,5,78,0,0,1562,1563,5,71,0,0, + 1563,180,1,0,0,0,1564,1565,5,79,0,0,1565,1566,5,85,0,0,1566,1567,5,84,0, + 0,1567,1568,5,80,0,0,1568,1569,5,85,0,0,1569,1570,5,84,0,0,1570,182,1,0, + 0,0,1571,1572,5,79,0,0,1572,1573,5,86,0,0,1573,1574,5,69,0,0,1574,1575, 5,82,0,0,1575,1576,5,87,0,0,1576,1577,5,82,0,0,1577,1578,5,73,0,0,1578, - 1579,5,84,0,0,1579,1580,5,73,0,0,1580,1581,5,78,0,0,1581,1582,5,71,0,0, - 1582,186,1,0,0,0,1583,1584,5,80,0,0,1584,1585,5,65,0,0,1585,1586,5,82,0, - 0,1586,1587,5,84,0,0,1587,1588,5,73,0,0,1588,1589,5,84,0,0,1589,1590,5, - 73,0,0,1590,1591,5,79,0,0,1591,1592,5,78,0,0,1592,1593,5,69,0,0,1593,1594, - 5,68,0,0,1594,188,1,0,0,0,1595,1596,5,80,0,0,1596,1597,5,65,0,0,1597,1598, - 5,82,0,0,1598,1599,5,84,0,0,1599,1600,5,73,0,0,1600,1601,5,84,0,0,1601, - 1602,5,73,0,0,1602,1603,5,79,0,0,1603,1604,5,78,0,0,1604,1605,5,83,0,0, - 1605,190,1,0,0,0,1606,1607,5,80,0,0,1607,1608,5,65,0,0,1608,1609,5,83,0, - 0,1609,1610,5,83,0,0,1610,1611,5,73,0,0,1611,1612,5,78,0,0,1612,1613,5, - 71,0,0,1613,192,1,0,0,0,1614,1615,5,80,0,0,1615,1616,5,65,0,0,1616,1617, - 5,83,0,0,1617,1618,5,84,0,0,1618,194,1,0,0,0,1619,1620,5,80,0,0,1620,1621, - 5,65,0,0,1621,1622,5,84,0,0,1622,1623,5,72,0,0,1623,196,1,0,0,0,1624,1625, - 5,80,0,0,1625,1626,5,76,0,0,1626,1627,5,65,0,0,1627,1628,5,67,0,0,1628, - 1629,5,73,0,0,1629,1630,5,78,0,0,1630,1631,5,71,0,0,1631,198,1,0,0,0,1632, - 1633,5,80,0,0,1633,1634,5,76,0,0,1634,1635,5,65,0,0,1635,1636,5,78,0,0, - 1636,200,1,0,0,0,1637,1638,5,80,0,0,1638,1639,5,82,0,0,1639,1640,5,69,0, - 0,1640,1641,5,67,0,0,1641,1642,5,69,0,0,1642,1643,5,68,0,0,1643,1644,5, - 73,0,0,1644,1645,5,78,0,0,1645,1646,5,71,0,0,1646,202,1,0,0,0,1647,1648, - 5,80,0,0,1648,1649,5,82,0,0,1649,1650,5,69,0,0,1650,1651,5,83,0,0,1651, - 1652,5,69,0,0,1652,1653,5,82,0,0,1653,1654,5,86,0,0,1654,1655,5,69,0,0, - 1655,204,1,0,0,0,1656,1657,5,80,0,0,1657,1658,5,82,0,0,1658,1659,5,73,0, - 0,1659,1660,5,79,0,0,1660,1661,5,82,0,0,1661,206,1,0,0,0,1662,1663,5,80, - 0,0,1663,1664,5,82,0,0,1664,1665,5,73,0,0,1665,1666,5,86,0,0,1666,1667, - 5,73,0,0,1667,1668,5,76,0,0,1668,1669,5,69,0,0,1669,1670,5,71,0,0,1670, - 1671,5,69,0,0,1671,1672,5,83,0,0,1672,208,1,0,0,0,1673,1674,5,80,0,0,1674, - 1675,5,85,0,0,1675,1676,5,66,0,0,1676,1677,5,76,0,0,1677,1678,5,73,0,0, - 1678,1679,5,67,0,0,1679,210,1,0,0,0,1680,1681,5,80,0,0,1681,1682,5,89,0, - 0,1682,1683,5,84,0,0,1683,1684,5,72,0,0,1684,1685,5,79,0,0,1685,1686,5, - 78,0,0,1686,212,1,0,0,0,1687,1688,5,80,0,0,1688,1689,5,89,0,0,1689,1690, - 5,84,0,0,1690,1691,5,72,0,0,1691,1692,5,79,0,0,1692,1693,5,78,0,0,1693, - 1694,5,95,0,0,1694,1695,5,70,0,0,1695,1696,5,73,0,0,1696,1697,5,76,0,0, - 1697,1698,5,69,0,0,1698,1699,5,83,0,0,1699,214,1,0,0,0,1700,1701,5,80,0, - 0,1701,1702,5,89,0,0,1702,1703,5,84,0,0,1703,1704,5,72,0,0,1704,1705,5, - 79,0,0,1705,1706,5,78,0,0,1706,1707,5,95,0,0,1707,1708,5,82,0,0,1708,1709, - 5,69,0,0,1709,1710,5,81,0,0,1710,1711,5,85,0,0,1711,1712,5,73,0,0,1712, - 1713,5,82,0,0,1713,1714,5,69,0,0,1714,1715,5,77,0,0,1715,1716,5,69,0,0, - 1716,1717,5,78,0,0,1717,1718,5,84,0,0,1718,1719,5,83,0,0,1719,216,1,0,0, - 0,1720,1721,5,80,0,0,1721,1722,5,89,0,0,1722,1723,5,84,0,0,1723,1724,5, - 72,0,0,1724,1725,5,79,0,0,1725,1726,5,78,0,0,1726,1727,5,95,0,0,1727,1728, - 5,68,0,0,1728,1729,5,69,0,0,1729,1730,5,80,0,0,1730,1731,5,69,0,0,1731, - 1732,5,78,0,0,1732,1733,5,68,0,0,1733,1734,5,69,0,0,1734,1735,5,78,0,0, - 1735,1736,5,67,0,0,1736,1737,5,73,0,0,1737,1738,5,69,0,0,1738,1739,5,83, - 0,0,1739,218,1,0,0,0,1740,1741,5,80,0,0,1741,1742,5,89,0,0,1742,1743,5, - 84,0,0,1743,1744,5,72,0,0,1744,1745,5,79,0,0,1745,1746,5,78,0,0,1746,1747, - 5,95,0,0,1747,1748,5,74,0,0,1748,1749,5,65,0,0,1749,1750,5,82,0,0,1750, - 220,1,0,0,0,1751,1752,5,80,0,0,1752,1753,5,89,0,0,1753,1754,5,84,0,0,1754, - 1755,5,72,0,0,1755,1756,5,79,0,0,1756,1757,5,78,0,0,1757,1758,5,95,0,0, - 1758,1759,5,65,0,0,1759,1760,5,82,0,0,1760,1761,5,67,0,0,1761,1762,5,72, - 0,0,1762,1763,5,73,0,0,1763,1764,5,86,0,0,1764,1765,5,69,0,0,1765,1766, - 5,83,0,0,1766,222,1,0,0,0,1767,1768,5,80,0,0,1768,1769,5,89,0,0,1769,1770, - 5,84,0,0,1770,1771,5,72,0,0,1771,1772,5,79,0,0,1772,1773,5,78,0,0,1773, - 1774,5,95,0,0,1774,1775,5,80,0,0,1775,1776,5,65,0,0,1776,1777,5,82,0,0, - 1777,1778,5,65,0,0,1778,1779,5,77,0,0,1779,1780,5,69,0,0,1780,1781,5,84, - 0,0,1781,1782,5,69,0,0,1782,1783,5,82,0,0,1783,224,1,0,0,0,1784,1785,5, - 81,0,0,1785,1786,5,85,0,0,1786,1787,5,65,0,0,1787,1788,5,82,0,0,1788,1789, - 5,84,0,0,1789,1790,5,69,0,0,1790,1791,5,82,0,0,1791,226,1,0,0,0,1792,1793, - 5,82,0,0,1793,1794,5,65,0,0,1794,1795,5,87,0,0,1795,228,1,0,0,0,1796,1797, - 5,82,0,0,1797,1798,5,69,0,0,1798,1799,5,65,0,0,1799,1800,5,68,0,0,1800, - 230,1,0,0,0,1801,1802,5,82,0,0,1802,1803,5,69,0,0,1803,1804,5,76,0,0,1804, - 1805,5,65,0,0,1805,1806,5,84,0,0,1806,1807,5,73,0,0,1807,1808,5,86,0,0, - 1808,1809,5,69,0,0,1809,232,1,0,0,0,1810,1811,5,82,0,0,1811,1812,5,69,0, - 0,1812,1813,5,77,0,0,1813,1814,5,79,0,0,1814,1815,5,86,0,0,1815,1816,5, - 69,0,0,1816,234,1,0,0,0,1817,1818,5,82,0,0,1818,1819,5,69,0,0,1819,1820, - 5,78,0,0,1820,1821,5,65,0,0,1821,1822,5,77,0,0,1822,1823,5,69,0,0,1823, - 236,1,0,0,0,1824,1825,5,82,0,0,1825,1826,5,69,0,0,1826,1827,5,80,0,0,1827, - 1828,5,76,0,0,1828,1829,5,65,0,0,1829,1830,5,67,0,0,1830,1831,5,69,0,0, - 1831,238,1,0,0,0,1832,1833,5,82,0,0,1833,1834,5,69,0,0,1834,1835,5,83,0, - 0,1835,1836,5,80,0,0,1836,1837,5,69,0,0,1837,1838,5,67,0,0,1838,1839,5, - 84,0,0,1839,240,1,0,0,0,1840,1841,5,82,0,0,1841,1842,5,69,0,0,1842,1843, - 5,83,0,0,1843,1844,5,84,0,0,1844,1845,5,65,0,0,1845,1846,5,82,0,0,1846, - 1847,5,84,0,0,1847,242,1,0,0,0,1848,1849,5,82,0,0,1849,1850,5,69,0,0,1850, - 1851,5,83,0,0,1851,1852,5,84,0,0,1852,1853,5,82,0,0,1853,1854,5,73,0,0, - 1854,1855,5,67,0,0,1855,1856,5,84,0,0,1856,244,1,0,0,0,1857,1858,5,82,0, - 0,1858,1859,5,79,0,0,1859,1860,5,76,0,0,1860,1861,5,69,0,0,1861,246,1,0, - 0,0,1862,1863,5,82,0,0,1863,1864,5,79,0,0,1864,1865,5,87,0,0,1865,1866, - 5,95,0,0,1866,1867,5,67,0,0,1867,1868,5,79,0,0,1868,1869,5,85,0,0,1869, - 1870,5,78,0,0,1870,1871,5,84,0,0,1871,248,1,0,0,0,1872,1873,5,83,0,0,1873, - 1874,5,67,0,0,1874,1875,5,65,0,0,1875,1876,5,76,0,0,1876,1877,5,65,0,0, - 1877,250,1,0,0,0,1878,1879,5,83,0,0,1879,1880,5,67,0,0,1880,1881,5,65,0, - 0,1881,1882,5,76,0,0,1882,1883,5,65,0,0,1883,1884,5,82,0,0,1884,252,1,0, - 0,0,1885,1886,5,83,0,0,1886,1887,5,67,0,0,1887,1888,5,65,0,0,1888,1889, - 5,76,0,0,1889,1890,5,69,0,0,1890,254,1,0,0,0,1891,1892,5,83,0,0,1892,1893, - 5,67,0,0,1893,1894,5,72,0,0,1894,1895,5,69,0,0,1895,1896,5,77,0,0,1896, - 1897,5,65,0,0,1897,256,1,0,0,0,1898,1899,5,83,0,0,1899,1900,5,69,0,0,1900, - 1901,5,67,0,0,1901,1902,5,79,0,0,1902,1903,5,78,0,0,1903,1904,5,68,0,0, - 1904,1905,5,83,0,0,1905,258,1,0,0,0,1906,1907,5,83,0,0,1907,1908,5,69,0, - 0,1908,1909,5,67,0,0,1909,1910,5,84,0,0,1910,1911,5,73,0,0,1911,1912,5, - 79,0,0,1912,1913,5,78,0,0,1913,260,1,0,0,0,1914,1915,5,83,0,0,1915,1916, - 5,69,0,0,1916,1917,5,67,0,0,1917,1918,5,85,0,0,1918,1919,5,82,0,0,1919, - 1920,5,73,0,0,1920,1921,5,84,0,0,1921,1922,5,89,0,0,1922,262,1,0,0,0,1923, - 1924,5,83,0,0,1924,1925,5,69,0,0,1925,1926,5,76,0,0,1926,1927,5,70,0,0, - 1927,264,1,0,0,0,1928,1929,5,83,0,0,1929,1930,5,69,0,0,1930,1931,5,82,0, - 0,1931,1932,5,86,0,0,1932,1933,5,69,0,0,1933,1934,5,82,0,0,1934,266,1,0, - 0,0,1935,1936,5,83,0,0,1936,1937,5,69,0,0,1937,1938,5,82,0,0,1938,1939, - 5,86,0,0,1939,1940,5,69,0,0,1940,1941,5,82,0,0,1941,1942,5,95,0,0,1942, - 1943,5,78,0,0,1943,1944,5,65,0,0,1944,1945,5,77,0,0,1945,1946,5,69,0,0, - 1946,268,1,0,0,0,1947,1948,5,83,0,0,1948,1949,5,69,0,0,1949,1950,5,83,0, - 0,1950,1951,5,83,0,0,1951,1952,5,73,0,0,1952,1953,5,79,0,0,1953,1954,5, - 78,0,0,1954,270,1,0,0,0,1955,1956,5,83,0,0,1956,1957,5,69,0,0,1957,1958, - 5,84,0,0,1958,1959,5,83,0,0,1959,272,1,0,0,0,1960,1961,5,83,0,0,1961,1962, - 5,73,0,0,1962,1963,5,77,0,0,1963,1964,5,80,0,0,1964,1965,5,76,0,0,1965, - 1966,5,69,0,0,1966,274,1,0,0,0,1967,1968,5,83,0,0,1968,1969,5,73,0,0,1969, - 1970,5,90,0,0,1970,1971,5,69,0,0,1971,276,1,0,0,0,1972,1973,5,83,0,0,1973, - 1974,5,76,0,0,1974,1975,5,73,0,0,1975,1976,5,68,0,0,1976,1977,5,69,0,0, - 1977,278,1,0,0,0,1978,1979,5,83,0,0,1979,1980,5,79,0,0,1980,1981,5,85,0, - 0,1981,1982,5,82,0,0,1982,1983,5,67,0,0,1983,1984,5,69,0,0,1984,280,1,0, - 0,0,1985,1986,5,83,0,0,1986,1987,5,80,0,0,1987,1988,5,65,0,0,1988,1989, - 5,67,0,0,1989,1990,5,69,0,0,1990,282,1,0,0,0,1991,1992,5,83,0,0,1992,1993, - 5,84,0,0,1993,1994,5,65,0,0,1994,1995,5,84,0,0,1995,1996,5,69,0,0,1996, - 284,1,0,0,0,1997,1998,5,83,0,0,1998,1999,5,84,0,0,1999,2000,5,65,0,0,2000, - 2001,5,84,0,0,2001,2002,5,69,0,0,2002,2003,5,77,0,0,2003,2004,5,69,0,0, - 2004,2005,5,78,0,0,2005,2006,5,84,0,0,2006,286,1,0,0,0,2007,2008,5,83,0, - 0,2008,2009,5,84,0,0,2009,2010,5,69,0,0,2010,2011,5,80,0,0,2011,288,1,0, - 0,0,2012,2013,5,83,0,0,2013,2014,5,84,0,0,2014,2015,5,82,0,0,2015,2016, - 5,73,0,0,2016,2017,5,78,0,0,2017,2018,5,71,0,0,2018,290,1,0,0,0,2019,2020, - 5,83,0,0,2020,2021,5,84,0,0,2021,2022,5,82,0,0,2022,2023,5,85,0,0,2023, - 2024,5,67,0,0,2024,2025,5,84,0,0,2025,2026,5,85,0,0,2026,2027,5,82,0,0, - 2027,2028,5,69,0,0,2028,292,1,0,0,0,2029,2030,5,83,0,0,2030,2031,5,84,0, - 0,2031,2032,5,89,0,0,2032,2033,5,76,0,0,2033,2034,5,69,0,0,2034,294,1,0, - 0,0,2035,2036,5,84,0,0,2036,2037,5,65,0,0,2037,2038,5,66,0,0,2038,2039, - 5,76,0,0,2039,2040,5,69,0,0,2040,2041,5,83,0,0,2041,296,1,0,0,0,2042,2043, - 5,84,0,0,2043,2044,5,69,0,0,2044,2045,5,77,0,0,2045,2046,5,80,0,0,2046, - 2047,5,79,0,0,2047,2048,5,82,0,0,2048,2049,5,65,0,0,2049,2050,5,82,0,0, - 2050,2051,5,89,0,0,2051,298,1,0,0,0,2052,2053,5,84,0,0,2053,2054,5,73,0, - 0,2054,2055,5,77,0,0,2055,2056,5,69,0,0,2056,2057,5,67,0,0,2057,2058,5, - 79,0,0,2058,2059,5,76,0,0,2059,300,1,0,0,0,2060,2061,5,84,0,0,2061,2062, - 5,73,0,0,2062,2063,5,77,0,0,2063,2064,5,69,0,0,2064,2065,5,83,0,0,2065, - 2066,5,84,0,0,2066,2067,5,65,0,0,2067,2068,5,77,0,0,2068,2069,5,80,0,0, - 2069,2070,5,95,0,0,2070,2071,5,76,0,0,2071,2072,5,84,0,0,2072,2073,5,90, - 0,0,2073,302,1,0,0,0,2074,2075,5,84,0,0,2075,2076,5,73,0,0,2076,2077,5, - 77,0,0,2077,2078,5,69,0,0,2078,2079,5,83,0,0,2079,2080,5,84,0,0,2080,2081, - 5,65,0,0,2081,2082,5,77,0,0,2082,2083,5,80,0,0,2083,2084,5,65,0,0,2084, - 2085,5,68,0,0,2085,2086,5,68,0,0,2086,304,1,0,0,0,2087,2088,5,84,0,0,2088, - 2089,5,73,0,0,2089,2090,5,77,0,0,2090,2091,5,69,0,0,2091,2092,5,83,0,0, - 2092,2093,5,84,0,0,2093,2094,5,65,0,0,2094,2095,5,77,0,0,2095,2096,5,80, - 0,0,2096,2097,5,68,0,0,2097,2098,5,73,0,0,2098,2099,5,70,0,0,2099,2100, - 5,70,0,0,2100,306,1,0,0,0,2101,2102,5,84,0,0,2102,2103,5,82,0,0,2103,2104, - 5,65,0,0,2104,2105,5,78,0,0,2105,2106,5,83,0,0,2106,2107,5,70,0,0,2107, - 2108,5,79,0,0,2108,2109,5,82,0,0,2109,2110,5,77,0,0,2110,308,1,0,0,0,2111, - 2112,5,84,0,0,2112,2113,5,85,0,0,2113,2114,5,77,0,0,2114,2115,5,66,0,0, - 2115,2116,5,76,0,0,2116,2117,5,69,0,0,2117,310,1,0,0,0,2118,2119,5,84,0, - 0,2119,2120,5,89,0,0,2120,2121,5,80,0,0,2121,2122,5,69,0,0,2122,312,1,0, - 0,0,2123,2124,5,85,0,0,2124,2125,5,78,0,0,2125,2126,5,68,0,0,2126,2127, - 5,69,0,0,2127,2128,5,82,0,0,2128,314,1,0,0,0,2129,2130,5,85,0,0,2130,2131, - 5,78,0,0,2131,2132,5,76,0,0,2132,2133,5,79,0,0,2133,2134,5,65,0,0,2134, - 2135,5,68,0,0,2135,316,1,0,0,0,2136,2137,5,85,0,0,2137,2138,5,83,0,0,2138, - 2139,5,65,0,0,2139,2140,5,71,0,0,2140,2141,5,69,0,0,2141,318,1,0,0,0,2142, - 2143,5,85,0,0,2143,2144,5,83,0,0,2144,2145,5,69,0,0,2145,320,1,0,0,0,2146, - 2147,5,85,0,0,2147,2148,5,84,0,0,2148,2149,5,70,0,0,2149,2150,5,49,0,0, - 2150,2151,5,54,0,0,2151,322,1,0,0,0,2152,2153,5,85,0,0,2153,2154,5,84,0, - 0,2154,2155,5,70,0,0,2155,2156,5,51,0,0,2156,2157,5,50,0,0,2157,324,1,0, - 0,0,2158,2159,5,85,0,0,2159,2160,5,84,0,0,2160,2161,5,70,0,0,2161,2162, - 5,56,0,0,2162,326,1,0,0,0,2163,2164,5,86,0,0,2164,2165,5,69,0,0,2165,2166, - 5,82,0,0,2166,2167,5,83,0,0,2167,2168,5,73,0,0,2168,2169,5,79,0,0,2169, - 2170,5,78,0,0,2170,328,1,0,0,0,2171,2172,5,86,0,0,2172,2173,5,73,0,0,2173, - 2174,5,69,0,0,2174,2175,5,87,0,0,2175,330,1,0,0,0,2176,2177,5,86,0,0,2177, - 2178,5,73,0,0,2178,2179,5,69,0,0,2179,2180,5,87,0,0,2180,2181,5,83,0,0, - 2181,332,1,0,0,0,2182,2183,5,86,0,0,2183,2184,5,73,0,0,2184,2185,5,82,0, - 0,2185,2186,5,84,0,0,2186,2187,5,85,0,0,2187,2188,5,65,0,0,2188,2189,5, - 76,0,0,2189,334,1,0,0,0,2190,2191,5,87,0,0,2191,2192,5,65,0,0,2192,2193, - 5,84,0,0,2193,2194,5,69,0,0,2194,2195,5,82,0,0,2195,2196,5,77,0,0,2196, - 2197,5,65,0,0,2197,2198,5,82,0,0,2198,2199,5,75,0,0,2199,336,1,0,0,0,2200, - 2201,5,87,0,0,2201,2202,5,65,0,0,2202,2203,5,84,0,0,2203,2204,5,69,0,0, - 2204,2205,5,82,0,0,2205,2206,5,77,0,0,2206,2207,5,65,0,0,2207,2208,5,82, - 0,0,2208,2209,5,75,0,0,2209,2210,5,83,0,0,2210,338,1,0,0,0,2211,2212,5, - 87,0,0,2212,2213,5,69,0,0,2213,2214,5,69,0,0,2214,2215,5,75,0,0,2215,340, - 1,0,0,0,2216,2217,5,87,0,0,2217,2218,5,79,0,0,2218,2219,5,82,0,0,2219,2220, - 5,75,0,0,2220,342,1,0,0,0,2221,2222,5,87,0,0,2222,2223,5,82,0,0,2223,2224, - 5,65,0,0,2224,2225,5,80,0,0,2225,2226,5,80,0,0,2226,2227,5,69,0,0,2227, - 2228,5,82,0,0,2228,344,1,0,0,0,2229,2230,5,89,0,0,2230,2231,5,69,0,0,2231, - 2232,5,65,0,0,2232,2233,5,82,0,0,2233,2234,5,83,0,0,2234,346,1,0,0,0,2235, - 2236,5,90,0,0,2236,2237,5,79,0,0,2237,2238,5,78,0,0,2238,2239,5,69,0,0, - 2239,348,1,0,0,0,2240,2241,5,65,0,0,2241,2242,5,66,0,0,2242,2243,5,83,0, - 0,2243,350,1,0,0,0,2244,2245,5,65,0,0,2245,2246,5,76,0,0,2246,2247,5,76, - 0,0,2247,352,1,0,0,0,2248,2249,5,65,0,0,2249,2250,5,76,0,0,2250,2251,5, - 76,0,0,2251,2252,5,79,0,0,2252,2253,5,87,0,0,2253,354,1,0,0,0,2254,2255, - 5,65,0,0,2255,2256,5,76,0,0,2256,2257,5,84,0,0,2257,2258,5,69,0,0,2258, - 2259,5,82,0,0,2259,356,1,0,0,0,2260,2261,5,65,0,0,2261,2262,5,78,0,0,2262, - 2263,5,68,0,0,2263,358,1,0,0,0,2264,2265,5,65,0,0,2265,2266,5,78,0,0,2266, - 2267,5,89,0,0,2267,360,1,0,0,0,2268,2269,5,65,0,0,2269,2270,5,82,0,0,2270, - 2271,5,69,0,0,2271,362,1,0,0,0,2272,2273,5,65,0,0,2273,2274,5,82,0,0,2274, - 2275,5,82,0,0,2275,2276,5,65,0,0,2276,2277,5,89,0,0,2277,364,1,0,0,0,2278, - 2279,5,65,0,0,2279,2280,5,83,0,0,2280,366,1,0,0,0,2281,2282,5,65,0,0,2282, - 2283,5,84,0,0,2283,368,1,0,0,0,2284,2285,5,65,0,0,2285,2286,5,86,0,0,2286, - 2287,5,71,0,0,2287,370,1,0,0,0,2288,2289,5,66,0,0,2289,2290,5,69,0,0,2290, - 2291,5,71,0,0,2291,2292,5,73,0,0,2292,2293,5,78,0,0,2293,372,1,0,0,0,2294, - 2295,5,66,0,0,2295,2296,5,69,0,0,2296,2297,5,84,0,0,2297,2298,5,87,0,0, - 2298,2299,5,69,0,0,2299,2300,5,69,0,0,2300,2301,5,78,0,0,2301,374,1,0,0, - 0,2302,2303,5,66,0,0,2303,2304,5,73,0,0,2304,2305,5,71,0,0,2305,2306,5, - 73,0,0,2306,2307,5,78,0,0,2307,2308,5,84,0,0,2308,376,1,0,0,0,2309,2310, - 5,66,0,0,2310,2311,5,73,0,0,2311,2312,5,78,0,0,2312,2313,5,65,0,0,2313, - 2314,5,82,0,0,2314,2315,5,89,0,0,2315,378,1,0,0,0,2316,2317,5,66,0,0,2317, - 2318,5,73,0,0,2318,2319,5,84,0,0,2319,380,1,0,0,0,2320,2321,5,66,0,0,2321, - 2322,5,76,0,0,2322,2323,5,79,0,0,2323,2324,5,66,0,0,2324,382,1,0,0,0,2325, - 2326,5,66,0,0,2326,2327,5,79,0,0,2327,2328,5,79,0,0,2328,2329,5,76,0,0, - 2329,2330,5,69,0,0,2330,2331,5,65,0,0,2331,2332,5,78,0,0,2332,384,1,0,0, - 0,2333,2334,5,66,0,0,2334,2335,5,79,0,0,2335,2336,5,84,0,0,2336,2337,5, - 72,0,0,2337,386,1,0,0,0,2338,2339,5,66,0,0,2339,2340,5,89,0,0,2340,388, - 1,0,0,0,2341,2342,5,67,0,0,2342,2343,5,65,0,0,2343,2344,5,76,0,0,2344,2345, - 5,76,0,0,2345,390,1,0,0,0,2346,2347,5,67,0,0,2347,2348,5,65,0,0,2348,2349, - 5,76,0,0,2349,2350,5,76,0,0,2350,2351,5,69,0,0,2351,2352,5,68,0,0,2352, - 392,1,0,0,0,2353,2354,5,67,0,0,2354,2355,5,65,0,0,2355,2356,5,83,0,0,2356, - 2357,5,67,0,0,2357,2358,5,65,0,0,2358,2359,5,68,0,0,2359,2360,5,69,0,0, - 2360,2361,5,68,0,0,2361,394,1,0,0,0,2362,2363,5,67,0,0,2363,2364,5,65,0, - 0,2364,2365,5,83,0,0,2365,2366,5,69,0,0,2366,396,1,0,0,0,2367,2368,5,67, - 0,0,2368,2369,5,65,0,0,2369,2370,5,83,0,0,2370,2371,5,84,0,0,2371,398,1, - 0,0,0,2372,2373,5,67,0,0,2373,2374,5,69,0,0,2374,2375,5,73,0,0,2375,2376, - 5,76,0,0,2376,400,1,0,0,0,2377,2378,5,67,0,0,2378,2379,5,72,0,0,2379,2380, - 5,65,0,0,2380,2381,5,82,0,0,2381,402,1,0,0,0,2382,2383,5,67,0,0,2383,2384, - 5,72,0,0,2384,2385,5,65,0,0,2385,2386,5,82,0,0,2386,2387,5,65,0,0,2387, - 2388,5,67,0,0,2388,2389,5,84,0,0,2389,2390,5,69,0,0,2390,2391,5,82,0,0, - 2391,404,1,0,0,0,2392,2393,5,67,0,0,2393,2394,5,72,0,0,2394,2395,5,69,0, - 0,2395,2396,5,67,0,0,2396,2397,5,75,0,0,2397,406,1,0,0,0,2398,2399,5,67, - 0,0,2399,2400,5,76,0,0,2400,2401,5,79,0,0,2401,2402,5,66,0,0,2402,408,1, - 0,0,0,2403,2404,5,67,0,0,2404,2405,5,76,0,0,2405,2406,5,79,0,0,2406,2407, - 5,83,0,0,2407,2408,5,69,0,0,2408,410,1,0,0,0,2409,2410,5,67,0,0,2410,2411, - 5,79,0,0,2411,2412,5,65,0,0,2412,2413,5,76,0,0,2413,2414,5,69,0,0,2414, - 2415,5,83,0,0,2415,2416,5,67,0,0,2416,2417,5,69,0,0,2417,412,1,0,0,0,2418, - 2419,5,67,0,0,2419,2420,5,79,0,0,2420,2421,5,76,0,0,2421,2422,5,76,0,0, - 2422,2423,5,65,0,0,2423,2424,5,84,0,0,2424,2425,5,69,0,0,2425,414,1,0,0, - 0,2426,2427,5,67,0,0,2427,2428,5,79,0,0,2428,2429,5,76,0,0,2429,2430,5, - 76,0,0,2430,2431,5,69,0,0,2431,2432,5,67,0,0,2432,2433,5,84,0,0,2433,416, - 1,0,0,0,2434,2435,5,67,0,0,2435,2436,5,79,0,0,2436,2437,5,76,0,0,2437,2438, - 5,85,0,0,2438,2439,5,77,0,0,2439,2440,5,78,0,0,2440,418,1,0,0,0,2441,2442, - 5,67,0,0,2442,2443,5,79,0,0,2443,2444,5,77,0,0,2444,2445,5,77,0,0,2445, - 2446,5,73,0,0,2446,2447,5,84,0,0,2447,420,1,0,0,0,2448,2449,5,67,0,0,2449, - 2450,5,79,0,0,2450,2451,5,78,0,0,2451,2452,5,78,0,0,2452,2453,5,69,0,0, - 2453,2454,5,67,0,0,2454,2455,5,84,0,0,2455,422,1,0,0,0,2456,2457,5,67,0, - 0,2457,2458,5,79,0,0,2458,2459,5,78,0,0,2459,2460,5,83,0,0,2460,2461,5, - 84,0,0,2461,2462,5,82,0,0,2462,2463,5,65,0,0,2463,2464,5,73,0,0,2464,2465, - 5,78,0,0,2465,2466,5,84,0,0,2466,424,1,0,0,0,2467,2468,5,67,0,0,2468,2469, - 5,79,0,0,2469,2470,5,78,0,0,2470,2471,5,84,0,0,2471,2472,5,65,0,0,2472, - 2473,5,73,0,0,2473,2474,5,78,0,0,2474,2475,5,83,0,0,2475,426,1,0,0,0,2476, - 2477,5,67,0,0,2477,2478,5,79,0,0,2478,2479,5,78,0,0,2479,2480,5,86,0,0, - 2480,2481,5,69,0,0,2481,2482,5,82,0,0,2482,2483,5,84,0,0,2483,428,1,0,0, - 0,2484,2485,5,67,0,0,2485,2486,5,79,0,0,2486,2487,5,85,0,0,2487,2488,5, - 78,0,0,2488,2489,5,84,0,0,2489,430,1,0,0,0,2490,2491,5,67,0,0,2491,2492, - 5,82,0,0,2492,2493,5,69,0,0,2493,2494,5,65,0,0,2494,2495,5,84,0,0,2495, - 2496,5,69,0,0,2496,432,1,0,0,0,2497,2498,5,67,0,0,2498,2499,5,82,0,0,2499, - 2500,5,79,0,0,2500,2501,5,83,0,0,2501,2502,5,83,0,0,2502,434,1,0,0,0,2503, - 2504,5,67,0,0,2504,2505,5,85,0,0,2505,2506,5,66,0,0,2506,2507,5,69,0,0, - 2507,436,1,0,0,0,2508,2509,5,67,0,0,2509,2510,5,85,0,0,2510,2511,5,82,0, - 0,2511,2512,5,82,0,0,2512,2513,5,69,0,0,2513,2514,5,78,0,0,2514,2515,5, - 84,0,0,2515,438,1,0,0,0,2516,2517,5,67,0,0,2517,2518,5,85,0,0,2518,2519, - 5,82,0,0,2519,2520,5,83,0,0,2520,2521,5,79,0,0,2521,2522,5,82,0,0,2522, - 440,1,0,0,0,2523,2524,5,67,0,0,2524,2525,5,89,0,0,2525,2526,5,67,0,0,2526, - 2527,5,76,0,0,2527,2528,5,69,0,0,2528,442,1,0,0,0,2529,2530,5,68,0,0,2530, - 2531,5,65,0,0,2531,2532,5,84,0,0,2532,2533,5,69,0,0,2533,444,1,0,0,0,2534, - 2535,5,68,0,0,2535,2536,5,65,0,0,2536,2537,5,84,0,0,2537,2538,5,69,0,0, - 2538,2539,5,84,0,0,2539,2540,5,73,0,0,2540,2541,5,77,0,0,2541,2542,5,69, - 0,0,2542,446,1,0,0,0,2543,2544,5,68,0,0,2544,2545,5,65,0,0,2545,2546,5, - 89,0,0,2546,448,1,0,0,0,2547,2548,5,68,0,0,2548,2549,5,69,0,0,2549,2550, - 5,67,0,0,2550,450,1,0,0,0,2551,2552,5,68,0,0,2552,2553,5,69,0,0,2553,2554, - 5,67,0,0,2554,2555,5,73,0,0,2555,2556,5,77,0,0,2556,2557,5,65,0,0,2557, - 2558,5,76,0,0,2558,452,1,0,0,0,2559,2560,5,68,0,0,2560,2561,5,69,0,0,2561, - 2562,5,67,0,0,2562,2563,5,76,0,0,2563,2564,5,65,0,0,2564,2565,5,82,0,0, - 2565,2566,5,69,0,0,2566,454,1,0,0,0,2567,2568,5,68,0,0,2568,2569,5,69,0, - 0,2569,2570,5,70,0,0,2570,2571,5,65,0,0,2571,2572,5,85,0,0,2572,2573,5, - 76,0,0,2573,2574,5,84,0,0,2574,456,1,0,0,0,2575,2576,5,68,0,0,2576,2577, - 5,69,0,0,2577,2578,5,70,0,0,2578,2579,5,73,0,0,2579,2580,5,78,0,0,2580, - 2581,5,69,0,0,2581,458,1,0,0,0,2582,2583,5,68,0,0,2583,2584,5,69,0,0,2584, - 2585,5,76,0,0,2585,2586,5,69,0,0,2586,2587,5,84,0,0,2587,2588,5,69,0,0, - 2588,460,1,0,0,0,2589,2590,5,68,0,0,2590,2591,5,69,0,0,2591,2592,5,83,0, - 0,2592,2593,5,67,0,0,2593,2594,5,82,0,0,2594,2595,5,73,0,0,2595,2596,5, - 66,0,0,2596,2597,5,69,0,0,2597,462,1,0,0,0,2598,2599,5,68,0,0,2599,2600, - 5,73,0,0,2600,2601,5,83,0,0,2601,2602,5,84,0,0,2602,2603,5,73,0,0,2603, - 2604,5,78,0,0,2604,2605,5,67,0,0,2605,2606,5,84,0,0,2606,464,1,0,0,0,2607, - 2608,5,68,0,0,2608,2609,5,79,0,0,2609,2610,5,85,0,0,2610,2611,5,66,0,0, - 2611,2612,5,76,0,0,2612,2613,5,69,0,0,2613,466,1,0,0,0,2614,2615,5,68,0, - 0,2615,2616,5,82,0,0,2616,2617,5,79,0,0,2617,2618,5,80,0,0,2618,468,1,0, - 0,0,2619,2620,5,69,0,0,2620,2621,5,65,0,0,2621,2622,5,67,0,0,2622,2623, - 5,72,0,0,2623,470,1,0,0,0,2624,2625,5,69,0,0,2625,2626,5,76,0,0,2626,2627, - 5,83,0,0,2627,2628,5,69,0,0,2628,472,1,0,0,0,2629,2630,5,69,0,0,2630,2631, - 5,78,0,0,2631,2632,5,68,0,0,2632,474,1,0,0,0,2633,2634,5,69,0,0,2634,2635, - 5,81,0,0,2635,2636,5,85,0,0,2636,2637,5,65,0,0,2637,2638,5,76,0,0,2638, - 2639,5,83,0,0,2639,476,1,0,0,0,2640,2641,5,69,0,0,2641,2642,5,88,0,0,2642, - 2643,5,67,0,0,2643,2644,5,69,0,0,2644,2645,5,80,0,0,2645,2646,5,84,0,0, - 2646,478,1,0,0,0,2647,2648,5,69,0,0,2648,2649,5,88,0,0,2649,2650,5,69,0, - 0,2650,2651,5,67,0,0,2651,2652,5,85,0,0,2652,2653,5,84,0,0,2653,2654,5, - 69,0,0,2654,480,1,0,0,0,2655,2656,5,69,0,0,2656,2657,5,88,0,0,2657,2658, - 5,73,0,0,2658,2659,5,83,0,0,2659,2660,5,84,0,0,2660,2661,5,83,0,0,2661, - 482,1,0,0,0,2662,2663,5,69,0,0,2663,2664,5,88,0,0,2664,2665,5,80,0,0,2665, - 2666,5,76,0,0,2666,2667,5,65,0,0,2667,2668,5,73,0,0,2668,2669,5,78,0,0, - 2669,484,1,0,0,0,2670,2671,5,69,0,0,2671,2672,5,88,0,0,2672,2673,5,84,0, - 0,2673,2674,5,69,0,0,2674,2675,5,82,0,0,2675,2676,5,78,0,0,2676,2677,5, - 65,0,0,2677,2678,5,76,0,0,2678,486,1,0,0,0,2679,2680,5,69,0,0,2680,2681, - 5,88,0,0,2681,2682,5,84,0,0,2682,2683,5,82,0,0,2683,2684,5,65,0,0,2684, - 2685,5,67,0,0,2685,2686,5,84,0,0,2686,488,1,0,0,0,2687,2688,5,70,0,0,2688, - 2689,5,65,0,0,2689,2690,5,76,0,0,2690,2691,5,83,0,0,2691,2692,5,69,0,0, - 2692,490,1,0,0,0,2693,2694,5,70,0,0,2694,2695,5,76,0,0,2695,2696,5,79,0, - 0,2696,2697,5,65,0,0,2697,2698,5,84,0,0,2698,492,1,0,0,0,2699,2700,5,70, - 0,0,2700,2701,5,79,0,0,2701,2702,5,82,0,0,2702,494,1,0,0,0,2703,2704,5, - 70,0,0,2704,2705,5,82,0,0,2705,2706,5,79,0,0,2706,2707,5,77,0,0,2707,496, - 1,0,0,0,2708,2709,5,70,0,0,2709,2710,5,85,0,0,2710,2711,5,76,0,0,2711,2712, - 5,76,0,0,2712,498,1,0,0,0,2713,2714,5,70,0,0,2714,2715,5,85,0,0,2715,2716, - 5,78,0,0,2716,2717,5,67,0,0,2717,2718,5,84,0,0,2718,2719,5,73,0,0,2719, - 2720,5,79,0,0,2720,2721,5,78,0,0,2721,500,1,0,0,0,2722,2723,5,71,0,0,2723, - 2724,5,76,0,0,2724,2725,5,79,0,0,2725,2726,5,66,0,0,2726,2727,5,65,0,0, - 2727,2728,5,76,0,0,2728,502,1,0,0,0,2729,2730,5,71,0,0,2730,2731,5,82,0, - 0,2731,2732,5,65,0,0,2732,2733,5,78,0,0,2733,2734,5,84,0,0,2734,504,1,0, - 0,0,2735,2736,5,71,0,0,2736,2737,5,82,0,0,2737,2738,5,79,0,0,2738,2739, - 5,85,0,0,2739,2740,5,80,0,0,2740,506,1,0,0,0,2741,2742,5,71,0,0,2742,2743, - 5,82,0,0,2743,2744,5,79,0,0,2744,2745,5,85,0,0,2745,2746,5,80,0,0,2746, - 2747,5,73,0,0,2747,2748,5,78,0,0,2748,2749,5,71,0,0,2749,508,1,0,0,0,2750, - 2751,5,71,0,0,2751,2752,5,82,0,0,2752,2753,5,79,0,0,2753,2754,5,85,0,0, - 2754,2755,5,80,0,0,2755,2756,5,83,0,0,2756,510,1,0,0,0,2757,2758,5,72,0, - 0,2758,2759,5,65,0,0,2759,2760,5,86,0,0,2760,2761,5,73,0,0,2761,2762,5, - 78,0,0,2762,2763,5,71,0,0,2763,512,1,0,0,0,2764,2765,5,72,0,0,2765,2766, - 5,79,0,0,2766,2767,5,85,0,0,2767,2768,5,82,0,0,2768,514,1,0,0,0,2769,2770, - 5,73,0,0,2770,2771,5,77,0,0,2771,2772,5,80,0,0,2772,2773,5,79,0,0,2773, - 2774,5,82,0,0,2774,2775,5,84,0,0,2775,516,1,0,0,0,2776,2777,5,73,0,0,2777, - 2778,5,78,0,0,2778,518,1,0,0,0,2779,2780,5,73,0,0,2780,2781,5,78,0,0,2781, - 2782,5,67,0,0,2782,2783,5,76,0,0,2783,2784,5,85,0,0,2784,2785,5,68,0,0, - 2785,2786,5,73,0,0,2786,2787,5,78,0,0,2787,2788,5,71,0,0,2788,520,1,0,0, - 0,2789,2790,5,73,0,0,2790,2791,5,78,0,0,2791,2792,5,78,0,0,2792,2793,5, - 69,0,0,2793,2794,5,82,0,0,2794,522,1,0,0,0,2795,2796,5,73,0,0,2796,2797, - 5,78,0,0,2797,2798,5,79,0,0,2798,2799,5,85,0,0,2799,2800,5,84,0,0,2800, - 524,1,0,0,0,2801,2802,5,73,0,0,2802,2803,5,78,0,0,2803,2804,5,83,0,0,2804, - 2805,5,69,0,0,2805,2806,5,82,0,0,2806,2807,5,84,0,0,2807,526,1,0,0,0,2808, - 2809,5,73,0,0,2809,2810,5,78,0,0,2810,2811,5,84,0,0,2811,528,1,0,0,0,2812, - 2813,5,73,0,0,2813,2814,5,78,0,0,2814,2815,5,84,0,0,2815,2816,5,69,0,0, - 2816,2817,5,71,0,0,2817,2818,5,69,0,0,2818,2819,5,82,0,0,2819,530,1,0,0, - 0,2820,2821,5,73,0,0,2821,2822,5,78,0,0,2822,2823,5,84,0,0,2823,2824,5, - 69,0,0,2824,2825,5,82,0,0,2825,2826,5,83,0,0,2826,2827,5,69,0,0,2827,2828, - 5,67,0,0,2828,2829,5,84,0,0,2829,532,1,0,0,0,2830,2831,5,73,0,0,2831,2832, - 5,78,0,0,2832,2833,5,84,0,0,2833,2834,5,69,0,0,2834,2835,5,82,0,0,2835, - 2836,5,86,0,0,2836,2837,5,65,0,0,2837,2838,5,76,0,0,2838,534,1,0,0,0,2839, - 2840,5,73,0,0,2840,2841,5,78,0,0,2841,2842,5,84,0,0,2842,2843,5,79,0,0, - 2843,536,1,0,0,0,2844,2845,5,73,0,0,2845,2846,5,83,0,0,2846,538,1,0,0,0, - 2847,2848,5,74,0,0,2848,2849,5,79,0,0,2849,2850,5,73,0,0,2850,2851,5,78, - 0,0,2851,540,1,0,0,0,2852,2853,5,76,0,0,2853,2854,5,65,0,0,2854,2855,5, - 71,0,0,2855,542,1,0,0,0,2856,2857,5,76,0,0,2857,2858,5,65,0,0,2858,2859, - 5,78,0,0,2859,2860,5,71,0,0,2860,2861,5,85,0,0,2861,2862,5,65,0,0,2862, - 2863,5,71,0,0,2863,2864,5,69,0,0,2864,544,1,0,0,0,2865,2866,5,76,0,0,2866, - 2867,5,65,0,0,2867,2868,5,84,0,0,2868,2869,5,69,0,0,2869,2870,5,82,0,0, - 2870,2871,5,65,0,0,2871,2872,5,76,0,0,2872,546,1,0,0,0,2873,2874,5,76,0, - 0,2874,2875,5,69,0,0,2875,2876,5,65,0,0,2876,2877,5,68,0,0,2877,2878,5, - 73,0,0,2878,2879,5,78,0,0,2879,2880,5,71,0,0,2880,548,1,0,0,0,2881,2882, - 5,76,0,0,2882,2883,5,69,0,0,2883,2884,5,70,0,0,2884,2885,5,84,0,0,2885, - 550,1,0,0,0,2886,2887,5,76,0,0,2887,2888,5,73,0,0,2888,2889,5,75,0,0,2889, - 2890,5,69,0,0,2890,552,1,0,0,0,2891,2892,5,76,0,0,2892,2893,5,73,0,0,2893, - 2894,5,77,0,0,2894,2895,5,73,0,0,2895,2896,5,84,0,0,2896,554,1,0,0,0,2897, - 2898,5,76,0,0,2898,2899,5,79,0,0,2899,2900,5,67,0,0,2900,2901,5,65,0,0, - 2901,2902,5,76,0,0,2902,556,1,0,0,0,2903,2904,5,77,0,0,2904,2905,5,65,0, - 0,2905,2906,5,84,0,0,2906,2907,5,67,0,0,2907,2908,5,72,0,0,2908,558,1,0, - 0,0,2909,2910,5,77,0,0,2910,2911,5,65,0,0,2911,2912,5,84,0,0,2912,2913, - 5,67,0,0,2913,2914,5,72,0,0,2914,2915,5,95,0,0,2915,2916,5,82,0,0,2916, - 2917,5,69,0,0,2917,2918,5,67,0,0,2918,2919,5,79,0,0,2919,2920,5,71,0,0, - 2920,2921,5,78,0,0,2921,2922,5,73,0,0,2922,2923,5,90,0,0,2923,2924,5,69, - 0,0,2924,560,1,0,0,0,2925,2926,5,77,0,0,2926,2927,5,69,0,0,2927,2928,5, - 65,0,0,2928,2929,5,83,0,0,2929,2930,5,85,0,0,2930,2931,5,82,0,0,2931,2932, - 5,69,0,0,2932,2933,5,83,0,0,2933,562,1,0,0,0,2934,2935,5,77,0,0,2935,2936, - 5,69,0,0,2936,2937,5,82,0,0,2937,2938,5,71,0,0,2938,2939,5,69,0,0,2939, - 564,1,0,0,0,2940,2941,5,77,0,0,2941,2942,5,69,0,0,2942,2943,5,84,0,0,2943, - 2944,5,65,0,0,2944,2945,5,68,0,0,2945,2946,5,65,0,0,2946,2947,5,84,0,0, - 2947,2948,5,65,0,0,2948,566,1,0,0,0,2949,2950,5,77,0,0,2950,2951,5,73,0, - 0,2951,2952,5,78,0,0,2952,2953,5,85,0,0,2953,2954,5,83,0,0,2954,568,1,0, - 0,0,2955,2956,5,77,0,0,2956,2957,5,73,0,0,2957,2958,5,78,0,0,2958,2959, - 5,85,0,0,2959,2960,5,84,0,0,2960,2961,5,69,0,0,2961,570,1,0,0,0,2962,2963, - 5,77,0,0,2963,2964,5,79,0,0,2964,2965,5,68,0,0,2965,2966,5,73,0,0,2966, - 2967,5,70,0,0,2967,2968,5,73,0,0,2968,2969,5,69,0,0,2969,2970,5,83,0,0, - 2970,572,1,0,0,0,2971,2972,5,77,0,0,2972,2973,5,79,0,0,2973,2974,5,68,0, - 0,2974,2975,5,85,0,0,2975,2976,5,76,0,0,2976,2977,5,69,0,0,2977,574,1,0, - 0,0,2978,2979,5,77,0,0,2979,2980,5,79,0,0,2980,2981,5,78,0,0,2981,2982, - 5,84,0,0,2982,2983,5,72,0,0,2983,576,1,0,0,0,2984,2985,5,77,0,0,2985,2986, - 5,85,0,0,2986,2987,5,76,0,0,2987,2988,5,84,0,0,2988,2989,5,73,0,0,2989, - 2990,5,83,0,0,2990,2991,5,69,0,0,2991,2992,5,84,0,0,2992,578,1,0,0,0,2993, - 2994,5,78,0,0,2994,2995,5,65,0,0,2995,2996,5,84,0,0,2996,2997,5,85,0,0, - 2997,2998,5,82,0,0,2998,2999,5,65,0,0,2999,3000,5,76,0,0,3000,580,1,0,0, - 0,3001,3002,5,78,0,0,3002,3003,5,69,0,0,3003,3004,5,88,0,0,3004,3005,5, - 84,0,0,3005,582,1,0,0,0,3006,3007,5,78,0,0,3007,3008,5,79,0,0,3008,584, - 1,0,0,0,3009,3010,5,78,0,0,3010,3011,5,79,0,0,3011,3012,5,78,0,0,3012,3013, - 5,69,0,0,3013,586,1,0,0,0,3014,3015,5,78,0,0,3015,3016,5,79,0,0,3016,3017, - 5,84,0,0,3017,588,1,0,0,0,3018,3019,5,78,0,0,3019,3020,5,85,0,0,3020,3021, - 5,76,0,0,3021,3022,5,76,0,0,3022,590,1,0,0,0,3023,3024,5,78,0,0,3024,3025, - 5,85,0,0,3025,3026,5,77,0,0,3026,3027,5,69,0,0,3027,3028,5,82,0,0,3028, - 3029,5,73,0,0,3029,3030,5,67,0,0,3030,592,1,0,0,0,3031,3032,5,79,0,0,3032, - 3033,5,70,0,0,3033,594,1,0,0,0,3034,3035,5,79,0,0,3035,3036,5,70,0,0,3036, - 3037,5,70,0,0,3037,3038,5,83,0,0,3038,3039,5,69,0,0,3039,3040,5,84,0,0, - 3040,596,1,0,0,0,3041,3042,5,79,0,0,3042,3043,5,78,0,0,3043,598,1,0,0,0, - 3044,3045,5,79,0,0,3045,3046,5,78,0,0,3046,3047,5,69,0,0,3047,600,1,0,0, - 0,3048,3049,5,79,0,0,3049,3050,5,82,0,0,3050,602,1,0,0,0,3051,3052,5,79, - 0,0,3052,3053,5,82,0,0,3053,3054,5,68,0,0,3054,3055,5,69,0,0,3055,3056, - 5,82,0,0,3056,604,1,0,0,0,3057,3058,5,79,0,0,3058,3059,5,85,0,0,3059,3060, - 5,84,0,0,3060,606,1,0,0,0,3061,3062,5,79,0,0,3062,3063,5,85,0,0,3063,3064, - 5,84,0,0,3064,3065,5,69,0,0,3065,3066,5,82,0,0,3066,608,1,0,0,0,3067,3068, - 5,79,0,0,3068,3069,5,86,0,0,3069,3070,5,69,0,0,3070,3071,5,82,0,0,3071, - 610,1,0,0,0,3072,3073,5,79,0,0,3073,3074,5,86,0,0,3074,3075,5,69,0,0,3075, - 3076,5,82,0,0,3076,3077,5,76,0,0,3077,3078,5,65,0,0,3078,3079,5,89,0,0, - 3079,612,1,0,0,0,3080,3081,5,80,0,0,3081,3082,5,65,0,0,3082,3083,5,82,0, - 0,3083,3084,5,84,0,0,3084,3085,5,73,0,0,3085,3086,5,84,0,0,3086,3087,5, - 73,0,0,3087,3088,5,79,0,0,3088,3089,5,78,0,0,3089,614,1,0,0,0,3090,3091, - 5,80,0,0,3091,3092,5,65,0,0,3092,3093,5,84,0,0,3093,3094,5,84,0,0,3094, - 3095,5,69,0,0,3095,3096,5,82,0,0,3096,3097,5,78,0,0,3097,616,1,0,0,0,3098, - 3099,5,80,0,0,3099,3100,5,69,0,0,3100,3101,5,82,0,0,3101,618,1,0,0,0,3102, - 3103,5,80,0,0,3103,3104,5,69,0,0,3104,3105,5,82,0,0,3105,3106,5,67,0,0, - 3106,3107,5,69,0,0,3107,3108,5,78,0,0,3108,3109,5,84,0,0,3109,620,1,0,0, - 0,3110,3111,5,80,0,0,3111,3112,5,69,0,0,3112,3113,5,82,0,0,3113,3114,5, - 73,0,0,3114,3115,5,79,0,0,3115,3116,5,68,0,0,3116,622,1,0,0,0,3117,3118, - 5,80,0,0,3118,3119,5,79,0,0,3119,3120,5,83,0,0,3120,3121,5,73,0,0,3121, - 3122,5,84,0,0,3122,3123,5,73,0,0,3123,3124,5,79,0,0,3124,3125,5,78,0,0, - 3125,624,1,0,0,0,3126,3127,5,80,0,0,3127,3128,5,82,0,0,3128,3129,5,73,0, - 0,3129,3130,5,77,0,0,3130,3131,5,65,0,0,3131,3132,5,82,0,0,3132,3133,5, - 89,0,0,3133,626,1,0,0,0,3134,3135,5,82,0,0,3135,3136,5,65,0,0,3136,3137, - 5,78,0,0,3137,3138,5,71,0,0,3138,3139,5,69,0,0,3139,628,1,0,0,0,3140,3141, - 5,82,0,0,3141,3142,5,65,0,0,3142,3143,5,78,0,0,3143,3144,5,75,0,0,3144, - 630,1,0,0,0,3145,3146,5,82,0,0,3146,3147,5,69,0,0,3147,3148,5,83,0,0,3148, - 3149,5,69,0,0,3149,3150,5,84,0,0,3150,632,1,0,0,0,3151,3152,5,82,0,0,3152, - 3153,5,69,0,0,3153,3154,5,86,0,0,3154,3155,5,79,0,0,3155,3156,5,75,0,0, - 3156,3157,5,69,0,0,3157,634,1,0,0,0,3158,3159,5,82,0,0,3159,3160,5,73,0, - 0,3160,3161,5,71,0,0,3161,3162,5,72,0,0,3162,3163,5,84,0,0,3163,636,1,0, - 0,0,3164,3165,5,82,0,0,3165,3166,5,76,0,0,3166,3167,5,73,0,0,3167,3168, - 5,75,0,0,3168,3169,5,69,0,0,3169,638,1,0,0,0,3170,3171,5,82,0,0,3171,3172, - 5,79,0,0,3172,3173,5,76,0,0,3173,3174,5,76,0,0,3174,3175,5,66,0,0,3175, - 3176,5,65,0,0,3176,3177,5,67,0,0,3177,3178,5,75,0,0,3178,640,1,0,0,0,3179, - 3180,5,82,0,0,3180,3181,5,79,0,0,3181,3182,5,76,0,0,3182,3183,5,76,0,0, - 3183,3184,5,85,0,0,3184,3185,5,80,0,0,3185,642,1,0,0,0,3186,3187,5,82,0, - 0,3187,3188,5,79,0,0,3188,3189,5,87,0,0,3189,644,1,0,0,0,3190,3191,5,82, - 0,0,3191,3192,5,79,0,0,3192,3193,5,87,0,0,3193,3194,5,83,0,0,3194,646,1, - 0,0,0,3195,3196,5,83,0,0,3196,3197,5,69,0,0,3197,3198,5,67,0,0,3198,3199, - 5,79,0,0,3199,3200,5,78,0,0,3200,3201,5,68,0,0,3201,648,1,0,0,0,3202,3203, - 5,83,0,0,3203,3204,5,69,0,0,3204,3205,5,76,0,0,3205,3206,5,69,0,0,3206, - 3207,5,67,0,0,3207,3208,5,84,0,0,3208,650,1,0,0,0,3209,3210,5,83,0,0,3210, - 3211,5,69,0,0,3211,3212,5,84,0,0,3212,652,1,0,0,0,3213,3214,5,83,0,0,3214, - 3215,5,72,0,0,3215,3216,5,79,0,0,3216,3217,5,87,0,0,3217,654,1,0,0,0,3218, - 3219,5,83,0,0,3219,3220,5,75,0,0,3220,3221,5,73,0,0,3221,3222,5,80,0,0, - 3222,656,1,0,0,0,3223,3224,5,83,0,0,3224,3225,5,77,0,0,3225,3226,5,65,0, - 0,3226,3227,5,76,0,0,3227,3228,5,76,0,0,3228,3229,5,73,0,0,3229,3230,5, - 78,0,0,3230,3231,5,84,0,0,3231,658,1,0,0,0,3232,3233,5,83,0,0,3233,3234, - 5,84,0,0,3234,3235,5,65,0,0,3235,3236,5,82,0,0,3236,3237,5,84,0,0,3237, - 660,1,0,0,0,3238,3239,5,83,0,0,3239,3240,5,84,0,0,3240,3241,5,65,0,0,3241, - 3242,5,84,0,0,3242,3243,5,73,0,0,3243,3244,5,67,0,0,3244,662,1,0,0,0,3245, - 3246,5,83,0,0,3246,3247,5,85,0,0,3247,3248,5,66,0,0,3248,3249,5,83,0,0, - 3249,3250,5,84,0,0,3250,3251,5,82,0,0,3251,3252,5,73,0,0,3252,3253,5,78, - 0,0,3253,3254,5,71,0,0,3254,664,1,0,0,0,3255,3256,5,83,0,0,3256,3257,5, - 85,0,0,3257,3258,5,77,0,0,3258,666,1,0,0,0,3259,3260,5,83,0,0,3260,3261, - 5,89,0,0,3261,3262,5,83,0,0,3262,3263,5,84,0,0,3263,3264,5,69,0,0,3264, - 3265,5,77,0,0,3265,668,1,0,0,0,3266,3267,5,83,0,0,3267,3268,5,89,0,0,3268, - 3269,5,83,0,0,3269,3270,5,84,0,0,3270,3271,5,69,0,0,3271,3272,5,77,0,0, - 3272,3273,5,95,0,0,3273,3274,5,84,0,0,3274,3275,5,73,0,0,3275,3276,5,77, - 0,0,3276,3277,5,69,0,0,3277,670,1,0,0,0,3278,3279,5,83,0,0,3279,3280,5, - 89,0,0,3280,3281,5,83,0,0,3281,3282,5,84,0,0,3282,3283,5,69,0,0,3283,3284, - 5,77,0,0,3284,3285,5,95,0,0,3285,3286,5,85,0,0,3286,3287,5,83,0,0,3287, - 3288,5,69,0,0,3288,3289,5,82,0,0,3289,672,1,0,0,0,3290,3291,5,84,0,0,3291, - 3292,5,65,0,0,3292,3293,5,66,0,0,3293,3294,5,76,0,0,3294,3295,5,69,0,0, - 3295,674,1,0,0,0,3296,3297,5,84,0,0,3297,3298,5,65,0,0,3298,3299,5,66,0, - 0,3299,3300,5,76,0,0,3300,3301,5,69,0,0,3301,3302,5,83,0,0,3302,3303,5, - 65,0,0,3303,3304,5,77,0,0,3304,3305,5,80,0,0,3305,3306,5,76,0,0,3306,3307, - 5,69,0,0,3307,676,1,0,0,0,3308,3309,5,84,0,0,3309,3310,5,72,0,0,3310,3311, - 5,69,0,0,3311,3312,5,78,0,0,3312,678,1,0,0,0,3313,3314,5,84,0,0,3314,3315, - 5,73,0,0,3315,3316,5,77,0,0,3316,3317,5,69,0,0,3317,680,1,0,0,0,3318,3319, - 5,84,0,0,3319,3320,5,73,0,0,3320,3321,5,77,0,0,3321,3322,5,69,0,0,3322, - 3323,5,83,0,0,3323,3324,5,84,0,0,3324,3325,5,65,0,0,3325,3326,5,77,0,0, - 3326,3327,5,80,0,0,3327,682,1,0,0,0,3328,3329,5,84,0,0,3329,3330,5,73,0, - 0,3330,3331,5,78,0,0,3331,3332,5,89,0,0,3332,3333,5,73,0,0,3333,3334,5, - 78,0,0,3334,3335,5,84,0,0,3335,684,1,0,0,0,3336,3337,5,84,0,0,3337,3338, - 5,79,0,0,3338,686,1,0,0,0,3339,3340,5,84,0,0,3340,3341,5,82,0,0,3341,3342, - 5,85,0,0,3342,3343,5,69,0,0,3343,688,1,0,0,0,3344,3345,5,84,0,0,3345,3346, - 5,82,0,0,3346,3347,5,85,0,0,3347,3348,5,78,0,0,3348,3349,5,67,0,0,3349, - 3350,5,65,0,0,3350,3351,5,84,0,0,3351,3352,5,69,0,0,3352,690,1,0,0,0,3353, - 3354,5,85,0,0,3354,3355,5,78,0,0,3355,3356,5,73,0,0,3356,3357,5,79,0,0, - 3357,3358,5,78,0,0,3358,692,1,0,0,0,3359,3360,5,85,0,0,3360,3361,5,78,0, - 0,3361,3362,5,73,0,0,3362,3363,5,81,0,0,3363,3364,5,85,0,0,3364,3365,5, - 69,0,0,3365,694,1,0,0,0,3366,3367,5,85,0,0,3367,3368,5,78,0,0,3368,3369, - 5,75,0,0,3369,3370,5,78,0,0,3370,3371,5,79,0,0,3371,3372,5,87,0,0,3372, - 3373,5,78,0,0,3373,696,1,0,0,0,3374,3375,5,85,0,0,3375,3376,5,78,0,0,3376, - 3377,5,78,0,0,3377,3378,5,69,0,0,3378,3379,5,83,0,0,3379,3380,5,84,0,0, - 3380,698,1,0,0,0,3381,3382,5,85,0,0,3382,3383,5,80,0,0,3383,3384,5,80,0, - 0,3384,3385,5,69,0,0,3385,3386,5,82,0,0,3386,700,1,0,0,0,3387,3388,5,85, - 0,0,3388,3389,5,80,0,0,3389,3390,5,83,0,0,3390,3391,5,69,0,0,3391,3392, - 5,82,0,0,3392,3393,5,84,0,0,3393,702,1,0,0,0,3394,3395,5,85,0,0,3395,3396, - 5,83,0,0,3396,3397,5,69,0,0,3397,3398,5,82,0,0,3398,704,1,0,0,0,3399,3400, - 5,85,0,0,3400,3401,5,83,0,0,3401,3402,5,73,0,0,3402,3403,5,78,0,0,3403, - 3404,5,71,0,0,3404,706,1,0,0,0,3405,3406,5,86,0,0,3406,3407,5,65,0,0,3407, - 3408,5,76,0,0,3408,3409,5,85,0,0,3409,3410,5,69,0,0,3410,708,1,0,0,0,3411, - 3412,5,86,0,0,3412,3413,5,65,0,0,3413,3414,5,76,0,0,3414,3415,5,85,0,0, - 3415,3416,5,69,0,0,3416,3417,5,83,0,0,3417,710,1,0,0,0,3418,3419,5,86,0, - 0,3419,3420,5,65,0,0,3420,3421,5,82,0,0,3421,3422,5,66,0,0,3422,3423,5, - 73,0,0,3423,3424,5,78,0,0,3424,3425,5,65,0,0,3425,3426,5,82,0,0,3426,3427, - 5,89,0,0,3427,712,1,0,0,0,3428,3429,5,86,0,0,3429,3430,5,65,0,0,3430,3431, - 5,82,0,0,3431,3432,5,67,0,0,3432,3433,5,72,0,0,3433,3434,5,65,0,0,3434, - 3435,5,82,0,0,3435,714,1,0,0,0,3436,3437,5,87,0,0,3437,3438,5,72,0,0,3438, - 3439,5,69,0,0,3439,3440,5,78,0,0,3440,716,1,0,0,0,3441,3442,5,87,0,0,3442, - 3443,5,72,0,0,3443,3444,5,69,0,0,3444,3445,5,82,0,0,3445,3446,5,69,0,0, - 3446,718,1,0,0,0,3447,3448,5,87,0,0,3448,3449,5,73,0,0,3449,3450,5,78,0, - 0,3450,3451,5,68,0,0,3451,3452,5,79,0,0,3452,3453,5,87,0,0,3453,720,1,0, - 0,0,3454,3455,5,87,0,0,3455,3456,5,73,0,0,3456,3457,5,84,0,0,3457,3458, - 5,72,0,0,3458,722,1,0,0,0,3459,3460,5,87,0,0,3460,3461,5,73,0,0,3461,3462, - 5,84,0,0,3462,3463,5,72,0,0,3463,3464,5,73,0,0,3464,3465,5,78,0,0,3465, - 724,1,0,0,0,3466,3467,5,87,0,0,3467,3468,5,73,0,0,3468,3469,5,84,0,0,3469, - 3470,5,72,0,0,3470,3471,5,79,0,0,3471,3472,5,85,0,0,3472,3473,5,84,0,0, - 3473,726,1,0,0,0,3474,3475,5,89,0,0,3475,3476,5,69,0,0,3476,3477,5,65,0, - 0,3477,3478,5,82,0,0,3478,728,1,0,0,0,3479,3480,5,61,0,0,3480,730,1,0,0, - 0,3481,3482,5,62,0,0,3482,732,1,0,0,0,3483,3484,5,60,0,0,3484,734,1,0,0, - 0,3485,3486,5,33,0,0,3486,736,1,0,0,0,3487,3488,5,126,0,0,3488,738,1,0, - 0,0,3489,3490,5,124,0,0,3490,740,1,0,0,0,3491,3492,5,38,0,0,3492,742,1, - 0,0,0,3493,3494,5,94,0,0,3494,744,1,0,0,0,3495,3496,5,46,0,0,3496,746,1, - 0,0,0,3497,3498,5,91,0,0,3498,748,1,0,0,0,3499,3500,5,93,0,0,3500,750,1, - 0,0,0,3501,3502,5,40,0,0,3502,752,1,0,0,0,3503,3504,5,41,0,0,3504,754,1, - 0,0,0,3505,3506,5,123,0,0,3506,756,1,0,0,0,3507,3508,5,125,0,0,3508,758, - 1,0,0,0,3509,3510,5,44,0,0,3510,760,1,0,0,0,3511,3512,5,59,0,0,3512,762, - 1,0,0,0,3513,3514,5,64,0,0,3514,764,1,0,0,0,3515,3516,5,39,0,0,3516,766, - 1,0,0,0,3517,3518,5,34,0,0,3518,768,1,0,0,0,3519,3520,5,96,0,0,3520,770, - 1,0,0,0,3521,3522,5,58,0,0,3522,772,1,0,0,0,3523,3524,5,42,0,0,3524,774, - 1,0,0,0,3525,3526,5,95,0,0,3526,776,1,0,0,0,3527,3528,5,45,0,0,3528,778, - 1,0,0,0,3529,3530,5,43,0,0,3530,780,1,0,0,0,3531,3532,5,37,0,0,3532,782, - 1,0,0,0,3533,3534,5,124,0,0,3534,3535,5,124,0,0,3535,784,1,0,0,0,3536,3537, - 5,45,0,0,3537,3538,5,45,0,0,3538,786,1,0,0,0,3539,3540,5,47,0,0,3540,788, - 1,0,0,0,3541,3542,5,63,0,0,3542,790,1,0,0,0,3543,3544,5,61,0,0,3544,3545, - 5,62,0,0,3545,792,1,0,0,0,3546,3550,3,817,408,0,3547,3550,3,819,409,0,3548, - 3550,3,823,411,0,3549,3546,1,0,0,0,3549,3547,1,0,0,0,3549,3548,1,0,0,0, - 3550,794,1,0,0,0,3551,3553,3,813,406,0,3552,3551,1,0,0,0,3553,3554,1,0, - 0,0,3554,3552,1,0,0,0,3554,3555,1,0,0,0,3555,796,1,0,0,0,3556,3558,3,813, - 406,0,3557,3556,1,0,0,0,3558,3559,1,0,0,0,3559,3557,1,0,0,0,3559,3560,1, - 0,0,0,3560,3562,1,0,0,0,3561,3557,1,0,0,0,3561,3562,1,0,0,0,3562,3563,1, - 0,0,0,3563,3565,5,46,0,0,3564,3566,3,813,406,0,3565,3564,1,0,0,0,3566,3567, - 1,0,0,0,3567,3565,1,0,0,0,3567,3568,1,0,0,0,3568,3600,1,0,0,0,3569,3571, - 3,813,406,0,3570,3569,1,0,0,0,3571,3572,1,0,0,0,3572,3570,1,0,0,0,3572, - 3573,1,0,0,0,3573,3574,1,0,0,0,3574,3575,5,46,0,0,3575,3576,3,809,404,0, - 3576,3600,1,0,0,0,3577,3579,3,813,406,0,3578,3577,1,0,0,0,3579,3580,1,0, - 0,0,3580,3578,1,0,0,0,3580,3581,1,0,0,0,3581,3583,1,0,0,0,3582,3578,1,0, - 0,0,3582,3583,1,0,0,0,3583,3584,1,0,0,0,3584,3586,5,46,0,0,3585,3587,3, - 813,406,0,3586,3585,1,0,0,0,3587,3588,1,0,0,0,3588,3586,1,0,0,0,3588,3589, - 1,0,0,0,3589,3590,1,0,0,0,3590,3591,3,809,404,0,3591,3600,1,0,0,0,3592, - 3594,3,813,406,0,3593,3592,1,0,0,0,3594,3595,1,0,0,0,3595,3593,1,0,0,0, - 3595,3596,1,0,0,0,3596,3597,1,0,0,0,3597,3598,3,809,404,0,3598,3600,1,0, - 0,0,3599,3561,1,0,0,0,3599,3570,1,0,0,0,3599,3582,1,0,0,0,3599,3593,1,0, - 0,0,3600,798,1,0,0,0,3601,3602,3,821,410,0,3602,800,1,0,0,0,3603,3604,3, - 811,405,0,3604,802,1,0,0,0,3605,3606,3,805,402,0,3606,804,1,0,0,0,3607, - 3611,7,2,0,0,3608,3610,8,3,0,0,3609,3608,1,0,0,0,3610,3613,1,0,0,0,3611, - 3609,1,0,0,0,3611,3612,1,0,0,0,3612,3615,1,0,0,0,3613,3611,1,0,0,0,3614, - 3607,1,0,0,0,3615,3616,1,0,0,0,3616,3614,1,0,0,0,3616,3617,1,0,0,0,3617, - 806,1,0,0,0,3618,3626,5,96,0,0,3619,3620,5,92,0,0,3620,3625,9,0,0,0,3621, - 3622,5,96,0,0,3622,3625,5,96,0,0,3623,3625,8,4,0,0,3624,3619,1,0,0,0,3624, - 3621,1,0,0,0,3624,3623,1,0,0,0,3625,3628,1,0,0,0,3626,3624,1,0,0,0,3626, - 3627,1,0,0,0,3627,3629,1,0,0,0,3628,3626,1,0,0,0,3629,3630,5,96,0,0,3630, - 808,1,0,0,0,3631,3633,5,69,0,0,3632,3634,7,5,0,0,3633,3632,1,0,0,0,3633, - 3634,1,0,0,0,3634,3636,1,0,0,0,3635,3637,3,813,406,0,3636,3635,1,0,0,0, - 3637,3638,1,0,0,0,3638,3636,1,0,0,0,3638,3639,1,0,0,0,3639,810,1,0,0,0, - 3640,3642,7,6,0,0,3641,3640,1,0,0,0,3642,3645,1,0,0,0,3643,3644,1,0,0,0, - 3643,3641,1,0,0,0,3644,3647,1,0,0,0,3645,3643,1,0,0,0,3646,3648,7,7,0,0, - 3647,3646,1,0,0,0,3648,3649,1,0,0,0,3649,3650,1,0,0,0,3649,3647,1,0,0,0, - 3650,3654,1,0,0,0,3651,3653,7,6,0,0,3652,3651,1,0,0,0,3653,3656,1,0,0,0, - 3654,3652,1,0,0,0,3654,3655,1,0,0,0,3655,812,1,0,0,0,3656,3654,1,0,0,0, - 3657,3658,7,8,0,0,3658,814,1,0,0,0,3659,3660,7,9,0,0,3660,816,1,0,0,0,3661, - 3669,5,34,0,0,3662,3663,5,92,0,0,3663,3668,9,0,0,0,3664,3665,5,34,0,0,3665, - 3668,5,34,0,0,3666,3668,8,10,0,0,3667,3662,1,0,0,0,3667,3664,1,0,0,0,3667, - 3666,1,0,0,0,3668,3671,1,0,0,0,3669,3667,1,0,0,0,3669,3670,1,0,0,0,3670, - 3672,1,0,0,0,3671,3669,1,0,0,0,3672,3673,5,34,0,0,3673,818,1,0,0,0,3674, - 3682,5,39,0,0,3675,3676,5,92,0,0,3676,3681,9,0,0,0,3677,3678,5,39,0,0,3678, - 3681,5,39,0,0,3679,3681,8,11,0,0,3680,3675,1,0,0,0,3680,3677,1,0,0,0,3680, - 3679,1,0,0,0,3681,3684,1,0,0,0,3682,3680,1,0,0,0,3682,3683,1,0,0,0,3683, - 3685,1,0,0,0,3684,3682,1,0,0,0,3685,3686,5,39,0,0,3686,820,1,0,0,0,3687, - 3688,5,66,0,0,3688,3690,5,39,0,0,3689,3691,7,12,0,0,3690,3689,1,0,0,0,3691, - 3692,1,0,0,0,3692,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3694,1,0,0,0,3694, - 3695,5,39,0,0,3695,822,1,0,0,0,3696,3704,5,96,0,0,3697,3698,5,92,0,0,3698, - 3703,9,0,0,0,3699,3700,5,96,0,0,3700,3703,5,96,0,0,3701,3703,8,4,0,0,3702, - 3697,1,0,0,0,3702,3699,1,0,0,0,3702,3701,1,0,0,0,3703,3706,1,0,0,0,3704, - 3702,1,0,0,0,3704,3705,1,0,0,0,3705,3707,1,0,0,0,3706,3704,1,0,0,0,3707, - 3708,5,96,0,0,3708,824,1,0,0,0,37,0,828,838,849,854,858,862,868,872,874, - 3549,3554,3559,3561,3567,3572,3580,3582,3588,3595,3599,3611,3616,3624,3626, - 3633,3638,3643,3649,3654,3667,3669,3680,3682,3692,3702,3704,1,0,1,0]; + 1579,5,84,0,0,1579,1580,5,69,0,0,1580,184,1,0,0,0,1581,1582,5,79,0,0,1582, + 1583,5,86,0,0,1583,1584,5,69,0,0,1584,1585,5,82,0,0,1585,1586,5,87,0,0, + 1586,1587,5,82,0,0,1587,1588,5,73,0,0,1588,1589,5,84,0,0,1589,1590,5,73, + 0,0,1590,1591,5,78,0,0,1591,1592,5,71,0,0,1592,186,1,0,0,0,1593,1594,5, + 80,0,0,1594,1595,5,65,0,0,1595,1596,5,82,0,0,1596,1597,5,84,0,0,1597,1598, + 5,73,0,0,1598,1599,5,84,0,0,1599,1600,5,73,0,0,1600,1601,5,79,0,0,1601, + 1602,5,78,0,0,1602,1603,5,69,0,0,1603,1604,5,68,0,0,1604,188,1,0,0,0,1605, + 1606,5,80,0,0,1606,1607,5,65,0,0,1607,1608,5,82,0,0,1608,1609,5,84,0,0, + 1609,1610,5,73,0,0,1610,1611,5,84,0,0,1611,1612,5,73,0,0,1612,1613,5,79, + 0,0,1613,1614,5,78,0,0,1614,1615,5,83,0,0,1615,190,1,0,0,0,1616,1617,5, + 80,0,0,1617,1618,5,65,0,0,1618,1619,5,83,0,0,1619,1620,5,83,0,0,1620,1621, + 5,73,0,0,1621,1622,5,78,0,0,1622,1623,5,71,0,0,1623,192,1,0,0,0,1624,1625, + 5,80,0,0,1625,1626,5,65,0,0,1626,1627,5,83,0,0,1627,1628,5,84,0,0,1628, + 194,1,0,0,0,1629,1630,5,80,0,0,1630,1631,5,65,0,0,1631,1632,5,84,0,0,1632, + 1633,5,72,0,0,1633,196,1,0,0,0,1634,1635,5,80,0,0,1635,1636,5,76,0,0,1636, + 1637,5,65,0,0,1637,1638,5,67,0,0,1638,1639,5,73,0,0,1639,1640,5,78,0,0, + 1640,1641,5,71,0,0,1641,198,1,0,0,0,1642,1643,5,80,0,0,1643,1644,5,76,0, + 0,1644,1645,5,65,0,0,1645,1646,5,78,0,0,1646,200,1,0,0,0,1647,1648,5,80, + 0,0,1648,1649,5,82,0,0,1649,1650,5,69,0,0,1650,1651,5,67,0,0,1651,1652, + 5,69,0,0,1652,1653,5,68,0,0,1653,1654,5,73,0,0,1654,1655,5,78,0,0,1655, + 1656,5,71,0,0,1656,202,1,0,0,0,1657,1658,5,80,0,0,1658,1659,5,82,0,0,1659, + 1660,5,69,0,0,1660,1661,5,83,0,0,1661,1662,5,69,0,0,1662,1663,5,82,0,0, + 1663,1664,5,86,0,0,1664,1665,5,69,0,0,1665,204,1,0,0,0,1666,1667,5,80,0, + 0,1667,1668,5,82,0,0,1668,1669,5,73,0,0,1669,1670,5,79,0,0,1670,1671,5, + 82,0,0,1671,206,1,0,0,0,1672,1673,5,80,0,0,1673,1674,5,82,0,0,1674,1675, + 5,73,0,0,1675,1676,5,86,0,0,1676,1677,5,73,0,0,1677,1678,5,76,0,0,1678, + 1679,5,69,0,0,1679,1680,5,71,0,0,1680,1681,5,69,0,0,1681,1682,5,83,0,0, + 1682,208,1,0,0,0,1683,1684,5,80,0,0,1684,1685,5,85,0,0,1685,1686,5,66,0, + 0,1686,1687,5,76,0,0,1687,1688,5,73,0,0,1688,1689,5,67,0,0,1689,210,1,0, + 0,0,1690,1691,5,80,0,0,1691,1692,5,89,0,0,1692,1693,5,84,0,0,1693,1694, + 5,72,0,0,1694,1695,5,79,0,0,1695,1696,5,78,0,0,1696,212,1,0,0,0,1697,1698, + 5,80,0,0,1698,1699,5,89,0,0,1699,1700,5,84,0,0,1700,1701,5,72,0,0,1701, + 1702,5,79,0,0,1702,1703,5,78,0,0,1703,1704,5,95,0,0,1704,1705,5,70,0,0, + 1705,1706,5,73,0,0,1706,1707,5,76,0,0,1707,1708,5,69,0,0,1708,1709,5,83, + 0,0,1709,214,1,0,0,0,1710,1711,5,80,0,0,1711,1712,5,89,0,0,1712,1713,5, + 84,0,0,1713,1714,5,72,0,0,1714,1715,5,79,0,0,1715,1716,5,78,0,0,1716,1717, + 5,95,0,0,1717,1718,5,82,0,0,1718,1719,5,69,0,0,1719,1720,5,81,0,0,1720, + 1721,5,85,0,0,1721,1722,5,73,0,0,1722,1723,5,82,0,0,1723,1724,5,69,0,0, + 1724,1725,5,77,0,0,1725,1726,5,69,0,0,1726,1727,5,78,0,0,1727,1728,5,84, + 0,0,1728,1729,5,83,0,0,1729,216,1,0,0,0,1730,1731,5,80,0,0,1731,1732,5, + 89,0,0,1732,1733,5,84,0,0,1733,1734,5,72,0,0,1734,1735,5,79,0,0,1735,1736, + 5,78,0,0,1736,1737,5,95,0,0,1737,1738,5,68,0,0,1738,1739,5,69,0,0,1739, + 1740,5,80,0,0,1740,1741,5,69,0,0,1741,1742,5,78,0,0,1742,1743,5,68,0,0, + 1743,1744,5,69,0,0,1744,1745,5,78,0,0,1745,1746,5,67,0,0,1746,1747,5,73, + 0,0,1747,1748,5,69,0,0,1748,1749,5,83,0,0,1749,218,1,0,0,0,1750,1751,5, + 80,0,0,1751,1752,5,89,0,0,1752,1753,5,84,0,0,1753,1754,5,72,0,0,1754,1755, + 5,79,0,0,1755,1756,5,78,0,0,1756,1757,5,95,0,0,1757,1758,5,74,0,0,1758, + 1759,5,65,0,0,1759,1760,5,82,0,0,1760,220,1,0,0,0,1761,1762,5,80,0,0,1762, + 1763,5,89,0,0,1763,1764,5,84,0,0,1764,1765,5,72,0,0,1765,1766,5,79,0,0, + 1766,1767,5,78,0,0,1767,1768,5,95,0,0,1768,1769,5,65,0,0,1769,1770,5,82, + 0,0,1770,1771,5,67,0,0,1771,1772,5,72,0,0,1772,1773,5,73,0,0,1773,1774, + 5,86,0,0,1774,1775,5,69,0,0,1775,1776,5,83,0,0,1776,222,1,0,0,0,1777,1778, + 5,80,0,0,1778,1779,5,89,0,0,1779,1780,5,84,0,0,1780,1781,5,72,0,0,1781, + 1782,5,79,0,0,1782,1783,5,78,0,0,1783,1784,5,95,0,0,1784,1785,5,80,0,0, + 1785,1786,5,65,0,0,1786,1787,5,82,0,0,1787,1788,5,65,0,0,1788,1789,5,77, + 0,0,1789,1790,5,69,0,0,1790,1791,5,84,0,0,1791,1792,5,69,0,0,1792,1793, + 5,82,0,0,1793,224,1,0,0,0,1794,1795,5,81,0,0,1795,1796,5,85,0,0,1796,1797, + 5,65,0,0,1797,1798,5,82,0,0,1798,1799,5,84,0,0,1799,1800,5,69,0,0,1800, + 1801,5,82,0,0,1801,226,1,0,0,0,1802,1803,5,82,0,0,1803,1804,5,65,0,0,1804, + 1805,5,87,0,0,1805,228,1,0,0,0,1806,1807,5,82,0,0,1807,1808,5,69,0,0,1808, + 1809,5,65,0,0,1809,1810,5,68,0,0,1810,230,1,0,0,0,1811,1812,5,82,0,0,1812, + 1813,5,69,0,0,1813,1814,5,76,0,0,1814,1815,5,65,0,0,1815,1816,5,84,0,0, + 1816,1817,5,73,0,0,1817,1818,5,86,0,0,1818,1819,5,69,0,0,1819,232,1,0,0, + 0,1820,1821,5,82,0,0,1821,1822,5,69,0,0,1822,1823,5,77,0,0,1823,1824,5, + 79,0,0,1824,1825,5,86,0,0,1825,1826,5,69,0,0,1826,234,1,0,0,0,1827,1828, + 5,82,0,0,1828,1829,5,69,0,0,1829,1830,5,78,0,0,1830,1831,5,65,0,0,1831, + 1832,5,77,0,0,1832,1833,5,69,0,0,1833,236,1,0,0,0,1834,1835,5,82,0,0,1835, + 1836,5,69,0,0,1836,1837,5,80,0,0,1837,1838,5,76,0,0,1838,1839,5,65,0,0, + 1839,1840,5,67,0,0,1840,1841,5,69,0,0,1841,238,1,0,0,0,1842,1843,5,82,0, + 0,1843,1844,5,69,0,0,1844,1845,5,83,0,0,1845,1846,5,80,0,0,1846,1847,5, + 69,0,0,1847,1848,5,67,0,0,1848,1849,5,84,0,0,1849,240,1,0,0,0,1850,1851, + 5,82,0,0,1851,1852,5,69,0,0,1852,1853,5,83,0,0,1853,1854,5,84,0,0,1854, + 1855,5,65,0,0,1855,1856,5,82,0,0,1856,1857,5,84,0,0,1857,242,1,0,0,0,1858, + 1859,5,82,0,0,1859,1860,5,69,0,0,1860,1861,5,83,0,0,1861,1862,5,84,0,0, + 1862,1863,5,82,0,0,1863,1864,5,73,0,0,1864,1865,5,67,0,0,1865,1866,5,84, + 0,0,1866,244,1,0,0,0,1867,1868,5,82,0,0,1868,1869,5,79,0,0,1869,1870,5, + 76,0,0,1870,1871,5,69,0,0,1871,246,1,0,0,0,1872,1873,5,82,0,0,1873,1874, + 5,79,0,0,1874,1875,5,87,0,0,1875,1876,5,95,0,0,1876,1877,5,67,0,0,1877, + 1878,5,79,0,0,1878,1879,5,85,0,0,1879,1880,5,78,0,0,1880,1881,5,84,0,0, + 1881,248,1,0,0,0,1882,1883,5,83,0,0,1883,1884,5,67,0,0,1884,1885,5,65,0, + 0,1885,1886,5,76,0,0,1886,1887,5,65,0,0,1887,250,1,0,0,0,1888,1889,5,83, + 0,0,1889,1890,5,67,0,0,1890,1891,5,65,0,0,1891,1892,5,76,0,0,1892,1893, + 5,65,0,0,1893,1894,5,82,0,0,1894,252,1,0,0,0,1895,1896,5,83,0,0,1896,1897, + 5,67,0,0,1897,1898,5,65,0,0,1898,1899,5,76,0,0,1899,1900,5,69,0,0,1900, + 254,1,0,0,0,1901,1902,5,83,0,0,1902,1903,5,67,0,0,1903,1904,5,72,0,0,1904, + 1905,5,69,0,0,1905,1906,5,77,0,0,1906,1907,5,65,0,0,1907,256,1,0,0,0,1908, + 1909,5,83,0,0,1909,1910,5,69,0,0,1910,1911,5,67,0,0,1911,1912,5,79,0,0, + 1912,1913,5,78,0,0,1913,1914,5,68,0,0,1914,1915,5,83,0,0,1915,258,1,0,0, + 0,1916,1917,5,83,0,0,1917,1918,5,69,0,0,1918,1919,5,67,0,0,1919,1920,5, + 84,0,0,1920,1921,5,73,0,0,1921,1922,5,79,0,0,1922,1923,5,78,0,0,1923,260, + 1,0,0,0,1924,1925,5,83,0,0,1925,1926,5,69,0,0,1926,1927,5,67,0,0,1927,1928, + 5,85,0,0,1928,1929,5,82,0,0,1929,1930,5,73,0,0,1930,1931,5,84,0,0,1931, + 1932,5,89,0,0,1932,262,1,0,0,0,1933,1934,5,83,0,0,1934,1935,5,69,0,0,1935, + 1936,5,76,0,0,1936,1937,5,70,0,0,1937,264,1,0,0,0,1938,1939,5,83,0,0,1939, + 1940,5,69,0,0,1940,1941,5,82,0,0,1941,1942,5,86,0,0,1942,1943,5,69,0,0, + 1943,1944,5,82,0,0,1944,266,1,0,0,0,1945,1946,5,83,0,0,1946,1947,5,69,0, + 0,1947,1948,5,82,0,0,1948,1949,5,86,0,0,1949,1950,5,69,0,0,1950,1951,5, + 82,0,0,1951,1952,5,95,0,0,1952,1953,5,78,0,0,1953,1954,5,65,0,0,1954,1955, + 5,77,0,0,1955,1956,5,69,0,0,1956,268,1,0,0,0,1957,1958,5,83,0,0,1958,1959, + 5,69,0,0,1959,1960,5,83,0,0,1960,1961,5,83,0,0,1961,1962,5,73,0,0,1962, + 1963,5,79,0,0,1963,1964,5,78,0,0,1964,270,1,0,0,0,1965,1966,5,83,0,0,1966, + 1967,5,69,0,0,1967,1968,5,84,0,0,1968,1969,5,83,0,0,1969,272,1,0,0,0,1970, + 1971,5,83,0,0,1971,1972,5,73,0,0,1972,1973,5,77,0,0,1973,1974,5,80,0,0, + 1974,1975,5,76,0,0,1975,1976,5,69,0,0,1976,274,1,0,0,0,1977,1978,5,83,0, + 0,1978,1979,5,73,0,0,1979,1980,5,90,0,0,1980,1981,5,69,0,0,1981,276,1,0, + 0,0,1982,1983,5,83,0,0,1983,1984,5,76,0,0,1984,1985,5,73,0,0,1985,1986, + 5,68,0,0,1986,1987,5,69,0,0,1987,278,1,0,0,0,1988,1989,5,83,0,0,1989,1990, + 5,79,0,0,1990,1991,5,85,0,0,1991,1992,5,82,0,0,1992,1993,5,67,0,0,1993, + 1994,5,69,0,0,1994,280,1,0,0,0,1995,1996,5,83,0,0,1996,1997,5,80,0,0,1997, + 1998,5,65,0,0,1998,1999,5,67,0,0,1999,2000,5,69,0,0,2000,282,1,0,0,0,2001, + 2002,5,83,0,0,2002,2003,5,84,0,0,2003,2004,5,65,0,0,2004,2005,5,84,0,0, + 2005,2006,5,69,0,0,2006,284,1,0,0,0,2007,2008,5,83,0,0,2008,2009,5,84,0, + 0,2009,2010,5,65,0,0,2010,2011,5,84,0,0,2011,2012,5,69,0,0,2012,2013,5, + 77,0,0,2013,2014,5,69,0,0,2014,2015,5,78,0,0,2015,2016,5,84,0,0,2016,286, + 1,0,0,0,2017,2018,5,83,0,0,2018,2019,5,84,0,0,2019,2020,5,69,0,0,2020,2021, + 5,80,0,0,2021,288,1,0,0,0,2022,2023,5,83,0,0,2023,2024,5,84,0,0,2024,2025, + 5,82,0,0,2025,2026,5,73,0,0,2026,2027,5,78,0,0,2027,2028,5,71,0,0,2028, + 290,1,0,0,0,2029,2030,5,83,0,0,2030,2031,5,84,0,0,2031,2032,5,82,0,0,2032, + 2033,5,85,0,0,2033,2034,5,67,0,0,2034,2035,5,84,0,0,2035,2036,5,85,0,0, + 2036,2037,5,82,0,0,2037,2038,5,69,0,0,2038,292,1,0,0,0,2039,2040,5,83,0, + 0,2040,2041,5,84,0,0,2041,2042,5,89,0,0,2042,2043,5,76,0,0,2043,2044,5, + 69,0,0,2044,294,1,0,0,0,2045,2046,5,84,0,0,2046,2047,5,65,0,0,2047,2048, + 5,66,0,0,2048,2049,5,76,0,0,2049,2050,5,69,0,0,2050,2051,5,83,0,0,2051, + 296,1,0,0,0,2052,2053,5,84,0,0,2053,2054,5,69,0,0,2054,2055,5,77,0,0,2055, + 2056,5,80,0,0,2056,2057,5,79,0,0,2057,2058,5,82,0,0,2058,2059,5,65,0,0, + 2059,2060,5,82,0,0,2060,2061,5,89,0,0,2061,298,1,0,0,0,2062,2063,5,84,0, + 0,2063,2064,5,73,0,0,2064,2065,5,77,0,0,2065,2066,5,69,0,0,2066,2067,5, + 67,0,0,2067,2068,5,79,0,0,2068,2069,5,76,0,0,2069,300,1,0,0,0,2070,2071, + 5,84,0,0,2071,2072,5,73,0,0,2072,2073,5,77,0,0,2073,2074,5,69,0,0,2074, + 2075,5,83,0,0,2075,2076,5,84,0,0,2076,2077,5,65,0,0,2077,2078,5,77,0,0, + 2078,2079,5,80,0,0,2079,2080,5,95,0,0,2080,2081,5,76,0,0,2081,2082,5,84, + 0,0,2082,2083,5,90,0,0,2083,302,1,0,0,0,2084,2085,5,84,0,0,2085,2086,5, + 73,0,0,2086,2087,5,77,0,0,2087,2088,5,69,0,0,2088,2089,5,83,0,0,2089,2090, + 5,84,0,0,2090,2091,5,65,0,0,2091,2092,5,77,0,0,2092,2093,5,80,0,0,2093, + 2094,5,65,0,0,2094,2095,5,68,0,0,2095,2096,5,68,0,0,2096,304,1,0,0,0,2097, + 2098,5,84,0,0,2098,2099,5,73,0,0,2099,2100,5,77,0,0,2100,2101,5,69,0,0, + 2101,2102,5,83,0,0,2102,2103,5,84,0,0,2103,2104,5,65,0,0,2104,2105,5,77, + 0,0,2105,2106,5,80,0,0,2106,2107,5,68,0,0,2107,2108,5,73,0,0,2108,2109, + 5,70,0,0,2109,2110,5,70,0,0,2110,306,1,0,0,0,2111,2112,5,84,0,0,2112,2113, + 5,82,0,0,2113,2114,5,65,0,0,2114,2115,5,78,0,0,2115,2116,5,83,0,0,2116, + 2117,5,70,0,0,2117,2118,5,79,0,0,2118,2119,5,82,0,0,2119,2120,5,77,0,0, + 2120,308,1,0,0,0,2121,2122,5,84,0,0,2122,2123,5,85,0,0,2123,2124,5,77,0, + 0,2124,2125,5,66,0,0,2125,2126,5,76,0,0,2126,2127,5,69,0,0,2127,310,1,0, + 0,0,2128,2129,5,84,0,0,2129,2130,5,89,0,0,2130,2131,5,80,0,0,2131,2132, + 5,69,0,0,2132,312,1,0,0,0,2133,2134,5,85,0,0,2134,2135,5,78,0,0,2135,2136, + 5,68,0,0,2136,2137,5,69,0,0,2137,2138,5,82,0,0,2138,314,1,0,0,0,2139,2140, + 5,85,0,0,2140,2141,5,78,0,0,2141,2142,5,76,0,0,2142,2143,5,79,0,0,2143, + 2144,5,65,0,0,2144,2145,5,68,0,0,2145,316,1,0,0,0,2146,2147,5,85,0,0,2147, + 2148,5,83,0,0,2148,2149,5,65,0,0,2149,2150,5,71,0,0,2150,2151,5,69,0,0, + 2151,318,1,0,0,0,2152,2153,5,85,0,0,2153,2154,5,83,0,0,2154,2155,5,69,0, + 0,2155,320,1,0,0,0,2156,2157,5,85,0,0,2157,2158,5,84,0,0,2158,2159,5,70, + 0,0,2159,2160,5,49,0,0,2160,2161,5,54,0,0,2161,322,1,0,0,0,2162,2163,5, + 85,0,0,2163,2164,5,84,0,0,2164,2165,5,70,0,0,2165,2166,5,51,0,0,2166,2167, + 5,50,0,0,2167,324,1,0,0,0,2168,2169,5,85,0,0,2169,2170,5,84,0,0,2170,2171, + 5,70,0,0,2171,2172,5,56,0,0,2172,326,1,0,0,0,2173,2174,5,86,0,0,2174,2175, + 5,69,0,0,2175,2176,5,82,0,0,2176,2177,5,83,0,0,2177,2178,5,73,0,0,2178, + 2179,5,79,0,0,2179,2180,5,78,0,0,2180,328,1,0,0,0,2181,2182,5,86,0,0,2182, + 2183,5,73,0,0,2183,2184,5,69,0,0,2184,2185,5,87,0,0,2185,330,1,0,0,0,2186, + 2187,5,86,0,0,2187,2188,5,73,0,0,2188,2189,5,69,0,0,2189,2190,5,87,0,0, + 2190,2191,5,83,0,0,2191,332,1,0,0,0,2192,2193,5,86,0,0,2193,2194,5,73,0, + 0,2194,2195,5,82,0,0,2195,2196,5,84,0,0,2196,2197,5,85,0,0,2197,2198,5, + 65,0,0,2198,2199,5,76,0,0,2199,334,1,0,0,0,2200,2201,5,87,0,0,2201,2202, + 5,65,0,0,2202,2203,5,84,0,0,2203,2204,5,69,0,0,2204,2205,5,82,0,0,2205, + 2206,5,77,0,0,2206,2207,5,65,0,0,2207,2208,5,82,0,0,2208,2209,5,75,0,0, + 2209,336,1,0,0,0,2210,2211,5,87,0,0,2211,2212,5,65,0,0,2212,2213,5,84,0, + 0,2213,2214,5,69,0,0,2214,2215,5,82,0,0,2215,2216,5,77,0,0,2216,2217,5, + 65,0,0,2217,2218,5,82,0,0,2218,2219,5,75,0,0,2219,2220,5,83,0,0,2220,338, + 1,0,0,0,2221,2222,5,87,0,0,2222,2223,5,69,0,0,2223,2224,5,69,0,0,2224,2225, + 5,75,0,0,2225,340,1,0,0,0,2226,2227,5,87,0,0,2227,2228,5,79,0,0,2228,2229, + 5,82,0,0,2229,2230,5,75,0,0,2230,342,1,0,0,0,2231,2232,5,87,0,0,2232,2233, + 5,82,0,0,2233,2234,5,65,0,0,2234,2235,5,80,0,0,2235,2236,5,80,0,0,2236, + 2237,5,69,0,0,2237,2238,5,82,0,0,2238,344,1,0,0,0,2239,2240,5,89,0,0,2240, + 2241,5,69,0,0,2241,2242,5,65,0,0,2242,2243,5,82,0,0,2243,2244,5,83,0,0, + 2244,346,1,0,0,0,2245,2246,5,90,0,0,2246,2247,5,79,0,0,2247,2248,5,78,0, + 0,2248,2249,5,69,0,0,2249,348,1,0,0,0,2250,2251,5,65,0,0,2251,2252,5,66, + 0,0,2252,2253,5,83,0,0,2253,350,1,0,0,0,2254,2255,5,65,0,0,2255,2256,5, + 76,0,0,2256,2257,5,76,0,0,2257,352,1,0,0,0,2258,2259,5,65,0,0,2259,2260, + 5,76,0,0,2260,2261,5,76,0,0,2261,2262,5,79,0,0,2262,2263,5,87,0,0,2263, + 354,1,0,0,0,2264,2265,5,65,0,0,2265,2266,5,76,0,0,2266,2267,5,84,0,0,2267, + 2268,5,69,0,0,2268,2269,5,82,0,0,2269,356,1,0,0,0,2270,2271,5,65,0,0,2271, + 2272,5,78,0,0,2272,2273,5,68,0,0,2273,358,1,0,0,0,2274,2275,5,65,0,0,2275, + 2276,5,78,0,0,2276,2277,5,89,0,0,2277,360,1,0,0,0,2278,2279,5,65,0,0,2279, + 2280,5,82,0,0,2280,2281,5,69,0,0,2281,362,1,0,0,0,2282,2283,5,65,0,0,2283, + 2284,5,82,0,0,2284,2285,5,82,0,0,2285,2286,5,65,0,0,2286,2287,5,89,0,0, + 2287,364,1,0,0,0,2288,2289,5,65,0,0,2289,2290,5,83,0,0,2290,366,1,0,0,0, + 2291,2292,5,65,0,0,2292,2293,5,83,0,0,2293,2294,5,89,0,0,2294,2295,5,77, + 0,0,2295,2296,5,77,0,0,2296,2297,5,69,0,0,2297,2298,5,84,0,0,2298,2299, + 5,82,0,0,2299,2300,5,73,0,0,2300,2301,5,67,0,0,2301,368,1,0,0,0,2302,2303, + 5,65,0,0,2303,2304,5,84,0,0,2304,370,1,0,0,0,2305,2306,5,65,0,0,2306,2307, + 5,86,0,0,2307,2308,5,71,0,0,2308,372,1,0,0,0,2309,2310,5,66,0,0,2310,2311, + 5,69,0,0,2311,2312,5,71,0,0,2312,2313,5,73,0,0,2313,2314,5,78,0,0,2314, + 374,1,0,0,0,2315,2316,5,66,0,0,2316,2317,5,69,0,0,2317,2318,5,84,0,0,2318, + 2319,5,87,0,0,2319,2320,5,69,0,0,2320,2321,5,69,0,0,2321,2322,5,78,0,0, + 2322,376,1,0,0,0,2323,2324,5,66,0,0,2324,2325,5,73,0,0,2325,2326,5,71,0, + 0,2326,2327,5,73,0,0,2327,2328,5,78,0,0,2328,2329,5,84,0,0,2329,378,1,0, + 0,0,2330,2331,5,66,0,0,2331,2332,5,73,0,0,2332,2333,5,78,0,0,2333,2334, + 5,65,0,0,2334,2335,5,82,0,0,2335,2336,5,89,0,0,2336,380,1,0,0,0,2337,2338, + 5,66,0,0,2338,2339,5,73,0,0,2339,2340,5,84,0,0,2340,382,1,0,0,0,2341,2342, + 5,66,0,0,2342,2343,5,76,0,0,2343,2344,5,79,0,0,2344,2345,5,66,0,0,2345, + 384,1,0,0,0,2346,2347,5,66,0,0,2347,2348,5,79,0,0,2348,2349,5,79,0,0,2349, + 2350,5,76,0,0,2350,2351,5,69,0,0,2351,2352,5,65,0,0,2352,2353,5,78,0,0, + 2353,386,1,0,0,0,2354,2355,5,66,0,0,2355,2356,5,79,0,0,2356,2357,5,84,0, + 0,2357,2358,5,72,0,0,2358,388,1,0,0,0,2359,2360,5,66,0,0,2360,2361,5,89, + 0,0,2361,390,1,0,0,0,2362,2363,5,67,0,0,2363,2364,5,65,0,0,2364,2365,5, + 76,0,0,2365,2366,5,76,0,0,2366,392,1,0,0,0,2367,2368,5,67,0,0,2368,2369, + 5,65,0,0,2369,2370,5,76,0,0,2370,2371,5,76,0,0,2371,2372,5,69,0,0,2372, + 2373,5,68,0,0,2373,394,1,0,0,0,2374,2375,5,67,0,0,2375,2376,5,65,0,0,2376, + 2377,5,83,0,0,2377,2378,5,67,0,0,2378,2379,5,65,0,0,2379,2380,5,68,0,0, + 2380,2381,5,69,0,0,2381,2382,5,68,0,0,2382,396,1,0,0,0,2383,2384,5,67,0, + 0,2384,2385,5,65,0,0,2385,2386,5,83,0,0,2386,2387,5,69,0,0,2387,398,1,0, + 0,0,2388,2389,5,67,0,0,2389,2390,5,65,0,0,2390,2391,5,83,0,0,2391,2392, + 5,84,0,0,2392,400,1,0,0,0,2393,2394,5,67,0,0,2394,2395,5,69,0,0,2395,2396, + 5,73,0,0,2396,2397,5,76,0,0,2397,402,1,0,0,0,2398,2399,5,67,0,0,2399,2400, + 5,72,0,0,2400,2401,5,65,0,0,2401,2402,5,82,0,0,2402,404,1,0,0,0,2403,2404, + 5,67,0,0,2404,2405,5,72,0,0,2405,2406,5,65,0,0,2406,2407,5,82,0,0,2407, + 2408,5,65,0,0,2408,2409,5,67,0,0,2409,2410,5,84,0,0,2410,2411,5,69,0,0, + 2411,2412,5,82,0,0,2412,406,1,0,0,0,2413,2414,5,67,0,0,2414,2415,5,72,0, + 0,2415,2416,5,69,0,0,2416,2417,5,67,0,0,2417,2418,5,75,0,0,2418,408,1,0, + 0,0,2419,2420,5,67,0,0,2420,2421,5,76,0,0,2421,2422,5,79,0,0,2422,2423, + 5,66,0,0,2423,410,1,0,0,0,2424,2425,5,67,0,0,2425,2426,5,76,0,0,2426,2427, + 5,79,0,0,2427,2428,5,83,0,0,2428,2429,5,69,0,0,2429,412,1,0,0,0,2430,2431, + 5,67,0,0,2431,2432,5,79,0,0,2432,2433,5,65,0,0,2433,2434,5,76,0,0,2434, + 2435,5,69,0,0,2435,2436,5,83,0,0,2436,2437,5,67,0,0,2437,2438,5,69,0,0, + 2438,414,1,0,0,0,2439,2440,5,67,0,0,2440,2441,5,79,0,0,2441,2442,5,76,0, + 0,2442,2443,5,76,0,0,2443,2444,5,65,0,0,2444,2445,5,84,0,0,2445,2446,5, + 69,0,0,2446,416,1,0,0,0,2447,2448,5,67,0,0,2448,2449,5,79,0,0,2449,2450, + 5,76,0,0,2450,2451,5,76,0,0,2451,2452,5,69,0,0,2452,2453,5,67,0,0,2453, + 2454,5,84,0,0,2454,418,1,0,0,0,2455,2456,5,67,0,0,2456,2457,5,79,0,0,2457, + 2458,5,76,0,0,2458,2459,5,85,0,0,2459,2460,5,77,0,0,2460,2461,5,78,0,0, + 2461,420,1,0,0,0,2462,2463,5,67,0,0,2463,2464,5,79,0,0,2464,2465,5,77,0, + 0,2465,2466,5,77,0,0,2466,2467,5,73,0,0,2467,2468,5,84,0,0,2468,422,1,0, + 0,0,2469,2470,5,67,0,0,2470,2471,5,79,0,0,2471,2472,5,78,0,0,2472,2473, + 5,78,0,0,2473,2474,5,69,0,0,2474,2475,5,67,0,0,2475,2476,5,84,0,0,2476, + 424,1,0,0,0,2477,2478,5,67,0,0,2478,2479,5,79,0,0,2479,2480,5,78,0,0,2480, + 2481,5,83,0,0,2481,2482,5,84,0,0,2482,2483,5,82,0,0,2483,2484,5,65,0,0, + 2484,2485,5,73,0,0,2485,2486,5,78,0,0,2486,2487,5,84,0,0,2487,426,1,0,0, + 0,2488,2489,5,67,0,0,2489,2490,5,79,0,0,2490,2491,5,78,0,0,2491,2492,5, + 84,0,0,2492,2493,5,65,0,0,2493,2494,5,73,0,0,2494,2495,5,78,0,0,2495,2496, + 5,83,0,0,2496,428,1,0,0,0,2497,2498,5,67,0,0,2498,2499,5,79,0,0,2499,2500, + 5,78,0,0,2500,2501,5,86,0,0,2501,2502,5,69,0,0,2502,2503,5,82,0,0,2503, + 2504,5,84,0,0,2504,430,1,0,0,0,2505,2506,5,67,0,0,2506,2507,5,79,0,0,2507, + 2508,5,85,0,0,2508,2509,5,78,0,0,2509,2510,5,84,0,0,2510,432,1,0,0,0,2511, + 2512,5,67,0,0,2512,2513,5,82,0,0,2513,2514,5,69,0,0,2514,2515,5,65,0,0, + 2515,2516,5,84,0,0,2516,2517,5,69,0,0,2517,434,1,0,0,0,2518,2519,5,67,0, + 0,2519,2520,5,82,0,0,2520,2521,5,79,0,0,2521,2522,5,83,0,0,2522,2523,5, + 83,0,0,2523,436,1,0,0,0,2524,2525,5,67,0,0,2525,2526,5,85,0,0,2526,2527, + 5,66,0,0,2527,2528,5,69,0,0,2528,438,1,0,0,0,2529,2530,5,67,0,0,2530,2531, + 5,85,0,0,2531,2532,5,82,0,0,2532,2533,5,82,0,0,2533,2534,5,69,0,0,2534, + 2535,5,78,0,0,2535,2536,5,84,0,0,2536,440,1,0,0,0,2537,2538,5,67,0,0,2538, + 2539,5,85,0,0,2539,2540,5,82,0,0,2540,2541,5,83,0,0,2541,2542,5,79,0,0, + 2542,2543,5,82,0,0,2543,442,1,0,0,0,2544,2545,5,67,0,0,2545,2546,5,89,0, + 0,2546,2547,5,67,0,0,2547,2548,5,76,0,0,2548,2549,5,69,0,0,2549,444,1,0, + 0,0,2550,2551,5,68,0,0,2551,2552,5,65,0,0,2552,2553,5,84,0,0,2553,2554, + 5,69,0,0,2554,446,1,0,0,0,2555,2556,5,68,0,0,2556,2557,5,65,0,0,2557,2558, + 5,84,0,0,2558,2559,5,69,0,0,2559,2560,5,84,0,0,2560,2561,5,73,0,0,2561, + 2562,5,77,0,0,2562,2563,5,69,0,0,2563,448,1,0,0,0,2564,2565,5,68,0,0,2565, + 2566,5,65,0,0,2566,2567,5,89,0,0,2567,450,1,0,0,0,2568,2569,5,68,0,0,2569, + 2570,5,69,0,0,2570,2571,5,67,0,0,2571,452,1,0,0,0,2572,2573,5,68,0,0,2573, + 2574,5,69,0,0,2574,2575,5,67,0,0,2575,2576,5,73,0,0,2576,2577,5,77,0,0, + 2577,2578,5,65,0,0,2578,2579,5,76,0,0,2579,454,1,0,0,0,2580,2581,5,68,0, + 0,2581,2582,5,69,0,0,2582,2583,5,67,0,0,2583,2584,5,76,0,0,2584,2585,5, + 65,0,0,2585,2586,5,82,0,0,2586,2587,5,69,0,0,2587,456,1,0,0,0,2588,2589, + 5,68,0,0,2589,2590,5,69,0,0,2590,2591,5,70,0,0,2591,2592,5,65,0,0,2592, + 2593,5,85,0,0,2593,2594,5,76,0,0,2594,2595,5,84,0,0,2595,458,1,0,0,0,2596, + 2597,5,68,0,0,2597,2598,5,69,0,0,2598,2599,5,70,0,0,2599,2600,5,73,0,0, + 2600,2601,5,78,0,0,2601,2602,5,69,0,0,2602,460,1,0,0,0,2603,2604,5,68,0, + 0,2604,2605,5,69,0,0,2605,2606,5,76,0,0,2606,2607,5,69,0,0,2607,2608,5, + 84,0,0,2608,2609,5,69,0,0,2609,462,1,0,0,0,2610,2611,5,68,0,0,2611,2612, + 5,69,0,0,2612,2613,5,83,0,0,2613,2614,5,67,0,0,2614,2615,5,82,0,0,2615, + 2616,5,73,0,0,2616,2617,5,66,0,0,2617,2618,5,69,0,0,2618,464,1,0,0,0,2619, + 2620,5,68,0,0,2620,2621,5,73,0,0,2621,2622,5,83,0,0,2622,2623,5,84,0,0, + 2623,2624,5,73,0,0,2624,2625,5,78,0,0,2625,2626,5,67,0,0,2626,2627,5,84, + 0,0,2627,466,1,0,0,0,2628,2629,5,68,0,0,2629,2630,5,79,0,0,2630,2631,5, + 85,0,0,2631,2632,5,66,0,0,2632,2633,5,76,0,0,2633,2634,5,69,0,0,2634,468, + 1,0,0,0,2635,2636,5,68,0,0,2636,2637,5,82,0,0,2637,2638,5,79,0,0,2638,2639, + 5,80,0,0,2639,470,1,0,0,0,2640,2641,5,69,0,0,2641,2642,5,65,0,0,2642,2643, + 5,67,0,0,2643,2644,5,72,0,0,2644,472,1,0,0,0,2645,2646,5,69,0,0,2646,2647, + 5,76,0,0,2647,2648,5,83,0,0,2648,2649,5,69,0,0,2649,474,1,0,0,0,2650,2651, + 5,69,0,0,2651,2652,5,78,0,0,2652,2653,5,68,0,0,2653,476,1,0,0,0,2654,2655, + 5,69,0,0,2655,2656,5,81,0,0,2656,2657,5,85,0,0,2657,2658,5,65,0,0,2658, + 2659,5,76,0,0,2659,2660,5,83,0,0,2660,478,1,0,0,0,2661,2662,5,69,0,0,2662, + 2663,5,83,0,0,2663,2664,5,67,0,0,2664,2665,5,65,0,0,2665,2666,5,80,0,0, + 2666,2667,5,69,0,0,2667,480,1,0,0,0,2668,2669,5,69,0,0,2669,2670,5,88,0, + 0,2670,2671,5,67,0,0,2671,2672,5,69,0,0,2672,2673,5,80,0,0,2673,2674,5, + 84,0,0,2674,482,1,0,0,0,2675,2676,5,69,0,0,2676,2677,5,88,0,0,2677,2678, + 5,69,0,0,2678,2679,5,67,0,0,2679,2680,5,85,0,0,2680,2681,5,84,0,0,2681, + 2682,5,69,0,0,2682,484,1,0,0,0,2683,2684,5,69,0,0,2684,2685,5,88,0,0,2685, + 2686,5,73,0,0,2686,2687,5,83,0,0,2687,2688,5,84,0,0,2688,2689,5,83,0,0, + 2689,486,1,0,0,0,2690,2691,5,69,0,0,2691,2692,5,88,0,0,2692,2693,5,80,0, + 0,2693,2694,5,76,0,0,2694,2695,5,65,0,0,2695,2696,5,73,0,0,2696,2697,5, + 78,0,0,2697,488,1,0,0,0,2698,2699,5,69,0,0,2699,2700,5,88,0,0,2700,2701, + 5,84,0,0,2701,2702,5,69,0,0,2702,2703,5,82,0,0,2703,2704,5,78,0,0,2704, + 2705,5,65,0,0,2705,2706,5,76,0,0,2706,490,1,0,0,0,2707,2708,5,69,0,0,2708, + 2709,5,88,0,0,2709,2710,5,84,0,0,2710,2711,5,82,0,0,2711,2712,5,65,0,0, + 2712,2713,5,67,0,0,2713,2714,5,84,0,0,2714,492,1,0,0,0,2715,2716,5,70,0, + 0,2716,2717,5,65,0,0,2717,2718,5,76,0,0,2718,2719,5,83,0,0,2719,2720,5, + 69,0,0,2720,494,1,0,0,0,2721,2722,5,70,0,0,2722,2723,5,76,0,0,2723,2724, + 5,79,0,0,2724,2725,5,65,0,0,2725,2726,5,84,0,0,2726,496,1,0,0,0,2727,2728, + 5,70,0,0,2728,2729,5,79,0,0,2729,2730,5,82,0,0,2730,498,1,0,0,0,2731,2732, + 5,70,0,0,2732,2733,5,82,0,0,2733,2734,5,79,0,0,2734,2735,5,77,0,0,2735, + 500,1,0,0,0,2736,2737,5,70,0,0,2737,2738,5,85,0,0,2738,2739,5,76,0,0,2739, + 2740,5,76,0,0,2740,502,1,0,0,0,2741,2742,5,70,0,0,2742,2743,5,85,0,0,2743, + 2744,5,78,0,0,2744,2745,5,67,0,0,2745,2746,5,84,0,0,2746,2747,5,73,0,0, + 2747,2748,5,79,0,0,2748,2749,5,78,0,0,2749,504,1,0,0,0,2750,2751,5,71,0, + 0,2751,2752,5,76,0,0,2752,2753,5,79,0,0,2753,2754,5,66,0,0,2754,2755,5, + 65,0,0,2755,2756,5,76,0,0,2756,506,1,0,0,0,2757,2758,5,71,0,0,2758,2759, + 5,82,0,0,2759,2760,5,65,0,0,2760,2761,5,78,0,0,2761,2762,5,84,0,0,2762, + 508,1,0,0,0,2763,2764,5,71,0,0,2764,2765,5,82,0,0,2765,2766,5,79,0,0,2766, + 2767,5,85,0,0,2767,2768,5,80,0,0,2768,510,1,0,0,0,2769,2770,5,71,0,0,2770, + 2771,5,82,0,0,2771,2772,5,79,0,0,2772,2773,5,85,0,0,2773,2774,5,80,0,0, + 2774,2775,5,73,0,0,2775,2776,5,78,0,0,2776,2777,5,71,0,0,2777,512,1,0,0, + 0,2778,2779,5,71,0,0,2779,2780,5,82,0,0,2780,2781,5,79,0,0,2781,2782,5, + 85,0,0,2782,2783,5,80,0,0,2783,2784,5,83,0,0,2784,514,1,0,0,0,2785,2786, + 5,72,0,0,2786,2787,5,65,0,0,2787,2788,5,86,0,0,2788,2789,5,73,0,0,2789, + 2790,5,78,0,0,2790,2791,5,71,0,0,2791,516,1,0,0,0,2792,2793,5,72,0,0,2793, + 2794,5,79,0,0,2794,2795,5,85,0,0,2795,2796,5,82,0,0,2796,518,1,0,0,0,2797, + 2798,5,73,0,0,2798,2799,5,77,0,0,2799,2800,5,80,0,0,2800,2801,5,79,0,0, + 2801,2802,5,82,0,0,2802,2803,5,84,0,0,2803,520,1,0,0,0,2804,2805,5,73,0, + 0,2805,2806,5,78,0,0,2806,522,1,0,0,0,2807,2808,5,73,0,0,2808,2809,5,78, + 0,0,2809,2810,5,67,0,0,2810,2811,5,76,0,0,2811,2812,5,85,0,0,2812,2813, + 5,68,0,0,2813,2814,5,73,0,0,2814,2815,5,78,0,0,2815,2816,5,71,0,0,2816, + 524,1,0,0,0,2817,2818,5,73,0,0,2818,2819,5,78,0,0,2819,2820,5,78,0,0,2820, + 2821,5,69,0,0,2821,2822,5,82,0,0,2822,526,1,0,0,0,2823,2824,5,73,0,0,2824, + 2825,5,78,0,0,2825,2826,5,79,0,0,2826,2827,5,85,0,0,2827,2828,5,84,0,0, + 2828,528,1,0,0,0,2829,2830,5,73,0,0,2830,2831,5,78,0,0,2831,2832,5,83,0, + 0,2832,2833,5,69,0,0,2833,2834,5,82,0,0,2834,2835,5,84,0,0,2835,530,1,0, + 0,0,2836,2837,5,73,0,0,2837,2838,5,78,0,0,2838,2839,5,84,0,0,2839,532,1, + 0,0,0,2840,2841,5,73,0,0,2841,2842,5,78,0,0,2842,2843,5,84,0,0,2843,2844, + 5,69,0,0,2844,2845,5,71,0,0,2845,2846,5,69,0,0,2846,2847,5,82,0,0,2847, + 534,1,0,0,0,2848,2849,5,73,0,0,2849,2850,5,78,0,0,2850,2851,5,84,0,0,2851, + 2852,5,69,0,0,2852,2853,5,82,0,0,2853,2854,5,83,0,0,2854,2855,5,69,0,0, + 2855,2856,5,67,0,0,2856,2857,5,84,0,0,2857,536,1,0,0,0,2858,2859,5,73,0, + 0,2859,2860,5,78,0,0,2860,2861,5,84,0,0,2861,2862,5,69,0,0,2862,2863,5, + 82,0,0,2863,2864,5,86,0,0,2864,2865,5,65,0,0,2865,2866,5,76,0,0,2866,538, + 1,0,0,0,2867,2868,5,73,0,0,2868,2869,5,78,0,0,2869,2870,5,84,0,0,2870,2871, + 5,79,0,0,2871,540,1,0,0,0,2872,2873,5,73,0,0,2873,2874,5,83,0,0,2874,542, + 1,0,0,0,2875,2876,5,74,0,0,2876,2877,5,79,0,0,2877,2878,5,73,0,0,2878,2879, + 5,78,0,0,2879,544,1,0,0,0,2880,2881,5,76,0,0,2881,2882,5,65,0,0,2882,2883, + 5,71,0,0,2883,546,1,0,0,0,2884,2885,5,76,0,0,2885,2886,5,65,0,0,2886,2887, + 5,78,0,0,2887,2888,5,71,0,0,2888,2889,5,85,0,0,2889,2890,5,65,0,0,2890, + 2891,5,71,0,0,2891,2892,5,69,0,0,2892,548,1,0,0,0,2893,2894,5,76,0,0,2894, + 2895,5,65,0,0,2895,2896,5,84,0,0,2896,2897,5,69,0,0,2897,2898,5,82,0,0, + 2898,2899,5,65,0,0,2899,2900,5,76,0,0,2900,550,1,0,0,0,2901,2902,5,76,0, + 0,2902,2903,5,69,0,0,2903,2904,5,65,0,0,2904,2905,5,68,0,0,2905,2906,5, + 73,0,0,2906,2907,5,78,0,0,2907,2908,5,71,0,0,2908,552,1,0,0,0,2909,2910, + 5,76,0,0,2910,2911,5,69,0,0,2911,2912,5,70,0,0,2912,2913,5,84,0,0,2913, + 554,1,0,0,0,2914,2915,5,76,0,0,2915,2916,5,73,0,0,2916,2917,5,75,0,0,2917, + 2918,5,69,0,0,2918,556,1,0,0,0,2919,2920,5,76,0,0,2920,2921,5,73,0,0,2921, + 2922,5,77,0,0,2922,2923,5,73,0,0,2923,2924,5,84,0,0,2924,558,1,0,0,0,2925, + 2926,5,76,0,0,2926,2927,5,79,0,0,2927,2928,5,67,0,0,2928,2929,5,65,0,0, + 2929,2930,5,76,0,0,2930,560,1,0,0,0,2931,2932,5,77,0,0,2932,2933,5,65,0, + 0,2933,2934,5,84,0,0,2934,2935,5,67,0,0,2935,2936,5,72,0,0,2936,562,1,0, + 0,0,2937,2938,5,77,0,0,2938,2939,5,65,0,0,2939,2940,5,84,0,0,2940,2941, + 5,67,0,0,2941,2942,5,72,0,0,2942,2943,5,95,0,0,2943,2944,5,82,0,0,2944, + 2945,5,69,0,0,2945,2946,5,67,0,0,2946,2947,5,79,0,0,2947,2948,5,71,0,0, + 2948,2949,5,78,0,0,2949,2950,5,73,0,0,2950,2951,5,90,0,0,2951,2952,5,69, + 0,0,2952,564,1,0,0,0,2953,2954,5,77,0,0,2954,2955,5,69,0,0,2955,2956,5, + 65,0,0,2956,2957,5,83,0,0,2957,2958,5,85,0,0,2958,2959,5,82,0,0,2959,2960, + 5,69,0,0,2960,2961,5,83,0,0,2961,566,1,0,0,0,2962,2963,5,77,0,0,2963,2964, + 5,69,0,0,2964,2965,5,82,0,0,2965,2966,5,71,0,0,2966,2967,5,69,0,0,2967, + 568,1,0,0,0,2968,2969,5,77,0,0,2969,2970,5,69,0,0,2970,2971,5,84,0,0,2971, + 2972,5,65,0,0,2972,2973,5,68,0,0,2973,2974,5,65,0,0,2974,2975,5,84,0,0, + 2975,2976,5,65,0,0,2976,570,1,0,0,0,2977,2978,5,77,0,0,2978,2979,5,73,0, + 0,2979,2980,5,78,0,0,2980,2981,5,85,0,0,2981,2982,5,83,0,0,2982,572,1,0, + 0,0,2983,2984,5,77,0,0,2984,2985,5,73,0,0,2985,2986,5,78,0,0,2986,2987, + 5,85,0,0,2987,2988,5,84,0,0,2988,2989,5,69,0,0,2989,574,1,0,0,0,2990,2991, + 5,77,0,0,2991,2992,5,79,0,0,2992,2993,5,68,0,0,2993,2994,5,73,0,0,2994, + 2995,5,70,0,0,2995,2996,5,73,0,0,2996,2997,5,69,0,0,2997,2998,5,83,0,0, + 2998,576,1,0,0,0,2999,3000,5,77,0,0,3000,3001,5,79,0,0,3001,3002,5,68,0, + 0,3002,3003,5,85,0,0,3003,3004,5,76,0,0,3004,3005,5,69,0,0,3005,578,1,0, + 0,0,3006,3007,5,77,0,0,3007,3008,5,79,0,0,3008,3009,5,78,0,0,3009,3010, + 5,84,0,0,3010,3011,5,72,0,0,3011,580,1,0,0,0,3012,3013,5,77,0,0,3013,3014, + 5,85,0,0,3014,3015,5,76,0,0,3015,3016,5,84,0,0,3016,3017,5,73,0,0,3017, + 3018,5,83,0,0,3018,3019,5,69,0,0,3019,3020,5,84,0,0,3020,582,1,0,0,0,3021, + 3022,5,78,0,0,3022,3023,5,65,0,0,3023,3024,5,84,0,0,3024,3025,5,85,0,0, + 3025,3026,5,82,0,0,3026,3027,5,65,0,0,3027,3028,5,76,0,0,3028,584,1,0,0, + 0,3029,3030,5,78,0,0,3030,3031,5,69,0,0,3031,3032,5,88,0,0,3032,3033,5, + 84,0,0,3033,586,1,0,0,0,3034,3035,5,78,0,0,3035,3036,5,79,0,0,3036,588, + 1,0,0,0,3037,3038,5,78,0,0,3038,3039,5,79,0,0,3039,3040,5,78,0,0,3040,3041, + 5,69,0,0,3041,590,1,0,0,0,3042,3043,5,78,0,0,3043,3044,5,79,0,0,3044,3045, + 5,84,0,0,3045,592,1,0,0,0,3046,3047,5,78,0,0,3047,3048,5,85,0,0,3048,3049, + 5,76,0,0,3049,3050,5,76,0,0,3050,594,1,0,0,0,3051,3052,5,78,0,0,3052,3053, + 5,85,0,0,3053,3054,5,77,0,0,3054,3055,5,69,0,0,3055,3056,5,82,0,0,3056, + 3057,5,73,0,0,3057,3058,5,67,0,0,3058,596,1,0,0,0,3059,3060,5,79,0,0,3060, + 3061,5,70,0,0,3061,598,1,0,0,0,3062,3063,5,79,0,0,3063,3064,5,70,0,0,3064, + 3065,5,70,0,0,3065,3066,5,83,0,0,3066,3067,5,69,0,0,3067,3068,5,84,0,0, + 3068,600,1,0,0,0,3069,3070,5,79,0,0,3070,3071,5,78,0,0,3071,602,1,0,0,0, + 3072,3073,5,79,0,0,3073,3074,5,78,0,0,3074,3075,5,69,0,0,3075,604,1,0,0, + 0,3076,3077,5,79,0,0,3077,3078,5,82,0,0,3078,606,1,0,0,0,3079,3080,5,79, + 0,0,3080,3081,5,82,0,0,3081,3082,5,68,0,0,3082,3083,5,69,0,0,3083,3084, + 5,82,0,0,3084,608,1,0,0,0,3085,3086,5,79,0,0,3086,3087,5,85,0,0,3087,3088, + 5,84,0,0,3088,610,1,0,0,0,3089,3090,5,79,0,0,3090,3091,5,85,0,0,3091,3092, + 5,84,0,0,3092,3093,5,69,0,0,3093,3094,5,82,0,0,3094,612,1,0,0,0,3095,3096, + 5,79,0,0,3096,3097,5,86,0,0,3097,3098,5,69,0,0,3098,3099,5,82,0,0,3099, + 614,1,0,0,0,3100,3101,5,79,0,0,3101,3102,5,86,0,0,3102,3103,5,69,0,0,3103, + 3104,5,82,0,0,3104,3105,5,76,0,0,3105,3106,5,65,0,0,3106,3107,5,89,0,0, + 3107,616,1,0,0,0,3108,3109,5,80,0,0,3109,3110,5,65,0,0,3110,3111,5,82,0, + 0,3111,3112,5,84,0,0,3112,3113,5,73,0,0,3113,3114,5,84,0,0,3114,3115,5, + 73,0,0,3115,3116,5,79,0,0,3116,3117,5,78,0,0,3117,618,1,0,0,0,3118,3119, + 5,80,0,0,3119,3120,5,65,0,0,3120,3121,5,84,0,0,3121,3122,5,84,0,0,3122, + 3123,5,69,0,0,3123,3124,5,82,0,0,3124,3125,5,78,0,0,3125,620,1,0,0,0,3126, + 3127,5,80,0,0,3127,3128,5,69,0,0,3128,3129,5,82,0,0,3129,622,1,0,0,0,3130, + 3131,5,80,0,0,3131,3132,5,69,0,0,3132,3133,5,82,0,0,3133,3134,5,67,0,0, + 3134,3135,5,69,0,0,3135,3136,5,78,0,0,3136,3137,5,84,0,0,3137,624,1,0,0, + 0,3138,3139,5,80,0,0,3139,3140,5,69,0,0,3140,3141,5,82,0,0,3141,3142,5, + 73,0,0,3142,3143,5,79,0,0,3143,3144,5,68,0,0,3144,626,1,0,0,0,3145,3146, + 5,80,0,0,3146,3147,5,79,0,0,3147,3148,5,83,0,0,3148,3149,5,73,0,0,3149, + 3150,5,84,0,0,3150,3151,5,73,0,0,3151,3152,5,79,0,0,3152,3153,5,78,0,0, + 3153,628,1,0,0,0,3154,3155,5,80,0,0,3155,3156,5,79,0,0,3156,3157,5,87,0, + 0,3157,3158,5,69,0,0,3158,3159,5,82,0,0,3159,630,1,0,0,0,3160,3161,5,80, + 0,0,3161,3162,5,82,0,0,3162,3163,5,73,0,0,3163,3164,5,77,0,0,3164,3165, + 5,65,0,0,3165,3166,5,82,0,0,3166,3167,5,89,0,0,3167,632,1,0,0,0,3168,3169, + 5,82,0,0,3169,3170,5,65,0,0,3170,3171,5,78,0,0,3171,3172,5,71,0,0,3172, + 3173,5,69,0,0,3173,634,1,0,0,0,3174,3175,5,82,0,0,3175,3176,5,65,0,0,3176, + 3177,5,78,0,0,3177,3178,5,75,0,0,3178,636,1,0,0,0,3179,3180,5,82,0,0,3180, + 3181,5,69,0,0,3181,3182,5,83,0,0,3182,3183,5,69,0,0,3183,3184,5,84,0,0, + 3184,638,1,0,0,0,3185,3186,5,82,0,0,3186,3187,5,69,0,0,3187,3188,5,86,0, + 0,3188,3189,5,79,0,0,3189,3190,5,75,0,0,3190,3191,5,69,0,0,3191,640,1,0, + 0,0,3192,3193,5,82,0,0,3193,3194,5,73,0,0,3194,3195,5,71,0,0,3195,3196, + 5,72,0,0,3196,3197,5,84,0,0,3197,642,1,0,0,0,3198,3199,5,82,0,0,3199,3200, + 5,76,0,0,3200,3201,5,73,0,0,3201,3202,5,75,0,0,3202,3203,5,69,0,0,3203, + 644,1,0,0,0,3204,3205,5,82,0,0,3205,3206,5,79,0,0,3206,3207,5,76,0,0,3207, + 3208,5,76,0,0,3208,3209,5,66,0,0,3209,3210,5,65,0,0,3210,3211,5,67,0,0, + 3211,3212,5,75,0,0,3212,646,1,0,0,0,3213,3214,5,82,0,0,3214,3215,5,79,0, + 0,3215,3216,5,76,0,0,3216,3217,5,76,0,0,3217,3218,5,85,0,0,3218,3219,5, + 80,0,0,3219,648,1,0,0,0,3220,3221,5,82,0,0,3221,3222,5,79,0,0,3222,3223, + 5,87,0,0,3223,650,1,0,0,0,3224,3225,5,82,0,0,3225,3226,5,79,0,0,3226,3227, + 5,87,0,0,3227,3228,5,83,0,0,3228,652,1,0,0,0,3229,3230,5,83,0,0,3230,3231, + 5,69,0,0,3231,3232,5,67,0,0,3232,3233,5,79,0,0,3233,3234,5,78,0,0,3234, + 3235,5,68,0,0,3235,654,1,0,0,0,3236,3237,5,83,0,0,3237,3238,5,69,0,0,3238, + 3239,5,76,0,0,3239,3240,5,69,0,0,3240,3241,5,67,0,0,3241,3242,5,84,0,0, + 3242,656,1,0,0,0,3243,3244,5,83,0,0,3244,3245,5,69,0,0,3245,3246,5,84,0, + 0,3246,658,1,0,0,0,3247,3248,5,83,0,0,3248,3249,5,72,0,0,3249,3250,5,79, + 0,0,3250,3251,5,87,0,0,3251,660,1,0,0,0,3252,3253,5,83,0,0,3253,3254,5, + 73,0,0,3254,3255,5,77,0,0,3255,3256,5,73,0,0,3256,3257,5,76,0,0,3257,3258, + 5,65,0,0,3258,3259,5,82,0,0,3259,662,1,0,0,0,3260,3261,5,83,0,0,3261,3262, + 5,75,0,0,3262,3263,5,73,0,0,3263,3264,5,80,0,0,3264,664,1,0,0,0,3265,3266, + 5,83,0,0,3266,3267,5,77,0,0,3267,3268,5,65,0,0,3268,3269,5,76,0,0,3269, + 3270,5,76,0,0,3270,3271,5,73,0,0,3271,3272,5,78,0,0,3272,3273,5,84,0,0, + 3273,666,1,0,0,0,3274,3275,5,83,0,0,3275,3276,5,84,0,0,3276,3277,5,65,0, + 0,3277,3278,5,82,0,0,3278,3279,5,84,0,0,3279,668,1,0,0,0,3280,3281,5,83, + 0,0,3281,3282,5,84,0,0,3282,3283,5,65,0,0,3283,3284,5,84,0,0,3284,3285, + 5,73,0,0,3285,3286,5,67,0,0,3286,670,1,0,0,0,3287,3288,5,83,0,0,3288,3289, + 5,85,0,0,3289,3290,5,66,0,0,3290,3291,5,83,0,0,3291,3292,5,84,0,0,3292, + 3293,5,82,0,0,3293,3294,5,73,0,0,3294,3295,5,78,0,0,3295,3296,5,71,0,0, + 3296,672,1,0,0,0,3297,3298,5,83,0,0,3298,3299,5,85,0,0,3299,3300,5,77,0, + 0,3300,674,1,0,0,0,3301,3302,5,83,0,0,3302,3303,5,89,0,0,3303,3304,5,77, + 0,0,3304,3305,5,77,0,0,3305,3306,5,69,0,0,3306,3307,5,84,0,0,3307,3308, + 5,82,0,0,3308,3309,5,73,0,0,3309,3310,5,67,0,0,3310,676,1,0,0,0,3311,3312, + 5,83,0,0,3312,3313,5,89,0,0,3313,3314,5,83,0,0,3314,3315,5,84,0,0,3315, + 3316,5,69,0,0,3316,3317,5,77,0,0,3317,678,1,0,0,0,3318,3319,5,83,0,0,3319, + 3320,5,89,0,0,3320,3321,5,83,0,0,3321,3322,5,84,0,0,3322,3323,5,69,0,0, + 3323,3324,5,77,0,0,3324,3325,5,95,0,0,3325,3326,5,84,0,0,3326,3327,5,73, + 0,0,3327,3328,5,77,0,0,3328,3329,5,69,0,0,3329,680,1,0,0,0,3330,3331,5, + 83,0,0,3331,3332,5,89,0,0,3332,3333,5,83,0,0,3333,3334,5,84,0,0,3334,3335, + 5,69,0,0,3335,3336,5,77,0,0,3336,3337,5,95,0,0,3337,3338,5,85,0,0,3338, + 3339,5,83,0,0,3339,3340,5,69,0,0,3340,3341,5,82,0,0,3341,682,1,0,0,0,3342, + 3343,5,84,0,0,3343,3344,5,65,0,0,3344,3345,5,66,0,0,3345,3346,5,76,0,0, + 3346,3347,5,69,0,0,3347,684,1,0,0,0,3348,3349,5,84,0,0,3349,3350,5,65,0, + 0,3350,3351,5,66,0,0,3351,3352,5,76,0,0,3352,3353,5,69,0,0,3353,3354,5, + 83,0,0,3354,3355,5,65,0,0,3355,3356,5,77,0,0,3356,3357,5,80,0,0,3357,3358, + 5,76,0,0,3358,3359,5,69,0,0,3359,686,1,0,0,0,3360,3361,5,84,0,0,3361,3362, + 5,72,0,0,3362,3363,5,69,0,0,3363,3364,5,78,0,0,3364,688,1,0,0,0,3365,3366, + 5,84,0,0,3366,3367,5,73,0,0,3367,3368,5,77,0,0,3368,3369,5,69,0,0,3369, + 690,1,0,0,0,3370,3371,5,84,0,0,3371,3372,5,73,0,0,3372,3373,5,77,0,0,3373, + 3374,5,69,0,0,3374,3375,5,83,0,0,3375,3376,5,84,0,0,3376,3377,5,65,0,0, + 3377,3378,5,77,0,0,3378,3379,5,80,0,0,3379,692,1,0,0,0,3380,3381,5,84,0, + 0,3381,3382,5,73,0,0,3382,3383,5,78,0,0,3383,3384,5,89,0,0,3384,3385,5, + 73,0,0,3385,3386,5,78,0,0,3386,3387,5,84,0,0,3387,694,1,0,0,0,3388,3389, + 5,84,0,0,3389,3390,5,79,0,0,3390,696,1,0,0,0,3391,3392,5,84,0,0,3392,3393, + 5,82,0,0,3393,3394,5,85,0,0,3394,3395,5,69,0,0,3395,698,1,0,0,0,3396,3397, + 5,84,0,0,3397,3398,5,82,0,0,3398,3399,5,85,0,0,3399,3400,5,78,0,0,3400, + 3401,5,67,0,0,3401,3402,5,65,0,0,3402,3403,5,84,0,0,3403,3404,5,69,0,0, + 3404,700,1,0,0,0,3405,3406,5,85,0,0,3406,3407,5,78,0,0,3407,3408,5,73,0, + 0,3408,3409,5,79,0,0,3409,3410,5,78,0,0,3410,702,1,0,0,0,3411,3412,5,85, + 0,0,3412,3413,5,78,0,0,3413,3414,5,73,0,0,3414,3415,5,81,0,0,3415,3416, + 5,85,0,0,3416,3417,5,69,0,0,3417,704,1,0,0,0,3418,3419,5,85,0,0,3419,3420, + 5,78,0,0,3420,3421,5,75,0,0,3421,3422,5,78,0,0,3422,3423,5,79,0,0,3423, + 3424,5,87,0,0,3424,3425,5,78,0,0,3425,706,1,0,0,0,3426,3427,5,85,0,0,3427, + 3428,5,78,0,0,3428,3429,5,78,0,0,3429,3430,5,69,0,0,3430,3431,5,83,0,0, + 3431,3432,5,84,0,0,3432,708,1,0,0,0,3433,3434,5,85,0,0,3434,3435,5,80,0, + 0,3435,3436,5,80,0,0,3436,3437,5,69,0,0,3437,3438,5,82,0,0,3438,710,1,0, + 0,0,3439,3440,5,85,0,0,3440,3441,5,80,0,0,3441,3442,5,83,0,0,3442,3443, + 5,69,0,0,3443,3444,5,82,0,0,3444,3445,5,84,0,0,3445,712,1,0,0,0,3446,3447, + 5,85,0,0,3447,3448,5,83,0,0,3448,3449,5,69,0,0,3449,3450,5,82,0,0,3450, + 714,1,0,0,0,3451,3452,5,85,0,0,3452,3453,5,83,0,0,3453,3454,5,73,0,0,3454, + 3455,5,78,0,0,3455,3456,5,71,0,0,3456,716,1,0,0,0,3457,3458,5,86,0,0,3458, + 3459,5,65,0,0,3459,3460,5,76,0,0,3460,3461,5,85,0,0,3461,3462,5,69,0,0, + 3462,718,1,0,0,0,3463,3464,5,86,0,0,3464,3465,5,65,0,0,3465,3466,5,76,0, + 0,3466,3467,5,85,0,0,3467,3468,5,69,0,0,3468,3469,5,83,0,0,3469,720,1,0, + 0,0,3470,3471,5,86,0,0,3471,3472,5,65,0,0,3472,3473,5,82,0,0,3473,3474, + 5,66,0,0,3474,3475,5,73,0,0,3475,3476,5,78,0,0,3476,3477,5,65,0,0,3477, + 3478,5,82,0,0,3478,3479,5,89,0,0,3479,722,1,0,0,0,3480,3481,5,86,0,0,3481, + 3482,5,65,0,0,3482,3483,5,82,0,0,3483,3484,5,67,0,0,3484,3485,5,72,0,0, + 3485,3486,5,65,0,0,3486,3487,5,82,0,0,3487,724,1,0,0,0,3488,3489,5,87,0, + 0,3489,3490,5,72,0,0,3490,3491,5,69,0,0,3491,3492,5,78,0,0,3492,726,1,0, + 0,0,3493,3494,5,87,0,0,3494,3495,5,72,0,0,3495,3496,5,69,0,0,3496,3497, + 5,82,0,0,3497,3498,5,69,0,0,3498,728,1,0,0,0,3499,3500,5,87,0,0,3500,3501, + 5,73,0,0,3501,3502,5,78,0,0,3502,3503,5,68,0,0,3503,3504,5,79,0,0,3504, + 3505,5,87,0,0,3505,730,1,0,0,0,3506,3507,5,87,0,0,3507,3508,5,73,0,0,3508, + 3509,5,84,0,0,3509,3510,5,72,0,0,3510,732,1,0,0,0,3511,3512,5,87,0,0,3512, + 3513,5,73,0,0,3513,3514,5,84,0,0,3514,3515,5,72,0,0,3515,3516,5,73,0,0, + 3516,3517,5,78,0,0,3517,734,1,0,0,0,3518,3519,5,87,0,0,3519,3520,5,73,0, + 0,3520,3521,5,84,0,0,3521,3522,5,72,0,0,3522,3523,5,79,0,0,3523,3524,5, + 85,0,0,3524,3525,5,84,0,0,3525,736,1,0,0,0,3526,3527,5,89,0,0,3527,3528, + 5,69,0,0,3528,3529,5,65,0,0,3529,3530,5,82,0,0,3530,738,1,0,0,0,3531,3532, + 5,61,0,0,3532,740,1,0,0,0,3533,3534,5,62,0,0,3534,742,1,0,0,0,3535,3536, + 5,60,0,0,3536,744,1,0,0,0,3537,3538,5,33,0,0,3538,746,1,0,0,0,3539,3540, + 5,126,0,0,3540,748,1,0,0,0,3541,3542,5,124,0,0,3542,750,1,0,0,0,3543,3544, + 5,38,0,0,3544,752,1,0,0,0,3545,3546,5,94,0,0,3546,754,1,0,0,0,3547,3548, + 5,46,0,0,3548,756,1,0,0,0,3549,3550,5,91,0,0,3550,758,1,0,0,0,3551,3552, + 5,93,0,0,3552,760,1,0,0,0,3553,3554,5,40,0,0,3554,762,1,0,0,0,3555,3556, + 5,41,0,0,3556,764,1,0,0,0,3557,3558,5,123,0,0,3558,766,1,0,0,0,3559,3560, + 5,125,0,0,3560,768,1,0,0,0,3561,3562,5,44,0,0,3562,770,1,0,0,0,3563,3564, + 5,59,0,0,3564,772,1,0,0,0,3565,3566,5,64,0,0,3566,774,1,0,0,0,3567,3568, + 5,39,0,0,3568,776,1,0,0,0,3569,3570,5,34,0,0,3570,778,1,0,0,0,3571,3572, + 5,96,0,0,3572,780,1,0,0,0,3573,3574,5,58,0,0,3574,782,1,0,0,0,3575,3576, + 5,42,0,0,3576,784,1,0,0,0,3577,3578,5,95,0,0,3578,786,1,0,0,0,3579,3580, + 5,45,0,0,3580,788,1,0,0,0,3581,3582,5,43,0,0,3582,790,1,0,0,0,3583,3584, + 5,37,0,0,3584,792,1,0,0,0,3585,3586,5,124,0,0,3586,3587,5,124,0,0,3587, + 794,1,0,0,0,3588,3589,5,45,0,0,3589,3590,5,45,0,0,3590,796,1,0,0,0,3591, + 3592,5,47,0,0,3592,798,1,0,0,0,3593,3594,5,63,0,0,3594,800,1,0,0,0,3595, + 3596,5,61,0,0,3596,3597,5,62,0,0,3597,802,1,0,0,0,3598,3602,3,827,413,0, + 3599,3602,3,829,414,0,3600,3602,3,833,416,0,3601,3598,1,0,0,0,3601,3599, + 1,0,0,0,3601,3600,1,0,0,0,3602,804,1,0,0,0,3603,3605,3,823,411,0,3604,3603, + 1,0,0,0,3605,3606,1,0,0,0,3606,3604,1,0,0,0,3606,3607,1,0,0,0,3607,806, + 1,0,0,0,3608,3610,3,823,411,0,3609,3608,1,0,0,0,3610,3611,1,0,0,0,3611, + 3609,1,0,0,0,3611,3612,1,0,0,0,3612,3614,1,0,0,0,3613,3609,1,0,0,0,3613, + 3614,1,0,0,0,3614,3615,1,0,0,0,3615,3617,5,46,0,0,3616,3618,3,823,411,0, + 3617,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3617,1,0,0,0,3619,3620,1,0,0,0, + 3620,3652,1,0,0,0,3621,3623,3,823,411,0,3622,3621,1,0,0,0,3623,3624,1,0, + 0,0,3624,3622,1,0,0,0,3624,3625,1,0,0,0,3625,3626,1,0,0,0,3626,3627,5,46, + 0,0,3627,3628,3,819,409,0,3628,3652,1,0,0,0,3629,3631,3,823,411,0,3630, + 3629,1,0,0,0,3631,3632,1,0,0,0,3632,3630,1,0,0,0,3632,3633,1,0,0,0,3633, + 3635,1,0,0,0,3634,3630,1,0,0,0,3634,3635,1,0,0,0,3635,3636,1,0,0,0,3636, + 3638,5,46,0,0,3637,3639,3,823,411,0,3638,3637,1,0,0,0,3639,3640,1,0,0,0, + 3640,3638,1,0,0,0,3640,3641,1,0,0,0,3641,3642,1,0,0,0,3642,3643,3,819,409, + 0,3643,3652,1,0,0,0,3644,3646,3,823,411,0,3645,3644,1,0,0,0,3646,3647,1, + 0,0,0,3647,3645,1,0,0,0,3647,3648,1,0,0,0,3648,3649,1,0,0,0,3649,3650,3, + 819,409,0,3650,3652,1,0,0,0,3651,3613,1,0,0,0,3651,3622,1,0,0,0,3651,3634, + 1,0,0,0,3651,3645,1,0,0,0,3652,808,1,0,0,0,3653,3654,3,831,415,0,3654,810, + 1,0,0,0,3655,3656,3,821,410,0,3656,812,1,0,0,0,3657,3658,3,815,407,0,3658, + 814,1,0,0,0,3659,3663,7,2,0,0,3660,3662,8,3,0,0,3661,3660,1,0,0,0,3662, + 3665,1,0,0,0,3663,3661,1,0,0,0,3663,3664,1,0,0,0,3664,3667,1,0,0,0,3665, + 3663,1,0,0,0,3666,3659,1,0,0,0,3667,3668,1,0,0,0,3668,3666,1,0,0,0,3668, + 3669,1,0,0,0,3669,816,1,0,0,0,3670,3678,5,96,0,0,3671,3672,5,92,0,0,3672, + 3677,9,0,0,0,3673,3674,5,96,0,0,3674,3677,5,96,0,0,3675,3677,8,4,0,0,3676, + 3671,1,0,0,0,3676,3673,1,0,0,0,3676,3675,1,0,0,0,3677,3680,1,0,0,0,3678, + 3676,1,0,0,0,3678,3679,1,0,0,0,3679,3681,1,0,0,0,3680,3678,1,0,0,0,3681, + 3682,5,96,0,0,3682,818,1,0,0,0,3683,3685,5,69,0,0,3684,3686,7,5,0,0,3685, + 3684,1,0,0,0,3685,3686,1,0,0,0,3686,3688,1,0,0,0,3687,3689,3,823,411,0, + 3688,3687,1,0,0,0,3689,3690,1,0,0,0,3690,3688,1,0,0,0,3690,3691,1,0,0,0, + 3691,820,1,0,0,0,3692,3694,7,6,0,0,3693,3692,1,0,0,0,3694,3697,1,0,0,0, + 3695,3696,1,0,0,0,3695,3693,1,0,0,0,3696,3699,1,0,0,0,3697,3695,1,0,0,0, + 3698,3700,7,7,0,0,3699,3698,1,0,0,0,3700,3701,1,0,0,0,3701,3702,1,0,0,0, + 3701,3699,1,0,0,0,3702,3706,1,0,0,0,3703,3705,7,6,0,0,3704,3703,1,0,0,0, + 3705,3708,1,0,0,0,3706,3704,1,0,0,0,3706,3707,1,0,0,0,3707,822,1,0,0,0, + 3708,3706,1,0,0,0,3709,3710,7,8,0,0,3710,824,1,0,0,0,3711,3712,7,9,0,0, + 3712,826,1,0,0,0,3713,3721,5,34,0,0,3714,3715,5,92,0,0,3715,3720,9,0,0, + 0,3716,3717,5,34,0,0,3717,3720,5,34,0,0,3718,3720,8,10,0,0,3719,3714,1, + 0,0,0,3719,3716,1,0,0,0,3719,3718,1,0,0,0,3720,3723,1,0,0,0,3721,3719,1, + 0,0,0,3721,3722,1,0,0,0,3722,3724,1,0,0,0,3723,3721,1,0,0,0,3724,3725,5, + 34,0,0,3725,828,1,0,0,0,3726,3734,5,39,0,0,3727,3728,5,92,0,0,3728,3733, + 9,0,0,0,3729,3730,5,39,0,0,3730,3733,5,39,0,0,3731,3733,8,11,0,0,3732,3727, + 1,0,0,0,3732,3729,1,0,0,0,3732,3731,1,0,0,0,3733,3736,1,0,0,0,3734,3732, + 1,0,0,0,3734,3735,1,0,0,0,3735,3737,1,0,0,0,3736,3734,1,0,0,0,3737,3738, + 5,39,0,0,3738,830,1,0,0,0,3739,3740,5,66,0,0,3740,3742,5,39,0,0,3741,3743, + 7,12,0,0,3742,3741,1,0,0,0,3743,3744,1,0,0,0,3744,3742,1,0,0,0,3744,3745, + 1,0,0,0,3745,3746,1,0,0,0,3746,3747,5,39,0,0,3747,832,1,0,0,0,3748,3756, + 5,96,0,0,3749,3750,5,92,0,0,3750,3755,9,0,0,0,3751,3752,5,96,0,0,3752,3755, + 5,96,0,0,3753,3755,8,4,0,0,3754,3749,1,0,0,0,3754,3751,1,0,0,0,3754,3753, + 1,0,0,0,3755,3758,1,0,0,0,3756,3754,1,0,0,0,3756,3757,1,0,0,0,3757,3759, + 1,0,0,0,3758,3756,1,0,0,0,3759,3760,5,96,0,0,3760,834,1,0,0,0,37,0,838, + 848,859,864,868,872,878,882,884,3601,3606,3611,3613,3619,3624,3632,3634, + 3640,3647,3651,3663,3668,3676,3678,3685,3690,3695,3701,3706,3719,3721,3732, + 3734,3744,3754,3756,1,0,1,0]; private static __ATN: ATN; public static get _ATN(): ATN { diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index b440909..08f4108 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -183,6 +183,7 @@ null 'ARE' 'ARRAY' 'AS' +'ASYMMETRIC' 'AT' 'AVG' 'BEGIN' @@ -238,6 +239,7 @@ null 'ELSE' 'END' 'EQUALS' +'ESCAPE' 'EXCEPT' 'EXECUTE' 'EXISTS' @@ -312,6 +314,7 @@ null 'PERCENT' 'PERIOD' 'POSITION' +'POWER' 'PRIMARY' 'RANGE' 'RANK' @@ -327,12 +330,14 @@ null 'SELECT' 'SET' 'SHOW' +'SIMILAR' 'SKIP' 'SMALLINT' 'START' 'STATIC' 'SUBSTRING' 'SUM' +'SYMMETRIC' 'SYSTEM' 'SYSTEM_TIME' 'SYSTEM_USER' @@ -581,13 +586,14 @@ KW_YEARS KW_ZONE KW_ABS KW_ALL -ALLOW +KW_ALLOW KW_ALTER KW_AND KW_ANY KW_ARE KW_ARRAY KW_AS +KW_ASYMMETRIC KW_AT KW_AVG KW_BEGIN @@ -643,6 +649,7 @@ KW_EACH KW_ELSE KW_END KW_EQUALS +KW_ESCAPE KW_EXCEPT KW_EXECUTE KW_EXISTS @@ -717,6 +724,7 @@ KW_PER KW_PERCENT KW_PERIOD KW_POSITION +KW_POWER KW_PRIMARY KW_RANGE KW_RANK @@ -732,12 +740,14 @@ KW_SECOND KW_SELECT KW_SET KW_SHOW +KW_SIMILAR KW_SKIP KW_SMALLINT KW_START KW_STATIC KW_SUBSTRING KW_SUM +KW_SYMMETRIC KW_SYSTEM KW_SYSTEM_TIME KW_SYSTEM_USER @@ -984,9 +994,10 @@ stringLiteral decimalLiteral booleanLiteral setQuantifier +reservedKeywordsUsedAsFunctionName reservedKeywords nonReservedKeywords atn: -[4, 1, 402, 2144, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 363, 8, 2, 1, 2, 5, 2, 366, 8, 2, 10, 2, 12, 2, 369, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 383, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 401, 8, 5, 1, 6, 1, 6, 3, 6, 405, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 414, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 419, 8, 8, 1, 9, 1, 9, 1, 9, 5, 9, 424, 8, 9, 10, 9, 12, 9, 427, 9, 9, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 433, 8, 11, 1, 11, 1, 11, 3, 11, 437, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 444, 8, 12, 10, 12, 12, 12, 447, 9, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 458, 8, 13, 1, 13, 3, 13, 461, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 468, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 476, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 481, 8, 13, 1, 13, 3, 13, 484, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 491, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 499, 8, 16, 1, 17, 1, 17, 3, 17, 503, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 515, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 523, 8, 19, 1, 19, 1, 19, 3, 19, 527, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 548, 8, 19, 1, 20, 1, 20, 3, 20, 552, 8, 20, 1, 21, 1, 21, 3, 21, 556, 8, 21, 1, 21, 1, 21, 3, 21, 560, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 567, 8, 21, 10, 21, 12, 21, 570, 9, 21, 1, 21, 1, 21, 3, 21, 574, 8, 21, 1, 21, 1, 21, 3, 21, 578, 8, 21, 1, 21, 1, 21, 3, 21, 582, 8, 21, 1, 21, 1, 21, 3, 21, 586, 8, 21, 1, 21, 3, 21, 589, 8, 21, 1, 21, 1, 21, 3, 21, 593, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 598, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 604, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 609, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 614, 8, 24, 1, 24, 3, 24, 617, 8, 24, 1, 25, 1, 25, 3, 25, 621, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 627, 8, 26, 10, 26, 12, 26, 630, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 637, 8, 27, 1, 27, 1, 27, 3, 27, 641, 8, 27, 1, 27, 1, 27, 3, 27, 645, 8, 27, 1, 27, 1, 27, 3, 27, 649, 8, 27, 1, 27, 1, 27, 3, 27, 653, 8, 27, 1, 27, 1, 27, 3, 27, 657, 8, 27, 1, 27, 1, 27, 3, 27, 661, 8, 27, 1, 27, 1, 27, 3, 27, 665, 8, 27, 1, 27, 1, 27, 3, 27, 669, 8, 27, 3, 27, 671, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 681, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 689, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 711, 8, 33, 10, 33, 12, 33, 714, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 720, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 726, 8, 34, 1, 34, 3, 34, 729, 8, 34, 1, 34, 3, 34, 732, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 742, 8, 36, 1, 36, 3, 36, 745, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 753, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 765, 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, 787, 8, 45, 10, 45, 12, 45, 790, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 800, 8, 46, 10, 46, 12, 46, 803, 9, 46, 1, 46, 1, 46, 3, 46, 807, 8, 46, 1, 47, 1, 47, 3, 47, 811, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 817, 8, 48, 10, 48, 12, 48, 820, 9, 48, 1, 48, 3, 48, 823, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 831, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 841, 8, 52, 1, 52, 1, 52, 3, 52, 845, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 851, 8, 53, 1, 53, 1, 53, 3, 53, 855, 8, 53, 1, 53, 1, 53, 3, 53, 859, 8, 53, 1, 53, 3, 53, 862, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 871, 8, 54, 1, 54, 1, 54, 3, 54, 875, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 882, 8, 54, 1, 54, 3, 54, 885, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 893, 8, 55, 10, 55, 12, 55, 896, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 903, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 911, 8, 57, 1, 58, 1, 58, 3, 58, 915, 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, 930, 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, 949, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 960, 8, 66, 1, 66, 1, 66, 3, 66, 964, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 971, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 976, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 982, 8, 68, 1, 68, 1, 68, 3, 68, 986, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 993, 8, 69, 1, 69, 1, 69, 3, 69, 997, 8, 69, 1, 70, 1, 70, 3, 70, 1001, 8, 70, 1, 70, 1, 70, 3, 70, 1005, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1013, 8, 71, 1, 71, 1, 71, 3, 71, 1017, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1022, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1028, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1034, 8, 73, 1, 73, 3, 73, 1037, 8, 73, 1, 73, 1, 73, 3, 73, 1041, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1050, 8, 75, 10, 75, 12, 75, 1053, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1059, 8, 76, 10, 76, 12, 76, 1062, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1073, 8, 77, 11, 77, 12, 77, 1074, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1085, 8, 78, 11, 78, 12, 78, 1086, 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, 1102, 8, 79, 1, 79, 3, 79, 1105, 8, 79, 1, 79, 1, 79, 3, 79, 1109, 8, 79, 1, 79, 3, 79, 1112, 8, 79, 3, 79, 1114, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1119, 8, 79, 1, 79, 1, 79, 3, 79, 1123, 8, 79, 1, 79, 3, 79, 1126, 8, 79, 5, 79, 1128, 8, 79, 10, 79, 12, 79, 1131, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1137, 8, 80, 10, 80, 12, 80, 1140, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1146, 8, 81, 10, 81, 12, 81, 1149, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1156, 8, 82, 10, 82, 12, 82, 1159, 9, 82, 1, 82, 1, 82, 3, 82, 1163, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 1175, 8, 84, 1, 84, 3, 84, 1178, 8, 84, 1, 84, 3, 84, 1181, 8, 84, 1, 84, 3, 84, 1184, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1190, 8, 84, 1, 85, 1, 85, 3, 85, 1194, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1200, 8, 85, 10, 85, 12, 85, 1203, 9, 85, 3, 85, 1205, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1210, 8, 86, 1, 86, 3, 86, 1213, 8, 86, 3, 86, 1215, 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, 1229, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1238, 8, 89, 10, 89, 12, 89, 1241, 9, 89, 1, 89, 1, 89, 3, 89, 1245, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1253, 8, 89, 1, 89, 3, 89, 1256, 8, 89, 1, 89, 3, 89, 1259, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1264, 8, 89, 5, 89, 1266, 8, 89, 10, 89, 12, 89, 1269, 9, 89, 1, 90, 1, 90, 3, 90, 1273, 8, 90, 1, 91, 3, 91, 1276, 8, 91, 1, 91, 1, 91, 3, 91, 1280, 8, 91, 1, 91, 3, 91, 1283, 8, 91, 1, 91, 3, 91, 1286, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1296, 8, 91, 10, 91, 12, 91, 1299, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1305, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1316, 8, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1343, 8, 97, 10, 97, 12, 97, 1346, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1367, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1383, 8, 102, 10, 102, 12, 102, 1386, 9, 102, 1, 102, 1, 102, 3, 102, 1390, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1400, 8, 104, 10, 104, 12, 104, 1403, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1413, 8, 105, 10, 105, 12, 105, 1416, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1425, 8, 105, 10, 105, 12, 105, 1428, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1437, 8, 105, 10, 105, 12, 105, 1440, 9, 105, 1, 105, 1, 105, 3, 105, 1444, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1469, 8, 112, 10, 112, 12, 112, 1472, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1479, 8, 114, 1, 114, 1, 114, 3, 114, 1483, 8, 114, 1, 114, 3, 114, 1486, 8, 114, 1, 114, 3, 114, 1489, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1496, 8, 115, 1, 115, 3, 115, 1499, 8, 115, 1, 115, 3, 115, 1502, 8, 115, 1, 115, 3, 115, 1505, 8, 115, 1, 115, 3, 115, 1508, 8, 115, 1, 115, 3, 115, 1511, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1516, 8, 115, 1, 115, 3, 115, 1519, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1526, 8, 116, 10, 116, 12, 116, 1529, 9, 116, 1, 117, 1, 117, 3, 117, 1533, 8, 117, 1, 117, 1, 117, 3, 117, 1537, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1542, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1549, 8, 119, 10, 119, 12, 119, 1552, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1570, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1576, 8, 121, 10, 121, 12, 121, 1579, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1584, 8, 122, 11, 122, 12, 122, 1585, 1, 122, 1, 122, 3, 122, 1590, 8, 122, 1, 123, 1, 123, 3, 123, 1594, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1604, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1630, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1636, 8, 126, 10, 126, 12, 126, 1639, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1650, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1672, 8, 131, 3, 131, 1674, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1682, 8, 131, 10, 131, 12, 131, 1685, 9, 131, 1, 132, 3, 132, 1688, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1696, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1703, 8, 132, 10, 132, 12, 132, 1706, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1711, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1724, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1729, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1739, 8, 132, 10, 132, 12, 132, 1742, 9, 132, 1, 132, 1, 132, 3, 132, 1746, 8, 132, 1, 132, 3, 132, 1749, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1755, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1760, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1765, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1770, 8, 132, 1, 133, 3, 133, 1773, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1783, 8, 133, 10, 133, 12, 133, 1786, 9, 133, 1, 133, 1, 133, 3, 133, 1790, 8, 133, 1, 133, 3, 133, 1793, 8, 133, 1, 133, 1, 133, 3, 133, 1797, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1803, 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, 5, 134, 1824, 8, 134, 10, 134, 12, 134, 1827, 9, 134, 1, 135, 1, 135, 1, 135, 4, 135, 1832, 8, 135, 11, 135, 12, 135, 1833, 1, 135, 1, 135, 3, 135, 1838, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 1845, 8, 135, 11, 135, 12, 135, 1846, 1, 135, 1, 135, 3, 135, 1851, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1867, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1876, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1900, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1905, 8, 135, 10, 135, 12, 135, 1908, 9, 135, 3, 135, 1910, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1920, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1927, 8, 135, 10, 135, 12, 135, 1930, 9, 135, 1, 136, 1, 136, 1, 136, 3, 136, 1935, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 1943, 8, 139, 1, 140, 1, 140, 1, 140, 3, 140, 1948, 8, 140, 1, 141, 1, 141, 3, 141, 1952, 8, 141, 1, 142, 1, 142, 1, 142, 4, 142, 1957, 8, 142, 11, 142, 12, 142, 1958, 1, 143, 1, 143, 1, 143, 3, 143, 1964, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 3, 145, 1972, 8, 145, 1, 145, 1, 145, 3, 145, 1976, 8, 145, 1, 146, 1, 146, 3, 146, 1980, 8, 146, 1, 147, 3, 147, 1983, 8, 147, 1, 147, 1, 147, 3, 147, 1987, 8, 147, 1, 148, 3, 148, 1990, 8, 148, 1, 148, 1, 148, 3, 148, 1994, 8, 148, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 4, 150, 2001, 8, 150, 11, 150, 12, 150, 2002, 1, 150, 3, 150, 2006, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 5, 152, 2015, 8, 152, 10, 152, 12, 152, 2018, 9, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2023, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 5, 157, 2037, 8, 157, 10, 157, 12, 157, 2040, 9, 157, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2056, 8, 161, 10, 161, 12, 161, 2059, 9, 161, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2065, 8, 162, 1, 162, 3, 162, 2068, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2073, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2079, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2087, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2103, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2112, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2127, 8, 170, 1, 170, 3, 170, 2130, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 2038, 5, 158, 178, 262, 268, 270, 177, 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, 0, 41, 2, 0, 30, 30, 231, 231, 3, 0, 16, 16, 37, 37, 67, 67, 4, 0, 13, 13, 26, 26, 64, 64, 166, 166, 2, 0, 12, 12, 25, 25, 2, 0, 248, 248, 259, 259, 2, 0, 165, 165, 337, 337, 2, 0, 4, 4, 117, 117, 1, 0, 107, 111, 3, 0, 192, 192, 222, 222, 295, 295, 11, 0, 10, 10, 145, 145, 151, 151, 188, 189, 201, 201, 223, 223, 264, 265, 329, 329, 340, 340, 342, 342, 356, 357, 2, 0, 361, 361, 363, 363, 4, 0, 225, 226, 233, 233, 246, 246, 296, 296, 2, 0, 182, 182, 289, 289, 2, 0, 40, 40, 260, 260, 3, 0, 21, 21, 95, 95, 176, 176, 3, 0, 40, 40, 93, 93, 260, 260, 3, 0, 52, 52, 89, 89, 169, 169, 3, 0, 65, 65, 106, 106, 125, 125, 2, 0, 11, 11, 122, 122, 2, 0, 92, 92, 268, 268, 3, 0, 239, 239, 266, 266, 346, 346, 4, 0, 249, 249, 261, 261, 275, 275, 318, 318, 3, 0, 23, 23, 56, 56, 155, 155, 5, 0, 24, 24, 138, 139, 144, 144, 150, 150, 298, 298, 2, 0, 218, 218, 321, 321, 3, 0, 56, 56, 135, 135, 155, 155, 2, 0, 8, 8, 30, 30, 2, 0, 44, 44, 72, 72, 2, 0, 176, 176, 180, 180, 2, 0, 245, 245, 344, 344, 2, 0, 369, 369, 389, 390, 4, 0, 32, 32, 387, 387, 391, 391, 394, 394, 2, 0, 389, 390, 392, 392, 1, 0, 389, 390, 1, 0, 398, 399, 2, 0, 398, 398, 401, 401, 4, 0, 32, 32, 387, 387, 389, 391, 393, 394, 3, 0, 294, 294, 368, 369, 389, 390, 2, 0, 176, 176, 232, 232, 1, 0, 175, 364, 1, 0, 4, 174, 2329, 0, 354, 1, 0, 0, 0, 2, 357, 1, 0, 0, 0, 4, 367, 1, 0, 0, 0, 6, 382, 1, 0, 0, 0, 8, 384, 1, 0, 0, 0, 10, 400, 1, 0, 0, 0, 12, 404, 1, 0, 0, 0, 14, 406, 1, 0, 0, 0, 16, 409, 1, 0, 0, 0, 18, 420, 1, 0, 0, 0, 20, 428, 1, 0, 0, 0, 22, 436, 1, 0, 0, 0, 24, 438, 1, 0, 0, 0, 26, 483, 1, 0, 0, 0, 28, 485, 1, 0, 0, 0, 30, 492, 1, 0, 0, 0, 32, 496, 1, 0, 0, 0, 34, 500, 1, 0, 0, 0, 36, 504, 1, 0, 0, 0, 38, 547, 1, 0, 0, 0, 40, 551, 1, 0, 0, 0, 42, 553, 1, 0, 0, 0, 44, 594, 1, 0, 0, 0, 46, 608, 1, 0, 0, 0, 48, 610, 1, 0, 0, 0, 50, 620, 1, 0, 0, 0, 52, 622, 1, 0, 0, 0, 54, 670, 1, 0, 0, 0, 56, 672, 1, 0, 0, 0, 58, 676, 1, 0, 0, 0, 60, 684, 1, 0, 0, 0, 62, 692, 1, 0, 0, 0, 64, 696, 1, 0, 0, 0, 66, 703, 1, 0, 0, 0, 68, 731, 1, 0, 0, 0, 70, 733, 1, 0, 0, 0, 72, 736, 1, 0, 0, 0, 74, 746, 1, 0, 0, 0, 76, 748, 1, 0, 0, 0, 78, 754, 1, 0, 0, 0, 80, 756, 1, 0, 0, 0, 82, 764, 1, 0, 0, 0, 84, 772, 1, 0, 0, 0, 86, 774, 1, 0, 0, 0, 88, 778, 1, 0, 0, 0, 90, 782, 1, 0, 0, 0, 92, 806, 1, 0, 0, 0, 94, 810, 1, 0, 0, 0, 96, 812, 1, 0, 0, 0, 98, 824, 1, 0, 0, 0, 100, 830, 1, 0, 0, 0, 102, 832, 1, 0, 0, 0, 104, 837, 1, 0, 0, 0, 106, 848, 1, 0, 0, 0, 108, 866, 1, 0, 0, 0, 110, 886, 1, 0, 0, 0, 112, 897, 1, 0, 0, 0, 114, 899, 1, 0, 0, 0, 116, 912, 1, 0, 0, 0, 118, 919, 1, 0, 0, 0, 120, 922, 1, 0, 0, 0, 122, 931, 1, 0, 0, 0, 124, 935, 1, 0, 0, 0, 126, 939, 1, 0, 0, 0, 128, 942, 1, 0, 0, 0, 130, 950, 1, 0, 0, 0, 132, 955, 1, 0, 0, 0, 134, 972, 1, 0, 0, 0, 136, 979, 1, 0, 0, 0, 138, 989, 1, 0, 0, 0, 140, 998, 1, 0, 0, 0, 142, 1008, 1, 0, 0, 0, 144, 1027, 1, 0, 0, 0, 146, 1029, 1, 0, 0, 0, 148, 1042, 1, 0, 0, 0, 150, 1045, 1, 0, 0, 0, 152, 1054, 1, 0, 0, 0, 154, 1065, 1, 0, 0, 0, 156, 1078, 1, 0, 0, 0, 158, 1113, 1, 0, 0, 0, 160, 1132, 1, 0, 0, 0, 162, 1141, 1, 0, 0, 0, 164, 1150, 1, 0, 0, 0, 166, 1169, 1, 0, 0, 0, 168, 1189, 1, 0, 0, 0, 170, 1191, 1, 0, 0, 0, 172, 1214, 1, 0, 0, 0, 174, 1228, 1, 0, 0, 0, 176, 1230, 1, 0, 0, 0, 178, 1244, 1, 0, 0, 0, 180, 1270, 1, 0, 0, 0, 182, 1315, 1, 0, 0, 0, 184, 1317, 1, 0, 0, 0, 186, 1319, 1, 0, 0, 0, 188, 1325, 1, 0, 0, 0, 190, 1327, 1, 0, 0, 0, 192, 1332, 1, 0, 0, 0, 194, 1337, 1, 0, 0, 0, 196, 1349, 1, 0, 0, 0, 198, 1366, 1, 0, 0, 0, 200, 1368, 1, 0, 0, 0, 202, 1370, 1, 0, 0, 0, 204, 1389, 1, 0, 0, 0, 206, 1391, 1, 0, 0, 0, 208, 1394, 1, 0, 0, 0, 210, 1443, 1, 0, 0, 0, 212, 1445, 1, 0, 0, 0, 214, 1448, 1, 0, 0, 0, 216, 1450, 1, 0, 0, 0, 218, 1457, 1, 0, 0, 0, 220, 1459, 1, 0, 0, 0, 222, 1461, 1, 0, 0, 0, 224, 1464, 1, 0, 0, 0, 226, 1473, 1, 0, 0, 0, 228, 1478, 1, 0, 0, 0, 230, 1492, 1, 0, 0, 0, 232, 1520, 1, 0, 0, 0, 234, 1530, 1, 0, 0, 0, 236, 1538, 1, 0, 0, 0, 238, 1543, 1, 0, 0, 0, 240, 1569, 1, 0, 0, 0, 242, 1571, 1, 0, 0, 0, 244, 1580, 1, 0, 0, 0, 246, 1591, 1, 0, 0, 0, 248, 1603, 1, 0, 0, 0, 250, 1629, 1, 0, 0, 0, 252, 1631, 1, 0, 0, 0, 254, 1649, 1, 0, 0, 0, 256, 1651, 1, 0, 0, 0, 258, 1656, 1, 0, 0, 0, 260, 1659, 1, 0, 0, 0, 262, 1673, 1, 0, 0, 0, 264, 1769, 1, 0, 0, 0, 266, 1796, 1, 0, 0, 0, 268, 1802, 1, 0, 0, 0, 270, 1919, 1, 0, 0, 0, 272, 1934, 1, 0, 0, 0, 274, 1936, 1, 0, 0, 0, 276, 1938, 1, 0, 0, 0, 278, 1942, 1, 0, 0, 0, 280, 1944, 1, 0, 0, 0, 282, 1949, 1, 0, 0, 0, 284, 1956, 1, 0, 0, 0, 286, 1960, 1, 0, 0, 0, 288, 1965, 1, 0, 0, 0, 290, 1975, 1, 0, 0, 0, 292, 1979, 1, 0, 0, 0, 294, 1982, 1, 0, 0, 0, 296, 1989, 1, 0, 0, 0, 298, 1995, 1, 0, 0, 0, 300, 2005, 1, 0, 0, 0, 302, 2007, 1, 0, 0, 0, 304, 2011, 1, 0, 0, 0, 306, 2022, 1, 0, 0, 0, 308, 2024, 1, 0, 0, 0, 310, 2026, 1, 0, 0, 0, 312, 2028, 1, 0, 0, 0, 314, 2033, 1, 0, 0, 0, 316, 2041, 1, 0, 0, 0, 318, 2044, 1, 0, 0, 0, 320, 2048, 1, 0, 0, 0, 322, 2051, 1, 0, 0, 0, 324, 2062, 1, 0, 0, 0, 326, 2072, 1, 0, 0, 0, 328, 2078, 1, 0, 0, 0, 330, 2086, 1, 0, 0, 0, 332, 2102, 1, 0, 0, 0, 334, 2111, 1, 0, 0, 0, 336, 2113, 1, 0, 0, 0, 338, 2115, 1, 0, 0, 0, 340, 2129, 1, 0, 0, 0, 342, 2131, 1, 0, 0, 0, 344, 2133, 1, 0, 0, 0, 346, 2135, 1, 0, 0, 0, 348, 2137, 1, 0, 0, 0, 350, 2139, 1, 0, 0, 0, 352, 2141, 1, 0, 0, 0, 354, 355, 3, 2, 1, 0, 355, 356, 5, 0, 0, 1, 356, 1, 1, 0, 0, 0, 357, 358, 3, 4, 2, 0, 358, 359, 5, 0, 0, 1, 359, 3, 1, 0, 0, 0, 360, 362, 3, 6, 3, 0, 361, 363, 5, 381, 0, 0, 362, 361, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 366, 3, 8, 4, 0, 365, 360, 1, 0, 0, 0, 365, 364, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 5, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 383, 3, 10, 5, 0, 371, 383, 3, 12, 6, 0, 372, 383, 3, 14, 7, 0, 373, 383, 3, 16, 8, 0, 374, 383, 3, 22, 11, 0, 375, 383, 3, 26, 13, 0, 376, 383, 3, 28, 14, 0, 377, 383, 3, 30, 15, 0, 378, 383, 3, 32, 16, 0, 379, 383, 3, 34, 17, 0, 380, 383, 3, 36, 18, 0, 381, 383, 3, 38, 19, 0, 382, 370, 1, 0, 0, 0, 382, 371, 1, 0, 0, 0, 382, 372, 1, 0, 0, 0, 382, 373, 1, 0, 0, 0, 382, 374, 1, 0, 0, 0, 382, 375, 1, 0, 0, 0, 382, 376, 1, 0, 0, 0, 382, 377, 1, 0, 0, 0, 382, 378, 1, 0, 0, 0, 382, 379, 1, 0, 0, 0, 382, 380, 1, 0, 0, 0, 382, 381, 1, 0, 0, 0, 383, 7, 1, 0, 0, 0, 384, 385, 5, 381, 0, 0, 385, 9, 1, 0, 0, 0, 386, 401, 3, 40, 20, 0, 387, 401, 3, 104, 52, 0, 388, 401, 3, 106, 53, 0, 389, 401, 3, 108, 54, 0, 390, 401, 3, 102, 51, 0, 391, 401, 3, 114, 57, 0, 392, 401, 3, 128, 64, 0, 393, 401, 3, 130, 65, 0, 394, 401, 3, 132, 66, 0, 395, 401, 3, 134, 67, 0, 396, 401, 3, 136, 68, 0, 397, 401, 3, 138, 69, 0, 398, 401, 3, 140, 70, 0, 399, 401, 3, 142, 71, 0, 400, 386, 1, 0, 0, 0, 400, 387, 1, 0, 0, 0, 400, 388, 1, 0, 0, 0, 400, 389, 1, 0, 0, 0, 400, 390, 1, 0, 0, 0, 400, 391, 1, 0, 0, 0, 400, 392, 1, 0, 0, 0, 400, 393, 1, 0, 0, 0, 400, 394, 1, 0, 0, 0, 400, 395, 1, 0, 0, 0, 400, 396, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 11, 1, 0, 0, 0, 402, 405, 3, 158, 79, 0, 403, 405, 3, 144, 72, 0, 404, 402, 1, 0, 0, 0, 404, 403, 1, 0, 0, 0, 405, 13, 1, 0, 0, 0, 406, 407, 7, 0, 0, 0, 407, 408, 3, 314, 157, 0, 408, 15, 1, 0, 0, 0, 409, 413, 5, 242, 0, 0, 410, 414, 3, 18, 9, 0, 411, 412, 5, 100, 0, 0, 412, 414, 5, 247, 0, 0, 413, 410, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 418, 1, 0, 0, 0, 415, 419, 3, 12, 6, 0, 416, 419, 3, 146, 73, 0, 417, 419, 3, 156, 78, 0, 418, 415, 1, 0, 0, 0, 418, 416, 1, 0, 0, 0, 418, 417, 1, 0, 0, 0, 419, 17, 1, 0, 0, 0, 420, 425, 3, 20, 10, 0, 421, 422, 5, 380, 0, 0, 422, 424, 3, 20, 10, 0, 423, 421, 1, 0, 0, 0, 424, 427, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 19, 1, 0, 0, 0, 427, 425, 1, 0, 0, 0, 428, 429, 7, 1, 0, 0, 429, 21, 1, 0, 0, 0, 430, 432, 5, 160, 0, 0, 431, 433, 5, 12, 0, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 437, 3, 314, 157, 0, 435, 437, 3, 24, 12, 0, 436, 430, 1, 0, 0, 0, 436, 435, 1, 0, 0, 0, 437, 23, 1, 0, 0, 0, 438, 439, 5, 160, 0, 0, 439, 440, 5, 83, 0, 0, 440, 445, 3, 314, 157, 0, 441, 442, 5, 380, 0, 0, 442, 444, 3, 314, 157, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 25, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 449, 5, 327, 0, 0, 449, 484, 7, 2, 0, 0, 450, 451, 5, 327, 0, 0, 451, 452, 5, 219, 0, 0, 452, 484, 7, 3, 0, 0, 453, 454, 5, 327, 0, 0, 454, 457, 5, 148, 0, 0, 455, 456, 7, 4, 0, 0, 456, 458, 3, 314, 157, 0, 457, 455, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 460, 1, 0, 0, 0, 459, 461, 3, 266, 133, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 484, 1, 0, 0, 0, 462, 463, 5, 327, 0, 0, 463, 464, 5, 20, 0, 0, 464, 465, 7, 4, 0, 0, 465, 467, 3, 314, 157, 0, 466, 468, 3, 266, 133, 0, 467, 466, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 484, 1, 0, 0, 0, 469, 470, 5, 327, 0, 0, 470, 471, 5, 216, 0, 0, 471, 472, 7, 5, 0, 0, 472, 484, 3, 314, 157, 0, 473, 475, 5, 327, 0, 0, 474, 476, 5, 352, 0, 0, 475, 474, 1, 0, 0, 0, 475, 476, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 484, 5, 50, 0, 0, 478, 480, 5, 327, 0, 0, 479, 481, 5, 249, 0, 0, 480, 479, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 484, 5, 83, 0, 0, 483, 448, 1, 0, 0, 0, 483, 450, 1, 0, 0, 0, 483, 453, 1, 0, 0, 0, 483, 462, 1, 0, 0, 0, 483, 469, 1, 0, 0, 0, 483, 473, 1, 0, 0, 0, 483, 478, 1, 0, 0, 0, 484, 27, 1, 0, 0, 0, 485, 486, 5, 75, 0, 0, 486, 487, 5, 287, 0, 0, 487, 490, 3, 314, 157, 0, 488, 489, 5, 361, 0, 0, 489, 491, 3, 322, 161, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 29, 1, 0, 0, 0, 492, 493, 5, 158, 0, 0, 493, 494, 5, 287, 0, 0, 494, 495, 3, 314, 157, 0, 495, 31, 1, 0, 0, 0, 496, 498, 5, 326, 0, 0, 497, 499, 3, 324, 162, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 33, 1, 0, 0, 0, 500, 502, 5, 316, 0, 0, 501, 503, 3, 326, 163, 0, 502, 501, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 35, 1, 0, 0, 0, 504, 505, 7, 6, 0, 0, 505, 506, 5, 63, 0, 0, 506, 507, 3, 112, 56, 0, 507, 37, 1, 0, 0, 0, 508, 509, 5, 4, 0, 0, 509, 510, 5, 63, 0, 0, 510, 511, 5, 361, 0, 0, 511, 514, 5, 402, 0, 0, 512, 513, 5, 183, 0, 0, 513, 515, 3, 314, 157, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 548, 1, 0, 0, 0, 516, 517, 5, 4, 0, 0, 517, 518, 5, 42, 0, 0, 518, 519, 5, 361, 0, 0, 519, 522, 5, 402, 0, 0, 520, 521, 5, 183, 0, 0, 521, 523, 3, 314, 157, 0, 522, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 526, 1, 0, 0, 0, 524, 525, 5, 118, 0, 0, 525, 527, 3, 314, 157, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 548, 1, 0, 0, 0, 528, 529, 5, 4, 0, 0, 529, 530, 7, 7, 0, 0, 530, 531, 5, 361, 0, 0, 531, 532, 5, 402, 0, 0, 532, 533, 5, 118, 0, 0, 533, 548, 3, 314, 157, 0, 534, 535, 5, 4, 0, 0, 535, 536, 5, 112, 0, 0, 536, 548, 5, 402, 0, 0, 537, 538, 5, 4, 0, 0, 538, 539, 5, 35, 0, 0, 539, 540, 5, 42, 0, 0, 540, 541, 5, 361, 0, 0, 541, 542, 5, 402, 0, 0, 542, 543, 5, 118, 0, 0, 543, 544, 3, 314, 157, 0, 544, 545, 5, 68, 0, 0, 545, 546, 3, 314, 157, 0, 546, 548, 1, 0, 0, 0, 547, 508, 1, 0, 0, 0, 547, 516, 1, 0, 0, 0, 547, 528, 1, 0, 0, 0, 547, 534, 1, 0, 0, 0, 547, 537, 1, 0, 0, 0, 548, 39, 1, 0, 0, 0, 549, 552, 3, 42, 21, 0, 550, 552, 3, 44, 22, 0, 551, 549, 1, 0, 0, 0, 551, 550, 1, 0, 0, 0, 552, 41, 1, 0, 0, 0, 553, 555, 5, 216, 0, 0, 554, 556, 5, 149, 0, 0, 555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 559, 5, 337, 0, 0, 558, 560, 3, 318, 159, 0, 559, 558, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 3, 98, 49, 0, 562, 563, 5, 376, 0, 0, 563, 568, 3, 46, 23, 0, 564, 565, 5, 380, 0, 0, 565, 567, 3, 46, 23, 0, 566, 564, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 573, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 571, 572, 5, 380, 0, 0, 572, 574, 3, 80, 40, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 577, 1, 0, 0, 0, 575, 576, 5, 380, 0, 0, 576, 578, 3, 82, 41, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 581, 1, 0, 0, 0, 579, 580, 5, 380, 0, 0, 580, 582, 3, 86, 43, 0, 581, 579, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 585, 5, 377, 0, 0, 584, 586, 3, 70, 35, 0, 585, 584, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 588, 1, 0, 0, 0, 587, 589, 3, 88, 44, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 592, 3, 316, 158, 0, 591, 593, 3, 96, 48, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 43, 1, 0, 0, 0, 594, 595, 5, 216, 0, 0, 595, 597, 5, 337, 0, 0, 596, 598, 3, 318, 159, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 3, 98, 49, 0, 600, 603, 3, 316, 158, 0, 601, 602, 5, 183, 0, 0, 602, 604, 3, 158, 79, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 45, 1, 0, 0, 0, 605, 609, 3, 48, 24, 0, 606, 609, 3, 72, 36, 0, 607, 609, 3, 76, 38, 0, 608, 605, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 607, 1, 0, 0, 0, 609, 47, 1, 0, 0, 0, 610, 611, 3, 50, 25, 0, 611, 613, 3, 54, 27, 0, 612, 614, 3, 68, 34, 0, 613, 612, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 616, 1, 0, 0, 0, 615, 617, 3, 70, 35, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 49, 1, 0, 0, 0, 618, 621, 3, 314, 157, 0, 619, 621, 3, 260, 130, 0, 620, 618, 1, 0, 0, 0, 620, 619, 1, 0, 0, 0, 621, 51, 1, 0, 0, 0, 622, 623, 5, 376, 0, 0, 623, 628, 3, 50, 25, 0, 624, 625, 5, 380, 0, 0, 625, 627, 3, 50, 25, 0, 626, 624, 1, 0, 0, 0, 627, 630, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 631, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 631, 632, 5, 377, 0, 0, 632, 53, 1, 0, 0, 0, 633, 671, 7, 8, 0, 0, 634, 636, 7, 9, 0, 0, 635, 637, 3, 56, 28, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 671, 1, 0, 0, 0, 638, 640, 5, 341, 0, 0, 639, 641, 3, 56, 28, 0, 640, 639, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 648, 1, 0, 0, 0, 642, 644, 7, 10, 0, 0, 643, 645, 5, 278, 0, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 5, 340, 0, 0, 647, 649, 5, 174, 0, 0, 648, 642, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 671, 1, 0, 0, 0, 650, 652, 7, 11, 0, 0, 651, 653, 3, 58, 29, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 671, 1, 0, 0, 0, 654, 656, 7, 12, 0, 0, 655, 657, 3, 62, 31, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 671, 1, 0, 0, 0, 658, 660, 5, 76, 0, 0, 659, 661, 3, 64, 32, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 671, 1, 0, 0, 0, 662, 664, 5, 322, 0, 0, 663, 665, 3, 66, 33, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 671, 1, 0, 0, 0, 666, 668, 5, 114, 0, 0, 667, 669, 3, 60, 30, 0, 668, 667, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 633, 1, 0, 0, 0, 670, 634, 1, 0, 0, 0, 670, 638, 1, 0, 0, 0, 670, 650, 1, 0, 0, 0, 670, 654, 1, 0, 0, 0, 670, 658, 1, 0, 0, 0, 670, 662, 1, 0, 0, 0, 670, 666, 1, 0, 0, 0, 671, 55, 1, 0, 0, 0, 672, 673, 5, 376, 0, 0, 673, 674, 3, 344, 172, 0, 674, 675, 5, 377, 0, 0, 675, 57, 1, 0, 0, 0, 676, 677, 5, 376, 0, 0, 677, 680, 3, 344, 172, 0, 678, 679, 5, 380, 0, 0, 679, 681, 3, 344, 172, 0, 680, 678, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 5, 377, 0, 0, 683, 59, 1, 0, 0, 0, 684, 685, 5, 376, 0, 0, 685, 688, 3, 342, 171, 0, 686, 687, 5, 380, 0, 0, 687, 689, 3, 342, 171, 0, 688, 686, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 5, 377, 0, 0, 691, 61, 1, 0, 0, 0, 692, 693, 5, 367, 0, 0, 693, 694, 3, 54, 27, 0, 694, 695, 5, 366, 0, 0, 695, 63, 1, 0, 0, 0, 696, 697, 5, 367, 0, 0, 697, 698, 3, 54, 27, 0, 698, 699, 5, 380, 0, 0, 699, 700, 3, 54, 27, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 366, 0, 0, 702, 65, 1, 0, 0, 0, 703, 704, 5, 367, 0, 0, 704, 705, 3, 50, 25, 0, 705, 712, 3, 54, 27, 0, 706, 707, 5, 380, 0, 0, 707, 708, 3, 50, 25, 0, 708, 709, 3, 54, 27, 0, 709, 711, 1, 0, 0, 0, 710, 706, 1, 0, 0, 0, 711, 714, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 715, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 715, 716, 5, 366, 0, 0, 716, 67, 1, 0, 0, 0, 717, 718, 5, 212, 0, 0, 718, 720, 3, 84, 42, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 5, 313, 0, 0, 722, 725, 5, 68, 0, 0, 723, 724, 5, 294, 0, 0, 724, 726, 5, 34, 0, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 732, 1, 0, 0, 0, 727, 729, 5, 294, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 5, 295, 0, 0, 731, 719, 1, 0, 0, 0, 731, 728, 1, 0, 0, 0, 732, 69, 1, 0, 0, 0, 733, 734, 5, 18, 0, 0, 734, 735, 5, 397, 0, 0, 735, 71, 1, 0, 0, 0, 736, 737, 3, 50, 25, 0, 737, 738, 3, 54, 27, 0, 738, 741, 5, 283, 0, 0, 739, 740, 5, 248, 0, 0, 740, 742, 3, 74, 37, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 745, 5, 167, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 73, 1, 0, 0, 0, 746, 747, 5, 397, 0, 0, 747, 75, 1, 0, 0, 0, 748, 749, 3, 50, 25, 0, 749, 750, 5, 183, 0, 0, 750, 752, 3, 78, 39, 0, 751, 753, 3, 70, 35, 0, 752, 751, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 77, 1, 0, 0, 0, 754, 755, 3, 260, 130, 0, 755, 79, 1, 0, 0, 0, 756, 757, 5, 168, 0, 0, 757, 758, 5, 247, 0, 0, 758, 759, 3, 260, 130, 0, 759, 760, 5, 183, 0, 0, 760, 761, 3, 260, 130, 0, 761, 81, 1, 0, 0, 0, 762, 763, 5, 212, 0, 0, 763, 765, 3, 84, 42, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 5, 313, 0, 0, 767, 768, 5, 68, 0, 0, 768, 769, 3, 52, 26, 0, 769, 770, 5, 294, 0, 0, 770, 771, 5, 34, 0, 0, 771, 83, 1, 0, 0, 0, 772, 773, 3, 306, 153, 0, 773, 85, 1, 0, 0, 0, 774, 775, 5, 311, 0, 0, 775, 776, 5, 247, 0, 0, 776, 777, 5, 335, 0, 0, 777, 87, 1, 0, 0, 0, 778, 779, 5, 94, 0, 0, 779, 780, 5, 194, 0, 0, 780, 781, 3, 90, 45, 0, 781, 89, 1, 0, 0, 0, 782, 783, 5, 376, 0, 0, 783, 788, 3, 92, 46, 0, 784, 785, 5, 380, 0, 0, 785, 787, 3, 92, 46, 0, 786, 784, 1, 0, 0, 0, 787, 790, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 791, 1, 0, 0, 0, 790, 788, 1, 0, 0, 0, 791, 792, 5, 377, 0, 0, 792, 91, 1, 0, 0, 0, 793, 807, 3, 278, 139, 0, 794, 795, 3, 306, 153, 0, 795, 796, 5, 376, 0, 0, 796, 801, 3, 94, 47, 0, 797, 798, 5, 380, 0, 0, 798, 800, 3, 94, 47, 0, 799, 797, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 804, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 804, 805, 5, 377, 0, 0, 805, 807, 1, 0, 0, 0, 806, 793, 1, 0, 0, 0, 806, 794, 1, 0, 0, 0, 807, 93, 1, 0, 0, 0, 808, 811, 3, 278, 139, 0, 809, 811, 3, 340, 170, 0, 810, 808, 1, 0, 0, 0, 810, 809, 1, 0, 0, 0, 811, 95, 1, 0, 0, 0, 812, 813, 5, 276, 0, 0, 813, 822, 3, 98, 49, 0, 814, 818, 5, 376, 0, 0, 815, 817, 3, 100, 50, 0, 816, 815, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 823, 5, 377, 0, 0, 822, 814, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 97, 1, 0, 0, 0, 824, 825, 3, 314, 157, 0, 825, 99, 1, 0, 0, 0, 826, 827, 7, 13, 0, 0, 827, 831, 7, 14, 0, 0, 828, 829, 7, 15, 0, 0, 829, 831, 7, 16, 0, 0, 830, 826, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 101, 1, 0, 0, 0, 832, 833, 5, 216, 0, 0, 833, 834, 5, 12, 0, 0, 834, 835, 3, 314, 157, 0, 835, 836, 3, 316, 158, 0, 836, 103, 1, 0, 0, 0, 837, 838, 5, 216, 0, 0, 838, 840, 5, 25, 0, 0, 839, 841, 3, 318, 159, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 844, 3, 314, 157, 0, 843, 845, 3, 70, 35, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 3, 316, 158, 0, 847, 105, 1, 0, 0, 0, 848, 850, 5, 216, 0, 0, 849, 851, 5, 149, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 5, 165, 0, 0, 853, 855, 3, 318, 159, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 858, 3, 314, 157, 0, 857, 859, 3, 52, 26, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 862, 3, 70, 35, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 183, 0, 0, 864, 865, 3, 158, 79, 0, 865, 107, 1, 0, 0, 0, 866, 870, 5, 216, 0, 0, 867, 871, 5, 149, 0, 0, 868, 869, 5, 149, 0, 0, 869, 871, 5, 334, 0, 0, 870, 867, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 250, 0, 0, 873, 875, 3, 318, 159, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 314, 157, 0, 877, 878, 5, 183, 0, 0, 878, 881, 3, 306, 153, 0, 879, 880, 5, 272, 0, 0, 880, 882, 7, 17, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 885, 3, 110, 55, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 109, 1, 0, 0, 0, 886, 887, 5, 353, 0, 0, 887, 888, 5, 63, 0, 0, 888, 894, 3, 112, 56, 0, 889, 890, 5, 380, 0, 0, 890, 891, 5, 63, 0, 0, 891, 893, 3, 112, 56, 0, 892, 889, 1, 0, 0, 0, 893, 896, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 111, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 897, 898, 5, 397, 0, 0, 898, 113, 1, 0, 0, 0, 899, 900, 5, 178, 0, 0, 900, 902, 5, 337, 0, 0, 901, 903, 3, 320, 160, 0, 902, 901, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 910, 3, 314, 157, 0, 905, 911, 3, 116, 58, 0, 906, 911, 3, 118, 59, 0, 907, 911, 3, 120, 60, 0, 908, 911, 3, 122, 61, 0, 909, 911, 3, 124, 62, 0, 910, 905, 1, 0, 0, 0, 910, 906, 1, 0, 0, 0, 910, 907, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 910, 909, 1, 0, 0, 0, 911, 115, 1, 0, 0, 0, 912, 914, 5, 118, 0, 0, 913, 915, 3, 314, 157, 0, 914, 913, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 343, 0, 0, 917, 918, 3, 314, 157, 0, 918, 117, 1, 0, 0, 0, 919, 920, 5, 326, 0, 0, 920, 921, 3, 322, 161, 0, 921, 119, 1, 0, 0, 0, 922, 923, 5, 4, 0, 0, 923, 924, 5, 212, 0, 0, 924, 925, 3, 84, 42, 0, 925, 926, 5, 313, 0, 0, 926, 927, 5, 68, 0, 0, 927, 929, 3, 52, 26, 0, 928, 930, 3, 126, 63, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 121, 1, 0, 0, 0, 931, 932, 5, 234, 0, 0, 932, 933, 5, 212, 0, 0, 933, 934, 3, 84, 42, 0, 934, 123, 1, 0, 0, 0, 935, 936, 5, 4, 0, 0, 936, 937, 5, 347, 0, 0, 937, 938, 3, 52, 26, 0, 938, 125, 1, 0, 0, 0, 939, 940, 5, 294, 0, 0, 940, 941, 5, 34, 0, 0, 941, 127, 1, 0, 0, 0, 942, 943, 5, 178, 0, 0, 943, 944, 5, 165, 0, 0, 944, 948, 3, 314, 157, 0, 945, 949, 3, 116, 58, 0, 946, 947, 5, 183, 0, 0, 947, 949, 3, 158, 79, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 949, 129, 1, 0, 0, 0, 950, 951, 5, 178, 0, 0, 951, 952, 5, 25, 0, 0, 952, 953, 3, 314, 157, 0, 953, 954, 3, 118, 59, 0, 954, 131, 1, 0, 0, 0, 955, 959, 5, 178, 0, 0, 956, 960, 5, 149, 0, 0, 957, 958, 5, 149, 0, 0, 958, 960, 5, 334, 0, 0, 959, 956, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 963, 5, 250, 0, 0, 962, 964, 3, 320, 160, 0, 963, 962, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 3, 314, 157, 0, 966, 967, 5, 183, 0, 0, 967, 970, 3, 306, 153, 0, 968, 969, 5, 272, 0, 0, 969, 971, 7, 17, 0, 0, 970, 968, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 133, 1, 0, 0, 0, 972, 973, 5, 234, 0, 0, 973, 975, 5, 12, 0, 0, 974, 976, 3, 320, 160, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 3, 314, 157, 0, 978, 135, 1, 0, 0, 0, 979, 981, 5, 234, 0, 0, 980, 982, 5, 149, 0, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 5, 337, 0, 0, 984, 986, 3, 320, 160, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 3, 314, 157, 0, 988, 137, 1, 0, 0, 0, 989, 990, 5, 234, 0, 0, 990, 992, 5, 25, 0, 0, 991, 993, 3, 320, 160, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 3, 314, 157, 0, 995, 997, 7, 18, 0, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 139, 1, 0, 0, 0, 998, 1000, 5, 234, 0, 0, 999, 1001, 5, 149, 0, 0, 1000, 999, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1004, 5, 165, 0, 0, 1003, 1005, 3, 320, 160, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 3, 314, 157, 0, 1007, 141, 1, 0, 0, 0, 1008, 1012, 5, 234, 0, 0, 1009, 1013, 5, 149, 0, 0, 1010, 1011, 5, 149, 0, 0, 1011, 1013, 5, 334, 0, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 5, 250, 0, 0, 1015, 1017, 3, 320, 160, 0, 1016, 1015, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 3, 314, 157, 0, 1019, 143, 1, 0, 0, 0, 1020, 1022, 5, 240, 0, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1028, 3, 146, 73, 0, 1024, 1028, 3, 154, 77, 0, 1025, 1026, 5, 240, 0, 0, 1026, 1028, 3, 156, 78, 0, 1027, 1021, 1, 0, 0, 0, 1027, 1024, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 145, 1, 0, 0, 0, 1029, 1030, 5, 263, 0, 0, 1030, 1031, 7, 19, 0, 0, 1031, 1040, 3, 314, 157, 0, 1032, 1034, 3, 148, 74, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 1037, 3, 52, 26, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1041, 3, 158, 79, 0, 1039, 1041, 3, 150, 75, 0, 1040, 1033, 1, 0, 0, 0, 1040, 1039, 1, 0, 0, 0, 1041, 147, 1, 0, 0, 0, 1042, 1043, 5, 307, 0, 0, 1043, 1044, 3, 322, 161, 0, 1044, 149, 1, 0, 0, 0, 1045, 1046, 5, 355, 0, 0, 1046, 1051, 3, 152, 76, 0, 1047, 1048, 5, 380, 0, 0, 1048, 1050, 3, 152, 76, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1053, 1, 0, 0, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 151, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1054, 1055, 5, 376, 0, 0, 1055, 1060, 3, 340, 170, 0, 1056, 1057, 5, 380, 0, 0, 1057, 1059, 3, 340, 170, 0, 1058, 1056, 1, 0, 0, 0, 1059, 1062, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 1060, 1, 0, 0, 0, 1063, 1064, 5, 377, 0, 0, 1064, 153, 1, 0, 0, 0, 1065, 1066, 5, 186, 0, 0, 1066, 1067, 5, 143, 0, 0, 1067, 1068, 5, 326, 0, 0, 1068, 1072, 5, 381, 0, 0, 1069, 1070, 3, 146, 73, 0, 1070, 1071, 5, 381, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 1069, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 5, 237, 0, 0, 1077, 155, 1, 0, 0, 0, 1078, 1079, 5, 143, 0, 0, 1079, 1080, 5, 326, 0, 0, 1080, 1084, 5, 186, 0, 0, 1081, 1082, 3, 146, 73, 0, 1082, 1083, 5, 381, 0, 0, 1083, 1085, 1, 0, 0, 0, 1084, 1081, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 5, 237, 0, 0, 1089, 157, 1, 0, 0, 0, 1090, 1091, 6, 79, -1, 0, 1091, 1114, 3, 160, 80, 0, 1092, 1093, 3, 162, 81, 0, 1093, 1094, 3, 158, 79, 5, 1094, 1114, 1, 0, 0, 0, 1095, 1096, 5, 376, 0, 0, 1096, 1097, 3, 158, 79, 0, 1097, 1098, 5, 377, 0, 0, 1098, 1114, 1, 0, 0, 0, 1099, 1101, 3, 170, 85, 0, 1100, 1102, 3, 232, 116, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1105, 3, 236, 118, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1114, 1, 0, 0, 0, 1106, 1108, 3, 168, 84, 0, 1107, 1109, 3, 232, 116, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1112, 3, 236, 118, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1090, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1113, 1095, 1, 0, 0, 0, 1113, 1099, 1, 0, 0, 0, 1113, 1106, 1, 0, 0, 0, 1114, 1129, 1, 0, 0, 0, 1115, 1116, 10, 3, 0, 0, 1116, 1118, 7, 20, 0, 0, 1117, 1119, 5, 176, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 3, 158, 79, 0, 1121, 1123, 3, 232, 116, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1125, 1, 0, 0, 0, 1124, 1126, 3, 236, 118, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 1, 0, 0, 0, 1127, 1115, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 159, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 355, 0, 0, 1133, 1138, 3, 260, 130, 0, 1134, 1135, 5, 380, 0, 0, 1135, 1137, 3, 260, 130, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 161, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 361, 0, 0, 1142, 1147, 3, 164, 82, 0, 1143, 1144, 5, 380, 0, 0, 1144, 1146, 3, 164, 82, 0, 1145, 1143, 1, 0, 0, 0, 1146, 1149, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 163, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1150, 1162, 3, 166, 83, 0, 1151, 1152, 5, 376, 0, 0, 1152, 1157, 3, 50, 25, 0, 1153, 1154, 5, 380, 0, 0, 1154, 1156, 3, 50, 25, 0, 1155, 1153, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1161, 5, 377, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1151, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 5, 183, 0, 0, 1165, 1166, 5, 376, 0, 0, 1166, 1167, 3, 158, 79, 0, 1167, 1168, 5, 377, 0, 0, 1168, 165, 1, 0, 0, 0, 1169, 1170, 3, 306, 153, 0, 1170, 167, 1, 0, 0, 0, 1171, 1172, 3, 170, 85, 0, 1172, 1174, 3, 176, 88, 0, 1173, 1175, 3, 206, 103, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1178, 3, 208, 104, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1180, 1, 0, 0, 0, 1179, 1181, 3, 222, 111, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1184, 3, 224, 112, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1190, 1, 0, 0, 0, 1185, 1186, 3, 170, 85, 0, 1186, 1187, 3, 176, 88, 0, 1187, 1188, 3, 230, 115, 0, 1188, 1190, 1, 0, 0, 0, 1189, 1171, 1, 0, 0, 0, 1189, 1185, 1, 0, 0, 0, 1190, 169, 1, 0, 0, 0, 1191, 1193, 5, 325, 0, 0, 1192, 1194, 3, 348, 174, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1204, 1, 0, 0, 0, 1195, 1205, 5, 387, 0, 0, 1196, 1201, 3, 172, 86, 0, 1197, 1198, 5, 380, 0, 0, 1198, 1200, 3, 172, 86, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1205, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1195, 1, 0, 0, 0, 1204, 1196, 1, 0, 0, 0, 1205, 171, 1, 0, 0, 0, 1206, 1215, 3, 174, 87, 0, 1207, 1212, 3, 260, 130, 0, 1208, 1210, 5, 183, 0, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 3, 260, 130, 0, 1212, 1209, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1215, 1, 0, 0, 0, 1214, 1206, 1, 0, 0, 0, 1214, 1207, 1, 0, 0, 0, 1215, 173, 1, 0, 0, 0, 1216, 1217, 3, 270, 135, 0, 1217, 1218, 5, 305, 0, 0, 1218, 1219, 3, 228, 114, 0, 1219, 1220, 5, 183, 0, 0, 1220, 1221, 3, 306, 153, 0, 1221, 1229, 1, 0, 0, 0, 1222, 1223, 3, 270, 135, 0, 1223, 1224, 5, 305, 0, 0, 1224, 1225, 3, 298, 149, 0, 1225, 1226, 5, 183, 0, 0, 1226, 1227, 3, 306, 153, 0, 1227, 1229, 1, 0, 0, 0, 1228, 1216, 1, 0, 0, 0, 1228, 1222, 1, 0, 0, 0, 1229, 175, 1, 0, 0, 0, 1230, 1231, 5, 248, 0, 0, 1231, 1232, 3, 178, 89, 0, 1232, 177, 1, 0, 0, 0, 1233, 1234, 6, 89, -1, 0, 1234, 1239, 3, 180, 90, 0, 1235, 1236, 5, 380, 0, 0, 1236, 1238, 3, 180, 90, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1241, 1, 0, 0, 0, 1239, 1237, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1245, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1245, 3, 190, 95, 0, 1243, 1245, 3, 192, 96, 0, 1244, 1233, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1243, 1, 0, 0, 0, 1245, 1267, 1, 0, 0, 0, 1246, 1247, 10, 3, 0, 0, 1247, 1248, 5, 217, 0, 0, 1248, 1249, 5, 270, 0, 0, 1249, 1266, 3, 178, 89, 4, 1250, 1252, 10, 4, 0, 0, 1251, 1253, 5, 290, 0, 0, 1252, 1251, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1255, 1, 0, 0, 0, 1254, 1256, 7, 21, 0, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 1, 0, 0, 0, 1257, 1259, 5, 304, 0, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 5, 270, 0, 0, 1261, 1263, 3, 178, 89, 0, 1262, 1264, 3, 204, 102, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1246, 1, 0, 0, 0, 1265, 1250, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 179, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1270, 1272, 3, 182, 91, 0, 1271, 1273, 3, 296, 148, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 181, 1, 0, 0, 0, 1274, 1276, 5, 337, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 3, 184, 92, 0, 1278, 1280, 3, 186, 93, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1285, 1, 0, 0, 0, 1281, 1283, 5, 183, 0, 0, 1282, 1281, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 3, 276, 138, 0, 1285, 1282, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1316, 1, 0, 0, 0, 1287, 1288, 5, 273, 0, 0, 1288, 1289, 5, 337, 0, 0, 1289, 1290, 5, 376, 0, 0, 1290, 1291, 3, 272, 136, 0, 1291, 1292, 5, 376, 0, 0, 1292, 1297, 3, 260, 130, 0, 1293, 1294, 5, 380, 0, 0, 1294, 1296, 3, 260, 130, 0, 1295, 1293, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1301, 5, 377, 0, 0, 1301, 1302, 5, 377, 0, 0, 1302, 1316, 1, 0, 0, 0, 1303, 1305, 5, 273, 0, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 5, 376, 0, 0, 1307, 1308, 3, 158, 79, 0, 1308, 1309, 5, 377, 0, 0, 1309, 1316, 1, 0, 0, 0, 1310, 1311, 5, 349, 0, 0, 1311, 1312, 5, 376, 0, 0, 1312, 1313, 3, 260, 130, 0, 1313, 1314, 5, 377, 0, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1275, 1, 0, 0, 0, 1315, 1287, 1, 0, 0, 0, 1315, 1304, 1, 0, 0, 0, 1315, 1310, 1, 0, 0, 0, 1316, 183, 1, 0, 0, 0, 1317, 1318, 3, 314, 157, 0, 1318, 185, 1, 0, 0, 0, 1319, 1320, 5, 247, 0, 0, 1320, 1321, 5, 335, 0, 0, 1321, 1322, 5, 183, 0, 0, 1322, 1323, 5, 297, 0, 0, 1323, 1324, 3, 188, 94, 0, 1324, 187, 1, 0, 0, 0, 1325, 1326, 3, 260, 130, 0, 1326, 189, 1, 0, 0, 0, 1327, 1328, 5, 376, 0, 0, 1328, 1329, 3, 150, 75, 0, 1329, 1330, 5, 377, 0, 0, 1330, 1331, 3, 296, 148, 0, 1331, 191, 1, 0, 0, 0, 1332, 1333, 5, 337, 0, 0, 1333, 1334, 5, 376, 0, 0, 1334, 1335, 3, 194, 97, 0, 1335, 1336, 5, 377, 0, 0, 1336, 193, 1, 0, 0, 0, 1337, 1338, 3, 196, 98, 0, 1338, 1339, 5, 376, 0, 0, 1339, 1344, 3, 198, 99, 0, 1340, 1341, 5, 380, 0, 0, 1341, 1343, 3, 198, 99, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1346, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1348, 5, 377, 0, 0, 1348, 195, 1, 0, 0, 0, 1349, 1350, 7, 22, 0, 0, 1350, 197, 1, 0, 0, 0, 1351, 1352, 5, 337, 0, 0, 1352, 1367, 3, 220, 110, 0, 1353, 1367, 3, 202, 101, 0, 1354, 1367, 3, 280, 140, 0, 1355, 1356, 5, 24, 0, 0, 1356, 1357, 5, 396, 0, 0, 1357, 1358, 5, 337, 0, 0, 1358, 1367, 3, 220, 110, 0, 1359, 1360, 5, 150, 0, 0, 1360, 1361, 5, 396, 0, 0, 1361, 1367, 3, 202, 101, 0, 1362, 1363, 3, 200, 100, 0, 1363, 1364, 5, 396, 0, 0, 1364, 1365, 3, 280, 140, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1351, 1, 0, 0, 0, 1366, 1353, 1, 0, 0, 0, 1366, 1354, 1, 0, 0, 0, 1366, 1355, 1, 0, 0, 0, 1366, 1359, 1, 0, 0, 0, 1366, 1362, 1, 0, 0, 0, 1367, 199, 1, 0, 0, 0, 1368, 1369, 7, 23, 0, 0, 1369, 201, 1, 0, 0, 0, 1370, 1371, 5, 31, 0, 0, 1371, 1372, 5, 376, 0, 0, 1372, 1373, 3, 314, 157, 0, 1373, 1374, 5, 377, 0, 0, 1374, 203, 1, 0, 0, 0, 1375, 1376, 5, 299, 0, 0, 1376, 1390, 3, 262, 131, 0, 1377, 1378, 5, 353, 0, 0, 1378, 1379, 5, 376, 0, 0, 1379, 1384, 3, 314, 157, 0, 1380, 1381, 5, 380, 0, 0, 1381, 1383, 3, 314, 157, 0, 1382, 1380, 1, 0, 0, 0, 1383, 1386, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1384, 1, 0, 0, 0, 1387, 1388, 5, 377, 0, 0, 1388, 1390, 1, 0, 0, 0, 1389, 1375, 1, 0, 0, 0, 1389, 1377, 1, 0, 0, 0, 1390, 205, 1, 0, 0, 0, 1391, 1392, 5, 359, 0, 0, 1392, 1393, 3, 262, 131, 0, 1393, 207, 1, 0, 0, 0, 1394, 1395, 5, 253, 0, 0, 1395, 1396, 5, 194, 0, 0, 1396, 1401, 3, 210, 105, 0, 1397, 1398, 5, 380, 0, 0, 1398, 1400, 3, 210, 105, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1403, 1, 0, 0, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 209, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1404, 1444, 3, 260, 130, 0, 1405, 1444, 3, 216, 108, 0, 1406, 1407, 5, 376, 0, 0, 1407, 1444, 5, 377, 0, 0, 1408, 1409, 5, 376, 0, 0, 1409, 1414, 3, 260, 130, 0, 1410, 1411, 5, 380, 0, 0, 1411, 1413, 3, 260, 130, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1416, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1417, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1418, 5, 377, 0, 0, 1418, 1444, 1, 0, 0, 0, 1419, 1420, 3, 214, 107, 0, 1420, 1421, 5, 376, 0, 0, 1421, 1426, 3, 260, 130, 0, 1422, 1423, 5, 380, 0, 0, 1423, 1425, 3, 260, 130, 0, 1424, 1422, 1, 0, 0, 0, 1425, 1428, 1, 0, 0, 0, 1426, 1424, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1429, 1, 0, 0, 0, 1428, 1426, 1, 0, 0, 0, 1429, 1430, 5, 377, 0, 0, 1430, 1444, 1, 0, 0, 0, 1431, 1432, 3, 212, 106, 0, 1432, 1433, 5, 376, 0, 0, 1433, 1438, 3, 210, 105, 0, 1434, 1435, 5, 380, 0, 0, 1435, 1437, 3, 210, 105, 0, 1436, 1434, 1, 0, 0, 0, 1437, 1440, 1, 0, 0, 0, 1438, 1436, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1441, 1, 0, 0, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1442, 5, 377, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1404, 1, 0, 0, 0, 1443, 1405, 1, 0, 0, 0, 1443, 1406, 1, 0, 0, 0, 1443, 1408, 1, 0, 0, 0, 1443, 1419, 1, 0, 0, 0, 1443, 1431, 1, 0, 0, 0, 1444, 211, 1, 0, 0, 0, 1445, 1446, 5, 254, 0, 0, 1446, 1447, 5, 136, 0, 0, 1447, 213, 1, 0, 0, 0, 1448, 1449, 7, 24, 0, 0, 1449, 215, 1, 0, 0, 0, 1450, 1451, 3, 218, 109, 0, 1451, 1452, 5, 376, 0, 0, 1452, 1453, 3, 220, 110, 0, 1453, 1454, 5, 380, 0, 0, 1454, 1455, 3, 280, 140, 0, 1455, 1456, 5, 377, 0, 0, 1456, 217, 1, 0, 0, 0, 1457, 1458, 7, 25, 0, 0, 1458, 219, 1, 0, 0, 0, 1459, 1460, 3, 314, 157, 0, 1460, 221, 1, 0, 0, 0, 1461, 1462, 5, 256, 0, 0, 1462, 1463, 3, 262, 131, 0, 1463, 223, 1, 0, 0, 0, 1464, 1465, 5, 360, 0, 0, 1465, 1470, 3, 226, 113, 0, 1466, 1467, 5, 380, 0, 0, 1467, 1469, 3, 226, 113, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1472, 1, 0, 0, 0, 1470, 1468, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 225, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1474, 3, 298, 149, 0, 1474, 1475, 5, 183, 0, 0, 1475, 1476, 3, 228, 114, 0, 1476, 227, 1, 0, 0, 0, 1477, 1479, 3, 298, 149, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1482, 5, 376, 0, 0, 1481, 1483, 3, 238, 119, 0, 1482, 1481, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1485, 1, 0, 0, 0, 1484, 1486, 3, 232, 116, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1489, 3, 254, 127, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 377, 0, 0, 1491, 229, 1, 0, 0, 0, 1492, 1493, 5, 280, 0, 0, 1493, 1495, 5, 376, 0, 0, 1494, 1496, 3, 238, 119, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1498, 1, 0, 0, 0, 1497, 1499, 3, 232, 116, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1501, 1, 0, 0, 0, 1500, 1502, 3, 242, 121, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1504, 1, 0, 0, 0, 1503, 1505, 3, 248, 124, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1508, 3, 250, 125, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1511, 3, 244, 122, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 3, 252, 126, 0, 1513, 1518, 5, 377, 0, 0, 1514, 1516, 5, 183, 0, 0, 1515, 1514, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1519, 3, 306, 153, 0, 1518, 1515, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 231, 1, 0, 0, 0, 1520, 1521, 5, 302, 0, 0, 1521, 1522, 5, 194, 0, 0, 1522, 1527, 3, 234, 117, 0, 1523, 1524, 5, 380, 0, 0, 1524, 1526, 3, 234, 117, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1529, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 233, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1530, 1532, 3, 260, 130, 0, 1531, 1533, 7, 26, 0, 0, 1532, 1531, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1535, 5, 86, 0, 0, 1535, 1537, 7, 27, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 235, 1, 0, 0, 0, 1538, 1541, 5, 277, 0, 0, 1539, 1542, 5, 176, 0, 0, 1540, 1542, 3, 260, 130, 0, 1541, 1539, 1, 0, 0, 0, 1541, 1540, 1, 0, 0, 0, 1542, 237, 1, 0, 0, 0, 1543, 1544, 5, 307, 0, 0, 1544, 1545, 5, 194, 0, 0, 1545, 1550, 3, 260, 130, 0, 1546, 1547, 5, 380, 0, 0, 1547, 1549, 3, 260, 130, 0, 1548, 1546, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 239, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1570, 5, 387, 0, 0, 1554, 1570, 5, 390, 0, 0, 1555, 1570, 5, 395, 0, 0, 1556, 1557, 5, 378, 0, 0, 1557, 1558, 5, 398, 0, 0, 1558, 1559, 5, 380, 0, 0, 1559, 1560, 5, 398, 0, 0, 1560, 1570, 5, 379, 0, 0, 1561, 1562, 5, 378, 0, 0, 1562, 1563, 5, 398, 0, 0, 1563, 1564, 5, 380, 0, 0, 1564, 1570, 5, 379, 0, 0, 1565, 1566, 5, 378, 0, 0, 1566, 1567, 5, 380, 0, 0, 1567, 1568, 5, 398, 0, 0, 1568, 1570, 5, 379, 0, 0, 1569, 1553, 1, 0, 0, 0, 1569, 1554, 1, 0, 0, 0, 1569, 1555, 1, 0, 0, 0, 1569, 1556, 1, 0, 0, 0, 1569, 1561, 1, 0, 0, 0, 1569, 1565, 1, 0, 0, 0, 1570, 241, 1, 0, 0, 0, 1571, 1572, 5, 281, 0, 0, 1572, 1577, 3, 172, 86, 0, 1573, 1574, 5, 380, 0, 0, 1574, 1576, 3, 172, 86, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1579, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 243, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 5, 308, 0, 0, 1581, 1583, 5, 376, 0, 0, 1582, 1584, 3, 246, 123, 0, 1583, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1589, 5, 377, 0, 0, 1588, 1590, 3, 258, 129, 0, 1589, 1588, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 245, 1, 0, 0, 0, 1591, 1593, 3, 308, 154, 0, 1592, 1594, 3, 240, 120, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 247, 1, 0, 0, 0, 1595, 1596, 5, 176, 0, 0, 1596, 1597, 5, 323, 0, 0, 1597, 1598, 5, 309, 0, 0, 1598, 1604, 5, 279, 0, 0, 1599, 1600, 5, 300, 0, 0, 1600, 1601, 5, 322, 0, 0, 1601, 1602, 5, 309, 0, 0, 1602, 1604, 5, 279, 0, 0, 1603, 1595, 1, 0, 0, 0, 1603, 1599, 1, 0, 0, 0, 1604, 249, 1, 0, 0, 0, 1605, 1606, 5, 6, 0, 0, 1606, 1607, 5, 279, 0, 0, 1607, 1608, 5, 328, 0, 0, 1608, 1609, 5, 97, 0, 0, 1609, 1610, 5, 72, 0, 0, 1610, 1630, 5, 322, 0, 0, 1611, 1612, 5, 6, 0, 0, 1612, 1613, 5, 279, 0, 0, 1613, 1614, 5, 328, 0, 0, 1614, 1615, 5, 343, 0, 0, 1615, 1616, 5, 291, 0, 0, 1616, 1630, 5, 322, 0, 0, 1617, 1618, 5, 6, 0, 0, 1618, 1619, 5, 279, 0, 0, 1619, 1620, 5, 328, 0, 0, 1620, 1621, 5, 343, 0, 0, 1621, 1622, 5, 72, 0, 0, 1622, 1630, 3, 308, 154, 0, 1623, 1624, 5, 6, 0, 0, 1624, 1625, 5, 279, 0, 0, 1625, 1626, 5, 328, 0, 0, 1626, 1627, 5, 343, 0, 0, 1627, 1628, 5, 44, 0, 0, 1628, 1630, 3, 308, 154, 0, 1629, 1605, 1, 0, 0, 0, 1629, 1611, 1, 0, 0, 0, 1629, 1617, 1, 0, 0, 0, 1629, 1623, 1, 0, 0, 0, 1630, 251, 1, 0, 0, 0, 1631, 1632, 5, 229, 0, 0, 1632, 1637, 3, 172, 86, 0, 1633, 1634, 5, 380, 0, 0, 1634, 1636, 3, 172, 86, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1639, 1, 0, 0, 0, 1637, 1635, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 253, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1640, 1641, 5, 314, 0, 0, 1641, 1642, 5, 187, 0, 0, 1642, 1643, 3, 280, 140, 0, 1643, 1644, 3, 256, 128, 0, 1644, 1650, 1, 0, 0, 0, 1645, 1646, 5, 323, 0, 0, 1646, 1647, 5, 187, 0, 0, 1647, 1648, 5, 398, 0, 0, 1648, 1650, 3, 256, 128, 0, 1649, 1640, 1, 0, 0, 0, 1649, 1645, 1, 0, 0, 0, 1650, 255, 1, 0, 0, 0, 1651, 1652, 5, 101, 0, 0, 1652, 1653, 5, 179, 0, 0, 1653, 1654, 5, 219, 0, 0, 1654, 1655, 5, 322, 0, 0, 1655, 257, 1, 0, 0, 0, 1656, 1657, 5, 362, 0, 0, 1657, 1658, 3, 280, 140, 0, 1658, 259, 1, 0, 0, 0, 1659, 1660, 3, 262, 131, 0, 1660, 261, 1, 0, 0, 0, 1661, 1662, 6, 131, -1, 0, 1662, 1663, 5, 294, 0, 0, 1663, 1674, 3, 262, 131, 5, 1664, 1665, 5, 241, 0, 0, 1665, 1666, 5, 376, 0, 0, 1666, 1667, 3, 158, 79, 0, 1667, 1668, 5, 377, 0, 0, 1668, 1674, 1, 0, 0, 0, 1669, 1671, 3, 268, 134, 0, 1670, 1672, 3, 264, 132, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1661, 1, 0, 0, 0, 1673, 1664, 1, 0, 0, 0, 1673, 1669, 1, 0, 0, 0, 1674, 1683, 1, 0, 0, 0, 1675, 1676, 10, 2, 0, 0, 1676, 1677, 5, 179, 0, 0, 1677, 1682, 3, 262, 131, 3, 1678, 1679, 10, 1, 0, 0, 1679, 1680, 5, 301, 0, 0, 1680, 1682, 3, 262, 131, 2, 1681, 1675, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 263, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1686, 1688, 5, 294, 0, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 5, 187, 0, 0, 1690, 1691, 3, 268, 134, 0, 1691, 1692, 5, 179, 0, 0, 1692, 1693, 3, 268, 134, 0, 1693, 1770, 1, 0, 0, 0, 1694, 1696, 5, 294, 0, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 5, 259, 0, 0, 1698, 1699, 5, 376, 0, 0, 1699, 1704, 3, 260, 130, 0, 1700, 1701, 5, 380, 0, 0, 1701, 1703, 3, 260, 130, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1708, 5, 377, 0, 0, 1708, 1770, 1, 0, 0, 0, 1709, 1711, 5, 294, 0, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 5, 259, 0, 0, 1713, 1714, 5, 376, 0, 0, 1714, 1715, 3, 158, 79, 0, 1715, 1716, 5, 377, 0, 0, 1716, 1770, 1, 0, 0, 0, 1717, 1718, 5, 241, 0, 0, 1718, 1719, 5, 376, 0, 0, 1719, 1720, 3, 158, 79, 0, 1720, 1721, 5, 377, 0, 0, 1721, 1770, 1, 0, 0, 0, 1722, 1724, 5, 294, 0, 0, 1723, 1722, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 5, 319, 0, 0, 1726, 1770, 3, 268, 134, 0, 1727, 1729, 5, 294, 0, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 5, 276, 0, 0, 1731, 1745, 7, 28, 0, 0, 1732, 1733, 5, 376, 0, 0, 1733, 1746, 5, 377, 0, 0, 1734, 1735, 5, 376, 0, 0, 1735, 1740, 3, 260, 130, 0, 1736, 1737, 5, 380, 0, 0, 1737, 1739, 3, 260, 130, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1744, 5, 377, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1732, 1, 0, 0, 0, 1745, 1734, 1, 0, 0, 0, 1746, 1770, 1, 0, 0, 0, 1747, 1749, 5, 294, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 5, 276, 0, 0, 1751, 1770, 3, 268, 134, 0, 1752, 1754, 5, 269, 0, 0, 1753, 1755, 5, 294, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1770, 5, 295, 0, 0, 1757, 1759, 5, 269, 0, 0, 1758, 1760, 5, 294, 0, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1770, 7, 29, 0, 0, 1762, 1764, 5, 269, 0, 0, 1763, 1765, 5, 294, 0, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 5, 232, 0, 0, 1767, 1768, 5, 248, 0, 0, 1768, 1770, 3, 268, 134, 0, 1769, 1687, 1, 0, 0, 0, 1769, 1695, 1, 0, 0, 0, 1769, 1710, 1, 0, 0, 0, 1769, 1717, 1, 0, 0, 0, 1769, 1723, 1, 0, 0, 0, 1769, 1728, 1, 0, 0, 0, 1769, 1748, 1, 0, 0, 0, 1769, 1752, 1, 0, 0, 0, 1769, 1757, 1, 0, 0, 0, 1769, 1762, 1, 0, 0, 0, 1770, 265, 1, 0, 0, 0, 1771, 1773, 5, 294, 0, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 5, 276, 0, 0, 1775, 1789, 7, 28, 0, 0, 1776, 1777, 5, 376, 0, 0, 1777, 1790, 5, 377, 0, 0, 1778, 1779, 5, 376, 0, 0, 1779, 1784, 3, 260, 130, 0, 1780, 1781, 5, 380, 0, 0, 1781, 1783, 3, 260, 130, 0, 1782, 1780, 1, 0, 0, 0, 1783, 1786, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1787, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1787, 1788, 5, 377, 0, 0, 1788, 1790, 1, 0, 0, 0, 1789, 1776, 1, 0, 0, 0, 1789, 1778, 1, 0, 0, 0, 1790, 1797, 1, 0, 0, 0, 1791, 1793, 5, 294, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 5, 276, 0, 0, 1795, 1797, 3, 268, 134, 0, 1796, 1772, 1, 0, 0, 0, 1796, 1792, 1, 0, 0, 0, 1797, 267, 1, 0, 0, 0, 1798, 1799, 6, 134, -1, 0, 1799, 1803, 3, 270, 135, 0, 1800, 1801, 7, 30, 0, 0, 1801, 1803, 3, 268, 134, 7, 1802, 1798, 1, 0, 0, 0, 1802, 1800, 1, 0, 0, 0, 1803, 1825, 1, 0, 0, 0, 1804, 1805, 10, 6, 0, 0, 1805, 1806, 7, 31, 0, 0, 1806, 1824, 3, 268, 134, 7, 1807, 1808, 10, 5, 0, 0, 1808, 1809, 7, 32, 0, 0, 1809, 1824, 3, 268, 134, 6, 1810, 1811, 10, 4, 0, 0, 1811, 1812, 5, 371, 0, 0, 1812, 1824, 3, 268, 134, 5, 1813, 1814, 10, 3, 0, 0, 1814, 1815, 5, 372, 0, 0, 1815, 1824, 3, 268, 134, 4, 1816, 1817, 10, 2, 0, 0, 1817, 1818, 5, 370, 0, 0, 1818, 1824, 3, 268, 134, 3, 1819, 1820, 10, 1, 0, 0, 1820, 1821, 3, 332, 166, 0, 1821, 1822, 3, 268, 134, 2, 1822, 1824, 1, 0, 0, 0, 1823, 1804, 1, 0, 0, 0, 1823, 1807, 1, 0, 0, 0, 1823, 1810, 1, 0, 0, 0, 1823, 1813, 1, 0, 0, 0, 1823, 1816, 1, 0, 0, 0, 1823, 1819, 1, 0, 0, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 269, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1829, 6, 135, -1, 0, 1829, 1831, 5, 198, 0, 0, 1830, 1832, 3, 312, 156, 0, 1831, 1830, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1837, 1, 0, 0, 0, 1835, 1836, 5, 236, 0, 0, 1836, 1838, 3, 260, 130, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 5, 237, 0, 0, 1840, 1920, 1, 0, 0, 0, 1841, 1842, 5, 198, 0, 0, 1842, 1844, 3, 260, 130, 0, 1843, 1845, 3, 312, 156, 0, 1844, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1850, 1, 0, 0, 0, 1848, 1849, 5, 236, 0, 0, 1849, 1851, 3, 260, 130, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 5, 237, 0, 0, 1853, 1920, 1, 0, 0, 0, 1854, 1855, 5, 199, 0, 0, 1855, 1856, 5, 376, 0, 0, 1856, 1857, 3, 260, 130, 0, 1857, 1858, 5, 183, 0, 0, 1858, 1859, 3, 54, 27, 0, 1859, 1860, 5, 377, 0, 0, 1860, 1920, 1, 0, 0, 0, 1861, 1862, 5, 44, 0, 0, 1862, 1863, 5, 376, 0, 0, 1863, 1866, 3, 260, 130, 0, 1864, 1865, 5, 59, 0, 0, 1865, 1867, 5, 86, 0, 0, 1866, 1864, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1869, 5, 377, 0, 0, 1869, 1920, 1, 0, 0, 0, 1870, 1871, 5, 72, 0, 0, 1871, 1872, 5, 376, 0, 0, 1872, 1875, 3, 260, 130, 0, 1873, 1874, 5, 59, 0, 0, 1874, 1876, 5, 86, 0, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1878, 5, 377, 0, 0, 1878, 1920, 1, 0, 0, 0, 1879, 1880, 5, 312, 0, 0, 1880, 1881, 5, 376, 0, 0, 1881, 1882, 3, 268, 134, 0, 1882, 1883, 5, 259, 0, 0, 1883, 1884, 3, 268, 134, 0, 1884, 1885, 5, 377, 0, 0, 1885, 1920, 1, 0, 0, 0, 1886, 1920, 3, 340, 170, 0, 1887, 1920, 5, 387, 0, 0, 1888, 1889, 3, 314, 157, 0, 1889, 1890, 5, 373, 0, 0, 1890, 1891, 5, 387, 0, 0, 1891, 1920, 1, 0, 0, 0, 1892, 1893, 5, 376, 0, 0, 1893, 1894, 3, 158, 79, 0, 1894, 1895, 5, 377, 0, 0, 1895, 1920, 1, 0, 0, 0, 1896, 1897, 3, 272, 136, 0, 1897, 1909, 5, 376, 0, 0, 1898, 1900, 3, 348, 174, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1906, 3, 260, 130, 0, 1902, 1903, 5, 380, 0, 0, 1903, 1905, 3, 260, 130, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1899, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 5, 377, 0, 0, 1912, 1920, 1, 0, 0, 0, 1913, 1920, 3, 306, 153, 0, 1914, 1920, 3, 274, 137, 0, 1915, 1916, 5, 376, 0, 0, 1916, 1917, 3, 260, 130, 0, 1917, 1918, 5, 377, 0, 0, 1918, 1920, 1, 0, 0, 0, 1919, 1828, 1, 0, 0, 0, 1919, 1841, 1, 0, 0, 0, 1919, 1854, 1, 0, 0, 0, 1919, 1861, 1, 0, 0, 0, 1919, 1870, 1, 0, 0, 0, 1919, 1879, 1, 0, 0, 0, 1919, 1886, 1, 0, 0, 0, 1919, 1887, 1, 0, 0, 0, 1919, 1888, 1, 0, 0, 0, 1919, 1892, 1, 0, 0, 0, 1919, 1896, 1, 0, 0, 0, 1919, 1913, 1, 0, 0, 0, 1919, 1914, 1, 0, 0, 0, 1919, 1915, 1, 0, 0, 0, 1920, 1928, 1, 0, 0, 0, 1921, 1922, 10, 4, 0, 0, 1922, 1923, 5, 374, 0, 0, 1923, 1924, 3, 268, 134, 0, 1924, 1925, 5, 375, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1921, 1, 0, 0, 0, 1927, 1930, 1, 0, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 271, 1, 0, 0, 0, 1930, 1928, 1, 0, 0, 0, 1931, 1935, 3, 350, 175, 0, 1932, 1935, 3, 352, 176, 0, 1933, 1935, 3, 314, 157, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1932, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1935, 273, 1, 0, 0, 0, 1936, 1937, 3, 314, 157, 0, 1937, 275, 1, 0, 0, 0, 1938, 1939, 3, 306, 153, 0, 1939, 277, 1, 0, 0, 0, 1940, 1943, 3, 306, 153, 0, 1941, 1943, 3, 274, 137, 0, 1942, 1940, 1, 0, 0, 0, 1942, 1941, 1, 0, 0, 0, 1943, 279, 1, 0, 0, 0, 1944, 1947, 5, 267, 0, 0, 1945, 1948, 3, 282, 141, 0, 1946, 1948, 3, 286, 143, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 281, 1, 0, 0, 0, 1949, 1951, 3, 284, 142, 0, 1950, 1952, 3, 288, 144, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 283, 1, 0, 0, 0, 1953, 1954, 3, 290, 145, 0, 1954, 1955, 3, 292, 146, 0, 1955, 1957, 1, 0, 0, 0, 1956, 1953, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 285, 1, 0, 0, 0, 1960, 1963, 3, 288, 144, 0, 1961, 1964, 3, 284, 142, 0, 1962, 1964, 3, 288, 144, 0, 1963, 1961, 1, 0, 0, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 287, 1, 0, 0, 0, 1965, 1966, 3, 290, 145, 0, 1966, 1967, 3, 292, 146, 0, 1967, 1968, 5, 343, 0, 0, 1968, 1969, 3, 292, 146, 0, 1969, 289, 1, 0, 0, 0, 1970, 1972, 7, 33, 0, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1976, 7, 34, 0, 0, 1974, 1976, 5, 397, 0, 0, 1975, 1971, 1, 0, 0, 0, 1975, 1974, 1, 0, 0, 0, 1976, 291, 1, 0, 0, 0, 1977, 1980, 3, 306, 153, 0, 1978, 1980, 3, 350, 175, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1978, 1, 0, 0, 0, 1980, 293, 1, 0, 0, 0, 1981, 1983, 5, 183, 0, 0, 1982, 1981, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1986, 3, 306, 153, 0, 1985, 1987, 3, 302, 151, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 295, 1, 0, 0, 0, 1988, 1990, 5, 183, 0, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1993, 3, 306, 153, 0, 1992, 1994, 3, 302, 151, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 297, 1, 0, 0, 0, 1995, 1996, 3, 306, 153, 0, 1996, 1997, 3, 300, 150, 0, 1997, 299, 1, 0, 0, 0, 1998, 1999, 5, 284, 0, 0, 1999, 2001, 3, 306, 153, 0, 2000, 1998, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2000, 1, 0, 0, 0, 2005, 2004, 1, 0, 0, 0, 2006, 301, 1, 0, 0, 0, 2007, 2008, 5, 376, 0, 0, 2008, 2009, 3, 304, 152, 0, 2009, 2010, 5, 377, 0, 0, 2010, 303, 1, 0, 0, 0, 2011, 2016, 3, 306, 153, 0, 2012, 2013, 5, 380, 0, 0, 2013, 2015, 3, 306, 153, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 305, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2023, 3, 308, 154, 0, 2020, 2023, 3, 310, 155, 0, 2021, 2023, 3, 352, 176, 0, 2022, 2019, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2021, 1, 0, 0, 0, 2023, 307, 1, 0, 0, 0, 2024, 2025, 7, 35, 0, 0, 2025, 309, 1, 0, 0, 0, 2026, 2027, 5, 397, 0, 0, 2027, 311, 1, 0, 0, 0, 2028, 2029, 5, 358, 0, 0, 2029, 2030, 3, 260, 130, 0, 2030, 2031, 5, 339, 0, 0, 2031, 2032, 3, 260, 130, 0, 2032, 313, 1, 0, 0, 0, 2033, 2038, 3, 306, 153, 0, 2034, 2035, 5, 373, 0, 0, 2035, 2037, 3, 306, 153, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 315, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2042, 5, 361, 0, 0, 2042, 2043, 3, 322, 161, 0, 2043, 317, 1, 0, 0, 0, 2044, 2045, 5, 58, 0, 0, 2045, 2046, 5, 294, 0, 0, 2046, 2047, 5, 241, 0, 0, 2047, 319, 1, 0, 0, 0, 2048, 2049, 5, 58, 0, 0, 2049, 2050, 5, 241, 0, 0, 2050, 321, 1, 0, 0, 0, 2051, 2052, 5, 376, 0, 0, 2052, 2057, 3, 324, 162, 0, 2053, 2054, 5, 380, 0, 0, 2054, 2056, 3, 324, 162, 0, 2055, 2053, 1, 0, 0, 0, 2056, 2059, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2060, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2060, 2061, 5, 377, 0, 0, 2061, 323, 1, 0, 0, 0, 2062, 2067, 3, 326, 163, 0, 2063, 2065, 5, 365, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2068, 3, 328, 164, 0, 2067, 2064, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 325, 1, 0, 0, 0, 2069, 2073, 3, 306, 153, 0, 2070, 2073, 3, 274, 137, 0, 2071, 2073, 5, 397, 0, 0, 2072, 2069, 1, 0, 0, 0, 2072, 2070, 1, 0, 0, 0, 2072, 2071, 1, 0, 0, 0, 2073, 327, 1, 0, 0, 0, 2074, 2079, 5, 398, 0, 0, 2075, 2079, 5, 399, 0, 0, 2076, 2079, 3, 346, 173, 0, 2077, 2079, 5, 397, 0, 0, 2078, 2074, 1, 0, 0, 0, 2078, 2075, 1, 0, 0, 0, 2078, 2076, 1, 0, 0, 0, 2078, 2077, 1, 0, 0, 0, 2079, 329, 1, 0, 0, 0, 2080, 2087, 5, 179, 0, 0, 2081, 2082, 5, 371, 0, 0, 2082, 2087, 5, 371, 0, 0, 2083, 2087, 5, 301, 0, 0, 2084, 2085, 5, 370, 0, 0, 2085, 2087, 5, 370, 0, 0, 2086, 2080, 1, 0, 0, 0, 2086, 2081, 1, 0, 0, 0, 2086, 2083, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2087, 331, 1, 0, 0, 0, 2088, 2103, 5, 365, 0, 0, 2089, 2103, 5, 366, 0, 0, 2090, 2103, 5, 367, 0, 0, 2091, 2092, 5, 367, 0, 0, 2092, 2103, 5, 365, 0, 0, 2093, 2094, 5, 366, 0, 0, 2094, 2103, 5, 365, 0, 0, 2095, 2096, 5, 367, 0, 0, 2096, 2103, 5, 366, 0, 0, 2097, 2098, 5, 368, 0, 0, 2098, 2103, 5, 365, 0, 0, 2099, 2100, 5, 367, 0, 0, 2100, 2101, 5, 365, 0, 0, 2101, 2103, 5, 366, 0, 0, 2102, 2088, 1, 0, 0, 0, 2102, 2089, 1, 0, 0, 0, 2102, 2090, 1, 0, 0, 0, 2102, 2091, 1, 0, 0, 0, 2102, 2093, 1, 0, 0, 0, 2102, 2095, 1, 0, 0, 0, 2102, 2097, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2103, 333, 1, 0, 0, 0, 2104, 2105, 5, 367, 0, 0, 2105, 2112, 5, 367, 0, 0, 2106, 2107, 5, 366, 0, 0, 2107, 2112, 5, 366, 0, 0, 2108, 2112, 5, 371, 0, 0, 2109, 2112, 5, 372, 0, 0, 2110, 2112, 5, 370, 0, 0, 2111, 2104, 1, 0, 0, 0, 2111, 2106, 1, 0, 0, 0, 2111, 2108, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 335, 1, 0, 0, 0, 2113, 2114, 7, 36, 0, 0, 2114, 337, 1, 0, 0, 0, 2115, 2116, 7, 37, 0, 0, 2116, 339, 1, 0, 0, 0, 2117, 2130, 3, 342, 171, 0, 2118, 2130, 3, 344, 172, 0, 2119, 2130, 3, 280, 140, 0, 2120, 2121, 5, 389, 0, 0, 2121, 2130, 3, 344, 172, 0, 2122, 2130, 3, 346, 173, 0, 2123, 2130, 5, 399, 0, 0, 2124, 2130, 5, 400, 0, 0, 2125, 2127, 5, 294, 0, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2130, 5, 295, 0, 0, 2129, 2117, 1, 0, 0, 0, 2129, 2118, 1, 0, 0, 0, 2129, 2119, 1, 0, 0, 0, 2129, 2120, 1, 0, 0, 0, 2129, 2122, 1, 0, 0, 0, 2129, 2123, 1, 0, 0, 0, 2129, 2124, 1, 0, 0, 0, 2129, 2126, 1, 0, 0, 0, 2130, 341, 1, 0, 0, 0, 2131, 2132, 5, 397, 0, 0, 2132, 343, 1, 0, 0, 0, 2133, 2134, 5, 398, 0, 0, 2134, 345, 1, 0, 0, 0, 2135, 2136, 7, 29, 0, 0, 2136, 347, 1, 0, 0, 0, 2137, 2138, 7, 38, 0, 0, 2138, 349, 1, 0, 0, 0, 2139, 2140, 7, 39, 0, 0, 2140, 351, 1, 0, 0, 0, 2141, 2142, 7, 40, 0, 0, 2142, 353, 1, 0, 0, 0, 248, 362, 365, 367, 382, 400, 404, 413, 418, 425, 432, 436, 445, 457, 460, 467, 475, 480, 483, 490, 498, 502, 514, 522, 526, 547, 551, 555, 559, 568, 573, 577, 581, 585, 588, 592, 597, 603, 608, 613, 616, 620, 628, 636, 640, 644, 648, 652, 656, 660, 664, 668, 670, 680, 688, 712, 719, 725, 728, 731, 741, 744, 752, 764, 788, 801, 806, 810, 818, 822, 830, 840, 844, 850, 854, 858, 861, 870, 874, 881, 884, 894, 902, 910, 914, 929, 948, 959, 963, 970, 975, 981, 985, 992, 996, 1000, 1004, 1012, 1016, 1021, 1027, 1033, 1036, 1040, 1051, 1060, 1074, 1086, 1101, 1104, 1108, 1111, 1113, 1118, 1122, 1125, 1129, 1138, 1147, 1157, 1162, 1174, 1177, 1180, 1183, 1189, 1193, 1201, 1204, 1209, 1212, 1214, 1228, 1239, 1244, 1252, 1255, 1258, 1263, 1265, 1267, 1272, 1275, 1279, 1282, 1285, 1297, 1304, 1315, 1344, 1366, 1384, 1389, 1401, 1414, 1426, 1438, 1443, 1470, 1478, 1482, 1485, 1488, 1495, 1498, 1501, 1504, 1507, 1510, 1515, 1518, 1527, 1532, 1536, 1541, 1550, 1569, 1577, 1585, 1589, 1593, 1603, 1629, 1637, 1649, 1671, 1673, 1681, 1683, 1687, 1695, 1704, 1710, 1723, 1728, 1740, 1745, 1748, 1754, 1759, 1764, 1769, 1772, 1784, 1789, 1792, 1796, 1802, 1823, 1825, 1833, 1837, 1846, 1850, 1866, 1875, 1899, 1906, 1909, 1919, 1928, 1934, 1942, 1947, 1951, 1958, 1963, 1971, 1975, 1979, 1982, 1986, 1989, 1993, 2002, 2005, 2016, 2022, 2038, 2057, 2064, 2067, 2072, 2078, 2086, 2102, 2111, 2126, 2129] \ No newline at end of file +[4, 1, 407, 2142, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 365, 8, 2, 1, 2, 5, 2, 368, 8, 2, 10, 2, 12, 2, 371, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 385, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 403, 8, 5, 1, 6, 1, 6, 3, 6, 407, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 416, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 421, 8, 8, 1, 9, 1, 9, 1, 9, 5, 9, 426, 8, 9, 10, 9, 12, 9, 429, 9, 9, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 435, 8, 11, 1, 11, 1, 11, 3, 11, 439, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 446, 8, 12, 10, 12, 12, 12, 449, 9, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 460, 8, 13, 1, 13, 3, 13, 463, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 470, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 478, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 483, 8, 13, 1, 13, 3, 13, 486, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 493, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 501, 8, 16, 1, 17, 1, 17, 3, 17, 505, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 517, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 525, 8, 19, 1, 19, 1, 19, 3, 19, 529, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 550, 8, 19, 1, 20, 1, 20, 3, 20, 554, 8, 20, 1, 21, 1, 21, 3, 21, 558, 8, 21, 1, 21, 1, 21, 3, 21, 562, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 569, 8, 21, 10, 21, 12, 21, 572, 9, 21, 1, 21, 1, 21, 3, 21, 576, 8, 21, 1, 21, 1, 21, 3, 21, 580, 8, 21, 1, 21, 1, 21, 3, 21, 584, 8, 21, 1, 21, 1, 21, 3, 21, 588, 8, 21, 1, 21, 3, 21, 591, 8, 21, 1, 21, 1, 21, 3, 21, 595, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 600, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 606, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 611, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 616, 8, 24, 1, 24, 3, 24, 619, 8, 24, 1, 25, 1, 25, 3, 25, 623, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 629, 8, 26, 10, 26, 12, 26, 632, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 639, 8, 27, 1, 27, 1, 27, 3, 27, 643, 8, 27, 1, 27, 1, 27, 3, 27, 647, 8, 27, 1, 27, 1, 27, 3, 27, 651, 8, 27, 1, 27, 1, 27, 3, 27, 655, 8, 27, 1, 27, 1, 27, 3, 27, 659, 8, 27, 1, 27, 1, 27, 3, 27, 663, 8, 27, 1, 27, 1, 27, 3, 27, 667, 8, 27, 1, 27, 1, 27, 3, 27, 671, 8, 27, 3, 27, 673, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 683, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 691, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 713, 8, 33, 10, 33, 12, 33, 716, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 722, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 728, 8, 34, 1, 34, 3, 34, 731, 8, 34, 1, 34, 3, 34, 734, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 744, 8, 36, 1, 36, 3, 36, 747, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 755, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 767, 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, 789, 8, 45, 10, 45, 12, 45, 792, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 802, 8, 46, 10, 46, 12, 46, 805, 9, 46, 1, 46, 1, 46, 3, 46, 809, 8, 46, 1, 47, 1, 47, 3, 47, 813, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 819, 8, 48, 10, 48, 12, 48, 822, 9, 48, 1, 48, 3, 48, 825, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 833, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 843, 8, 52, 1, 52, 1, 52, 3, 52, 847, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 853, 8, 53, 1, 53, 1, 53, 3, 53, 857, 8, 53, 1, 53, 1, 53, 3, 53, 861, 8, 53, 1, 53, 3, 53, 864, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 873, 8, 54, 1, 54, 1, 54, 3, 54, 877, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 884, 8, 54, 1, 54, 3, 54, 887, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 895, 8, 55, 10, 55, 12, 55, 898, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 905, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 913, 8, 57, 1, 58, 1, 58, 3, 58, 917, 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, 932, 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, 951, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 962, 8, 66, 1, 66, 1, 66, 3, 66, 966, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 973, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 978, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 984, 8, 68, 1, 68, 1, 68, 3, 68, 988, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 995, 8, 69, 1, 69, 1, 69, 3, 69, 999, 8, 69, 1, 70, 1, 70, 3, 70, 1003, 8, 70, 1, 70, 1, 70, 3, 70, 1007, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1015, 8, 71, 1, 71, 1, 71, 3, 71, 1019, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1024, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1030, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1036, 8, 73, 1, 73, 3, 73, 1039, 8, 73, 1, 73, 1, 73, 3, 73, 1043, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1052, 8, 75, 10, 75, 12, 75, 1055, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1061, 8, 76, 10, 76, 12, 76, 1064, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1075, 8, 77, 11, 77, 12, 77, 1076, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1087, 8, 78, 11, 78, 12, 78, 1088, 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, 1104, 8, 79, 1, 79, 3, 79, 1107, 8, 79, 1, 79, 1, 79, 3, 79, 1111, 8, 79, 1, 79, 3, 79, 1114, 8, 79, 3, 79, 1116, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1121, 8, 79, 1, 79, 1, 79, 3, 79, 1125, 8, 79, 1, 79, 3, 79, 1128, 8, 79, 5, 79, 1130, 8, 79, 10, 79, 12, 79, 1133, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1139, 8, 80, 10, 80, 12, 80, 1142, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1148, 8, 81, 10, 81, 12, 81, 1151, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1158, 8, 82, 10, 82, 12, 82, 1161, 9, 82, 1, 82, 1, 82, 3, 82, 1165, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 1177, 8, 84, 1, 84, 3, 84, 1180, 8, 84, 1, 84, 3, 84, 1183, 8, 84, 1, 84, 3, 84, 1186, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1192, 8, 84, 1, 85, 1, 85, 3, 85, 1196, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1202, 8, 85, 10, 85, 12, 85, 1205, 9, 85, 3, 85, 1207, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1212, 8, 86, 1, 86, 3, 86, 1215, 8, 86, 3, 86, 1217, 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, 1231, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1240, 8, 89, 10, 89, 12, 89, 1243, 9, 89, 1, 89, 1, 89, 3, 89, 1247, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1255, 8, 89, 1, 89, 3, 89, 1258, 8, 89, 1, 89, 3, 89, 1261, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1266, 8, 89, 5, 89, 1268, 8, 89, 10, 89, 12, 89, 1271, 9, 89, 1, 90, 1, 90, 3, 90, 1275, 8, 90, 1, 91, 3, 91, 1278, 8, 91, 1, 91, 1, 91, 3, 91, 1282, 8, 91, 1, 91, 3, 91, 1285, 8, 91, 1, 91, 3, 91, 1288, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1298, 8, 91, 10, 91, 12, 91, 1301, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1307, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1318, 8, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1345, 8, 97, 10, 97, 12, 97, 1348, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1369, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1385, 8, 102, 10, 102, 12, 102, 1388, 9, 102, 1, 102, 1, 102, 3, 102, 1392, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1402, 8, 104, 10, 104, 12, 104, 1405, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1415, 8, 105, 10, 105, 12, 105, 1418, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1427, 8, 105, 10, 105, 12, 105, 1430, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1439, 8, 105, 10, 105, 12, 105, 1442, 9, 105, 1, 105, 1, 105, 3, 105, 1446, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1471, 8, 112, 10, 112, 12, 112, 1474, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1481, 8, 114, 1, 114, 1, 114, 3, 114, 1485, 8, 114, 1, 114, 3, 114, 1488, 8, 114, 1, 114, 3, 114, 1491, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1498, 8, 115, 1, 115, 3, 115, 1501, 8, 115, 1, 115, 3, 115, 1504, 8, 115, 1, 115, 3, 115, 1507, 8, 115, 1, 115, 3, 115, 1510, 8, 115, 1, 115, 3, 115, 1513, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1518, 8, 115, 1, 115, 3, 115, 1521, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1528, 8, 116, 10, 116, 12, 116, 1531, 9, 116, 1, 117, 1, 117, 3, 117, 1535, 8, 117, 1, 117, 1, 117, 3, 117, 1539, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1544, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1551, 8, 119, 10, 119, 12, 119, 1554, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1572, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1578, 8, 121, 10, 121, 12, 121, 1581, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1586, 8, 122, 11, 122, 12, 122, 1587, 1, 122, 1, 122, 3, 122, 1592, 8, 122, 1, 123, 1, 123, 3, 123, 1596, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1606, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1632, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1638, 8, 126, 10, 126, 12, 126, 1641, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1652, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1674, 8, 131, 3, 131, 1676, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1687, 8, 131, 1, 131, 5, 131, 1690, 8, 131, 10, 131, 12, 131, 1693, 9, 131, 1, 132, 3, 132, 1696, 8, 132, 1, 132, 1, 132, 3, 132, 1700, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1707, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1714, 8, 132, 10, 132, 12, 132, 1717, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1722, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1735, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1742, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1747, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1753, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1760, 8, 132, 3, 132, 1762, 8, 132, 1, 133, 3, 133, 1765, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1775, 8, 133, 10, 133, 12, 133, 1778, 9, 133, 1, 133, 1, 133, 3, 133, 1782, 8, 133, 1, 133, 3, 133, 1785, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1791, 8, 133, 3, 133, 1793, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1799, 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, 5, 134, 1820, 8, 134, 10, 134, 12, 134, 1823, 9, 134, 1, 135, 1, 135, 1, 135, 4, 135, 1828, 8, 135, 11, 135, 12, 135, 1829, 1, 135, 1, 135, 3, 135, 1834, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 1841, 8, 135, 11, 135, 12, 135, 1842, 1, 135, 1, 135, 3, 135, 1847, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1863, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1872, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1896, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1901, 8, 135, 10, 135, 12, 135, 1904, 9, 135, 3, 135, 1906, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1916, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1923, 8, 135, 10, 135, 12, 135, 1926, 9, 135, 1, 136, 1, 136, 1, 136, 3, 136, 1931, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 1939, 8, 139, 1, 140, 1, 140, 1, 140, 3, 140, 1944, 8, 140, 1, 141, 1, 141, 3, 141, 1948, 8, 141, 1, 142, 1, 142, 1, 142, 4, 142, 1953, 8, 142, 11, 142, 12, 142, 1954, 1, 143, 1, 143, 1, 143, 3, 143, 1960, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 3, 145, 1968, 8, 145, 1, 145, 1, 145, 3, 145, 1972, 8, 145, 1, 146, 1, 146, 3, 146, 1976, 8, 146, 1, 147, 3, 147, 1979, 8, 147, 1, 147, 1, 147, 3, 147, 1983, 8, 147, 1, 148, 3, 148, 1986, 8, 148, 1, 148, 1, 148, 3, 148, 1990, 8, 148, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 4, 150, 1997, 8, 150, 11, 150, 12, 150, 1998, 1, 150, 3, 150, 2002, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 5, 152, 2011, 8, 152, 10, 152, 12, 152, 2014, 9, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2019, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 5, 157, 2033, 8, 157, 10, 157, 12, 157, 2036, 9, 157, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2052, 8, 161, 10, 161, 12, 161, 2055, 9, 161, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2061, 8, 162, 1, 162, 3, 162, 2064, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2069, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2075, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2083, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2099, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2108, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2123, 8, 170, 1, 170, 3, 170, 2126, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 2034, 5, 158, 178, 262, 268, 270, 178, 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, 0, 44, 2, 0, 30, 30, 232, 232, 3, 0, 16, 16, 37, 37, 67, 67, 4, 0, 13, 13, 26, 26, 64, 64, 166, 166, 2, 0, 12, 12, 25, 25, 2, 0, 250, 250, 261, 261, 2, 0, 165, 165, 342, 342, 2, 0, 4, 4, 117, 117, 1, 0, 107, 111, 3, 0, 193, 193, 223, 223, 297, 297, 11, 0, 10, 10, 145, 145, 151, 151, 189, 190, 202, 202, 224, 224, 266, 267, 333, 333, 345, 345, 347, 347, 361, 362, 2, 0, 366, 366, 368, 368, 4, 0, 226, 227, 234, 234, 248, 248, 298, 298, 2, 0, 182, 182, 291, 291, 2, 0, 40, 40, 262, 262, 3, 0, 21, 21, 95, 95, 176, 176, 3, 0, 40, 40, 93, 93, 262, 262, 3, 0, 52, 52, 89, 89, 169, 169, 3, 0, 65, 65, 106, 106, 125, 125, 2, 0, 11, 11, 122, 122, 2, 0, 92, 92, 270, 270, 3, 0, 241, 241, 268, 268, 351, 351, 4, 0, 251, 251, 263, 263, 277, 277, 321, 321, 3, 0, 23, 23, 56, 56, 155, 155, 5, 0, 24, 24, 138, 139, 144, 144, 150, 150, 300, 300, 2, 0, 219, 219, 324, 324, 3, 0, 56, 56, 135, 135, 155, 155, 2, 0, 8, 8, 30, 30, 2, 0, 44, 44, 72, 72, 4, 0, 247, 247, 297, 297, 349, 349, 353, 353, 2, 0, 184, 184, 338, 338, 2, 0, 176, 176, 180, 180, 2, 0, 374, 374, 394, 395, 4, 0, 32, 32, 392, 392, 396, 396, 399, 399, 2, 0, 394, 395, 397, 397, 1, 0, 394, 395, 1, 0, 403, 404, 2, 0, 403, 403, 406, 406, 4, 0, 32, 32, 392, 392, 394, 396, 398, 399, 3, 0, 296, 296, 373, 374, 394, 395, 2, 0, 247, 247, 349, 349, 2, 0, 176, 176, 233, 233, 28, 0, 58, 58, 76, 76, 113, 113, 170, 170, 175, 175, 182, 182, 186, 186, 200, 201, 207, 207, 209, 209, 216, 216, 223, 223, 256, 256, 259, 259, 273, 273, 277, 277, 287, 287, 290, 290, 308, 308, 314, 315, 318, 318, 321, 321, 327, 327, 336, 337, 345, 346, 350, 350, 355, 355, 369, 369, 4, 0, 175, 239, 241, 314, 316, 337, 339, 369, 1, 0, 4, 174, 2326, 0, 356, 1, 0, 0, 0, 2, 359, 1, 0, 0, 0, 4, 369, 1, 0, 0, 0, 6, 384, 1, 0, 0, 0, 8, 386, 1, 0, 0, 0, 10, 402, 1, 0, 0, 0, 12, 406, 1, 0, 0, 0, 14, 408, 1, 0, 0, 0, 16, 411, 1, 0, 0, 0, 18, 422, 1, 0, 0, 0, 20, 430, 1, 0, 0, 0, 22, 438, 1, 0, 0, 0, 24, 440, 1, 0, 0, 0, 26, 485, 1, 0, 0, 0, 28, 487, 1, 0, 0, 0, 30, 494, 1, 0, 0, 0, 32, 498, 1, 0, 0, 0, 34, 502, 1, 0, 0, 0, 36, 506, 1, 0, 0, 0, 38, 549, 1, 0, 0, 0, 40, 553, 1, 0, 0, 0, 42, 555, 1, 0, 0, 0, 44, 596, 1, 0, 0, 0, 46, 610, 1, 0, 0, 0, 48, 612, 1, 0, 0, 0, 50, 622, 1, 0, 0, 0, 52, 624, 1, 0, 0, 0, 54, 672, 1, 0, 0, 0, 56, 674, 1, 0, 0, 0, 58, 678, 1, 0, 0, 0, 60, 686, 1, 0, 0, 0, 62, 694, 1, 0, 0, 0, 64, 698, 1, 0, 0, 0, 66, 705, 1, 0, 0, 0, 68, 733, 1, 0, 0, 0, 70, 735, 1, 0, 0, 0, 72, 738, 1, 0, 0, 0, 74, 748, 1, 0, 0, 0, 76, 750, 1, 0, 0, 0, 78, 756, 1, 0, 0, 0, 80, 758, 1, 0, 0, 0, 82, 766, 1, 0, 0, 0, 84, 774, 1, 0, 0, 0, 86, 776, 1, 0, 0, 0, 88, 780, 1, 0, 0, 0, 90, 784, 1, 0, 0, 0, 92, 808, 1, 0, 0, 0, 94, 812, 1, 0, 0, 0, 96, 814, 1, 0, 0, 0, 98, 826, 1, 0, 0, 0, 100, 832, 1, 0, 0, 0, 102, 834, 1, 0, 0, 0, 104, 839, 1, 0, 0, 0, 106, 850, 1, 0, 0, 0, 108, 868, 1, 0, 0, 0, 110, 888, 1, 0, 0, 0, 112, 899, 1, 0, 0, 0, 114, 901, 1, 0, 0, 0, 116, 914, 1, 0, 0, 0, 118, 921, 1, 0, 0, 0, 120, 924, 1, 0, 0, 0, 122, 933, 1, 0, 0, 0, 124, 937, 1, 0, 0, 0, 126, 941, 1, 0, 0, 0, 128, 944, 1, 0, 0, 0, 130, 952, 1, 0, 0, 0, 132, 957, 1, 0, 0, 0, 134, 974, 1, 0, 0, 0, 136, 981, 1, 0, 0, 0, 138, 991, 1, 0, 0, 0, 140, 1000, 1, 0, 0, 0, 142, 1010, 1, 0, 0, 0, 144, 1029, 1, 0, 0, 0, 146, 1031, 1, 0, 0, 0, 148, 1044, 1, 0, 0, 0, 150, 1047, 1, 0, 0, 0, 152, 1056, 1, 0, 0, 0, 154, 1067, 1, 0, 0, 0, 156, 1080, 1, 0, 0, 0, 158, 1115, 1, 0, 0, 0, 160, 1134, 1, 0, 0, 0, 162, 1143, 1, 0, 0, 0, 164, 1152, 1, 0, 0, 0, 166, 1171, 1, 0, 0, 0, 168, 1191, 1, 0, 0, 0, 170, 1193, 1, 0, 0, 0, 172, 1216, 1, 0, 0, 0, 174, 1230, 1, 0, 0, 0, 176, 1232, 1, 0, 0, 0, 178, 1246, 1, 0, 0, 0, 180, 1272, 1, 0, 0, 0, 182, 1317, 1, 0, 0, 0, 184, 1319, 1, 0, 0, 0, 186, 1321, 1, 0, 0, 0, 188, 1327, 1, 0, 0, 0, 190, 1329, 1, 0, 0, 0, 192, 1334, 1, 0, 0, 0, 194, 1339, 1, 0, 0, 0, 196, 1351, 1, 0, 0, 0, 198, 1368, 1, 0, 0, 0, 200, 1370, 1, 0, 0, 0, 202, 1372, 1, 0, 0, 0, 204, 1391, 1, 0, 0, 0, 206, 1393, 1, 0, 0, 0, 208, 1396, 1, 0, 0, 0, 210, 1445, 1, 0, 0, 0, 212, 1447, 1, 0, 0, 0, 214, 1450, 1, 0, 0, 0, 216, 1452, 1, 0, 0, 0, 218, 1459, 1, 0, 0, 0, 220, 1461, 1, 0, 0, 0, 222, 1463, 1, 0, 0, 0, 224, 1466, 1, 0, 0, 0, 226, 1475, 1, 0, 0, 0, 228, 1480, 1, 0, 0, 0, 230, 1494, 1, 0, 0, 0, 232, 1522, 1, 0, 0, 0, 234, 1532, 1, 0, 0, 0, 236, 1540, 1, 0, 0, 0, 238, 1545, 1, 0, 0, 0, 240, 1571, 1, 0, 0, 0, 242, 1573, 1, 0, 0, 0, 244, 1582, 1, 0, 0, 0, 246, 1593, 1, 0, 0, 0, 248, 1605, 1, 0, 0, 0, 250, 1631, 1, 0, 0, 0, 252, 1633, 1, 0, 0, 0, 254, 1651, 1, 0, 0, 0, 256, 1653, 1, 0, 0, 0, 258, 1658, 1, 0, 0, 0, 260, 1661, 1, 0, 0, 0, 262, 1675, 1, 0, 0, 0, 264, 1761, 1, 0, 0, 0, 266, 1792, 1, 0, 0, 0, 268, 1798, 1, 0, 0, 0, 270, 1915, 1, 0, 0, 0, 272, 1930, 1, 0, 0, 0, 274, 1932, 1, 0, 0, 0, 276, 1934, 1, 0, 0, 0, 278, 1938, 1, 0, 0, 0, 280, 1940, 1, 0, 0, 0, 282, 1945, 1, 0, 0, 0, 284, 1952, 1, 0, 0, 0, 286, 1956, 1, 0, 0, 0, 288, 1961, 1, 0, 0, 0, 290, 1971, 1, 0, 0, 0, 292, 1975, 1, 0, 0, 0, 294, 1978, 1, 0, 0, 0, 296, 1985, 1, 0, 0, 0, 298, 1991, 1, 0, 0, 0, 300, 2001, 1, 0, 0, 0, 302, 2003, 1, 0, 0, 0, 304, 2007, 1, 0, 0, 0, 306, 2018, 1, 0, 0, 0, 308, 2020, 1, 0, 0, 0, 310, 2022, 1, 0, 0, 0, 312, 2024, 1, 0, 0, 0, 314, 2029, 1, 0, 0, 0, 316, 2037, 1, 0, 0, 0, 318, 2040, 1, 0, 0, 0, 320, 2044, 1, 0, 0, 0, 322, 2047, 1, 0, 0, 0, 324, 2058, 1, 0, 0, 0, 326, 2068, 1, 0, 0, 0, 328, 2074, 1, 0, 0, 0, 330, 2082, 1, 0, 0, 0, 332, 2098, 1, 0, 0, 0, 334, 2107, 1, 0, 0, 0, 336, 2109, 1, 0, 0, 0, 338, 2111, 1, 0, 0, 0, 340, 2125, 1, 0, 0, 0, 342, 2127, 1, 0, 0, 0, 344, 2129, 1, 0, 0, 0, 346, 2131, 1, 0, 0, 0, 348, 2133, 1, 0, 0, 0, 350, 2135, 1, 0, 0, 0, 352, 2137, 1, 0, 0, 0, 354, 2139, 1, 0, 0, 0, 356, 357, 3, 2, 1, 0, 357, 358, 5, 0, 0, 1, 358, 1, 1, 0, 0, 0, 359, 360, 3, 4, 2, 0, 360, 361, 5, 0, 0, 1, 361, 3, 1, 0, 0, 0, 362, 364, 3, 6, 3, 0, 363, 365, 5, 386, 0, 0, 364, 363, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 368, 1, 0, 0, 0, 366, 368, 3, 8, 4, 0, 367, 362, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 5, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 385, 3, 10, 5, 0, 373, 385, 3, 12, 6, 0, 374, 385, 3, 14, 7, 0, 375, 385, 3, 16, 8, 0, 376, 385, 3, 22, 11, 0, 377, 385, 3, 26, 13, 0, 378, 385, 3, 28, 14, 0, 379, 385, 3, 30, 15, 0, 380, 385, 3, 32, 16, 0, 381, 385, 3, 34, 17, 0, 382, 385, 3, 36, 18, 0, 383, 385, 3, 38, 19, 0, 384, 372, 1, 0, 0, 0, 384, 373, 1, 0, 0, 0, 384, 374, 1, 0, 0, 0, 384, 375, 1, 0, 0, 0, 384, 376, 1, 0, 0, 0, 384, 377, 1, 0, 0, 0, 384, 378, 1, 0, 0, 0, 384, 379, 1, 0, 0, 0, 384, 380, 1, 0, 0, 0, 384, 381, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 383, 1, 0, 0, 0, 385, 7, 1, 0, 0, 0, 386, 387, 5, 386, 0, 0, 387, 9, 1, 0, 0, 0, 388, 403, 3, 40, 20, 0, 389, 403, 3, 104, 52, 0, 390, 403, 3, 106, 53, 0, 391, 403, 3, 108, 54, 0, 392, 403, 3, 102, 51, 0, 393, 403, 3, 114, 57, 0, 394, 403, 3, 128, 64, 0, 395, 403, 3, 130, 65, 0, 396, 403, 3, 132, 66, 0, 397, 403, 3, 134, 67, 0, 398, 403, 3, 136, 68, 0, 399, 403, 3, 138, 69, 0, 400, 403, 3, 140, 70, 0, 401, 403, 3, 142, 71, 0, 402, 388, 1, 0, 0, 0, 402, 389, 1, 0, 0, 0, 402, 390, 1, 0, 0, 0, 402, 391, 1, 0, 0, 0, 402, 392, 1, 0, 0, 0, 402, 393, 1, 0, 0, 0, 402, 394, 1, 0, 0, 0, 402, 395, 1, 0, 0, 0, 402, 396, 1, 0, 0, 0, 402, 397, 1, 0, 0, 0, 402, 398, 1, 0, 0, 0, 402, 399, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 402, 401, 1, 0, 0, 0, 403, 11, 1, 0, 0, 0, 404, 407, 3, 158, 79, 0, 405, 407, 3, 144, 72, 0, 406, 404, 1, 0, 0, 0, 406, 405, 1, 0, 0, 0, 407, 13, 1, 0, 0, 0, 408, 409, 7, 0, 0, 0, 409, 410, 3, 314, 157, 0, 410, 15, 1, 0, 0, 0, 411, 415, 5, 244, 0, 0, 412, 416, 3, 18, 9, 0, 413, 414, 5, 100, 0, 0, 414, 416, 5, 249, 0, 0, 415, 412, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 420, 1, 0, 0, 0, 417, 421, 3, 12, 6, 0, 418, 421, 3, 146, 73, 0, 419, 421, 3, 156, 78, 0, 420, 417, 1, 0, 0, 0, 420, 418, 1, 0, 0, 0, 420, 419, 1, 0, 0, 0, 421, 17, 1, 0, 0, 0, 422, 427, 3, 20, 10, 0, 423, 424, 5, 385, 0, 0, 424, 426, 3, 20, 10, 0, 425, 423, 1, 0, 0, 0, 426, 429, 1, 0, 0, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 19, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 430, 431, 7, 1, 0, 0, 431, 21, 1, 0, 0, 0, 432, 434, 5, 160, 0, 0, 433, 435, 5, 12, 0, 0, 434, 433, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 3, 314, 157, 0, 437, 439, 3, 24, 12, 0, 438, 432, 1, 0, 0, 0, 438, 437, 1, 0, 0, 0, 439, 23, 1, 0, 0, 0, 440, 441, 5, 160, 0, 0, 441, 442, 5, 83, 0, 0, 442, 447, 3, 314, 157, 0, 443, 444, 5, 385, 0, 0, 444, 446, 3, 314, 157, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 25, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 451, 5, 330, 0, 0, 451, 486, 7, 2, 0, 0, 452, 453, 5, 330, 0, 0, 453, 454, 5, 220, 0, 0, 454, 486, 7, 3, 0, 0, 455, 456, 5, 330, 0, 0, 456, 459, 5, 148, 0, 0, 457, 458, 7, 4, 0, 0, 458, 460, 3, 314, 157, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 1, 0, 0, 0, 461, 463, 3, 266, 133, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 486, 1, 0, 0, 0, 464, 465, 5, 330, 0, 0, 465, 466, 5, 20, 0, 0, 466, 467, 7, 4, 0, 0, 467, 469, 3, 314, 157, 0, 468, 470, 3, 266, 133, 0, 469, 468, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 486, 1, 0, 0, 0, 471, 472, 5, 330, 0, 0, 472, 473, 5, 217, 0, 0, 473, 474, 7, 5, 0, 0, 474, 486, 3, 314, 157, 0, 475, 477, 5, 330, 0, 0, 476, 478, 5, 357, 0, 0, 477, 476, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 486, 5, 50, 0, 0, 480, 482, 5, 330, 0, 0, 481, 483, 5, 251, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 83, 0, 0, 485, 450, 1, 0, 0, 0, 485, 452, 1, 0, 0, 0, 485, 455, 1, 0, 0, 0, 485, 464, 1, 0, 0, 0, 485, 471, 1, 0, 0, 0, 485, 475, 1, 0, 0, 0, 485, 480, 1, 0, 0, 0, 486, 27, 1, 0, 0, 0, 487, 488, 5, 75, 0, 0, 488, 489, 5, 289, 0, 0, 489, 492, 3, 314, 157, 0, 490, 491, 5, 366, 0, 0, 491, 493, 3, 322, 161, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 29, 1, 0, 0, 0, 494, 495, 5, 158, 0, 0, 495, 496, 5, 289, 0, 0, 496, 497, 3, 314, 157, 0, 497, 31, 1, 0, 0, 0, 498, 500, 5, 329, 0, 0, 499, 501, 3, 324, 162, 0, 500, 499, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 33, 1, 0, 0, 0, 502, 504, 5, 319, 0, 0, 503, 505, 3, 326, 163, 0, 504, 503, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 35, 1, 0, 0, 0, 506, 507, 7, 6, 0, 0, 507, 508, 5, 63, 0, 0, 508, 509, 3, 112, 56, 0, 509, 37, 1, 0, 0, 0, 510, 511, 5, 4, 0, 0, 511, 512, 5, 63, 0, 0, 512, 513, 5, 366, 0, 0, 513, 516, 5, 407, 0, 0, 514, 515, 5, 183, 0, 0, 515, 517, 3, 314, 157, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 550, 1, 0, 0, 0, 518, 519, 5, 4, 0, 0, 519, 520, 5, 42, 0, 0, 520, 521, 5, 366, 0, 0, 521, 524, 5, 407, 0, 0, 522, 523, 5, 183, 0, 0, 523, 525, 3, 314, 157, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 528, 1, 0, 0, 0, 526, 527, 5, 118, 0, 0, 527, 529, 3, 314, 157, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 550, 1, 0, 0, 0, 530, 531, 5, 4, 0, 0, 531, 532, 7, 7, 0, 0, 532, 533, 5, 366, 0, 0, 533, 534, 5, 407, 0, 0, 534, 535, 5, 118, 0, 0, 535, 550, 3, 314, 157, 0, 536, 537, 5, 4, 0, 0, 537, 538, 5, 112, 0, 0, 538, 550, 5, 407, 0, 0, 539, 540, 5, 4, 0, 0, 540, 541, 5, 35, 0, 0, 541, 542, 5, 42, 0, 0, 542, 543, 5, 366, 0, 0, 543, 544, 5, 407, 0, 0, 544, 545, 5, 118, 0, 0, 545, 546, 3, 314, 157, 0, 546, 547, 5, 68, 0, 0, 547, 548, 3, 314, 157, 0, 548, 550, 1, 0, 0, 0, 549, 510, 1, 0, 0, 0, 549, 518, 1, 0, 0, 0, 549, 530, 1, 0, 0, 0, 549, 536, 1, 0, 0, 0, 549, 539, 1, 0, 0, 0, 550, 39, 1, 0, 0, 0, 551, 554, 3, 42, 21, 0, 552, 554, 3, 44, 22, 0, 553, 551, 1, 0, 0, 0, 553, 552, 1, 0, 0, 0, 554, 41, 1, 0, 0, 0, 555, 557, 5, 217, 0, 0, 556, 558, 5, 149, 0, 0, 557, 556, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 561, 5, 342, 0, 0, 560, 562, 3, 318, 159, 0, 561, 560, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 3, 98, 49, 0, 564, 565, 5, 381, 0, 0, 565, 570, 3, 46, 23, 0, 566, 567, 5, 385, 0, 0, 567, 569, 3, 46, 23, 0, 568, 566, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 575, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 573, 574, 5, 385, 0, 0, 574, 576, 3, 80, 40, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 579, 1, 0, 0, 0, 577, 578, 5, 385, 0, 0, 578, 580, 3, 82, 41, 0, 579, 577, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 583, 1, 0, 0, 0, 581, 582, 5, 385, 0, 0, 582, 584, 3, 86, 43, 0, 583, 581, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 5, 382, 0, 0, 586, 588, 3, 70, 35, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 590, 1, 0, 0, 0, 589, 591, 3, 88, 44, 0, 590, 589, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 594, 3, 316, 158, 0, 593, 595, 3, 96, 48, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 43, 1, 0, 0, 0, 596, 597, 5, 217, 0, 0, 597, 599, 5, 342, 0, 0, 598, 600, 3, 318, 159, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 3, 98, 49, 0, 602, 605, 3, 316, 158, 0, 603, 604, 5, 183, 0, 0, 604, 606, 3, 158, 79, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 45, 1, 0, 0, 0, 607, 611, 3, 48, 24, 0, 608, 611, 3, 72, 36, 0, 609, 611, 3, 76, 38, 0, 610, 607, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 609, 1, 0, 0, 0, 611, 47, 1, 0, 0, 0, 612, 613, 3, 50, 25, 0, 613, 615, 3, 54, 27, 0, 614, 616, 3, 68, 34, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 618, 1, 0, 0, 0, 617, 619, 3, 70, 35, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 49, 1, 0, 0, 0, 620, 623, 3, 314, 157, 0, 621, 623, 3, 260, 130, 0, 622, 620, 1, 0, 0, 0, 622, 621, 1, 0, 0, 0, 623, 51, 1, 0, 0, 0, 624, 625, 5, 381, 0, 0, 625, 630, 3, 50, 25, 0, 626, 627, 5, 385, 0, 0, 627, 629, 3, 50, 25, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 633, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 382, 0, 0, 634, 53, 1, 0, 0, 0, 635, 673, 7, 8, 0, 0, 636, 638, 7, 9, 0, 0, 637, 639, 3, 56, 28, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 673, 1, 0, 0, 0, 640, 642, 5, 346, 0, 0, 641, 643, 3, 56, 28, 0, 642, 641, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 650, 1, 0, 0, 0, 644, 646, 7, 10, 0, 0, 645, 647, 5, 280, 0, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 5, 345, 0, 0, 649, 651, 5, 174, 0, 0, 650, 644, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 673, 1, 0, 0, 0, 652, 654, 7, 11, 0, 0, 653, 655, 3, 58, 29, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 673, 1, 0, 0, 0, 656, 658, 7, 12, 0, 0, 657, 659, 3, 62, 31, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 673, 1, 0, 0, 0, 660, 662, 5, 76, 0, 0, 661, 663, 3, 64, 32, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 673, 1, 0, 0, 0, 664, 666, 5, 325, 0, 0, 665, 667, 3, 66, 33, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 673, 1, 0, 0, 0, 668, 670, 5, 114, 0, 0, 669, 671, 3, 60, 30, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 1, 0, 0, 0, 672, 635, 1, 0, 0, 0, 672, 636, 1, 0, 0, 0, 672, 640, 1, 0, 0, 0, 672, 652, 1, 0, 0, 0, 672, 656, 1, 0, 0, 0, 672, 660, 1, 0, 0, 0, 672, 664, 1, 0, 0, 0, 672, 668, 1, 0, 0, 0, 673, 55, 1, 0, 0, 0, 674, 675, 5, 381, 0, 0, 675, 676, 3, 344, 172, 0, 676, 677, 5, 382, 0, 0, 677, 57, 1, 0, 0, 0, 678, 679, 5, 381, 0, 0, 679, 682, 3, 344, 172, 0, 680, 681, 5, 385, 0, 0, 681, 683, 3, 344, 172, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 382, 0, 0, 685, 59, 1, 0, 0, 0, 686, 687, 5, 381, 0, 0, 687, 690, 3, 342, 171, 0, 688, 689, 5, 385, 0, 0, 689, 691, 3, 342, 171, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 5, 382, 0, 0, 693, 61, 1, 0, 0, 0, 694, 695, 5, 372, 0, 0, 695, 696, 3, 54, 27, 0, 696, 697, 5, 371, 0, 0, 697, 63, 1, 0, 0, 0, 698, 699, 5, 372, 0, 0, 699, 700, 3, 54, 27, 0, 700, 701, 5, 385, 0, 0, 701, 702, 3, 54, 27, 0, 702, 703, 1, 0, 0, 0, 703, 704, 5, 371, 0, 0, 704, 65, 1, 0, 0, 0, 705, 706, 5, 372, 0, 0, 706, 707, 3, 50, 25, 0, 707, 714, 3, 54, 27, 0, 708, 709, 5, 385, 0, 0, 709, 710, 3, 50, 25, 0, 710, 711, 3, 54, 27, 0, 711, 713, 1, 0, 0, 0, 712, 708, 1, 0, 0, 0, 713, 716, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 717, 718, 5, 371, 0, 0, 718, 67, 1, 0, 0, 0, 719, 720, 5, 213, 0, 0, 720, 722, 3, 84, 42, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 5, 316, 0, 0, 724, 727, 5, 68, 0, 0, 725, 726, 5, 296, 0, 0, 726, 728, 5, 34, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 734, 1, 0, 0, 0, 729, 731, 5, 296, 0, 0, 730, 729, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 5, 297, 0, 0, 733, 721, 1, 0, 0, 0, 733, 730, 1, 0, 0, 0, 734, 69, 1, 0, 0, 0, 735, 736, 5, 18, 0, 0, 736, 737, 5, 402, 0, 0, 737, 71, 1, 0, 0, 0, 738, 739, 3, 50, 25, 0, 739, 740, 3, 54, 27, 0, 740, 743, 5, 285, 0, 0, 741, 742, 5, 250, 0, 0, 742, 744, 3, 74, 37, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 746, 1, 0, 0, 0, 745, 747, 5, 167, 0, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 73, 1, 0, 0, 0, 748, 749, 5, 402, 0, 0, 749, 75, 1, 0, 0, 0, 750, 751, 3, 50, 25, 0, 751, 752, 5, 183, 0, 0, 752, 754, 3, 78, 39, 0, 753, 755, 3, 70, 35, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 77, 1, 0, 0, 0, 756, 757, 3, 260, 130, 0, 757, 79, 1, 0, 0, 0, 758, 759, 5, 168, 0, 0, 759, 760, 5, 249, 0, 0, 760, 761, 3, 260, 130, 0, 761, 762, 5, 183, 0, 0, 762, 763, 3, 260, 130, 0, 763, 81, 1, 0, 0, 0, 764, 765, 5, 213, 0, 0, 765, 767, 3, 84, 42, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 316, 0, 0, 769, 770, 5, 68, 0, 0, 770, 771, 3, 52, 26, 0, 771, 772, 5, 296, 0, 0, 772, 773, 5, 34, 0, 0, 773, 83, 1, 0, 0, 0, 774, 775, 3, 306, 153, 0, 775, 85, 1, 0, 0, 0, 776, 777, 5, 313, 0, 0, 777, 778, 5, 249, 0, 0, 778, 779, 5, 340, 0, 0, 779, 87, 1, 0, 0, 0, 780, 781, 5, 94, 0, 0, 781, 782, 5, 195, 0, 0, 782, 783, 3, 90, 45, 0, 783, 89, 1, 0, 0, 0, 784, 785, 5, 381, 0, 0, 785, 790, 3, 92, 46, 0, 786, 787, 5, 385, 0, 0, 787, 789, 3, 92, 46, 0, 788, 786, 1, 0, 0, 0, 789, 792, 1, 0, 0, 0, 790, 788, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 793, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 793, 794, 5, 382, 0, 0, 794, 91, 1, 0, 0, 0, 795, 809, 3, 278, 139, 0, 796, 797, 3, 306, 153, 0, 797, 798, 5, 381, 0, 0, 798, 803, 3, 94, 47, 0, 799, 800, 5, 385, 0, 0, 800, 802, 3, 94, 47, 0, 801, 799, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 806, 807, 5, 382, 0, 0, 807, 809, 1, 0, 0, 0, 808, 795, 1, 0, 0, 0, 808, 796, 1, 0, 0, 0, 809, 93, 1, 0, 0, 0, 810, 813, 3, 278, 139, 0, 811, 813, 3, 340, 170, 0, 812, 810, 1, 0, 0, 0, 812, 811, 1, 0, 0, 0, 813, 95, 1, 0, 0, 0, 814, 815, 5, 278, 0, 0, 815, 824, 3, 98, 49, 0, 816, 820, 5, 381, 0, 0, 817, 819, 3, 100, 50, 0, 818, 817, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 825, 5, 382, 0, 0, 824, 816, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 97, 1, 0, 0, 0, 826, 827, 3, 314, 157, 0, 827, 99, 1, 0, 0, 0, 828, 829, 7, 13, 0, 0, 829, 833, 7, 14, 0, 0, 830, 831, 7, 15, 0, 0, 831, 833, 7, 16, 0, 0, 832, 828, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 101, 1, 0, 0, 0, 834, 835, 5, 217, 0, 0, 835, 836, 5, 12, 0, 0, 836, 837, 3, 314, 157, 0, 837, 838, 3, 316, 158, 0, 838, 103, 1, 0, 0, 0, 839, 840, 5, 217, 0, 0, 840, 842, 5, 25, 0, 0, 841, 843, 3, 318, 159, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 3, 314, 157, 0, 845, 847, 3, 70, 35, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 3, 316, 158, 0, 849, 105, 1, 0, 0, 0, 850, 852, 5, 217, 0, 0, 851, 853, 5, 149, 0, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 5, 165, 0, 0, 855, 857, 3, 318, 159, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 3, 314, 157, 0, 859, 861, 3, 52, 26, 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 863, 1, 0, 0, 0, 862, 864, 3, 70, 35, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 5, 183, 0, 0, 866, 867, 3, 158, 79, 0, 867, 107, 1, 0, 0, 0, 868, 872, 5, 217, 0, 0, 869, 873, 5, 149, 0, 0, 870, 871, 5, 149, 0, 0, 871, 873, 5, 339, 0, 0, 872, 869, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 5, 252, 0, 0, 875, 877, 3, 318, 159, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 3, 314, 157, 0, 879, 880, 5, 183, 0, 0, 880, 883, 3, 306, 153, 0, 881, 882, 5, 274, 0, 0, 882, 884, 7, 17, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 1, 0, 0, 0, 885, 887, 3, 110, 55, 0, 886, 885, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 109, 1, 0, 0, 0, 888, 889, 5, 358, 0, 0, 889, 890, 5, 63, 0, 0, 890, 896, 3, 112, 56, 0, 891, 892, 5, 385, 0, 0, 892, 893, 5, 63, 0, 0, 893, 895, 3, 112, 56, 0, 894, 891, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 111, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 5, 402, 0, 0, 900, 113, 1, 0, 0, 0, 901, 902, 5, 178, 0, 0, 902, 904, 5, 342, 0, 0, 903, 905, 3, 320, 160, 0, 904, 903, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 912, 3, 314, 157, 0, 907, 913, 3, 116, 58, 0, 908, 913, 3, 118, 59, 0, 909, 913, 3, 120, 60, 0, 910, 913, 3, 122, 61, 0, 911, 913, 3, 124, 62, 0, 912, 907, 1, 0, 0, 0, 912, 908, 1, 0, 0, 0, 912, 909, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 911, 1, 0, 0, 0, 913, 115, 1, 0, 0, 0, 914, 916, 5, 118, 0, 0, 915, 917, 3, 314, 157, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 5, 348, 0, 0, 919, 920, 3, 314, 157, 0, 920, 117, 1, 0, 0, 0, 921, 922, 5, 329, 0, 0, 922, 923, 3, 322, 161, 0, 923, 119, 1, 0, 0, 0, 924, 925, 5, 4, 0, 0, 925, 926, 5, 213, 0, 0, 926, 927, 3, 84, 42, 0, 927, 928, 5, 316, 0, 0, 928, 929, 5, 68, 0, 0, 929, 931, 3, 52, 26, 0, 930, 932, 3, 126, 63, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 121, 1, 0, 0, 0, 933, 934, 5, 235, 0, 0, 934, 935, 5, 213, 0, 0, 935, 936, 3, 84, 42, 0, 936, 123, 1, 0, 0, 0, 937, 938, 5, 4, 0, 0, 938, 939, 5, 352, 0, 0, 939, 940, 3, 52, 26, 0, 940, 125, 1, 0, 0, 0, 941, 942, 5, 296, 0, 0, 942, 943, 5, 34, 0, 0, 943, 127, 1, 0, 0, 0, 944, 945, 5, 178, 0, 0, 945, 946, 5, 165, 0, 0, 946, 950, 3, 314, 157, 0, 947, 951, 3, 116, 58, 0, 948, 949, 5, 183, 0, 0, 949, 951, 3, 158, 79, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 951, 129, 1, 0, 0, 0, 952, 953, 5, 178, 0, 0, 953, 954, 5, 25, 0, 0, 954, 955, 3, 314, 157, 0, 955, 956, 3, 118, 59, 0, 956, 131, 1, 0, 0, 0, 957, 961, 5, 178, 0, 0, 958, 962, 5, 149, 0, 0, 959, 960, 5, 149, 0, 0, 960, 962, 5, 339, 0, 0, 961, 958, 1, 0, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 965, 5, 252, 0, 0, 964, 966, 3, 320, 160, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, 3, 314, 157, 0, 968, 969, 5, 183, 0, 0, 969, 972, 3, 306, 153, 0, 970, 971, 5, 274, 0, 0, 971, 973, 7, 17, 0, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 133, 1, 0, 0, 0, 974, 975, 5, 235, 0, 0, 975, 977, 5, 12, 0, 0, 976, 978, 3, 320, 160, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 3, 314, 157, 0, 980, 135, 1, 0, 0, 0, 981, 983, 5, 235, 0, 0, 982, 984, 5, 149, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 987, 5, 342, 0, 0, 986, 988, 3, 320, 160, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 3, 314, 157, 0, 990, 137, 1, 0, 0, 0, 991, 992, 5, 235, 0, 0, 992, 994, 5, 25, 0, 0, 993, 995, 3, 320, 160, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 998, 3, 314, 157, 0, 997, 999, 7, 18, 0, 0, 998, 997, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 139, 1, 0, 0, 0, 1000, 1002, 5, 235, 0, 0, 1001, 1003, 5, 149, 0, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1006, 5, 165, 0, 0, 1005, 1007, 3, 320, 160, 0, 1006, 1005, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 3, 314, 157, 0, 1009, 141, 1, 0, 0, 0, 1010, 1014, 5, 235, 0, 0, 1011, 1015, 5, 149, 0, 0, 1012, 1013, 5, 149, 0, 0, 1013, 1015, 5, 339, 0, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1018, 5, 252, 0, 0, 1017, 1019, 3, 320, 160, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 3, 314, 157, 0, 1021, 143, 1, 0, 0, 0, 1022, 1024, 5, 242, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1030, 3, 146, 73, 0, 1026, 1030, 3, 154, 77, 0, 1027, 1028, 5, 242, 0, 0, 1028, 1030, 3, 156, 78, 0, 1029, 1023, 1, 0, 0, 0, 1029, 1026, 1, 0, 0, 0, 1029, 1027, 1, 0, 0, 0, 1030, 145, 1, 0, 0, 0, 1031, 1032, 5, 265, 0, 0, 1032, 1033, 7, 19, 0, 0, 1033, 1042, 3, 314, 157, 0, 1034, 1036, 3, 148, 74, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1038, 1, 0, 0, 0, 1037, 1039, 3, 52, 26, 0, 1038, 1037, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1043, 3, 158, 79, 0, 1041, 1043, 3, 150, 75, 0, 1042, 1035, 1, 0, 0, 0, 1042, 1041, 1, 0, 0, 0, 1043, 147, 1, 0, 0, 0, 1044, 1045, 5, 309, 0, 0, 1045, 1046, 3, 322, 161, 0, 1046, 149, 1, 0, 0, 0, 1047, 1048, 5, 360, 0, 0, 1048, 1053, 3, 152, 76, 0, 1049, 1050, 5, 385, 0, 0, 1050, 1052, 3, 152, 76, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 151, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1057, 5, 381, 0, 0, 1057, 1062, 3, 340, 170, 0, 1058, 1059, 5, 385, 0, 0, 1059, 1061, 3, 340, 170, 0, 1060, 1058, 1, 0, 0, 0, 1061, 1064, 1, 0, 0, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1066, 5, 382, 0, 0, 1066, 153, 1, 0, 0, 0, 1067, 1068, 5, 187, 0, 0, 1068, 1069, 5, 143, 0, 0, 1069, 1070, 5, 329, 0, 0, 1070, 1074, 5, 386, 0, 0, 1071, 1072, 3, 146, 73, 0, 1072, 1073, 5, 386, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1071, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 5, 238, 0, 0, 1079, 155, 1, 0, 0, 0, 1080, 1081, 5, 143, 0, 0, 1081, 1082, 5, 329, 0, 0, 1082, 1086, 5, 187, 0, 0, 1083, 1084, 3, 146, 73, 0, 1084, 1085, 5, 386, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1083, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 5, 238, 0, 0, 1091, 157, 1, 0, 0, 0, 1092, 1093, 6, 79, -1, 0, 1093, 1116, 3, 160, 80, 0, 1094, 1095, 3, 162, 81, 0, 1095, 1096, 3, 158, 79, 5, 1096, 1116, 1, 0, 0, 0, 1097, 1098, 5, 381, 0, 0, 1098, 1099, 3, 158, 79, 0, 1099, 1100, 5, 382, 0, 0, 1100, 1116, 1, 0, 0, 0, 1101, 1103, 3, 170, 85, 0, 1102, 1104, 3, 232, 116, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 3, 236, 118, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1116, 1, 0, 0, 0, 1108, 1110, 3, 168, 84, 0, 1109, 1111, 3, 232, 116, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1113, 1, 0, 0, 0, 1112, 1114, 3, 236, 118, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1092, 1, 0, 0, 0, 1115, 1094, 1, 0, 0, 0, 1115, 1097, 1, 0, 0, 0, 1115, 1101, 1, 0, 0, 0, 1115, 1108, 1, 0, 0, 0, 1116, 1131, 1, 0, 0, 0, 1117, 1118, 10, 3, 0, 0, 1118, 1120, 7, 20, 0, 0, 1119, 1121, 5, 176, 0, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1124, 3, 158, 79, 0, 1123, 1125, 3, 232, 116, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1127, 1, 0, 0, 0, 1126, 1128, 3, 236, 118, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 1, 0, 0, 0, 1129, 1117, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 159, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1135, 5, 360, 0, 0, 1135, 1140, 3, 260, 130, 0, 1136, 1137, 5, 385, 0, 0, 1137, 1139, 3, 260, 130, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 161, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 366, 0, 0, 1144, 1149, 3, 164, 82, 0, 1145, 1146, 5, 385, 0, 0, 1146, 1148, 3, 164, 82, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 163, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1164, 3, 166, 83, 0, 1153, 1154, 5, 381, 0, 0, 1154, 1159, 3, 50, 25, 0, 1155, 1156, 5, 385, 0, 0, 1156, 1158, 3, 50, 25, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1161, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1162, 1163, 5, 382, 0, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1153, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 5, 183, 0, 0, 1167, 1168, 5, 381, 0, 0, 1168, 1169, 3, 158, 79, 0, 1169, 1170, 5, 382, 0, 0, 1170, 165, 1, 0, 0, 0, 1171, 1172, 3, 306, 153, 0, 1172, 167, 1, 0, 0, 0, 1173, 1174, 3, 170, 85, 0, 1174, 1176, 3, 176, 88, 0, 1175, 1177, 3, 206, 103, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1180, 3, 208, 104, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 222, 111, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1, 0, 0, 0, 1184, 1186, 3, 224, 112, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1192, 1, 0, 0, 0, 1187, 1188, 3, 170, 85, 0, 1188, 1189, 3, 176, 88, 0, 1189, 1190, 3, 230, 115, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1173, 1, 0, 0, 0, 1191, 1187, 1, 0, 0, 0, 1192, 169, 1, 0, 0, 0, 1193, 1195, 5, 328, 0, 0, 1194, 1196, 3, 348, 174, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1206, 1, 0, 0, 0, 1197, 1207, 5, 392, 0, 0, 1198, 1203, 3, 172, 86, 0, 1199, 1200, 5, 385, 0, 0, 1200, 1202, 3, 172, 86, 0, 1201, 1199, 1, 0, 0, 0, 1202, 1205, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1197, 1, 0, 0, 0, 1206, 1198, 1, 0, 0, 0, 1207, 171, 1, 0, 0, 0, 1208, 1217, 3, 174, 87, 0, 1209, 1214, 3, 260, 130, 0, 1210, 1212, 5, 183, 0, 0, 1211, 1210, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1215, 3, 260, 130, 0, 1214, 1211, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1217, 1, 0, 0, 0, 1216, 1208, 1, 0, 0, 0, 1216, 1209, 1, 0, 0, 0, 1217, 173, 1, 0, 0, 0, 1218, 1219, 3, 270, 135, 0, 1219, 1220, 5, 307, 0, 0, 1220, 1221, 3, 228, 114, 0, 1221, 1222, 5, 183, 0, 0, 1222, 1223, 3, 306, 153, 0, 1223, 1231, 1, 0, 0, 0, 1224, 1225, 3, 270, 135, 0, 1225, 1226, 5, 307, 0, 0, 1226, 1227, 3, 298, 149, 0, 1227, 1228, 5, 183, 0, 0, 1228, 1229, 3, 306, 153, 0, 1229, 1231, 1, 0, 0, 0, 1230, 1218, 1, 0, 0, 0, 1230, 1224, 1, 0, 0, 0, 1231, 175, 1, 0, 0, 0, 1232, 1233, 5, 250, 0, 0, 1233, 1234, 3, 178, 89, 0, 1234, 177, 1, 0, 0, 0, 1235, 1236, 6, 89, -1, 0, 1236, 1241, 3, 180, 90, 0, 1237, 1238, 5, 385, 0, 0, 1238, 1240, 3, 180, 90, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1247, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1247, 3, 190, 95, 0, 1245, 1247, 3, 192, 96, 0, 1246, 1235, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1245, 1, 0, 0, 0, 1247, 1269, 1, 0, 0, 0, 1248, 1249, 10, 3, 0, 0, 1249, 1250, 5, 218, 0, 0, 1250, 1251, 5, 272, 0, 0, 1251, 1268, 3, 178, 89, 4, 1252, 1254, 10, 4, 0, 0, 1253, 1255, 5, 292, 0, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1258, 7, 21, 0, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 5, 306, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 5, 272, 0, 0, 1263, 1265, 3, 178, 89, 0, 1264, 1266, 3, 204, 102, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1268, 1, 0, 0, 0, 1267, 1248, 1, 0, 0, 0, 1267, 1252, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 179, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1274, 3, 182, 91, 0, 1273, 1275, 3, 296, 148, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 181, 1, 0, 0, 0, 1276, 1278, 5, 342, 0, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1281, 3, 184, 92, 0, 1280, 1282, 3, 186, 93, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1287, 1, 0, 0, 0, 1283, 1285, 5, 183, 0, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 3, 276, 138, 0, 1287, 1284, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1318, 1, 0, 0, 0, 1289, 1290, 5, 275, 0, 0, 1290, 1291, 5, 342, 0, 0, 1291, 1292, 5, 381, 0, 0, 1292, 1293, 3, 272, 136, 0, 1293, 1294, 5, 381, 0, 0, 1294, 1299, 3, 260, 130, 0, 1295, 1296, 5, 385, 0, 0, 1296, 1298, 3, 260, 130, 0, 1297, 1295, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1303, 5, 382, 0, 0, 1303, 1304, 5, 382, 0, 0, 1304, 1318, 1, 0, 0, 0, 1305, 1307, 5, 275, 0, 0, 1306, 1305, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 5, 381, 0, 0, 1309, 1310, 3, 158, 79, 0, 1310, 1311, 5, 382, 0, 0, 1311, 1318, 1, 0, 0, 0, 1312, 1313, 5, 354, 0, 0, 1313, 1314, 5, 381, 0, 0, 1314, 1315, 3, 260, 130, 0, 1315, 1316, 5, 382, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1277, 1, 0, 0, 0, 1317, 1289, 1, 0, 0, 0, 1317, 1306, 1, 0, 0, 0, 1317, 1312, 1, 0, 0, 0, 1318, 183, 1, 0, 0, 0, 1319, 1320, 3, 314, 157, 0, 1320, 185, 1, 0, 0, 0, 1321, 1322, 5, 249, 0, 0, 1322, 1323, 5, 340, 0, 0, 1323, 1324, 5, 183, 0, 0, 1324, 1325, 5, 299, 0, 0, 1325, 1326, 3, 188, 94, 0, 1326, 187, 1, 0, 0, 0, 1327, 1328, 3, 260, 130, 0, 1328, 189, 1, 0, 0, 0, 1329, 1330, 5, 381, 0, 0, 1330, 1331, 3, 150, 75, 0, 1331, 1332, 5, 382, 0, 0, 1332, 1333, 3, 296, 148, 0, 1333, 191, 1, 0, 0, 0, 1334, 1335, 5, 342, 0, 0, 1335, 1336, 5, 381, 0, 0, 1336, 1337, 3, 194, 97, 0, 1337, 1338, 5, 382, 0, 0, 1338, 193, 1, 0, 0, 0, 1339, 1340, 3, 196, 98, 0, 1340, 1341, 5, 381, 0, 0, 1341, 1346, 3, 198, 99, 0, 1342, 1343, 5, 385, 0, 0, 1343, 1345, 3, 198, 99, 0, 1344, 1342, 1, 0, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1346, 1, 0, 0, 0, 1349, 1350, 5, 382, 0, 0, 1350, 195, 1, 0, 0, 0, 1351, 1352, 7, 22, 0, 0, 1352, 197, 1, 0, 0, 0, 1353, 1354, 5, 342, 0, 0, 1354, 1369, 3, 220, 110, 0, 1355, 1369, 3, 202, 101, 0, 1356, 1369, 3, 280, 140, 0, 1357, 1358, 5, 24, 0, 0, 1358, 1359, 5, 401, 0, 0, 1359, 1360, 5, 342, 0, 0, 1360, 1369, 3, 220, 110, 0, 1361, 1362, 5, 150, 0, 0, 1362, 1363, 5, 401, 0, 0, 1363, 1369, 3, 202, 101, 0, 1364, 1365, 3, 200, 100, 0, 1365, 1366, 5, 401, 0, 0, 1366, 1367, 3, 280, 140, 0, 1367, 1369, 1, 0, 0, 0, 1368, 1353, 1, 0, 0, 0, 1368, 1355, 1, 0, 0, 0, 1368, 1356, 1, 0, 0, 0, 1368, 1357, 1, 0, 0, 0, 1368, 1361, 1, 0, 0, 0, 1368, 1364, 1, 0, 0, 0, 1369, 199, 1, 0, 0, 0, 1370, 1371, 7, 23, 0, 0, 1371, 201, 1, 0, 0, 0, 1372, 1373, 5, 31, 0, 0, 1373, 1374, 5, 381, 0, 0, 1374, 1375, 3, 314, 157, 0, 1375, 1376, 5, 382, 0, 0, 1376, 203, 1, 0, 0, 0, 1377, 1378, 5, 301, 0, 0, 1378, 1392, 3, 262, 131, 0, 1379, 1380, 5, 358, 0, 0, 1380, 1381, 5, 381, 0, 0, 1381, 1386, 3, 314, 157, 0, 1382, 1383, 5, 385, 0, 0, 1383, 1385, 3, 314, 157, 0, 1384, 1382, 1, 0, 0, 0, 1385, 1388, 1, 0, 0, 0, 1386, 1384, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1389, 1390, 5, 382, 0, 0, 1390, 1392, 1, 0, 0, 0, 1391, 1377, 1, 0, 0, 0, 1391, 1379, 1, 0, 0, 0, 1392, 205, 1, 0, 0, 0, 1393, 1394, 5, 364, 0, 0, 1394, 1395, 3, 262, 131, 0, 1395, 207, 1, 0, 0, 0, 1396, 1397, 5, 255, 0, 0, 1397, 1398, 5, 195, 0, 0, 1398, 1403, 3, 210, 105, 0, 1399, 1400, 5, 385, 0, 0, 1400, 1402, 3, 210, 105, 0, 1401, 1399, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 209, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1406, 1446, 3, 260, 130, 0, 1407, 1446, 3, 216, 108, 0, 1408, 1409, 5, 381, 0, 0, 1409, 1446, 5, 382, 0, 0, 1410, 1411, 5, 381, 0, 0, 1411, 1416, 3, 260, 130, 0, 1412, 1413, 5, 385, 0, 0, 1413, 1415, 3, 260, 130, 0, 1414, 1412, 1, 0, 0, 0, 1415, 1418, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1419, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1419, 1420, 5, 382, 0, 0, 1420, 1446, 1, 0, 0, 0, 1421, 1422, 3, 214, 107, 0, 1422, 1423, 5, 381, 0, 0, 1423, 1428, 3, 260, 130, 0, 1424, 1425, 5, 385, 0, 0, 1425, 1427, 3, 260, 130, 0, 1426, 1424, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1426, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1431, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1431, 1432, 5, 382, 0, 0, 1432, 1446, 1, 0, 0, 0, 1433, 1434, 3, 212, 106, 0, 1434, 1435, 5, 381, 0, 0, 1435, 1440, 3, 210, 105, 0, 1436, 1437, 5, 385, 0, 0, 1437, 1439, 3, 210, 105, 0, 1438, 1436, 1, 0, 0, 0, 1439, 1442, 1, 0, 0, 0, 1440, 1438, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1443, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1443, 1444, 5, 382, 0, 0, 1444, 1446, 1, 0, 0, 0, 1445, 1406, 1, 0, 0, 0, 1445, 1407, 1, 0, 0, 0, 1445, 1408, 1, 0, 0, 0, 1445, 1410, 1, 0, 0, 0, 1445, 1421, 1, 0, 0, 0, 1445, 1433, 1, 0, 0, 0, 1446, 211, 1, 0, 0, 0, 1447, 1448, 5, 256, 0, 0, 1448, 1449, 5, 136, 0, 0, 1449, 213, 1, 0, 0, 0, 1450, 1451, 7, 24, 0, 0, 1451, 215, 1, 0, 0, 0, 1452, 1453, 3, 218, 109, 0, 1453, 1454, 5, 381, 0, 0, 1454, 1455, 3, 220, 110, 0, 1455, 1456, 5, 385, 0, 0, 1456, 1457, 3, 280, 140, 0, 1457, 1458, 5, 382, 0, 0, 1458, 217, 1, 0, 0, 0, 1459, 1460, 7, 25, 0, 0, 1460, 219, 1, 0, 0, 0, 1461, 1462, 3, 314, 157, 0, 1462, 221, 1, 0, 0, 0, 1463, 1464, 5, 258, 0, 0, 1464, 1465, 3, 262, 131, 0, 1465, 223, 1, 0, 0, 0, 1466, 1467, 5, 365, 0, 0, 1467, 1472, 3, 226, 113, 0, 1468, 1469, 5, 385, 0, 0, 1469, 1471, 3, 226, 113, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 225, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1476, 3, 298, 149, 0, 1476, 1477, 5, 183, 0, 0, 1477, 1478, 3, 228, 114, 0, 1478, 227, 1, 0, 0, 0, 1479, 1481, 3, 298, 149, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1484, 5, 381, 0, 0, 1483, 1485, 3, 238, 119, 0, 1484, 1483, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1488, 3, 232, 116, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1490, 1, 0, 0, 0, 1489, 1491, 3, 254, 127, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 5, 382, 0, 0, 1493, 229, 1, 0, 0, 0, 1494, 1495, 5, 282, 0, 0, 1495, 1497, 5, 381, 0, 0, 1496, 1498, 3, 238, 119, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 1, 0, 0, 0, 1499, 1501, 3, 232, 116, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1503, 1, 0, 0, 0, 1502, 1504, 3, 242, 121, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1506, 1, 0, 0, 0, 1505, 1507, 3, 248, 124, 0, 1506, 1505, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1510, 3, 250, 125, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1512, 1, 0, 0, 0, 1511, 1513, 3, 244, 122, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 3, 252, 126, 0, 1515, 1520, 5, 382, 0, 0, 1516, 1518, 5, 183, 0, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1521, 3, 306, 153, 0, 1520, 1517, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 231, 1, 0, 0, 0, 1522, 1523, 5, 304, 0, 0, 1523, 1524, 5, 195, 0, 0, 1524, 1529, 3, 234, 117, 0, 1525, 1526, 5, 385, 0, 0, 1526, 1528, 3, 234, 117, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1531, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 233, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1534, 3, 260, 130, 0, 1533, 1535, 7, 26, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1538, 1, 0, 0, 0, 1536, 1537, 5, 86, 0, 0, 1537, 1539, 7, 27, 0, 0, 1538, 1536, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 235, 1, 0, 0, 0, 1540, 1543, 5, 279, 0, 0, 1541, 1544, 5, 176, 0, 0, 1542, 1544, 3, 260, 130, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1542, 1, 0, 0, 0, 1544, 237, 1, 0, 0, 0, 1545, 1546, 5, 309, 0, 0, 1546, 1547, 5, 195, 0, 0, 1547, 1552, 3, 260, 130, 0, 1548, 1549, 5, 385, 0, 0, 1549, 1551, 3, 260, 130, 0, 1550, 1548, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 239, 1, 0, 0, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1572, 5, 392, 0, 0, 1556, 1572, 5, 395, 0, 0, 1557, 1572, 5, 400, 0, 0, 1558, 1559, 5, 383, 0, 0, 1559, 1560, 5, 403, 0, 0, 1560, 1561, 5, 385, 0, 0, 1561, 1562, 5, 403, 0, 0, 1562, 1572, 5, 384, 0, 0, 1563, 1564, 5, 383, 0, 0, 1564, 1565, 5, 403, 0, 0, 1565, 1566, 5, 385, 0, 0, 1566, 1572, 5, 384, 0, 0, 1567, 1568, 5, 383, 0, 0, 1568, 1569, 5, 385, 0, 0, 1569, 1570, 5, 403, 0, 0, 1570, 1572, 5, 384, 0, 0, 1571, 1555, 1, 0, 0, 0, 1571, 1556, 1, 0, 0, 0, 1571, 1557, 1, 0, 0, 0, 1571, 1558, 1, 0, 0, 0, 1571, 1563, 1, 0, 0, 0, 1571, 1567, 1, 0, 0, 0, 1572, 241, 1, 0, 0, 0, 1573, 1574, 5, 283, 0, 0, 1574, 1579, 3, 172, 86, 0, 1575, 1576, 5, 385, 0, 0, 1576, 1578, 3, 172, 86, 0, 1577, 1575, 1, 0, 0, 0, 1578, 1581, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 243, 1, 0, 0, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1583, 5, 310, 0, 0, 1583, 1585, 5, 381, 0, 0, 1584, 1586, 3, 246, 123, 0, 1585, 1584, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1591, 5, 382, 0, 0, 1590, 1592, 3, 258, 129, 0, 1591, 1590, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 245, 1, 0, 0, 0, 1593, 1595, 3, 308, 154, 0, 1594, 1596, 3, 240, 120, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 247, 1, 0, 0, 0, 1597, 1598, 5, 176, 0, 0, 1598, 1599, 5, 326, 0, 0, 1599, 1600, 5, 311, 0, 0, 1600, 1606, 5, 281, 0, 0, 1601, 1602, 5, 302, 0, 0, 1602, 1603, 5, 325, 0, 0, 1603, 1604, 5, 311, 0, 0, 1604, 1606, 5, 281, 0, 0, 1605, 1597, 1, 0, 0, 0, 1605, 1601, 1, 0, 0, 0, 1606, 249, 1, 0, 0, 0, 1607, 1608, 5, 6, 0, 0, 1608, 1609, 5, 281, 0, 0, 1609, 1610, 5, 332, 0, 0, 1610, 1611, 5, 97, 0, 0, 1611, 1612, 5, 72, 0, 0, 1612, 1632, 5, 325, 0, 0, 1613, 1614, 5, 6, 0, 0, 1614, 1615, 5, 281, 0, 0, 1615, 1616, 5, 332, 0, 0, 1616, 1617, 5, 348, 0, 0, 1617, 1618, 5, 293, 0, 0, 1618, 1632, 5, 325, 0, 0, 1619, 1620, 5, 6, 0, 0, 1620, 1621, 5, 281, 0, 0, 1621, 1622, 5, 332, 0, 0, 1622, 1623, 5, 348, 0, 0, 1623, 1624, 5, 72, 0, 0, 1624, 1632, 3, 308, 154, 0, 1625, 1626, 5, 6, 0, 0, 1626, 1627, 5, 281, 0, 0, 1627, 1628, 5, 332, 0, 0, 1628, 1629, 5, 348, 0, 0, 1629, 1630, 5, 44, 0, 0, 1630, 1632, 3, 308, 154, 0, 1631, 1607, 1, 0, 0, 0, 1631, 1613, 1, 0, 0, 0, 1631, 1619, 1, 0, 0, 0, 1631, 1625, 1, 0, 0, 0, 1632, 251, 1, 0, 0, 0, 1633, 1634, 5, 230, 0, 0, 1634, 1639, 3, 172, 86, 0, 1635, 1636, 5, 385, 0, 0, 1636, 1638, 3, 172, 86, 0, 1637, 1635, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 253, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1643, 5, 317, 0, 0, 1643, 1644, 5, 188, 0, 0, 1644, 1645, 3, 280, 140, 0, 1645, 1646, 3, 256, 128, 0, 1646, 1652, 1, 0, 0, 0, 1647, 1648, 5, 326, 0, 0, 1648, 1649, 5, 188, 0, 0, 1649, 1650, 5, 403, 0, 0, 1650, 1652, 3, 256, 128, 0, 1651, 1642, 1, 0, 0, 0, 1651, 1647, 1, 0, 0, 0, 1652, 255, 1, 0, 0, 0, 1653, 1654, 5, 101, 0, 0, 1654, 1655, 5, 179, 0, 0, 1655, 1656, 5, 220, 0, 0, 1656, 1657, 5, 325, 0, 0, 1657, 257, 1, 0, 0, 0, 1658, 1659, 5, 367, 0, 0, 1659, 1660, 3, 280, 140, 0, 1660, 259, 1, 0, 0, 0, 1661, 1662, 3, 262, 131, 0, 1662, 261, 1, 0, 0, 0, 1663, 1664, 6, 131, -1, 0, 1664, 1665, 5, 296, 0, 0, 1665, 1676, 3, 262, 131, 6, 1666, 1667, 5, 243, 0, 0, 1667, 1668, 5, 381, 0, 0, 1668, 1669, 3, 158, 79, 0, 1669, 1670, 5, 382, 0, 0, 1670, 1676, 1, 0, 0, 0, 1671, 1673, 3, 268, 134, 0, 1672, 1674, 3, 264, 132, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 1, 0, 0, 0, 1675, 1663, 1, 0, 0, 0, 1675, 1666, 1, 0, 0, 0, 1675, 1671, 1, 0, 0, 0, 1676, 1691, 1, 0, 0, 0, 1677, 1678, 10, 3, 0, 0, 1678, 1679, 5, 179, 0, 0, 1679, 1690, 3, 262, 131, 4, 1680, 1681, 10, 2, 0, 0, 1681, 1682, 5, 303, 0, 0, 1682, 1690, 3, 262, 131, 3, 1683, 1684, 10, 1, 0, 0, 1684, 1686, 5, 271, 0, 0, 1685, 1687, 5, 296, 0, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1690, 7, 28, 0, 0, 1689, 1677, 1, 0, 0, 0, 1689, 1680, 1, 0, 0, 0, 1689, 1683, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 263, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1696, 5, 296, 0, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 5, 188, 0, 0, 1698, 1700, 7, 29, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 3, 268, 134, 0, 1702, 1703, 5, 179, 0, 0, 1703, 1704, 3, 268, 134, 0, 1704, 1762, 1, 0, 0, 0, 1705, 1707, 5, 296, 0, 0, 1706, 1705, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 5, 261, 0, 0, 1709, 1710, 5, 381, 0, 0, 1710, 1715, 3, 260, 130, 0, 1711, 1712, 5, 385, 0, 0, 1712, 1714, 3, 260, 130, 0, 1713, 1711, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 5, 382, 0, 0, 1719, 1762, 1, 0, 0, 0, 1720, 1722, 5, 296, 0, 0, 1721, 1720, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 5, 261, 0, 0, 1724, 1725, 5, 381, 0, 0, 1725, 1726, 3, 158, 79, 0, 1726, 1727, 5, 382, 0, 0, 1727, 1762, 1, 0, 0, 0, 1728, 1729, 5, 243, 0, 0, 1729, 1730, 5, 381, 0, 0, 1730, 1731, 3, 158, 79, 0, 1731, 1732, 5, 382, 0, 0, 1732, 1762, 1, 0, 0, 0, 1733, 1735, 5, 296, 0, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 5, 322, 0, 0, 1737, 1762, 3, 268, 134, 0, 1738, 1762, 3, 266, 133, 0, 1739, 1741, 5, 271, 0, 0, 1740, 1742, 5, 296, 0, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1762, 7, 28, 0, 0, 1744, 1746, 5, 271, 0, 0, 1745, 1747, 5, 296, 0, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 5, 233, 0, 0, 1749, 1750, 5, 250, 0, 0, 1750, 1762, 3, 268, 134, 0, 1751, 1753, 5, 296, 0, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 5, 331, 0, 0, 1755, 1756, 5, 348, 0, 0, 1756, 1759, 3, 268, 134, 0, 1757, 1758, 5, 240, 0, 0, 1758, 1760, 3, 342, 171, 0, 1759, 1757, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1762, 1, 0, 0, 0, 1761, 1695, 1, 0, 0, 0, 1761, 1706, 1, 0, 0, 0, 1761, 1721, 1, 0, 0, 0, 1761, 1728, 1, 0, 0, 0, 1761, 1734, 1, 0, 0, 0, 1761, 1738, 1, 0, 0, 0, 1761, 1739, 1, 0, 0, 0, 1761, 1744, 1, 0, 0, 0, 1761, 1752, 1, 0, 0, 0, 1762, 265, 1, 0, 0, 0, 1763, 1765, 5, 296, 0, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 5, 278, 0, 0, 1767, 1781, 7, 30, 0, 0, 1768, 1769, 5, 381, 0, 0, 1769, 1782, 5, 382, 0, 0, 1770, 1771, 5, 381, 0, 0, 1771, 1776, 3, 260, 130, 0, 1772, 1773, 5, 385, 0, 0, 1773, 1775, 3, 260, 130, 0, 1774, 1772, 1, 0, 0, 0, 1775, 1778, 1, 0, 0, 0, 1776, 1774, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1780, 5, 382, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1768, 1, 0, 0, 0, 1781, 1770, 1, 0, 0, 0, 1782, 1793, 1, 0, 0, 0, 1783, 1785, 5, 296, 0, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 5, 278, 0, 0, 1787, 1790, 3, 268, 134, 0, 1788, 1789, 5, 240, 0, 0, 1789, 1791, 3, 342, 171, 0, 1790, 1788, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1793, 1, 0, 0, 0, 1792, 1764, 1, 0, 0, 0, 1792, 1784, 1, 0, 0, 0, 1793, 267, 1, 0, 0, 0, 1794, 1795, 6, 134, -1, 0, 1795, 1799, 3, 270, 135, 0, 1796, 1797, 7, 31, 0, 0, 1797, 1799, 3, 268, 134, 7, 1798, 1794, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, 1821, 1, 0, 0, 0, 1800, 1801, 10, 6, 0, 0, 1801, 1802, 7, 32, 0, 0, 1802, 1820, 3, 268, 134, 7, 1803, 1804, 10, 5, 0, 0, 1804, 1805, 7, 33, 0, 0, 1805, 1820, 3, 268, 134, 6, 1806, 1807, 10, 4, 0, 0, 1807, 1808, 5, 376, 0, 0, 1808, 1820, 3, 268, 134, 5, 1809, 1810, 10, 3, 0, 0, 1810, 1811, 5, 377, 0, 0, 1811, 1820, 3, 268, 134, 4, 1812, 1813, 10, 2, 0, 0, 1813, 1814, 5, 375, 0, 0, 1814, 1820, 3, 268, 134, 3, 1815, 1816, 10, 1, 0, 0, 1816, 1817, 3, 332, 166, 0, 1817, 1818, 3, 268, 134, 2, 1818, 1820, 1, 0, 0, 0, 1819, 1800, 1, 0, 0, 0, 1819, 1803, 1, 0, 0, 0, 1819, 1806, 1, 0, 0, 0, 1819, 1809, 1, 0, 0, 0, 1819, 1812, 1, 0, 0, 0, 1819, 1815, 1, 0, 0, 0, 1820, 1823, 1, 0, 0, 0, 1821, 1819, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 269, 1, 0, 0, 0, 1823, 1821, 1, 0, 0, 0, 1824, 1825, 6, 135, -1, 0, 1825, 1827, 5, 199, 0, 0, 1826, 1828, 3, 312, 156, 0, 1827, 1826, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1833, 1, 0, 0, 0, 1831, 1832, 5, 237, 0, 0, 1832, 1834, 3, 260, 130, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1836, 5, 238, 0, 0, 1836, 1916, 1, 0, 0, 0, 1837, 1838, 5, 199, 0, 0, 1838, 1840, 3, 260, 130, 0, 1839, 1841, 3, 312, 156, 0, 1840, 1839, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1845, 5, 237, 0, 0, 1845, 1847, 3, 260, 130, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1849, 5, 238, 0, 0, 1849, 1916, 1, 0, 0, 0, 1850, 1851, 5, 200, 0, 0, 1851, 1852, 5, 381, 0, 0, 1852, 1853, 3, 260, 130, 0, 1853, 1854, 5, 183, 0, 0, 1854, 1855, 3, 54, 27, 0, 1855, 1856, 5, 382, 0, 0, 1856, 1916, 1, 0, 0, 0, 1857, 1858, 5, 44, 0, 0, 1858, 1859, 5, 381, 0, 0, 1859, 1862, 3, 260, 130, 0, 1860, 1861, 5, 59, 0, 0, 1861, 1863, 5, 86, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1865, 5, 382, 0, 0, 1865, 1916, 1, 0, 0, 0, 1866, 1867, 5, 72, 0, 0, 1867, 1868, 5, 381, 0, 0, 1868, 1871, 3, 260, 130, 0, 1869, 1870, 5, 59, 0, 0, 1870, 1872, 5, 86, 0, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 5, 382, 0, 0, 1874, 1916, 1, 0, 0, 0, 1875, 1876, 5, 314, 0, 0, 1876, 1877, 5, 381, 0, 0, 1877, 1878, 3, 268, 134, 0, 1878, 1879, 5, 261, 0, 0, 1879, 1880, 3, 268, 134, 0, 1880, 1881, 5, 382, 0, 0, 1881, 1916, 1, 0, 0, 0, 1882, 1916, 3, 340, 170, 0, 1883, 1916, 5, 392, 0, 0, 1884, 1885, 3, 314, 157, 0, 1885, 1886, 5, 378, 0, 0, 1886, 1887, 5, 392, 0, 0, 1887, 1916, 1, 0, 0, 0, 1888, 1889, 5, 381, 0, 0, 1889, 1890, 3, 158, 79, 0, 1890, 1891, 5, 382, 0, 0, 1891, 1916, 1, 0, 0, 0, 1892, 1893, 3, 272, 136, 0, 1893, 1905, 5, 381, 0, 0, 1894, 1896, 3, 348, 174, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1902, 3, 260, 130, 0, 1898, 1899, 5, 385, 0, 0, 1899, 1901, 3, 260, 130, 0, 1900, 1898, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1906, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1895, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 5, 382, 0, 0, 1908, 1916, 1, 0, 0, 0, 1909, 1916, 3, 306, 153, 0, 1910, 1916, 3, 274, 137, 0, 1911, 1912, 5, 381, 0, 0, 1912, 1913, 3, 260, 130, 0, 1913, 1914, 5, 382, 0, 0, 1914, 1916, 1, 0, 0, 0, 1915, 1824, 1, 0, 0, 0, 1915, 1837, 1, 0, 0, 0, 1915, 1850, 1, 0, 0, 0, 1915, 1857, 1, 0, 0, 0, 1915, 1866, 1, 0, 0, 0, 1915, 1875, 1, 0, 0, 0, 1915, 1882, 1, 0, 0, 0, 1915, 1883, 1, 0, 0, 0, 1915, 1884, 1, 0, 0, 0, 1915, 1888, 1, 0, 0, 0, 1915, 1892, 1, 0, 0, 0, 1915, 1909, 1, 0, 0, 0, 1915, 1910, 1, 0, 0, 0, 1915, 1911, 1, 0, 0, 0, 1916, 1924, 1, 0, 0, 0, 1917, 1918, 10, 4, 0, 0, 1918, 1919, 5, 379, 0, 0, 1919, 1920, 3, 268, 134, 0, 1920, 1921, 5, 380, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1917, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 271, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1927, 1931, 3, 350, 175, 0, 1928, 1931, 3, 354, 177, 0, 1929, 1931, 3, 314, 157, 0, 1930, 1927, 1, 0, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1929, 1, 0, 0, 0, 1931, 273, 1, 0, 0, 0, 1932, 1933, 3, 314, 157, 0, 1933, 275, 1, 0, 0, 0, 1934, 1935, 3, 306, 153, 0, 1935, 277, 1, 0, 0, 0, 1936, 1939, 3, 306, 153, 0, 1937, 1939, 3, 274, 137, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1937, 1, 0, 0, 0, 1939, 279, 1, 0, 0, 0, 1940, 1943, 5, 269, 0, 0, 1941, 1944, 3, 282, 141, 0, 1942, 1944, 3, 286, 143, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 281, 1, 0, 0, 0, 1945, 1947, 3, 284, 142, 0, 1946, 1948, 3, 288, 144, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 283, 1, 0, 0, 0, 1949, 1950, 3, 290, 145, 0, 1950, 1951, 3, 292, 146, 0, 1951, 1953, 1, 0, 0, 0, 1952, 1949, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 285, 1, 0, 0, 0, 1956, 1959, 3, 288, 144, 0, 1957, 1960, 3, 284, 142, 0, 1958, 1960, 3, 288, 144, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 287, 1, 0, 0, 0, 1961, 1962, 3, 290, 145, 0, 1962, 1963, 3, 292, 146, 0, 1963, 1964, 5, 348, 0, 0, 1964, 1965, 3, 292, 146, 0, 1965, 289, 1, 0, 0, 0, 1966, 1968, 7, 34, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1972, 7, 35, 0, 0, 1970, 1972, 5, 402, 0, 0, 1971, 1967, 1, 0, 0, 0, 1971, 1970, 1, 0, 0, 0, 1972, 291, 1, 0, 0, 0, 1973, 1976, 3, 306, 153, 0, 1974, 1976, 3, 352, 176, 0, 1975, 1973, 1, 0, 0, 0, 1975, 1974, 1, 0, 0, 0, 1976, 293, 1, 0, 0, 0, 1977, 1979, 5, 183, 0, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1982, 3, 306, 153, 0, 1981, 1983, 3, 302, 151, 0, 1982, 1981, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 295, 1, 0, 0, 0, 1984, 1986, 5, 183, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1989, 3, 306, 153, 0, 1988, 1990, 3, 302, 151, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 297, 1, 0, 0, 0, 1991, 1992, 3, 306, 153, 0, 1992, 1993, 3, 300, 150, 0, 1993, 299, 1, 0, 0, 0, 1994, 1995, 5, 286, 0, 0, 1995, 1997, 3, 306, 153, 0, 1996, 1994, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2002, 1, 0, 0, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 2000, 1, 0, 0, 0, 2002, 301, 1, 0, 0, 0, 2003, 2004, 5, 381, 0, 0, 2004, 2005, 3, 304, 152, 0, 2005, 2006, 5, 382, 0, 0, 2006, 303, 1, 0, 0, 0, 2007, 2012, 3, 306, 153, 0, 2008, 2009, 5, 385, 0, 0, 2009, 2011, 3, 306, 153, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2014, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 305, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2019, 3, 308, 154, 0, 2016, 2019, 3, 310, 155, 0, 2017, 2019, 3, 354, 177, 0, 2018, 2015, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2017, 1, 0, 0, 0, 2019, 307, 1, 0, 0, 0, 2020, 2021, 7, 36, 0, 0, 2021, 309, 1, 0, 0, 0, 2022, 2023, 5, 402, 0, 0, 2023, 311, 1, 0, 0, 0, 2024, 2025, 5, 363, 0, 0, 2025, 2026, 3, 260, 130, 0, 2026, 2027, 5, 344, 0, 0, 2027, 2028, 3, 260, 130, 0, 2028, 313, 1, 0, 0, 0, 2029, 2034, 3, 306, 153, 0, 2030, 2031, 5, 378, 0, 0, 2031, 2033, 3, 306, 153, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2035, 315, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2038, 5, 366, 0, 0, 2038, 2039, 3, 322, 161, 0, 2039, 317, 1, 0, 0, 0, 2040, 2041, 5, 58, 0, 0, 2041, 2042, 5, 296, 0, 0, 2042, 2043, 5, 243, 0, 0, 2043, 319, 1, 0, 0, 0, 2044, 2045, 5, 58, 0, 0, 2045, 2046, 5, 243, 0, 0, 2046, 321, 1, 0, 0, 0, 2047, 2048, 5, 381, 0, 0, 2048, 2053, 3, 324, 162, 0, 2049, 2050, 5, 385, 0, 0, 2050, 2052, 3, 324, 162, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2055, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2056, 1, 0, 0, 0, 2055, 2053, 1, 0, 0, 0, 2056, 2057, 5, 382, 0, 0, 2057, 323, 1, 0, 0, 0, 2058, 2063, 3, 326, 163, 0, 2059, 2061, 5, 370, 0, 0, 2060, 2059, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2064, 3, 328, 164, 0, 2063, 2060, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 325, 1, 0, 0, 0, 2065, 2069, 3, 306, 153, 0, 2066, 2069, 3, 274, 137, 0, 2067, 2069, 5, 402, 0, 0, 2068, 2065, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2068, 2067, 1, 0, 0, 0, 2069, 327, 1, 0, 0, 0, 2070, 2075, 5, 403, 0, 0, 2071, 2075, 5, 404, 0, 0, 2072, 2075, 3, 346, 173, 0, 2073, 2075, 5, 402, 0, 0, 2074, 2070, 1, 0, 0, 0, 2074, 2071, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2073, 1, 0, 0, 0, 2075, 329, 1, 0, 0, 0, 2076, 2083, 5, 179, 0, 0, 2077, 2078, 5, 376, 0, 0, 2078, 2083, 5, 376, 0, 0, 2079, 2083, 5, 303, 0, 0, 2080, 2081, 5, 375, 0, 0, 2081, 2083, 5, 375, 0, 0, 2082, 2076, 1, 0, 0, 0, 2082, 2077, 1, 0, 0, 0, 2082, 2079, 1, 0, 0, 0, 2082, 2080, 1, 0, 0, 0, 2083, 331, 1, 0, 0, 0, 2084, 2099, 5, 370, 0, 0, 2085, 2099, 5, 371, 0, 0, 2086, 2099, 5, 372, 0, 0, 2087, 2088, 5, 372, 0, 0, 2088, 2099, 5, 370, 0, 0, 2089, 2090, 5, 371, 0, 0, 2090, 2099, 5, 370, 0, 0, 2091, 2092, 5, 372, 0, 0, 2092, 2099, 5, 371, 0, 0, 2093, 2094, 5, 373, 0, 0, 2094, 2099, 5, 370, 0, 0, 2095, 2096, 5, 372, 0, 0, 2096, 2097, 5, 370, 0, 0, 2097, 2099, 5, 371, 0, 0, 2098, 2084, 1, 0, 0, 0, 2098, 2085, 1, 0, 0, 0, 2098, 2086, 1, 0, 0, 0, 2098, 2087, 1, 0, 0, 0, 2098, 2089, 1, 0, 0, 0, 2098, 2091, 1, 0, 0, 0, 2098, 2093, 1, 0, 0, 0, 2098, 2095, 1, 0, 0, 0, 2099, 333, 1, 0, 0, 0, 2100, 2101, 5, 372, 0, 0, 2101, 2108, 5, 372, 0, 0, 2102, 2103, 5, 371, 0, 0, 2103, 2108, 5, 371, 0, 0, 2104, 2108, 5, 376, 0, 0, 2105, 2108, 5, 377, 0, 0, 2106, 2108, 5, 375, 0, 0, 2107, 2100, 1, 0, 0, 0, 2107, 2102, 1, 0, 0, 0, 2107, 2104, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2106, 1, 0, 0, 0, 2108, 335, 1, 0, 0, 0, 2109, 2110, 7, 37, 0, 0, 2110, 337, 1, 0, 0, 0, 2111, 2112, 7, 38, 0, 0, 2112, 339, 1, 0, 0, 0, 2113, 2126, 3, 342, 171, 0, 2114, 2126, 3, 344, 172, 0, 2115, 2126, 3, 280, 140, 0, 2116, 2117, 5, 394, 0, 0, 2117, 2126, 3, 344, 172, 0, 2118, 2126, 3, 346, 173, 0, 2119, 2126, 5, 404, 0, 0, 2120, 2126, 5, 405, 0, 0, 2121, 2123, 5, 296, 0, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 5, 297, 0, 0, 2125, 2113, 1, 0, 0, 0, 2125, 2114, 1, 0, 0, 0, 2125, 2115, 1, 0, 0, 0, 2125, 2116, 1, 0, 0, 0, 2125, 2118, 1, 0, 0, 0, 2125, 2119, 1, 0, 0, 0, 2125, 2120, 1, 0, 0, 0, 2125, 2122, 1, 0, 0, 0, 2126, 341, 1, 0, 0, 0, 2127, 2128, 5, 402, 0, 0, 2128, 343, 1, 0, 0, 0, 2129, 2130, 5, 403, 0, 0, 2130, 345, 1, 0, 0, 0, 2131, 2132, 7, 39, 0, 0, 2132, 347, 1, 0, 0, 0, 2133, 2134, 7, 40, 0, 0, 2134, 349, 1, 0, 0, 0, 2135, 2136, 7, 41, 0, 0, 2136, 351, 1, 0, 0, 0, 2137, 2138, 7, 42, 0, 0, 2138, 353, 1, 0, 0, 0, 2139, 2140, 7, 43, 0, 0, 2140, 355, 1, 0, 0, 0, 248, 364, 367, 369, 384, 402, 406, 415, 420, 427, 434, 438, 447, 459, 462, 469, 477, 482, 485, 492, 500, 504, 516, 524, 528, 549, 553, 557, 561, 570, 575, 579, 583, 587, 590, 594, 599, 605, 610, 615, 618, 622, 630, 638, 642, 646, 650, 654, 658, 662, 666, 670, 672, 682, 690, 714, 721, 727, 730, 733, 743, 746, 754, 766, 790, 803, 808, 812, 820, 824, 832, 842, 846, 852, 856, 860, 863, 872, 876, 883, 886, 896, 904, 912, 916, 931, 950, 961, 965, 972, 977, 983, 987, 994, 998, 1002, 1006, 1014, 1018, 1023, 1029, 1035, 1038, 1042, 1053, 1062, 1076, 1088, 1103, 1106, 1110, 1113, 1115, 1120, 1124, 1127, 1131, 1140, 1149, 1159, 1164, 1176, 1179, 1182, 1185, 1191, 1195, 1203, 1206, 1211, 1214, 1216, 1230, 1241, 1246, 1254, 1257, 1260, 1265, 1267, 1269, 1274, 1277, 1281, 1284, 1287, 1299, 1306, 1317, 1346, 1368, 1386, 1391, 1403, 1416, 1428, 1440, 1445, 1472, 1480, 1484, 1487, 1490, 1497, 1500, 1503, 1506, 1509, 1512, 1517, 1520, 1529, 1534, 1538, 1543, 1552, 1571, 1579, 1587, 1591, 1595, 1605, 1631, 1639, 1651, 1673, 1675, 1686, 1689, 1691, 1695, 1699, 1706, 1715, 1721, 1734, 1741, 1746, 1752, 1759, 1761, 1764, 1776, 1781, 1784, 1790, 1792, 1798, 1819, 1821, 1829, 1833, 1842, 1846, 1862, 1871, 1895, 1902, 1905, 1915, 1924, 1930, 1938, 1943, 1947, 1954, 1959, 1967, 1971, 1975, 1978, 1982, 1985, 1989, 1998, 2001, 2012, 2018, 2034, 2053, 2060, 2063, 2068, 2074, 2082, 2098, 2107, 2122, 2125] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index 3b1fd9d..a5841d1 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -174,232 +174,237 @@ KW_YEARS=173 KW_ZONE=174 KW_ABS=175 KW_ALL=176 -ALLOW=177 +KW_ALLOW=177 KW_ALTER=178 KW_AND=179 KW_ANY=180 KW_ARE=181 KW_ARRAY=182 KW_AS=183 -KW_AT=184 -KW_AVG=185 -KW_BEGIN=186 -KW_BETWEEN=187 -KW_BIGINT=188 -KW_BINARY=189 -KW_BIT=190 -KW_BLOB=191 -KW_BOOLEAN=192 -KW_BOTH=193 -KW_BY=194 -KW_CALL=195 -KW_CALLED=196 -KW_CASCADED=197 -KW_CASE=198 -KW_CAST=199 -KW_CEIL=200 -KW_CHAR=201 -KW_CHARACTER=202 -KW_CHECK=203 -KW_CLOB=204 -KW_CLOSE=205 -KW_COALESCE=206 -KW_COLLATE=207 -KW_COLLECT=208 -KW_COLUMN=209 -KW_COMMIT=210 -KW_CONNECT=211 -KW_CONSTRAINT=212 -KW_CONTAINS=213 -KW_CONVERT=214 -KW_COUNT=215 -KW_CREATE=216 -KW_CROSS=217 -KW_CUBE=218 -KW_CURRENT=219 -KW_CURSOR=220 -KW_CYCLE=221 -KW_DATE=222 -KW_DATETIME=223 -KW_DAY=224 -KW_DEC=225 -KW_DECIMAL=226 -KW_DECLARE=227 -KW_DEFAULT=228 -KW_DEFINE=229 -KW_DELETE=230 -KW_DESCRIBE=231 -KW_DISTINCT=232 -KW_DOUBLE=233 -KW_DROP=234 -KW_EACH=235 -KW_ELSE=236 -KW_END=237 -KW_EQUALS=238 -KW_EXCEPT=239 -KW_EXECUTE=240 -KW_EXISTS=241 -KW_EXPLAIN=242 -KW_EXTERNAL=243 -KW_EXTRACT=244 -KW_FALSE=245 -KW_FLOAT=246 -KW_FOR=247 -KW_FROM=248 -KW_FULL=249 -KW_FUNCTION=250 -KW_GLOBAL=251 -KW_GRANT=252 -KW_GROUP=253 -KW_GROUPING=254 -KW_GROUPS=255 -KW_HAVING=256 -KW_HOUR=257 -KW_IMPORT=258 -KW_IN=259 -KW_INCLUDING=260 -KW_INNER=261 -KW_INOUT=262 -KW_INSERT=263 -KW_INT=264 -KW_INTEGER=265 -KW_INTERSECT=266 -KW_INTERVAL=267 -KW_INTO=268 -KW_IS=269 -KW_JOIN=270 -KW_LAG=271 -KW_LANGUAGE=272 -KW_LATERAL=273 -KW_LEADING=274 -KW_LEFT=275 -KW_LIKE=276 -KW_LIMIT=277 -KW_LOCAL=278 -KW_MATCH=279 -KW_MATCH_RECOGNIZE=280 -KW_MEASURES=281 -KW_MERGE=282 -KW_METADATA=283 -KW_MINUS=284 -KW_MINUTE=285 -KW_MODIFIES=286 -KW_MODULE=287 -KW_MONTH=288 -KW_MULTISET=289 -KW_NATURAL=290 -KW_NEXT=291 -KW_NO=292 -KW_NONE=293 -KW_NOT=294 -KW_NULL=295 -KW_NUMERIC=296 -KW_OF=297 -KW_OFFSET=298 -KW_ON=299 -KW_ONE=300 -KW_OR=301 -KW_ORDER=302 -KW_OUT=303 -KW_OUTER=304 -KW_OVER=305 -KW_OVERLAY=306 -KW_PARTITION=307 -KW_PATTERN=308 -KW_PER=309 -KW_PERCENT=310 -KW_PERIOD=311 -KW_POSITION=312 -KW_PRIMARY=313 -KW_RANGE=314 -KW_RANK=315 -KW_RESET=316 -KW_REVOKE=317 -KW_RIGHT=318 -KW_RLIKE=319 -KW_ROLLBACK=320 -KW_ROLLUP=321 -KW_ROW=322 -KW_ROWS=323 -KW_SECOND=324 -KW_SELECT=325 -KW_SET=326 -KW_SHOW=327 -KW_SKIP=328 -KW_SMALLINT=329 -KW_START=330 -KW_STATIC=331 -KW_SUBSTRING=332 -KW_SUM=333 -KW_SYSTEM=334 -KW_SYSTEM_TIME=335 -KW_SYSTEM_USER=336 -KW_TABLE=337 -KW_TABLESAMPLE=338 -KW_THEN=339 -KW_TIME=340 -KW_TIMESTAMP=341 -KW_TINYINT=342 -KW_TO=343 -KW_TRUE=344 -KW_TRUNCATE=345 -KW_UNION=346 -KW_UNIQUE=347 -KW_UNKNOWN=348 -KW_UNNEST=349 -KW_UPPER=350 -KW_UPSERT=351 -KW_USER=352 -KW_USING=353 -KW_VALUE=354 -KW_VALUES=355 -KW_VARBINARY=356 -KW_VARCHAR=357 -KW_WHEN=358 -KW_WHERE=359 -KW_WINDOW=360 -KW_WITH=361 -KW_WITHIN=362 -KW_WITHOUT=363 -KW_YEAR=364 -EQUAL_SYMBOL=365 -GREATER_SYMBOL=366 -LESS_SYMBOL=367 -EXCLAMATION_SYMBOL=368 -BIT_NOT_OP=369 -BIT_OR_OP=370 -BIT_AND_OP=371 -BIT_XOR_OP=372 -DOT=373 -LS_BRACKET=374 -RS_BRACKET=375 -LR_BRACKET=376 -RR_BRACKET=377 -LB_BRACKET=378 -RB_BRACKET=379 -COMMA=380 -SEMICOLON=381 -AT_SIGN=382 -SINGLE_QUOTE_SYMB=383 -DOUBLE_QUOTE_SYMB=384 -REVERSE_QUOTE_SYMB=385 -COLON_SYMB=386 -ASTERISK_SIGN=387 -UNDERLINE_SIGN=388 -HYPNEN_SIGN=389 -ADD_SIGN=390 -PENCENT_SIGN=391 -DOUBLE_VERTICAL_SIGN=392 -DOUBLE_HYPNEN_SIGN=393 -SLASH_SIGN=394 -QUESTION_MARK_SIGN=395 -DOUBLE_RIGHT_ARROW=396 -STRING_LITERAL=397 -DIG_LITERAL=398 -REAL_LITERAL=399 -BIT_STRING=400 -ID_LITERAL=401 -FILE_PATH=402 +KW_ASYMMETRIC=184 +KW_AT=185 +KW_AVG=186 +KW_BEGIN=187 +KW_BETWEEN=188 +KW_BIGINT=189 +KW_BINARY=190 +KW_BIT=191 +KW_BLOB=192 +KW_BOOLEAN=193 +KW_BOTH=194 +KW_BY=195 +KW_CALL=196 +KW_CALLED=197 +KW_CASCADED=198 +KW_CASE=199 +KW_CAST=200 +KW_CEIL=201 +KW_CHAR=202 +KW_CHARACTER=203 +KW_CHECK=204 +KW_CLOB=205 +KW_CLOSE=206 +KW_COALESCE=207 +KW_COLLATE=208 +KW_COLLECT=209 +KW_COLUMN=210 +KW_COMMIT=211 +KW_CONNECT=212 +KW_CONSTRAINT=213 +KW_CONTAINS=214 +KW_CONVERT=215 +KW_COUNT=216 +KW_CREATE=217 +KW_CROSS=218 +KW_CUBE=219 +KW_CURRENT=220 +KW_CURSOR=221 +KW_CYCLE=222 +KW_DATE=223 +KW_DATETIME=224 +KW_DAY=225 +KW_DEC=226 +KW_DECIMAL=227 +KW_DECLARE=228 +KW_DEFAULT=229 +KW_DEFINE=230 +KW_DELETE=231 +KW_DESCRIBE=232 +KW_DISTINCT=233 +KW_DOUBLE=234 +KW_DROP=235 +KW_EACH=236 +KW_ELSE=237 +KW_END=238 +KW_EQUALS=239 +KW_ESCAPE=240 +KW_EXCEPT=241 +KW_EXECUTE=242 +KW_EXISTS=243 +KW_EXPLAIN=244 +KW_EXTERNAL=245 +KW_EXTRACT=246 +KW_FALSE=247 +KW_FLOAT=248 +KW_FOR=249 +KW_FROM=250 +KW_FULL=251 +KW_FUNCTION=252 +KW_GLOBAL=253 +KW_GRANT=254 +KW_GROUP=255 +KW_GROUPING=256 +KW_GROUPS=257 +KW_HAVING=258 +KW_HOUR=259 +KW_IMPORT=260 +KW_IN=261 +KW_INCLUDING=262 +KW_INNER=263 +KW_INOUT=264 +KW_INSERT=265 +KW_INT=266 +KW_INTEGER=267 +KW_INTERSECT=268 +KW_INTERVAL=269 +KW_INTO=270 +KW_IS=271 +KW_JOIN=272 +KW_LAG=273 +KW_LANGUAGE=274 +KW_LATERAL=275 +KW_LEADING=276 +KW_LEFT=277 +KW_LIKE=278 +KW_LIMIT=279 +KW_LOCAL=280 +KW_MATCH=281 +KW_MATCH_RECOGNIZE=282 +KW_MEASURES=283 +KW_MERGE=284 +KW_METADATA=285 +KW_MINUS=286 +KW_MINUTE=287 +KW_MODIFIES=288 +KW_MODULE=289 +KW_MONTH=290 +KW_MULTISET=291 +KW_NATURAL=292 +KW_NEXT=293 +KW_NO=294 +KW_NONE=295 +KW_NOT=296 +KW_NULL=297 +KW_NUMERIC=298 +KW_OF=299 +KW_OFFSET=300 +KW_ON=301 +KW_ONE=302 +KW_OR=303 +KW_ORDER=304 +KW_OUT=305 +KW_OUTER=306 +KW_OVER=307 +KW_OVERLAY=308 +KW_PARTITION=309 +KW_PATTERN=310 +KW_PER=311 +KW_PERCENT=312 +KW_PERIOD=313 +KW_POSITION=314 +KW_POWER=315 +KW_PRIMARY=316 +KW_RANGE=317 +KW_RANK=318 +KW_RESET=319 +KW_REVOKE=320 +KW_RIGHT=321 +KW_RLIKE=322 +KW_ROLLBACK=323 +KW_ROLLUP=324 +KW_ROW=325 +KW_ROWS=326 +KW_SECOND=327 +KW_SELECT=328 +KW_SET=329 +KW_SHOW=330 +KW_SIMILAR=331 +KW_SKIP=332 +KW_SMALLINT=333 +KW_START=334 +KW_STATIC=335 +KW_SUBSTRING=336 +KW_SUM=337 +KW_SYMMETRIC=338 +KW_SYSTEM=339 +KW_SYSTEM_TIME=340 +KW_SYSTEM_USER=341 +KW_TABLE=342 +KW_TABLESAMPLE=343 +KW_THEN=344 +KW_TIME=345 +KW_TIMESTAMP=346 +KW_TINYINT=347 +KW_TO=348 +KW_TRUE=349 +KW_TRUNCATE=350 +KW_UNION=351 +KW_UNIQUE=352 +KW_UNKNOWN=353 +KW_UNNEST=354 +KW_UPPER=355 +KW_UPSERT=356 +KW_USER=357 +KW_USING=358 +KW_VALUE=359 +KW_VALUES=360 +KW_VARBINARY=361 +KW_VARCHAR=362 +KW_WHEN=363 +KW_WHERE=364 +KW_WINDOW=365 +KW_WITH=366 +KW_WITHIN=367 +KW_WITHOUT=368 +KW_YEAR=369 +EQUAL_SYMBOL=370 +GREATER_SYMBOL=371 +LESS_SYMBOL=372 +EXCLAMATION_SYMBOL=373 +BIT_NOT_OP=374 +BIT_OR_OP=375 +BIT_AND_OP=376 +BIT_XOR_OP=377 +DOT=378 +LS_BRACKET=379 +RS_BRACKET=380 +LR_BRACKET=381 +RR_BRACKET=382 +LB_BRACKET=383 +RB_BRACKET=384 +COMMA=385 +SEMICOLON=386 +AT_SIGN=387 +SINGLE_QUOTE_SYMB=388 +DOUBLE_QUOTE_SYMB=389 +REVERSE_QUOTE_SYMB=390 +COLON_SYMB=391 +ASTERISK_SIGN=392 +UNDERLINE_SIGN=393 +HYPNEN_SIGN=394 +ADD_SIGN=395 +PENCENT_SIGN=396 +DOUBLE_VERTICAL_SIGN=397 +DOUBLE_HYPNEN_SIGN=398 +SLASH_SIGN=399 +QUESTION_MARK_SIGN=400 +DOUBLE_RIGHT_ARROW=401 +STRING_LITERAL=402 +DIG_LITERAL=403 +REAL_LITERAL=404 +BIT_STRING=405 +ID_LITERAL=406 +FILE_PATH=407 'ADD'=4 'ADMIN'=5 'AFTER'=6 @@ -580,216 +585,221 @@ FILE_PATH=402 'ARE'=181 'ARRAY'=182 'AS'=183 -'AT'=184 -'AVG'=185 -'BEGIN'=186 -'BETWEEN'=187 -'BIGINT'=188 -'BINARY'=189 -'BIT'=190 -'BLOB'=191 -'BOOLEAN'=192 -'BOTH'=193 -'BY'=194 -'CALL'=195 -'CALLED'=196 -'CASCADED'=197 -'CASE'=198 -'CAST'=199 -'CEIL'=200 -'CHAR'=201 -'CHARACTER'=202 -'CHECK'=203 -'CLOB'=204 -'CLOSE'=205 -'COALESCE'=206 -'COLLATE'=207 -'COLLECT'=208 -'COLUMN'=209 -'COMMIT'=210 -'CONNECT'=211 -'CONSTRAINT'=212 -'CONTAINS'=213 -'CONVERT'=214 -'COUNT'=215 -'CREATE'=216 -'CROSS'=217 -'CUBE'=218 -'CURRENT'=219 -'CURSOR'=220 -'CYCLE'=221 -'DATE'=222 -'DATETIME'=223 -'DAY'=224 -'DEC'=225 -'DECIMAL'=226 -'DECLARE'=227 -'DEFAULT'=228 -'DEFINE'=229 -'DELETE'=230 -'DESCRIBE'=231 -'DISTINCT'=232 -'DOUBLE'=233 -'DROP'=234 -'EACH'=235 -'ELSE'=236 -'END'=237 -'EQUALS'=238 -'EXCEPT'=239 -'EXECUTE'=240 -'EXISTS'=241 -'EXPLAIN'=242 -'EXTERNAL'=243 -'EXTRACT'=244 -'FALSE'=245 -'FLOAT'=246 -'FOR'=247 -'FROM'=248 -'FULL'=249 -'FUNCTION'=250 -'GLOBAL'=251 -'GRANT'=252 -'GROUP'=253 -'GROUPING'=254 -'GROUPS'=255 -'HAVING'=256 -'HOUR'=257 -'IMPORT'=258 -'IN'=259 -'INCLUDING'=260 -'INNER'=261 -'INOUT'=262 -'INSERT'=263 -'INT'=264 -'INTEGER'=265 -'INTERSECT'=266 -'INTERVAL'=267 -'INTO'=268 -'IS'=269 -'JOIN'=270 -'LAG'=271 -'LANGUAGE'=272 -'LATERAL'=273 -'LEADING'=274 -'LEFT'=275 -'LIKE'=276 -'LIMIT'=277 -'LOCAL'=278 -'MATCH'=279 -'MATCH_RECOGNIZE'=280 -'MEASURES'=281 -'MERGE'=282 -'METADATA'=283 -'MINUS'=284 -'MINUTE'=285 -'MODIFIES'=286 -'MODULE'=287 -'MONTH'=288 -'MULTISET'=289 -'NATURAL'=290 -'NEXT'=291 -'NO'=292 -'NONE'=293 -'NOT'=294 -'NULL'=295 -'NUMERIC'=296 -'OF'=297 -'OFFSET'=298 -'ON'=299 -'ONE'=300 -'OR'=301 -'ORDER'=302 -'OUT'=303 -'OUTER'=304 -'OVER'=305 -'OVERLAY'=306 -'PARTITION'=307 -'PATTERN'=308 -'PER'=309 -'PERCENT'=310 -'PERIOD'=311 -'POSITION'=312 -'PRIMARY'=313 -'RANGE'=314 -'RANK'=315 -'RESET'=316 -'REVOKE'=317 -'RIGHT'=318 -'RLIKE'=319 -'ROLLBACK'=320 -'ROLLUP'=321 -'ROW'=322 -'ROWS'=323 -'SECOND'=324 -'SELECT'=325 -'SET'=326 -'SHOW'=327 -'SKIP'=328 -'SMALLINT'=329 -'START'=330 -'STATIC'=331 -'SUBSTRING'=332 -'SUM'=333 -'SYSTEM'=334 -'SYSTEM_TIME'=335 -'SYSTEM_USER'=336 -'TABLE'=337 -'TABLESAMPLE'=338 -'THEN'=339 -'TIME'=340 -'TIMESTAMP'=341 -'TINYINT'=342 -'TO'=343 -'TRUE'=344 -'TRUNCATE'=345 -'UNION'=346 -'UNIQUE'=347 -'UNKNOWN'=348 -'UNNEST'=349 -'UPPER'=350 -'UPSERT'=351 -'USER'=352 -'USING'=353 -'VALUE'=354 -'VALUES'=355 -'VARBINARY'=356 -'VARCHAR'=357 -'WHEN'=358 -'WHERE'=359 -'WINDOW'=360 -'WITH'=361 -'WITHIN'=362 -'WITHOUT'=363 -'YEAR'=364 -'='=365 -'>'=366 -'<'=367 -'!'=368 -'~'=369 -'|'=370 -'&'=371 -'^'=372 -'.'=373 -'['=374 -']'=375 -'('=376 -')'=377 -'{'=378 -'}'=379 -','=380 -';'=381 -'@'=382 -'\''=383 -'"'=384 -'`'=385 -':'=386 -'*'=387 -'_'=388 -'-'=389 -'+'=390 -'%'=391 -'||'=392 -'--'=393 -'/'=394 -'?'=395 -'=>'=396 +'ASYMMETRIC'=184 +'AT'=185 +'AVG'=186 +'BEGIN'=187 +'BETWEEN'=188 +'BIGINT'=189 +'BINARY'=190 +'BIT'=191 +'BLOB'=192 +'BOOLEAN'=193 +'BOTH'=194 +'BY'=195 +'CALL'=196 +'CALLED'=197 +'CASCADED'=198 +'CASE'=199 +'CAST'=200 +'CEIL'=201 +'CHAR'=202 +'CHARACTER'=203 +'CHECK'=204 +'CLOB'=205 +'CLOSE'=206 +'COALESCE'=207 +'COLLATE'=208 +'COLLECT'=209 +'COLUMN'=210 +'COMMIT'=211 +'CONNECT'=212 +'CONSTRAINT'=213 +'CONTAINS'=214 +'CONVERT'=215 +'COUNT'=216 +'CREATE'=217 +'CROSS'=218 +'CUBE'=219 +'CURRENT'=220 +'CURSOR'=221 +'CYCLE'=222 +'DATE'=223 +'DATETIME'=224 +'DAY'=225 +'DEC'=226 +'DECIMAL'=227 +'DECLARE'=228 +'DEFAULT'=229 +'DEFINE'=230 +'DELETE'=231 +'DESCRIBE'=232 +'DISTINCT'=233 +'DOUBLE'=234 +'DROP'=235 +'EACH'=236 +'ELSE'=237 +'END'=238 +'EQUALS'=239 +'ESCAPE'=240 +'EXCEPT'=241 +'EXECUTE'=242 +'EXISTS'=243 +'EXPLAIN'=244 +'EXTERNAL'=245 +'EXTRACT'=246 +'FALSE'=247 +'FLOAT'=248 +'FOR'=249 +'FROM'=250 +'FULL'=251 +'FUNCTION'=252 +'GLOBAL'=253 +'GRANT'=254 +'GROUP'=255 +'GROUPING'=256 +'GROUPS'=257 +'HAVING'=258 +'HOUR'=259 +'IMPORT'=260 +'IN'=261 +'INCLUDING'=262 +'INNER'=263 +'INOUT'=264 +'INSERT'=265 +'INT'=266 +'INTEGER'=267 +'INTERSECT'=268 +'INTERVAL'=269 +'INTO'=270 +'IS'=271 +'JOIN'=272 +'LAG'=273 +'LANGUAGE'=274 +'LATERAL'=275 +'LEADING'=276 +'LEFT'=277 +'LIKE'=278 +'LIMIT'=279 +'LOCAL'=280 +'MATCH'=281 +'MATCH_RECOGNIZE'=282 +'MEASURES'=283 +'MERGE'=284 +'METADATA'=285 +'MINUS'=286 +'MINUTE'=287 +'MODIFIES'=288 +'MODULE'=289 +'MONTH'=290 +'MULTISET'=291 +'NATURAL'=292 +'NEXT'=293 +'NO'=294 +'NONE'=295 +'NOT'=296 +'NULL'=297 +'NUMERIC'=298 +'OF'=299 +'OFFSET'=300 +'ON'=301 +'ONE'=302 +'OR'=303 +'ORDER'=304 +'OUT'=305 +'OUTER'=306 +'OVER'=307 +'OVERLAY'=308 +'PARTITION'=309 +'PATTERN'=310 +'PER'=311 +'PERCENT'=312 +'PERIOD'=313 +'POSITION'=314 +'POWER'=315 +'PRIMARY'=316 +'RANGE'=317 +'RANK'=318 +'RESET'=319 +'REVOKE'=320 +'RIGHT'=321 +'RLIKE'=322 +'ROLLBACK'=323 +'ROLLUP'=324 +'ROW'=325 +'ROWS'=326 +'SECOND'=327 +'SELECT'=328 +'SET'=329 +'SHOW'=330 +'SIMILAR'=331 +'SKIP'=332 +'SMALLINT'=333 +'START'=334 +'STATIC'=335 +'SUBSTRING'=336 +'SUM'=337 +'SYMMETRIC'=338 +'SYSTEM'=339 +'SYSTEM_TIME'=340 +'SYSTEM_USER'=341 +'TABLE'=342 +'TABLESAMPLE'=343 +'THEN'=344 +'TIME'=345 +'TIMESTAMP'=346 +'TINYINT'=347 +'TO'=348 +'TRUE'=349 +'TRUNCATE'=350 +'UNION'=351 +'UNIQUE'=352 +'UNKNOWN'=353 +'UNNEST'=354 +'UPPER'=355 +'UPSERT'=356 +'USER'=357 +'USING'=358 +'VALUE'=359 +'VALUES'=360 +'VARBINARY'=361 +'VARCHAR'=362 +'WHEN'=363 +'WHERE'=364 +'WINDOW'=365 +'WITH'=366 +'WITHIN'=367 +'WITHOUT'=368 +'YEAR'=369 +'='=370 +'>'=371 +'<'=372 +'!'=373 +'~'=374 +'|'=375 +'&'=376 +'^'=377 +'.'=378 +'['=379 +']'=380 +'('=381 +')'=382 +'{'=383 +'}'=384 +','=385 +';'=386 +'@'=387 +'\''=388 +'"'=389 +'`'=390 +':'=391 +'*'=392 +'_'=393 +'-'=394 +'+'=395 +'%'=396 +'||'=397 +'--'=398 +'/'=399 +'?'=400 +'=>'=401 diff --git a/src/lib/flinksql/FlinkSqlParser.ts b/src/lib/flinksql/FlinkSqlParser.ts index 13b911b..8fdc5a5 100644 --- a/src/lib/flinksql/FlinkSqlParser.ts +++ b/src/lib/flinksql/FlinkSqlParser.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 +// Generated from /Users/hayden/Desktop/dt-works/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 // noinspection ES6UnusedImports,JSUnusedGlobalSymbols,JSUnusedLocalSymbols import { @@ -195,232 +195,237 @@ export default class FlinkSqlParser extends Parser { public static readonly KW_ZONE = 174; public static readonly KW_ABS = 175; public static readonly KW_ALL = 176; - public static readonly ALLOW = 177; + public static readonly KW_ALLOW = 177; public static readonly KW_ALTER = 178; public static readonly KW_AND = 179; public static readonly KW_ANY = 180; public static readonly KW_ARE = 181; public static readonly KW_ARRAY = 182; public static readonly KW_AS = 183; - public static readonly KW_AT = 184; - public static readonly KW_AVG = 185; - public static readonly KW_BEGIN = 186; - public static readonly KW_BETWEEN = 187; - public static readonly KW_BIGINT = 188; - public static readonly KW_BINARY = 189; - public static readonly KW_BIT = 190; - public static readonly KW_BLOB = 191; - public static readonly KW_BOOLEAN = 192; - public static readonly KW_BOTH = 193; - public static readonly KW_BY = 194; - public static readonly KW_CALL = 195; - public static readonly KW_CALLED = 196; - public static readonly KW_CASCADED = 197; - public static readonly KW_CASE = 198; - public static readonly KW_CAST = 199; - public static readonly KW_CEIL = 200; - public static readonly KW_CHAR = 201; - public static readonly KW_CHARACTER = 202; - public static readonly KW_CHECK = 203; - public static readonly KW_CLOB = 204; - public static readonly KW_CLOSE = 205; - public static readonly KW_COALESCE = 206; - public static readonly KW_COLLATE = 207; - public static readonly KW_COLLECT = 208; - public static readonly KW_COLUMN = 209; - public static readonly KW_COMMIT = 210; - public static readonly KW_CONNECT = 211; - public static readonly KW_CONSTRAINT = 212; - public static readonly KW_CONTAINS = 213; - public static readonly KW_CONVERT = 214; - public static readonly KW_COUNT = 215; - public static readonly KW_CREATE = 216; - public static readonly KW_CROSS = 217; - public static readonly KW_CUBE = 218; - public static readonly KW_CURRENT = 219; - public static readonly KW_CURSOR = 220; - public static readonly KW_CYCLE = 221; - public static readonly KW_DATE = 222; - public static readonly KW_DATETIME = 223; - public static readonly KW_DAY = 224; - public static readonly KW_DEC = 225; - public static readonly KW_DECIMAL = 226; - public static readonly KW_DECLARE = 227; - public static readonly KW_DEFAULT = 228; - public static readonly KW_DEFINE = 229; - public static readonly KW_DELETE = 230; - public static readonly KW_DESCRIBE = 231; - public static readonly KW_DISTINCT = 232; - public static readonly KW_DOUBLE = 233; - public static readonly KW_DROP = 234; - public static readonly KW_EACH = 235; - public static readonly KW_ELSE = 236; - public static readonly KW_END = 237; - public static readonly KW_EQUALS = 238; - public static readonly KW_EXCEPT = 239; - public static readonly KW_EXECUTE = 240; - public static readonly KW_EXISTS = 241; - public static readonly KW_EXPLAIN = 242; - public static readonly KW_EXTERNAL = 243; - public static readonly KW_EXTRACT = 244; - public static readonly KW_FALSE = 245; - public static readonly KW_FLOAT = 246; - public static readonly KW_FOR = 247; - public static readonly KW_FROM = 248; - public static readonly KW_FULL = 249; - public static readonly KW_FUNCTION = 250; - public static readonly KW_GLOBAL = 251; - public static readonly KW_GRANT = 252; - public static readonly KW_GROUP = 253; - public static readonly KW_GROUPING = 254; - public static readonly KW_GROUPS = 255; - public static readonly KW_HAVING = 256; - public static readonly KW_HOUR = 257; - public static readonly KW_IMPORT = 258; - public static readonly KW_IN = 259; - public static readonly KW_INCLUDING = 260; - public static readonly KW_INNER = 261; - public static readonly KW_INOUT = 262; - public static readonly KW_INSERT = 263; - public static readonly KW_INT = 264; - public static readonly KW_INTEGER = 265; - public static readonly KW_INTERSECT = 266; - public static readonly KW_INTERVAL = 267; - public static readonly KW_INTO = 268; - public static readonly KW_IS = 269; - public static readonly KW_JOIN = 270; - public static readonly KW_LAG = 271; - public static readonly KW_LANGUAGE = 272; - public static readonly KW_LATERAL = 273; - public static readonly KW_LEADING = 274; - public static readonly KW_LEFT = 275; - public static readonly KW_LIKE = 276; - public static readonly KW_LIMIT = 277; - public static readonly KW_LOCAL = 278; - public static readonly KW_MATCH = 279; - public static readonly KW_MATCH_RECOGNIZE = 280; - public static readonly KW_MEASURES = 281; - public static readonly KW_MERGE = 282; - public static readonly KW_METADATA = 283; - public static readonly KW_MINUS = 284; - public static readonly KW_MINUTE = 285; - public static readonly KW_MODIFIES = 286; - public static readonly KW_MODULE = 287; - public static readonly KW_MONTH = 288; - public static readonly KW_MULTISET = 289; - public static readonly KW_NATURAL = 290; - public static readonly KW_NEXT = 291; - public static readonly KW_NO = 292; - public static readonly KW_NONE = 293; - public static readonly KW_NOT = 294; - public static readonly KW_NULL = 295; - public static readonly KW_NUMERIC = 296; - public static readonly KW_OF = 297; - public static readonly KW_OFFSET = 298; - public static readonly KW_ON = 299; - public static readonly KW_ONE = 300; - public static readonly KW_OR = 301; - public static readonly KW_ORDER = 302; - public static readonly KW_OUT = 303; - public static readonly KW_OUTER = 304; - public static readonly KW_OVER = 305; - public static readonly KW_OVERLAY = 306; - public static readonly KW_PARTITION = 307; - public static readonly KW_PATTERN = 308; - public static readonly KW_PER = 309; - public static readonly KW_PERCENT = 310; - public static readonly KW_PERIOD = 311; - public static readonly KW_POSITION = 312; - public static readonly KW_PRIMARY = 313; - public static readonly KW_RANGE = 314; - public static readonly KW_RANK = 315; - public static readonly KW_RESET = 316; - public static readonly KW_REVOKE = 317; - public static readonly KW_RIGHT = 318; - public static readonly KW_RLIKE = 319; - public static readonly KW_ROLLBACK = 320; - public static readonly KW_ROLLUP = 321; - public static readonly KW_ROW = 322; - public static readonly KW_ROWS = 323; - public static readonly KW_SECOND = 324; - public static readonly KW_SELECT = 325; - public static readonly KW_SET = 326; - public static readonly KW_SHOW = 327; - public static readonly KW_SKIP = 328; - public static readonly KW_SMALLINT = 329; - public static readonly KW_START = 330; - public static readonly KW_STATIC = 331; - public static readonly KW_SUBSTRING = 332; - public static readonly KW_SUM = 333; - public static readonly KW_SYSTEM = 334; - public static readonly KW_SYSTEM_TIME = 335; - public static readonly KW_SYSTEM_USER = 336; - public static readonly KW_TABLE = 337; - public static readonly KW_TABLESAMPLE = 338; - public static readonly KW_THEN = 339; - public static readonly KW_TIME = 340; - public static readonly KW_TIMESTAMP = 341; - public static readonly KW_TINYINT = 342; - public static readonly KW_TO = 343; - public static readonly KW_TRUE = 344; - public static readonly KW_TRUNCATE = 345; - public static readonly KW_UNION = 346; - public static readonly KW_UNIQUE = 347; - public static readonly KW_UNKNOWN = 348; - public static readonly KW_UNNEST = 349; - public static readonly KW_UPPER = 350; - public static readonly KW_UPSERT = 351; - public static readonly KW_USER = 352; - public static readonly KW_USING = 353; - public static readonly KW_VALUE = 354; - public static readonly KW_VALUES = 355; - public static readonly KW_VARBINARY = 356; - public static readonly KW_VARCHAR = 357; - public static readonly KW_WHEN = 358; - public static readonly KW_WHERE = 359; - public static readonly KW_WINDOW = 360; - public static readonly KW_WITH = 361; - public static readonly KW_WITHIN = 362; - public static readonly KW_WITHOUT = 363; - public static readonly KW_YEAR = 364; - public static readonly EQUAL_SYMBOL = 365; - public static readonly GREATER_SYMBOL = 366; - public static readonly LESS_SYMBOL = 367; - public static readonly EXCLAMATION_SYMBOL = 368; - public static readonly BIT_NOT_OP = 369; - public static readonly BIT_OR_OP = 370; - public static readonly BIT_AND_OP = 371; - public static readonly BIT_XOR_OP = 372; - public static readonly DOT = 373; - public static readonly LS_BRACKET = 374; - public static readonly RS_BRACKET = 375; - public static readonly LR_BRACKET = 376; - public static readonly RR_BRACKET = 377; - public static readonly LB_BRACKET = 378; - public static readonly RB_BRACKET = 379; - public static readonly COMMA = 380; - public static readonly SEMICOLON = 381; - public static readonly AT_SIGN = 382; - public static readonly SINGLE_QUOTE_SYMB = 383; - public static readonly DOUBLE_QUOTE_SYMB = 384; - public static readonly REVERSE_QUOTE_SYMB = 385; - public static readonly COLON_SYMB = 386; - public static readonly ASTERISK_SIGN = 387; - public static readonly UNDERLINE_SIGN = 388; - public static readonly HYPNEN_SIGN = 389; - public static readonly ADD_SIGN = 390; - public static readonly PENCENT_SIGN = 391; - public static readonly DOUBLE_VERTICAL_SIGN = 392; - public static readonly DOUBLE_HYPNEN_SIGN = 393; - public static readonly SLASH_SIGN = 394; - public static readonly QUESTION_MARK_SIGN = 395; - public static readonly DOUBLE_RIGHT_ARROW = 396; - public static readonly STRING_LITERAL = 397; - public static readonly DIG_LITERAL = 398; - public static readonly REAL_LITERAL = 399; - public static readonly BIT_STRING = 400; - public static readonly ID_LITERAL = 401; - public static readonly FILE_PATH = 402; + public static readonly KW_ASYMMETRIC = 184; + public static readonly KW_AT = 185; + public static readonly KW_AVG = 186; + public static readonly KW_BEGIN = 187; + public static readonly KW_BETWEEN = 188; + public static readonly KW_BIGINT = 189; + public static readonly KW_BINARY = 190; + public static readonly KW_BIT = 191; + public static readonly KW_BLOB = 192; + public static readonly KW_BOOLEAN = 193; + public static readonly KW_BOTH = 194; + public static readonly KW_BY = 195; + public static readonly KW_CALL = 196; + public static readonly KW_CALLED = 197; + public static readonly KW_CASCADED = 198; + public static readonly KW_CASE = 199; + public static readonly KW_CAST = 200; + public static readonly KW_CEIL = 201; + public static readonly KW_CHAR = 202; + public static readonly KW_CHARACTER = 203; + public static readonly KW_CHECK = 204; + public static readonly KW_CLOB = 205; + public static readonly KW_CLOSE = 206; + public static readonly KW_COALESCE = 207; + public static readonly KW_COLLATE = 208; + public static readonly KW_COLLECT = 209; + public static readonly KW_COLUMN = 210; + public static readonly KW_COMMIT = 211; + public static readonly KW_CONNECT = 212; + public static readonly KW_CONSTRAINT = 213; + public static readonly KW_CONTAINS = 214; + public static readonly KW_CONVERT = 215; + public static readonly KW_COUNT = 216; + public static readonly KW_CREATE = 217; + public static readonly KW_CROSS = 218; + public static readonly KW_CUBE = 219; + public static readonly KW_CURRENT = 220; + public static readonly KW_CURSOR = 221; + public static readonly KW_CYCLE = 222; + public static readonly KW_DATE = 223; + public static readonly KW_DATETIME = 224; + public static readonly KW_DAY = 225; + public static readonly KW_DEC = 226; + public static readonly KW_DECIMAL = 227; + public static readonly KW_DECLARE = 228; + public static readonly KW_DEFAULT = 229; + public static readonly KW_DEFINE = 230; + public static readonly KW_DELETE = 231; + public static readonly KW_DESCRIBE = 232; + public static readonly KW_DISTINCT = 233; + public static readonly KW_DOUBLE = 234; + public static readonly KW_DROP = 235; + public static readonly KW_EACH = 236; + public static readonly KW_ELSE = 237; + public static readonly KW_END = 238; + public static readonly KW_EQUALS = 239; + public static readonly KW_ESCAPE = 240; + public static readonly KW_EXCEPT = 241; + public static readonly KW_EXECUTE = 242; + public static readonly KW_EXISTS = 243; + public static readonly KW_EXPLAIN = 244; + public static readonly KW_EXTERNAL = 245; + public static readonly KW_EXTRACT = 246; + public static readonly KW_FALSE = 247; + public static readonly KW_FLOAT = 248; + public static readonly KW_FOR = 249; + public static readonly KW_FROM = 250; + public static readonly KW_FULL = 251; + public static readonly KW_FUNCTION = 252; + public static readonly KW_GLOBAL = 253; + public static readonly KW_GRANT = 254; + public static readonly KW_GROUP = 255; + public static readonly KW_GROUPING = 256; + public static readonly KW_GROUPS = 257; + public static readonly KW_HAVING = 258; + public static readonly KW_HOUR = 259; + public static readonly KW_IMPORT = 260; + public static readonly KW_IN = 261; + public static readonly KW_INCLUDING = 262; + public static readonly KW_INNER = 263; + public static readonly KW_INOUT = 264; + public static readonly KW_INSERT = 265; + public static readonly KW_INT = 266; + public static readonly KW_INTEGER = 267; + public static readonly KW_INTERSECT = 268; + public static readonly KW_INTERVAL = 269; + public static readonly KW_INTO = 270; + public static readonly KW_IS = 271; + public static readonly KW_JOIN = 272; + public static readonly KW_LAG = 273; + public static readonly KW_LANGUAGE = 274; + public static readonly KW_LATERAL = 275; + public static readonly KW_LEADING = 276; + public static readonly KW_LEFT = 277; + public static readonly KW_LIKE = 278; + public static readonly KW_LIMIT = 279; + public static readonly KW_LOCAL = 280; + public static readonly KW_MATCH = 281; + public static readonly KW_MATCH_RECOGNIZE = 282; + public static readonly KW_MEASURES = 283; + public static readonly KW_MERGE = 284; + public static readonly KW_METADATA = 285; + public static readonly KW_MINUS = 286; + public static readonly KW_MINUTE = 287; + public static readonly KW_MODIFIES = 288; + public static readonly KW_MODULE = 289; + public static readonly KW_MONTH = 290; + public static readonly KW_MULTISET = 291; + public static readonly KW_NATURAL = 292; + public static readonly KW_NEXT = 293; + public static readonly KW_NO = 294; + public static readonly KW_NONE = 295; + public static readonly KW_NOT = 296; + public static readonly KW_NULL = 297; + public static readonly KW_NUMERIC = 298; + public static readonly KW_OF = 299; + public static readonly KW_OFFSET = 300; + public static readonly KW_ON = 301; + public static readonly KW_ONE = 302; + public static readonly KW_OR = 303; + public static readonly KW_ORDER = 304; + public static readonly KW_OUT = 305; + public static readonly KW_OUTER = 306; + public static readonly KW_OVER = 307; + public static readonly KW_OVERLAY = 308; + public static readonly KW_PARTITION = 309; + public static readonly KW_PATTERN = 310; + public static readonly KW_PER = 311; + public static readonly KW_PERCENT = 312; + public static readonly KW_PERIOD = 313; + public static readonly KW_POSITION = 314; + public static readonly KW_POWER = 315; + public static readonly KW_PRIMARY = 316; + public static readonly KW_RANGE = 317; + public static readonly KW_RANK = 318; + public static readonly KW_RESET = 319; + public static readonly KW_REVOKE = 320; + public static readonly KW_RIGHT = 321; + public static readonly KW_RLIKE = 322; + public static readonly KW_ROLLBACK = 323; + public static readonly KW_ROLLUP = 324; + public static readonly KW_ROW = 325; + public static readonly KW_ROWS = 326; + public static readonly KW_SECOND = 327; + public static readonly KW_SELECT = 328; + public static readonly KW_SET = 329; + public static readonly KW_SHOW = 330; + public static readonly KW_SIMILAR = 331; + public static readonly KW_SKIP = 332; + public static readonly KW_SMALLINT = 333; + public static readonly KW_START = 334; + public static readonly KW_STATIC = 335; + public static readonly KW_SUBSTRING = 336; + public static readonly KW_SUM = 337; + public static readonly KW_SYMMETRIC = 338; + public static readonly KW_SYSTEM = 339; + public static readonly KW_SYSTEM_TIME = 340; + public static readonly KW_SYSTEM_USER = 341; + public static readonly KW_TABLE = 342; + public static readonly KW_TABLESAMPLE = 343; + public static readonly KW_THEN = 344; + public static readonly KW_TIME = 345; + public static readonly KW_TIMESTAMP = 346; + public static readonly KW_TINYINT = 347; + public static readonly KW_TO = 348; + public static readonly KW_TRUE = 349; + public static readonly KW_TRUNCATE = 350; + public static readonly KW_UNION = 351; + public static readonly KW_UNIQUE = 352; + public static readonly KW_UNKNOWN = 353; + public static readonly KW_UNNEST = 354; + public static readonly KW_UPPER = 355; + public static readonly KW_UPSERT = 356; + public static readonly KW_USER = 357; + public static readonly KW_USING = 358; + public static readonly KW_VALUE = 359; + public static readonly KW_VALUES = 360; + public static readonly KW_VARBINARY = 361; + public static readonly KW_VARCHAR = 362; + public static readonly KW_WHEN = 363; + public static readonly KW_WHERE = 364; + public static readonly KW_WINDOW = 365; + public static readonly KW_WITH = 366; + public static readonly KW_WITHIN = 367; + public static readonly KW_WITHOUT = 368; + public static readonly KW_YEAR = 369; + public static readonly EQUAL_SYMBOL = 370; + public static readonly GREATER_SYMBOL = 371; + public static readonly LESS_SYMBOL = 372; + public static readonly EXCLAMATION_SYMBOL = 373; + public static readonly BIT_NOT_OP = 374; + public static readonly BIT_OR_OP = 375; + public static readonly BIT_AND_OP = 376; + public static readonly BIT_XOR_OP = 377; + public static readonly DOT = 378; + public static readonly LS_BRACKET = 379; + public static readonly RS_BRACKET = 380; + public static readonly LR_BRACKET = 381; + public static readonly RR_BRACKET = 382; + public static readonly LB_BRACKET = 383; + public static readonly RB_BRACKET = 384; + public static readonly COMMA = 385; + public static readonly SEMICOLON = 386; + public static readonly AT_SIGN = 387; + public static readonly SINGLE_QUOTE_SYMB = 388; + public static readonly DOUBLE_QUOTE_SYMB = 389; + public static readonly REVERSE_QUOTE_SYMB = 390; + public static readonly COLON_SYMB = 391; + public static readonly ASTERISK_SIGN = 392; + public static readonly UNDERLINE_SIGN = 393; + public static readonly HYPNEN_SIGN = 394; + public static readonly ADD_SIGN = 395; + public static readonly PENCENT_SIGN = 396; + public static readonly DOUBLE_VERTICAL_SIGN = 397; + public static readonly DOUBLE_HYPNEN_SIGN = 398; + public static readonly SLASH_SIGN = 399; + public static readonly QUESTION_MARK_SIGN = 400; + public static readonly DOUBLE_RIGHT_ARROW = 401; + public static readonly STRING_LITERAL = 402; + public static readonly DIG_LITERAL = 403; + public static readonly REAL_LITERAL = 404; + public static readonly BIT_STRING = 405; + public static readonly ID_LITERAL = 406; + public static readonly FILE_PATH = 407; public static readonly EOF = Token.EOF; public static readonly RULE_program = 0; public static readonly RULE_statement = 1; @@ -597,8 +602,9 @@ export default class FlinkSqlParser extends Parser { public static readonly RULE_decimalLiteral = 172; public static readonly RULE_booleanLiteral = 173; public static readonly RULE_setQuantifier = 174; - public static readonly RULE_reservedKeywords = 175; - public static readonly RULE_nonReservedKeywords = 176; + public static readonly RULE_reservedKeywordsUsedAsFunctionName = 175; + public static readonly RULE_reservedKeywords = 176; + public static readonly RULE_nonReservedKeywords = 177; public static readonly literalNames: (string | null)[] = [ null, null, null, null, "'ADD'", "'ADMIN'", @@ -732,9 +738,9 @@ export default class FlinkSqlParser extends Parser { "'ALLOW'", "'ALTER'", "'AND'", "'ANY'", "'ARE'", "'ARRAY'", - "'AS'", "'AT'", - "'AVG'", "'BEGIN'", - "'BETWEEN'", + "'AS'", "'ASYMMETRIC'", + "'AT'", "'AVG'", + "'BEGIN'", "'BETWEEN'", "'BIGINT'", "'BINARY'", "'BIT'", "'BLOB'", @@ -773,6 +779,7 @@ export default class FlinkSqlParser extends Parser { "'DROP'", "'EACH'", "'ELSE'", "'END'", "'EQUALS'", + "'ESCAPE'", "'EXCEPT'", "'EXECUTE'", "'EXISTS'", @@ -822,7 +829,7 @@ export default class FlinkSqlParser extends Parser { "'PER'", "'PERCENT'", "'PERIOD'", "'POSITION'", - "'PRIMARY'", + "'POWER'", "'PRIMARY'", "'RANGE'", "'RANK'", "'RESET'", "'REVOKE'", "'RIGHT'", "'RLIKE'", @@ -832,10 +839,12 @@ export default class FlinkSqlParser extends Parser { "'SECOND'", "'SELECT'", "'SET'", "'SHOW'", + "'SIMILAR'", "'SKIP'", "'SMALLINT'", "'START'", "'STATIC'", "'SUBSTRING'", - "'SUM'", "'SYSTEM'", + "'SUM'", "'SYMMETRIC'", + "'SYSTEM'", "'SYSTEM_TIME'", "'SYSTEM_USER'", "'TABLE'", "'TABLESAMPLE'", @@ -1037,11 +1046,13 @@ export default class FlinkSqlParser extends Parser { "KW_YEARS", "KW_ZONE", "KW_ABS", "KW_ALL", - "ALLOW", "KW_ALTER", + "KW_ALLOW", + "KW_ALTER", "KW_AND", "KW_ANY", "KW_ARE", "KW_ARRAY", - "KW_AS", "KW_AT", - "KW_AVG", "KW_BEGIN", + "KW_AS", "KW_ASYMMETRIC", + "KW_AT", "KW_AVG", + "KW_BEGIN", "KW_BETWEEN", "KW_BIGINT", "KW_BINARY", @@ -1090,6 +1101,7 @@ export default class FlinkSqlParser extends Parser { "KW_EACH", "KW_ELSE", "KW_END", "KW_EQUALS", + "KW_ESCAPE", "KW_EXCEPT", "KW_EXECUTE", "KW_EXISTS", @@ -1152,6 +1164,7 @@ export default class FlinkSqlParser extends Parser { "KW_PER", "KW_PERCENT", "KW_PERIOD", "KW_POSITION", + "KW_POWER", "KW_PRIMARY", "KW_RANGE", "KW_RANK", @@ -1165,12 +1178,14 @@ export default class FlinkSqlParser extends Parser { "KW_SECOND", "KW_SELECT", "KW_SET", "KW_SHOW", + "KW_SIMILAR", "KW_SKIP", "KW_SMALLINT", "KW_START", "KW_STATIC", "KW_SUBSTRING", - "KW_SUM", "KW_SYSTEM", + "KW_SUM", "KW_SYMMETRIC", + "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", "KW_TABLE", @@ -1279,7 +1294,8 @@ export default class FlinkSqlParser extends Parser { "ifNotExists", "ifExists", "tablePropertyList", "tableProperty", "tablePropertyKey", "tablePropertyValue", "logicalOperator", "comparisonOperator", "bitOperator", "mathOperator", "unaryOperator", "constant", "stringLiteral", "decimalLiteral", - "booleanLiteral", "setQuantifier", "reservedKeywords", "nonReservedKeywords", + "booleanLiteral", "setQuantifier", "reservedKeywordsUsedAsFunctionName", + "reservedKeywords", "nonReservedKeywords", ]; public get grammarFileName(): string { return "FlinkSqlParser.g4"; } public get literalNames(): (string | null)[] { return FlinkSqlParser.literalNames; } @@ -1302,9 +1318,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 354; + this.state = 356; this.statement(); - this.state = 355; + this.state = 357; this.match(FlinkSqlParser.EOF); } } @@ -1329,9 +1345,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 357; + this.state = 359; this.sqlStatements(); - this.state = 358; + this.state = 360; this.match(FlinkSqlParser.EOF); } } @@ -1357,12 +1373,12 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 367; + this.state = 369; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===4 || _la===30 || _la===75 || _la===117 || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 269484037) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 84180993) !== 0) || _la===263 || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 3585) !== 0) || ((((_la - 355)) & ~0x1F) === 0 && ((1 << (_la - 355)) & 69206081) !== 0)) { + while (_la===4 || _la===30 || _la===75 || _la===117 || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 537919493) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 168067073) !== 0) || _la===265 || ((((_la - 319)) & ~0x1F) === 0 && ((1 << (_la - 319)) & 3585) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 69206081) !== 0)) { { - this.state = 365; + this.state = 367; this._errHandler.sync(this); switch (this._input.LA(1)) { case 4: @@ -1372,38 +1388,38 @@ export default class FlinkSqlParser extends Parser { case 158: case 160: case 178: - case 186: - case 216: - case 231: - case 234: - case 240: + case 187: + case 217: + case 232: + case 235: case 242: - case 263: - case 316: - case 325: - case 326: - case 327: - case 355: - case 361: - case 376: + case 244: + case 265: + case 319: + case 328: + case 329: + case 330: + case 360: + case 366: + case 381: { - this.state = 360; - this.sqlStatement(); this.state = 362; + this.sqlStatement(); + this.state = 364; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 0, this._ctx) ) { case 1: { - this.state = 361; + this.state = 363; this.match(FlinkSqlParser.SEMICOLON); } break; } } break; - case 381: + case 386: { - this.state = 364; + this.state = 366; this.emptyStatement(); } break; @@ -1411,7 +1427,7 @@ export default class FlinkSqlParser extends Parser { throw new NoViableAltException(this); } } - this.state = 369; + this.state = 371; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1436,90 +1452,90 @@ export default class FlinkSqlParser extends Parser { let localctx: SqlStatementContext = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 382; + this.state = 384; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 3, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 370; + this.state = 372; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 371; + this.state = 373; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 372; + this.state = 374; this.describeStatement(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 373; + this.state = 375; this.explainStatement(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 374; + this.state = 376; this.useStatement(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 375; + this.state = 377; this.showStatememt(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 376; + this.state = 378; this.loadStatement(); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 377; + this.state = 379; this.unloadStatememt(); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 378; + this.state = 380; this.setStatememt(); } break; case 10: this.enterOuterAlt(localctx, 10); { - this.state = 379; + this.state = 381; this.resetStatememt(); } break; case 11: this.enterOuterAlt(localctx, 11); { - this.state = 380; + this.state = 382; this.jarStatememt(); } break; case 12: this.enterOuterAlt(localctx, 12); { - this.state = 381; + this.state = 383; this.dtAddStatement(); } break; @@ -1546,7 +1562,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 384; + this.state = 386; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1569,104 +1585,104 @@ export default class FlinkSqlParser extends Parser { let localctx: DdlStatementContext = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 400; + this.state = 402; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 4, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 386; + this.state = 388; this.createTable(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 387; + this.state = 389; this.createDatabase(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 388; + this.state = 390; this.createView(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 389; + this.state = 391; this.createFunction(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 390; + this.state = 392; this.createCatalog(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 391; + this.state = 393; this.alterTable(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 392; + this.state = 394; this.alertView(); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 393; + this.state = 395; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 394; + this.state = 396; this.alterFunction(); } break; case 10: this.enterOuterAlt(localctx, 10); { - this.state = 395; + this.state = 397; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localctx, 11); { - this.state = 396; + this.state = 398; this.dropTable(); } break; case 12: this.enterOuterAlt(localctx, 12); { - this.state = 397; + this.state = 399; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localctx, 13); { - this.state = 398; + this.state = 400; this.dropView(); } break; case 14: this.enterOuterAlt(localctx, 14); { - this.state = 399; + this.state = 401; this.dropFunction(); } break; @@ -1691,25 +1707,25 @@ export default class FlinkSqlParser extends Parser { let localctx: DmlStatementContext = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 404; + this.state = 406; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 325: - case 355: - case 361: - case 376: + case 328: + case 360: + case 366: + case 381: this.enterOuterAlt(localctx, 1); { - this.state = 402; + this.state = 404; this.queryStatement(0); } break; - case 186: - case 240: - case 263: + case 187: + case 242: + case 265: this.enterOuterAlt(localctx, 2); { - this.state = 403; + this.state = 405; this.insertStatement(); } break; @@ -1739,16 +1755,16 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 406; + this.state = 408; _la = this._input.LA(1); - if(!(_la===30 || _la===231)) { + if(!(_la===30 || _la===232)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 407; + this.state = 409; this.uid(); } } @@ -1773,57 +1789,57 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 409; + this.state = 411; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 413; + this.state = 415; this._errHandler.sync(this); switch (this._input.LA(1)) { case 16: case 37: case 67: { - this.state = 410; + this.state = 412; this.explainDetails(); } break; case 100: { - this.state = 411; + this.state = 413; this.match(FlinkSqlParser.KW_PLAN); - this.state = 412; + this.state = 414; this.match(FlinkSqlParser.KW_FOR); } break; case 143: - case 186: - case 240: - case 263: - case 325: - case 355: - case 361: - case 376: + case 187: + case 242: + case 265: + case 328: + case 360: + case 366: + case 381: break; default: break; } - this.state = 418; + this.state = 420; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 7, this._ctx) ) { case 1: { - this.state = 415; + this.state = 417; this.dmlStatement(); } break; case 2: { - this.state = 416; + this.state = 418; this.insertSimpleStatement(); } break; case 3: { - this.state = 417; + this.state = 419; this.insertMulStatement(); } break; @@ -1852,21 +1868,21 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 420; + this.state = 422; this.explainDetail(); - this.state = 425; + this.state = 427; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 421; + this.state = 423; this.match(FlinkSqlParser.COMMA); - this.state = 422; + this.state = 424; this.explainDetail(); } } - this.state = 427; + this.state = 429; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1894,7 +1910,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 428; + this.state = 430; _la = this._input.LA(1); if(!(_la===16 || _la===37 || _la===67)) { this._errHandler.recoverInline(this); @@ -1924,32 +1940,32 @@ export default class FlinkSqlParser extends Parser { let localctx: UseStatementContext = new UseStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 22, FlinkSqlParser.RULE_useStatement); try { - this.state = 436; + this.state = 438; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 10, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 430; - this.match(FlinkSqlParser.KW_USE); this.state = 432; + this.match(FlinkSqlParser.KW_USE); + this.state = 434; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 9, this._ctx) ) { case 1: { - this.state = 431; + this.state = 433; this.match(FlinkSqlParser.KW_CATALOG); } break; } - this.state = 434; + this.state = 436; this.uid(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 435; + this.state = 437; this.useModuleStatement(); } break; @@ -1977,25 +1993,25 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 438; - this.match(FlinkSqlParser.KW_USE); - this.state = 439; - this.match(FlinkSqlParser.KW_MODULES); this.state = 440; + this.match(FlinkSqlParser.KW_USE); + this.state = 441; + this.match(FlinkSqlParser.KW_MODULES); + this.state = 442; this.uid(); - this.state = 445; + this.state = 447; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 441; + this.state = 443; this.match(FlinkSqlParser.COMMA); - this.state = 442; + this.state = 444; this.uid(); } } - this.state = 447; + this.state = 449; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -2021,15 +2037,15 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 26, FlinkSqlParser.RULE_showStatememt); let _la: number; try { - this.state = 483; + this.state = 485; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 17, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 448; + this.state = 450; this.match(FlinkSqlParser.KW_SHOW); - this.state = 449; + this.state = 451; _la = this._input.LA(1); if(!(_la===13 || _la===26 || _la===64 || _la===166)) { this._errHandler.recoverInline(this); @@ -2043,11 +2059,11 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 450; - this.match(FlinkSqlParser.KW_SHOW); - this.state = 451; - this.match(FlinkSqlParser.KW_CURRENT); this.state = 452; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 453; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 454; _la = this._input.LA(1); if(!(_la===12 || _la===25)) { this._errHandler.recoverInline(this); @@ -2061,35 +2077,35 @@ export default class FlinkSqlParser extends Parser { case 3: this.enterOuterAlt(localctx, 3); { - this.state = 453; + this.state = 455; this.match(FlinkSqlParser.KW_SHOW); - this.state = 454; + this.state = 456; this.match(FlinkSqlParser.KW_TABLES); - this.state = 457; + this.state = 459; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===248 || _la===259) { + if (_la===250 || _la===261) { { - this.state = 455; + this.state = 457; _la = this._input.LA(1); - if(!(_la===248 || _la===259)) { + if(!(_la===250 || _la===261)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 456; + this.state = 458; this.uid(); } } - this.state = 460; + this.state = 462; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===276 || _la===294) { + if (_la===278 || _la===296) { { - this.state = 459; + this.state = 461; this.likePredicate(); } } @@ -2099,27 +2115,27 @@ export default class FlinkSqlParser extends Parser { case 4: this.enterOuterAlt(localctx, 4); { - this.state = 462; - this.match(FlinkSqlParser.KW_SHOW); - this.state = 463; - this.match(FlinkSqlParser.KW_COLUMNS); this.state = 464; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 465; + this.match(FlinkSqlParser.KW_COLUMNS); + this.state = 466; _la = this._input.LA(1); - if(!(_la===248 || _la===259)) { + if(!(_la===250 || _la===261)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 465; - this.uid(); this.state = 467; + this.uid(); + this.state = 469; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===276 || _la===294) { + if (_la===278 || _la===296) { { - this.state = 466; + this.state = 468; this.likePredicate(); } } @@ -2129,58 +2145,58 @@ export default class FlinkSqlParser extends Parser { case 5: this.enterOuterAlt(localctx, 5); { - this.state = 469; - this.match(FlinkSqlParser.KW_SHOW); - this.state = 470; - this.match(FlinkSqlParser.KW_CREATE); this.state = 471; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 472; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 473; _la = this._input.LA(1); - if(!(_la===165 || _la===337)) { + if(!(_la===165 || _la===342)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 472; + this.state = 474; this.uid(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 473; - this.match(FlinkSqlParser.KW_SHOW); this.state = 475; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 477; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===352) { + if (_la===357) { { - this.state = 474; + this.state = 476; this.match(FlinkSqlParser.KW_USER); } } - this.state = 477; + this.state = 479; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 478; - this.match(FlinkSqlParser.KW_SHOW); this.state = 480; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 482; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===249) { + if (_la===251) { { - this.state = 479; + this.state = 481; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 482; + this.state = 484; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -2207,20 +2223,20 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 485; - this.match(FlinkSqlParser.KW_LOAD); - this.state = 486; - this.match(FlinkSqlParser.KW_MODULE); this.state = 487; + this.match(FlinkSqlParser.KW_LOAD); + this.state = 488; + this.match(FlinkSqlParser.KW_MODULE); + this.state = 489; this.uid(); - this.state = 490; + this.state = 492; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 18, this._ctx) ) { case 1: { - this.state = 488; + this.state = 490; this.match(FlinkSqlParser.KW_WITH); - this.state = 489; + this.state = 491; this.tablePropertyList(); } break; @@ -2248,11 +2264,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 492; - this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 493; - this.match(FlinkSqlParser.KW_MODULE); this.state = 494; + this.match(FlinkSqlParser.KW_UNLOAD); + this.state = 495; + this.match(FlinkSqlParser.KW_MODULE); + this.state = 496; this.uid(); } } @@ -2277,14 +2293,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 496; - this.match(FlinkSqlParser.KW_SET); this.state = 498; + this.match(FlinkSqlParser.KW_SET); + this.state = 500; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 19, this._ctx) ) { case 1: { - this.state = 497; + this.state = 499; this.tableProperty(); } break; @@ -2312,14 +2328,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 500; - this.match(FlinkSqlParser.KW_RESET); this.state = 502; + this.match(FlinkSqlParser.KW_RESET); + this.state = 504; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 20, this._ctx) ) { case 1: { - this.state = 501; + this.state = 503; this.tablePropertyKey(); } break; @@ -2348,7 +2364,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 504; + this.state = 506; _la = this._input.LA(1); if(!(_la===4 || _la===117)) { this._errHandler.recoverInline(this); @@ -2357,9 +2373,9 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 505; + this.state = 507; this.match(FlinkSqlParser.KW_JAR); - this.state = 506; + this.state = 508; this.jarFileName(); } } @@ -2383,28 +2399,28 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 38, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 547; + this.state = 549; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 24, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 508; - this.match(FlinkSqlParser.KW_ADD); - this.state = 509; - this.match(FlinkSqlParser.KW_JAR); this.state = 510; - this.match(FlinkSqlParser.KW_WITH); + this.match(FlinkSqlParser.KW_ADD); this.state = 511; + this.match(FlinkSqlParser.KW_JAR); + this.state = 512; + this.match(FlinkSqlParser.KW_WITH); + this.state = 513; this.match(FlinkSqlParser.FILE_PATH); - this.state = 514; + this.state = 516; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 512; + this.state = 514; this.match(FlinkSqlParser.KW_AS); - this.state = 513; + this.state = 515; this.uid(); } } @@ -2414,34 +2430,34 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 516; - this.match(FlinkSqlParser.KW_ADD); - this.state = 517; - this.match(FlinkSqlParser.KW_FILE); this.state = 518; - this.match(FlinkSqlParser.KW_WITH); + this.match(FlinkSqlParser.KW_ADD); this.state = 519; + this.match(FlinkSqlParser.KW_FILE); + this.state = 520; + this.match(FlinkSqlParser.KW_WITH); + this.state = 521; this.match(FlinkSqlParser.FILE_PATH); - this.state = 522; + this.state = 524; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 520; + this.state = 522; this.match(FlinkSqlParser.KW_AS); - this.state = 521; + this.state = 523; this.uid(); } } - this.state = 526; + this.state = 528; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===118) { { - this.state = 524; + this.state = 526; this.match(FlinkSqlParser.KW_RENAME); - this.state = 525; + this.state = 527; this.uid(); } } @@ -2451,9 +2467,9 @@ export default class FlinkSqlParser extends Parser { case 3: this.enterOuterAlt(localctx, 3); { - this.state = 528; + this.state = 530; this.match(FlinkSqlParser.KW_ADD); - this.state = 529; + this.state = 531; _la = this._input.LA(1); if(!(((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 31) !== 0))) { this._errHandler.recoverInline(this); @@ -2462,48 +2478,48 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 530; - this.match(FlinkSqlParser.KW_WITH); - this.state = 531; - this.match(FlinkSqlParser.FILE_PATH); this.state = 532; - this.match(FlinkSqlParser.KW_RENAME); + this.match(FlinkSqlParser.KW_WITH); this.state = 533; + this.match(FlinkSqlParser.FILE_PATH); + this.state = 534; + this.match(FlinkSqlParser.KW_RENAME); + this.state = 535; this.uid(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 534; - this.match(FlinkSqlParser.KW_ADD); - this.state = 535; - this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); this.state = 536; + this.match(FlinkSqlParser.KW_ADD); + this.state = 537; + this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); + this.state = 538; this.match(FlinkSqlParser.FILE_PATH); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 537; - this.match(FlinkSqlParser.KW_ADD); - this.state = 538; - this.match(FlinkSqlParser.KW_ENGINE); this.state = 539; - this.match(FlinkSqlParser.KW_FILE); + this.match(FlinkSqlParser.KW_ADD); this.state = 540; - this.match(FlinkSqlParser.KW_WITH); + this.match(FlinkSqlParser.KW_ENGINE); this.state = 541; - this.match(FlinkSqlParser.FILE_PATH); + this.match(FlinkSqlParser.KW_FILE); this.state = 542; - this.match(FlinkSqlParser.KW_RENAME); + this.match(FlinkSqlParser.KW_WITH); this.state = 543; - this.uid(); + this.match(FlinkSqlParser.FILE_PATH); this.state = 544; - this.match(FlinkSqlParser.KW_KEY); + this.match(FlinkSqlParser.KW_RENAME); this.state = 545; this.uid(); + this.state = 546; + this.match(FlinkSqlParser.KW_KEY); + this.state = 547; + this.uid(); } break; } @@ -2529,18 +2545,18 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 551; + this.state = 553; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 25, this._ctx) ) { case 1: { - this.state = 549; + this.state = 551; this.simpleCreateTable(); } break; case 2: { - this.state = 550; + this.state = 552; this.createTableAsSelect(); } break; @@ -2570,120 +2586,120 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 553; - this.match(FlinkSqlParser.KW_CREATE); this.state = 555; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 557; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===149) { { - this.state = 554; + this.state = 556; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 557; - this.match(FlinkSqlParser.KW_TABLE); this.state = 559; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 561; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 27, this._ctx) ) { case 1: { - this.state = 558; + this.state = 560; this.ifNotExists(); } break; } - this.state = 561; - this.sourceTable(); - this.state = 562; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 563; + this.sourceTable(); + this.state = 564; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 565; this.columnOptionDefinition(); - this.state = 568; + this.state = 570; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 28, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 564; + this.state = 566; this.match(FlinkSqlParser.COMMA); - this.state = 565; + this.state = 567; this.columnOptionDefinition(); } } } - this.state = 570; + this.state = 572; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 28, this._ctx); } - this.state = 573; + this.state = 575; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 29, this._ctx) ) { case 1: { - this.state = 571; + this.state = 573; this.match(FlinkSqlParser.COMMA); - this.state = 572; + this.state = 574; this.watermarkDefinition(); } break; } - this.state = 577; + this.state = 579; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 30, this._ctx) ) { case 1: { - this.state = 575; + this.state = 577; this.match(FlinkSqlParser.COMMA); - this.state = 576; + this.state = 578; this.tableConstraint(); } break; } - this.state = 581; + this.state = 583; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===380) { + if (_la===385) { { - this.state = 579; + this.state = 581; this.match(FlinkSqlParser.COMMA); - this.state = 580; + this.state = 582; this.selfDefinitionClause(); } } - this.state = 583; - this.match(FlinkSqlParser.RR_BRACKET); this.state = 585; + this.match(FlinkSqlParser.RR_BRACKET); + this.state = 587; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 584; + this.state = 586; this.commentSpec(); } } - this.state = 588; + this.state = 590; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===94) { { - this.state = 587; + this.state = 589; this.partitionDefinition(); } } - this.state = 590; - this.withOption(); this.state = 592; + this.withOption(); + this.state = 594; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===276) { + if (_la===278) { { - this.state = 591; + this.state = 593; this.likeDefinition(); } } @@ -2712,32 +2728,32 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 594; + this.state = 596; this.match(FlinkSqlParser.KW_CREATE); - this.state = 595; - this.match(FlinkSqlParser.KW_TABLE); this.state = 597; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 599; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 35, this._ctx) ) { case 1: { - this.state = 596; + this.state = 598; this.ifNotExists(); } break; } - this.state = 599; + this.state = 601; this.sourceTable(); - this.state = 600; + this.state = 602; this.withOption(); - this.state = 603; + this.state = 605; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 601; + this.state = 603; this.match(FlinkSqlParser.KW_AS); - this.state = 602; + this.state = 604; this.queryStatement(0); } } @@ -2763,27 +2779,27 @@ export default class FlinkSqlParser extends Parser { let localctx: ColumnOptionDefinitionContext = new ColumnOptionDefinitionContext(this, this._ctx, this.state); this.enterRule(localctx, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 608; + this.state = 610; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 37, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 605; + this.state = 607; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 606; + this.state = 608; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 607; + this.state = 609; this.computedColumnDefinition(); } break; @@ -2811,26 +2827,26 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 610; + this.state = 612; this.columnName(); - this.state = 611; - this.columnType(); this.state = 613; + this.columnType(); + this.state = 615; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===212 || ((((_la - 294)) & ~0x1F) === 0 && ((1 << (_la - 294)) & 524291) !== 0)) { + if (_la===213 || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 1048579) !== 0)) { { - this.state = 612; + this.state = 614; this.columnConstraint(); } } - this.state = 616; + this.state = 618; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 615; + this.state = 617; this.commentSpec(); } } @@ -2856,20 +2872,20 @@ export default class FlinkSqlParser extends Parser { let localctx: ColumnNameContext = new ColumnNameContext(this, this._ctx, this.state); this.enterRule(localctx, 50, FlinkSqlParser.RULE_columnName); try { - this.state = 620; + this.state = 622; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 40, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 618; + this.state = 620; this.uid(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 619; + this.state = 621; this.expression(); } break; @@ -2897,27 +2913,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 622; + this.state = 624; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 623; + this.state = 625; this.columnName(); - this.state = 628; + this.state = 630; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 624; + this.state = 626; this.match(FlinkSqlParser.COMMA); - this.state = 625; + this.state = 627; this.columnName(); } } - this.state = 630; + this.state = 632; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 631; + this.state = 633; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2941,18 +2957,18 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 54, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 670; + this.state = 672; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 192: - case 222: - case 295: + case 193: + case 223: + case 297: this.enterOuterAlt(localctx, 1); { - this.state = 633; + this.state = 635; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===192 || _la===222 || _la===295)) { + if(!(_la===193 || _la===223 || _la===297)) { localctx._typeName = this._errHandler.recoverInline(this); } else { @@ -2964,112 +2980,112 @@ export default class FlinkSqlParser extends Parser { case 10: case 145: case 151: - case 188: case 189: - case 201: - case 223: - case 264: - case 265: - case 329: - case 340: - case 342: - case 356: - case 357: + case 190: + case 202: + case 224: + case 266: + case 267: + case 333: + case 345: + case 347: + case 361: + case 362: this.enterOuterAlt(localctx, 2); { - this.state = 634; + this.state = 636; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===10 || _la===145 || _la===151 || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 8195) !== 0) || _la===223 || _la===264 || _la===265 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 402663425) !== 0))) { + if(!(_la===10 || _la===145 || _la===151 || ((((_la - 189)) & ~0x1F) === 0 && ((1 << (_la - 189)) & 8195) !== 0) || _la===224 || _la===266 || _la===267 || ((((_la - 333)) & ~0x1F) === 0 && ((1 << (_la - 333)) & 805326849) !== 0))) { localctx._typeName = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 636; + this.state = 638; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 635; + this.state = 637; this.lengthOneDimension(); } } } break; - case 341: + case 346: this.enterOuterAlt(localctx, 3); { - this.state = 638; - localctx._typeName = this.match(FlinkSqlParser.KW_TIMESTAMP); this.state = 640; + localctx._typeName = this.match(FlinkSqlParser.KW_TIMESTAMP); + this.state = 642; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 639; + this.state = 641; this.lengthOneDimension(); } } - this.state = 648; + this.state = 650; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===361 || _la===363) { + if (_la===366 || _la===368) { { - this.state = 642; + this.state = 644; _la = this._input.LA(1); - if(!(_la===361 || _la===363)) { + if(!(_la===366 || _la===368)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 644; + this.state = 646; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===278) { + if (_la===280) { { - this.state = 643; + this.state = 645; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 646; + this.state = 648; this.match(FlinkSqlParser.KW_TIME); - this.state = 647; + this.state = 649; this.match(FlinkSqlParser.KW_ZONE); } } } break; - case 225: case 226: - case 233: - case 246: - case 296: + case 227: + case 234: + case 248: + case 298: this.enterOuterAlt(localctx, 4); { - this.state = 650; + this.state = 652; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 2097411) !== 0) || _la===296)) { + if(!(((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4194563) !== 0) || _la===298)) { localctx._typeName = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 652; + this.state = 654; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 651; + this.state = 653; this.lengthTwoOptionalDimension(); } } @@ -3077,25 +3093,25 @@ export default class FlinkSqlParser extends Parser { } break; case 182: - case 289: + case 291: this.enterOuterAlt(localctx, 5); { - this.state = 654; + this.state = 656; localctx._type_ = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===182 || _la===289)) { + if(!(_la===182 || _la===291)) { localctx._type_ = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 656; + this.state = 658; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===367) { + if (_la===372) { { - this.state = 655; + this.state = 657; this.lengthOneTypeDimension(); } } @@ -3105,31 +3121,31 @@ export default class FlinkSqlParser extends Parser { case 76: this.enterOuterAlt(localctx, 6); { - this.state = 658; - localctx._type_ = this.match(FlinkSqlParser.KW_MAP); this.state = 660; + localctx._type_ = this.match(FlinkSqlParser.KW_MAP); + this.state = 662; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===367) { + if (_la===372) { { - this.state = 659; + this.state = 661; this.mapTypeDimension(); } } } break; - case 322: + case 325: this.enterOuterAlt(localctx, 7); { - this.state = 662; - localctx._type_ = this.match(FlinkSqlParser.KW_ROW); this.state = 664; + localctx._type_ = this.match(FlinkSqlParser.KW_ROW); + this.state = 666; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===367) { + if (_la===372) { { - this.state = 663; + this.state = 665; this.rowTypeDimension(); } } @@ -3139,14 +3155,14 @@ export default class FlinkSqlParser extends Parser { case 114: this.enterOuterAlt(localctx, 8); { - this.state = 666; - localctx._type_ = this.match(FlinkSqlParser.KW_RAW); this.state = 668; + localctx._type_ = this.match(FlinkSqlParser.KW_RAW); + this.state = 670; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 667; + this.state = 669; this.lengthTwoStringDimension(); } } @@ -3178,11 +3194,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 672; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 673; - this.decimalLiteral(); this.state = 674; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 675; + this.decimalLiteral(); + this.state = 676; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3208,23 +3224,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 676; + this.state = 678; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 677; + this.state = 679; this.decimalLiteral(); - this.state = 680; + this.state = 682; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===380) { + if (_la===385) { { - this.state = 678; + this.state = 680; this.match(FlinkSqlParser.COMMA); - this.state = 679; + this.state = 681; this.decimalLiteral(); } } - this.state = 682; + this.state = 684; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3250,23 +3266,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 684; + this.state = 686; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 685; + this.state = 687; this.stringLiteral(); - this.state = 688; + this.state = 690; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===380) { + if (_la===385) { { - this.state = 686; + this.state = 688; this.match(FlinkSqlParser.COMMA); - this.state = 687; + this.state = 689; this.stringLiteral(); } } - this.state = 690; + this.state = 692; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3291,11 +3307,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 692; - this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 693; - this.columnType(); this.state = 694; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 695; + this.columnType(); + this.state = 696; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3320,17 +3336,17 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 696; - this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 697; - this.columnType(); - { this.state = 698; - this.match(FlinkSqlParser.COMMA); + this.match(FlinkSqlParser.LESS_SYMBOL); this.state = 699; this.columnType(); - } + { + this.state = 700; + this.match(FlinkSqlParser.COMMA); this.state = 701; + this.columnType(); + } + this.state = 703; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3356,31 +3372,31 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 703; - this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 704; - this.columnName(); this.state = 705; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 706; + this.columnName(); + this.state = 707; this.columnType(); - this.state = 712; + this.state = 714; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 706; - this.match(FlinkSqlParser.COMMA); - this.state = 707; - this.columnName(); this.state = 708; + this.match(FlinkSqlParser.COMMA); + this.state = 709; + this.columnName(); + this.state = 710; this.columnType(); } } - this.state = 714; + this.state = 716; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 715; + this.state = 717; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3404,58 +3420,58 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 68, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 731; + this.state = 733; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 212: - case 313: + case 213: + case 316: this.enterOuterAlt(localctx, 1); { - this.state = 719; + this.state = 721; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===212) { + if (_la===213) { { - this.state = 717; + this.state = 719; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 718; + this.state = 720; this.constraintName(); } } - this.state = 721; + this.state = 723; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 722; + this.state = 724; this.match(FlinkSqlParser.KW_KEY); - this.state = 725; + this.state = 727; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 723; + this.state = 725; this.match(FlinkSqlParser.KW_NOT); - this.state = 724; + this.state = 726; this.match(FlinkSqlParser.KW_ENFORCED); } } } break; - case 294: - case 295: + case 296: + case 297: this.enterOuterAlt(localctx, 2); { - this.state = 728; + this.state = 730; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 727; + this.state = 729; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 730; + this.state = 732; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3484,9 +3500,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 733; + this.state = 735; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 734; + this.state = 736; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3512,30 +3528,30 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 736; - this.columnName(); - this.state = 737; - this.columnType(); this.state = 738; + this.columnName(); + this.state = 739; + this.columnType(); + this.state = 740; this.match(FlinkSqlParser.KW_METADATA); - this.state = 741; + this.state = 743; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===248) { + if (_la===250) { { - this.state = 739; + this.state = 741; this.match(FlinkSqlParser.KW_FROM); - this.state = 740; + this.state = 742; this.metadataKey(); } } - this.state = 744; + this.state = 746; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===167) { { - this.state = 743; + this.state = 745; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3563,7 +3579,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 746; + this.state = 748; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3589,18 +3605,18 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 748; - this.columnName(); - this.state = 749; - this.match(FlinkSqlParser.KW_AS); this.state = 750; - this.computedColumnExpression(); + this.columnName(); + this.state = 751; + this.match(FlinkSqlParser.KW_AS); this.state = 752; + this.computedColumnExpression(); + this.state = 754; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 751; + this.state = 753; this.commentSpec(); } } @@ -3628,7 +3644,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 754; + this.state = 756; this.expression(); } } @@ -3653,16 +3669,16 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 756; - this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 757; - this.match(FlinkSqlParser.KW_FOR); this.state = 758; - this.expression(); + this.match(FlinkSqlParser.KW_WATERMARK); this.state = 759; - this.match(FlinkSqlParser.KW_AS); + this.match(FlinkSqlParser.KW_FOR); this.state = 760; this.expression(); + this.state = 761; + this.match(FlinkSqlParser.KW_AS); + this.state = 762; + this.expression(); } } catch (re) { @@ -3687,27 +3703,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 764; + this.state = 766; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===212) { + if (_la===213) { { - this.state = 762; + this.state = 764; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 763; + this.state = 765; this.constraintName(); } } - this.state = 766; - this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 767; - this.match(FlinkSqlParser.KW_KEY); this.state = 768; - this.columnNameList(); + this.match(FlinkSqlParser.KW_PRIMARY); this.state = 769; - this.match(FlinkSqlParser.KW_NOT); + this.match(FlinkSqlParser.KW_KEY); this.state = 770; + this.columnNameList(); + this.state = 771; + this.match(FlinkSqlParser.KW_NOT); + this.state = 772; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3732,7 +3748,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 772; + this.state = 774; this.identifier(); } } @@ -3757,11 +3773,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 774; - this.match(FlinkSqlParser.KW_PERIOD); - this.state = 775; - this.match(FlinkSqlParser.KW_FOR); this.state = 776; + this.match(FlinkSqlParser.KW_PERIOD); + this.state = 777; + this.match(FlinkSqlParser.KW_FOR); + this.state = 778; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3786,11 +3802,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 778; - this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 779; - this.match(FlinkSqlParser.KW_BY); this.state = 780; + this.match(FlinkSqlParser.KW_PARTITIONED); + this.state = 781; + this.match(FlinkSqlParser.KW_BY); + this.state = 782; this.transformList(); } } @@ -3816,27 +3832,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 782; + this.state = 784; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 783; + this.state = 785; this.transform(); - this.state = 788; + this.state = 790; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 784; + this.state = 786; this.match(FlinkSqlParser.COMMA); - this.state = 785; + this.state = 787; this.transform(); } } - this.state = 790; + this.state = 792; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 791; + this.state = 793; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3860,14 +3876,14 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 92, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 806; + this.state = 808; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 65, this._ctx) ) { case 1: localctx = new IdentityTransformContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 793; + this.state = 795; this.qualifiedName(); } break; @@ -3875,29 +3891,29 @@ export default class FlinkSqlParser extends Parser { localctx = new ApplyTransformContext(this, localctx); this.enterOuterAlt(localctx, 2); { - this.state = 794; - (localctx as ApplyTransformContext)._transformName = this.identifier(); - this.state = 795; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 796; + (localctx as ApplyTransformContext)._transformName = this.identifier(); + this.state = 797; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 798; this.transformArgument(); - this.state = 801; + this.state = 803; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 797; + this.state = 799; this.match(FlinkSqlParser.COMMA); - this.state = 798; + this.state = 800; this.transformArgument(); } } - this.state = 803; + this.state = 805; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 804; + this.state = 806; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3922,20 +3938,20 @@ export default class FlinkSqlParser extends Parser { let localctx: TransformArgumentContext = new TransformArgumentContext(this, this._ctx, this.state); this.enterRule(localctx, 94, FlinkSqlParser.RULE_transformArgument); try { - this.state = 810; + this.state = 812; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 66, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 808; + this.state = 810; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 809; + this.state = 811; this.constant(); } break; @@ -3963,32 +3979,32 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 812; + this.state = 814; this.match(FlinkSqlParser.KW_LIKE); - this.state = 813; + this.state = 815; this.sourceTable(); - this.state = 822; + this.state = 824; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 68, this._ctx) ) { case 1: { - this.state = 814; + this.state = 816; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 818; + this.state = 820; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===40 || _la===93 || _la===260) { + while (_la===40 || _la===93 || _la===262) { { { - this.state = 815; + this.state = 817; this.likeOption(); } } - this.state = 820; + this.state = 822; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 821; + this.state = 823; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -4016,7 +4032,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 824; + this.state = 826; this.uid(); } } @@ -4040,23 +4056,23 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 830; + this.state = 832; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 69, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 826; + this.state = 828; _la = this._input.LA(1); - if(!(_la===40 || _la===260)) { + if(!(_la===40 || _la===262)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 827; + this.state = 829; _la = this._input.LA(1); if(!(_la===21 || _la===95 || _la===176)) { this._errHandler.recoverInline(this); @@ -4072,16 +4088,16 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 2); { { - this.state = 828; + this.state = 830; _la = this._input.LA(1); - if(!(_la===40 || _la===93 || _la===260)) { + if(!(_la===40 || _la===93 || _la===262)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 829; + this.state = 831; _la = this._input.LA(1); if(!(_la===52 || _la===89 || _la===169)) { this._errHandler.recoverInline(this); @@ -4116,13 +4132,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 832; - this.match(FlinkSqlParser.KW_CREATE); - this.state = 833; - this.match(FlinkSqlParser.KW_CATALOG); this.state = 834; - this.uid(); + this.match(FlinkSqlParser.KW_CREATE); this.state = 835; + this.match(FlinkSqlParser.KW_CATALOG); + this.state = 836; + this.uid(); + this.state = 837; this.withOption(); } } @@ -4148,33 +4164,33 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 837; + this.state = 839; this.match(FlinkSqlParser.KW_CREATE); - this.state = 838; - this.match(FlinkSqlParser.KW_DATABASE); this.state = 840; + this.match(FlinkSqlParser.KW_DATABASE); + this.state = 842; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 70, this._ctx) ) { case 1: { - this.state = 839; + this.state = 841; this.ifNotExists(); } break; } - this.state = 842; - this.uid(); this.state = 844; + this.uid(); + this.state = 846; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 843; + this.state = 845; this.commentSpec(); } } - this.state = 846; + this.state = 848; this.withOption(); } } @@ -4200,55 +4216,55 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 848; - this.match(FlinkSqlParser.KW_CREATE); this.state = 850; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 852; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===149) { { - this.state = 849; + this.state = 851; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 852; - this.match(FlinkSqlParser.KW_VIEW); this.state = 854; + this.match(FlinkSqlParser.KW_VIEW); + this.state = 856; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 73, this._ctx) ) { case 1: { - this.state = 853; + this.state = 855; this.ifNotExists(); } break; } - this.state = 856; - this.uid(); this.state = 858; + this.uid(); + this.state = 860; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 857; + this.state = 859; this.columnNameList(); } } - this.state = 861; + this.state = 863; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 860; + this.state = 862; this.commentSpec(); } } - this.state = 863; + this.state = 865; this.match(FlinkSqlParser.KW_AS); - this.state = 864; + this.state = 866; this.queryStatement(0); } } @@ -4274,52 +4290,52 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 866; + this.state = 868; this.match(FlinkSqlParser.KW_CREATE); - this.state = 870; + this.state = 872; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 76, this._ctx) ) { case 1: { - this.state = 867; + this.state = 869; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 868; + this.state = 870; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 869; + this.state = 871; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 872; - this.match(FlinkSqlParser.KW_FUNCTION); this.state = 874; + this.match(FlinkSqlParser.KW_FUNCTION); + this.state = 876; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 77, this._ctx) ) { case 1: { - this.state = 873; + this.state = 875; this.ifNotExists(); } break; } - this.state = 876; - this.uid(); - this.state = 877; - this.match(FlinkSqlParser.KW_AS); this.state = 878; + this.uid(); + this.state = 879; + this.match(FlinkSqlParser.KW_AS); + this.state = 880; this.identifier(); - this.state = 881; + this.state = 883; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===272) { + if (_la===274) { { - this.state = 879; + this.state = 881; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 880; + this.state = 882; _la = this._input.LA(1); if(!(_la===65 || _la===106 || _la===125)) { this._errHandler.recoverInline(this); @@ -4331,12 +4347,12 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 884; + this.state = 886; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===353) { + if (_la===358) { { - this.state = 883; + this.state = 885; this.usingClause(); } } @@ -4365,27 +4381,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 886; - this.match(FlinkSqlParser.KW_USING); - this.state = 887; - this.match(FlinkSqlParser.KW_JAR); this.state = 888; + this.match(FlinkSqlParser.KW_USING); + this.state = 889; + this.match(FlinkSqlParser.KW_JAR); + this.state = 890; this.jarFileName(); - this.state = 894; + this.state = 896; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 889; - this.match(FlinkSqlParser.COMMA); - this.state = 890; - this.match(FlinkSqlParser.KW_JAR); this.state = 891; + this.match(FlinkSqlParser.COMMA); + this.state = 892; + this.match(FlinkSqlParser.KW_JAR); + this.state = 893; this.jarFileName(); } } - this.state = 896; + this.state = 898; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -4412,7 +4428,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 897; + this.state = 899; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4437,52 +4453,52 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 899; + this.state = 901; this.match(FlinkSqlParser.KW_ALTER); - this.state = 900; - this.match(FlinkSqlParser.KW_TABLE); this.state = 902; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 904; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 81, this._ctx) ) { case 1: { - this.state = 901; + this.state = 903; this.ifExists(); } break; } - this.state = 904; + this.state = 906; this.uid(); - this.state = 910; + this.state = 912; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 82, this._ctx) ) { case 1: { - this.state = 905; + this.state = 907; this.renameDefinition(); } break; case 2: { - this.state = 906; + this.state = 908; this.setKeyValueDefinition(); } break; case 3: { - this.state = 907; + this.state = 909; this.addConstraint(); } break; case 4: { - this.state = 908; + this.state = 910; this.dropConstraint(); } break; case 5: { - this.state = 909; + this.state = 911; this.addUnique(); } break; @@ -4511,21 +4527,21 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 912; - this.match(FlinkSqlParser.KW_RENAME); this.state = 914; + this.match(FlinkSqlParser.KW_RENAME); + this.state = 916; this._errHandler.sync(this); _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 32767) !== 0) || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 19) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 32767) !== 0) || ((((_la - 402)) & ~0x1F) === 0 && ((1 << (_la - 402)) & 19) !== 0)) { { - this.state = 913; + this.state = 915; this.uid(); } } - this.state = 916; + this.state = 918; this.match(FlinkSqlParser.KW_TO); - this.state = 917; + this.state = 919; this.uid(); } } @@ -4550,9 +4566,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 919; + this.state = 921; this.match(FlinkSqlParser.KW_SET); - this.state = 920; + this.state = 922; this.tablePropertyList(); } } @@ -4578,24 +4594,24 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 922; - this.match(FlinkSqlParser.KW_ADD); - this.state = 923; - this.match(FlinkSqlParser.KW_CONSTRAINT); this.state = 924; - this.constraintName(); + this.match(FlinkSqlParser.KW_ADD); this.state = 925; - this.match(FlinkSqlParser.KW_PRIMARY); + this.match(FlinkSqlParser.KW_CONSTRAINT); this.state = 926; - this.match(FlinkSqlParser.KW_KEY); + this.constraintName(); this.state = 927; - this.columnNameList(); + this.match(FlinkSqlParser.KW_PRIMARY); + this.state = 928; + this.match(FlinkSqlParser.KW_KEY); this.state = 929; + this.columnNameList(); + this.state = 931; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 928; + this.state = 930; this.notForced(); } } @@ -4623,11 +4639,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 931; - this.match(FlinkSqlParser.KW_DROP); - this.state = 932; - this.match(FlinkSqlParser.KW_CONSTRAINT); this.state = 933; + this.match(FlinkSqlParser.KW_DROP); + this.state = 934; + this.match(FlinkSqlParser.KW_CONSTRAINT); + this.state = 935; this.constraintName(); } } @@ -4652,11 +4668,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 935; - this.match(FlinkSqlParser.KW_ADD); - this.state = 936; - this.match(FlinkSqlParser.KW_UNIQUE); this.state = 937; + this.match(FlinkSqlParser.KW_ADD); + this.state = 938; + this.match(FlinkSqlParser.KW_UNIQUE); + this.state = 939; this.columnNameList(); } } @@ -4681,9 +4697,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 939; + this.state = 941; this.match(FlinkSqlParser.KW_NOT); - this.state = 940; + this.state = 942; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4708,26 +4724,26 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 942; - this.match(FlinkSqlParser.KW_ALTER); - this.state = 943; - this.match(FlinkSqlParser.KW_VIEW); this.state = 944; + this.match(FlinkSqlParser.KW_ALTER); + this.state = 945; + this.match(FlinkSqlParser.KW_VIEW); + this.state = 946; this.uid(); - this.state = 948; + this.state = 950; this._errHandler.sync(this); switch (this._input.LA(1)) { case 118: { - this.state = 945; + this.state = 947; this.renameDefinition(); } break; case 183: { - this.state = 946; + this.state = 948; this.match(FlinkSqlParser.KW_AS); - this.state = 947; + this.state = 949; this.queryStatement(0); } break; @@ -4757,13 +4773,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 950; - this.match(FlinkSqlParser.KW_ALTER); - this.state = 951; - this.match(FlinkSqlParser.KW_DATABASE); this.state = 952; - this.uid(); + this.match(FlinkSqlParser.KW_ALTER); this.state = 953; + this.match(FlinkSqlParser.KW_DATABASE); + this.state = 954; + this.uid(); + this.state = 955; this.setKeyValueDefinition(); } } @@ -4789,52 +4805,52 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 955; + this.state = 957; this.match(FlinkSqlParser.KW_ALTER); - this.state = 959; + this.state = 961; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 86, this._ctx) ) { case 1: { - this.state = 956; + this.state = 958; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 957; + this.state = 959; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 958; + this.state = 960; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 961; - this.match(FlinkSqlParser.KW_FUNCTION); this.state = 963; + this.match(FlinkSqlParser.KW_FUNCTION); + this.state = 965; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 87, this._ctx) ) { case 1: { - this.state = 962; + this.state = 964; this.ifExists(); } break; } - this.state = 965; - this.uid(); - this.state = 966; - this.match(FlinkSqlParser.KW_AS); this.state = 967; + this.uid(); + this.state = 968; + this.match(FlinkSqlParser.KW_AS); + this.state = 969; this.identifier(); - this.state = 970; + this.state = 972; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===272) { + if (_la===274) { { - this.state = 968; + this.state = 970; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 969; + this.state = 971; _la = this._input.LA(1); if(!(_la===65 || _la===106 || _la===125)) { this._errHandler.recoverInline(this); @@ -4869,21 +4885,21 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 972; + this.state = 974; this.match(FlinkSqlParser.KW_DROP); - this.state = 973; - this.match(FlinkSqlParser.KW_CATALOG); this.state = 975; + this.match(FlinkSqlParser.KW_CATALOG); + this.state = 977; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 89, this._ctx) ) { case 1: { - this.state = 974; + this.state = 976; this.ifExists(); } break; } - this.state = 977; + this.state = 979; this.uid(); } } @@ -4909,31 +4925,31 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 979; - this.match(FlinkSqlParser.KW_DROP); this.state = 981; + this.match(FlinkSqlParser.KW_DROP); + this.state = 983; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===149) { { - this.state = 980; + this.state = 982; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 983; - this.match(FlinkSqlParser.KW_TABLE); this.state = 985; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 987; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 91, this._ctx) ) { case 1: { - this.state = 984; + this.state = 986; this.ifExists(); } break; } - this.state = 987; + this.state = 989; this.uid(); } } @@ -4959,28 +4975,28 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 989; + this.state = 991; this.match(FlinkSqlParser.KW_DROP); - this.state = 990; - this.match(FlinkSqlParser.KW_DATABASE); this.state = 992; + this.match(FlinkSqlParser.KW_DATABASE); + this.state = 994; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 92, this._ctx) ) { case 1: { - this.state = 991; + this.state = 993; this.ifExists(); } break; } - this.state = 994; - this.uid(); this.state = 996; + this.uid(); + this.state = 998; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===11 || _la===122) { { - this.state = 995; + this.state = 997; localctx._dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===11 || _la===122)) { @@ -5017,31 +5033,31 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 998; - this.match(FlinkSqlParser.KW_DROP); this.state = 1000; + this.match(FlinkSqlParser.KW_DROP); + this.state = 1002; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===149) { { - this.state = 999; + this.state = 1001; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1002; - this.match(FlinkSqlParser.KW_VIEW); this.state = 1004; + this.match(FlinkSqlParser.KW_VIEW); + this.state = 1006; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 95, this._ctx) ) { case 1: { - this.state = 1003; + this.state = 1005; this.ifExists(); } break; } - this.state = 1006; + this.state = 1008; this.uid(); } } @@ -5066,39 +5082,39 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1008; + this.state = 1010; this.match(FlinkSqlParser.KW_DROP); - this.state = 1012; + this.state = 1014; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 96, this._ctx) ) { case 1: { - this.state = 1009; + this.state = 1011; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1010; + this.state = 1012; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1011; + this.state = 1013; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1014; - this.match(FlinkSqlParser.KW_FUNCTION); this.state = 1016; + this.match(FlinkSqlParser.KW_FUNCTION); + this.state = 1018; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 97, this._ctx) ) { case 1: { - this.state = 1015; + this.state = 1017; this.ifExists(); } break; } - this.state = 1018; + this.state = 1020; this.uid(); } } @@ -5122,24 +5138,24 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1027; + this.state = 1029; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 99, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 1021; + this.state = 1023; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===240) { + if (_la===242) { { - this.state = 1020; + this.state = 1022; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1023; + this.state = 1025; this.insertSimpleStatement(); } } @@ -5147,7 +5163,7 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1024; + this.state = 1026; this.insertMulStatementCompatibility(); } break; @@ -5155,9 +5171,9 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 3); { { - this.state = 1025; + this.state = 1027; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1026; + this.state = 1028; this.insertMulStatement(); } } @@ -5186,51 +5202,51 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1029; + this.state = 1031; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1030; + this.state = 1032; _la = this._input.LA(1); - if(!(_la===92 || _la===268)) { + if(!(_la===92 || _la===270)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1031; + this.state = 1033; this.uid(); - this.state = 1040; + this.state = 1042; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 102, this._ctx) ) { case 1: { - this.state = 1033; + this.state = 1035; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===307) { + if (_la===309) { { - this.state = 1032; + this.state = 1034; this.insertPartitionDefinition(); } } - this.state = 1036; + this.state = 1038; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 101, this._ctx) ) { case 1: { - this.state = 1035; + this.state = 1037; this.columnNameList(); } break; } - this.state = 1038; + this.state = 1040; this.queryStatement(0); } break; case 2: { - this.state = 1039; + this.state = 1041; this.valuesDefinition(); } break; @@ -5258,9 +5274,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1042; + this.state = 1044; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1043; + this.state = 1045; this.tablePropertyList(); } } @@ -5286,23 +5302,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1045; + this.state = 1047; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1046; + this.state = 1048; this.valuesRowDefinition(); - this.state = 1051; + this.state = 1053; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1047; + this.state = 1049; this.match(FlinkSqlParser.COMMA); - this.state = 1048; + this.state = 1050; this.valuesRowDefinition(); } } - this.state = 1053; + this.state = 1055; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -5330,27 +5346,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1054; + this.state = 1056; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1055; + this.state = 1057; this.constant(); - this.state = 1060; + this.state = 1062; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1056; + this.state = 1058; this.match(FlinkSqlParser.COMMA); - this.state = 1057; + this.state = 1059; this.constant(); } } - this.state = 1062; + this.state = 1064; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1063; + this.state = 1065; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5376,31 +5392,31 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1065; - this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1066; - this.match(FlinkSqlParser.KW_STATEMENT); this.state = 1067; - this.match(FlinkSqlParser.KW_SET); + this.match(FlinkSqlParser.KW_BEGIN); this.state = 1068; + this.match(FlinkSqlParser.KW_STATEMENT); + this.state = 1069; + this.match(FlinkSqlParser.KW_SET); + this.state = 1070; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1072; + this.state = 1074; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1069; + this.state = 1071; this.insertSimpleStatement(); - this.state = 1070; + this.state = 1072; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1074; + this.state = 1076; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===263); - this.state = 1076; + } while (_la===265); + this.state = 1078; this.match(FlinkSqlParser.KW_END); } } @@ -5426,29 +5442,29 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1078; - this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1079; - this.match(FlinkSqlParser.KW_SET); this.state = 1080; + this.match(FlinkSqlParser.KW_STATEMENT); + this.state = 1081; + this.match(FlinkSqlParser.KW_SET); + this.state = 1082; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1084; + this.state = 1086; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1081; + this.state = 1083; this.insertSimpleStatement(); - this.state = 1082; + this.state = 1084; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1086; + this.state = 1088; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===263); - this.state = 1088; + } while (_la===265); + this.state = 1090; this.match(FlinkSqlParser.KW_END); } } @@ -5486,53 +5502,53 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1113; + this.state = 1115; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 111, this._ctx) ) { case 1: { - this.state = 1091; + this.state = 1093; this.valuesCaluse(); } break; case 2: { - this.state = 1092; + this.state = 1094; this.withClause(); - this.state = 1093; + this.state = 1095; this.queryStatement(5); } break; case 3: { - this.state = 1095; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1096; - this.queryStatement(0); this.state = 1097; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1098; + this.queryStatement(0); + this.state = 1099; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1099; - this.selectClause(); this.state = 1101; + this.selectClause(); + this.state = 1103; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 107, this._ctx) ) { case 1: { - this.state = 1100; + this.state = 1102; this.orderByCaluse(); } break; } - this.state = 1104; + this.state = 1106; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 108, this._ctx) ) { case 1: { - this.state = 1103; + this.state = 1105; this.limitClause(); } break; @@ -5541,24 +5557,24 @@ export default class FlinkSqlParser extends Parser { break; case 5: { - this.state = 1106; - this.selectStatement(); this.state = 1108; + this.selectStatement(); + this.state = 1110; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 109, this._ctx) ) { case 1: { - this.state = 1107; + this.state = 1109; this.orderByCaluse(); } break; } - this.state = 1111; + this.state = 1113; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 110, this._ctx) ) { case 1: { - this.state = 1110; + this.state = 1112; this.limitClause(); } break; @@ -5567,7 +5583,7 @@ export default class FlinkSqlParser extends Parser { break; } this._ctx.stop = this._input.LT(-1); - this.state = 1129; + this.state = 1131; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 115, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { @@ -5581,48 +5597,48 @@ export default class FlinkSqlParser extends Parser { localctx = new QueryStatementContext(this, _parentctx, _parentState); localctx._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1115; + this.state = 1117; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1116; + this.state = 1118; localctx._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===239 || _la===266 || _la===346)) { + if(!(_la===241 || _la===268 || _la===351)) { localctx._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1118; + this.state = 1120; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===176) { { - this.state = 1117; + this.state = 1119; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1120; - localctx._right = this.queryStatement(0); this.state = 1122; + localctx._right = this.queryStatement(0); + this.state = 1124; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 113, this._ctx) ) { case 1: { - this.state = 1121; + this.state = 1123; this.orderByCaluse(); } break; } - this.state = 1125; + this.state = 1127; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 114, this._ctx) ) { case 1: { - this.state = 1124; + this.state = 1126; this.limitClause(); } break; @@ -5630,7 +5646,7 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1131; + this.state = 1133; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 115, this._ctx); } @@ -5658,25 +5674,25 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1132; + this.state = 1134; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1133; + this.state = 1135; this.expression(); - this.state = 1138; + this.state = 1140; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 116, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1134; + this.state = 1136; this.match(FlinkSqlParser.COMMA); - this.state = 1135; + this.state = 1137; this.expression(); } } } - this.state = 1140; + this.state = 1142; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 116, this._ctx); } @@ -5704,23 +5720,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1141; + this.state = 1143; this.match(FlinkSqlParser.KW_WITH); - this.state = 1142; + this.state = 1144; this.withItem(); - this.state = 1147; + this.state = 1149; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1143; + this.state = 1145; this.match(FlinkSqlParser.COMMA); - this.state = 1144; + this.state = 1146; this.withItem(); } } - this.state = 1149; + this.state = 1151; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -5748,45 +5764,45 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1150; + this.state = 1152; this.withItemName(); - this.state = 1162; + this.state = 1164; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 1151; + this.state = 1153; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1152; + this.state = 1154; this.columnName(); - this.state = 1157; + this.state = 1159; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1153; + this.state = 1155; this.match(FlinkSqlParser.COMMA); - this.state = 1154; + this.state = 1156; this.columnName(); } } - this.state = 1159; + this.state = 1161; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1160; + this.state = 1162; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1164; - this.match(FlinkSqlParser.KW_AS); - this.state = 1165; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1166; - this.queryStatement(0); + this.match(FlinkSqlParser.KW_AS); this.state = 1167; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1168; + this.queryStatement(0); + this.state = 1169; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5811,7 +5827,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1169; + this.state = 1171; this.identifier(); } } @@ -5834,52 +5850,52 @@ export default class FlinkSqlParser extends Parser { let localctx: SelectStatementContext = new SelectStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 168, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1189; + this.state = 1191; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 124, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1171; + this.state = 1173; this.selectClause(); - this.state = 1172; - this.fromClause(); this.state = 1174; + this.fromClause(); + this.state = 1176; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 120, this._ctx) ) { case 1: { - this.state = 1173; + this.state = 1175; this.whereClause(); } break; } - this.state = 1177; + this.state = 1179; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 121, this._ctx) ) { case 1: { - this.state = 1176; + this.state = 1178; this.groupByClause(); } break; } - this.state = 1180; + this.state = 1182; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 122, this._ctx) ) { case 1: { - this.state = 1179; + this.state = 1181; this.havingClause(); } break; } - this.state = 1183; + this.state = 1185; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 123, this._ctx) ) { case 1: { - this.state = 1182; + this.state = 1184; this.windowClause(); } break; @@ -5889,11 +5905,11 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1185; - this.selectClause(); - this.state = 1186; - this.fromClause(); this.state = 1187; + this.selectClause(); + this.state = 1188; + this.fromClause(); + this.state = 1189; this.matchRecognizeClause(); } break; @@ -5917,50 +5933,51 @@ export default class FlinkSqlParser extends Parser { public selectClause(): SelectClauseContext { let localctx: SelectClauseContext = new SelectClauseContext(this, this._ctx, this.state); this.enterRule(localctx, 170, FlinkSqlParser.RULE_selectClause); + let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1191; - this.match(FlinkSqlParser.KW_SELECT); this.state = 1193; + this.match(FlinkSqlParser.KW_SELECT); + this.state = 1195; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 125, this._ctx) ) { - case 1: + _la = this._input.LA(1); + if (_la===176 || _la===233) { { - this.state = 1192; + this.state = 1194; this.setQuantifier(); } - break; } - this.state = 1204; + + this.state = 1206; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 127, this._ctx) ) { case 1: { - this.state = 1195; + this.state = 1197; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1196; + this.state = 1198; this.projectItemDefinition(); - this.state = 1201; + this.state = 1203; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 126, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1197; + this.state = 1199; this.match(FlinkSqlParser.COMMA); - this.state = 1198; + this.state = 1200; this.projectItemDefinition(); } } } - this.state = 1203; + this.state = 1205; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 126, this._ctx); } @@ -5987,38 +6004,39 @@ export default class FlinkSqlParser extends Parser { public projectItemDefinition(): ProjectItemDefinitionContext { let localctx: ProjectItemDefinitionContext = new ProjectItemDefinitionContext(this, this._ctx, this.state); this.enterRule(localctx, 172, FlinkSqlParser.RULE_projectItemDefinition); + let _la: number; try { - this.state = 1214; + this.state = 1216; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 130, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1206; + this.state = 1208; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1207; + this.state = 1209; this.expression(); - this.state = 1212; + this.state = 1214; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 129, this._ctx) ) { case 1: { - this.state = 1209; + this.state = 1211; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 128, this._ctx) ) { - case 1: + _la = this._input.LA(1); + if (_la===183) { { - this.state = 1208; + this.state = 1210; this.match(FlinkSqlParser.KW_AS); } - break; } - this.state = 1211; + + this.state = 1213; this.expression(); } break; @@ -6046,36 +6064,36 @@ export default class FlinkSqlParser extends Parser { let localctx: OverWindowItemContext = new OverWindowItemContext(this, this._ctx, this.state); this.enterRule(localctx, 174, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1228; + this.state = 1230; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 131, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1216; - this.primaryExpression(0); - this.state = 1217; - this.match(FlinkSqlParser.KW_OVER); this.state = 1218; - this.windowSpec(); + this.primaryExpression(0); this.state = 1219; - this.match(FlinkSqlParser.KW_AS); + this.match(FlinkSqlParser.KW_OVER); this.state = 1220; + this.windowSpec(); + this.state = 1221; + this.match(FlinkSqlParser.KW_AS); + this.state = 1222; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1222; - this.primaryExpression(0); - this.state = 1223; - this.match(FlinkSqlParser.KW_OVER); this.state = 1224; - this.errorCapturingIdentifier(); + this.primaryExpression(0); this.state = 1225; - this.match(FlinkSqlParser.KW_AS); + this.match(FlinkSqlParser.KW_OVER); this.state = 1226; + this.errorCapturingIdentifier(); + this.state = 1227; + this.match(FlinkSqlParser.KW_AS); + this.state = 1228; this.identifier(); } break; @@ -6102,9 +6120,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1230; + this.state = 1232; this.match(FlinkSqlParser.KW_FROM); - this.state = 1231; + this.state = 1233; this.tableExpression(0); } } @@ -6142,28 +6160,28 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1244; + this.state = 1246; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 133, this._ctx) ) { case 1: { - this.state = 1234; + this.state = 1236; this.tableReference(); - this.state = 1239; + this.state = 1241; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 132, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1235; + this.state = 1237; this.match(FlinkSqlParser.COMMA); - this.state = 1236; + this.state = 1238; this.tableReference(); } } } - this.state = 1241; + this.state = 1243; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 132, this._ctx); } @@ -6171,19 +6189,19 @@ export default class FlinkSqlParser extends Parser { break; case 2: { - this.state = 1242; + this.state = 1244; this.inlineDataValueClause(); } break; case 3: { - this.state = 1243; + this.state = 1245; this.windoTVFClause(); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1267; + this.state = 1269; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 139, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { @@ -6193,22 +6211,22 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1265; + this.state = 1267; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 138, this._ctx) ) { case 1: { localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1246; + this.state = 1248; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1247; - this.match(FlinkSqlParser.KW_CROSS); - this.state = 1248; - this.match(FlinkSqlParser.KW_JOIN); this.state = 1249; + this.match(FlinkSqlParser.KW_CROSS); + this.state = 1250; + this.match(FlinkSqlParser.KW_JOIN); + this.state = 1251; this.tableExpression(4); } break; @@ -6216,28 +6234,28 @@ export default class FlinkSqlParser extends Parser { { localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1250; + this.state = 1252; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1252; + this.state = 1254; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===290) { + if (_la===292) { { - this.state = 1251; + this.state = 1253; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1255; + this.state = 1257; this._errHandler.sync(this); _la = this._input.LA(1); - if (((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 67112961) !== 0) || _la===318) { + if (((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 67112961) !== 0) || _la===321) { { - this.state = 1254; + this.state = 1256; _la = this._input.LA(1); - if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 67112961) !== 0) || _la===318)) { + if(!(((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 67112961) !== 0) || _la===321)) { this._errHandler.recoverInline(this); } else { @@ -6247,26 +6265,26 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1258; + this.state = 1260; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===304) { + if (_la===306) { { - this.state = 1257; + this.state = 1259; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1260; + this.state = 1262; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1261; - this.tableExpression(0); this.state = 1263; + this.tableExpression(0); + this.state = 1265; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 137, this._ctx) ) { case 1: { - this.state = 1262; + this.state = 1264; this.joinCondition(); } break; @@ -6276,7 +6294,7 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1269; + this.state = 1271; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 139, this._ctx); } @@ -6303,14 +6321,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1270; - this.tablePrimary(); this.state = 1272; + this.tablePrimary(); + this.state = 1274; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 140, this._ctx) ) { case 1: { - this.state = 1271; + this.state = 1273; this.tableAlias(); } break; @@ -6337,50 +6355,50 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 182, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1315; + this.state = 1317; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 147, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1275; + this.state = 1277; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===337) { + if (_la===342) { { - this.state = 1274; + this.state = 1276; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1277; - this.tablePath(); this.state = 1279; + this.tablePath(); + this.state = 1281; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 142, this._ctx) ) { case 1: { - this.state = 1278; + this.state = 1280; this.systemTimePeriod(); } break; } - this.state = 1285; + this.state = 1287; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 144, this._ctx) ) { case 1: { - this.state = 1282; + this.state = 1284; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 1281; + this.state = 1283; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1284; + this.state = 1286; this.correlationName(); } break; @@ -6390,71 +6408,71 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1287; - this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1288; - this.match(FlinkSqlParser.KW_TABLE); this.state = 1289; - this.match(FlinkSqlParser.LR_BRACKET); + this.match(FlinkSqlParser.KW_LATERAL); this.state = 1290; - this.functionName(); + this.match(FlinkSqlParser.KW_TABLE); this.state = 1291; this.match(FlinkSqlParser.LR_BRACKET); this.state = 1292; + this.functionName(); + this.state = 1293; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1294; this.expression(); - this.state = 1297; + this.state = 1299; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1293; + this.state = 1295; this.match(FlinkSqlParser.COMMA); - this.state = 1294; + this.state = 1296; this.expression(); } } - this.state = 1299; + this.state = 1301; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1300; + this.state = 1302; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1301; + this.state = 1303; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1304; + this.state = 1306; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===273) { + if (_la===275) { { - this.state = 1303; + this.state = 1305; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1306; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1307; - this.queryStatement(0); this.state = 1308; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1309; + this.queryStatement(0); + this.state = 1310; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1310; - this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1311; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1312; - this.expression(); + this.match(FlinkSqlParser.KW_UNNEST); this.state = 1313; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1314; + this.expression(); + this.state = 1315; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6481,7 +6499,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1317; + this.state = 1319; this.uid(); } } @@ -6506,15 +6524,15 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1319; - this.match(FlinkSqlParser.KW_FOR); - this.state = 1320; - this.match(FlinkSqlParser.KW_SYSTEM_TIME); this.state = 1321; - this.match(FlinkSqlParser.KW_AS); + this.match(FlinkSqlParser.KW_FOR); this.state = 1322; - this.match(FlinkSqlParser.KW_OF); + this.match(FlinkSqlParser.KW_SYSTEM_TIME); this.state = 1323; + this.match(FlinkSqlParser.KW_AS); + this.state = 1324; + this.match(FlinkSqlParser.KW_OF); + this.state = 1325; this.dateTimeExpression(); } } @@ -6539,7 +6557,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1325; + this.state = 1327; this.expression(); } } @@ -6564,13 +6582,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1327; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1328; - this.valuesDefinition(); this.state = 1329; - this.match(FlinkSqlParser.RR_BRACKET); + this.match(FlinkSqlParser.LR_BRACKET); this.state = 1330; + this.valuesDefinition(); + this.state = 1331; + this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1332; this.tableAlias(); } } @@ -6595,13 +6613,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1332; - this.match(FlinkSqlParser.KW_TABLE); - this.state = 1333; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1334; - this.windowTVFExression(); + this.match(FlinkSqlParser.KW_TABLE); this.state = 1335; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1336; + this.windowTVFExression(); + this.state = 1337; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6627,29 +6645,29 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1337; - this.windoTVFName(); - this.state = 1338; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1339; + this.windoTVFName(); + this.state = 1340; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1341; this.windowTVFParam(); - this.state = 1344; + this.state = 1346; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1340; + this.state = 1342; this.match(FlinkSqlParser.COMMA); - this.state = 1341; + this.state = 1343; this.windowTVFParam(); } } - this.state = 1346; + this.state = 1348; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1347; + this.state = 1349; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6675,7 +6693,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1349; + this.state = 1351; _la = this._input.LA(1); if(!(_la===23 || _la===56 || _la===155)) { this._errHandler.recoverInline(this); @@ -6705,64 +6723,64 @@ export default class FlinkSqlParser extends Parser { let localctx: WindowTVFParamContext = new WindowTVFParamContext(this, this._ctx, this.state); this.enterRule(localctx, 198, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1366; + this.state = 1368; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 149, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1351; + this.state = 1353; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1352; + this.state = 1354; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1353; + this.state = 1355; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1354; + this.state = 1356; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1355; - this.match(FlinkSqlParser.KW_DATA); - this.state = 1356; - this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); this.state = 1357; - this.match(FlinkSqlParser.KW_TABLE); + this.match(FlinkSqlParser.KW_DATA); this.state = 1358; + this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); + this.state = 1359; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 1360; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1359; - this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1360; - this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); this.state = 1361; + this.match(FlinkSqlParser.KW_TIMECOL); + this.state = 1362; + this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); + this.state = 1363; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1362; - this.timeIntervalParamName(); - this.state = 1363; - this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); this.state = 1364; + this.timeIntervalParamName(); + this.state = 1365; + this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); + this.state = 1366; this.timeIntervalExpression(); } break; @@ -6790,9 +6808,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1368; + this.state = 1370; _la = this._input.LA(1); - if(!(_la===24 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 4163) !== 0) || _la===298)) { + if(!(_la===24 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 4163) !== 0) || _la===300)) { this._errHandler.recoverInline(this); } else { @@ -6822,13 +6840,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1370; - this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1371; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1372; - this.uid(); + this.match(FlinkSqlParser.KW_DESCRIPTOR); this.state = 1373; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1374; + this.uid(); + this.state = 1375; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6852,44 +6870,44 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 204, FlinkSqlParser.RULE_joinCondition); let _la: number; try { - this.state = 1389; + this.state = 1391; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 299: + case 301: this.enterOuterAlt(localctx, 1); { - this.state = 1375; + this.state = 1377; this.match(FlinkSqlParser.KW_ON); - this.state = 1376; + this.state = 1378; this.booleanExpression(0); } break; - case 353: + case 358: this.enterOuterAlt(localctx, 2); { - this.state = 1377; - this.match(FlinkSqlParser.KW_USING); - this.state = 1378; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1379; + this.match(FlinkSqlParser.KW_USING); + this.state = 1380; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1381; this.uid(); - this.state = 1384; + this.state = 1386; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1380; + this.state = 1382; this.match(FlinkSqlParser.COMMA); - this.state = 1381; + this.state = 1383; this.uid(); } } - this.state = 1386; + this.state = 1388; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1387; + this.state = 1389; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6918,9 +6936,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1391; + this.state = 1393; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1392; + this.state = 1394; this.booleanExpression(0); } } @@ -6946,27 +6964,27 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1394; - this.match(FlinkSqlParser.KW_GROUP); - this.state = 1395; - this.match(FlinkSqlParser.KW_BY); this.state = 1396; + this.match(FlinkSqlParser.KW_GROUP); + this.state = 1397; + this.match(FlinkSqlParser.KW_BY); + this.state = 1398; this.groupItemDefinition(); - this.state = 1401; + this.state = 1403; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 152, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1397; + this.state = 1399; this.match(FlinkSqlParser.COMMA); - this.state = 1398; + this.state = 1400; this.groupItemDefinition(); } } } - this.state = 1403; + this.state = 1405; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 152, this._ctx); } @@ -6992,114 +7010,114 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 210, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1443; + this.state = 1445; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 156, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1404; + this.state = 1406; this.expression(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1405; + this.state = 1407; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1406; + this.state = 1408; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1407; + this.state = 1409; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1408; + this.state = 1410; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1409; + this.state = 1411; this.expression(); - this.state = 1414; + this.state = 1416; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1410; + this.state = 1412; this.match(FlinkSqlParser.COMMA); - this.state = 1411; + this.state = 1413; this.expression(); } } - this.state = 1416; + this.state = 1418; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1417; + this.state = 1419; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1419; - this.groupingSetsNotaionName(); - this.state = 1420; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1421; + this.groupingSetsNotaionName(); + this.state = 1422; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1423; this.expression(); - this.state = 1426; + this.state = 1428; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1422; + this.state = 1424; this.match(FlinkSqlParser.COMMA); - this.state = 1423; + this.state = 1425; this.expression(); } } - this.state = 1428; + this.state = 1430; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1429; + this.state = 1431; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1431; - this.groupingSets(); - this.state = 1432; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1433; + this.groupingSets(); + this.state = 1434; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1435; this.groupItemDefinition(); - this.state = 1438; + this.state = 1440; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1434; + this.state = 1436; this.match(FlinkSqlParser.COMMA); - this.state = 1435; + this.state = 1437; this.groupItemDefinition(); } } - this.state = 1440; + this.state = 1442; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1441; + this.state = 1443; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7126,9 +7144,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1445; + this.state = 1447; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1446; + this.state = 1448; this.match(FlinkSqlParser.KW_SETS); } } @@ -7154,9 +7172,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1448; + this.state = 1450; _la = this._input.LA(1); - if(!(_la===218 || _la===321)) { + if(!(_la===219 || _la===324)) { this._errHandler.recoverInline(this); } else { @@ -7186,17 +7204,17 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1450; - this.groupWindowFunctionName(); - this.state = 1451; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1452; - this.timeAttrColumn(); + this.groupWindowFunctionName(); this.state = 1453; - this.match(FlinkSqlParser.COMMA); + this.match(FlinkSqlParser.LR_BRACKET); this.state = 1454; - this.timeIntervalExpression(); + this.timeAttrColumn(); this.state = 1455; + this.match(FlinkSqlParser.COMMA); + this.state = 1456; + this.timeIntervalExpression(); + this.state = 1457; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7222,7 +7240,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1457; + this.state = 1459; _la = this._input.LA(1); if(!(_la===56 || _la===135 || _la===155)) { this._errHandler.recoverInline(this); @@ -7254,7 +7272,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1459; + this.state = 1461; this.uid(); } } @@ -7279,9 +7297,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1461; + this.state = 1463; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1462; + this.state = 1464; this.booleanExpression(0); } } @@ -7307,25 +7325,25 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1464; + this.state = 1466; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1465; + this.state = 1467; this.namedWindow(); - this.state = 1470; + this.state = 1472; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 157, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1466; + this.state = 1468; this.match(FlinkSqlParser.COMMA); - this.state = 1467; + this.state = 1469; this.namedWindow(); } } } - this.state = 1472; + this.state = 1474; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 157, this._ctx); } @@ -7352,11 +7370,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1473; - localctx._name = this.errorCapturingIdentifier(); - this.state = 1474; - this.match(FlinkSqlParser.KW_AS); this.state = 1475; + localctx._name = this.errorCapturingIdentifier(); + this.state = 1476; + this.match(FlinkSqlParser.KW_AS); + this.state = 1477; this.windowSpec(); } } @@ -7382,49 +7400,49 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1478; + this.state = 1480; this._errHandler.sync(this); _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 32767) !== 0) || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 19) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 32767) !== 0) || ((((_la - 402)) & ~0x1F) === 0 && ((1 << (_la - 402)) & 19) !== 0)) { { - this.state = 1477; + this.state = 1479; localctx._name = this.errorCapturingIdentifier(); } } - this.state = 1480; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1482; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1484; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===307) { + if (_la===309) { { - this.state = 1481; + this.state = 1483; this.partitionByClause(); } } - this.state = 1485; + this.state = 1487; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===302) { + if (_la===304) { { - this.state = 1484; + this.state = 1486; this.orderByCaluse(); } } - this.state = 1488; + this.state = 1490; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===314 || _la===323) { + if (_la===317 || _la===326) { { - this.state = 1487; + this.state = 1489; this.windowFrame(); } } - this.state = 1490; + this.state = 1492; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7450,90 +7468,90 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1492; + this.state = 1494; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1493; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1495; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1497; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===307) { + if (_la===309) { { - this.state = 1494; + this.state = 1496; this.partitionByClause(); } } - this.state = 1498; + this.state = 1500; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===302) { + if (_la===304) { { - this.state = 1497; + this.state = 1499; this.orderByCaluse(); } } - this.state = 1501; + this.state = 1503; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===281) { + if (_la===283) { { - this.state = 1500; + this.state = 1502; this.measuresClause(); } } - this.state = 1504; + this.state = 1506; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===176 || _la===300) { + if (_la===176 || _la===302) { { - this.state = 1503; + this.state = 1505; this.outputMode(); } } - this.state = 1507; + this.state = 1509; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===6) { { - this.state = 1506; + this.state = 1508; this.afterMatchStrategy(); } } - this.state = 1510; + this.state = 1512; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===308) { + if (_la===310) { { - this.state = 1509; + this.state = 1511; this.patternDefination(); } } - this.state = 1512; + this.state = 1514; this.patternVariablesDefination(); - this.state = 1513; + this.state = 1515; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1518; + this.state = 1520; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 169, this._ctx) ) { case 1: { - this.state = 1515; + this.state = 1517; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 1514; + this.state = 1516; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1517; + this.state = 1519; this.identifier(); } break; @@ -7562,27 +7580,27 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1520; - this.match(FlinkSqlParser.KW_ORDER); - this.state = 1521; - this.match(FlinkSqlParser.KW_BY); this.state = 1522; + this.match(FlinkSqlParser.KW_ORDER); + this.state = 1523; + this.match(FlinkSqlParser.KW_BY); + this.state = 1524; this.orderItemDefition(); - this.state = 1527; + this.state = 1529; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 170, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1523; + this.state = 1525; this.match(FlinkSqlParser.COMMA); - this.state = 1524; + this.state = 1526; this.orderItemDefition(); } } } - this.state = 1529; + this.state = 1531; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 170, this._ctx); } @@ -7610,14 +7628,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1530; - this.expression(); this.state = 1532; + this.expression(); + this.state = 1534; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 171, this._ctx) ) { case 1: { - this.state = 1531; + this.state = 1533; localctx._ordering = this._input.LT(1); _la = this._input.LA(1); if(!(_la===8 || _la===30)) { @@ -7630,14 +7648,14 @@ export default class FlinkSqlParser extends Parser { } break; } - this.state = 1536; + this.state = 1538; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 172, this._ctx) ) { case 1: { - this.state = 1534; + this.state = 1536; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1535; + this.state = 1537; localctx._nullOrder = this._input.LT(1); _la = this._input.LA(1); if(!(_la===44 || _la===72)) { @@ -7673,23 +7691,240 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1538; + this.state = 1540; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1541; + this.state = 1543; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 173, this._ctx) ) { - case 1: + switch (this._input.LA(1)) { + case 176: { - this.state = 1539; + this.state = 1541; this.match(FlinkSqlParser.KW_ALL); } break; - case 2: + case 4: + case 5: + case 6: + case 7: + case 8: + case 9: + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 118: + case 119: + case 120: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 144: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 155: + case 156: + case 157: + case 158: + case 159: + case 160: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 182: + case 186: + case 199: + case 200: + case 201: + case 207: + case 209: + case 216: + case 223: + case 243: + case 247: + case 256: + case 259: + case 269: + case 273: + case 277: + case 287: + case 290: + case 296: + case 297: + case 308: + case 314: + case 315: + case 318: + case 321: + case 327: + case 336: + case 337: + case 345: + case 346: + case 349: + case 350: + case 355: + case 369: + case 374: + case 381: + case 392: + case 394: + case 395: + case 402: + case 403: + case 404: + case 405: + case 406: { - this.state = 1540; + this.state = 1542; localctx._limit = this.expression(); } break; + default: + throw new NoViableAltException(this); } } } @@ -7715,25 +7950,25 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1543; - this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1544; - this.match(FlinkSqlParser.KW_BY); this.state = 1545; + this.match(FlinkSqlParser.KW_PARTITION); + this.state = 1546; + this.match(FlinkSqlParser.KW_BY); + this.state = 1547; this.expression(); - this.state = 1550; + this.state = 1552; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1546; + this.state = 1548; this.match(FlinkSqlParser.COMMA); - this.state = 1547; + this.state = 1549; this.expression(); } } - this.state = 1552; + this.state = 1554; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -7758,14 +7993,14 @@ export default class FlinkSqlParser extends Parser { let localctx: QuantifiersContext = new QuantifiersContext(this, this._ctx, this.state); this.enterRule(localctx, 240, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1569; + this.state = 1571; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 175, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 1553; + this.state = 1555; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7774,7 +8009,7 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 2); { { - this.state = 1554; + this.state = 1556; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7783,7 +8018,7 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 3); { { - this.state = 1555; + this.state = 1557; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7792,15 +8027,15 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 4); { { - this.state = 1556; - this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1557; - this.match(FlinkSqlParser.DIG_LITERAL); this.state = 1558; - this.match(FlinkSqlParser.COMMA); + this.match(FlinkSqlParser.LB_BRACKET); this.state = 1559; this.match(FlinkSqlParser.DIG_LITERAL); this.state = 1560; + this.match(FlinkSqlParser.COMMA); + this.state = 1561; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1562; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7809,13 +8044,13 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 5); { { - this.state = 1561; - this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1562; - this.match(FlinkSqlParser.DIG_LITERAL); this.state = 1563; - this.match(FlinkSqlParser.COMMA); + this.match(FlinkSqlParser.LB_BRACKET); this.state = 1564; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1565; + this.match(FlinkSqlParser.COMMA); + this.state = 1566; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7824,13 +8059,13 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 6); { { - this.state = 1565; - this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1566; - this.match(FlinkSqlParser.COMMA); this.state = 1567; - this.match(FlinkSqlParser.DIG_LITERAL); + this.match(FlinkSqlParser.LB_BRACKET); this.state = 1568; + this.match(FlinkSqlParser.COMMA); + this.state = 1569; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1570; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7859,23 +8094,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1571; + this.state = 1573; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1572; + this.state = 1574; this.projectItemDefinition(); - this.state = 1577; + this.state = 1579; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1573; + this.state = 1575; this.match(FlinkSqlParser.COMMA); - this.state = 1574; + this.state = 1576; this.projectItemDefinition(); } } - this.state = 1579; + this.state = 1581; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -7903,32 +8138,32 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1580; + this.state = 1582; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1581; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1583; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1585; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1582; + this.state = 1584; this.patternVariable(); } } - this.state = 1585; + this.state = 1587; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===398 || _la===401); - this.state = 1587; - this.match(FlinkSqlParser.RR_BRACKET); + } while (_la===403 || _la===406); this.state = 1589; + this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1591; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===362) { + if (_la===367) { { - this.state = 1588; + this.state = 1590; this.withinClause(); } } @@ -7957,14 +8192,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1591; - this.unquotedIdentifier(); this.state = 1593; + this.unquotedIdentifier(); + this.state = 1595; this._errHandler.sync(this); _la = this._input.LA(1); - if (((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 135681) !== 0)) { + if (((((_la - 383)) & ~0x1F) === 0 && ((1 << (_la - 383)) & 135681) !== 0)) { { - this.state = 1592; + this.state = 1594; this.quantifiers(); } } @@ -7990,32 +8225,32 @@ export default class FlinkSqlParser extends Parser { let localctx: OutputModeContext = new OutputModeContext(this, this._ctx, this.state); this.enterRule(localctx, 248, FlinkSqlParser.RULE_outputMode); try { - this.state = 1603; + this.state = 1605; this._errHandler.sync(this); switch (this._input.LA(1)) { case 176: this.enterOuterAlt(localctx, 1); { - this.state = 1595; - this.match(FlinkSqlParser.KW_ALL); - this.state = 1596; - this.match(FlinkSqlParser.KW_ROWS); this.state = 1597; - this.match(FlinkSqlParser.KW_PER); + this.match(FlinkSqlParser.KW_ALL); this.state = 1598; + this.match(FlinkSqlParser.KW_ROWS); + this.state = 1599; + this.match(FlinkSqlParser.KW_PER); + this.state = 1600; this.match(FlinkSqlParser.KW_MATCH); } break; - case 300: + case 302: this.enterOuterAlt(localctx, 2); { - this.state = 1599; - this.match(FlinkSqlParser.KW_ONE); - this.state = 1600; - this.match(FlinkSqlParser.KW_ROW); this.state = 1601; - this.match(FlinkSqlParser.KW_PER); + this.match(FlinkSqlParser.KW_ONE); this.state = 1602; + this.match(FlinkSqlParser.KW_ROW); + this.state = 1603; + this.match(FlinkSqlParser.KW_PER); + this.state = 1604; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -8042,74 +8277,74 @@ export default class FlinkSqlParser extends Parser { let localctx: AfterMatchStrategyContext = new AfterMatchStrategyContext(this, this._ctx, this.state); this.enterRule(localctx, 250, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1629; + this.state = 1631; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 181, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1605; - this.match(FlinkSqlParser.KW_AFTER); - this.state = 1606; - this.match(FlinkSqlParser.KW_MATCH); this.state = 1607; - this.match(FlinkSqlParser.KW_SKIP); + this.match(FlinkSqlParser.KW_AFTER); this.state = 1608; - this.match(FlinkSqlParser.KW_PAST); + this.match(FlinkSqlParser.KW_MATCH); this.state = 1609; - this.match(FlinkSqlParser.KW_LAST); + this.match(FlinkSqlParser.KW_SKIP); this.state = 1610; + this.match(FlinkSqlParser.KW_PAST); + this.state = 1611; + this.match(FlinkSqlParser.KW_LAST); + this.state = 1612; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1611; - this.match(FlinkSqlParser.KW_AFTER); - this.state = 1612; - this.match(FlinkSqlParser.KW_MATCH); this.state = 1613; - this.match(FlinkSqlParser.KW_SKIP); + this.match(FlinkSqlParser.KW_AFTER); this.state = 1614; - this.match(FlinkSqlParser.KW_TO); + this.match(FlinkSqlParser.KW_MATCH); this.state = 1615; - this.match(FlinkSqlParser.KW_NEXT); + this.match(FlinkSqlParser.KW_SKIP); this.state = 1616; + this.match(FlinkSqlParser.KW_TO); + this.state = 1617; + this.match(FlinkSqlParser.KW_NEXT); + this.state = 1618; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1617; - this.match(FlinkSqlParser.KW_AFTER); - this.state = 1618; - this.match(FlinkSqlParser.KW_MATCH); this.state = 1619; - this.match(FlinkSqlParser.KW_SKIP); + this.match(FlinkSqlParser.KW_AFTER); this.state = 1620; - this.match(FlinkSqlParser.KW_TO); + this.match(FlinkSqlParser.KW_MATCH); this.state = 1621; - this.match(FlinkSqlParser.KW_LAST); + this.match(FlinkSqlParser.KW_SKIP); this.state = 1622; + this.match(FlinkSqlParser.KW_TO); + this.state = 1623; + this.match(FlinkSqlParser.KW_LAST); + this.state = 1624; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1623; - this.match(FlinkSqlParser.KW_AFTER); - this.state = 1624; - this.match(FlinkSqlParser.KW_MATCH); this.state = 1625; - this.match(FlinkSqlParser.KW_SKIP); + this.match(FlinkSqlParser.KW_AFTER); this.state = 1626; - this.match(FlinkSqlParser.KW_TO); + this.match(FlinkSqlParser.KW_MATCH); this.state = 1627; - this.match(FlinkSqlParser.KW_FIRST); + this.match(FlinkSqlParser.KW_SKIP); this.state = 1628; + this.match(FlinkSqlParser.KW_TO); + this.state = 1629; + this.match(FlinkSqlParser.KW_FIRST); + this.state = 1630; this.unquotedIdentifier(); } break; @@ -8137,23 +8372,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1631; + this.state = 1633; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1632; + this.state = 1634; this.projectItemDefinition(); - this.state = 1637; + this.state = 1639; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1633; + this.state = 1635; this.match(FlinkSqlParser.COMMA); - this.state = 1634; + this.state = 1636; this.projectItemDefinition(); } } - this.state = 1639; + this.state = 1641; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -8178,32 +8413,32 @@ export default class FlinkSqlParser extends Parser { let localctx: WindowFrameContext = new WindowFrameContext(this, this._ctx, this.state); this.enterRule(localctx, 254, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1649; + this.state = 1651; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 314: + case 317: this.enterOuterAlt(localctx, 1); { - this.state = 1640; - this.match(FlinkSqlParser.KW_RANGE); - this.state = 1641; - this.match(FlinkSqlParser.KW_BETWEEN); this.state = 1642; - this.timeIntervalExpression(); + this.match(FlinkSqlParser.KW_RANGE); this.state = 1643; + this.match(FlinkSqlParser.KW_BETWEEN); + this.state = 1644; + this.timeIntervalExpression(); + this.state = 1645; this.frameBound(); } break; - case 323: + case 326: this.enterOuterAlt(localctx, 2); { - this.state = 1645; - this.match(FlinkSqlParser.KW_ROWS); - this.state = 1646; - this.match(FlinkSqlParser.KW_BETWEEN); this.state = 1647; - this.match(FlinkSqlParser.DIG_LITERAL); + this.match(FlinkSqlParser.KW_ROWS); this.state = 1648; + this.match(FlinkSqlParser.KW_BETWEEN); + this.state = 1649; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1650; this.frameBound(); } break; @@ -8232,13 +8467,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1651; - this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1652; - this.match(FlinkSqlParser.KW_AND); this.state = 1653; - this.match(FlinkSqlParser.KW_CURRENT); + this.match(FlinkSqlParser.KW_PRECEDING); this.state = 1654; + this.match(FlinkSqlParser.KW_AND); + this.state = 1655; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 1656; this.match(FlinkSqlParser.KW_ROW); } } @@ -8263,9 +8498,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1656; + this.state = 1658; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1657; + this.state = 1659; this.timeIntervalExpression(); } } @@ -8290,7 +8525,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1659; + this.state = 1661; this.booleanExpression(0); } } @@ -8323,11 +8558,12 @@ export default class FlinkSqlParser extends Parser { let _prevctx: BooleanExpressionContext = localctx; let _startState: number = 262; this.enterRecursionRule(localctx, 262, FlinkSqlParser.RULE_booleanExpression, _p); + let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1673; + this.state = 1675; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 185, this._ctx) ) { case 1: @@ -8336,10 +8572,10 @@ export default class FlinkSqlParser extends Parser { this._ctx = localctx; _prevctx = localctx; - this.state = 1662; + this.state = 1664; this.match(FlinkSqlParser.KW_NOT); - this.state = 1663; - this.booleanExpression(5); + this.state = 1665; + this.booleanExpression(6); } break; case 2: @@ -8347,13 +8583,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ExistsContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1664; - this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1665; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1666; - this.queryStatement(0); + this.match(FlinkSqlParser.KW_EXISTS); this.state = 1667; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1668; + this.queryStatement(0); + this.state = 1669; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8362,14 +8598,14 @@ export default class FlinkSqlParser extends Parser { localctx = new PredicatedContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1669; - this.valueExpression(0); this.state = 1671; + this.valueExpression(0); + this.state = 1673; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 184, this._ctx) ) { case 1: { - this.state = 1670; + this.state = 1672; this.predicate(); } break; @@ -8378,9 +8614,9 @@ export default class FlinkSqlParser extends Parser { break; } this._ctx.stop = this._input.LT(-1); - this.state = 1683; + this.state = 1691; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 187, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 188, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -8388,22 +8624,22 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1681; + this.state = 1689; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 186, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 187, this._ctx) ) { case 1: { localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); (localctx as LogicalBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1675; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 1676; - (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); this.state = 1677; - (localctx as LogicalBinaryContext)._right = this.booleanExpression(3); + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 1678; + (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); + this.state = 1679; + (localctx as LogicalBinaryContext)._right = this.booleanExpression(4); } break; case 2: @@ -8411,22 +8647,54 @@ export default class FlinkSqlParser extends Parser { localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); (localctx as LogicalBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1678; + this.state = 1680; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 1681; + (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); + this.state = 1682; + (localctx as LogicalBinaryContext)._right = this.booleanExpression(3); + } + break; + case 3: + { + localctx = new LogicalNestedContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); + this.state = 1683; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1679; - (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1680; - (localctx as LogicalBinaryContext)._right = this.booleanExpression(2); + this.state = 1684; + this.match(FlinkSqlParser.KW_IS); + this.state = 1686; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===296) { + { + this.state = 1685; + this.match(FlinkSqlParser.KW_NOT); + } + } + + this.state = 1688; + (localctx as LogicalNestedContext)._kind = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===247 || _la===297 || _la===349 || _la===353)) { + (localctx as LogicalNestedContext)._kind = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } break; } } } - this.state = 1685; + this.state = 1693; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 187, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 188, this._ctx); } } } @@ -8450,39 +8718,16 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 264, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1769; + this.state = 1761; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 200, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 199, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1687; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la===294) { - { - this.state = 1686; - this.match(FlinkSqlParser.KW_NOT); - } - } - - this.state = 1689; - localctx._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1690; - localctx._lower = this.valueExpression(0); - this.state = 1691; - this.match(FlinkSqlParser.KW_AND); - this.state = 1692; - localctx._upper = this.valueExpression(0); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { this.state = 1695; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { this.state = 1694; this.match(FlinkSqlParser.KW_NOT); @@ -8490,208 +8735,152 @@ export default class FlinkSqlParser extends Parser { } this.state = 1697; - localctx._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1698; - this.match(FlinkSqlParser.LR_BRACKET); + localctx._kind = this.match(FlinkSqlParser.KW_BETWEEN); this.state = 1699; - this.expression(); - this.state = 1704; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + if (_la===184 || _la===338) { + { + this.state = 1698; + _la = this._input.LA(1); + if(!(_la===184 || _la===338)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 1701; + localctx._lower = this.valueExpression(0); + this.state = 1702; + this.match(FlinkSqlParser.KW_AND); + this.state = 1703; + localctx._upper = this.valueExpression(0); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1706; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===296) { + { + this.state = 1705; + this.match(FlinkSqlParser.KW_NOT); + } + } + + this.state = 1708; + localctx._kind = this.match(FlinkSqlParser.KW_IN); + this.state = 1709; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1710; + this.expression(); + this.state = 1715; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===385) { { { - this.state = 1700; + this.state = 1711; this.match(FlinkSqlParser.COMMA); - this.state = 1701; + this.state = 1712; this.expression(); } } - this.state = 1706; + this.state = 1717; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1707; + this.state = 1718; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1710; + this.state = 1721; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 1709; + this.state = 1720; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1712; + this.state = 1723; localctx._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1713; + this.state = 1724; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1714; + this.state = 1725; this.queryStatement(0); - this.state = 1715; + this.state = 1726; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1717; + this.state = 1728; localctx._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1718; + this.state = 1729; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1719; + this.state = 1730; this.queryStatement(0); - this.state = 1720; + this.state = 1731; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1723; + this.state = 1734; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 1722; + this.state = 1733; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1725; + this.state = 1736; localctx._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1726; + this.state = 1737; localctx._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1728; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la===294) { - { - this.state = 1727; - this.match(FlinkSqlParser.KW_NOT); - } - } - - this.state = 1730; - localctx._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1731; - localctx._quantifier = this._input.LT(1); - _la = this._input.LA(1); - if(!(_la===176 || _la===180)) { - localctx._quantifier = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 1745; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 195, this._ctx) ) { - case 1: - { - this.state = 1732; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1733; - this.match(FlinkSqlParser.RR_BRACKET); - } - break; - case 2: - { - this.state = 1734; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1735; - this.expression(); - this.state = 1740; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la===380) { - { - { - this.state = 1736; - this.match(FlinkSqlParser.COMMA); - this.state = 1737; - this.expression(); - } - } - this.state = 1742; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 1743; - this.match(FlinkSqlParser.RR_BRACKET); - } - break; - } + this.state = 1738; + this.likePredicate(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 1748; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la===294) { - { - this.state = 1747; - this.match(FlinkSqlParser.KW_NOT); - } - } - - this.state = 1750; - localctx._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1751; - localctx._pattern = this.valueExpression(0); - } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 1752; + this.state = 1739; this.match(FlinkSqlParser.KW_IS); - this.state = 1754; + this.state = 1741; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 1753; + this.state = 1740; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1756; - localctx._kind = this.match(FlinkSqlParser.KW_NULL); - } - break; - case 9: - this.enterOuterAlt(localctx, 9); - { - this.state = 1757; - this.match(FlinkSqlParser.KW_IS); - this.state = 1759; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la===294) { - { - this.state = 1758; - this.match(FlinkSqlParser.KW_NOT); - } - } - - this.state = 1761; + this.state = 1743; localctx._kind = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===245 || _la===344)) { + if(!(_la===247 || _la===297 || _la===349 || _la===353)) { localctx._kind = this._errHandler.recoverInline(this); } else { @@ -8700,29 +8889,62 @@ export default class FlinkSqlParser extends Parser { } } break; - case 10: - this.enterOuterAlt(localctx, 10); + case 8: + this.enterOuterAlt(localctx, 8); { - this.state = 1762; + this.state = 1744; this.match(FlinkSqlParser.KW_IS); - this.state = 1764; + this.state = 1746; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 1763; + this.state = 1745; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1766; + this.state = 1748; localctx._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1767; + this.state = 1749; this.match(FlinkSqlParser.KW_FROM); - this.state = 1768; + this.state = 1750; localctx._right = this.valueExpression(0); } break; + case 9: + this.enterOuterAlt(localctx, 9); + { + this.state = 1752; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===296) { + { + this.state = 1751; + this.match(FlinkSqlParser.KW_NOT); + } + } + + this.state = 1754; + localctx._kind = this.match(FlinkSqlParser.KW_SIMILAR); + this.state = 1755; + this.match(FlinkSqlParser.KW_TO); + this.state = 1756; + localctx._right = this.valueExpression(0); + this.state = 1759; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 198, this._ctx) ) { + case 1: + { + this.state = 1757; + this.match(FlinkSqlParser.KW_ESCAPE); + this.state = 1758; + this.stringLiteral(); + } + break; + } + } + break; } } catch (re) { @@ -8745,25 +8967,25 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 266, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1796; + this.state = 1792; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 205, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1772; + this.state = 1764; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 1771; + this.state = 1763; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1774; + this.state = 1766; localctx._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1775; + this.state = 1767; localctx._quantifier = this._input.LT(1); _la = this._input.LA(1); if(!(_la===176 || _la===180)) { @@ -8773,40 +8995,40 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1789; + this.state = 1781; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 203, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 202, this._ctx) ) { case 1: { - this.state = 1776; + this.state = 1768; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1777; + this.state = 1769; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1778; + this.state = 1770; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1779; + this.state = 1771; this.expression(); - this.state = 1784; + this.state = 1776; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 1780; + this.state = 1772; this.match(FlinkSqlParser.COMMA); - this.state = 1781; + this.state = 1773; this.expression(); } } - this.state = 1786; + this.state = 1778; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1787; + this.state = 1779; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8816,20 +9038,32 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1792; + this.state = 1784; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 1791; + this.state = 1783; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1794; + this.state = 1786; localctx._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1795; + this.state = 1787; localctx._pattern = this.valueExpression(0); + this.state = 1790; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 204, this._ctx) ) { + case 1: + { + this.state = 1788; + this.match(FlinkSqlParser.KW_ESCAPE); + this.state = 1789; + this.stringLiteral(); + } + break; + } } break; } @@ -8868,7 +9102,7 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1802; + this.state = 1798; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 206, this._ctx) ) { case 1: @@ -8877,7 +9111,7 @@ export default class FlinkSqlParser extends Parser { this._ctx = localctx; _prevctx = localctx; - this.state = 1799; + this.state = 1795; this.primaryExpression(0); } break; @@ -8886,23 +9120,23 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticUnaryContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1800; + this.state = 1796; (localctx as ArithmeticUnaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 369)) & ~0x1F) === 0 && ((1 << (_la - 369)) & 3145729) !== 0))) { + if(!(((((_la - 374)) & ~0x1F) === 0 && ((1 << (_la - 374)) & 3145729) !== 0))) { (localctx as ArithmeticUnaryContext)._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1801; + this.state = 1797; this.valueExpression(7); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1825; + this.state = 1821; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { @@ -8912,7 +9146,7 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1823; + this.state = 1819; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 207, this._ctx) ) { case 1: @@ -8920,21 +9154,21 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1804; + this.state = 1800; if (!(this.precpred(this._ctx, 6))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 6)"); } - this.state = 1805; + this.state = 1801; (localctx as ArithmeticBinaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===32 || ((((_la - 387)) & ~0x1F) === 0 && ((1 << (_la - 387)) & 145) !== 0))) { + if(!(_la===32 || ((((_la - 392)) & ~0x1F) === 0 && ((1 << (_la - 392)) & 145) !== 0))) { (localctx as ArithmeticBinaryContext)._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1806; + this.state = 1802; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8943,21 +9177,21 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1807; + this.state = 1803; if (!(this.precpred(this._ctx, 5))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); } - this.state = 1808; + this.state = 1804; (localctx as ArithmeticBinaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 11) !== 0))) { + if(!(((((_la - 394)) & ~0x1F) === 0 && ((1 << (_la - 394)) & 11) !== 0))) { (localctx as ArithmeticBinaryContext)._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1809; + this.state = 1805; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8966,13 +9200,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1810; + this.state = 1806; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1811; + this.state = 1807; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1812; + this.state = 1808; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8981,13 +9215,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1813; + this.state = 1809; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1814; + this.state = 1810; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1815; + this.state = 1811; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8996,13 +9230,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1816; + this.state = 1812; if (!(this.precpred(this._ctx, 2))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - this.state = 1817; + this.state = 1813; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1818; + this.state = 1814; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9011,20 +9245,20 @@ export default class FlinkSqlParser extends Parser { localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ComparisonContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1819; + this.state = 1815; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1820; + this.state = 1816; this.comparisonOperator(); - this.state = 1821; + this.state = 1817; (localctx as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1827; + this.state = 1823; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); } @@ -9064,7 +9298,7 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1919; + this.state = 1915; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 218, this._ctx) ) { case 1: @@ -9073,35 +9307,35 @@ export default class FlinkSqlParser extends Parser { this._ctx = localctx; _prevctx = localctx; - this.state = 1829; + this.state = 1825; this.match(FlinkSqlParser.KW_CASE); - this.state = 1831; + this.state = 1827; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1830; + this.state = 1826; this.whenClause(); } } - this.state = 1833; + this.state = 1829; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===358); - this.state = 1837; + } while (_la===363); + this.state = 1833; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===236) { + if (_la===237) { { - this.state = 1835; + this.state = 1831; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1836; + this.state = 1832; (localctx as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1839; + this.state = 1835; this.match(FlinkSqlParser.KW_END); } break; @@ -9110,37 +9344,37 @@ export default class FlinkSqlParser extends Parser { localctx = new SimpleCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1841; + this.state = 1837; this.match(FlinkSqlParser.KW_CASE); - this.state = 1842; + this.state = 1838; (localctx as SimpleCaseContext)._value = this.expression(); - this.state = 1844; + this.state = 1840; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1843; + this.state = 1839; this.whenClause(); } } - this.state = 1846; + this.state = 1842; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===358); - this.state = 1850; + } while (_la===363); + this.state = 1846; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===236) { + if (_la===237) { { - this.state = 1848; + this.state = 1844; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1849; + this.state = 1845; (localctx as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1852; + this.state = 1848; this.match(FlinkSqlParser.KW_END); } break; @@ -9149,17 +9383,17 @@ export default class FlinkSqlParser extends Parser { localctx = new CastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1854; + this.state = 1850; this.match(FlinkSqlParser.KW_CAST); - this.state = 1855; + this.state = 1851; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1856; + this.state = 1852; this.expression(); - this.state = 1857; + this.state = 1853; this.match(FlinkSqlParser.KW_AS); - this.state = 1858; + this.state = 1854; this.columnType(); - this.state = 1859; + this.state = 1855; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9168,25 +9402,25 @@ export default class FlinkSqlParser extends Parser { localctx = new FirstContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1861; + this.state = 1857; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1862; + this.state = 1858; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1863; + this.state = 1859; this.expression(); - this.state = 1866; + this.state = 1862; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===59) { { - this.state = 1864; + this.state = 1860; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1865; + this.state = 1861; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1868; + this.state = 1864; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9195,25 +9429,25 @@ export default class FlinkSqlParser extends Parser { localctx = new LastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1870; + this.state = 1866; this.match(FlinkSqlParser.KW_LAST); - this.state = 1871; + this.state = 1867; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1872; + this.state = 1868; this.expression(); - this.state = 1875; + this.state = 1871; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===59) { { - this.state = 1873; + this.state = 1869; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1874; + this.state = 1870; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1877; + this.state = 1873; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9222,17 +9456,17 @@ export default class FlinkSqlParser extends Parser { localctx = new PositionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1879; + this.state = 1875; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1880; + this.state = 1876; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1881; + this.state = 1877; (localctx as PositionContext)._substr = this.valueExpression(0); - this.state = 1882; + this.state = 1878; this.match(FlinkSqlParser.KW_IN); - this.state = 1883; + this.state = 1879; (localctx as PositionContext)._str = this.valueExpression(0); - this.state = 1884; + this.state = 1880; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9241,7 +9475,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ConstantDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1886; + this.state = 1882; this.constant(); } break; @@ -9250,7 +9484,7 @@ export default class FlinkSqlParser extends Parser { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1887; + this.state = 1883; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9259,11 +9493,11 @@ export default class FlinkSqlParser extends Parser { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1888; + this.state = 1884; this.uid(); - this.state = 1889; + this.state = 1885; this.match(FlinkSqlParser.DOT); - this.state = 1890; + this.state = 1886; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9272,11 +9506,11 @@ export default class FlinkSqlParser extends Parser { localctx = new SubqueryExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1892; + this.state = 1888; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1893; + this.state = 1889; this.queryStatement(0); - this.state = 1894; + this.state = 1890; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9285,47 +9519,47 @@ export default class FlinkSqlParser extends Parser { localctx = new FunctionCallContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1896; + this.state = 1892; this.functionName(); - this.state = 1897; + this.state = 1893; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1909; + this.state = 1905; this._errHandler.sync(this); _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967295) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 16916479) !== 0) || ((((_la - 387)) & ~0x1F) === 0 && ((1 << (_la - 387)) & 31757) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 71434239) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 16909575) !== 0) || ((((_la - 233)) & ~0x1F) === 0 && ((1 << (_la - 233)) & 75514881) !== 0) || ((((_la - 269)) & ~0x1F) === 0 && ((1 << (_la - 269)) & 405012753) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 805840065) !== 0) || ((((_la - 345)) & ~0x1F) === 0 && ((1 << (_la - 345)) & 553649203) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 65038337) !== 0)) { { - this.state = 1899; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 215, this._ctx) ) { - case 1: - { - this.state = 1898; - this.setQuantifier(); - } - break; - } - this.state = 1901; - this.expression(); - this.state = 1906; + this.state = 1895; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + if (_la===176 || _la===233) { + { + this.state = 1894; + this.setQuantifier(); + } + } + + this.state = 1897; + this.expression(); + this.state = 1902; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===385) { { { - this.state = 1902; + this.state = 1898; this.match(FlinkSqlParser.COMMA); - this.state = 1903; + this.state = 1899; this.expression(); } } - this.state = 1908; + this.state = 1904; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 1911; + this.state = 1907; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9334,7 +9568,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ColumnReferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1913; + this.state = 1909; this.identifier(); } break; @@ -9343,7 +9577,7 @@ export default class FlinkSqlParser extends Parser { localctx = new DereferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1914; + this.state = 1910; this.dereferenceDefinition(); } break; @@ -9352,17 +9586,17 @@ export default class FlinkSqlParser extends Parser { localctx = new ParenthesizedExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1915; + this.state = 1911; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1916; + this.state = 1912; this.expression(); - this.state = 1917; + this.state = 1913; this.match(FlinkSqlParser.RR_BRACKET); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1928; + this.state = 1924; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 219, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { @@ -9376,20 +9610,20 @@ export default class FlinkSqlParser extends Parser { localctx = new SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); (localctx as SubscriptContext)._value = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1921; + this.state = 1917; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1922; + this.state = 1918; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1923; + this.state = 1919; (localctx as SubscriptContext)._index = this.valueExpression(0); - this.state = 1924; + this.state = 1920; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1930; + this.state = 1926; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 219, this._ctx); } @@ -9414,27 +9648,27 @@ export default class FlinkSqlParser extends Parser { let localctx: FunctionNameContext = new FunctionNameContext(this, this._ctx, this.state); this.enterRule(localctx, 272, FlinkSqlParser.RULE_functionName); try { - this.state = 1934; + this.state = 1930; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 220, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1931; - this.reservedKeywords(); + this.state = 1927; + this.reservedKeywordsUsedAsFunctionName(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1932; + this.state = 1928; this.nonReservedKeywords(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1933; + this.state = 1929; this.uid(); } break; @@ -9461,7 +9695,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1936; + this.state = 1932; this.uid(); } } @@ -9486,7 +9720,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1938; + this.state = 1934; this.identifier(); } } @@ -9509,20 +9743,20 @@ export default class FlinkSqlParser extends Parser { let localctx: QualifiedNameContext = new QualifiedNameContext(this, this._ctx, this.state); this.enterRule(localctx, 278, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 1942; + this.state = 1938; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 221, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1940; + this.state = 1936; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1941; + this.state = 1937; this.dereferenceDefinition(); } break; @@ -9549,20 +9783,20 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1944; + this.state = 1940; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 1947; + this.state = 1943; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 222, this._ctx) ) { case 1: { - this.state = 1945; + this.state = 1941; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 1946; + this.state = 1942; this.errorCapturingUnitToUnitInterval(); } break; @@ -9590,14 +9824,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1949; + this.state = 1945; this.multiUnitsInterval(); - this.state = 1951; + this.state = 1947; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 223, this._ctx) ) { case 1: { - this.state = 1950; + this.state = 1946; this.unitToUnitInterval(); } break; @@ -9626,7 +9860,7 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1956; + this.state = 1952; this._errHandler.sync(this); _alt = 1; do { @@ -9634,9 +9868,9 @@ export default class FlinkSqlParser extends Parser { case 1: { { - this.state = 1953; + this.state = 1949; this.intervalValue(); - this.state = 1954; + this.state = 1950; this.intervalTimeUnit(); } } @@ -9644,7 +9878,7 @@ export default class FlinkSqlParser extends Parser { default: throw new NoViableAltException(this); } - this.state = 1958; + this.state = 1954; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 224, this._ctx); } while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER); @@ -9671,20 +9905,20 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1960; + this.state = 1956; localctx._body = this.unitToUnitInterval(); - this.state = 1963; + this.state = 1959; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 225, this._ctx) ) { case 1: { - this.state = 1961; + this.state = 1957; localctx._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 1962; + this.state = 1958; localctx._error2 = this.unitToUnitInterval(); } break; @@ -9712,13 +9946,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1965; + this.state = 1961; localctx._value = this.intervalValue(); - this.state = 1966; + this.state = 1962; localctx._from_ = this.intervalTimeUnit(); - this.state = 1967; + this.state = 1963; this.match(FlinkSqlParser.KW_TO); - this.state = 1968; + this.state = 1964; localctx._to = this.intervalTimeUnit(); } } @@ -9742,23 +9976,23 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 290, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 1975; + this.state = 1971; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 389: - case 390: - case 398: - case 399: + case 394: + case 395: + case 403: + case 404: this.enterOuterAlt(localctx, 1); { - this.state = 1971; + this.state = 1967; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===389 || _la===390) { + if (_la===394 || _la===395) { { - this.state = 1970; + this.state = 1966; _la = this._input.LA(1); - if(!(_la===389 || _la===390)) { + if(!(_la===394 || _la===395)) { this._errHandler.recoverInline(this); } else { @@ -9768,9 +10002,9 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1973; + this.state = 1969; _la = this._input.LA(1); - if(!(_la===398 || _la===399)) { + if(!(_la===403 || _la===404)) { this._errHandler.recoverInline(this); } else { @@ -9779,10 +10013,10 @@ export default class FlinkSqlParser extends Parser { } } break; - case 397: + case 402: this.enterOuterAlt(localctx, 2); { - this.state = 1974; + this.state = 1970; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -9809,7 +10043,7 @@ export default class FlinkSqlParser extends Parser { let localctx: IntervalTimeUnitContext = new IntervalTimeUnitContext(this, this._ctx, this.state); this.enterRule(localctx, 292, FlinkSqlParser.RULE_intervalTimeUnit); try { - this.state = 1979; + this.state = 1975; this._errHandler.sync(this); switch (this._input.LA(1)) { case 4: @@ -9983,12 +10217,12 @@ export default class FlinkSqlParser extends Parser { case 172: case 173: case 174: - case 397: - case 398: - case 401: + case 402: + case 403: + case 406: this.enterOuterAlt(localctx, 1); { - this.state = 1977; + this.state = 1973; this.identifier(); } break; @@ -10057,7 +10291,6 @@ export default class FlinkSqlParser extends Parser { case 237: case 238: case 239: - case 240: case 241: case 242: case 243: @@ -10132,7 +10365,6 @@ export default class FlinkSqlParser extends Parser { case 312: case 313: case 314: - case 315: case 316: case 317: case 318: @@ -10155,7 +10387,6 @@ export default class FlinkSqlParser extends Parser { case 335: case 336: case 337: - case 338: case 339: case 340: case 341: @@ -10182,9 +10413,14 @@ export default class FlinkSqlParser extends Parser { case 362: case 363: case 364: + case 365: + case 366: + case 367: + case 368: + case 369: this.enterOuterAlt(localctx, 2); { - this.state = 1978; + this.state = 1974; this.reservedKeywords(); } break; @@ -10214,24 +10450,24 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1982; + this.state = 1978; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 1981; + this.state = 1977; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1984; + this.state = 1980; this.identifier(); - this.state = 1986; + this.state = 1982; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===376) { + if (_la===381) { { - this.state = 1985; + this.state = 1981; this.identifierList(); } } @@ -10260,24 +10496,24 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1989; + this.state = 1985; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===183) { { - this.state = 1988; + this.state = 1984; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1991; + this.state = 1987; this.identifier(); - this.state = 1993; + this.state = 1989; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 232, this._ctx) ) { case 1: { - this.state = 1992; + this.state = 1988; this.identifierList(); } break; @@ -10305,9 +10541,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1995; + this.state = 1991; this.identifier(); - this.state = 1996; + this.state = 1992; this.errorCapturingIdentifierExtra(); } } @@ -10331,33 +10567,33 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 300, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2005; + this.state = 2001; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 284: + case 286: localctx = new ErrorIdentContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 2000; + this.state = 1996; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1998; + this.state = 1994; this.match(FlinkSqlParser.KW_MINUS); - this.state = 1999; + this.state = 1995; this.identifier(); } } - this.state = 2002; + this.state = 1998; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===284); + } while (_la===286); } break; case 183: - case 376: + case 381: localctx = new RealIdentContext(this, localctx); this.enterOuterAlt(localctx, 2); // tslint:disable-next-line:no-empty @@ -10389,11 +10625,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2007; + this.state = 2003; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2008; + this.state = 2004; this.identifierSeq(); - this.state = 2009; + this.state = 2005; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10419,21 +10655,21 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2011; + this.state = 2007; this.identifier(); - this.state = 2016; + this.state = 2012; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 2012; + this.state = 2008; this.match(FlinkSqlParser.COMMA); - this.state = 2013; + this.state = 2009; this.identifier(); } } - this.state = 2018; + this.state = 2014; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -10458,23 +10694,23 @@ export default class FlinkSqlParser extends Parser { let localctx: IdentifierContext = new IdentifierContext(this, this._ctx, this.state); this.enterRule(localctx, 306, FlinkSqlParser.RULE_identifier); try { - this.state = 2022; + this.state = 2018; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 398: - case 401: + case 403: + case 406: localctx = new UnquotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 2019; + this.state = 2015; this.unquotedIdentifier(); } break; - case 397: + case 402: localctx = new QuotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 2); { - this.state = 2020; + this.state = 2016; this.quotedIdentifier(); } break; @@ -10652,7 +10888,7 @@ export default class FlinkSqlParser extends Parser { localctx = new NonReservedKeywordsAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 3); { - this.state = 2021; + this.state = 2017; this.nonReservedKeywords(); } break; @@ -10682,9 +10918,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2024; + this.state = 2020; _la = this._input.LA(1); - if(!(_la===398 || _la===401)) { + if(!(_la===403 || _la===406)) { this._errHandler.recoverInline(this); } else { @@ -10714,7 +10950,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2026; + this.state = 2022; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10739,13 +10975,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2028; + this.state = 2024; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2029; + this.state = 2025; localctx._condition = this.expression(); - this.state = 2030; + this.state = 2026; this.match(FlinkSqlParser.KW_THEN); - this.state = 2031; + this.state = 2027; localctx._result = this.expression(); } } @@ -10771,23 +11007,23 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 2033; + this.state = 2029; this.identifier(); - this.state = 2038; + this.state = 2034; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 237, this._ctx); while (_alt !== 1 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1 + 1) { { { - this.state = 2034; + this.state = 2030; this.match(FlinkSqlParser.DOT); - this.state = 2035; + this.state = 2031; this.identifier(); } } } - this.state = 2040; + this.state = 2036; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 237, this._ctx); } @@ -10814,9 +11050,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2041; + this.state = 2037; this.match(FlinkSqlParser.KW_WITH); - this.state = 2042; + this.state = 2038; this.tablePropertyList(); } } @@ -10841,11 +11077,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2044; + this.state = 2040; this.match(FlinkSqlParser.KW_IF); - this.state = 2045; + this.state = 2041; this.match(FlinkSqlParser.KW_NOT); - this.state = 2046; + this.state = 2042; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10870,9 +11106,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2048; + this.state = 2044; this.match(FlinkSqlParser.KW_IF); - this.state = 2049; + this.state = 2045; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10898,27 +11134,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2051; + this.state = 2047; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2052; + this.state = 2048; this.tableProperty(); - this.state = 2057; + this.state = 2053; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===380) { + while (_la===385) { { { - this.state = 2053; + this.state = 2049; this.match(FlinkSqlParser.COMMA); - this.state = 2054; + this.state = 2050; this.tableProperty(); } } - this.state = 2059; + this.state = 2055; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 2060; + this.state = 2056; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10944,24 +11180,24 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2062; + this.state = 2058; localctx._key = this.tablePropertyKey(); - this.state = 2067; + this.state = 2063; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===245 || _la===344 || _la===365 || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 7) !== 0)) { + if (_la===247 || _la===349 || _la===370 || ((((_la - 402)) & ~0x1F) === 0 && ((1 << (_la - 402)) & 7) !== 0)) { { - this.state = 2064; + this.state = 2060; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===365) { + if (_la===370) { { - this.state = 2063; + this.state = 2059; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2066; + this.state = 2062; localctx._value = this.tablePropertyValue(); } } @@ -10987,27 +11223,27 @@ export default class FlinkSqlParser extends Parser { let localctx: TablePropertyKeyContext = new TablePropertyKeyContext(this, this._ctx, this.state); this.enterRule(localctx, 326, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2072; + this.state = 2068; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 241, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 2069; + this.state = 2065; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 2070; + this.state = 2066; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 2071; + this.state = 2067; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11032,35 +11268,35 @@ export default class FlinkSqlParser extends Parser { let localctx: TablePropertyValueContext = new TablePropertyValueContext(this, this._ctx, this.state); this.enterRule(localctx, 328, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2078; + this.state = 2074; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 398: + case 403: this.enterOuterAlt(localctx, 1); { - this.state = 2074; + this.state = 2070; this.match(FlinkSqlParser.DIG_LITERAL); } break; - case 399: + case 404: this.enterOuterAlt(localctx, 2); { - this.state = 2075; + this.state = 2071; this.match(FlinkSqlParser.REAL_LITERAL); } break; - case 245: - case 344: + case 247: + case 349: this.enterOuterAlt(localctx, 3); { - this.state = 2076; + this.state = 2072; this.booleanLiteral(); } break; - case 397: + case 402: this.enterOuterAlt(localctx, 4); { - this.state = 2077; + this.state = 2073; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11087,38 +11323,38 @@ export default class FlinkSqlParser extends Parser { let localctx: LogicalOperatorContext = new LogicalOperatorContext(this, this._ctx, this.state); this.enterRule(localctx, 330, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2086; + this.state = 2082; this._errHandler.sync(this); switch (this._input.LA(1)) { case 179: this.enterOuterAlt(localctx, 1); { - this.state = 2080; + this.state = 2076; this.match(FlinkSqlParser.KW_AND); } break; - case 371: + case 376: this.enterOuterAlt(localctx, 2); { - this.state = 2081; + this.state = 2077; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2082; + this.state = 2078; this.match(FlinkSqlParser.BIT_AND_OP); } break; - case 301: + case 303: this.enterOuterAlt(localctx, 3); { - this.state = 2083; + this.state = 2079; this.match(FlinkSqlParser.KW_OR); } break; - case 370: + case 375: this.enterOuterAlt(localctx, 4); { - this.state = 2084; + this.state = 2080; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2085; + this.state = 2081; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11145,74 +11381,74 @@ export default class FlinkSqlParser extends Parser { let localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this, this._ctx, this.state); this.enterRule(localctx, 332, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2102; + this.state = 2098; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 244, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 2088; + this.state = 2084; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 2089; + this.state = 2085; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 2090; + this.state = 2086; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 2091; + this.state = 2087; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2092; + this.state = 2088; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 2093; + this.state = 2089; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2094; + this.state = 2090; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 2095; + this.state = 2091; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2096; + this.state = 2092; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 2097; + this.state = 2093; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2098; + this.state = 2094; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 2099; + this.state = 2095; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2100; + this.state = 2096; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2101; + this.state = 2097; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11237,45 +11473,45 @@ export default class FlinkSqlParser extends Parser { let localctx: BitOperatorContext = new BitOperatorContext(this, this._ctx, this.state); this.enterRule(localctx, 334, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2111; + this.state = 2107; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 367: + case 372: this.enterOuterAlt(localctx, 1); { - this.state = 2104; + this.state = 2100; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2105; + this.state = 2101; this.match(FlinkSqlParser.LESS_SYMBOL); } break; - case 366: - this.enterOuterAlt(localctx, 2); - { - this.state = 2106; - this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2107; - this.match(FlinkSqlParser.GREATER_SYMBOL); - } - break; case 371: + this.enterOuterAlt(localctx, 2); + { + this.state = 2102; + this.match(FlinkSqlParser.GREATER_SYMBOL); + this.state = 2103; + this.match(FlinkSqlParser.GREATER_SYMBOL); + } + break; + case 376: this.enterOuterAlt(localctx, 3); { - this.state = 2108; + this.state = 2104; this.match(FlinkSqlParser.BIT_AND_OP); } break; - case 372: + case 377: this.enterOuterAlt(localctx, 4); { - this.state = 2109; + this.state = 2105; this.match(FlinkSqlParser.BIT_XOR_OP); } break; - case 370: + case 375: this.enterOuterAlt(localctx, 5); { - this.state = 2110; + this.state = 2106; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11305,9 +11541,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2113; + this.state = 2109; _la = this._input.LA(1); - if(!(_la===32 || ((((_la - 387)) & ~0x1F) === 0 && ((1 << (_la - 387)) & 221) !== 0))) { + if(!(_la===32 || ((((_la - 392)) & ~0x1F) === 0 && ((1 << (_la - 392)) & 221) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -11338,9 +11574,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2115; + this.state = 2111; _la = this._input.LA(1); - if(!(_la===294 || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 6291459) !== 0))) { + if(!(_la===296 || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 6291459) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -11369,76 +11605,76 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 340, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2129; + this.state = 2125; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 397: + case 402: this.enterOuterAlt(localctx, 1); { - this.state = 2117; + this.state = 2113; this.stringLiteral(); } break; - case 398: + case 403: this.enterOuterAlt(localctx, 2); { - this.state = 2118; + this.state = 2114; this.decimalLiteral(); } break; - case 267: + case 269: this.enterOuterAlt(localctx, 3); { - this.state = 2119; + this.state = 2115; this.timeIntervalExpression(); } break; - case 389: + case 394: this.enterOuterAlt(localctx, 4); { - this.state = 2120; + this.state = 2116; this.match(FlinkSqlParser.HYPNEN_SIGN); - this.state = 2121; + this.state = 2117; this.decimalLiteral(); } break; - case 245: - case 344: + case 247: + case 349: this.enterOuterAlt(localctx, 5); { - this.state = 2122; + this.state = 2118; this.booleanLiteral(); } break; - case 399: + case 404: this.enterOuterAlt(localctx, 6); { - this.state = 2123; + this.state = 2119; this.match(FlinkSqlParser.REAL_LITERAL); } break; - case 400: + case 405: this.enterOuterAlt(localctx, 7); { - this.state = 2124; + this.state = 2120; this.match(FlinkSqlParser.BIT_STRING); } break; - case 294: - case 295: + case 296: + case 297: this.enterOuterAlt(localctx, 8); { - this.state = 2126; + this.state = 2122; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===296) { { - this.state = 2125; + this.state = 2121; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2128; + this.state = 2124; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11467,7 +11703,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2131; + this.state = 2127; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11492,7 +11728,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2133; + this.state = 2129; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11518,9 +11754,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2135; + this.state = 2131; _la = this._input.LA(1); - if(!(_la===245 || _la===344)) { + if(!(_la===247 || _la===349)) { this._errHandler.recoverInline(this); } else { @@ -11551,9 +11787,42 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2137; + this.state = 2133; _la = this._input.LA(1); - if(!(_la===176 || _la===232)) { + if(!(_la===176 || _la===233)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localctx; + } + // @RuleVersion(0) + public reservedKeywordsUsedAsFunctionName(): ReservedKeywordsUsedAsFunctionNameContext { + let localctx: ReservedKeywordsUsedAsFunctionNameContext = new ReservedKeywordsUsedAsFunctionNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 350, FlinkSqlParser.RULE_reservedKeywordsUsedAsFunctionName); + let _la: number; + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 2135; + _la = this._input.LA(1); + if(!(_la===58 || _la===76 || _la===113 || ((((_la - 170)) & ~0x1F) === 0 && ((1 << (_la - 170)) & 3221295137) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 66053) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 2149711881) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 2466512897) !== 0) || ((((_la - 327)) & ~0x1F) === 0 && ((1 << (_la - 327)) & 277612033) !== 0) || _la===369)) { this._errHandler.recoverInline(this); } else { @@ -11579,14 +11848,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public reservedKeywords(): ReservedKeywordsContext { let localctx: ReservedKeywordsContext = new ReservedKeywordsContext(this, this._ctx, this.state); - this.enterRule(localctx, 350, FlinkSqlParser.RULE_reservedKeywords); + this.enterRule(localctx, 352, FlinkSqlParser.RULE_reservedKeywords); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2139; + this.state = 2137; _la = this._input.LA(1); - if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 4294967295) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 4294967295) !== 0) || ((((_la - 239)) & ~0x1F) === 0 && ((1 << (_la - 239)) & 4294967295) !== 0) || ((((_la - 271)) & ~0x1F) === 0 && ((1 << (_la - 271)) & 4294967295) !== 0) || ((((_la - 303)) & ~0x1F) === 0 && ((1 << (_la - 303)) & 4294967295) !== 0) || ((((_la - 335)) & ~0x1F) === 0 && ((1 << (_la - 335)) & 1073741823) !== 0))) { + if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 4294967295) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 4294967295) !== 0) || ((((_la - 239)) & ~0x1F) === 0 && ((1 << (_la - 239)) & 4294967293) !== 0) || ((((_la - 271)) & ~0x1F) === 0 && ((1 << (_la - 271)) & 4294967295) !== 0) || ((((_la - 303)) & ~0x1F) === 0 && ((1 << (_la - 303)) & 4294963199) !== 0) || ((((_la - 335)) & ~0x1F) === 0 && ((1 << (_la - 335)) & 4294967287) !== 0) || ((((_la - 367)) & ~0x1F) === 0 && ((1 << (_la - 367)) & 7) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -11612,12 +11881,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public nonReservedKeywords(): NonReservedKeywordsContext { let localctx: NonReservedKeywordsContext = new NonReservedKeywordsContext(this, this._ctx, this.state); - this.enterRule(localctx, 352, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localctx, 354, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2141; + this.state = 2139; _la = this._input.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 32767) !== 0))) { this._errHandler.recoverInline(this); @@ -11677,38 +11946,40 @@ export default class FlinkSqlParser extends Parser { private booleanExpression_sempred(localctx: BooleanExpressionContext, predIndex: number): boolean { switch (predIndex) { case 3: - return this.precpred(this._ctx, 2); + return this.precpred(this._ctx, 3); case 4: + return this.precpred(this._ctx, 2); + case 5: return this.precpred(this._ctx, 1); } return true; } private valueExpression_sempred(localctx: ValueExpressionContext, predIndex: number): boolean { switch (predIndex) { - case 5: - return this.precpred(this._ctx, 6); case 6: - return this.precpred(this._ctx, 5); + return this.precpred(this._ctx, 6); case 7: - return this.precpred(this._ctx, 4); + return this.precpred(this._ctx, 5); case 8: - return this.precpred(this._ctx, 3); + return this.precpred(this._ctx, 4); case 9: - return this.precpred(this._ctx, 2); + return this.precpred(this._ctx, 3); case 10: + return this.precpred(this._ctx, 2); + case 11: return this.precpred(this._ctx, 1); } return true; } private primaryExpression_sempred(localctx: PrimaryExpressionContext, predIndex: number): boolean { switch (predIndex) { - case 11: + case 12: return this.precpred(this._ctx, 4); } return true; } - public static readonly _serializedATN: number[] = [4,1,402,2144,2,0,7,0, + public static readonly _serializedATN: number[] = [4,1,407,2142,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, @@ -11735,787 +12006,790 @@ export default class FlinkSqlParser extends Parser { 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,1,0,1,0,1,0,1,1,1,1,1,1,1,2,1,2,3,2,363,8,2,1,2,5,2,366, - 8,2,10,2,12,2,369,9,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3, - 3,383,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,3,5,401,8,5,1,6,1,6,3,6,405,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,3,8,414,8, - 8,1,8,1,8,1,8,3,8,419,8,8,1,9,1,9,1,9,5,9,424,8,9,10,9,12,9,427,9,9,1,10, - 1,10,1,11,1,11,3,11,433,8,11,1,11,1,11,3,11,437,8,11,1,12,1,12,1,12,1,12, - 1,12,5,12,444,8,12,10,12,12,12,447,9,12,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,3,13,458,8,13,1,13,3,13,461,8,13,1,13,1,13,1,13,1,13,1,13, - 3,13,468,8,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,476,8,13,1,13,1,13,1,13, - 3,13,481,8,13,1,13,3,13,484,8,13,1,14,1,14,1,14,1,14,1,14,3,14,491,8,14, - 1,15,1,15,1,15,1,15,1,16,1,16,3,16,499,8,16,1,17,1,17,3,17,503,8,17,1,18, - 1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,3,19,515,8,19,1,19,1,19,1, - 19,1,19,1,19,1,19,3,19,523,8,19,1,19,1,19,3,19,527,8,19,1,19,1,19,1,19, + 7,175,2,176,7,176,2,177,7,177,1,0,1,0,1,0,1,1,1,1,1,1,1,2,1,2,3,2,365,8, + 2,1,2,5,2,368,8,2,10,2,12,2,371,9,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,3,3,385,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 1,5,1,5,1,5,1,5,3,5,403,8,5,1,6,1,6,3,6,407,8,6,1,7,1,7,1,7,1,8,1,8,1,8, + 1,8,3,8,416,8,8,1,8,1,8,1,8,3,8,421,8,8,1,9,1,9,1,9,5,9,426,8,9,10,9,12, + 9,429,9,9,1,10,1,10,1,11,1,11,3,11,435,8,11,1,11,1,11,3,11,439,8,11,1,12, + 1,12,1,12,1,12,1,12,5,12,446,8,12,10,12,12,12,449,9,12,1,13,1,13,1,13,1, + 13,1,13,1,13,1,13,1,13,1,13,3,13,460,8,13,1,13,3,13,463,8,13,1,13,1,13, + 1,13,1,13,1,13,3,13,470,8,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,478,8,13, + 1,13,1,13,1,13,3,13,483,8,13,1,13,3,13,486,8,13,1,14,1,14,1,14,1,14,1,14, + 3,14,493,8,14,1,15,1,15,1,15,1,15,1,16,1,16,3,16,501,8,16,1,17,1,17,3,17, + 505,8,17,1,18,1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,3,19,517,8,19, + 1,19,1,19,1,19,1,19,1,19,1,19,3,19,525,8,19,1,19,1,19,3,19,529,8,19,1,19, 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, - 19,1,19,3,19,548,8,19,1,20,1,20,3,20,552,8,20,1,21,1,21,3,21,556,8,21,1, - 21,1,21,3,21,560,8,21,1,21,1,21,1,21,1,21,1,21,5,21,567,8,21,10,21,12,21, - 570,9,21,1,21,1,21,3,21,574,8,21,1,21,1,21,3,21,578,8,21,1,21,1,21,3,21, - 582,8,21,1,21,1,21,3,21,586,8,21,1,21,3,21,589,8,21,1,21,1,21,3,21,593, - 8,21,1,22,1,22,1,22,3,22,598,8,22,1,22,1,22,1,22,1,22,3,22,604,8,22,1,23, - 1,23,1,23,3,23,609,8,23,1,24,1,24,1,24,3,24,614,8,24,1,24,3,24,617,8,24, - 1,25,1,25,3,25,621,8,25,1,26,1,26,1,26,1,26,5,26,627,8,26,10,26,12,26,630, - 9,26,1,26,1,26,1,27,1,27,1,27,3,27,637,8,27,1,27,1,27,3,27,641,8,27,1,27, - 1,27,3,27,645,8,27,1,27,1,27,3,27,649,8,27,1,27,1,27,3,27,653,8,27,1,27, - 1,27,3,27,657,8,27,1,27,1,27,3,27,661,8,27,1,27,1,27,3,27,665,8,27,1,27, - 1,27,3,27,669,8,27,3,27,671,8,27,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29, - 3,29,681,8,29,1,29,1,29,1,30,1,30,1,30,1,30,3,30,689,8,30,1,30,1,30,1,31, - 1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,1, - 33,1,33,1,33,5,33,711,8,33,10,33,12,33,714,9,33,1,33,1,33,1,34,1,34,3,34, - 720,8,34,1,34,1,34,1,34,1,34,3,34,726,8,34,1,34,3,34,729,8,34,1,34,3,34, - 732,8,34,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,3,36,742,8,36,1,36,3,36, - 745,8,36,1,37,1,37,1,38,1,38,1,38,1,38,3,38,753,8,38,1,39,1,39,1,40,1,40, - 1,40,1,40,1,40,1,40,1,41,1,41,3,41,765,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,787,8,45,10,45,12,45,790,9,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1, - 46,5,46,800,8,46,10,46,12,46,803,9,46,1,46,1,46,3,46,807,8,46,1,47,1,47, - 3,47,811,8,47,1,48,1,48,1,48,1,48,5,48,817,8,48,10,48,12,48,820,9,48,1, - 48,3,48,823,8,48,1,49,1,49,1,50,1,50,1,50,1,50,3,50,831,8,50,1,51,1,51, - 1,51,1,51,1,51,1,52,1,52,1,52,3,52,841,8,52,1,52,1,52,3,52,845,8,52,1,52, - 1,52,1,53,1,53,3,53,851,8,53,1,53,1,53,3,53,855,8,53,1,53,1,53,3,53,859, - 8,53,1,53,3,53,862,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,871,8,54, - 1,54,1,54,3,54,875,8,54,1,54,1,54,1,54,1,54,1,54,3,54,882,8,54,1,54,3,54, - 885,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,893,8,55,10,55,12,55,896,9, - 55,1,56,1,56,1,57,1,57,1,57,3,57,903,8,57,1,57,1,57,1,57,1,57,1,57,1,57, - 3,57,911,8,57,1,58,1,58,3,58,915,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,930,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,949,8,64, - 1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,960,8,66,1,66,1,66,3, - 66,964,8,66,1,66,1,66,1,66,1,66,1,66,3,66,971,8,66,1,67,1,67,1,67,3,67, - 976,8,67,1,67,1,67,1,68,1,68,3,68,982,8,68,1,68,1,68,3,68,986,8,68,1,68, - 1,68,1,69,1,69,1,69,3,69,993,8,69,1,69,1,69,3,69,997,8,69,1,70,1,70,3,70, - 1001,8,70,1,70,1,70,3,70,1005,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1013, - 8,71,1,71,1,71,3,71,1017,8,71,1,71,1,71,1,72,3,72,1022,8,72,1,72,1,72,1, - 72,1,72,3,72,1028,8,72,1,73,1,73,1,73,1,73,3,73,1034,8,73,1,73,3,73,1037, - 8,73,1,73,1,73,3,73,1041,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1050, - 8,75,10,75,12,75,1053,9,75,1,76,1,76,1,76,1,76,5,76,1059,8,76,10,76,12, - 76,1062,9,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1073,8,77, - 11,77,12,77,1074,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1085,8,78, - 11,78,12,78,1086,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,1102,8,79,1,79,3,79,1105,8,79,1,79,1,79,3,79,1109,8,79,1, - 79,3,79,1112,8,79,3,79,1114,8,79,1,79,1,79,1,79,3,79,1119,8,79,1,79,1,79, - 3,79,1123,8,79,1,79,3,79,1126,8,79,5,79,1128,8,79,10,79,12,79,1131,9,79, - 1,80,1,80,1,80,1,80,5,80,1137,8,80,10,80,12,80,1140,9,80,1,81,1,81,1,81, - 1,81,5,81,1146,8,81,10,81,12,81,1149,9,81,1,82,1,82,1,82,1,82,1,82,5,82, - 1156,8,82,10,82,12,82,1159,9,82,1,82,1,82,3,82,1163,8,82,1,82,1,82,1,82, - 1,82,1,82,1,83,1,83,1,84,1,84,1,84,3,84,1175,8,84,1,84,3,84,1178,8,84,1, - 84,3,84,1181,8,84,1,84,3,84,1184,8,84,1,84,1,84,1,84,1,84,3,84,1190,8,84, - 1,85,1,85,3,85,1194,8,85,1,85,1,85,1,85,1,85,5,85,1200,8,85,10,85,12,85, - 1203,9,85,3,85,1205,8,85,1,86,1,86,1,86,3,86,1210,8,86,1,86,3,86,1213,8, - 86,3,86,1215,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,1229,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1238,8,89,10, - 89,12,89,1241,9,89,1,89,1,89,3,89,1245,8,89,1,89,1,89,1,89,1,89,1,89,1, - 89,3,89,1253,8,89,1,89,3,89,1256,8,89,1,89,3,89,1259,8,89,1,89,1,89,1,89, - 3,89,1264,8,89,5,89,1266,8,89,10,89,12,89,1269,9,89,1,90,1,90,3,90,1273, - 8,90,1,91,3,91,1276,8,91,1,91,1,91,3,91,1280,8,91,1,91,3,91,1283,8,91,1, - 91,3,91,1286,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1296,8,91, - 10,91,12,91,1299,9,91,1,91,1,91,1,91,1,91,3,91,1305,8,91,1,91,1,91,1,91, - 1,91,1,91,1,91,1,91,1,91,1,91,3,91,1316,8,91,1,92,1,92,1,93,1,93,1,93,1, - 93,1,93,1,93,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96, - 1,97,1,97,1,97,1,97,1,97,5,97,1343,8,97,10,97,12,97,1346,9,97,1,97,1,97, - 1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1, - 99,1,99,1,99,3,99,1367,8,99,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1, - 102,1,102,1,102,1,102,1,102,1,102,1,102,5,102,1383,8,102,10,102,12,102, - 1386,9,102,1,102,1,102,3,102,1390,8,102,1,103,1,103,1,103,1,104,1,104,1, - 104,1,104,1,104,5,104,1400,8,104,10,104,12,104,1403,9,104,1,105,1,105,1, - 105,1,105,1,105,1,105,1,105,1,105,5,105,1413,8,105,10,105,12,105,1416,9, - 105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1425,8,105,10,105,12, - 105,1428,9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1437,8,105, - 10,105,12,105,1440,9,105,1,105,1,105,3,105,1444,8,105,1,106,1,106,1,106, - 1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,110, - 1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112,5,112,1469,8,112,10,112, - 12,112,1472,9,112,1,113,1,113,1,113,1,113,1,114,3,114,1479,8,114,1,114, - 1,114,3,114,1483,8,114,1,114,3,114,1486,8,114,1,114,3,114,1489,8,114,1, - 114,1,114,1,115,1,115,1,115,3,115,1496,8,115,1,115,3,115,1499,8,115,1,115, - 3,115,1502,8,115,1,115,3,115,1505,8,115,1,115,3,115,1508,8,115,1,115,3, - 115,1511,8,115,1,115,1,115,1,115,3,115,1516,8,115,1,115,3,115,1519,8,115, - 1,116,1,116,1,116,1,116,1,116,5,116,1526,8,116,10,116,12,116,1529,9,116, - 1,117,1,117,3,117,1533,8,117,1,117,1,117,3,117,1537,8,117,1,118,1,118,1, - 118,3,118,1542,8,118,1,119,1,119,1,119,1,119,1,119,5,119,1549,8,119,10, - 119,12,119,1552,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1, - 120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1570,8,120,1,121,1, - 121,1,121,1,121,5,121,1576,8,121,10,121,12,121,1579,9,121,1,122,1,122,1, - 122,4,122,1584,8,122,11,122,12,122,1585,1,122,1,122,3,122,1590,8,122,1, - 123,1,123,3,123,1594,8,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1, - 124,3,124,1604,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, + 19,1,19,1,19,1,19,3,19,550,8,19,1,20,1,20,3,20,554,8,20,1,21,1,21,3,21, + 558,8,21,1,21,1,21,3,21,562,8,21,1,21,1,21,1,21,1,21,1,21,5,21,569,8,21, + 10,21,12,21,572,9,21,1,21,1,21,3,21,576,8,21,1,21,1,21,3,21,580,8,21,1, + 21,1,21,3,21,584,8,21,1,21,1,21,3,21,588,8,21,1,21,3,21,591,8,21,1,21,1, + 21,3,21,595,8,21,1,22,1,22,1,22,3,22,600,8,22,1,22,1,22,1,22,1,22,3,22, + 606,8,22,1,23,1,23,1,23,3,23,611,8,23,1,24,1,24,1,24,3,24,616,8,24,1,24, + 3,24,619,8,24,1,25,1,25,3,25,623,8,25,1,26,1,26,1,26,1,26,5,26,629,8,26, + 10,26,12,26,632,9,26,1,26,1,26,1,27,1,27,1,27,3,27,639,8,27,1,27,1,27,3, + 27,643,8,27,1,27,1,27,3,27,647,8,27,1,27,1,27,3,27,651,8,27,1,27,1,27,3, + 27,655,8,27,1,27,1,27,3,27,659,8,27,1,27,1,27,3,27,663,8,27,1,27,1,27,3, + 27,667,8,27,1,27,1,27,3,27,671,8,27,3,27,673,8,27,1,28,1,28,1,28,1,28,1, + 29,1,29,1,29,1,29,3,29,683,8,29,1,29,1,29,1,30,1,30,1,30,1,30,3,30,691, + 8,30,1,30,1,30,1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1, + 33,1,33,1,33,1,33,1,33,1,33,1,33,5,33,713,8,33,10,33,12,33,716,9,33,1,33, + 1,33,1,34,1,34,3,34,722,8,34,1,34,1,34,1,34,1,34,3,34,728,8,34,1,34,3,34, + 731,8,34,1,34,3,34,734,8,34,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,3,36, + 744,8,36,1,36,3,36,747,8,36,1,37,1,37,1,38,1,38,1,38,1,38,3,38,755,8,38, + 1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3,41,767,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,789,8,45,10,45,12,45,792,9,45,1,45,1,45,1,46,1, + 46,1,46,1,46,1,46,1,46,5,46,802,8,46,10,46,12,46,805,9,46,1,46,1,46,3,46, + 809,8,46,1,47,1,47,3,47,813,8,47,1,48,1,48,1,48,1,48,5,48,819,8,48,10,48, + 12,48,822,9,48,1,48,3,48,825,8,48,1,49,1,49,1,50,1,50,1,50,1,50,3,50,833, + 8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,843,8,52,1,52,1,52,3, + 52,847,8,52,1,52,1,52,1,53,1,53,3,53,853,8,53,1,53,1,53,3,53,857,8,53,1, + 53,1,53,3,53,861,8,53,1,53,3,53,864,8,53,1,53,1,53,1,53,1,54,1,54,1,54, + 1,54,3,54,873,8,54,1,54,1,54,3,54,877,8,54,1,54,1,54,1,54,1,54,1,54,3,54, + 884,8,54,1,54,3,54,887,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,895,8,55, + 10,55,12,55,898,9,55,1,56,1,56,1,57,1,57,1,57,3,57,905,8,57,1,57,1,57,1, + 57,1,57,1,57,1,57,3,57,913,8,57,1,58,1,58,3,58,917,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,932,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,951,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,962, + 8,66,1,66,1,66,3,66,966,8,66,1,66,1,66,1,66,1,66,1,66,3,66,973,8,66,1,67, + 1,67,1,67,3,67,978,8,67,1,67,1,67,1,68,1,68,3,68,984,8,68,1,68,1,68,3,68, + 988,8,68,1,68,1,68,1,69,1,69,1,69,3,69,995,8,69,1,69,1,69,3,69,999,8,69, + 1,70,1,70,3,70,1003,8,70,1,70,1,70,3,70,1007,8,70,1,70,1,70,1,71,1,71,1, + 71,1,71,3,71,1015,8,71,1,71,1,71,3,71,1019,8,71,1,71,1,71,1,72,3,72,1024, + 8,72,1,72,1,72,1,72,1,72,3,72,1030,8,72,1,73,1,73,1,73,1,73,3,73,1036,8, + 73,1,73,3,73,1039,8,73,1,73,1,73,3,73,1043,8,73,1,74,1,74,1,74,1,75,1,75, + 1,75,1,75,5,75,1052,8,75,10,75,12,75,1055,9,75,1,76,1,76,1,76,1,76,5,76, + 1061,8,76,10,76,12,76,1064,9,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77, + 1,77,4,77,1075,8,77,11,77,12,77,1076,1,77,1,77,1,78,1,78,1,78,1,78,1,78, + 1,78,4,78,1087,8,78,11,78,12,78,1088,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,1104,8,79,1,79,3,79,1107,8,79,1,79,1, + 79,3,79,1111,8,79,1,79,3,79,1114,8,79,3,79,1116,8,79,1,79,1,79,1,79,3,79, + 1121,8,79,1,79,1,79,3,79,1125,8,79,1,79,3,79,1128,8,79,5,79,1130,8,79,10, + 79,12,79,1133,9,79,1,80,1,80,1,80,1,80,5,80,1139,8,80,10,80,12,80,1142, + 9,80,1,81,1,81,1,81,1,81,5,81,1148,8,81,10,81,12,81,1151,9,81,1,82,1,82, + 1,82,1,82,1,82,5,82,1158,8,82,10,82,12,82,1161,9,82,1,82,1,82,3,82,1165, + 8,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,84,1,84,1,84,3,84,1177,8,84,1, + 84,3,84,1180,8,84,1,84,3,84,1183,8,84,1,84,3,84,1186,8,84,1,84,1,84,1,84, + 1,84,3,84,1192,8,84,1,85,1,85,3,85,1196,8,85,1,85,1,85,1,85,1,85,5,85,1202, + 8,85,10,85,12,85,1205,9,85,3,85,1207,8,85,1,86,1,86,1,86,3,86,1212,8,86, + 1,86,3,86,1215,8,86,3,86,1217,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,1231,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89, + 5,89,1240,8,89,10,89,12,89,1243,9,89,1,89,1,89,3,89,1247,8,89,1,89,1,89, + 1,89,1,89,1,89,1,89,3,89,1255,8,89,1,89,3,89,1258,8,89,1,89,3,89,1261,8, + 89,1,89,1,89,1,89,3,89,1266,8,89,5,89,1268,8,89,10,89,12,89,1271,9,89,1, + 90,1,90,3,90,1275,8,90,1,91,3,91,1278,8,91,1,91,1,91,3,91,1282,8,91,1,91, + 3,91,1285,8,91,1,91,3,91,1288,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1, + 91,5,91,1298,8,91,10,91,12,91,1301,9,91,1,91,1,91,1,91,1,91,3,91,1307,8, + 91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,3,91,1318,8,91,1,92,1,92, + 1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1, + 96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,5,97,1345,8,97,10,97,12,97,1348, + 9,97,1,97,1,97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1, + 99,1,99,1,99,1,99,1,99,1,99,3,99,1369,8,99,1,100,1,100,1,101,1,101,1,101, + 1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,102,1,102,5,102,1385,8,102, + 10,102,12,102,1388,9,102,1,102,1,102,3,102,1392,8,102,1,103,1,103,1,103, + 1,104,1,104,1,104,1,104,1,104,5,104,1402,8,104,10,104,12,104,1405,9,104, + 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1415,8,105,10,105, + 12,105,1418,9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1427, + 8,105,10,105,12,105,1430,9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, + 5,105,1439,8,105,10,105,12,105,1442,9,105,1,105,1,105,3,105,1446,8,105, + 1,106,1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108, + 1,109,1,109,1,110,1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112,5,112, + 1471,8,112,10,112,12,112,1474,9,112,1,113,1,113,1,113,1,113,1,114,3,114, + 1481,8,114,1,114,1,114,3,114,1485,8,114,1,114,3,114,1488,8,114,1,114,3, + 114,1491,8,114,1,114,1,114,1,115,1,115,1,115,3,115,1498,8,115,1,115,3,115, + 1501,8,115,1,115,3,115,1504,8,115,1,115,3,115,1507,8,115,1,115,3,115,1510, + 8,115,1,115,3,115,1513,8,115,1,115,1,115,1,115,3,115,1518,8,115,1,115,3, + 115,1521,8,115,1,116,1,116,1,116,1,116,1,116,5,116,1528,8,116,10,116,12, + 116,1531,9,116,1,117,1,117,3,117,1535,8,117,1,117,1,117,3,117,1539,8,117, + 1,118,1,118,1,118,3,118,1544,8,118,1,119,1,119,1,119,1,119,1,119,5,119, + 1551,8,119,10,119,12,119,1554,9,119,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1572, + 8,120,1,121,1,121,1,121,1,121,5,121,1578,8,121,10,121,12,121,1581,9,121, + 1,122,1,122,1,122,4,122,1586,8,122,11,122,12,122,1587,1,122,1,122,3,122, + 1592,8,122,1,123,1,123,3,123,1596,8,123,1,124,1,124,1,124,1,124,1,124,1, + 124,1,124,1,124,3,124,1606,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1, 125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, - 125,1,125,1,125,1,125,3,125,1630,8,125,1,126,1,126,1,126,1,126,5,126,1636, - 8,126,10,126,12,126,1639,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,3,127,1650,8,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129, - 1,129,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,3,131,1672,8,131,3,131,1674,8,131,1,131,1,131,1,131,1,131,1,131,1, - 131,5,131,1682,8,131,10,131,12,131,1685,9,131,1,132,3,132,1688,8,132,1, - 132,1,132,1,132,1,132,1,132,1,132,3,132,1696,8,132,1,132,1,132,1,132,1, - 132,1,132,5,132,1703,8,132,10,132,12,132,1706,9,132,1,132,1,132,1,132,3, - 132,1711,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1, - 132,1,132,3,132,1724,8,132,1,132,1,132,1,132,3,132,1729,8,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,5,132,1739,8,132,10,132,12,132,1742, - 9,132,1,132,1,132,3,132,1746,8,132,1,132,3,132,1749,8,132,1,132,1,132,1, - 132,1,132,3,132,1755,8,132,1,132,1,132,1,132,3,132,1760,8,132,1,132,1,132, - 1,132,3,132,1765,8,132,1,132,1,132,1,132,3,132,1770,8,132,1,133,3,133,1773, - 8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1783,8,133, - 10,133,12,133,1786,9,133,1,133,1,133,3,133,1790,8,133,1,133,3,133,1793, - 8,133,1,133,1,133,3,133,1797,8,133,1,134,1,134,1,134,1,134,3,134,1803,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,5,134,1824,8,134,10,134,12, - 134,1827,9,134,1,135,1,135,1,135,4,135,1832,8,135,11,135,12,135,1833,1, - 135,1,135,3,135,1838,8,135,1,135,1,135,1,135,1,135,1,135,4,135,1845,8,135, - 11,135,12,135,1846,1,135,1,135,3,135,1851,8,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1867, - 8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1876,8,135,1,135, + 125,1,125,1,125,1,125,1,125,1,125,3,125,1632,8,125,1,126,1,126,1,126,1, + 126,5,126,1638,8,126,10,126,12,126,1641,9,126,1,127,1,127,1,127,1,127,1, + 127,1,127,1,127,1,127,1,127,3,127,1652,8,127,1,128,1,128,1,128,1,128,1, + 128,1,129,1,129,1,129,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1, + 131,1,131,1,131,1,131,3,131,1674,8,131,3,131,1676,8,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,3,131,1687,8,131,1,131,5,131,1690,8, + 131,10,131,12,131,1693,9,131,1,132,3,132,1696,8,132,1,132,1,132,3,132,1700, + 8,132,1,132,1,132,1,132,1,132,1,132,3,132,1707,8,132,1,132,1,132,1,132, + 1,132,1,132,5,132,1714,8,132,10,132,12,132,1717,9,132,1,132,1,132,1,132, + 3,132,1722,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,1735,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1742,8, + 132,1,132,1,132,1,132,3,132,1747,8,132,1,132,1,132,1,132,1,132,3,132,1753, + 8,132,1,132,1,132,1,132,1,132,1,132,3,132,1760,8,132,3,132,1762,8,132,1, + 133,3,133,1765,8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,5, + 133,1775,8,133,10,133,12,133,1778,9,133,1,133,1,133,3,133,1782,8,133,1, + 133,3,133,1785,8,133,1,133,1,133,1,133,1,133,3,133,1791,8,133,3,133,1793, + 8,133,1,134,1,134,1,134,1,134,3,134,1799,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,5,134,1820,8,134,10,134,12,134,1823,9,134,1,135,1,135, + 1,135,4,135,1828,8,135,11,135,12,135,1829,1,135,1,135,3,135,1834,8,135, + 1,135,1,135,1,135,1,135,1,135,4,135,1841,8,135,11,135,12,135,1842,1,135, + 1,135,3,135,1847,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,1863,8,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,3,135,1872,8,135,1,135,1,135,1,135,1,135,1,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1900,8,135, - 1,135,1,135,1,135,5,135,1905,8,135,10,135,12,135,1908,9,135,3,135,1910, - 8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1920,8,135, - 1,135,1,135,1,135,1,135,1,135,5,135,1927,8,135,10,135,12,135,1930,9,135, - 1,136,1,136,1,136,3,136,1935,8,136,1,137,1,137,1,138,1,138,1,139,1,139, - 3,139,1943,8,139,1,140,1,140,1,140,3,140,1948,8,140,1,141,1,141,3,141,1952, - 8,141,1,142,1,142,1,142,4,142,1957,8,142,11,142,12,142,1958,1,143,1,143, - 1,143,3,143,1964,8,143,1,144,1,144,1,144,1,144,1,144,1,145,3,145,1972,8, - 145,1,145,1,145,3,145,1976,8,145,1,146,1,146,3,146,1980,8,146,1,147,3,147, - 1983,8,147,1,147,1,147,3,147,1987,8,147,1,148,3,148,1990,8,148,1,148,1, - 148,3,148,1994,8,148,1,149,1,149,1,149,1,150,1,150,4,150,2001,8,150,11, - 150,12,150,2002,1,150,3,150,2006,8,150,1,151,1,151,1,151,1,151,1,152,1, - 152,1,152,5,152,2015,8,152,10,152,12,152,2018,9,152,1,153,1,153,1,153,3, - 153,2023,8,153,1,154,1,154,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1, - 157,1,157,1,157,5,157,2037,8,157,10,157,12,157,2040,9,157,1,158,1,158,1, - 158,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,161,1,161,1,161,1,161,5, - 161,2056,8,161,10,161,12,161,2059,9,161,1,161,1,161,1,162,1,162,3,162,2065, - 8,162,1,162,3,162,2068,8,162,1,163,1,163,1,163,3,163,2073,8,163,1,164,1, - 164,1,164,1,164,3,164,2079,8,164,1,165,1,165,1,165,1,165,1,165,1,165,3, - 165,2087,8,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1, - 166,1,166,1,166,1,166,1,166,3,166,2103,8,166,1,167,1,167,1,167,1,167,1, - 167,1,167,1,167,3,167,2112,8,167,1,168,1,168,1,169,1,169,1,170,1,170,1, - 170,1,170,1,170,1,170,1,170,1,170,1,170,3,170,2127,8,170,1,170,3,170,2130, - 8,170,1,171,1,171,1,172,1,172,1,173,1,173,1,174,1,174,1,175,1,175,1,176, - 1,176,1,176,1,2038,5,158,178,262,268,270,177,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,0,41,2,0,30,30,231,231, - 3,0,16,16,37,37,67,67,4,0,13,13,26,26,64,64,166,166,2,0,12,12,25,25,2,0, - 248,248,259,259,2,0,165,165,337,337,2,0,4,4,117,117,1,0,107,111,3,0,192, - 192,222,222,295,295,11,0,10,10,145,145,151,151,188,189,201,201,223,223, - 264,265,329,329,340,340,342,342,356,357,2,0,361,361,363,363,4,0,225,226, - 233,233,246,246,296,296,2,0,182,182,289,289,2,0,40,40,260,260,3,0,21,21, - 95,95,176,176,3,0,40,40,93,93,260,260,3,0,52,52,89,89,169,169,3,0,65,65, - 106,106,125,125,2,0,11,11,122,122,2,0,92,92,268,268,3,0,239,239,266,266, - 346,346,4,0,249,249,261,261,275,275,318,318,3,0,23,23,56,56,155,155,5,0, - 24,24,138,139,144,144,150,150,298,298,2,0,218,218,321,321,3,0,56,56,135, - 135,155,155,2,0,8,8,30,30,2,0,44,44,72,72,2,0,176,176,180,180,2,0,245,245, - 344,344,2,0,369,369,389,390,4,0,32,32,387,387,391,391,394,394,2,0,389,390, - 392,392,1,0,389,390,1,0,398,399,2,0,398,398,401,401,4,0,32,32,387,387,389, - 391,393,394,3,0,294,294,368,369,389,390,2,0,176,176,232,232,1,0,175,364, - 1,0,4,174,2329,0,354,1,0,0,0,2,357,1,0,0,0,4,367,1,0,0,0,6,382,1,0,0,0, - 8,384,1,0,0,0,10,400,1,0,0,0,12,404,1,0,0,0,14,406,1,0,0,0,16,409,1,0,0, - 0,18,420,1,0,0,0,20,428,1,0,0,0,22,436,1,0,0,0,24,438,1,0,0,0,26,483,1, - 0,0,0,28,485,1,0,0,0,30,492,1,0,0,0,32,496,1,0,0,0,34,500,1,0,0,0,36,504, - 1,0,0,0,38,547,1,0,0,0,40,551,1,0,0,0,42,553,1,0,0,0,44,594,1,0,0,0,46, - 608,1,0,0,0,48,610,1,0,0,0,50,620,1,0,0,0,52,622,1,0,0,0,54,670,1,0,0,0, - 56,672,1,0,0,0,58,676,1,0,0,0,60,684,1,0,0,0,62,692,1,0,0,0,64,696,1,0, - 0,0,66,703,1,0,0,0,68,731,1,0,0,0,70,733,1,0,0,0,72,736,1,0,0,0,74,746, - 1,0,0,0,76,748,1,0,0,0,78,754,1,0,0,0,80,756,1,0,0,0,82,764,1,0,0,0,84, - 772,1,0,0,0,86,774,1,0,0,0,88,778,1,0,0,0,90,782,1,0,0,0,92,806,1,0,0,0, - 94,810,1,0,0,0,96,812,1,0,0,0,98,824,1,0,0,0,100,830,1,0,0,0,102,832,1, - 0,0,0,104,837,1,0,0,0,106,848,1,0,0,0,108,866,1,0,0,0,110,886,1,0,0,0,112, - 897,1,0,0,0,114,899,1,0,0,0,116,912,1,0,0,0,118,919,1,0,0,0,120,922,1,0, - 0,0,122,931,1,0,0,0,124,935,1,0,0,0,126,939,1,0,0,0,128,942,1,0,0,0,130, - 950,1,0,0,0,132,955,1,0,0,0,134,972,1,0,0,0,136,979,1,0,0,0,138,989,1,0, - 0,0,140,998,1,0,0,0,142,1008,1,0,0,0,144,1027,1,0,0,0,146,1029,1,0,0,0, - 148,1042,1,0,0,0,150,1045,1,0,0,0,152,1054,1,0,0,0,154,1065,1,0,0,0,156, - 1078,1,0,0,0,158,1113,1,0,0,0,160,1132,1,0,0,0,162,1141,1,0,0,0,164,1150, - 1,0,0,0,166,1169,1,0,0,0,168,1189,1,0,0,0,170,1191,1,0,0,0,172,1214,1,0, - 0,0,174,1228,1,0,0,0,176,1230,1,0,0,0,178,1244,1,0,0,0,180,1270,1,0,0,0, - 182,1315,1,0,0,0,184,1317,1,0,0,0,186,1319,1,0,0,0,188,1325,1,0,0,0,190, - 1327,1,0,0,0,192,1332,1,0,0,0,194,1337,1,0,0,0,196,1349,1,0,0,0,198,1366, - 1,0,0,0,200,1368,1,0,0,0,202,1370,1,0,0,0,204,1389,1,0,0,0,206,1391,1,0, - 0,0,208,1394,1,0,0,0,210,1443,1,0,0,0,212,1445,1,0,0,0,214,1448,1,0,0,0, - 216,1450,1,0,0,0,218,1457,1,0,0,0,220,1459,1,0,0,0,222,1461,1,0,0,0,224, - 1464,1,0,0,0,226,1473,1,0,0,0,228,1478,1,0,0,0,230,1492,1,0,0,0,232,1520, - 1,0,0,0,234,1530,1,0,0,0,236,1538,1,0,0,0,238,1543,1,0,0,0,240,1569,1,0, - 0,0,242,1571,1,0,0,0,244,1580,1,0,0,0,246,1591,1,0,0,0,248,1603,1,0,0,0, - 250,1629,1,0,0,0,252,1631,1,0,0,0,254,1649,1,0,0,0,256,1651,1,0,0,0,258, - 1656,1,0,0,0,260,1659,1,0,0,0,262,1673,1,0,0,0,264,1769,1,0,0,0,266,1796, - 1,0,0,0,268,1802,1,0,0,0,270,1919,1,0,0,0,272,1934,1,0,0,0,274,1936,1,0, - 0,0,276,1938,1,0,0,0,278,1942,1,0,0,0,280,1944,1,0,0,0,282,1949,1,0,0,0, - 284,1956,1,0,0,0,286,1960,1,0,0,0,288,1965,1,0,0,0,290,1975,1,0,0,0,292, - 1979,1,0,0,0,294,1982,1,0,0,0,296,1989,1,0,0,0,298,1995,1,0,0,0,300,2005, - 1,0,0,0,302,2007,1,0,0,0,304,2011,1,0,0,0,306,2022,1,0,0,0,308,2024,1,0, - 0,0,310,2026,1,0,0,0,312,2028,1,0,0,0,314,2033,1,0,0,0,316,2041,1,0,0,0, - 318,2044,1,0,0,0,320,2048,1,0,0,0,322,2051,1,0,0,0,324,2062,1,0,0,0,326, - 2072,1,0,0,0,328,2078,1,0,0,0,330,2086,1,0,0,0,332,2102,1,0,0,0,334,2111, - 1,0,0,0,336,2113,1,0,0,0,338,2115,1,0,0,0,340,2129,1,0,0,0,342,2131,1,0, - 0,0,344,2133,1,0,0,0,346,2135,1,0,0,0,348,2137,1,0,0,0,350,2139,1,0,0,0, - 352,2141,1,0,0,0,354,355,3,2,1,0,355,356,5,0,0,1,356,1,1,0,0,0,357,358, - 3,4,2,0,358,359,5,0,0,1,359,3,1,0,0,0,360,362,3,6,3,0,361,363,5,381,0,0, - 362,361,1,0,0,0,362,363,1,0,0,0,363,366,1,0,0,0,364,366,3,8,4,0,365,360, - 1,0,0,0,365,364,1,0,0,0,366,369,1,0,0,0,367,365,1,0,0,0,367,368,1,0,0,0, - 368,5,1,0,0,0,369,367,1,0,0,0,370,383,3,10,5,0,371,383,3,12,6,0,372,383, - 3,14,7,0,373,383,3,16,8,0,374,383,3,22,11,0,375,383,3,26,13,0,376,383,3, - 28,14,0,377,383,3,30,15,0,378,383,3,32,16,0,379,383,3,34,17,0,380,383,3, - 36,18,0,381,383,3,38,19,0,382,370,1,0,0,0,382,371,1,0,0,0,382,372,1,0,0, - 0,382,373,1,0,0,0,382,374,1,0,0,0,382,375,1,0,0,0,382,376,1,0,0,0,382,377, - 1,0,0,0,382,378,1,0,0,0,382,379,1,0,0,0,382,380,1,0,0,0,382,381,1,0,0,0, - 383,7,1,0,0,0,384,385,5,381,0,0,385,9,1,0,0,0,386,401,3,40,20,0,387,401, - 3,104,52,0,388,401,3,106,53,0,389,401,3,108,54,0,390,401,3,102,51,0,391, - 401,3,114,57,0,392,401,3,128,64,0,393,401,3,130,65,0,394,401,3,132,66,0, - 395,401,3,134,67,0,396,401,3,136,68,0,397,401,3,138,69,0,398,401,3,140, - 70,0,399,401,3,142,71,0,400,386,1,0,0,0,400,387,1,0,0,0,400,388,1,0,0,0, - 400,389,1,0,0,0,400,390,1,0,0,0,400,391,1,0,0,0,400,392,1,0,0,0,400,393, - 1,0,0,0,400,394,1,0,0,0,400,395,1,0,0,0,400,396,1,0,0,0,400,397,1,0,0,0, - 400,398,1,0,0,0,400,399,1,0,0,0,401,11,1,0,0,0,402,405,3,158,79,0,403,405, - 3,144,72,0,404,402,1,0,0,0,404,403,1,0,0,0,405,13,1,0,0,0,406,407,7,0,0, - 0,407,408,3,314,157,0,408,15,1,0,0,0,409,413,5,242,0,0,410,414,3,18,9,0, - 411,412,5,100,0,0,412,414,5,247,0,0,413,410,1,0,0,0,413,411,1,0,0,0,413, - 414,1,0,0,0,414,418,1,0,0,0,415,419,3,12,6,0,416,419,3,146,73,0,417,419, - 3,156,78,0,418,415,1,0,0,0,418,416,1,0,0,0,418,417,1,0,0,0,419,17,1,0,0, - 0,420,425,3,20,10,0,421,422,5,380,0,0,422,424,3,20,10,0,423,421,1,0,0,0, - 424,427,1,0,0,0,425,423,1,0,0,0,425,426,1,0,0,0,426,19,1,0,0,0,427,425, - 1,0,0,0,428,429,7,1,0,0,429,21,1,0,0,0,430,432,5,160,0,0,431,433,5,12,0, - 0,432,431,1,0,0,0,432,433,1,0,0,0,433,434,1,0,0,0,434,437,3,314,157,0,435, - 437,3,24,12,0,436,430,1,0,0,0,436,435,1,0,0,0,437,23,1,0,0,0,438,439,5, - 160,0,0,439,440,5,83,0,0,440,445,3,314,157,0,441,442,5,380,0,0,442,444, - 3,314,157,0,443,441,1,0,0,0,444,447,1,0,0,0,445,443,1,0,0,0,445,446,1,0, - 0,0,446,25,1,0,0,0,447,445,1,0,0,0,448,449,5,327,0,0,449,484,7,2,0,0,450, - 451,5,327,0,0,451,452,5,219,0,0,452,484,7,3,0,0,453,454,5,327,0,0,454,457, - 5,148,0,0,455,456,7,4,0,0,456,458,3,314,157,0,457,455,1,0,0,0,457,458,1, - 0,0,0,458,460,1,0,0,0,459,461,3,266,133,0,460,459,1,0,0,0,460,461,1,0,0, - 0,461,484,1,0,0,0,462,463,5,327,0,0,463,464,5,20,0,0,464,465,7,4,0,0,465, - 467,3,314,157,0,466,468,3,266,133,0,467,466,1,0,0,0,467,468,1,0,0,0,468, - 484,1,0,0,0,469,470,5,327,0,0,470,471,5,216,0,0,471,472,7,5,0,0,472,484, - 3,314,157,0,473,475,5,327,0,0,474,476,5,352,0,0,475,474,1,0,0,0,475,476, - 1,0,0,0,476,477,1,0,0,0,477,484,5,50,0,0,478,480,5,327,0,0,479,481,5,249, - 0,0,480,479,1,0,0,0,480,481,1,0,0,0,481,482,1,0,0,0,482,484,5,83,0,0,483, - 448,1,0,0,0,483,450,1,0,0,0,483,453,1,0,0,0,483,462,1,0,0,0,483,469,1,0, - 0,0,483,473,1,0,0,0,483,478,1,0,0,0,484,27,1,0,0,0,485,486,5,75,0,0,486, - 487,5,287,0,0,487,490,3,314,157,0,488,489,5,361,0,0,489,491,3,322,161,0, - 490,488,1,0,0,0,490,491,1,0,0,0,491,29,1,0,0,0,492,493,5,158,0,0,493,494, - 5,287,0,0,494,495,3,314,157,0,495,31,1,0,0,0,496,498,5,326,0,0,497,499, - 3,324,162,0,498,497,1,0,0,0,498,499,1,0,0,0,499,33,1,0,0,0,500,502,5,316, - 0,0,501,503,3,326,163,0,502,501,1,0,0,0,502,503,1,0,0,0,503,35,1,0,0,0, - 504,505,7,6,0,0,505,506,5,63,0,0,506,507,3,112,56,0,507,37,1,0,0,0,508, - 509,5,4,0,0,509,510,5,63,0,0,510,511,5,361,0,0,511,514,5,402,0,0,512,513, - 5,183,0,0,513,515,3,314,157,0,514,512,1,0,0,0,514,515,1,0,0,0,515,548,1, - 0,0,0,516,517,5,4,0,0,517,518,5,42,0,0,518,519,5,361,0,0,519,522,5,402, - 0,0,520,521,5,183,0,0,521,523,3,314,157,0,522,520,1,0,0,0,522,523,1,0,0, - 0,523,526,1,0,0,0,524,525,5,118,0,0,525,527,3,314,157,0,526,524,1,0,0,0, - 526,527,1,0,0,0,527,548,1,0,0,0,528,529,5,4,0,0,529,530,7,7,0,0,530,531, - 5,361,0,0,531,532,5,402,0,0,532,533,5,118,0,0,533,548,3,314,157,0,534,535, - 5,4,0,0,535,536,5,112,0,0,536,548,5,402,0,0,537,538,5,4,0,0,538,539,5,35, - 0,0,539,540,5,42,0,0,540,541,5,361,0,0,541,542,5,402,0,0,542,543,5,118, - 0,0,543,544,3,314,157,0,544,545,5,68,0,0,545,546,3,314,157,0,546,548,1, - 0,0,0,547,508,1,0,0,0,547,516,1,0,0,0,547,528,1,0,0,0,547,534,1,0,0,0,547, - 537,1,0,0,0,548,39,1,0,0,0,549,552,3,42,21,0,550,552,3,44,22,0,551,549, - 1,0,0,0,551,550,1,0,0,0,552,41,1,0,0,0,553,555,5,216,0,0,554,556,5,149, - 0,0,555,554,1,0,0,0,555,556,1,0,0,0,556,557,1,0,0,0,557,559,5,337,0,0,558, - 560,3,318,159,0,559,558,1,0,0,0,559,560,1,0,0,0,560,561,1,0,0,0,561,562, - 3,98,49,0,562,563,5,376,0,0,563,568,3,46,23,0,564,565,5,380,0,0,565,567, - 3,46,23,0,566,564,1,0,0,0,567,570,1,0,0,0,568,566,1,0,0,0,568,569,1,0,0, - 0,569,573,1,0,0,0,570,568,1,0,0,0,571,572,5,380,0,0,572,574,3,80,40,0,573, - 571,1,0,0,0,573,574,1,0,0,0,574,577,1,0,0,0,575,576,5,380,0,0,576,578,3, - 82,41,0,577,575,1,0,0,0,577,578,1,0,0,0,578,581,1,0,0,0,579,580,5,380,0, - 0,580,582,3,86,43,0,581,579,1,0,0,0,581,582,1,0,0,0,582,583,1,0,0,0,583, - 585,5,377,0,0,584,586,3,70,35,0,585,584,1,0,0,0,585,586,1,0,0,0,586,588, - 1,0,0,0,587,589,3,88,44,0,588,587,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0, - 0,590,592,3,316,158,0,591,593,3,96,48,0,592,591,1,0,0,0,592,593,1,0,0,0, - 593,43,1,0,0,0,594,595,5,216,0,0,595,597,5,337,0,0,596,598,3,318,159,0, - 597,596,1,0,0,0,597,598,1,0,0,0,598,599,1,0,0,0,599,600,3,98,49,0,600,603, - 3,316,158,0,601,602,5,183,0,0,602,604,3,158,79,0,603,601,1,0,0,0,603,604, - 1,0,0,0,604,45,1,0,0,0,605,609,3,48,24,0,606,609,3,72,36,0,607,609,3,76, - 38,0,608,605,1,0,0,0,608,606,1,0,0,0,608,607,1,0,0,0,609,47,1,0,0,0,610, - 611,3,50,25,0,611,613,3,54,27,0,612,614,3,68,34,0,613,612,1,0,0,0,613,614, - 1,0,0,0,614,616,1,0,0,0,615,617,3,70,35,0,616,615,1,0,0,0,616,617,1,0,0, - 0,617,49,1,0,0,0,618,621,3,314,157,0,619,621,3,260,130,0,620,618,1,0,0, - 0,620,619,1,0,0,0,621,51,1,0,0,0,622,623,5,376,0,0,623,628,3,50,25,0,624, - 625,5,380,0,0,625,627,3,50,25,0,626,624,1,0,0,0,627,630,1,0,0,0,628,626, - 1,0,0,0,628,629,1,0,0,0,629,631,1,0,0,0,630,628,1,0,0,0,631,632,5,377,0, - 0,632,53,1,0,0,0,633,671,7,8,0,0,634,636,7,9,0,0,635,637,3,56,28,0,636, - 635,1,0,0,0,636,637,1,0,0,0,637,671,1,0,0,0,638,640,5,341,0,0,639,641,3, - 56,28,0,640,639,1,0,0,0,640,641,1,0,0,0,641,648,1,0,0,0,642,644,7,10,0, - 0,643,645,5,278,0,0,644,643,1,0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646, - 647,5,340,0,0,647,649,5,174,0,0,648,642,1,0,0,0,648,649,1,0,0,0,649,671, - 1,0,0,0,650,652,7,11,0,0,651,653,3,58,29,0,652,651,1,0,0,0,652,653,1,0, - 0,0,653,671,1,0,0,0,654,656,7,12,0,0,655,657,3,62,31,0,656,655,1,0,0,0, - 656,657,1,0,0,0,657,671,1,0,0,0,658,660,5,76,0,0,659,661,3,64,32,0,660, - 659,1,0,0,0,660,661,1,0,0,0,661,671,1,0,0,0,662,664,5,322,0,0,663,665,3, - 66,33,0,664,663,1,0,0,0,664,665,1,0,0,0,665,671,1,0,0,0,666,668,5,114,0, - 0,667,669,3,60,30,0,668,667,1,0,0,0,668,669,1,0,0,0,669,671,1,0,0,0,670, - 633,1,0,0,0,670,634,1,0,0,0,670,638,1,0,0,0,670,650,1,0,0,0,670,654,1,0, - 0,0,670,658,1,0,0,0,670,662,1,0,0,0,670,666,1,0,0,0,671,55,1,0,0,0,672, - 673,5,376,0,0,673,674,3,344,172,0,674,675,5,377,0,0,675,57,1,0,0,0,676, - 677,5,376,0,0,677,680,3,344,172,0,678,679,5,380,0,0,679,681,3,344,172,0, - 680,678,1,0,0,0,680,681,1,0,0,0,681,682,1,0,0,0,682,683,5,377,0,0,683,59, - 1,0,0,0,684,685,5,376,0,0,685,688,3,342,171,0,686,687,5,380,0,0,687,689, - 3,342,171,0,688,686,1,0,0,0,688,689,1,0,0,0,689,690,1,0,0,0,690,691,5,377, - 0,0,691,61,1,0,0,0,692,693,5,367,0,0,693,694,3,54,27,0,694,695,5,366,0, - 0,695,63,1,0,0,0,696,697,5,367,0,0,697,698,3,54,27,0,698,699,5,380,0,0, - 699,700,3,54,27,0,700,701,1,0,0,0,701,702,5,366,0,0,702,65,1,0,0,0,703, - 704,5,367,0,0,704,705,3,50,25,0,705,712,3,54,27,0,706,707,5,380,0,0,707, - 708,3,50,25,0,708,709,3,54,27,0,709,711,1,0,0,0,710,706,1,0,0,0,711,714, - 1,0,0,0,712,710,1,0,0,0,712,713,1,0,0,0,713,715,1,0,0,0,714,712,1,0,0,0, - 715,716,5,366,0,0,716,67,1,0,0,0,717,718,5,212,0,0,718,720,3,84,42,0,719, - 717,1,0,0,0,719,720,1,0,0,0,720,721,1,0,0,0,721,722,5,313,0,0,722,725,5, - 68,0,0,723,724,5,294,0,0,724,726,5,34,0,0,725,723,1,0,0,0,725,726,1,0,0, - 0,726,732,1,0,0,0,727,729,5,294,0,0,728,727,1,0,0,0,728,729,1,0,0,0,729, - 730,1,0,0,0,730,732,5,295,0,0,731,719,1,0,0,0,731,728,1,0,0,0,732,69,1, - 0,0,0,733,734,5,18,0,0,734,735,5,397,0,0,735,71,1,0,0,0,736,737,3,50,25, - 0,737,738,3,54,27,0,738,741,5,283,0,0,739,740,5,248,0,0,740,742,3,74,37, - 0,741,739,1,0,0,0,741,742,1,0,0,0,742,744,1,0,0,0,743,745,5,167,0,0,744, - 743,1,0,0,0,744,745,1,0,0,0,745,73,1,0,0,0,746,747,5,397,0,0,747,75,1,0, - 0,0,748,749,3,50,25,0,749,750,5,183,0,0,750,752,3,78,39,0,751,753,3,70, - 35,0,752,751,1,0,0,0,752,753,1,0,0,0,753,77,1,0,0,0,754,755,3,260,130,0, - 755,79,1,0,0,0,756,757,5,168,0,0,757,758,5,247,0,0,758,759,3,260,130,0, - 759,760,5,183,0,0,760,761,3,260,130,0,761,81,1,0,0,0,762,763,5,212,0,0, - 763,765,3,84,42,0,764,762,1,0,0,0,764,765,1,0,0,0,765,766,1,0,0,0,766,767, - 5,313,0,0,767,768,5,68,0,0,768,769,3,52,26,0,769,770,5,294,0,0,770,771, - 5,34,0,0,771,83,1,0,0,0,772,773,3,306,153,0,773,85,1,0,0,0,774,775,5,311, - 0,0,775,776,5,247,0,0,776,777,5,335,0,0,777,87,1,0,0,0,778,779,5,94,0,0, - 779,780,5,194,0,0,780,781,3,90,45,0,781,89,1,0,0,0,782,783,5,376,0,0,783, - 788,3,92,46,0,784,785,5,380,0,0,785,787,3,92,46,0,786,784,1,0,0,0,787,790, - 1,0,0,0,788,786,1,0,0,0,788,789,1,0,0,0,789,791,1,0,0,0,790,788,1,0,0,0, - 791,792,5,377,0,0,792,91,1,0,0,0,793,807,3,278,139,0,794,795,3,306,153, - 0,795,796,5,376,0,0,796,801,3,94,47,0,797,798,5,380,0,0,798,800,3,94,47, - 0,799,797,1,0,0,0,800,803,1,0,0,0,801,799,1,0,0,0,801,802,1,0,0,0,802,804, - 1,0,0,0,803,801,1,0,0,0,804,805,5,377,0,0,805,807,1,0,0,0,806,793,1,0,0, - 0,806,794,1,0,0,0,807,93,1,0,0,0,808,811,3,278,139,0,809,811,3,340,170, - 0,810,808,1,0,0,0,810,809,1,0,0,0,811,95,1,0,0,0,812,813,5,276,0,0,813, - 822,3,98,49,0,814,818,5,376,0,0,815,817,3,100,50,0,816,815,1,0,0,0,817, - 820,1,0,0,0,818,816,1,0,0,0,818,819,1,0,0,0,819,821,1,0,0,0,820,818,1,0, - 0,0,821,823,5,377,0,0,822,814,1,0,0,0,822,823,1,0,0,0,823,97,1,0,0,0,824, - 825,3,314,157,0,825,99,1,0,0,0,826,827,7,13,0,0,827,831,7,14,0,0,828,829, - 7,15,0,0,829,831,7,16,0,0,830,826,1,0,0,0,830,828,1,0,0,0,831,101,1,0,0, - 0,832,833,5,216,0,0,833,834,5,12,0,0,834,835,3,314,157,0,835,836,3,316, - 158,0,836,103,1,0,0,0,837,838,5,216,0,0,838,840,5,25,0,0,839,841,3,318, - 159,0,840,839,1,0,0,0,840,841,1,0,0,0,841,842,1,0,0,0,842,844,3,314,157, - 0,843,845,3,70,35,0,844,843,1,0,0,0,844,845,1,0,0,0,845,846,1,0,0,0,846, - 847,3,316,158,0,847,105,1,0,0,0,848,850,5,216,0,0,849,851,5,149,0,0,850, - 849,1,0,0,0,850,851,1,0,0,0,851,852,1,0,0,0,852,854,5,165,0,0,853,855,3, - 318,159,0,854,853,1,0,0,0,854,855,1,0,0,0,855,856,1,0,0,0,856,858,3,314, - 157,0,857,859,3,52,26,0,858,857,1,0,0,0,858,859,1,0,0,0,859,861,1,0,0,0, - 860,862,3,70,35,0,861,860,1,0,0,0,861,862,1,0,0,0,862,863,1,0,0,0,863,864, - 5,183,0,0,864,865,3,158,79,0,865,107,1,0,0,0,866,870,5,216,0,0,867,871, - 5,149,0,0,868,869,5,149,0,0,869,871,5,334,0,0,870,867,1,0,0,0,870,868,1, - 0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,874,5,250,0,0,873,875,3,318,159, - 0,874,873,1,0,0,0,874,875,1,0,0,0,875,876,1,0,0,0,876,877,3,314,157,0,877, - 878,5,183,0,0,878,881,3,306,153,0,879,880,5,272,0,0,880,882,7,17,0,0,881, - 879,1,0,0,0,881,882,1,0,0,0,882,884,1,0,0,0,883,885,3,110,55,0,884,883, - 1,0,0,0,884,885,1,0,0,0,885,109,1,0,0,0,886,887,5,353,0,0,887,888,5,63, - 0,0,888,894,3,112,56,0,889,890,5,380,0,0,890,891,5,63,0,0,891,893,3,112, - 56,0,892,889,1,0,0,0,893,896,1,0,0,0,894,892,1,0,0,0,894,895,1,0,0,0,895, - 111,1,0,0,0,896,894,1,0,0,0,897,898,5,397,0,0,898,113,1,0,0,0,899,900,5, - 178,0,0,900,902,5,337,0,0,901,903,3,320,160,0,902,901,1,0,0,0,902,903,1, - 0,0,0,903,904,1,0,0,0,904,910,3,314,157,0,905,911,3,116,58,0,906,911,3, - 118,59,0,907,911,3,120,60,0,908,911,3,122,61,0,909,911,3,124,62,0,910,905, - 1,0,0,0,910,906,1,0,0,0,910,907,1,0,0,0,910,908,1,0,0,0,910,909,1,0,0,0, - 911,115,1,0,0,0,912,914,5,118,0,0,913,915,3,314,157,0,914,913,1,0,0,0,914, - 915,1,0,0,0,915,916,1,0,0,0,916,917,5,343,0,0,917,918,3,314,157,0,918,117, - 1,0,0,0,919,920,5,326,0,0,920,921,3,322,161,0,921,119,1,0,0,0,922,923,5, - 4,0,0,923,924,5,212,0,0,924,925,3,84,42,0,925,926,5,313,0,0,926,927,5,68, - 0,0,927,929,3,52,26,0,928,930,3,126,63,0,929,928,1,0,0,0,929,930,1,0,0, - 0,930,121,1,0,0,0,931,932,5,234,0,0,932,933,5,212,0,0,933,934,3,84,42,0, - 934,123,1,0,0,0,935,936,5,4,0,0,936,937,5,347,0,0,937,938,3,52,26,0,938, - 125,1,0,0,0,939,940,5,294,0,0,940,941,5,34,0,0,941,127,1,0,0,0,942,943, - 5,178,0,0,943,944,5,165,0,0,944,948,3,314,157,0,945,949,3,116,58,0,946, - 947,5,183,0,0,947,949,3,158,79,0,948,945,1,0,0,0,948,946,1,0,0,0,949,129, - 1,0,0,0,950,951,5,178,0,0,951,952,5,25,0,0,952,953,3,314,157,0,953,954, - 3,118,59,0,954,131,1,0,0,0,955,959,5,178,0,0,956,960,5,149,0,0,957,958, - 5,149,0,0,958,960,5,334,0,0,959,956,1,0,0,0,959,957,1,0,0,0,959,960,1,0, - 0,0,960,961,1,0,0,0,961,963,5,250,0,0,962,964,3,320,160,0,963,962,1,0,0, - 0,963,964,1,0,0,0,964,965,1,0,0,0,965,966,3,314,157,0,966,967,5,183,0,0, - 967,970,3,306,153,0,968,969,5,272,0,0,969,971,7,17,0,0,970,968,1,0,0,0, - 970,971,1,0,0,0,971,133,1,0,0,0,972,973,5,234,0,0,973,975,5,12,0,0,974, - 976,3,320,160,0,975,974,1,0,0,0,975,976,1,0,0,0,976,977,1,0,0,0,977,978, - 3,314,157,0,978,135,1,0,0,0,979,981,5,234,0,0,980,982,5,149,0,0,981,980, - 1,0,0,0,981,982,1,0,0,0,982,983,1,0,0,0,983,985,5,337,0,0,984,986,3,320, - 160,0,985,984,1,0,0,0,985,986,1,0,0,0,986,987,1,0,0,0,987,988,3,314,157, - 0,988,137,1,0,0,0,989,990,5,234,0,0,990,992,5,25,0,0,991,993,3,320,160, - 0,992,991,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,996,3,314,157,0,995, - 997,7,18,0,0,996,995,1,0,0,0,996,997,1,0,0,0,997,139,1,0,0,0,998,1000,5, - 234,0,0,999,1001,5,149,0,0,1000,999,1,0,0,0,1000,1001,1,0,0,0,1001,1002, - 1,0,0,0,1002,1004,5,165,0,0,1003,1005,3,320,160,0,1004,1003,1,0,0,0,1004, - 1005,1,0,0,0,1005,1006,1,0,0,0,1006,1007,3,314,157,0,1007,141,1,0,0,0,1008, - 1012,5,234,0,0,1009,1013,5,149,0,0,1010,1011,5,149,0,0,1011,1013,5,334, - 0,0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0,0,1013,1014,1,0, - 0,0,1014,1016,5,250,0,0,1015,1017,3,320,160,0,1016,1015,1,0,0,0,1016,1017, - 1,0,0,0,1017,1018,1,0,0,0,1018,1019,3,314,157,0,1019,143,1,0,0,0,1020,1022, - 5,240,0,0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0,0,1023,1028, - 3,146,73,0,1024,1028,3,154,77,0,1025,1026,5,240,0,0,1026,1028,3,156,78, - 0,1027,1021,1,0,0,0,1027,1024,1,0,0,0,1027,1025,1,0,0,0,1028,145,1,0,0, - 0,1029,1030,5,263,0,0,1030,1031,7,19,0,0,1031,1040,3,314,157,0,1032,1034, - 3,148,74,0,1033,1032,1,0,0,0,1033,1034,1,0,0,0,1034,1036,1,0,0,0,1035,1037, - 3,52,26,0,1036,1035,1,0,0,0,1036,1037,1,0,0,0,1037,1038,1,0,0,0,1038,1041, - 3,158,79,0,1039,1041,3,150,75,0,1040,1033,1,0,0,0,1040,1039,1,0,0,0,1041, - 147,1,0,0,0,1042,1043,5,307,0,0,1043,1044,3,322,161,0,1044,149,1,0,0,0, - 1045,1046,5,355,0,0,1046,1051,3,152,76,0,1047,1048,5,380,0,0,1048,1050, - 3,152,76,0,1049,1047,1,0,0,0,1050,1053,1,0,0,0,1051,1049,1,0,0,0,1051,1052, - 1,0,0,0,1052,151,1,0,0,0,1053,1051,1,0,0,0,1054,1055,5,376,0,0,1055,1060, - 3,340,170,0,1056,1057,5,380,0,0,1057,1059,3,340,170,0,1058,1056,1,0,0,0, - 1059,1062,1,0,0,0,1060,1058,1,0,0,0,1060,1061,1,0,0,0,1061,1063,1,0,0,0, - 1062,1060,1,0,0,0,1063,1064,5,377,0,0,1064,153,1,0,0,0,1065,1066,5,186, - 0,0,1066,1067,5,143,0,0,1067,1068,5,326,0,0,1068,1072,5,381,0,0,1069,1070, - 3,146,73,0,1070,1071,5,381,0,0,1071,1073,1,0,0,0,1072,1069,1,0,0,0,1073, - 1074,1,0,0,0,1074,1072,1,0,0,0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076, - 1077,5,237,0,0,1077,155,1,0,0,0,1078,1079,5,143,0,0,1079,1080,5,326,0,0, - 1080,1084,5,186,0,0,1081,1082,3,146,73,0,1082,1083,5,381,0,0,1083,1085, - 1,0,0,0,1084,1081,1,0,0,0,1085,1086,1,0,0,0,1086,1084,1,0,0,0,1086,1087, - 1,0,0,0,1087,1088,1,0,0,0,1088,1089,5,237,0,0,1089,157,1,0,0,0,1090,1091, - 6,79,-1,0,1091,1114,3,160,80,0,1092,1093,3,162,81,0,1093,1094,3,158,79, - 5,1094,1114,1,0,0,0,1095,1096,5,376,0,0,1096,1097,3,158,79,0,1097,1098, - 5,377,0,0,1098,1114,1,0,0,0,1099,1101,3,170,85,0,1100,1102,3,232,116,0, - 1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1104,1,0,0,0,1103,1105,3,236,118, - 0,1104,1103,1,0,0,0,1104,1105,1,0,0,0,1105,1114,1,0,0,0,1106,1108,3,168, - 84,0,1107,1109,3,232,116,0,1108,1107,1,0,0,0,1108,1109,1,0,0,0,1109,1111, - 1,0,0,0,1110,1112,3,236,118,0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112, - 1114,1,0,0,0,1113,1090,1,0,0,0,1113,1092,1,0,0,0,1113,1095,1,0,0,0,1113, - 1099,1,0,0,0,1113,1106,1,0,0,0,1114,1129,1,0,0,0,1115,1116,10,3,0,0,1116, - 1118,7,20,0,0,1117,1119,5,176,0,0,1118,1117,1,0,0,0,1118,1119,1,0,0,0,1119, - 1120,1,0,0,0,1120,1122,3,158,79,0,1121,1123,3,232,116,0,1122,1121,1,0,0, - 0,1122,1123,1,0,0,0,1123,1125,1,0,0,0,1124,1126,3,236,118,0,1125,1124,1, - 0,0,0,1125,1126,1,0,0,0,1126,1128,1,0,0,0,1127,1115,1,0,0,0,1128,1131,1, - 0,0,0,1129,1127,1,0,0,0,1129,1130,1,0,0,0,1130,159,1,0,0,0,1131,1129,1, - 0,0,0,1132,1133,5,355,0,0,1133,1138,3,260,130,0,1134,1135,5,380,0,0,1135, - 1137,3,260,130,0,1136,1134,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0,0, - 1138,1139,1,0,0,0,1139,161,1,0,0,0,1140,1138,1,0,0,0,1141,1142,5,361,0, - 0,1142,1147,3,164,82,0,1143,1144,5,380,0,0,1144,1146,3,164,82,0,1145,1143, - 1,0,0,0,1146,1149,1,0,0,0,1147,1145,1,0,0,0,1147,1148,1,0,0,0,1148,163, - 1,0,0,0,1149,1147,1,0,0,0,1150,1162,3,166,83,0,1151,1152,5,376,0,0,1152, - 1157,3,50,25,0,1153,1154,5,380,0,0,1154,1156,3,50,25,0,1155,1153,1,0,0, - 0,1156,1159,1,0,0,0,1157,1155,1,0,0,0,1157,1158,1,0,0,0,1158,1160,1,0,0, - 0,1159,1157,1,0,0,0,1160,1161,5,377,0,0,1161,1163,1,0,0,0,1162,1151,1,0, - 0,0,1162,1163,1,0,0,0,1163,1164,1,0,0,0,1164,1165,5,183,0,0,1165,1166,5, - 376,0,0,1166,1167,3,158,79,0,1167,1168,5,377,0,0,1168,165,1,0,0,0,1169, - 1170,3,306,153,0,1170,167,1,0,0,0,1171,1172,3,170,85,0,1172,1174,3,176, - 88,0,1173,1175,3,206,103,0,1174,1173,1,0,0,0,1174,1175,1,0,0,0,1175,1177, - 1,0,0,0,1176,1178,3,208,104,0,1177,1176,1,0,0,0,1177,1178,1,0,0,0,1178, - 1180,1,0,0,0,1179,1181,3,222,111,0,1180,1179,1,0,0,0,1180,1181,1,0,0,0, - 1181,1183,1,0,0,0,1182,1184,3,224,112,0,1183,1182,1,0,0,0,1183,1184,1,0, - 0,0,1184,1190,1,0,0,0,1185,1186,3,170,85,0,1186,1187,3,176,88,0,1187,1188, - 3,230,115,0,1188,1190,1,0,0,0,1189,1171,1,0,0,0,1189,1185,1,0,0,0,1190, - 169,1,0,0,0,1191,1193,5,325,0,0,1192,1194,3,348,174,0,1193,1192,1,0,0,0, - 1193,1194,1,0,0,0,1194,1204,1,0,0,0,1195,1205,5,387,0,0,1196,1201,3,172, - 86,0,1197,1198,5,380,0,0,1198,1200,3,172,86,0,1199,1197,1,0,0,0,1200,1203, - 1,0,0,0,1201,1199,1,0,0,0,1201,1202,1,0,0,0,1202,1205,1,0,0,0,1203,1201, - 1,0,0,0,1204,1195,1,0,0,0,1204,1196,1,0,0,0,1205,171,1,0,0,0,1206,1215, - 3,174,87,0,1207,1212,3,260,130,0,1208,1210,5,183,0,0,1209,1208,1,0,0,0, - 1209,1210,1,0,0,0,1210,1211,1,0,0,0,1211,1213,3,260,130,0,1212,1209,1,0, - 0,0,1212,1213,1,0,0,0,1213,1215,1,0,0,0,1214,1206,1,0,0,0,1214,1207,1,0, - 0,0,1215,173,1,0,0,0,1216,1217,3,270,135,0,1217,1218,5,305,0,0,1218,1219, - 3,228,114,0,1219,1220,5,183,0,0,1220,1221,3,306,153,0,1221,1229,1,0,0,0, - 1222,1223,3,270,135,0,1223,1224,5,305,0,0,1224,1225,3,298,149,0,1225,1226, - 5,183,0,0,1226,1227,3,306,153,0,1227,1229,1,0,0,0,1228,1216,1,0,0,0,1228, - 1222,1,0,0,0,1229,175,1,0,0,0,1230,1231,5,248,0,0,1231,1232,3,178,89,0, - 1232,177,1,0,0,0,1233,1234,6,89,-1,0,1234,1239,3,180,90,0,1235,1236,5,380, - 0,0,1236,1238,3,180,90,0,1237,1235,1,0,0,0,1238,1241,1,0,0,0,1239,1237, - 1,0,0,0,1239,1240,1,0,0,0,1240,1245,1,0,0,0,1241,1239,1,0,0,0,1242,1245, - 3,190,95,0,1243,1245,3,192,96,0,1244,1233,1,0,0,0,1244,1242,1,0,0,0,1244, - 1243,1,0,0,0,1245,1267,1,0,0,0,1246,1247,10,3,0,0,1247,1248,5,217,0,0,1248, - 1249,5,270,0,0,1249,1266,3,178,89,4,1250,1252,10,4,0,0,1251,1253,5,290, - 0,0,1252,1251,1,0,0,0,1252,1253,1,0,0,0,1253,1255,1,0,0,0,1254,1256,7,21, - 0,0,1255,1254,1,0,0,0,1255,1256,1,0,0,0,1256,1258,1,0,0,0,1257,1259,5,304, - 0,0,1258,1257,1,0,0,0,1258,1259,1,0,0,0,1259,1260,1,0,0,0,1260,1261,5,270, - 0,0,1261,1263,3,178,89,0,1262,1264,3,204,102,0,1263,1262,1,0,0,0,1263,1264, - 1,0,0,0,1264,1266,1,0,0,0,1265,1246,1,0,0,0,1265,1250,1,0,0,0,1266,1269, - 1,0,0,0,1267,1265,1,0,0,0,1267,1268,1,0,0,0,1268,179,1,0,0,0,1269,1267, - 1,0,0,0,1270,1272,3,182,91,0,1271,1273,3,296,148,0,1272,1271,1,0,0,0,1272, - 1273,1,0,0,0,1273,181,1,0,0,0,1274,1276,5,337,0,0,1275,1274,1,0,0,0,1275, - 1276,1,0,0,0,1276,1277,1,0,0,0,1277,1279,3,184,92,0,1278,1280,3,186,93, - 0,1279,1278,1,0,0,0,1279,1280,1,0,0,0,1280,1285,1,0,0,0,1281,1283,5,183, - 0,0,1282,1281,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0,0,1284,1286,3,276, - 138,0,1285,1282,1,0,0,0,1285,1286,1,0,0,0,1286,1316,1,0,0,0,1287,1288,5, - 273,0,0,1288,1289,5,337,0,0,1289,1290,5,376,0,0,1290,1291,3,272,136,0,1291, - 1292,5,376,0,0,1292,1297,3,260,130,0,1293,1294,5,380,0,0,1294,1296,3,260, - 130,0,1295,1293,1,0,0,0,1296,1299,1,0,0,0,1297,1295,1,0,0,0,1297,1298,1, - 0,0,0,1298,1300,1,0,0,0,1299,1297,1,0,0,0,1300,1301,5,377,0,0,1301,1302, - 5,377,0,0,1302,1316,1,0,0,0,1303,1305,5,273,0,0,1304,1303,1,0,0,0,1304, - 1305,1,0,0,0,1305,1306,1,0,0,0,1306,1307,5,376,0,0,1307,1308,3,158,79,0, - 1308,1309,5,377,0,0,1309,1316,1,0,0,0,1310,1311,5,349,0,0,1311,1312,5,376, - 0,0,1312,1313,3,260,130,0,1313,1314,5,377,0,0,1314,1316,1,0,0,0,1315,1275, - 1,0,0,0,1315,1287,1,0,0,0,1315,1304,1,0,0,0,1315,1310,1,0,0,0,1316,183, - 1,0,0,0,1317,1318,3,314,157,0,1318,185,1,0,0,0,1319,1320,5,247,0,0,1320, - 1321,5,335,0,0,1321,1322,5,183,0,0,1322,1323,5,297,0,0,1323,1324,3,188, - 94,0,1324,187,1,0,0,0,1325,1326,3,260,130,0,1326,189,1,0,0,0,1327,1328, - 5,376,0,0,1328,1329,3,150,75,0,1329,1330,5,377,0,0,1330,1331,3,296,148, - 0,1331,191,1,0,0,0,1332,1333,5,337,0,0,1333,1334,5,376,0,0,1334,1335,3, - 194,97,0,1335,1336,5,377,0,0,1336,193,1,0,0,0,1337,1338,3,196,98,0,1338, - 1339,5,376,0,0,1339,1344,3,198,99,0,1340,1341,5,380,0,0,1341,1343,3,198, - 99,0,1342,1340,1,0,0,0,1343,1346,1,0,0,0,1344,1342,1,0,0,0,1344,1345,1, - 0,0,0,1345,1347,1,0,0,0,1346,1344,1,0,0,0,1347,1348,5,377,0,0,1348,195, - 1,0,0,0,1349,1350,7,22,0,0,1350,197,1,0,0,0,1351,1352,5,337,0,0,1352,1367, - 3,220,110,0,1353,1367,3,202,101,0,1354,1367,3,280,140,0,1355,1356,5,24, - 0,0,1356,1357,5,396,0,0,1357,1358,5,337,0,0,1358,1367,3,220,110,0,1359, - 1360,5,150,0,0,1360,1361,5,396,0,0,1361,1367,3,202,101,0,1362,1363,3,200, - 100,0,1363,1364,5,396,0,0,1364,1365,3,280,140,0,1365,1367,1,0,0,0,1366, - 1351,1,0,0,0,1366,1353,1,0,0,0,1366,1354,1,0,0,0,1366,1355,1,0,0,0,1366, - 1359,1,0,0,0,1366,1362,1,0,0,0,1367,199,1,0,0,0,1368,1369,7,23,0,0,1369, - 201,1,0,0,0,1370,1371,5,31,0,0,1371,1372,5,376,0,0,1372,1373,3,314,157, - 0,1373,1374,5,377,0,0,1374,203,1,0,0,0,1375,1376,5,299,0,0,1376,1390,3, - 262,131,0,1377,1378,5,353,0,0,1378,1379,5,376,0,0,1379,1384,3,314,157,0, - 1380,1381,5,380,0,0,1381,1383,3,314,157,0,1382,1380,1,0,0,0,1383,1386,1, - 0,0,0,1384,1382,1,0,0,0,1384,1385,1,0,0,0,1385,1387,1,0,0,0,1386,1384,1, - 0,0,0,1387,1388,5,377,0,0,1388,1390,1,0,0,0,1389,1375,1,0,0,0,1389,1377, - 1,0,0,0,1390,205,1,0,0,0,1391,1392,5,359,0,0,1392,1393,3,262,131,0,1393, - 207,1,0,0,0,1394,1395,5,253,0,0,1395,1396,5,194,0,0,1396,1401,3,210,105, - 0,1397,1398,5,380,0,0,1398,1400,3,210,105,0,1399,1397,1,0,0,0,1400,1403, - 1,0,0,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402,209,1,0,0,0,1403,1401, - 1,0,0,0,1404,1444,3,260,130,0,1405,1444,3,216,108,0,1406,1407,5,376,0,0, - 1407,1444,5,377,0,0,1408,1409,5,376,0,0,1409,1414,3,260,130,0,1410,1411, - 5,380,0,0,1411,1413,3,260,130,0,1412,1410,1,0,0,0,1413,1416,1,0,0,0,1414, - 1412,1,0,0,0,1414,1415,1,0,0,0,1415,1417,1,0,0,0,1416,1414,1,0,0,0,1417, - 1418,5,377,0,0,1418,1444,1,0,0,0,1419,1420,3,214,107,0,1420,1421,5,376, - 0,0,1421,1426,3,260,130,0,1422,1423,5,380,0,0,1423,1425,3,260,130,0,1424, - 1422,1,0,0,0,1425,1428,1,0,0,0,1426,1424,1,0,0,0,1426,1427,1,0,0,0,1427, - 1429,1,0,0,0,1428,1426,1,0,0,0,1429,1430,5,377,0,0,1430,1444,1,0,0,0,1431, - 1432,3,212,106,0,1432,1433,5,376,0,0,1433,1438,3,210,105,0,1434,1435,5, - 380,0,0,1435,1437,3,210,105,0,1436,1434,1,0,0,0,1437,1440,1,0,0,0,1438, - 1436,1,0,0,0,1438,1439,1,0,0,0,1439,1441,1,0,0,0,1440,1438,1,0,0,0,1441, - 1442,5,377,0,0,1442,1444,1,0,0,0,1443,1404,1,0,0,0,1443,1405,1,0,0,0,1443, - 1406,1,0,0,0,1443,1408,1,0,0,0,1443,1419,1,0,0,0,1443,1431,1,0,0,0,1444, - 211,1,0,0,0,1445,1446,5,254,0,0,1446,1447,5,136,0,0,1447,213,1,0,0,0,1448, - 1449,7,24,0,0,1449,215,1,0,0,0,1450,1451,3,218,109,0,1451,1452,5,376,0, - 0,1452,1453,3,220,110,0,1453,1454,5,380,0,0,1454,1455,3,280,140,0,1455, - 1456,5,377,0,0,1456,217,1,0,0,0,1457,1458,7,25,0,0,1458,219,1,0,0,0,1459, - 1460,3,314,157,0,1460,221,1,0,0,0,1461,1462,5,256,0,0,1462,1463,3,262,131, - 0,1463,223,1,0,0,0,1464,1465,5,360,0,0,1465,1470,3,226,113,0,1466,1467, - 5,380,0,0,1467,1469,3,226,113,0,1468,1466,1,0,0,0,1469,1472,1,0,0,0,1470, - 1468,1,0,0,0,1470,1471,1,0,0,0,1471,225,1,0,0,0,1472,1470,1,0,0,0,1473, - 1474,3,298,149,0,1474,1475,5,183,0,0,1475,1476,3,228,114,0,1476,227,1,0, - 0,0,1477,1479,3,298,149,0,1478,1477,1,0,0,0,1478,1479,1,0,0,0,1479,1480, - 1,0,0,0,1480,1482,5,376,0,0,1481,1483,3,238,119,0,1482,1481,1,0,0,0,1482, - 1483,1,0,0,0,1483,1485,1,0,0,0,1484,1486,3,232,116,0,1485,1484,1,0,0,0, - 1485,1486,1,0,0,0,1486,1488,1,0,0,0,1487,1489,3,254,127,0,1488,1487,1,0, - 0,0,1488,1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,5,377,0,0,1491,229,1, - 0,0,0,1492,1493,5,280,0,0,1493,1495,5,376,0,0,1494,1496,3,238,119,0,1495, - 1494,1,0,0,0,1495,1496,1,0,0,0,1496,1498,1,0,0,0,1497,1499,3,232,116,0, - 1498,1497,1,0,0,0,1498,1499,1,0,0,0,1499,1501,1,0,0,0,1500,1502,3,242,121, - 0,1501,1500,1,0,0,0,1501,1502,1,0,0,0,1502,1504,1,0,0,0,1503,1505,3,248, - 124,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1507,1,0,0,0,1506,1508,3, - 250,125,0,1507,1506,1,0,0,0,1507,1508,1,0,0,0,1508,1510,1,0,0,0,1509,1511, - 3,244,122,0,1510,1509,1,0,0,0,1510,1511,1,0,0,0,1511,1512,1,0,0,0,1512, - 1513,3,252,126,0,1513,1518,5,377,0,0,1514,1516,5,183,0,0,1515,1514,1,0, - 0,0,1515,1516,1,0,0,0,1516,1517,1,0,0,0,1517,1519,3,306,153,0,1518,1515, - 1,0,0,0,1518,1519,1,0,0,0,1519,231,1,0,0,0,1520,1521,5,302,0,0,1521,1522, - 5,194,0,0,1522,1527,3,234,117,0,1523,1524,5,380,0,0,1524,1526,3,234,117, - 0,1525,1523,1,0,0,0,1526,1529,1,0,0,0,1527,1525,1,0,0,0,1527,1528,1,0,0, - 0,1528,233,1,0,0,0,1529,1527,1,0,0,0,1530,1532,3,260,130,0,1531,1533,7, - 26,0,0,1532,1531,1,0,0,0,1532,1533,1,0,0,0,1533,1536,1,0,0,0,1534,1535, - 5,86,0,0,1535,1537,7,27,0,0,1536,1534,1,0,0,0,1536,1537,1,0,0,0,1537,235, - 1,0,0,0,1538,1541,5,277,0,0,1539,1542,5,176,0,0,1540,1542,3,260,130,0,1541, - 1539,1,0,0,0,1541,1540,1,0,0,0,1542,237,1,0,0,0,1543,1544,5,307,0,0,1544, - 1545,5,194,0,0,1545,1550,3,260,130,0,1546,1547,5,380,0,0,1547,1549,3,260, - 130,0,1548,1546,1,0,0,0,1549,1552,1,0,0,0,1550,1548,1,0,0,0,1550,1551,1, - 0,0,0,1551,239,1,0,0,0,1552,1550,1,0,0,0,1553,1570,5,387,0,0,1554,1570, - 5,390,0,0,1555,1570,5,395,0,0,1556,1557,5,378,0,0,1557,1558,5,398,0,0,1558, - 1559,5,380,0,0,1559,1560,5,398,0,0,1560,1570,5,379,0,0,1561,1562,5,378, - 0,0,1562,1563,5,398,0,0,1563,1564,5,380,0,0,1564,1570,5,379,0,0,1565,1566, - 5,378,0,0,1566,1567,5,380,0,0,1567,1568,5,398,0,0,1568,1570,5,379,0,0,1569, - 1553,1,0,0,0,1569,1554,1,0,0,0,1569,1555,1,0,0,0,1569,1556,1,0,0,0,1569, - 1561,1,0,0,0,1569,1565,1,0,0,0,1570,241,1,0,0,0,1571,1572,5,281,0,0,1572, - 1577,3,172,86,0,1573,1574,5,380,0,0,1574,1576,3,172,86,0,1575,1573,1,0, - 0,0,1576,1579,1,0,0,0,1577,1575,1,0,0,0,1577,1578,1,0,0,0,1578,243,1,0, - 0,0,1579,1577,1,0,0,0,1580,1581,5,308,0,0,1581,1583,5,376,0,0,1582,1584, - 3,246,123,0,1583,1582,1,0,0,0,1584,1585,1,0,0,0,1585,1583,1,0,0,0,1585, - 1586,1,0,0,0,1586,1587,1,0,0,0,1587,1589,5,377,0,0,1588,1590,3,258,129, - 0,1589,1588,1,0,0,0,1589,1590,1,0,0,0,1590,245,1,0,0,0,1591,1593,3,308, - 154,0,1592,1594,3,240,120,0,1593,1592,1,0,0,0,1593,1594,1,0,0,0,1594,247, - 1,0,0,0,1595,1596,5,176,0,0,1596,1597,5,323,0,0,1597,1598,5,309,0,0,1598, - 1604,5,279,0,0,1599,1600,5,300,0,0,1600,1601,5,322,0,0,1601,1602,5,309, - 0,0,1602,1604,5,279,0,0,1603,1595,1,0,0,0,1603,1599,1,0,0,0,1604,249,1, - 0,0,0,1605,1606,5,6,0,0,1606,1607,5,279,0,0,1607,1608,5,328,0,0,1608,1609, - 5,97,0,0,1609,1610,5,72,0,0,1610,1630,5,322,0,0,1611,1612,5,6,0,0,1612, - 1613,5,279,0,0,1613,1614,5,328,0,0,1614,1615,5,343,0,0,1615,1616,5,291, - 0,0,1616,1630,5,322,0,0,1617,1618,5,6,0,0,1618,1619,5,279,0,0,1619,1620, - 5,328,0,0,1620,1621,5,343,0,0,1621,1622,5,72,0,0,1622,1630,3,308,154,0, - 1623,1624,5,6,0,0,1624,1625,5,279,0,0,1625,1626,5,328,0,0,1626,1627,5,343, - 0,0,1627,1628,5,44,0,0,1628,1630,3,308,154,0,1629,1605,1,0,0,0,1629,1611, - 1,0,0,0,1629,1617,1,0,0,0,1629,1623,1,0,0,0,1630,251,1,0,0,0,1631,1632, - 5,229,0,0,1632,1637,3,172,86,0,1633,1634,5,380,0,0,1634,1636,3,172,86,0, - 1635,1633,1,0,0,0,1636,1639,1,0,0,0,1637,1635,1,0,0,0,1637,1638,1,0,0,0, - 1638,253,1,0,0,0,1639,1637,1,0,0,0,1640,1641,5,314,0,0,1641,1642,5,187, - 0,0,1642,1643,3,280,140,0,1643,1644,3,256,128,0,1644,1650,1,0,0,0,1645, - 1646,5,323,0,0,1646,1647,5,187,0,0,1647,1648,5,398,0,0,1648,1650,3,256, - 128,0,1649,1640,1,0,0,0,1649,1645,1,0,0,0,1650,255,1,0,0,0,1651,1652,5, - 101,0,0,1652,1653,5,179,0,0,1653,1654,5,219,0,0,1654,1655,5,322,0,0,1655, - 257,1,0,0,0,1656,1657,5,362,0,0,1657,1658,3,280,140,0,1658,259,1,0,0,0, - 1659,1660,3,262,131,0,1660,261,1,0,0,0,1661,1662,6,131,-1,0,1662,1663,5, - 294,0,0,1663,1674,3,262,131,5,1664,1665,5,241,0,0,1665,1666,5,376,0,0,1666, - 1667,3,158,79,0,1667,1668,5,377,0,0,1668,1674,1,0,0,0,1669,1671,3,268,134, - 0,1670,1672,3,264,132,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,1674,1, - 0,0,0,1673,1661,1,0,0,0,1673,1664,1,0,0,0,1673,1669,1,0,0,0,1674,1683,1, - 0,0,0,1675,1676,10,2,0,0,1676,1677,5,179,0,0,1677,1682,3,262,131,3,1678, - 1679,10,1,0,0,1679,1680,5,301,0,0,1680,1682,3,262,131,2,1681,1675,1,0,0, - 0,1681,1678,1,0,0,0,1682,1685,1,0,0,0,1683,1681,1,0,0,0,1683,1684,1,0,0, - 0,1684,263,1,0,0,0,1685,1683,1,0,0,0,1686,1688,5,294,0,0,1687,1686,1,0, - 0,0,1687,1688,1,0,0,0,1688,1689,1,0,0,0,1689,1690,5,187,0,0,1690,1691,3, - 268,134,0,1691,1692,5,179,0,0,1692,1693,3,268,134,0,1693,1770,1,0,0,0,1694, - 1696,5,294,0,0,1695,1694,1,0,0,0,1695,1696,1,0,0,0,1696,1697,1,0,0,0,1697, - 1698,5,259,0,0,1698,1699,5,376,0,0,1699,1704,3,260,130,0,1700,1701,5,380, - 0,0,1701,1703,3,260,130,0,1702,1700,1,0,0,0,1703,1706,1,0,0,0,1704,1702, - 1,0,0,0,1704,1705,1,0,0,0,1705,1707,1,0,0,0,1706,1704,1,0,0,0,1707,1708, - 5,377,0,0,1708,1770,1,0,0,0,1709,1711,5,294,0,0,1710,1709,1,0,0,0,1710, - 1711,1,0,0,0,1711,1712,1,0,0,0,1712,1713,5,259,0,0,1713,1714,5,376,0,0, - 1714,1715,3,158,79,0,1715,1716,5,377,0,0,1716,1770,1,0,0,0,1717,1718,5, - 241,0,0,1718,1719,5,376,0,0,1719,1720,3,158,79,0,1720,1721,5,377,0,0,1721, - 1770,1,0,0,0,1722,1724,5,294,0,0,1723,1722,1,0,0,0,1723,1724,1,0,0,0,1724, - 1725,1,0,0,0,1725,1726,5,319,0,0,1726,1770,3,268,134,0,1727,1729,5,294, - 0,0,1728,1727,1,0,0,0,1728,1729,1,0,0,0,1729,1730,1,0,0,0,1730,1731,5,276, - 0,0,1731,1745,7,28,0,0,1732,1733,5,376,0,0,1733,1746,5,377,0,0,1734,1735, - 5,376,0,0,1735,1740,3,260,130,0,1736,1737,5,380,0,0,1737,1739,3,260,130, - 0,1738,1736,1,0,0,0,1739,1742,1,0,0,0,1740,1738,1,0,0,0,1740,1741,1,0,0, - 0,1741,1743,1,0,0,0,1742,1740,1,0,0,0,1743,1744,5,377,0,0,1744,1746,1,0, - 0,0,1745,1732,1,0,0,0,1745,1734,1,0,0,0,1746,1770,1,0,0,0,1747,1749,5,294, - 0,0,1748,1747,1,0,0,0,1748,1749,1,0,0,0,1749,1750,1,0,0,0,1750,1751,5,276, - 0,0,1751,1770,3,268,134,0,1752,1754,5,269,0,0,1753,1755,5,294,0,0,1754, - 1753,1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756,1770,5,295,0,0,1757, - 1759,5,269,0,0,1758,1760,5,294,0,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0, - 1760,1761,1,0,0,0,1761,1770,7,29,0,0,1762,1764,5,269,0,0,1763,1765,5,294, - 0,0,1764,1763,1,0,0,0,1764,1765,1,0,0,0,1765,1766,1,0,0,0,1766,1767,5,232, - 0,0,1767,1768,5,248,0,0,1768,1770,3,268,134,0,1769,1687,1,0,0,0,1769,1695, - 1,0,0,0,1769,1710,1,0,0,0,1769,1717,1,0,0,0,1769,1723,1,0,0,0,1769,1728, - 1,0,0,0,1769,1748,1,0,0,0,1769,1752,1,0,0,0,1769,1757,1,0,0,0,1769,1762, - 1,0,0,0,1770,265,1,0,0,0,1771,1773,5,294,0,0,1772,1771,1,0,0,0,1772,1773, - 1,0,0,0,1773,1774,1,0,0,0,1774,1775,5,276,0,0,1775,1789,7,28,0,0,1776,1777, - 5,376,0,0,1777,1790,5,377,0,0,1778,1779,5,376,0,0,1779,1784,3,260,130,0, - 1780,1781,5,380,0,0,1781,1783,3,260,130,0,1782,1780,1,0,0,0,1783,1786,1, - 0,0,0,1784,1782,1,0,0,0,1784,1785,1,0,0,0,1785,1787,1,0,0,0,1786,1784,1, - 0,0,0,1787,1788,5,377,0,0,1788,1790,1,0,0,0,1789,1776,1,0,0,0,1789,1778, - 1,0,0,0,1790,1797,1,0,0,0,1791,1793,5,294,0,0,1792,1791,1,0,0,0,1792,1793, - 1,0,0,0,1793,1794,1,0,0,0,1794,1795,5,276,0,0,1795,1797,3,268,134,0,1796, - 1772,1,0,0,0,1796,1792,1,0,0,0,1797,267,1,0,0,0,1798,1799,6,134,-1,0,1799, - 1803,3,270,135,0,1800,1801,7,30,0,0,1801,1803,3,268,134,7,1802,1798,1,0, - 0,0,1802,1800,1,0,0,0,1803,1825,1,0,0,0,1804,1805,10,6,0,0,1805,1806,7, - 31,0,0,1806,1824,3,268,134,7,1807,1808,10,5,0,0,1808,1809,7,32,0,0,1809, - 1824,3,268,134,6,1810,1811,10,4,0,0,1811,1812,5,371,0,0,1812,1824,3,268, - 134,5,1813,1814,10,3,0,0,1814,1815,5,372,0,0,1815,1824,3,268,134,4,1816, - 1817,10,2,0,0,1817,1818,5,370,0,0,1818,1824,3,268,134,3,1819,1820,10,1, - 0,0,1820,1821,3,332,166,0,1821,1822,3,268,134,2,1822,1824,1,0,0,0,1823, - 1804,1,0,0,0,1823,1807,1,0,0,0,1823,1810,1,0,0,0,1823,1813,1,0,0,0,1823, - 1816,1,0,0,0,1823,1819,1,0,0,0,1824,1827,1,0,0,0,1825,1823,1,0,0,0,1825, - 1826,1,0,0,0,1826,269,1,0,0,0,1827,1825,1,0,0,0,1828,1829,6,135,-1,0,1829, - 1831,5,198,0,0,1830,1832,3,312,156,0,1831,1830,1,0,0,0,1832,1833,1,0,0, - 0,1833,1831,1,0,0,0,1833,1834,1,0,0,0,1834,1837,1,0,0,0,1835,1836,5,236, - 0,0,1836,1838,3,260,130,0,1837,1835,1,0,0,0,1837,1838,1,0,0,0,1838,1839, - 1,0,0,0,1839,1840,5,237,0,0,1840,1920,1,0,0,0,1841,1842,5,198,0,0,1842, - 1844,3,260,130,0,1843,1845,3,312,156,0,1844,1843,1,0,0,0,1845,1846,1,0, - 0,0,1846,1844,1,0,0,0,1846,1847,1,0,0,0,1847,1850,1,0,0,0,1848,1849,5,236, - 0,0,1849,1851,3,260,130,0,1850,1848,1,0,0,0,1850,1851,1,0,0,0,1851,1852, - 1,0,0,0,1852,1853,5,237,0,0,1853,1920,1,0,0,0,1854,1855,5,199,0,0,1855, - 1856,5,376,0,0,1856,1857,3,260,130,0,1857,1858,5,183,0,0,1858,1859,3,54, - 27,0,1859,1860,5,377,0,0,1860,1920,1,0,0,0,1861,1862,5,44,0,0,1862,1863, - 5,376,0,0,1863,1866,3,260,130,0,1864,1865,5,59,0,0,1865,1867,5,86,0,0,1866, - 1864,1,0,0,0,1866,1867,1,0,0,0,1867,1868,1,0,0,0,1868,1869,5,377,0,0,1869, - 1920,1,0,0,0,1870,1871,5,72,0,0,1871,1872,5,376,0,0,1872,1875,3,260,130, - 0,1873,1874,5,59,0,0,1874,1876,5,86,0,0,1875,1873,1,0,0,0,1875,1876,1,0, - 0,0,1876,1877,1,0,0,0,1877,1878,5,377,0,0,1878,1920,1,0,0,0,1879,1880,5, - 312,0,0,1880,1881,5,376,0,0,1881,1882,3,268,134,0,1882,1883,5,259,0,0,1883, - 1884,3,268,134,0,1884,1885,5,377,0,0,1885,1920,1,0,0,0,1886,1920,3,340, - 170,0,1887,1920,5,387,0,0,1888,1889,3,314,157,0,1889,1890,5,373,0,0,1890, - 1891,5,387,0,0,1891,1920,1,0,0,0,1892,1893,5,376,0,0,1893,1894,3,158,79, - 0,1894,1895,5,377,0,0,1895,1920,1,0,0,0,1896,1897,3,272,136,0,1897,1909, - 5,376,0,0,1898,1900,3,348,174,0,1899,1898,1,0,0,0,1899,1900,1,0,0,0,1900, - 1901,1,0,0,0,1901,1906,3,260,130,0,1902,1903,5,380,0,0,1903,1905,3,260, - 130,0,1904,1902,1,0,0,0,1905,1908,1,0,0,0,1906,1904,1,0,0,0,1906,1907,1, - 0,0,0,1907,1910,1,0,0,0,1908,1906,1,0,0,0,1909,1899,1,0,0,0,1909,1910,1, - 0,0,0,1910,1911,1,0,0,0,1911,1912,5,377,0,0,1912,1920,1,0,0,0,1913,1920, - 3,306,153,0,1914,1920,3,274,137,0,1915,1916,5,376,0,0,1916,1917,3,260,130, - 0,1917,1918,5,377,0,0,1918,1920,1,0,0,0,1919,1828,1,0,0,0,1919,1841,1,0, - 0,0,1919,1854,1,0,0,0,1919,1861,1,0,0,0,1919,1870,1,0,0,0,1919,1879,1,0, - 0,0,1919,1886,1,0,0,0,1919,1887,1,0,0,0,1919,1888,1,0,0,0,1919,1892,1,0, - 0,0,1919,1896,1,0,0,0,1919,1913,1,0,0,0,1919,1914,1,0,0,0,1919,1915,1,0, - 0,0,1920,1928,1,0,0,0,1921,1922,10,4,0,0,1922,1923,5,374,0,0,1923,1924, - 3,268,134,0,1924,1925,5,375,0,0,1925,1927,1,0,0,0,1926,1921,1,0,0,0,1927, - 1930,1,0,0,0,1928,1926,1,0,0,0,1928,1929,1,0,0,0,1929,271,1,0,0,0,1930, - 1928,1,0,0,0,1931,1935,3,350,175,0,1932,1935,3,352,176,0,1933,1935,3,314, - 157,0,1934,1931,1,0,0,0,1934,1932,1,0,0,0,1934,1933,1,0,0,0,1935,273,1, - 0,0,0,1936,1937,3,314,157,0,1937,275,1,0,0,0,1938,1939,3,306,153,0,1939, - 277,1,0,0,0,1940,1943,3,306,153,0,1941,1943,3,274,137,0,1942,1940,1,0,0, - 0,1942,1941,1,0,0,0,1943,279,1,0,0,0,1944,1947,5,267,0,0,1945,1948,3,282, - 141,0,1946,1948,3,286,143,0,1947,1945,1,0,0,0,1947,1946,1,0,0,0,1947,1948, - 1,0,0,0,1948,281,1,0,0,0,1949,1951,3,284,142,0,1950,1952,3,288,144,0,1951, - 1950,1,0,0,0,1951,1952,1,0,0,0,1952,283,1,0,0,0,1953,1954,3,290,145,0,1954, - 1955,3,292,146,0,1955,1957,1,0,0,0,1956,1953,1,0,0,0,1957,1958,1,0,0,0, - 1958,1956,1,0,0,0,1958,1959,1,0,0,0,1959,285,1,0,0,0,1960,1963,3,288,144, - 0,1961,1964,3,284,142,0,1962,1964,3,288,144,0,1963,1961,1,0,0,0,1963,1962, - 1,0,0,0,1963,1964,1,0,0,0,1964,287,1,0,0,0,1965,1966,3,290,145,0,1966,1967, - 3,292,146,0,1967,1968,5,343,0,0,1968,1969,3,292,146,0,1969,289,1,0,0,0, - 1970,1972,7,33,0,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972,1973,1,0,0, - 0,1973,1976,7,34,0,0,1974,1976,5,397,0,0,1975,1971,1,0,0,0,1975,1974,1, - 0,0,0,1976,291,1,0,0,0,1977,1980,3,306,153,0,1978,1980,3,350,175,0,1979, - 1977,1,0,0,0,1979,1978,1,0,0,0,1980,293,1,0,0,0,1981,1983,5,183,0,0,1982, - 1981,1,0,0,0,1982,1983,1,0,0,0,1983,1984,1,0,0,0,1984,1986,3,306,153,0, - 1985,1987,3,302,151,0,1986,1985,1,0,0,0,1986,1987,1,0,0,0,1987,295,1,0, - 0,0,1988,1990,5,183,0,0,1989,1988,1,0,0,0,1989,1990,1,0,0,0,1990,1991,1, - 0,0,0,1991,1993,3,306,153,0,1992,1994,3,302,151,0,1993,1992,1,0,0,0,1993, - 1994,1,0,0,0,1994,297,1,0,0,0,1995,1996,3,306,153,0,1996,1997,3,300,150, - 0,1997,299,1,0,0,0,1998,1999,5,284,0,0,1999,2001,3,306,153,0,2000,1998, - 1,0,0,0,2001,2002,1,0,0,0,2002,2000,1,0,0,0,2002,2003,1,0,0,0,2003,2006, - 1,0,0,0,2004,2006,1,0,0,0,2005,2000,1,0,0,0,2005,2004,1,0,0,0,2006,301, - 1,0,0,0,2007,2008,5,376,0,0,2008,2009,3,304,152,0,2009,2010,5,377,0,0,2010, - 303,1,0,0,0,2011,2016,3,306,153,0,2012,2013,5,380,0,0,2013,2015,3,306,153, - 0,2014,2012,1,0,0,0,2015,2018,1,0,0,0,2016,2014,1,0,0,0,2016,2017,1,0,0, - 0,2017,305,1,0,0,0,2018,2016,1,0,0,0,2019,2023,3,308,154,0,2020,2023,3, - 310,155,0,2021,2023,3,352,176,0,2022,2019,1,0,0,0,2022,2020,1,0,0,0,2022, - 2021,1,0,0,0,2023,307,1,0,0,0,2024,2025,7,35,0,0,2025,309,1,0,0,0,2026, - 2027,5,397,0,0,2027,311,1,0,0,0,2028,2029,5,358,0,0,2029,2030,3,260,130, - 0,2030,2031,5,339,0,0,2031,2032,3,260,130,0,2032,313,1,0,0,0,2033,2038, - 3,306,153,0,2034,2035,5,373,0,0,2035,2037,3,306,153,0,2036,2034,1,0,0,0, - 2037,2040,1,0,0,0,2038,2039,1,0,0,0,2038,2036,1,0,0,0,2039,315,1,0,0,0, - 2040,2038,1,0,0,0,2041,2042,5,361,0,0,2042,2043,3,322,161,0,2043,317,1, - 0,0,0,2044,2045,5,58,0,0,2045,2046,5,294,0,0,2046,2047,5,241,0,0,2047,319, - 1,0,0,0,2048,2049,5,58,0,0,2049,2050,5,241,0,0,2050,321,1,0,0,0,2051,2052, - 5,376,0,0,2052,2057,3,324,162,0,2053,2054,5,380,0,0,2054,2056,3,324,162, - 0,2055,2053,1,0,0,0,2056,2059,1,0,0,0,2057,2055,1,0,0,0,2057,2058,1,0,0, - 0,2058,2060,1,0,0,0,2059,2057,1,0,0,0,2060,2061,5,377,0,0,2061,323,1,0, - 0,0,2062,2067,3,326,163,0,2063,2065,5,365,0,0,2064,2063,1,0,0,0,2064,2065, - 1,0,0,0,2065,2066,1,0,0,0,2066,2068,3,328,164,0,2067,2064,1,0,0,0,2067, - 2068,1,0,0,0,2068,325,1,0,0,0,2069,2073,3,306,153,0,2070,2073,3,274,137, - 0,2071,2073,5,397,0,0,2072,2069,1,0,0,0,2072,2070,1,0,0,0,2072,2071,1,0, - 0,0,2073,327,1,0,0,0,2074,2079,5,398,0,0,2075,2079,5,399,0,0,2076,2079, - 3,346,173,0,2077,2079,5,397,0,0,2078,2074,1,0,0,0,2078,2075,1,0,0,0,2078, - 2076,1,0,0,0,2078,2077,1,0,0,0,2079,329,1,0,0,0,2080,2087,5,179,0,0,2081, - 2082,5,371,0,0,2082,2087,5,371,0,0,2083,2087,5,301,0,0,2084,2085,5,370, - 0,0,2085,2087,5,370,0,0,2086,2080,1,0,0,0,2086,2081,1,0,0,0,2086,2083,1, - 0,0,0,2086,2084,1,0,0,0,2087,331,1,0,0,0,2088,2103,5,365,0,0,2089,2103, - 5,366,0,0,2090,2103,5,367,0,0,2091,2092,5,367,0,0,2092,2103,5,365,0,0,2093, - 2094,5,366,0,0,2094,2103,5,365,0,0,2095,2096,5,367,0,0,2096,2103,5,366, - 0,0,2097,2098,5,368,0,0,2098,2103,5,365,0,0,2099,2100,5,367,0,0,2100,2101, - 5,365,0,0,2101,2103,5,366,0,0,2102,2088,1,0,0,0,2102,2089,1,0,0,0,2102, - 2090,1,0,0,0,2102,2091,1,0,0,0,2102,2093,1,0,0,0,2102,2095,1,0,0,0,2102, - 2097,1,0,0,0,2102,2099,1,0,0,0,2103,333,1,0,0,0,2104,2105,5,367,0,0,2105, - 2112,5,367,0,0,2106,2107,5,366,0,0,2107,2112,5,366,0,0,2108,2112,5,371, - 0,0,2109,2112,5,372,0,0,2110,2112,5,370,0,0,2111,2104,1,0,0,0,2111,2106, - 1,0,0,0,2111,2108,1,0,0,0,2111,2109,1,0,0,0,2111,2110,1,0,0,0,2112,335, - 1,0,0,0,2113,2114,7,36,0,0,2114,337,1,0,0,0,2115,2116,7,37,0,0,2116,339, - 1,0,0,0,2117,2130,3,342,171,0,2118,2130,3,344,172,0,2119,2130,3,280,140, - 0,2120,2121,5,389,0,0,2121,2130,3,344,172,0,2122,2130,3,346,173,0,2123, - 2130,5,399,0,0,2124,2130,5,400,0,0,2125,2127,5,294,0,0,2126,2125,1,0,0, - 0,2126,2127,1,0,0,0,2127,2128,1,0,0,0,2128,2130,5,295,0,0,2129,2117,1,0, - 0,0,2129,2118,1,0,0,0,2129,2119,1,0,0,0,2129,2120,1,0,0,0,2129,2122,1,0, - 0,0,2129,2123,1,0,0,0,2129,2124,1,0,0,0,2129,2126,1,0,0,0,2130,341,1,0, - 0,0,2131,2132,5,397,0,0,2132,343,1,0,0,0,2133,2134,5,398,0,0,2134,345,1, - 0,0,0,2135,2136,7,29,0,0,2136,347,1,0,0,0,2137,2138,7,38,0,0,2138,349,1, - 0,0,0,2139,2140,7,39,0,0,2140,351,1,0,0,0,2141,2142,7,40,0,0,2142,353,1, - 0,0,0,248,362,365,367,382,400,404,413,418,425,432,436,445,457,460,467,475, - 480,483,490,498,502,514,522,526,547,551,555,559,568,573,577,581,585,588, - 592,597,603,608,613,616,620,628,636,640,644,648,652,656,660,664,668,670, - 680,688,712,719,725,728,731,741,744,752,764,788,801,806,810,818,822,830, - 840,844,850,854,858,861,870,874,881,884,894,902,910,914,929,948,959,963, - 970,975,981,985,992,996,1000,1004,1012,1016,1021,1027,1033,1036,1040,1051, - 1060,1074,1086,1101,1104,1108,1111,1113,1118,1122,1125,1129,1138,1147,1157, - 1162,1174,1177,1180,1183,1189,1193,1201,1204,1209,1212,1214,1228,1239,1244, - 1252,1255,1258,1263,1265,1267,1272,1275,1279,1282,1285,1297,1304,1315,1344, - 1366,1384,1389,1401,1414,1426,1438,1443,1470,1478,1482,1485,1488,1495,1498, - 1501,1504,1507,1510,1515,1518,1527,1532,1536,1541,1550,1569,1577,1585,1589, - 1593,1603,1629,1637,1649,1671,1673,1681,1683,1687,1695,1704,1710,1723,1728, - 1740,1745,1748,1754,1759,1764,1769,1772,1784,1789,1792,1796,1802,1823,1825, - 1833,1837,1846,1850,1866,1875,1899,1906,1909,1919,1928,1934,1942,1947,1951, - 1958,1963,1971,1975,1979,1982,1986,1989,1993,2002,2005,2016,2022,2038,2057, - 2064,2067,2072,2078,2086,2102,2111,2126,2129]; + 1,135,1,135,1,135,1,135,1,135,3,135,1896,8,135,1,135,1,135,1,135,5,135, + 1901,8,135,10,135,12,135,1904,9,135,3,135,1906,8,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,3,135,1916,8,135,1,135,1,135,1,135,1,135, + 1,135,5,135,1923,8,135,10,135,12,135,1926,9,135,1,136,1,136,1,136,3,136, + 1931,8,136,1,137,1,137,1,138,1,138,1,139,1,139,3,139,1939,8,139,1,140,1, + 140,1,140,3,140,1944,8,140,1,141,1,141,3,141,1948,8,141,1,142,1,142,1,142, + 4,142,1953,8,142,11,142,12,142,1954,1,143,1,143,1,143,3,143,1960,8,143, + 1,144,1,144,1,144,1,144,1,144,1,145,3,145,1968,8,145,1,145,1,145,3,145, + 1972,8,145,1,146,1,146,3,146,1976,8,146,1,147,3,147,1979,8,147,1,147,1, + 147,3,147,1983,8,147,1,148,3,148,1986,8,148,1,148,1,148,3,148,1990,8,148, + 1,149,1,149,1,149,1,150,1,150,4,150,1997,8,150,11,150,12,150,1998,1,150, + 3,150,2002,8,150,1,151,1,151,1,151,1,151,1,152,1,152,1,152,5,152,2011,8, + 152,10,152,12,152,2014,9,152,1,153,1,153,1,153,3,153,2019,8,153,1,154,1, + 154,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157,5,157,2033, + 8,157,10,157,12,157,2036,9,157,1,158,1,158,1,158,1,159,1,159,1,159,1,159, + 1,160,1,160,1,160,1,161,1,161,1,161,1,161,5,161,2052,8,161,10,161,12,161, + 2055,9,161,1,161,1,161,1,162,1,162,3,162,2061,8,162,1,162,3,162,2064,8, + 162,1,163,1,163,1,163,3,163,2069,8,163,1,164,1,164,1,164,1,164,3,164,2075, + 8,164,1,165,1,165,1,165,1,165,1,165,1,165,3,165,2083,8,165,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 3,166,2099,8,166,1,167,1,167,1,167,1,167,1,167,1,167,1,167,3,167,2108,8, + 167,1,168,1,168,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1, + 170,1,170,3,170,2123,8,170,1,170,3,170,2126,8,170,1,171,1,171,1,172,1,172, + 1,173,1,173,1,174,1,174,1,175,1,175,1,176,1,176,1,177,1,177,1,177,1,2034, + 5,158,178,262,268,270,178,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,0,44,2,0,30,30,232,232,3,0,16,16,37, + 37,67,67,4,0,13,13,26,26,64,64,166,166,2,0,12,12,25,25,2,0,250,250,261, + 261,2,0,165,165,342,342,2,0,4,4,117,117,1,0,107,111,3,0,193,193,223,223, + 297,297,11,0,10,10,145,145,151,151,189,190,202,202,224,224,266,267,333, + 333,345,345,347,347,361,362,2,0,366,366,368,368,4,0,226,227,234,234,248, + 248,298,298,2,0,182,182,291,291,2,0,40,40,262,262,3,0,21,21,95,95,176,176, + 3,0,40,40,93,93,262,262,3,0,52,52,89,89,169,169,3,0,65,65,106,106,125,125, + 2,0,11,11,122,122,2,0,92,92,270,270,3,0,241,241,268,268,351,351,4,0,251, + 251,263,263,277,277,321,321,3,0,23,23,56,56,155,155,5,0,24,24,138,139,144, + 144,150,150,300,300,2,0,219,219,324,324,3,0,56,56,135,135,155,155,2,0,8, + 8,30,30,2,0,44,44,72,72,4,0,247,247,297,297,349,349,353,353,2,0,184,184, + 338,338,2,0,176,176,180,180,2,0,374,374,394,395,4,0,32,32,392,392,396,396, + 399,399,2,0,394,395,397,397,1,0,394,395,1,0,403,404,2,0,403,403,406,406, + 4,0,32,32,392,392,394,396,398,399,3,0,296,296,373,374,394,395,2,0,247,247, + 349,349,2,0,176,176,233,233,28,0,58,58,76,76,113,113,170,170,175,175,182, + 182,186,186,200,201,207,207,209,209,216,216,223,223,256,256,259,259,273, + 273,277,277,287,287,290,290,308,308,314,315,318,318,321,321,327,327,336, + 337,345,346,350,350,355,355,369,369,4,0,175,239,241,314,316,337,339,369, + 1,0,4,174,2326,0,356,1,0,0,0,2,359,1,0,0,0,4,369,1,0,0,0,6,384,1,0,0,0, + 8,386,1,0,0,0,10,402,1,0,0,0,12,406,1,0,0,0,14,408,1,0,0,0,16,411,1,0,0, + 0,18,422,1,0,0,0,20,430,1,0,0,0,22,438,1,0,0,0,24,440,1,0,0,0,26,485,1, + 0,0,0,28,487,1,0,0,0,30,494,1,0,0,0,32,498,1,0,0,0,34,502,1,0,0,0,36,506, + 1,0,0,0,38,549,1,0,0,0,40,553,1,0,0,0,42,555,1,0,0,0,44,596,1,0,0,0,46, + 610,1,0,0,0,48,612,1,0,0,0,50,622,1,0,0,0,52,624,1,0,0,0,54,672,1,0,0,0, + 56,674,1,0,0,0,58,678,1,0,0,0,60,686,1,0,0,0,62,694,1,0,0,0,64,698,1,0, + 0,0,66,705,1,0,0,0,68,733,1,0,0,0,70,735,1,0,0,0,72,738,1,0,0,0,74,748, + 1,0,0,0,76,750,1,0,0,0,78,756,1,0,0,0,80,758,1,0,0,0,82,766,1,0,0,0,84, + 774,1,0,0,0,86,776,1,0,0,0,88,780,1,0,0,0,90,784,1,0,0,0,92,808,1,0,0,0, + 94,812,1,0,0,0,96,814,1,0,0,0,98,826,1,0,0,0,100,832,1,0,0,0,102,834,1, + 0,0,0,104,839,1,0,0,0,106,850,1,0,0,0,108,868,1,0,0,0,110,888,1,0,0,0,112, + 899,1,0,0,0,114,901,1,0,0,0,116,914,1,0,0,0,118,921,1,0,0,0,120,924,1,0, + 0,0,122,933,1,0,0,0,124,937,1,0,0,0,126,941,1,0,0,0,128,944,1,0,0,0,130, + 952,1,0,0,0,132,957,1,0,0,0,134,974,1,0,0,0,136,981,1,0,0,0,138,991,1,0, + 0,0,140,1000,1,0,0,0,142,1010,1,0,0,0,144,1029,1,0,0,0,146,1031,1,0,0,0, + 148,1044,1,0,0,0,150,1047,1,0,0,0,152,1056,1,0,0,0,154,1067,1,0,0,0,156, + 1080,1,0,0,0,158,1115,1,0,0,0,160,1134,1,0,0,0,162,1143,1,0,0,0,164,1152, + 1,0,0,0,166,1171,1,0,0,0,168,1191,1,0,0,0,170,1193,1,0,0,0,172,1216,1,0, + 0,0,174,1230,1,0,0,0,176,1232,1,0,0,0,178,1246,1,0,0,0,180,1272,1,0,0,0, + 182,1317,1,0,0,0,184,1319,1,0,0,0,186,1321,1,0,0,0,188,1327,1,0,0,0,190, + 1329,1,0,0,0,192,1334,1,0,0,0,194,1339,1,0,0,0,196,1351,1,0,0,0,198,1368, + 1,0,0,0,200,1370,1,0,0,0,202,1372,1,0,0,0,204,1391,1,0,0,0,206,1393,1,0, + 0,0,208,1396,1,0,0,0,210,1445,1,0,0,0,212,1447,1,0,0,0,214,1450,1,0,0,0, + 216,1452,1,0,0,0,218,1459,1,0,0,0,220,1461,1,0,0,0,222,1463,1,0,0,0,224, + 1466,1,0,0,0,226,1475,1,0,0,0,228,1480,1,0,0,0,230,1494,1,0,0,0,232,1522, + 1,0,0,0,234,1532,1,0,0,0,236,1540,1,0,0,0,238,1545,1,0,0,0,240,1571,1,0, + 0,0,242,1573,1,0,0,0,244,1582,1,0,0,0,246,1593,1,0,0,0,248,1605,1,0,0,0, + 250,1631,1,0,0,0,252,1633,1,0,0,0,254,1651,1,0,0,0,256,1653,1,0,0,0,258, + 1658,1,0,0,0,260,1661,1,0,0,0,262,1675,1,0,0,0,264,1761,1,0,0,0,266,1792, + 1,0,0,0,268,1798,1,0,0,0,270,1915,1,0,0,0,272,1930,1,0,0,0,274,1932,1,0, + 0,0,276,1934,1,0,0,0,278,1938,1,0,0,0,280,1940,1,0,0,0,282,1945,1,0,0,0, + 284,1952,1,0,0,0,286,1956,1,0,0,0,288,1961,1,0,0,0,290,1971,1,0,0,0,292, + 1975,1,0,0,0,294,1978,1,0,0,0,296,1985,1,0,0,0,298,1991,1,0,0,0,300,2001, + 1,0,0,0,302,2003,1,0,0,0,304,2007,1,0,0,0,306,2018,1,0,0,0,308,2020,1,0, + 0,0,310,2022,1,0,0,0,312,2024,1,0,0,0,314,2029,1,0,0,0,316,2037,1,0,0,0, + 318,2040,1,0,0,0,320,2044,1,0,0,0,322,2047,1,0,0,0,324,2058,1,0,0,0,326, + 2068,1,0,0,0,328,2074,1,0,0,0,330,2082,1,0,0,0,332,2098,1,0,0,0,334,2107, + 1,0,0,0,336,2109,1,0,0,0,338,2111,1,0,0,0,340,2125,1,0,0,0,342,2127,1,0, + 0,0,344,2129,1,0,0,0,346,2131,1,0,0,0,348,2133,1,0,0,0,350,2135,1,0,0,0, + 352,2137,1,0,0,0,354,2139,1,0,0,0,356,357,3,2,1,0,357,358,5,0,0,1,358,1, + 1,0,0,0,359,360,3,4,2,0,360,361,5,0,0,1,361,3,1,0,0,0,362,364,3,6,3,0,363, + 365,5,386,0,0,364,363,1,0,0,0,364,365,1,0,0,0,365,368,1,0,0,0,366,368,3, + 8,4,0,367,362,1,0,0,0,367,366,1,0,0,0,368,371,1,0,0,0,369,367,1,0,0,0,369, + 370,1,0,0,0,370,5,1,0,0,0,371,369,1,0,0,0,372,385,3,10,5,0,373,385,3,12, + 6,0,374,385,3,14,7,0,375,385,3,16,8,0,376,385,3,22,11,0,377,385,3,26,13, + 0,378,385,3,28,14,0,379,385,3,30,15,0,380,385,3,32,16,0,381,385,3,34,17, + 0,382,385,3,36,18,0,383,385,3,38,19,0,384,372,1,0,0,0,384,373,1,0,0,0,384, + 374,1,0,0,0,384,375,1,0,0,0,384,376,1,0,0,0,384,377,1,0,0,0,384,378,1,0, + 0,0,384,379,1,0,0,0,384,380,1,0,0,0,384,381,1,0,0,0,384,382,1,0,0,0,384, + 383,1,0,0,0,385,7,1,0,0,0,386,387,5,386,0,0,387,9,1,0,0,0,388,403,3,40, + 20,0,389,403,3,104,52,0,390,403,3,106,53,0,391,403,3,108,54,0,392,403,3, + 102,51,0,393,403,3,114,57,0,394,403,3,128,64,0,395,403,3,130,65,0,396,403, + 3,132,66,0,397,403,3,134,67,0,398,403,3,136,68,0,399,403,3,138,69,0,400, + 403,3,140,70,0,401,403,3,142,71,0,402,388,1,0,0,0,402,389,1,0,0,0,402,390, + 1,0,0,0,402,391,1,0,0,0,402,392,1,0,0,0,402,393,1,0,0,0,402,394,1,0,0,0, + 402,395,1,0,0,0,402,396,1,0,0,0,402,397,1,0,0,0,402,398,1,0,0,0,402,399, + 1,0,0,0,402,400,1,0,0,0,402,401,1,0,0,0,403,11,1,0,0,0,404,407,3,158,79, + 0,405,407,3,144,72,0,406,404,1,0,0,0,406,405,1,0,0,0,407,13,1,0,0,0,408, + 409,7,0,0,0,409,410,3,314,157,0,410,15,1,0,0,0,411,415,5,244,0,0,412,416, + 3,18,9,0,413,414,5,100,0,0,414,416,5,249,0,0,415,412,1,0,0,0,415,413,1, + 0,0,0,415,416,1,0,0,0,416,420,1,0,0,0,417,421,3,12,6,0,418,421,3,146,73, + 0,419,421,3,156,78,0,420,417,1,0,0,0,420,418,1,0,0,0,420,419,1,0,0,0,421, + 17,1,0,0,0,422,427,3,20,10,0,423,424,5,385,0,0,424,426,3,20,10,0,425,423, + 1,0,0,0,426,429,1,0,0,0,427,425,1,0,0,0,427,428,1,0,0,0,428,19,1,0,0,0, + 429,427,1,0,0,0,430,431,7,1,0,0,431,21,1,0,0,0,432,434,5,160,0,0,433,435, + 5,12,0,0,434,433,1,0,0,0,434,435,1,0,0,0,435,436,1,0,0,0,436,439,3,314, + 157,0,437,439,3,24,12,0,438,432,1,0,0,0,438,437,1,0,0,0,439,23,1,0,0,0, + 440,441,5,160,0,0,441,442,5,83,0,0,442,447,3,314,157,0,443,444,5,385,0, + 0,444,446,3,314,157,0,445,443,1,0,0,0,446,449,1,0,0,0,447,445,1,0,0,0,447, + 448,1,0,0,0,448,25,1,0,0,0,449,447,1,0,0,0,450,451,5,330,0,0,451,486,7, + 2,0,0,452,453,5,330,0,0,453,454,5,220,0,0,454,486,7,3,0,0,455,456,5,330, + 0,0,456,459,5,148,0,0,457,458,7,4,0,0,458,460,3,314,157,0,459,457,1,0,0, + 0,459,460,1,0,0,0,460,462,1,0,0,0,461,463,3,266,133,0,462,461,1,0,0,0,462, + 463,1,0,0,0,463,486,1,0,0,0,464,465,5,330,0,0,465,466,5,20,0,0,466,467, + 7,4,0,0,467,469,3,314,157,0,468,470,3,266,133,0,469,468,1,0,0,0,469,470, + 1,0,0,0,470,486,1,0,0,0,471,472,5,330,0,0,472,473,5,217,0,0,473,474,7,5, + 0,0,474,486,3,314,157,0,475,477,5,330,0,0,476,478,5,357,0,0,477,476,1,0, + 0,0,477,478,1,0,0,0,478,479,1,0,0,0,479,486,5,50,0,0,480,482,5,330,0,0, + 481,483,5,251,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484,486, + 5,83,0,0,485,450,1,0,0,0,485,452,1,0,0,0,485,455,1,0,0,0,485,464,1,0,0, + 0,485,471,1,0,0,0,485,475,1,0,0,0,485,480,1,0,0,0,486,27,1,0,0,0,487,488, + 5,75,0,0,488,489,5,289,0,0,489,492,3,314,157,0,490,491,5,366,0,0,491,493, + 3,322,161,0,492,490,1,0,0,0,492,493,1,0,0,0,493,29,1,0,0,0,494,495,5,158, + 0,0,495,496,5,289,0,0,496,497,3,314,157,0,497,31,1,0,0,0,498,500,5,329, + 0,0,499,501,3,324,162,0,500,499,1,0,0,0,500,501,1,0,0,0,501,33,1,0,0,0, + 502,504,5,319,0,0,503,505,3,326,163,0,504,503,1,0,0,0,504,505,1,0,0,0,505, + 35,1,0,0,0,506,507,7,6,0,0,507,508,5,63,0,0,508,509,3,112,56,0,509,37,1, + 0,0,0,510,511,5,4,0,0,511,512,5,63,0,0,512,513,5,366,0,0,513,516,5,407, + 0,0,514,515,5,183,0,0,515,517,3,314,157,0,516,514,1,0,0,0,516,517,1,0,0, + 0,517,550,1,0,0,0,518,519,5,4,0,0,519,520,5,42,0,0,520,521,5,366,0,0,521, + 524,5,407,0,0,522,523,5,183,0,0,523,525,3,314,157,0,524,522,1,0,0,0,524, + 525,1,0,0,0,525,528,1,0,0,0,526,527,5,118,0,0,527,529,3,314,157,0,528,526, + 1,0,0,0,528,529,1,0,0,0,529,550,1,0,0,0,530,531,5,4,0,0,531,532,7,7,0,0, + 532,533,5,366,0,0,533,534,5,407,0,0,534,535,5,118,0,0,535,550,3,314,157, + 0,536,537,5,4,0,0,537,538,5,112,0,0,538,550,5,407,0,0,539,540,5,4,0,0,540, + 541,5,35,0,0,541,542,5,42,0,0,542,543,5,366,0,0,543,544,5,407,0,0,544,545, + 5,118,0,0,545,546,3,314,157,0,546,547,5,68,0,0,547,548,3,314,157,0,548, + 550,1,0,0,0,549,510,1,0,0,0,549,518,1,0,0,0,549,530,1,0,0,0,549,536,1,0, + 0,0,549,539,1,0,0,0,550,39,1,0,0,0,551,554,3,42,21,0,552,554,3,44,22,0, + 553,551,1,0,0,0,553,552,1,0,0,0,554,41,1,0,0,0,555,557,5,217,0,0,556,558, + 5,149,0,0,557,556,1,0,0,0,557,558,1,0,0,0,558,559,1,0,0,0,559,561,5,342, + 0,0,560,562,3,318,159,0,561,560,1,0,0,0,561,562,1,0,0,0,562,563,1,0,0,0, + 563,564,3,98,49,0,564,565,5,381,0,0,565,570,3,46,23,0,566,567,5,385,0,0, + 567,569,3,46,23,0,568,566,1,0,0,0,569,572,1,0,0,0,570,568,1,0,0,0,570,571, + 1,0,0,0,571,575,1,0,0,0,572,570,1,0,0,0,573,574,5,385,0,0,574,576,3,80, + 40,0,575,573,1,0,0,0,575,576,1,0,0,0,576,579,1,0,0,0,577,578,5,385,0,0, + 578,580,3,82,41,0,579,577,1,0,0,0,579,580,1,0,0,0,580,583,1,0,0,0,581,582, + 5,385,0,0,582,584,3,86,43,0,583,581,1,0,0,0,583,584,1,0,0,0,584,585,1,0, + 0,0,585,587,5,382,0,0,586,588,3,70,35,0,587,586,1,0,0,0,587,588,1,0,0,0, + 588,590,1,0,0,0,589,591,3,88,44,0,590,589,1,0,0,0,590,591,1,0,0,0,591,592, + 1,0,0,0,592,594,3,316,158,0,593,595,3,96,48,0,594,593,1,0,0,0,594,595,1, + 0,0,0,595,43,1,0,0,0,596,597,5,217,0,0,597,599,5,342,0,0,598,600,3,318, + 159,0,599,598,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,602,3,98,49,0, + 602,605,3,316,158,0,603,604,5,183,0,0,604,606,3,158,79,0,605,603,1,0,0, + 0,605,606,1,0,0,0,606,45,1,0,0,0,607,611,3,48,24,0,608,611,3,72,36,0,609, + 611,3,76,38,0,610,607,1,0,0,0,610,608,1,0,0,0,610,609,1,0,0,0,611,47,1, + 0,0,0,612,613,3,50,25,0,613,615,3,54,27,0,614,616,3,68,34,0,615,614,1,0, + 0,0,615,616,1,0,0,0,616,618,1,0,0,0,617,619,3,70,35,0,618,617,1,0,0,0,618, + 619,1,0,0,0,619,49,1,0,0,0,620,623,3,314,157,0,621,623,3,260,130,0,622, + 620,1,0,0,0,622,621,1,0,0,0,623,51,1,0,0,0,624,625,5,381,0,0,625,630,3, + 50,25,0,626,627,5,385,0,0,627,629,3,50,25,0,628,626,1,0,0,0,629,632,1,0, + 0,0,630,628,1,0,0,0,630,631,1,0,0,0,631,633,1,0,0,0,632,630,1,0,0,0,633, + 634,5,382,0,0,634,53,1,0,0,0,635,673,7,8,0,0,636,638,7,9,0,0,637,639,3, + 56,28,0,638,637,1,0,0,0,638,639,1,0,0,0,639,673,1,0,0,0,640,642,5,346,0, + 0,641,643,3,56,28,0,642,641,1,0,0,0,642,643,1,0,0,0,643,650,1,0,0,0,644, + 646,7,10,0,0,645,647,5,280,0,0,646,645,1,0,0,0,646,647,1,0,0,0,647,648, + 1,0,0,0,648,649,5,345,0,0,649,651,5,174,0,0,650,644,1,0,0,0,650,651,1,0, + 0,0,651,673,1,0,0,0,652,654,7,11,0,0,653,655,3,58,29,0,654,653,1,0,0,0, + 654,655,1,0,0,0,655,673,1,0,0,0,656,658,7,12,0,0,657,659,3,62,31,0,658, + 657,1,0,0,0,658,659,1,0,0,0,659,673,1,0,0,0,660,662,5,76,0,0,661,663,3, + 64,32,0,662,661,1,0,0,0,662,663,1,0,0,0,663,673,1,0,0,0,664,666,5,325,0, + 0,665,667,3,66,33,0,666,665,1,0,0,0,666,667,1,0,0,0,667,673,1,0,0,0,668, + 670,5,114,0,0,669,671,3,60,30,0,670,669,1,0,0,0,670,671,1,0,0,0,671,673, + 1,0,0,0,672,635,1,0,0,0,672,636,1,0,0,0,672,640,1,0,0,0,672,652,1,0,0,0, + 672,656,1,0,0,0,672,660,1,0,0,0,672,664,1,0,0,0,672,668,1,0,0,0,673,55, + 1,0,0,0,674,675,5,381,0,0,675,676,3,344,172,0,676,677,5,382,0,0,677,57, + 1,0,0,0,678,679,5,381,0,0,679,682,3,344,172,0,680,681,5,385,0,0,681,683, + 3,344,172,0,682,680,1,0,0,0,682,683,1,0,0,0,683,684,1,0,0,0,684,685,5,382, + 0,0,685,59,1,0,0,0,686,687,5,381,0,0,687,690,3,342,171,0,688,689,5,385, + 0,0,689,691,3,342,171,0,690,688,1,0,0,0,690,691,1,0,0,0,691,692,1,0,0,0, + 692,693,5,382,0,0,693,61,1,0,0,0,694,695,5,372,0,0,695,696,3,54,27,0,696, + 697,5,371,0,0,697,63,1,0,0,0,698,699,5,372,0,0,699,700,3,54,27,0,700,701, + 5,385,0,0,701,702,3,54,27,0,702,703,1,0,0,0,703,704,5,371,0,0,704,65,1, + 0,0,0,705,706,5,372,0,0,706,707,3,50,25,0,707,714,3,54,27,0,708,709,5,385, + 0,0,709,710,3,50,25,0,710,711,3,54,27,0,711,713,1,0,0,0,712,708,1,0,0,0, + 713,716,1,0,0,0,714,712,1,0,0,0,714,715,1,0,0,0,715,717,1,0,0,0,716,714, + 1,0,0,0,717,718,5,371,0,0,718,67,1,0,0,0,719,720,5,213,0,0,720,722,3,84, + 42,0,721,719,1,0,0,0,721,722,1,0,0,0,722,723,1,0,0,0,723,724,5,316,0,0, + 724,727,5,68,0,0,725,726,5,296,0,0,726,728,5,34,0,0,727,725,1,0,0,0,727, + 728,1,0,0,0,728,734,1,0,0,0,729,731,5,296,0,0,730,729,1,0,0,0,730,731,1, + 0,0,0,731,732,1,0,0,0,732,734,5,297,0,0,733,721,1,0,0,0,733,730,1,0,0,0, + 734,69,1,0,0,0,735,736,5,18,0,0,736,737,5,402,0,0,737,71,1,0,0,0,738,739, + 3,50,25,0,739,740,3,54,27,0,740,743,5,285,0,0,741,742,5,250,0,0,742,744, + 3,74,37,0,743,741,1,0,0,0,743,744,1,0,0,0,744,746,1,0,0,0,745,747,5,167, + 0,0,746,745,1,0,0,0,746,747,1,0,0,0,747,73,1,0,0,0,748,749,5,402,0,0,749, + 75,1,0,0,0,750,751,3,50,25,0,751,752,5,183,0,0,752,754,3,78,39,0,753,755, + 3,70,35,0,754,753,1,0,0,0,754,755,1,0,0,0,755,77,1,0,0,0,756,757,3,260, + 130,0,757,79,1,0,0,0,758,759,5,168,0,0,759,760,5,249,0,0,760,761,3,260, + 130,0,761,762,5,183,0,0,762,763,3,260,130,0,763,81,1,0,0,0,764,765,5,213, + 0,0,765,767,3,84,42,0,766,764,1,0,0,0,766,767,1,0,0,0,767,768,1,0,0,0,768, + 769,5,316,0,0,769,770,5,68,0,0,770,771,3,52,26,0,771,772,5,296,0,0,772, + 773,5,34,0,0,773,83,1,0,0,0,774,775,3,306,153,0,775,85,1,0,0,0,776,777, + 5,313,0,0,777,778,5,249,0,0,778,779,5,340,0,0,779,87,1,0,0,0,780,781,5, + 94,0,0,781,782,5,195,0,0,782,783,3,90,45,0,783,89,1,0,0,0,784,785,5,381, + 0,0,785,790,3,92,46,0,786,787,5,385,0,0,787,789,3,92,46,0,788,786,1,0,0, + 0,789,792,1,0,0,0,790,788,1,0,0,0,790,791,1,0,0,0,791,793,1,0,0,0,792,790, + 1,0,0,0,793,794,5,382,0,0,794,91,1,0,0,0,795,809,3,278,139,0,796,797,3, + 306,153,0,797,798,5,381,0,0,798,803,3,94,47,0,799,800,5,385,0,0,800,802, + 3,94,47,0,801,799,1,0,0,0,802,805,1,0,0,0,803,801,1,0,0,0,803,804,1,0,0, + 0,804,806,1,0,0,0,805,803,1,0,0,0,806,807,5,382,0,0,807,809,1,0,0,0,808, + 795,1,0,0,0,808,796,1,0,0,0,809,93,1,0,0,0,810,813,3,278,139,0,811,813, + 3,340,170,0,812,810,1,0,0,0,812,811,1,0,0,0,813,95,1,0,0,0,814,815,5,278, + 0,0,815,824,3,98,49,0,816,820,5,381,0,0,817,819,3,100,50,0,818,817,1,0, + 0,0,819,822,1,0,0,0,820,818,1,0,0,0,820,821,1,0,0,0,821,823,1,0,0,0,822, + 820,1,0,0,0,823,825,5,382,0,0,824,816,1,0,0,0,824,825,1,0,0,0,825,97,1, + 0,0,0,826,827,3,314,157,0,827,99,1,0,0,0,828,829,7,13,0,0,829,833,7,14, + 0,0,830,831,7,15,0,0,831,833,7,16,0,0,832,828,1,0,0,0,832,830,1,0,0,0,833, + 101,1,0,0,0,834,835,5,217,0,0,835,836,5,12,0,0,836,837,3,314,157,0,837, + 838,3,316,158,0,838,103,1,0,0,0,839,840,5,217,0,0,840,842,5,25,0,0,841, + 843,3,318,159,0,842,841,1,0,0,0,842,843,1,0,0,0,843,844,1,0,0,0,844,846, + 3,314,157,0,845,847,3,70,35,0,846,845,1,0,0,0,846,847,1,0,0,0,847,848,1, + 0,0,0,848,849,3,316,158,0,849,105,1,0,0,0,850,852,5,217,0,0,851,853,5,149, + 0,0,852,851,1,0,0,0,852,853,1,0,0,0,853,854,1,0,0,0,854,856,5,165,0,0,855, + 857,3,318,159,0,856,855,1,0,0,0,856,857,1,0,0,0,857,858,1,0,0,0,858,860, + 3,314,157,0,859,861,3,52,26,0,860,859,1,0,0,0,860,861,1,0,0,0,861,863,1, + 0,0,0,862,864,3,70,35,0,863,862,1,0,0,0,863,864,1,0,0,0,864,865,1,0,0,0, + 865,866,5,183,0,0,866,867,3,158,79,0,867,107,1,0,0,0,868,872,5,217,0,0, + 869,873,5,149,0,0,870,871,5,149,0,0,871,873,5,339,0,0,872,869,1,0,0,0,872, + 870,1,0,0,0,872,873,1,0,0,0,873,874,1,0,0,0,874,876,5,252,0,0,875,877,3, + 318,159,0,876,875,1,0,0,0,876,877,1,0,0,0,877,878,1,0,0,0,878,879,3,314, + 157,0,879,880,5,183,0,0,880,883,3,306,153,0,881,882,5,274,0,0,882,884,7, + 17,0,0,883,881,1,0,0,0,883,884,1,0,0,0,884,886,1,0,0,0,885,887,3,110,55, + 0,886,885,1,0,0,0,886,887,1,0,0,0,887,109,1,0,0,0,888,889,5,358,0,0,889, + 890,5,63,0,0,890,896,3,112,56,0,891,892,5,385,0,0,892,893,5,63,0,0,893, + 895,3,112,56,0,894,891,1,0,0,0,895,898,1,0,0,0,896,894,1,0,0,0,896,897, + 1,0,0,0,897,111,1,0,0,0,898,896,1,0,0,0,899,900,5,402,0,0,900,113,1,0,0, + 0,901,902,5,178,0,0,902,904,5,342,0,0,903,905,3,320,160,0,904,903,1,0,0, + 0,904,905,1,0,0,0,905,906,1,0,0,0,906,912,3,314,157,0,907,913,3,116,58, + 0,908,913,3,118,59,0,909,913,3,120,60,0,910,913,3,122,61,0,911,913,3,124, + 62,0,912,907,1,0,0,0,912,908,1,0,0,0,912,909,1,0,0,0,912,910,1,0,0,0,912, + 911,1,0,0,0,913,115,1,0,0,0,914,916,5,118,0,0,915,917,3,314,157,0,916,915, + 1,0,0,0,916,917,1,0,0,0,917,918,1,0,0,0,918,919,5,348,0,0,919,920,3,314, + 157,0,920,117,1,0,0,0,921,922,5,329,0,0,922,923,3,322,161,0,923,119,1,0, + 0,0,924,925,5,4,0,0,925,926,5,213,0,0,926,927,3,84,42,0,927,928,5,316,0, + 0,928,929,5,68,0,0,929,931,3,52,26,0,930,932,3,126,63,0,931,930,1,0,0,0, + 931,932,1,0,0,0,932,121,1,0,0,0,933,934,5,235,0,0,934,935,5,213,0,0,935, + 936,3,84,42,0,936,123,1,0,0,0,937,938,5,4,0,0,938,939,5,352,0,0,939,940, + 3,52,26,0,940,125,1,0,0,0,941,942,5,296,0,0,942,943,5,34,0,0,943,127,1, + 0,0,0,944,945,5,178,0,0,945,946,5,165,0,0,946,950,3,314,157,0,947,951,3, + 116,58,0,948,949,5,183,0,0,949,951,3,158,79,0,950,947,1,0,0,0,950,948,1, + 0,0,0,951,129,1,0,0,0,952,953,5,178,0,0,953,954,5,25,0,0,954,955,3,314, + 157,0,955,956,3,118,59,0,956,131,1,0,0,0,957,961,5,178,0,0,958,962,5,149, + 0,0,959,960,5,149,0,0,960,962,5,339,0,0,961,958,1,0,0,0,961,959,1,0,0,0, + 961,962,1,0,0,0,962,963,1,0,0,0,963,965,5,252,0,0,964,966,3,320,160,0,965, + 964,1,0,0,0,965,966,1,0,0,0,966,967,1,0,0,0,967,968,3,314,157,0,968,969, + 5,183,0,0,969,972,3,306,153,0,970,971,5,274,0,0,971,973,7,17,0,0,972,970, + 1,0,0,0,972,973,1,0,0,0,973,133,1,0,0,0,974,975,5,235,0,0,975,977,5,12, + 0,0,976,978,3,320,160,0,977,976,1,0,0,0,977,978,1,0,0,0,978,979,1,0,0,0, + 979,980,3,314,157,0,980,135,1,0,0,0,981,983,5,235,0,0,982,984,5,149,0,0, + 983,982,1,0,0,0,983,984,1,0,0,0,984,985,1,0,0,0,985,987,5,342,0,0,986,988, + 3,320,160,0,987,986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,990,3,314, + 157,0,990,137,1,0,0,0,991,992,5,235,0,0,992,994,5,25,0,0,993,995,3,320, + 160,0,994,993,1,0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,998,3,314,157, + 0,997,999,7,18,0,0,998,997,1,0,0,0,998,999,1,0,0,0,999,139,1,0,0,0,1000, + 1002,5,235,0,0,1001,1003,5,149,0,0,1002,1001,1,0,0,0,1002,1003,1,0,0,0, + 1003,1004,1,0,0,0,1004,1006,5,165,0,0,1005,1007,3,320,160,0,1006,1005,1, + 0,0,0,1006,1007,1,0,0,0,1007,1008,1,0,0,0,1008,1009,3,314,157,0,1009,141, + 1,0,0,0,1010,1014,5,235,0,0,1011,1015,5,149,0,0,1012,1013,5,149,0,0,1013, + 1015,5,339,0,0,1014,1011,1,0,0,0,1014,1012,1,0,0,0,1014,1015,1,0,0,0,1015, + 1016,1,0,0,0,1016,1018,5,252,0,0,1017,1019,3,320,160,0,1018,1017,1,0,0, + 0,1018,1019,1,0,0,0,1019,1020,1,0,0,0,1020,1021,3,314,157,0,1021,143,1, + 0,0,0,1022,1024,5,242,0,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025, + 1,0,0,0,1025,1030,3,146,73,0,1026,1030,3,154,77,0,1027,1028,5,242,0,0,1028, + 1030,3,156,78,0,1029,1023,1,0,0,0,1029,1026,1,0,0,0,1029,1027,1,0,0,0,1030, + 145,1,0,0,0,1031,1032,5,265,0,0,1032,1033,7,19,0,0,1033,1042,3,314,157, + 0,1034,1036,3,148,74,0,1035,1034,1,0,0,0,1035,1036,1,0,0,0,1036,1038,1, + 0,0,0,1037,1039,3,52,26,0,1038,1037,1,0,0,0,1038,1039,1,0,0,0,1039,1040, + 1,0,0,0,1040,1043,3,158,79,0,1041,1043,3,150,75,0,1042,1035,1,0,0,0,1042, + 1041,1,0,0,0,1043,147,1,0,0,0,1044,1045,5,309,0,0,1045,1046,3,322,161,0, + 1046,149,1,0,0,0,1047,1048,5,360,0,0,1048,1053,3,152,76,0,1049,1050,5,385, + 0,0,1050,1052,3,152,76,0,1051,1049,1,0,0,0,1052,1055,1,0,0,0,1053,1051, + 1,0,0,0,1053,1054,1,0,0,0,1054,151,1,0,0,0,1055,1053,1,0,0,0,1056,1057, + 5,381,0,0,1057,1062,3,340,170,0,1058,1059,5,385,0,0,1059,1061,3,340,170, + 0,1060,1058,1,0,0,0,1061,1064,1,0,0,0,1062,1060,1,0,0,0,1062,1063,1,0,0, + 0,1063,1065,1,0,0,0,1064,1062,1,0,0,0,1065,1066,5,382,0,0,1066,153,1,0, + 0,0,1067,1068,5,187,0,0,1068,1069,5,143,0,0,1069,1070,5,329,0,0,1070,1074, + 5,386,0,0,1071,1072,3,146,73,0,1072,1073,5,386,0,0,1073,1075,1,0,0,0,1074, + 1071,1,0,0,0,1075,1076,1,0,0,0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077, + 1078,1,0,0,0,1078,1079,5,238,0,0,1079,155,1,0,0,0,1080,1081,5,143,0,0,1081, + 1082,5,329,0,0,1082,1086,5,187,0,0,1083,1084,3,146,73,0,1084,1085,5,386, + 0,0,1085,1087,1,0,0,0,1086,1083,1,0,0,0,1087,1088,1,0,0,0,1088,1086,1,0, + 0,0,1088,1089,1,0,0,0,1089,1090,1,0,0,0,1090,1091,5,238,0,0,1091,157,1, + 0,0,0,1092,1093,6,79,-1,0,1093,1116,3,160,80,0,1094,1095,3,162,81,0,1095, + 1096,3,158,79,5,1096,1116,1,0,0,0,1097,1098,5,381,0,0,1098,1099,3,158,79, + 0,1099,1100,5,382,0,0,1100,1116,1,0,0,0,1101,1103,3,170,85,0,1102,1104, + 3,232,116,0,1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,1106,1,0,0,0,1105, + 1107,3,236,118,0,1106,1105,1,0,0,0,1106,1107,1,0,0,0,1107,1116,1,0,0,0, + 1108,1110,3,168,84,0,1109,1111,3,232,116,0,1110,1109,1,0,0,0,1110,1111, + 1,0,0,0,1111,1113,1,0,0,0,1112,1114,3,236,118,0,1113,1112,1,0,0,0,1113, + 1114,1,0,0,0,1114,1116,1,0,0,0,1115,1092,1,0,0,0,1115,1094,1,0,0,0,1115, + 1097,1,0,0,0,1115,1101,1,0,0,0,1115,1108,1,0,0,0,1116,1131,1,0,0,0,1117, + 1118,10,3,0,0,1118,1120,7,20,0,0,1119,1121,5,176,0,0,1120,1119,1,0,0,0, + 1120,1121,1,0,0,0,1121,1122,1,0,0,0,1122,1124,3,158,79,0,1123,1125,3,232, + 116,0,1124,1123,1,0,0,0,1124,1125,1,0,0,0,1125,1127,1,0,0,0,1126,1128,3, + 236,118,0,1127,1126,1,0,0,0,1127,1128,1,0,0,0,1128,1130,1,0,0,0,1129,1117, + 1,0,0,0,1130,1133,1,0,0,0,1131,1129,1,0,0,0,1131,1132,1,0,0,0,1132,159, + 1,0,0,0,1133,1131,1,0,0,0,1134,1135,5,360,0,0,1135,1140,3,260,130,0,1136, + 1137,5,385,0,0,1137,1139,3,260,130,0,1138,1136,1,0,0,0,1139,1142,1,0,0, + 0,1140,1138,1,0,0,0,1140,1141,1,0,0,0,1141,161,1,0,0,0,1142,1140,1,0,0, + 0,1143,1144,5,366,0,0,1144,1149,3,164,82,0,1145,1146,5,385,0,0,1146,1148, + 3,164,82,0,1147,1145,1,0,0,0,1148,1151,1,0,0,0,1149,1147,1,0,0,0,1149,1150, + 1,0,0,0,1150,163,1,0,0,0,1151,1149,1,0,0,0,1152,1164,3,166,83,0,1153,1154, + 5,381,0,0,1154,1159,3,50,25,0,1155,1156,5,385,0,0,1156,1158,3,50,25,0,1157, + 1155,1,0,0,0,1158,1161,1,0,0,0,1159,1157,1,0,0,0,1159,1160,1,0,0,0,1160, + 1162,1,0,0,0,1161,1159,1,0,0,0,1162,1163,5,382,0,0,1163,1165,1,0,0,0,1164, + 1153,1,0,0,0,1164,1165,1,0,0,0,1165,1166,1,0,0,0,1166,1167,5,183,0,0,1167, + 1168,5,381,0,0,1168,1169,3,158,79,0,1169,1170,5,382,0,0,1170,165,1,0,0, + 0,1171,1172,3,306,153,0,1172,167,1,0,0,0,1173,1174,3,170,85,0,1174,1176, + 3,176,88,0,1175,1177,3,206,103,0,1176,1175,1,0,0,0,1176,1177,1,0,0,0,1177, + 1179,1,0,0,0,1178,1180,3,208,104,0,1179,1178,1,0,0,0,1179,1180,1,0,0,0, + 1180,1182,1,0,0,0,1181,1183,3,222,111,0,1182,1181,1,0,0,0,1182,1183,1,0, + 0,0,1183,1185,1,0,0,0,1184,1186,3,224,112,0,1185,1184,1,0,0,0,1185,1186, + 1,0,0,0,1186,1192,1,0,0,0,1187,1188,3,170,85,0,1188,1189,3,176,88,0,1189, + 1190,3,230,115,0,1190,1192,1,0,0,0,1191,1173,1,0,0,0,1191,1187,1,0,0,0, + 1192,169,1,0,0,0,1193,1195,5,328,0,0,1194,1196,3,348,174,0,1195,1194,1, + 0,0,0,1195,1196,1,0,0,0,1196,1206,1,0,0,0,1197,1207,5,392,0,0,1198,1203, + 3,172,86,0,1199,1200,5,385,0,0,1200,1202,3,172,86,0,1201,1199,1,0,0,0,1202, + 1205,1,0,0,0,1203,1201,1,0,0,0,1203,1204,1,0,0,0,1204,1207,1,0,0,0,1205, + 1203,1,0,0,0,1206,1197,1,0,0,0,1206,1198,1,0,0,0,1207,171,1,0,0,0,1208, + 1217,3,174,87,0,1209,1214,3,260,130,0,1210,1212,5,183,0,0,1211,1210,1,0, + 0,0,1211,1212,1,0,0,0,1212,1213,1,0,0,0,1213,1215,3,260,130,0,1214,1211, + 1,0,0,0,1214,1215,1,0,0,0,1215,1217,1,0,0,0,1216,1208,1,0,0,0,1216,1209, + 1,0,0,0,1217,173,1,0,0,0,1218,1219,3,270,135,0,1219,1220,5,307,0,0,1220, + 1221,3,228,114,0,1221,1222,5,183,0,0,1222,1223,3,306,153,0,1223,1231,1, + 0,0,0,1224,1225,3,270,135,0,1225,1226,5,307,0,0,1226,1227,3,298,149,0,1227, + 1228,5,183,0,0,1228,1229,3,306,153,0,1229,1231,1,0,0,0,1230,1218,1,0,0, + 0,1230,1224,1,0,0,0,1231,175,1,0,0,0,1232,1233,5,250,0,0,1233,1234,3,178, + 89,0,1234,177,1,0,0,0,1235,1236,6,89,-1,0,1236,1241,3,180,90,0,1237,1238, + 5,385,0,0,1238,1240,3,180,90,0,1239,1237,1,0,0,0,1240,1243,1,0,0,0,1241, + 1239,1,0,0,0,1241,1242,1,0,0,0,1242,1247,1,0,0,0,1243,1241,1,0,0,0,1244, + 1247,3,190,95,0,1245,1247,3,192,96,0,1246,1235,1,0,0,0,1246,1244,1,0,0, + 0,1246,1245,1,0,0,0,1247,1269,1,0,0,0,1248,1249,10,3,0,0,1249,1250,5,218, + 0,0,1250,1251,5,272,0,0,1251,1268,3,178,89,4,1252,1254,10,4,0,0,1253,1255, + 5,292,0,0,1254,1253,1,0,0,0,1254,1255,1,0,0,0,1255,1257,1,0,0,0,1256,1258, + 7,21,0,0,1257,1256,1,0,0,0,1257,1258,1,0,0,0,1258,1260,1,0,0,0,1259,1261, + 5,306,0,0,1260,1259,1,0,0,0,1260,1261,1,0,0,0,1261,1262,1,0,0,0,1262,1263, + 5,272,0,0,1263,1265,3,178,89,0,1264,1266,3,204,102,0,1265,1264,1,0,0,0, + 1265,1266,1,0,0,0,1266,1268,1,0,0,0,1267,1248,1,0,0,0,1267,1252,1,0,0,0, + 1268,1271,1,0,0,0,1269,1267,1,0,0,0,1269,1270,1,0,0,0,1270,179,1,0,0,0, + 1271,1269,1,0,0,0,1272,1274,3,182,91,0,1273,1275,3,296,148,0,1274,1273, + 1,0,0,0,1274,1275,1,0,0,0,1275,181,1,0,0,0,1276,1278,5,342,0,0,1277,1276, + 1,0,0,0,1277,1278,1,0,0,0,1278,1279,1,0,0,0,1279,1281,3,184,92,0,1280,1282, + 3,186,93,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0,1282,1287,1,0,0,0,1283,1285, + 5,183,0,0,1284,1283,1,0,0,0,1284,1285,1,0,0,0,1285,1286,1,0,0,0,1286,1288, + 3,276,138,0,1287,1284,1,0,0,0,1287,1288,1,0,0,0,1288,1318,1,0,0,0,1289, + 1290,5,275,0,0,1290,1291,5,342,0,0,1291,1292,5,381,0,0,1292,1293,3,272, + 136,0,1293,1294,5,381,0,0,1294,1299,3,260,130,0,1295,1296,5,385,0,0,1296, + 1298,3,260,130,0,1297,1295,1,0,0,0,1298,1301,1,0,0,0,1299,1297,1,0,0,0, + 1299,1300,1,0,0,0,1300,1302,1,0,0,0,1301,1299,1,0,0,0,1302,1303,5,382,0, + 0,1303,1304,5,382,0,0,1304,1318,1,0,0,0,1305,1307,5,275,0,0,1306,1305,1, + 0,0,0,1306,1307,1,0,0,0,1307,1308,1,0,0,0,1308,1309,5,381,0,0,1309,1310, + 3,158,79,0,1310,1311,5,382,0,0,1311,1318,1,0,0,0,1312,1313,5,354,0,0,1313, + 1314,5,381,0,0,1314,1315,3,260,130,0,1315,1316,5,382,0,0,1316,1318,1,0, + 0,0,1317,1277,1,0,0,0,1317,1289,1,0,0,0,1317,1306,1,0,0,0,1317,1312,1,0, + 0,0,1318,183,1,0,0,0,1319,1320,3,314,157,0,1320,185,1,0,0,0,1321,1322,5, + 249,0,0,1322,1323,5,340,0,0,1323,1324,5,183,0,0,1324,1325,5,299,0,0,1325, + 1326,3,188,94,0,1326,187,1,0,0,0,1327,1328,3,260,130,0,1328,189,1,0,0,0, + 1329,1330,5,381,0,0,1330,1331,3,150,75,0,1331,1332,5,382,0,0,1332,1333, + 3,296,148,0,1333,191,1,0,0,0,1334,1335,5,342,0,0,1335,1336,5,381,0,0,1336, + 1337,3,194,97,0,1337,1338,5,382,0,0,1338,193,1,0,0,0,1339,1340,3,196,98, + 0,1340,1341,5,381,0,0,1341,1346,3,198,99,0,1342,1343,5,385,0,0,1343,1345, + 3,198,99,0,1344,1342,1,0,0,0,1345,1348,1,0,0,0,1346,1344,1,0,0,0,1346,1347, + 1,0,0,0,1347,1349,1,0,0,0,1348,1346,1,0,0,0,1349,1350,5,382,0,0,1350,195, + 1,0,0,0,1351,1352,7,22,0,0,1352,197,1,0,0,0,1353,1354,5,342,0,0,1354,1369, + 3,220,110,0,1355,1369,3,202,101,0,1356,1369,3,280,140,0,1357,1358,5,24, + 0,0,1358,1359,5,401,0,0,1359,1360,5,342,0,0,1360,1369,3,220,110,0,1361, + 1362,5,150,0,0,1362,1363,5,401,0,0,1363,1369,3,202,101,0,1364,1365,3,200, + 100,0,1365,1366,5,401,0,0,1366,1367,3,280,140,0,1367,1369,1,0,0,0,1368, + 1353,1,0,0,0,1368,1355,1,0,0,0,1368,1356,1,0,0,0,1368,1357,1,0,0,0,1368, + 1361,1,0,0,0,1368,1364,1,0,0,0,1369,199,1,0,0,0,1370,1371,7,23,0,0,1371, + 201,1,0,0,0,1372,1373,5,31,0,0,1373,1374,5,381,0,0,1374,1375,3,314,157, + 0,1375,1376,5,382,0,0,1376,203,1,0,0,0,1377,1378,5,301,0,0,1378,1392,3, + 262,131,0,1379,1380,5,358,0,0,1380,1381,5,381,0,0,1381,1386,3,314,157,0, + 1382,1383,5,385,0,0,1383,1385,3,314,157,0,1384,1382,1,0,0,0,1385,1388,1, + 0,0,0,1386,1384,1,0,0,0,1386,1387,1,0,0,0,1387,1389,1,0,0,0,1388,1386,1, + 0,0,0,1389,1390,5,382,0,0,1390,1392,1,0,0,0,1391,1377,1,0,0,0,1391,1379, + 1,0,0,0,1392,205,1,0,0,0,1393,1394,5,364,0,0,1394,1395,3,262,131,0,1395, + 207,1,0,0,0,1396,1397,5,255,0,0,1397,1398,5,195,0,0,1398,1403,3,210,105, + 0,1399,1400,5,385,0,0,1400,1402,3,210,105,0,1401,1399,1,0,0,0,1402,1405, + 1,0,0,0,1403,1401,1,0,0,0,1403,1404,1,0,0,0,1404,209,1,0,0,0,1405,1403, + 1,0,0,0,1406,1446,3,260,130,0,1407,1446,3,216,108,0,1408,1409,5,381,0,0, + 1409,1446,5,382,0,0,1410,1411,5,381,0,0,1411,1416,3,260,130,0,1412,1413, + 5,385,0,0,1413,1415,3,260,130,0,1414,1412,1,0,0,0,1415,1418,1,0,0,0,1416, + 1414,1,0,0,0,1416,1417,1,0,0,0,1417,1419,1,0,0,0,1418,1416,1,0,0,0,1419, + 1420,5,382,0,0,1420,1446,1,0,0,0,1421,1422,3,214,107,0,1422,1423,5,381, + 0,0,1423,1428,3,260,130,0,1424,1425,5,385,0,0,1425,1427,3,260,130,0,1426, + 1424,1,0,0,0,1427,1430,1,0,0,0,1428,1426,1,0,0,0,1428,1429,1,0,0,0,1429, + 1431,1,0,0,0,1430,1428,1,0,0,0,1431,1432,5,382,0,0,1432,1446,1,0,0,0,1433, + 1434,3,212,106,0,1434,1435,5,381,0,0,1435,1440,3,210,105,0,1436,1437,5, + 385,0,0,1437,1439,3,210,105,0,1438,1436,1,0,0,0,1439,1442,1,0,0,0,1440, + 1438,1,0,0,0,1440,1441,1,0,0,0,1441,1443,1,0,0,0,1442,1440,1,0,0,0,1443, + 1444,5,382,0,0,1444,1446,1,0,0,0,1445,1406,1,0,0,0,1445,1407,1,0,0,0,1445, + 1408,1,0,0,0,1445,1410,1,0,0,0,1445,1421,1,0,0,0,1445,1433,1,0,0,0,1446, + 211,1,0,0,0,1447,1448,5,256,0,0,1448,1449,5,136,0,0,1449,213,1,0,0,0,1450, + 1451,7,24,0,0,1451,215,1,0,0,0,1452,1453,3,218,109,0,1453,1454,5,381,0, + 0,1454,1455,3,220,110,0,1455,1456,5,385,0,0,1456,1457,3,280,140,0,1457, + 1458,5,382,0,0,1458,217,1,0,0,0,1459,1460,7,25,0,0,1460,219,1,0,0,0,1461, + 1462,3,314,157,0,1462,221,1,0,0,0,1463,1464,5,258,0,0,1464,1465,3,262,131, + 0,1465,223,1,0,0,0,1466,1467,5,365,0,0,1467,1472,3,226,113,0,1468,1469, + 5,385,0,0,1469,1471,3,226,113,0,1470,1468,1,0,0,0,1471,1474,1,0,0,0,1472, + 1470,1,0,0,0,1472,1473,1,0,0,0,1473,225,1,0,0,0,1474,1472,1,0,0,0,1475, + 1476,3,298,149,0,1476,1477,5,183,0,0,1477,1478,3,228,114,0,1478,227,1,0, + 0,0,1479,1481,3,298,149,0,1480,1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482, + 1,0,0,0,1482,1484,5,381,0,0,1483,1485,3,238,119,0,1484,1483,1,0,0,0,1484, + 1485,1,0,0,0,1485,1487,1,0,0,0,1486,1488,3,232,116,0,1487,1486,1,0,0,0, + 1487,1488,1,0,0,0,1488,1490,1,0,0,0,1489,1491,3,254,127,0,1490,1489,1,0, + 0,0,1490,1491,1,0,0,0,1491,1492,1,0,0,0,1492,1493,5,382,0,0,1493,229,1, + 0,0,0,1494,1495,5,282,0,0,1495,1497,5,381,0,0,1496,1498,3,238,119,0,1497, + 1496,1,0,0,0,1497,1498,1,0,0,0,1498,1500,1,0,0,0,1499,1501,3,232,116,0, + 1500,1499,1,0,0,0,1500,1501,1,0,0,0,1501,1503,1,0,0,0,1502,1504,3,242,121, + 0,1503,1502,1,0,0,0,1503,1504,1,0,0,0,1504,1506,1,0,0,0,1505,1507,3,248, + 124,0,1506,1505,1,0,0,0,1506,1507,1,0,0,0,1507,1509,1,0,0,0,1508,1510,3, + 250,125,0,1509,1508,1,0,0,0,1509,1510,1,0,0,0,1510,1512,1,0,0,0,1511,1513, + 3,244,122,0,1512,1511,1,0,0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514, + 1515,3,252,126,0,1515,1520,5,382,0,0,1516,1518,5,183,0,0,1517,1516,1,0, + 0,0,1517,1518,1,0,0,0,1518,1519,1,0,0,0,1519,1521,3,306,153,0,1520,1517, + 1,0,0,0,1520,1521,1,0,0,0,1521,231,1,0,0,0,1522,1523,5,304,0,0,1523,1524, + 5,195,0,0,1524,1529,3,234,117,0,1525,1526,5,385,0,0,1526,1528,3,234,117, + 0,1527,1525,1,0,0,0,1528,1531,1,0,0,0,1529,1527,1,0,0,0,1529,1530,1,0,0, + 0,1530,233,1,0,0,0,1531,1529,1,0,0,0,1532,1534,3,260,130,0,1533,1535,7, + 26,0,0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535,1538,1,0,0,0,1536,1537, + 5,86,0,0,1537,1539,7,27,0,0,1538,1536,1,0,0,0,1538,1539,1,0,0,0,1539,235, + 1,0,0,0,1540,1543,5,279,0,0,1541,1544,5,176,0,0,1542,1544,3,260,130,0,1543, + 1541,1,0,0,0,1543,1542,1,0,0,0,1544,237,1,0,0,0,1545,1546,5,309,0,0,1546, + 1547,5,195,0,0,1547,1552,3,260,130,0,1548,1549,5,385,0,0,1549,1551,3,260, + 130,0,1550,1548,1,0,0,0,1551,1554,1,0,0,0,1552,1550,1,0,0,0,1552,1553,1, + 0,0,0,1553,239,1,0,0,0,1554,1552,1,0,0,0,1555,1572,5,392,0,0,1556,1572, + 5,395,0,0,1557,1572,5,400,0,0,1558,1559,5,383,0,0,1559,1560,5,403,0,0,1560, + 1561,5,385,0,0,1561,1562,5,403,0,0,1562,1572,5,384,0,0,1563,1564,5,383, + 0,0,1564,1565,5,403,0,0,1565,1566,5,385,0,0,1566,1572,5,384,0,0,1567,1568, + 5,383,0,0,1568,1569,5,385,0,0,1569,1570,5,403,0,0,1570,1572,5,384,0,0,1571, + 1555,1,0,0,0,1571,1556,1,0,0,0,1571,1557,1,0,0,0,1571,1558,1,0,0,0,1571, + 1563,1,0,0,0,1571,1567,1,0,0,0,1572,241,1,0,0,0,1573,1574,5,283,0,0,1574, + 1579,3,172,86,0,1575,1576,5,385,0,0,1576,1578,3,172,86,0,1577,1575,1,0, + 0,0,1578,1581,1,0,0,0,1579,1577,1,0,0,0,1579,1580,1,0,0,0,1580,243,1,0, + 0,0,1581,1579,1,0,0,0,1582,1583,5,310,0,0,1583,1585,5,381,0,0,1584,1586, + 3,246,123,0,1585,1584,1,0,0,0,1586,1587,1,0,0,0,1587,1585,1,0,0,0,1587, + 1588,1,0,0,0,1588,1589,1,0,0,0,1589,1591,5,382,0,0,1590,1592,3,258,129, + 0,1591,1590,1,0,0,0,1591,1592,1,0,0,0,1592,245,1,0,0,0,1593,1595,3,308, + 154,0,1594,1596,3,240,120,0,1595,1594,1,0,0,0,1595,1596,1,0,0,0,1596,247, + 1,0,0,0,1597,1598,5,176,0,0,1598,1599,5,326,0,0,1599,1600,5,311,0,0,1600, + 1606,5,281,0,0,1601,1602,5,302,0,0,1602,1603,5,325,0,0,1603,1604,5,311, + 0,0,1604,1606,5,281,0,0,1605,1597,1,0,0,0,1605,1601,1,0,0,0,1606,249,1, + 0,0,0,1607,1608,5,6,0,0,1608,1609,5,281,0,0,1609,1610,5,332,0,0,1610,1611, + 5,97,0,0,1611,1612,5,72,0,0,1612,1632,5,325,0,0,1613,1614,5,6,0,0,1614, + 1615,5,281,0,0,1615,1616,5,332,0,0,1616,1617,5,348,0,0,1617,1618,5,293, + 0,0,1618,1632,5,325,0,0,1619,1620,5,6,0,0,1620,1621,5,281,0,0,1621,1622, + 5,332,0,0,1622,1623,5,348,0,0,1623,1624,5,72,0,0,1624,1632,3,308,154,0, + 1625,1626,5,6,0,0,1626,1627,5,281,0,0,1627,1628,5,332,0,0,1628,1629,5,348, + 0,0,1629,1630,5,44,0,0,1630,1632,3,308,154,0,1631,1607,1,0,0,0,1631,1613, + 1,0,0,0,1631,1619,1,0,0,0,1631,1625,1,0,0,0,1632,251,1,0,0,0,1633,1634, + 5,230,0,0,1634,1639,3,172,86,0,1635,1636,5,385,0,0,1636,1638,3,172,86,0, + 1637,1635,1,0,0,0,1638,1641,1,0,0,0,1639,1637,1,0,0,0,1639,1640,1,0,0,0, + 1640,253,1,0,0,0,1641,1639,1,0,0,0,1642,1643,5,317,0,0,1643,1644,5,188, + 0,0,1644,1645,3,280,140,0,1645,1646,3,256,128,0,1646,1652,1,0,0,0,1647, + 1648,5,326,0,0,1648,1649,5,188,0,0,1649,1650,5,403,0,0,1650,1652,3,256, + 128,0,1651,1642,1,0,0,0,1651,1647,1,0,0,0,1652,255,1,0,0,0,1653,1654,5, + 101,0,0,1654,1655,5,179,0,0,1655,1656,5,220,0,0,1656,1657,5,325,0,0,1657, + 257,1,0,0,0,1658,1659,5,367,0,0,1659,1660,3,280,140,0,1660,259,1,0,0,0, + 1661,1662,3,262,131,0,1662,261,1,0,0,0,1663,1664,6,131,-1,0,1664,1665,5, + 296,0,0,1665,1676,3,262,131,6,1666,1667,5,243,0,0,1667,1668,5,381,0,0,1668, + 1669,3,158,79,0,1669,1670,5,382,0,0,1670,1676,1,0,0,0,1671,1673,3,268,134, + 0,1672,1674,3,264,132,0,1673,1672,1,0,0,0,1673,1674,1,0,0,0,1674,1676,1, + 0,0,0,1675,1663,1,0,0,0,1675,1666,1,0,0,0,1675,1671,1,0,0,0,1676,1691,1, + 0,0,0,1677,1678,10,3,0,0,1678,1679,5,179,0,0,1679,1690,3,262,131,4,1680, + 1681,10,2,0,0,1681,1682,5,303,0,0,1682,1690,3,262,131,3,1683,1684,10,1, + 0,0,1684,1686,5,271,0,0,1685,1687,5,296,0,0,1686,1685,1,0,0,0,1686,1687, + 1,0,0,0,1687,1688,1,0,0,0,1688,1690,7,28,0,0,1689,1677,1,0,0,0,1689,1680, + 1,0,0,0,1689,1683,1,0,0,0,1690,1693,1,0,0,0,1691,1689,1,0,0,0,1691,1692, + 1,0,0,0,1692,263,1,0,0,0,1693,1691,1,0,0,0,1694,1696,5,296,0,0,1695,1694, + 1,0,0,0,1695,1696,1,0,0,0,1696,1697,1,0,0,0,1697,1699,5,188,0,0,1698,1700, + 7,29,0,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700,1701,1,0,0,0,1701,1702, + 3,268,134,0,1702,1703,5,179,0,0,1703,1704,3,268,134,0,1704,1762,1,0,0,0, + 1705,1707,5,296,0,0,1706,1705,1,0,0,0,1706,1707,1,0,0,0,1707,1708,1,0,0, + 0,1708,1709,5,261,0,0,1709,1710,5,381,0,0,1710,1715,3,260,130,0,1711,1712, + 5,385,0,0,1712,1714,3,260,130,0,1713,1711,1,0,0,0,1714,1717,1,0,0,0,1715, + 1713,1,0,0,0,1715,1716,1,0,0,0,1716,1718,1,0,0,0,1717,1715,1,0,0,0,1718, + 1719,5,382,0,0,1719,1762,1,0,0,0,1720,1722,5,296,0,0,1721,1720,1,0,0,0, + 1721,1722,1,0,0,0,1722,1723,1,0,0,0,1723,1724,5,261,0,0,1724,1725,5,381, + 0,0,1725,1726,3,158,79,0,1726,1727,5,382,0,0,1727,1762,1,0,0,0,1728,1729, + 5,243,0,0,1729,1730,5,381,0,0,1730,1731,3,158,79,0,1731,1732,5,382,0,0, + 1732,1762,1,0,0,0,1733,1735,5,296,0,0,1734,1733,1,0,0,0,1734,1735,1,0,0, + 0,1735,1736,1,0,0,0,1736,1737,5,322,0,0,1737,1762,3,268,134,0,1738,1762, + 3,266,133,0,1739,1741,5,271,0,0,1740,1742,5,296,0,0,1741,1740,1,0,0,0,1741, + 1742,1,0,0,0,1742,1743,1,0,0,0,1743,1762,7,28,0,0,1744,1746,5,271,0,0,1745, + 1747,5,296,0,0,1746,1745,1,0,0,0,1746,1747,1,0,0,0,1747,1748,1,0,0,0,1748, + 1749,5,233,0,0,1749,1750,5,250,0,0,1750,1762,3,268,134,0,1751,1753,5,296, + 0,0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1754,1,0,0,0,1754,1755,5,331, + 0,0,1755,1756,5,348,0,0,1756,1759,3,268,134,0,1757,1758,5,240,0,0,1758, + 1760,3,342,171,0,1759,1757,1,0,0,0,1759,1760,1,0,0,0,1760,1762,1,0,0,0, + 1761,1695,1,0,0,0,1761,1706,1,0,0,0,1761,1721,1,0,0,0,1761,1728,1,0,0,0, + 1761,1734,1,0,0,0,1761,1738,1,0,0,0,1761,1739,1,0,0,0,1761,1744,1,0,0,0, + 1761,1752,1,0,0,0,1762,265,1,0,0,0,1763,1765,5,296,0,0,1764,1763,1,0,0, + 0,1764,1765,1,0,0,0,1765,1766,1,0,0,0,1766,1767,5,278,0,0,1767,1781,7,30, + 0,0,1768,1769,5,381,0,0,1769,1782,5,382,0,0,1770,1771,5,381,0,0,1771,1776, + 3,260,130,0,1772,1773,5,385,0,0,1773,1775,3,260,130,0,1774,1772,1,0,0,0, + 1775,1778,1,0,0,0,1776,1774,1,0,0,0,1776,1777,1,0,0,0,1777,1779,1,0,0,0, + 1778,1776,1,0,0,0,1779,1780,5,382,0,0,1780,1782,1,0,0,0,1781,1768,1,0,0, + 0,1781,1770,1,0,0,0,1782,1793,1,0,0,0,1783,1785,5,296,0,0,1784,1783,1,0, + 0,0,1784,1785,1,0,0,0,1785,1786,1,0,0,0,1786,1787,5,278,0,0,1787,1790,3, + 268,134,0,1788,1789,5,240,0,0,1789,1791,3,342,171,0,1790,1788,1,0,0,0,1790, + 1791,1,0,0,0,1791,1793,1,0,0,0,1792,1764,1,0,0,0,1792,1784,1,0,0,0,1793, + 267,1,0,0,0,1794,1795,6,134,-1,0,1795,1799,3,270,135,0,1796,1797,7,31,0, + 0,1797,1799,3,268,134,7,1798,1794,1,0,0,0,1798,1796,1,0,0,0,1799,1821,1, + 0,0,0,1800,1801,10,6,0,0,1801,1802,7,32,0,0,1802,1820,3,268,134,7,1803, + 1804,10,5,0,0,1804,1805,7,33,0,0,1805,1820,3,268,134,6,1806,1807,10,4,0, + 0,1807,1808,5,376,0,0,1808,1820,3,268,134,5,1809,1810,10,3,0,0,1810,1811, + 5,377,0,0,1811,1820,3,268,134,4,1812,1813,10,2,0,0,1813,1814,5,375,0,0, + 1814,1820,3,268,134,3,1815,1816,10,1,0,0,1816,1817,3,332,166,0,1817,1818, + 3,268,134,2,1818,1820,1,0,0,0,1819,1800,1,0,0,0,1819,1803,1,0,0,0,1819, + 1806,1,0,0,0,1819,1809,1,0,0,0,1819,1812,1,0,0,0,1819,1815,1,0,0,0,1820, + 1823,1,0,0,0,1821,1819,1,0,0,0,1821,1822,1,0,0,0,1822,269,1,0,0,0,1823, + 1821,1,0,0,0,1824,1825,6,135,-1,0,1825,1827,5,199,0,0,1826,1828,3,312,156, + 0,1827,1826,1,0,0,0,1828,1829,1,0,0,0,1829,1827,1,0,0,0,1829,1830,1,0,0, + 0,1830,1833,1,0,0,0,1831,1832,5,237,0,0,1832,1834,3,260,130,0,1833,1831, + 1,0,0,0,1833,1834,1,0,0,0,1834,1835,1,0,0,0,1835,1836,5,238,0,0,1836,1916, + 1,0,0,0,1837,1838,5,199,0,0,1838,1840,3,260,130,0,1839,1841,3,312,156,0, + 1840,1839,1,0,0,0,1841,1842,1,0,0,0,1842,1840,1,0,0,0,1842,1843,1,0,0,0, + 1843,1846,1,0,0,0,1844,1845,5,237,0,0,1845,1847,3,260,130,0,1846,1844,1, + 0,0,0,1846,1847,1,0,0,0,1847,1848,1,0,0,0,1848,1849,5,238,0,0,1849,1916, + 1,0,0,0,1850,1851,5,200,0,0,1851,1852,5,381,0,0,1852,1853,3,260,130,0,1853, + 1854,5,183,0,0,1854,1855,3,54,27,0,1855,1856,5,382,0,0,1856,1916,1,0,0, + 0,1857,1858,5,44,0,0,1858,1859,5,381,0,0,1859,1862,3,260,130,0,1860,1861, + 5,59,0,0,1861,1863,5,86,0,0,1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1864, + 1,0,0,0,1864,1865,5,382,0,0,1865,1916,1,0,0,0,1866,1867,5,72,0,0,1867,1868, + 5,381,0,0,1868,1871,3,260,130,0,1869,1870,5,59,0,0,1870,1872,5,86,0,0,1871, + 1869,1,0,0,0,1871,1872,1,0,0,0,1872,1873,1,0,0,0,1873,1874,5,382,0,0,1874, + 1916,1,0,0,0,1875,1876,5,314,0,0,1876,1877,5,381,0,0,1877,1878,3,268,134, + 0,1878,1879,5,261,0,0,1879,1880,3,268,134,0,1880,1881,5,382,0,0,1881,1916, + 1,0,0,0,1882,1916,3,340,170,0,1883,1916,5,392,0,0,1884,1885,3,314,157,0, + 1885,1886,5,378,0,0,1886,1887,5,392,0,0,1887,1916,1,0,0,0,1888,1889,5,381, + 0,0,1889,1890,3,158,79,0,1890,1891,5,382,0,0,1891,1916,1,0,0,0,1892,1893, + 3,272,136,0,1893,1905,5,381,0,0,1894,1896,3,348,174,0,1895,1894,1,0,0,0, + 1895,1896,1,0,0,0,1896,1897,1,0,0,0,1897,1902,3,260,130,0,1898,1899,5,385, + 0,0,1899,1901,3,260,130,0,1900,1898,1,0,0,0,1901,1904,1,0,0,0,1902,1900, + 1,0,0,0,1902,1903,1,0,0,0,1903,1906,1,0,0,0,1904,1902,1,0,0,0,1905,1895, + 1,0,0,0,1905,1906,1,0,0,0,1906,1907,1,0,0,0,1907,1908,5,382,0,0,1908,1916, + 1,0,0,0,1909,1916,3,306,153,0,1910,1916,3,274,137,0,1911,1912,5,381,0,0, + 1912,1913,3,260,130,0,1913,1914,5,382,0,0,1914,1916,1,0,0,0,1915,1824,1, + 0,0,0,1915,1837,1,0,0,0,1915,1850,1,0,0,0,1915,1857,1,0,0,0,1915,1866,1, + 0,0,0,1915,1875,1,0,0,0,1915,1882,1,0,0,0,1915,1883,1,0,0,0,1915,1884,1, + 0,0,0,1915,1888,1,0,0,0,1915,1892,1,0,0,0,1915,1909,1,0,0,0,1915,1910,1, + 0,0,0,1915,1911,1,0,0,0,1916,1924,1,0,0,0,1917,1918,10,4,0,0,1918,1919, + 5,379,0,0,1919,1920,3,268,134,0,1920,1921,5,380,0,0,1921,1923,1,0,0,0,1922, + 1917,1,0,0,0,1923,1926,1,0,0,0,1924,1922,1,0,0,0,1924,1925,1,0,0,0,1925, + 271,1,0,0,0,1926,1924,1,0,0,0,1927,1931,3,350,175,0,1928,1931,3,354,177, + 0,1929,1931,3,314,157,0,1930,1927,1,0,0,0,1930,1928,1,0,0,0,1930,1929,1, + 0,0,0,1931,273,1,0,0,0,1932,1933,3,314,157,0,1933,275,1,0,0,0,1934,1935, + 3,306,153,0,1935,277,1,0,0,0,1936,1939,3,306,153,0,1937,1939,3,274,137, + 0,1938,1936,1,0,0,0,1938,1937,1,0,0,0,1939,279,1,0,0,0,1940,1943,5,269, + 0,0,1941,1944,3,282,141,0,1942,1944,3,286,143,0,1943,1941,1,0,0,0,1943, + 1942,1,0,0,0,1943,1944,1,0,0,0,1944,281,1,0,0,0,1945,1947,3,284,142,0,1946, + 1948,3,288,144,0,1947,1946,1,0,0,0,1947,1948,1,0,0,0,1948,283,1,0,0,0,1949, + 1950,3,290,145,0,1950,1951,3,292,146,0,1951,1953,1,0,0,0,1952,1949,1,0, + 0,0,1953,1954,1,0,0,0,1954,1952,1,0,0,0,1954,1955,1,0,0,0,1955,285,1,0, + 0,0,1956,1959,3,288,144,0,1957,1960,3,284,142,0,1958,1960,3,288,144,0,1959, + 1957,1,0,0,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960,287,1,0,0,0,1961, + 1962,3,290,145,0,1962,1963,3,292,146,0,1963,1964,5,348,0,0,1964,1965,3, + 292,146,0,1965,289,1,0,0,0,1966,1968,7,34,0,0,1967,1966,1,0,0,0,1967,1968, + 1,0,0,0,1968,1969,1,0,0,0,1969,1972,7,35,0,0,1970,1972,5,402,0,0,1971,1967, + 1,0,0,0,1971,1970,1,0,0,0,1972,291,1,0,0,0,1973,1976,3,306,153,0,1974,1976, + 3,352,176,0,1975,1973,1,0,0,0,1975,1974,1,0,0,0,1976,293,1,0,0,0,1977,1979, + 5,183,0,0,1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979,1980,1,0,0,0,1980,1982, + 3,306,153,0,1981,1983,3,302,151,0,1982,1981,1,0,0,0,1982,1983,1,0,0,0,1983, + 295,1,0,0,0,1984,1986,5,183,0,0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986, + 1987,1,0,0,0,1987,1989,3,306,153,0,1988,1990,3,302,151,0,1989,1988,1,0, + 0,0,1989,1990,1,0,0,0,1990,297,1,0,0,0,1991,1992,3,306,153,0,1992,1993, + 3,300,150,0,1993,299,1,0,0,0,1994,1995,5,286,0,0,1995,1997,3,306,153,0, + 1996,1994,1,0,0,0,1997,1998,1,0,0,0,1998,1996,1,0,0,0,1998,1999,1,0,0,0, + 1999,2002,1,0,0,0,2000,2002,1,0,0,0,2001,1996,1,0,0,0,2001,2000,1,0,0,0, + 2002,301,1,0,0,0,2003,2004,5,381,0,0,2004,2005,3,304,152,0,2005,2006,5, + 382,0,0,2006,303,1,0,0,0,2007,2012,3,306,153,0,2008,2009,5,385,0,0,2009, + 2011,3,306,153,0,2010,2008,1,0,0,0,2011,2014,1,0,0,0,2012,2010,1,0,0,0, + 2012,2013,1,0,0,0,2013,305,1,0,0,0,2014,2012,1,0,0,0,2015,2019,3,308,154, + 0,2016,2019,3,310,155,0,2017,2019,3,354,177,0,2018,2015,1,0,0,0,2018,2016, + 1,0,0,0,2018,2017,1,0,0,0,2019,307,1,0,0,0,2020,2021,7,36,0,0,2021,309, + 1,0,0,0,2022,2023,5,402,0,0,2023,311,1,0,0,0,2024,2025,5,363,0,0,2025,2026, + 3,260,130,0,2026,2027,5,344,0,0,2027,2028,3,260,130,0,2028,313,1,0,0,0, + 2029,2034,3,306,153,0,2030,2031,5,378,0,0,2031,2033,3,306,153,0,2032,2030, + 1,0,0,0,2033,2036,1,0,0,0,2034,2035,1,0,0,0,2034,2032,1,0,0,0,2035,315, + 1,0,0,0,2036,2034,1,0,0,0,2037,2038,5,366,0,0,2038,2039,3,322,161,0,2039, + 317,1,0,0,0,2040,2041,5,58,0,0,2041,2042,5,296,0,0,2042,2043,5,243,0,0, + 2043,319,1,0,0,0,2044,2045,5,58,0,0,2045,2046,5,243,0,0,2046,321,1,0,0, + 0,2047,2048,5,381,0,0,2048,2053,3,324,162,0,2049,2050,5,385,0,0,2050,2052, + 3,324,162,0,2051,2049,1,0,0,0,2052,2055,1,0,0,0,2053,2051,1,0,0,0,2053, + 2054,1,0,0,0,2054,2056,1,0,0,0,2055,2053,1,0,0,0,2056,2057,5,382,0,0,2057, + 323,1,0,0,0,2058,2063,3,326,163,0,2059,2061,5,370,0,0,2060,2059,1,0,0,0, + 2060,2061,1,0,0,0,2061,2062,1,0,0,0,2062,2064,3,328,164,0,2063,2060,1,0, + 0,0,2063,2064,1,0,0,0,2064,325,1,0,0,0,2065,2069,3,306,153,0,2066,2069, + 3,274,137,0,2067,2069,5,402,0,0,2068,2065,1,0,0,0,2068,2066,1,0,0,0,2068, + 2067,1,0,0,0,2069,327,1,0,0,0,2070,2075,5,403,0,0,2071,2075,5,404,0,0,2072, + 2075,3,346,173,0,2073,2075,5,402,0,0,2074,2070,1,0,0,0,2074,2071,1,0,0, + 0,2074,2072,1,0,0,0,2074,2073,1,0,0,0,2075,329,1,0,0,0,2076,2083,5,179, + 0,0,2077,2078,5,376,0,0,2078,2083,5,376,0,0,2079,2083,5,303,0,0,2080,2081, + 5,375,0,0,2081,2083,5,375,0,0,2082,2076,1,0,0,0,2082,2077,1,0,0,0,2082, + 2079,1,0,0,0,2082,2080,1,0,0,0,2083,331,1,0,0,0,2084,2099,5,370,0,0,2085, + 2099,5,371,0,0,2086,2099,5,372,0,0,2087,2088,5,372,0,0,2088,2099,5,370, + 0,0,2089,2090,5,371,0,0,2090,2099,5,370,0,0,2091,2092,5,372,0,0,2092,2099, + 5,371,0,0,2093,2094,5,373,0,0,2094,2099,5,370,0,0,2095,2096,5,372,0,0,2096, + 2097,5,370,0,0,2097,2099,5,371,0,0,2098,2084,1,0,0,0,2098,2085,1,0,0,0, + 2098,2086,1,0,0,0,2098,2087,1,0,0,0,2098,2089,1,0,0,0,2098,2091,1,0,0,0, + 2098,2093,1,0,0,0,2098,2095,1,0,0,0,2099,333,1,0,0,0,2100,2101,5,372,0, + 0,2101,2108,5,372,0,0,2102,2103,5,371,0,0,2103,2108,5,371,0,0,2104,2108, + 5,376,0,0,2105,2108,5,377,0,0,2106,2108,5,375,0,0,2107,2100,1,0,0,0,2107, + 2102,1,0,0,0,2107,2104,1,0,0,0,2107,2105,1,0,0,0,2107,2106,1,0,0,0,2108, + 335,1,0,0,0,2109,2110,7,37,0,0,2110,337,1,0,0,0,2111,2112,7,38,0,0,2112, + 339,1,0,0,0,2113,2126,3,342,171,0,2114,2126,3,344,172,0,2115,2126,3,280, + 140,0,2116,2117,5,394,0,0,2117,2126,3,344,172,0,2118,2126,3,346,173,0,2119, + 2126,5,404,0,0,2120,2126,5,405,0,0,2121,2123,5,296,0,0,2122,2121,1,0,0, + 0,2122,2123,1,0,0,0,2123,2124,1,0,0,0,2124,2126,5,297,0,0,2125,2113,1,0, + 0,0,2125,2114,1,0,0,0,2125,2115,1,0,0,0,2125,2116,1,0,0,0,2125,2118,1,0, + 0,0,2125,2119,1,0,0,0,2125,2120,1,0,0,0,2125,2122,1,0,0,0,2126,341,1,0, + 0,0,2127,2128,5,402,0,0,2128,343,1,0,0,0,2129,2130,5,403,0,0,2130,345,1, + 0,0,0,2131,2132,7,39,0,0,2132,347,1,0,0,0,2133,2134,7,40,0,0,2134,349,1, + 0,0,0,2135,2136,7,41,0,0,2136,351,1,0,0,0,2137,2138,7,42,0,0,2138,353,1, + 0,0,0,2139,2140,7,43,0,0,2140,355,1,0,0,0,248,364,367,369,384,402,406,415, + 420,427,434,438,447,459,462,469,477,482,485,492,500,504,516,524,528,549, + 553,557,561,570,575,579,583,587,590,594,599,605,610,615,618,622,630,638, + 642,646,650,654,658,662,666,670,672,682,690,714,721,727,730,733,743,746, + 754,766,790,803,808,812,820,824,832,842,846,852,856,860,863,872,876,883, + 886,896,904,912,916,931,950,961,965,972,977,983,987,994,998,1002,1006,1014, + 1018,1023,1029,1035,1038,1042,1053,1062,1076,1088,1103,1106,1110,1113,1115, + 1120,1124,1127,1131,1140,1149,1159,1164,1176,1179,1182,1185,1191,1195,1203, + 1206,1211,1214,1216,1230,1241,1246,1254,1257,1260,1265,1267,1269,1274,1277, + 1281,1284,1287,1299,1306,1317,1346,1368,1386,1391,1403,1416,1428,1440,1445, + 1472,1480,1484,1487,1490,1497,1500,1503,1506,1509,1512,1517,1520,1529,1534, + 1538,1543,1552,1571,1579,1587,1591,1595,1605,1631,1639,1651,1673,1675,1686, + 1689,1691,1695,1699,1706,1715,1721,1734,1741,1746,1752,1759,1761,1764,1776, + 1781,1784,1790,1792,1798,1819,1821,1829,1833,1842,1846,1862,1871,1895,1902, + 1905,1915,1924,1930,1938,1943,1947,1954,1959,1967,1971,1975,1978,1982,1985, + 1989,1998,2001,2012,2018,2034,2053,2060,2063,2068,2074,2082,2098,2107,2122, + 2125]; private static __ATN: ATN; public static get _ATN(): ATN { @@ -18724,6 +18998,52 @@ export class ExistsContext extends BooleanExpressionContext { } } } +export class LogicalNestedContext extends BooleanExpressionContext { + public _kind!: Token; + constructor(parser: FlinkSqlParser, ctx: BooleanExpressionContext) { + super(parser, ctx.parentCtx, ctx.invokingState); + super.copyFrom(ctx); + } + public booleanExpression(): BooleanExpressionContext { + return this.getTypedRuleContext(BooleanExpressionContext, 0) as BooleanExpressionContext; + } + public KW_IS(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_IS, 0); + } + public KW_TRUE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_TRUE, 0); + } + public KW_FALSE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_FALSE, 0); + } + public KW_UNKNOWN(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_UNKNOWN, 0); + } + public KW_NULL(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_NULL, 0); + } + public KW_NOT(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_NOT, 0); + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterLogicalNested) { + listener.enterLogicalNested(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitLogicalNested) { + listener.exitLogicalNested(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitLogicalNested) { + return visitor.visitLogicalNested(this); + } else { + return visitor.visitChildren(this); + } + } +} export class LogicalBinaryContext extends BooleanExpressionContext { public _left!: BooleanExpressionContext; public _operator!: Token; @@ -18770,7 +19090,6 @@ export class PredicateContext extends ParserRuleContext { public _lower!: ValueExpressionContext; public _upper!: ValueExpressionContext; public _pattern!: ValueExpressionContext; - public _quantifier!: Token; public _right!: ValueExpressionContext; constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { super(parent, invokingState); @@ -18791,6 +19110,12 @@ export class PredicateContext extends ParserRuleContext { public KW_NOT(): TerminalNode { return this.getToken(FlinkSqlParser.KW_NOT, 0); } + public KW_ASYMMETRIC(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ASYMMETRIC, 0); + } + public KW_SYMMETRIC(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SYMMETRIC, 0); + } public LR_BRACKET(): TerminalNode { return this.getToken(FlinkSqlParser.LR_BRACKET, 0); } @@ -18821,33 +19146,42 @@ export class PredicateContext extends ParserRuleContext { public KW_RLIKE(): TerminalNode { return this.getToken(FlinkSqlParser.KW_RLIKE, 0); } - public KW_LIKE(): TerminalNode { - return this.getToken(FlinkSqlParser.KW_LIKE, 0); - } - public KW_ANY(): TerminalNode { - return this.getToken(FlinkSqlParser.KW_ANY, 0); - } - public KW_ALL(): TerminalNode { - return this.getToken(FlinkSqlParser.KW_ALL, 0); + public likePredicate(): LikePredicateContext { + return this.getTypedRuleContext(LikePredicateContext, 0) as LikePredicateContext; } public KW_IS(): TerminalNode { return this.getToken(FlinkSqlParser.KW_IS, 0); } - public KW_NULL(): TerminalNode { - return this.getToken(FlinkSqlParser.KW_NULL, 0); - } public KW_TRUE(): TerminalNode { return this.getToken(FlinkSqlParser.KW_TRUE, 0); } public KW_FALSE(): TerminalNode { return this.getToken(FlinkSqlParser.KW_FALSE, 0); } + public KW_UNKNOWN(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_UNKNOWN, 0); + } + public KW_NULL(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_NULL, 0); + } public KW_FROM(): TerminalNode { return this.getToken(FlinkSqlParser.KW_FROM, 0); } public KW_DISTINCT(): TerminalNode { return this.getToken(FlinkSqlParser.KW_DISTINCT, 0); } + public KW_TO(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_TO, 0); + } + public KW_SIMILAR(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SIMILAR, 0); + } + public KW_ESCAPE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ESCAPE, 0); + } + public stringLiteral(): StringLiteralContext { + return this.getTypedRuleContext(StringLiteralContext, 0) as StringLiteralContext; + } public get ruleIndex(): number { return FlinkSqlParser.RULE_predicate; } @@ -18913,6 +19247,12 @@ export class LikePredicateContext extends ParserRuleContext { public valueExpression(): ValueExpressionContext { return this.getTypedRuleContext(ValueExpressionContext, 0) as ValueExpressionContext; } + public KW_ESCAPE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ESCAPE, 0); + } + public stringLiteral(): StringLiteralContext { + return this.getTypedRuleContext(StringLiteralContext, 0) as StringLiteralContext; + } public get ruleIndex(): number { return FlinkSqlParser.RULE_likePredicate; } @@ -19658,8 +19998,8 @@ export class FunctionNameContext extends ParserRuleContext { super(parent, invokingState); this.parser = parser; } - public reservedKeywords(): ReservedKeywordsContext { - return this.getTypedRuleContext(ReservedKeywordsContext, 0) as ReservedKeywordsContext; + public reservedKeywordsUsedAsFunctionName(): ReservedKeywordsUsedAsFunctionNameContext { + return this.getTypedRuleContext(ReservedKeywordsUsedAsFunctionNameContext, 0) as ReservedKeywordsUsedAsFunctionNameContext; } public nonReservedKeywords(): NonReservedKeywordsContext { return this.getTypedRuleContext(NonReservedKeywordsContext, 0) as NonReservedKeywordsContext; @@ -21274,6 +21614,131 @@ export class SetQuantifierContext extends ParserRuleContext { } +export class ReservedKeywordsUsedAsFunctionNameContext extends ParserRuleContext { + constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { + super(parent, invokingState); + this.parser = parser; + } + public KW_ABS(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ABS, 0); + } + public KW_ARRAY(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ARRAY, 0); + } + public KW_AVG(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_AVG, 0); + } + public KW_CAST(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_CAST, 0); + } + public KW_CEIL(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_CEIL, 0); + } + public KW_COALESCE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_COALESCE, 0); + } + public KW_COLLECT(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_COLLECT, 0); + } + public KW_COUNT(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_COUNT, 0); + } + public KW_DATE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_DATE, 0); + } + public KW_GROUPING(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_GROUPING, 0); + } + public KW_HOUR(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_HOUR, 0); + } + public KW_IF(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_IF, 0); + } + public KW_LAG(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_LAG, 0); + } + public KW_LEFT(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_LEFT, 0); + } + public KW_MAP(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_MAP, 0); + } + public KW_MINUTE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_MINUTE, 0); + } + public KW_MONTH(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_MONTH, 0); + } + public KW_OVERLAY(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_OVERLAY, 0); + } + public KW_POSITION(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_POSITION, 0); + } + public KW_POWER(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_POWER, 0); + } + public KW_QUARTER(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_QUARTER, 0); + } + public KW_RANK(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_RANK, 0); + } + public KW_RIGHT(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_RIGHT, 0); + } + public KW_SECOND(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SECOND, 0); + } + public KW_SUBSTRING(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SUBSTRING, 0); + } + public KW_SUM(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SUM, 0); + } + public KW_TIME(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_TIME, 0); + } + public KW_TIMESTAMP(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_TIMESTAMP, 0); + } + public KW_TRUNCATE(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_TRUNCATE, 0); + } + public KW_UPPER(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_UPPER, 0); + } + public KW_WEEK(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_WEEK, 0); + } + public KW_YEAR(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_YEAR, 0); + } + public get ruleIndex(): number { + return FlinkSqlParser.RULE_reservedKeywordsUsedAsFunctionName; + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterReservedKeywordsUsedAsFunctionName) { + listener.enterReservedKeywordsUsedAsFunctionName(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitReservedKeywordsUsedAsFunctionName) { + listener.exitReservedKeywordsUsedAsFunctionName(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitReservedKeywordsUsedAsFunctionName) { + return visitor.visitReservedKeywordsUsedAsFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ReservedKeywordsContext extends ParserRuleContext { constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { super(parent, invokingState); @@ -21285,8 +21750,8 @@ export class ReservedKeywordsContext extends ParserRuleContext { public KW_ALL(): TerminalNode { return this.getToken(FlinkSqlParser.KW_ALL, 0); } - public ALLOW(): TerminalNode { - return this.getToken(FlinkSqlParser.ALLOW, 0); + public KW_ALLOW(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ALLOW, 0); } public KW_ALTER(): TerminalNode { return this.getToken(FlinkSqlParser.KW_ALTER, 0); @@ -21306,6 +21771,9 @@ export class ReservedKeywordsContext extends ParserRuleContext { public KW_AS(): TerminalNode { return this.getToken(FlinkSqlParser.KW_AS, 0); } + public KW_ASYMMETRIC(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_ASYMMETRIC, 0); + } public KW_AT(): TerminalNode { return this.getToken(FlinkSqlParser.KW_AT, 0); } @@ -21738,6 +22206,9 @@ export class ReservedKeywordsContext extends ParserRuleContext { public KW_SHOW(): TerminalNode { return this.getToken(FlinkSqlParser.KW_SHOW, 0); } + public KW_SIMILAR(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SIMILAR, 0); + } public KW_SKIP(): TerminalNode { return this.getToken(FlinkSqlParser.KW_SKIP, 0); } @@ -21756,12 +22227,12 @@ export class ReservedKeywordsContext extends ParserRuleContext { public KW_SUM(): TerminalNode { return this.getToken(FlinkSqlParser.KW_SUM, 0); } - public KW_SYSTEM(): TerminalNode { - return this.getToken(FlinkSqlParser.KW_SYSTEM, 0); - } public KW_SYSTEM_TIME(): TerminalNode { return this.getToken(FlinkSqlParser.KW_SYSTEM_TIME, 0); } + public KW_SYSTEM(): TerminalNode { + return this.getToken(FlinkSqlParser.KW_SYSTEM, 0); + } public KW_SYSTEM_USER(): TerminalNode { return this.getToken(FlinkSqlParser.KW_SYSTEM_USER, 0); } diff --git a/src/lib/flinksql/FlinkSqlParserListener.ts b/src/lib/flinksql/FlinkSqlParserListener.ts index 48e9a08..55de962 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.ts +++ b/src/lib/flinksql/FlinkSqlParserListener.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 +// Generated from /Users/hayden/Desktop/dt-works/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 import {ParseTreeListener} from "antlr4"; @@ -138,6 +138,7 @@ import { ExpressionContext } from "./FlinkSqlParser"; import { LogicalNotContext } from "./FlinkSqlParser"; import { PredicatedContext } from "./FlinkSqlParser"; import { ExistsContext } from "./FlinkSqlParser"; +import { LogicalNestedContext } from "./FlinkSqlParser"; import { LogicalBinaryContext } from "./FlinkSqlParser"; import { PredicateContext } from "./FlinkSqlParser"; import { LikePredicateContext } from "./FlinkSqlParser"; @@ -201,6 +202,7 @@ import { StringLiteralContext } from "./FlinkSqlParser"; import { DecimalLiteralContext } from "./FlinkSqlParser"; import { BooleanLiteralContext } from "./FlinkSqlParser"; import { SetQuantifierContext } from "./FlinkSqlParser"; +import { ReservedKeywordsUsedAsFunctionNameContext } from "./FlinkSqlParser"; import { ReservedKeywordsContext } from "./FlinkSqlParser"; import { NonReservedKeywordsContext } from "./FlinkSqlParser"; @@ -1570,6 +1572,18 @@ export default class FlinkSqlParserListener extends ParseTreeListener { * @param ctx the parse tree */ exitExists?: (ctx: ExistsContext) => void; + /** + * Enter a parse tree produced by the `logicalNested` + * labeled alternative in `FlinkSqlParser.booleanExpression`. + * @param ctx the parse tree + */ + enterLogicalNested?: (ctx: LogicalNestedContext) => void; + /** + * Exit a parse tree produced by the `logicalNested` + * labeled alternative in `FlinkSqlParser.booleanExpression`. + * @param ctx the parse tree + */ + exitLogicalNested?: (ctx: LogicalNestedContext) => void; /** * Enter a parse tree produced by the `logicalBinary` * labeled alternative in `FlinkSqlParser.booleanExpression`. @@ -2248,6 +2262,16 @@ export default class FlinkSqlParserListener extends ParseTreeListener { * @param ctx the parse tree */ exitSetQuantifier?: (ctx: SetQuantifierContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.reservedKeywordsUsedAsFunctionName`. + * @param ctx the parse tree + */ + enterReservedKeywordsUsedAsFunctionName?: (ctx: ReservedKeywordsUsedAsFunctionNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.reservedKeywordsUsedAsFunctionName`. + * @param ctx the parse tree + */ + exitReservedKeywordsUsedAsFunctionName?: (ctx: ReservedKeywordsUsedAsFunctionNameContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.reservedKeywords`. * @param ctx the parse tree diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.ts b/src/lib/flinksql/FlinkSqlParserVisitor.ts index e1175ea..33c4730 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.ts +++ b/src/lib/flinksql/FlinkSqlParserVisitor.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 +// Generated from /Users/hayden/Desktop/dt-works/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 import {ParseTreeVisitor} from 'antlr4'; @@ -138,6 +138,7 @@ import { ExpressionContext } from "./FlinkSqlParser"; import { LogicalNotContext } from "./FlinkSqlParser"; import { PredicatedContext } from "./FlinkSqlParser"; import { ExistsContext } from "./FlinkSqlParser"; +import { LogicalNestedContext } from "./FlinkSqlParser"; import { LogicalBinaryContext } from "./FlinkSqlParser"; import { PredicateContext } from "./FlinkSqlParser"; import { LikePredicateContext } from "./FlinkSqlParser"; @@ -201,6 +202,7 @@ import { StringLiteralContext } from "./FlinkSqlParser"; import { DecimalLiteralContext } from "./FlinkSqlParser"; import { BooleanLiteralContext } from "./FlinkSqlParser"; import { SetQuantifierContext } from "./FlinkSqlParser"; +import { ReservedKeywordsUsedAsFunctionNameContext } from "./FlinkSqlParser"; import { ReservedKeywordsContext } from "./FlinkSqlParser"; import { NonReservedKeywordsContext } from "./FlinkSqlParser"; @@ -1028,6 +1030,13 @@ export default class FlinkSqlParserVisitor extends ParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `logicalNested` + * labeled alternative in `FlinkSqlParser.booleanExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalNested?: (ctx: LogicalNestedContext) => Result; /** * Visit a parse tree produced by the `logicalBinary` * labeled alternative in `FlinkSqlParser.booleanExpression`. @@ -1430,6 +1439,12 @@ export default class FlinkSqlParserVisitor extends ParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.reservedKeywordsUsedAsFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitReservedKeywordsUsedAsFunctionName?: (ctx: ReservedKeywordsUsedAsFunctionNameContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.reservedKeywords`. * @param ctx the parse tree diff --git a/test/parser/flinksql/syntax/fixtures/selectWhere.sql b/test/parser/flinksql/syntax/fixtures/selectWhere.sql new file mode 100644 index 0000000..bf44a54 --- /dev/null +++ b/test/parser/flinksql/syntax/fixtures/selectWhere.sql @@ -0,0 +1,27 @@ +SELECT id, age FROM table1 WHERE age IS NOT NULL; + +SELECT id, age FROM table1 WHERE age IS NOT DISTINCT FROM 12; + +SELECT id, age FROM table1 WHERE age BETWEEN SYMMETRIC 25 AND 18; + +SELECT id, age FROM table1 WHERE age NOT LIKE "%aa_d%" ESCAPE "a"; + +SELECT addr FROM table1 WHERE addr NOT SIMILAR TO '%(123|yz)%' ESCAPE "y"; + +SELECT id, age FROM table1 WHERE age NOT IN (18,19,20); + +SELECT id FROM table1 WHERE id NOT IN ( SELECT * FROM table2 ); + +SELECT S,SNAME +FROM S +WHERE NOT EXISTS + (SELECT * + FROM C + WHERE NOT EXISTS + (SELECT * + FROM SC + WHERE SC.S=S.S AND SC.C=C.C)); + +SELECT id, age FROM table1 WHERE age > 18 OR id = 1; + +SELECT id, age FROM table1 WHERE age > 18 AND id > 10; \ No newline at end of file diff --git a/test/parser/flinksql/syntax/selectStatement.test.ts b/test/parser/flinksql/syntax/selectStatement.test.ts index ec2cf8d..bf18b90 100644 --- a/test/parser/flinksql/syntax/selectStatement.test.ts +++ b/test/parser/flinksql/syntax/selectStatement.test.ts @@ -11,7 +11,8 @@ const features = { aggregation: readSQL(__dirname, "selectAggregation.sql"), join: readSQL(__dirname, "selectJoin.sql"), setOperation: readSQL(__dirname, "selectSetOperations.sql"), - pattern: readSQL(__dirname, "selectPatternRecognition.sql") + pattern: readSQL(__dirname, "selectPatternRecognition.sql"), + where: readSQL(__dirname, "selectWhere.sql"), }; describe("FlinkSQL Query Statement Tests", () => { @@ -79,4 +80,12 @@ describe("FlinkSQL Query Statement Tests", () => { }); }) }) + + describe("Select Where", () => { + features.where.forEach((sql) => { + it(sql, () => { + expect(parser.validate(sql).length).toBe(0) + }) + }) + }) });