diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 index a7e8c79..66ceda5 100644 --- a/src/grammar/flinksql/FlinkSqlLexer.g4 +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -442,9 +442,9 @@ REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ | DEC_DIGIT+ EXPONENT_NUM_PART; BIT_STRING: BIT_STRING_L; ID_LITERAL: ID_LITERAL_FRAG; -FILE_PATH: FILE_PATH_STRING; +SLASH_TEXT: SLASH_TEXT_FRAG; -fragment FILE_PATH_STRING: ([/\\] (~([/\\ ]))*)+; +fragment SLASH_TEXT_FRAG: [/\\] (~([/\\ ] | '(' | ')' | ';'))*; fragment JAR_FILE_PARTTARN: '`' ( '\\'. | '``' | ~('`'|'\\'))* '`'; fragment EXPONENT_NUM_PART: 'E' [-+]? DEC_DIGIT+; fragment ID_LITERAL_FRAG: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index 2c71898..5f7d592 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -88,11 +88,15 @@ jarStatememt // 数栈平台自研的添加文件语法 dtAddStatement - : KW_ADD KW_JAR KW_WITH FILE_PATH (KW_AS uid)? - | KW_ADD KW_FILE KW_WITH FILE_PATH (KW_AS uid)? (KW_RENAME uid)? - | KW_ADD (KW_PYTHON_FILES | KW_PYTHON_REQUIREMENTS | KW_PYTHON_DEPENDENCIES | KW_PYTHON_JAR | KW_PYTHON_ARCHIVES) KW_WITH FILE_PATH KW_RENAME uid - | KW_ADD KW_PYTHON_PARAMETER FILE_PATH - | KW_ADD KW_ENGINE KW_FILE KW_WITH FILE_PATH KW_RENAME uid KW_KEY uid + : KW_ADD KW_JAR KW_WITH dtFilePath (KW_AS uid)? + | KW_ADD KW_FILE KW_WITH dtFilePath (KW_AS uid)? (KW_RENAME uid)? + | KW_ADD (KW_PYTHON_FILES | KW_PYTHON_REQUIREMENTS | KW_PYTHON_DEPENDENCIES | KW_PYTHON_JAR | KW_PYTHON_ARCHIVES) KW_WITH dtFilePath KW_RENAME uid + | KW_ADD KW_PYTHON_PARAMETER dtFilePath + | KW_ADD KW_ENGINE KW_FILE KW_WITH dtFilePath KW_RENAME uid KW_KEY uid + ; + +dtFilePath + : SLASH_TEXT+ ; // Create statements @@ -696,6 +700,7 @@ valueExpression | left=valueExpression operator='^' right=valueExpression #arithmeticBinary | left=valueExpression operator='|' right=valueExpression #arithmeticBinary | left=valueExpression comparisonOperator right=valueExpression #comparison + | left=valueExpression right=SLASH_TEXT #arithmeticBinaryAlternate ; primaryExpression diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index f101118..de0e5c2 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -822,7 +822,7 @@ DIG_LITERAL REAL_LITERAL BIT_STRING ID_LITERAL -FILE_PATH +SLASH_TEXT rule names: SPACE @@ -1234,8 +1234,8 @@ DIG_LITERAL REAL_LITERAL BIT_STRING ID_LITERAL -FILE_PATH -FILE_PATH_STRING +SLASH_TEXT +SLASH_TEXT_FRAG JAR_FILE_PARTTARN EXPONENT_NUM_PART ID_LITERAL_FRAG @@ -1254,4 +1254,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 410, 3788, 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, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 1, 0, 4, 0, 843, 8, 0, 11, 0, 12, 0, 844, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 853, 8, 1, 10, 1, 12, 1, 856, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 866, 8, 2, 1, 2, 5, 2, 869, 8, 2, 10, 2, 12, 2, 872, 9, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 3, 2, 879, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 3, 2, 889, 8, 2, 3, 2, 891, 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, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 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, 40, 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, 41, 1, 41, 1, 41, 1, 41, 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, 45, 1, 45, 1, 45, 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, 47, 1, 47, 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, 49, 1, 49, 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, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 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, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 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, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 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, 77, 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, 79, 1, 79, 1, 79, 1, 79, 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, 81, 1, 81, 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, 83, 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, 85, 1, 85, 1, 85, 1, 85, 1, 85, 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, 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, 90, 1, 90, 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, 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, 94, 1, 95, 1, 95, 1, 95, 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, 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, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 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, 101, 1, 102, 1, 102, 1, 102, 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, 104, 1, 104, 1, 104, 1, 104, 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, 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, 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, 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, 112, 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, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 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, 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, 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, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 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, 126, 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, 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, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 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, 134, 1, 134, 1, 134, 1, 134, 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, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 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, 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, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 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, 146, 1, 146, 1, 146, 1, 146, 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, 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, 149, 1, 149, 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, 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, 153, 1, 153, 1, 153, 1, 153, 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, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 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, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 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, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 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, 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, 169, 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, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 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, 182, 1, 182, 1, 182, 1, 182, 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, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 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, 189, 1, 190, 1, 190, 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, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 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, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 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, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 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, 206, 1, 206, 1, 206, 1, 206, 1, 206, 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, 208, 1, 209, 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, 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, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 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, 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, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 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, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 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, 225, 1, 226, 1, 226, 1, 226, 1, 226, 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, 229, 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, 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, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 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, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 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, 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, 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, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 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, 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, 257, 1, 257, 1, 258, 1, 258, 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, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 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, 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, 267, 1, 267, 1, 267, 1, 267, 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, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 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, 275, 1, 276, 1, 276, 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, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 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, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 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, 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, 289, 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, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 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, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 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, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 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, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 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, 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, 312, 1, 312, 1, 312, 1, 312, 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, 314, 1, 315, 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, 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, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 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, 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, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 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, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 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, 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, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 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, 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, 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, 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, 343, 1, 344, 1, 344, 1, 344, 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, 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, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 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, 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, 356, 1, 356, 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, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 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, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 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, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 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, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 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, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 3, 404, 3629, 8, 404, 1, 405, 4, 405, 3632, 8, 405, 11, 405, 12, 405, 3633, 1, 406, 4, 406, 3637, 8, 406, 11, 406, 12, 406, 3638, 3, 406, 3641, 8, 406, 1, 406, 1, 406, 4, 406, 3645, 8, 406, 11, 406, 12, 406, 3646, 1, 406, 4, 406, 3650, 8, 406, 11, 406, 12, 406, 3651, 1, 406, 1, 406, 1, 406, 1, 406, 4, 406, 3658, 8, 406, 11, 406, 12, 406, 3659, 3, 406, 3662, 8, 406, 1, 406, 1, 406, 4, 406, 3666, 8, 406, 11, 406, 12, 406, 3667, 1, 406, 1, 406, 1, 406, 4, 406, 3673, 8, 406, 11, 406, 12, 406, 3674, 1, 406, 1, 406, 3, 406, 3679, 8, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 410, 1, 410, 5, 410, 3689, 8, 410, 10, 410, 12, 410, 3692, 9, 410, 4, 410, 3694, 8, 410, 11, 410, 12, 410, 3695, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 3704, 8, 411, 10, 411, 12, 411, 3707, 9, 411, 1, 411, 1, 411, 1, 412, 1, 412, 3, 412, 3713, 8, 412, 1, 412, 4, 412, 3716, 8, 412, 11, 412, 12, 412, 3717, 1, 413, 5, 413, 3721, 8, 413, 10, 413, 12, 413, 3724, 9, 413, 1, 413, 4, 413, 3727, 8, 413, 11, 413, 12, 413, 3728, 1, 413, 5, 413, 3732, 8, 413, 10, 413, 12, 413, 3735, 9, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 5, 416, 3747, 8, 416, 10, 416, 12, 416, 3750, 9, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 5, 417, 3760, 8, 417, 10, 417, 12, 417, 3763, 9, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 4, 418, 3770, 8, 418, 11, 418, 12, 418, 3771, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 3782, 8, 419, 10, 419, 12, 419, 3785, 9, 419, 1, 419, 1, 419, 3, 854, 3722, 3728, 0, 420, 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, 408, 817, 409, 819, 410, 821, 0, 823, 0, 825, 0, 827, 0, 829, 0, 831, 0, 833, 0, 835, 0, 837, 0, 839, 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, 3820, 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, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 1, 842, 1, 0, 0, 0, 3, 848, 1, 0, 0, 0, 5, 890, 1, 0, 0, 0, 7, 894, 1, 0, 0, 0, 9, 898, 1, 0, 0, 0, 11, 904, 1, 0, 0, 0, 13, 910, 1, 0, 0, 0, 15, 918, 1, 0, 0, 0, 17, 922, 1, 0, 0, 0, 19, 929, 1, 0, 0, 0, 21, 935, 1, 0, 0, 0, 23, 943, 1, 0, 0, 0, 25, 951, 1, 0, 0, 0, 27, 960, 1, 0, 0, 0, 29, 968, 1, 0, 0, 0, 31, 974, 1, 0, 0, 0, 33, 989, 1, 0, 0, 0, 35, 1000, 1, 0, 0, 0, 37, 1008, 1, 0, 0, 0, 39, 1016, 1, 0, 0, 0, 41, 1024, 1, 0, 0, 0, 43, 1036, 1, 0, 0, 0, 45, 1048, 1, 0, 0, 0, 47, 1057, 1, 0, 0, 0, 49, 1062, 1, 0, 0, 0, 51, 1071, 1, 0, 0, 0, 53, 1081, 1, 0, 0, 0, 55, 1086, 1, 0, 0, 0, 57, 1093, 1, 0, 0, 0, 59, 1101, 1, 0, 0, 0, 61, 1106, 1, 0, 0, 0, 63, 1117, 1, 0, 0, 0, 65, 1121, 1, 0, 0, 0, 67, 1130, 1, 0, 0, 0, 69, 1139, 1, 0, 0, 0, 71, 1146, 1, 0, 0, 0, 73, 1152, 1, 0, 0, 0, 75, 1158, 1, 0, 0, 0, 77, 1173, 1, 0, 0, 0, 79, 1183, 1, 0, 0, 0, 81, 1191, 1, 0, 0, 0, 83, 1201, 1, 0, 0, 0, 85, 1210, 1, 0, 0, 0, 87, 1215, 1, 0, 0, 0, 89, 1221, 1, 0, 0, 0, 91, 1227, 1, 0, 0, 0, 93, 1237, 1, 0, 0, 0, 95, 1244, 1, 0, 0, 0, 97, 1252, 1, 0, 0, 0, 99, 1258, 1, 0, 0, 0, 101, 1270, 1, 0, 0, 0, 103, 1280, 1, 0, 0, 0, 105, 1288, 1, 0, 0, 0, 107, 1298, 1, 0, 0, 0, 109, 1301, 1, 0, 0, 0, 111, 1306, 1, 0, 0, 0, 113, 1314, 1, 0, 0, 0, 115, 1318, 1, 0, 0, 0, 117, 1324, 1, 0, 0, 0, 119, 1327, 1, 0, 0, 0, 121, 1334, 1, 0, 0, 0, 123, 1344, 1, 0, 0, 0, 125, 1350, 1, 0, 0, 0, 127, 1358, 1, 0, 0, 0, 129, 1362, 1, 0, 0, 0, 131, 1367, 1, 0, 0, 0, 133, 1372, 1, 0, 0, 0, 135, 1377, 1, 0, 0, 0, 137, 1397, 1, 0, 0, 0, 139, 1401, 1, 0, 0, 0, 141, 1412, 1, 0, 0, 0, 143, 1421, 1, 0, 0, 0, 145, 1427, 1, 0, 0, 0, 147, 1432, 1, 0, 0, 0, 149, 1439, 1, 0, 0, 0, 151, 1445, 1, 0, 0, 0, 153, 1450, 1, 0, 0, 0, 155, 1454, 1, 0, 0, 0, 157, 1466, 1, 0, 0, 0, 159, 1477, 1, 0, 0, 0, 161, 1489, 1, 0, 0, 0, 163, 1497, 1, 0, 0, 0, 165, 1506, 1, 0, 0, 0, 167, 1513, 1, 0, 0, 0, 169, 1521, 1, 0, 0, 0, 171, 1528, 1, 0, 0, 0, 173, 1539, 1, 0, 0, 0, 175, 1545, 1, 0, 0, 0, 177, 1552, 1, 0, 0, 0, 179, 1559, 1, 0, 0, 0, 181, 1567, 1, 0, 0, 0, 183, 1576, 1, 0, 0, 0, 185, 1583, 1, 0, 0, 0, 187, 1593, 1, 0, 0, 0, 189, 1605, 1, 0, 0, 0, 191, 1617, 1, 0, 0, 0, 193, 1628, 1, 0, 0, 0, 195, 1636, 1, 0, 0, 0, 197, 1641, 1, 0, 0, 0, 199, 1646, 1, 0, 0, 0, 201, 1654, 1, 0, 0, 0, 203, 1659, 1, 0, 0, 0, 205, 1669, 1, 0, 0, 0, 207, 1678, 1, 0, 0, 0, 209, 1684, 1, 0, 0, 0, 211, 1695, 1, 0, 0, 0, 213, 1702, 1, 0, 0, 0, 215, 1709, 1, 0, 0, 0, 217, 1722, 1, 0, 0, 0, 219, 1742, 1, 0, 0, 0, 221, 1762, 1, 0, 0, 0, 223, 1773, 1, 0, 0, 0, 225, 1789, 1, 0, 0, 0, 227, 1806, 1, 0, 0, 0, 229, 1814, 1, 0, 0, 0, 231, 1818, 1, 0, 0, 0, 233, 1823, 1, 0, 0, 0, 235, 1832, 1, 0, 0, 0, 237, 1839, 1, 0, 0, 0, 239, 1846, 1, 0, 0, 0, 241, 1854, 1, 0, 0, 0, 243, 1862, 1, 0, 0, 0, 245, 1870, 1, 0, 0, 0, 247, 1879, 1, 0, 0, 0, 249, 1884, 1, 0, 0, 0, 251, 1894, 1, 0, 0, 0, 253, 1900, 1, 0, 0, 0, 255, 1907, 1, 0, 0, 0, 257, 1913, 1, 0, 0, 0, 259, 1920, 1, 0, 0, 0, 261, 1928, 1, 0, 0, 0, 263, 1936, 1, 0, 0, 0, 265, 1945, 1, 0, 0, 0, 267, 1950, 1, 0, 0, 0, 269, 1957, 1, 0, 0, 0, 271, 1969, 1, 0, 0, 0, 273, 1977, 1, 0, 0, 0, 275, 1982, 1, 0, 0, 0, 277, 1989, 1, 0, 0, 0, 279, 1994, 1, 0, 0, 0, 281, 2000, 1, 0, 0, 0, 283, 2007, 1, 0, 0, 0, 285, 2013, 1, 0, 0, 0, 287, 2019, 1, 0, 0, 0, 289, 2029, 1, 0, 0, 0, 291, 2034, 1, 0, 0, 0, 293, 2041, 1, 0, 0, 0, 295, 2051, 1, 0, 0, 0, 297, 2057, 1, 0, 0, 0, 299, 2064, 1, 0, 0, 0, 301, 2074, 1, 0, 0, 0, 303, 2082, 1, 0, 0, 0, 305, 2096, 1, 0, 0, 0, 307, 2109, 1, 0, 0, 0, 309, 2123, 1, 0, 0, 0, 311, 2133, 1, 0, 0, 0, 313, 2140, 1, 0, 0, 0, 315, 2145, 1, 0, 0, 0, 317, 2151, 1, 0, 0, 0, 319, 2158, 1, 0, 0, 0, 321, 2164, 1, 0, 0, 0, 323, 2168, 1, 0, 0, 0, 325, 2174, 1, 0, 0, 0, 327, 2180, 1, 0, 0, 0, 329, 2185, 1, 0, 0, 0, 331, 2193, 1, 0, 0, 0, 333, 2198, 1, 0, 0, 0, 335, 2204, 1, 0, 0, 0, 337, 2212, 1, 0, 0, 0, 339, 2222, 1, 0, 0, 0, 341, 2233, 1, 0, 0, 0, 343, 2238, 1, 0, 0, 0, 345, 2244, 1, 0, 0, 0, 347, 2249, 1, 0, 0, 0, 349, 2257, 1, 0, 0, 0, 351, 2263, 1, 0, 0, 0, 353, 2268, 1, 0, 0, 0, 355, 2272, 1, 0, 0, 0, 357, 2276, 1, 0, 0, 0, 359, 2282, 1, 0, 0, 0, 361, 2288, 1, 0, 0, 0, 363, 2292, 1, 0, 0, 0, 365, 2296, 1, 0, 0, 0, 367, 2300, 1, 0, 0, 0, 369, 2306, 1, 0, 0, 0, 371, 2309, 1, 0, 0, 0, 373, 2320, 1, 0, 0, 0, 375, 2323, 1, 0, 0, 0, 377, 2327, 1, 0, 0, 0, 379, 2333, 1, 0, 0, 0, 381, 2341, 1, 0, 0, 0, 383, 2348, 1, 0, 0, 0, 385, 2355, 1, 0, 0, 0, 387, 2359, 1, 0, 0, 0, 389, 2364, 1, 0, 0, 0, 391, 2372, 1, 0, 0, 0, 393, 2377, 1, 0, 0, 0, 395, 2380, 1, 0, 0, 0, 397, 2385, 1, 0, 0, 0, 399, 2392, 1, 0, 0, 0, 401, 2401, 1, 0, 0, 0, 403, 2406, 1, 0, 0, 0, 405, 2411, 1, 0, 0, 0, 407, 2416, 1, 0, 0, 0, 409, 2421, 1, 0, 0, 0, 411, 2431, 1, 0, 0, 0, 413, 2437, 1, 0, 0, 0, 415, 2442, 1, 0, 0, 0, 417, 2448, 1, 0, 0, 0, 419, 2457, 1, 0, 0, 0, 421, 2465, 1, 0, 0, 0, 423, 2473, 1, 0, 0, 0, 425, 2480, 1, 0, 0, 0, 427, 2487, 1, 0, 0, 0, 429, 2495, 1, 0, 0, 0, 431, 2506, 1, 0, 0, 0, 433, 2515, 1, 0, 0, 0, 435, 2523, 1, 0, 0, 0, 437, 2529, 1, 0, 0, 0, 439, 2536, 1, 0, 0, 0, 441, 2542, 1, 0, 0, 0, 443, 2547, 1, 0, 0, 0, 445, 2555, 1, 0, 0, 0, 447, 2562, 1, 0, 0, 0, 449, 2568, 1, 0, 0, 0, 451, 2573, 1, 0, 0, 0, 453, 2582, 1, 0, 0, 0, 455, 2586, 1, 0, 0, 0, 457, 2590, 1, 0, 0, 0, 459, 2598, 1, 0, 0, 0, 461, 2606, 1, 0, 0, 0, 463, 2614, 1, 0, 0, 0, 465, 2621, 1, 0, 0, 0, 467, 2628, 1, 0, 0, 0, 469, 2637, 1, 0, 0, 0, 471, 2646, 1, 0, 0, 0, 473, 2653, 1, 0, 0, 0, 475, 2658, 1, 0, 0, 0, 477, 2663, 1, 0, 0, 0, 479, 2668, 1, 0, 0, 0, 481, 2672, 1, 0, 0, 0, 483, 2679, 1, 0, 0, 0, 485, 2686, 1, 0, 0, 0, 487, 2693, 1, 0, 0, 0, 489, 2701, 1, 0, 0, 0, 491, 2708, 1, 0, 0, 0, 493, 2716, 1, 0, 0, 0, 495, 2725, 1, 0, 0, 0, 497, 2733, 1, 0, 0, 0, 499, 2739, 1, 0, 0, 0, 501, 2745, 1, 0, 0, 0, 503, 2749, 1, 0, 0, 0, 505, 2754, 1, 0, 0, 0, 507, 2759, 1, 0, 0, 0, 509, 2768, 1, 0, 0, 0, 511, 2775, 1, 0, 0, 0, 513, 2781, 1, 0, 0, 0, 515, 2787, 1, 0, 0, 0, 517, 2796, 1, 0, 0, 0, 519, 2803, 1, 0, 0, 0, 521, 2810, 1, 0, 0, 0, 523, 2815, 1, 0, 0, 0, 525, 2822, 1, 0, 0, 0, 527, 2825, 1, 0, 0, 0, 529, 2835, 1, 0, 0, 0, 531, 2841, 1, 0, 0, 0, 533, 2847, 1, 0, 0, 0, 535, 2854, 1, 0, 0, 0, 537, 2858, 1, 0, 0, 0, 539, 2866, 1, 0, 0, 0, 541, 2876, 1, 0, 0, 0, 543, 2885, 1, 0, 0, 0, 545, 2890, 1, 0, 0, 0, 547, 2893, 1, 0, 0, 0, 549, 2898, 1, 0, 0, 0, 551, 2902, 1, 0, 0, 0, 553, 2911, 1, 0, 0, 0, 555, 2919, 1, 0, 0, 0, 557, 2927, 1, 0, 0, 0, 559, 2932, 1, 0, 0, 0, 561, 2937, 1, 0, 0, 0, 563, 2943, 1, 0, 0, 0, 565, 2949, 1, 0, 0, 0, 567, 2955, 1, 0, 0, 0, 569, 2971, 1, 0, 0, 0, 571, 2980, 1, 0, 0, 0, 573, 2986, 1, 0, 0, 0, 575, 2995, 1, 0, 0, 0, 577, 3001, 1, 0, 0, 0, 579, 3008, 1, 0, 0, 0, 581, 3017, 1, 0, 0, 0, 583, 3024, 1, 0, 0, 0, 585, 3030, 1, 0, 0, 0, 587, 3039, 1, 0, 0, 0, 589, 3047, 1, 0, 0, 0, 591, 3052, 1, 0, 0, 0, 593, 3055, 1, 0, 0, 0, 595, 3060, 1, 0, 0, 0, 597, 3064, 1, 0, 0, 0, 599, 3069, 1, 0, 0, 0, 601, 3077, 1, 0, 0, 0, 603, 3080, 1, 0, 0, 0, 605, 3087, 1, 0, 0, 0, 607, 3090, 1, 0, 0, 0, 609, 3094, 1, 0, 0, 0, 611, 3097, 1, 0, 0, 0, 613, 3103, 1, 0, 0, 0, 615, 3107, 1, 0, 0, 0, 617, 3113, 1, 0, 0, 0, 619, 3118, 1, 0, 0, 0, 621, 3126, 1, 0, 0, 0, 623, 3136, 1, 0, 0, 0, 625, 3144, 1, 0, 0, 0, 627, 3148, 1, 0, 0, 0, 629, 3156, 1, 0, 0, 0, 631, 3163, 1, 0, 0, 0, 633, 3172, 1, 0, 0, 0, 635, 3178, 1, 0, 0, 0, 637, 3186, 1, 0, 0, 0, 639, 3192, 1, 0, 0, 0, 641, 3197, 1, 0, 0, 0, 643, 3203, 1, 0, 0, 0, 645, 3210, 1, 0, 0, 0, 647, 3216, 1, 0, 0, 0, 649, 3222, 1, 0, 0, 0, 651, 3231, 1, 0, 0, 0, 653, 3238, 1, 0, 0, 0, 655, 3242, 1, 0, 0, 0, 657, 3247, 1, 0, 0, 0, 659, 3254, 1, 0, 0, 0, 661, 3261, 1, 0, 0, 0, 663, 3265, 1, 0, 0, 0, 665, 3270, 1, 0, 0, 0, 667, 3278, 1, 0, 0, 0, 669, 3283, 1, 0, 0, 0, 671, 3292, 1, 0, 0, 0, 673, 3298, 1, 0, 0, 0, 675, 3305, 1, 0, 0, 0, 677, 3315, 1, 0, 0, 0, 679, 3319, 1, 0, 0, 0, 681, 3329, 1, 0, 0, 0, 683, 3336, 1, 0, 0, 0, 685, 3348, 1, 0, 0, 0, 687, 3360, 1, 0, 0, 0, 689, 3366, 1, 0, 0, 0, 691, 3378, 1, 0, 0, 0, 693, 3383, 1, 0, 0, 0, 695, 3388, 1, 0, 0, 0, 697, 3398, 1, 0, 0, 0, 699, 3406, 1, 0, 0, 0, 701, 3409, 1, 0, 0, 0, 703, 3418, 1, 0, 0, 0, 705, 3423, 1, 0, 0, 0, 707, 3432, 1, 0, 0, 0, 709, 3438, 1, 0, 0, 0, 711, 3445, 1, 0, 0, 0, 713, 3453, 1, 0, 0, 0, 715, 3460, 1, 0, 0, 0, 717, 3466, 1, 0, 0, 0, 719, 3473, 1, 0, 0, 0, 721, 3478, 1, 0, 0, 0, 723, 3484, 1, 0, 0, 0, 725, 3490, 1, 0, 0, 0, 727, 3497, 1, 0, 0, 0, 729, 3507, 1, 0, 0, 0, 731, 3515, 1, 0, 0, 0, 733, 3520, 1, 0, 0, 0, 735, 3526, 1, 0, 0, 0, 737, 3533, 1, 0, 0, 0, 739, 3538, 1, 0, 0, 0, 741, 3545, 1, 0, 0, 0, 743, 3553, 1, 0, 0, 0, 745, 3558, 1, 0, 0, 0, 747, 3560, 1, 0, 0, 0, 749, 3562, 1, 0, 0, 0, 751, 3564, 1, 0, 0, 0, 753, 3566, 1, 0, 0, 0, 755, 3568, 1, 0, 0, 0, 757, 3570, 1, 0, 0, 0, 759, 3572, 1, 0, 0, 0, 761, 3574, 1, 0, 0, 0, 763, 3576, 1, 0, 0, 0, 765, 3578, 1, 0, 0, 0, 767, 3580, 1, 0, 0, 0, 769, 3582, 1, 0, 0, 0, 771, 3584, 1, 0, 0, 0, 773, 3586, 1, 0, 0, 0, 775, 3588, 1, 0, 0, 0, 777, 3590, 1, 0, 0, 0, 779, 3592, 1, 0, 0, 0, 781, 3594, 1, 0, 0, 0, 783, 3596, 1, 0, 0, 0, 785, 3598, 1, 0, 0, 0, 787, 3600, 1, 0, 0, 0, 789, 3602, 1, 0, 0, 0, 791, 3604, 1, 0, 0, 0, 793, 3606, 1, 0, 0, 0, 795, 3608, 1, 0, 0, 0, 797, 3610, 1, 0, 0, 0, 799, 3612, 1, 0, 0, 0, 801, 3615, 1, 0, 0, 0, 803, 3618, 1, 0, 0, 0, 805, 3620, 1, 0, 0, 0, 807, 3622, 1, 0, 0, 0, 809, 3628, 1, 0, 0, 0, 811, 3631, 1, 0, 0, 0, 813, 3678, 1, 0, 0, 0, 815, 3680, 1, 0, 0, 0, 817, 3682, 1, 0, 0, 0, 819, 3684, 1, 0, 0, 0, 821, 3693, 1, 0, 0, 0, 823, 3697, 1, 0, 0, 0, 825, 3710, 1, 0, 0, 0, 827, 3722, 1, 0, 0, 0, 829, 3736, 1, 0, 0, 0, 831, 3738, 1, 0, 0, 0, 833, 3740, 1, 0, 0, 0, 835, 3753, 1, 0, 0, 0, 837, 3766, 1, 0, 0, 0, 839, 3775, 1, 0, 0, 0, 841, 843, 7, 0, 0, 0, 842, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 6, 0, 0, 0, 847, 2, 1, 0, 0, 0, 848, 849, 5, 47, 0, 0, 849, 850, 5, 42, 0, 0, 850, 854, 1, 0, 0, 0, 851, 853, 9, 0, 0, 0, 852, 851, 1, 0, 0, 0, 853, 856, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 855, 857, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 857, 858, 5, 42, 0, 0, 858, 859, 5, 47, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 6, 1, 0, 0, 861, 4, 1, 0, 0, 0, 862, 863, 5, 45, 0, 0, 863, 866, 5, 45, 0, 0, 864, 866, 5, 35, 0, 0, 865, 862, 1, 0, 0, 0, 865, 864, 1, 0, 0, 0, 866, 870, 1, 0, 0, 0, 867, 869, 8, 1, 0, 0, 868, 867, 1, 0, 0, 0, 869, 872, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 878, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 873, 875, 5, 13, 0, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 879, 5, 10, 0, 0, 877, 879, 5, 0, 0, 1, 878, 874, 1, 0, 0, 0, 878, 877, 1, 0, 0, 0, 879, 891, 1, 0, 0, 0, 880, 881, 5, 45, 0, 0, 881, 882, 5, 45, 0, 0, 882, 888, 1, 0, 0, 0, 883, 885, 5, 13, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 5, 10, 0, 0, 887, 889, 5, 0, 0, 1, 888, 884, 1, 0, 0, 0, 888, 887, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 865, 1, 0, 0, 0, 890, 880, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 6, 2, 0, 0, 893, 6, 1, 0, 0, 0, 894, 895, 5, 65, 0, 0, 895, 896, 5, 68, 0, 0, 896, 897, 5, 68, 0, 0, 897, 8, 1, 0, 0, 0, 898, 899, 5, 65, 0, 0, 899, 900, 5, 68, 0, 0, 900, 901, 5, 77, 0, 0, 901, 902, 5, 73, 0, 0, 902, 903, 5, 78, 0, 0, 903, 10, 1, 0, 0, 0, 904, 905, 5, 65, 0, 0, 905, 906, 5, 70, 0, 0, 906, 907, 5, 84, 0, 0, 907, 908, 5, 69, 0, 0, 908, 909, 5, 82, 0, 0, 909, 12, 1, 0, 0, 0, 910, 911, 5, 65, 0, 0, 911, 912, 5, 78, 0, 0, 912, 913, 5, 65, 0, 0, 913, 914, 5, 76, 0, 0, 914, 915, 5, 89, 0, 0, 915, 916, 5, 90, 0, 0, 916, 917, 5, 69, 0, 0, 917, 14, 1, 0, 0, 0, 918, 919, 5, 65, 0, 0, 919, 920, 5, 83, 0, 0, 920, 921, 5, 67, 0, 0, 921, 16, 1, 0, 0, 0, 922, 923, 5, 66, 0, 0, 923, 924, 5, 69, 0, 0, 924, 925, 5, 70, 0, 0, 925, 926, 5, 79, 0, 0, 926, 927, 5, 82, 0, 0, 927, 928, 5, 69, 0, 0, 928, 18, 1, 0, 0, 0, 929, 930, 5, 66, 0, 0, 930, 931, 5, 89, 0, 0, 931, 932, 5, 84, 0, 0, 932, 933, 5, 69, 0, 0, 933, 934, 5, 83, 0, 0, 934, 20, 1, 0, 0, 0, 935, 936, 5, 67, 0, 0, 936, 937, 5, 65, 0, 0, 937, 938, 5, 83, 0, 0, 938, 939, 5, 67, 0, 0, 939, 940, 5, 65, 0, 0, 940, 941, 5, 68, 0, 0, 941, 942, 5, 69, 0, 0, 942, 22, 1, 0, 0, 0, 943, 944, 5, 67, 0, 0, 944, 945, 5, 65, 0, 0, 945, 946, 5, 84, 0, 0, 946, 947, 5, 65, 0, 0, 947, 948, 5, 76, 0, 0, 948, 949, 5, 79, 0, 0, 949, 950, 5, 71, 0, 0, 950, 24, 1, 0, 0, 0, 951, 952, 5, 67, 0, 0, 952, 953, 5, 65, 0, 0, 953, 954, 5, 84, 0, 0, 954, 955, 5, 65, 0, 0, 955, 956, 5, 76, 0, 0, 956, 957, 5, 79, 0, 0, 957, 958, 5, 71, 0, 0, 958, 959, 5, 83, 0, 0, 959, 26, 1, 0, 0, 0, 960, 961, 5, 67, 0, 0, 961, 962, 5, 69, 0, 0, 962, 963, 5, 78, 0, 0, 963, 964, 5, 84, 0, 0, 964, 965, 5, 85, 0, 0, 965, 966, 5, 82, 0, 0, 966, 967, 5, 89, 0, 0, 967, 28, 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, 73, 0, 0, 972, 973, 5, 78, 0, 0, 973, 30, 1, 0, 0, 0, 974, 975, 5, 67, 0, 0, 975, 976, 5, 72, 0, 0, 976, 977, 5, 65, 0, 0, 977, 978, 5, 78, 0, 0, 978, 979, 5, 71, 0, 0, 979, 980, 5, 69, 0, 0, 980, 981, 5, 76, 0, 0, 981, 982, 5, 79, 0, 0, 982, 983, 5, 71, 0, 0, 983, 984, 5, 95, 0, 0, 984, 985, 5, 77, 0, 0, 985, 986, 5, 79, 0, 0, 986, 987, 5, 68, 0, 0, 987, 988, 5, 69, 0, 0, 988, 32, 1, 0, 0, 0, 989, 990, 5, 67, 0, 0, 990, 991, 5, 72, 0, 0, 991, 992, 5, 65, 0, 0, 992, 993, 5, 82, 0, 0, 993, 994, 5, 65, 0, 0, 994, 995, 5, 67, 0, 0, 995, 996, 5, 84, 0, 0, 996, 997, 5, 69, 0, 0, 997, 998, 5, 82, 0, 0, 998, 999, 5, 83, 0, 0, 999, 34, 1, 0, 0, 0, 1000, 1001, 5, 67, 0, 0, 1001, 1002, 5, 79, 0, 0, 1002, 1003, 5, 77, 0, 0, 1003, 1004, 5, 77, 0, 0, 1004, 1005, 5, 69, 0, 0, 1005, 1006, 5, 78, 0, 0, 1006, 1007, 5, 84, 0, 0, 1007, 36, 1, 0, 0, 0, 1008, 1009, 5, 67, 0, 0, 1009, 1010, 5, 79, 0, 0, 1010, 1011, 5, 77, 0, 0, 1011, 1012, 5, 80, 0, 0, 1012, 1013, 5, 65, 0, 0, 1013, 1014, 5, 67, 0, 0, 1014, 1015, 5, 84, 0, 0, 1015, 38, 1, 0, 0, 0, 1016, 1017, 5, 67, 0, 0, 1017, 1018, 5, 79, 0, 0, 1018, 1019, 5, 76, 0, 0, 1019, 1020, 5, 85, 0, 0, 1020, 1021, 5, 77, 0, 0, 1021, 1022, 5, 78, 0, 0, 1022, 1023, 5, 83, 0, 0, 1023, 40, 1, 0, 0, 0, 1024, 1025, 5, 67, 0, 0, 1025, 1026, 5, 79, 0, 0, 1026, 1027, 5, 78, 0, 0, 1027, 1028, 5, 83, 0, 0, 1028, 1029, 5, 84, 0, 0, 1029, 1030, 5, 82, 0, 0, 1030, 1031, 5, 65, 0, 0, 1031, 1032, 5, 73, 0, 0, 1032, 1033, 5, 78, 0, 0, 1033, 1034, 5, 84, 0, 0, 1034, 1035, 5, 83, 0, 0, 1035, 42, 1, 0, 0, 0, 1036, 1037, 5, 67, 0, 0, 1037, 1038, 5, 79, 0, 0, 1038, 1039, 5, 78, 0, 0, 1039, 1040, 5, 83, 0, 0, 1040, 1041, 5, 84, 0, 0, 1041, 1042, 5, 82, 0, 0, 1042, 1043, 5, 85, 0, 0, 1043, 1044, 5, 67, 0, 0, 1044, 1045, 5, 84, 0, 0, 1045, 1046, 5, 79, 0, 0, 1046, 1047, 5, 82, 0, 0, 1047, 44, 1, 0, 0, 0, 1048, 1049, 5, 67, 0, 0, 1049, 1050, 5, 85, 0, 0, 1050, 1051, 5, 77, 0, 0, 1051, 1052, 5, 85, 0, 0, 1052, 1053, 5, 76, 0, 0, 1053, 1054, 5, 65, 0, 0, 1054, 1055, 5, 84, 0, 0, 1055, 1056, 5, 69, 0, 0, 1056, 46, 1, 0, 0, 0, 1057, 1058, 5, 68, 0, 0, 1058, 1059, 5, 65, 0, 0, 1059, 1060, 5, 84, 0, 0, 1060, 1061, 5, 65, 0, 0, 1061, 48, 1, 0, 0, 0, 1062, 1063, 5, 68, 0, 0, 1063, 1064, 5, 65, 0, 0, 1064, 1065, 5, 84, 0, 0, 1065, 1066, 5, 65, 0, 0, 1066, 1067, 5, 66, 0, 0, 1067, 1068, 5, 65, 0, 0, 1068, 1069, 5, 83, 0, 0, 1069, 1070, 5, 69, 0, 0, 1070, 50, 1, 0, 0, 0, 1071, 1072, 5, 68, 0, 0, 1072, 1073, 5, 65, 0, 0, 1073, 1074, 5, 84, 0, 0, 1074, 1075, 5, 65, 0, 0, 1075, 1076, 5, 66, 0, 0, 1076, 1077, 5, 65, 0, 0, 1077, 1078, 5, 83, 0, 0, 1078, 1079, 5, 69, 0, 0, 1079, 1080, 5, 83, 0, 0, 1080, 52, 1, 0, 0, 0, 1081, 1082, 5, 68, 0, 0, 1082, 1083, 5, 65, 0, 0, 1083, 1084, 5, 89, 0, 0, 1084, 1085, 5, 83, 0, 0, 1085, 54, 1, 0, 0, 0, 1086, 1087, 5, 68, 0, 0, 1087, 1088, 5, 69, 0, 0, 1088, 1089, 5, 67, 0, 0, 1089, 1090, 5, 65, 0, 0, 1090, 1091, 5, 68, 0, 0, 1091, 1092, 5, 69, 0, 0, 1092, 56, 1, 0, 0, 0, 1093, 1094, 5, 68, 0, 0, 1094, 1095, 5, 69, 0, 0, 1095, 1096, 5, 70, 0, 0, 1096, 1097, 5, 73, 0, 0, 1097, 1098, 5, 78, 0, 0, 1098, 1099, 5, 69, 0, 0, 1099, 1100, 5, 68, 0, 0, 1100, 58, 1, 0, 0, 0, 1101, 1102, 5, 68, 0, 0, 1102, 1103, 5, 69, 0, 0, 1103, 1104, 5, 83, 0, 0, 1104, 1105, 5, 67, 0, 0, 1105, 60, 1, 0, 0, 0, 1106, 1107, 5, 68, 0, 0, 1107, 1108, 5, 69, 0, 0, 1108, 1109, 5, 83, 0, 0, 1109, 1110, 5, 67, 0, 0, 1110, 1111, 5, 82, 0, 0, 1111, 1112, 5, 73, 0, 0, 1112, 1113, 5, 80, 0, 0, 1113, 1114, 5, 84, 0, 0, 1114, 1115, 5, 79, 0, 0, 1115, 1116, 5, 82, 0, 0, 1116, 62, 1, 0, 0, 0, 1117, 1118, 5, 68, 0, 0, 1118, 1119, 5, 73, 0, 0, 1119, 1120, 5, 86, 0, 0, 1120, 64, 1, 0, 0, 0, 1121, 1122, 5, 69, 0, 0, 1122, 1123, 5, 78, 0, 0, 1123, 1124, 5, 67, 0, 0, 1124, 1125, 5, 79, 0, 0, 1125, 1126, 5, 68, 0, 0, 1126, 1127, 5, 73, 0, 0, 1127, 1128, 5, 78, 0, 0, 1128, 1129, 5, 71, 0, 0, 1129, 66, 1, 0, 0, 0, 1130, 1131, 5, 69, 0, 0, 1131, 1132, 5, 78, 0, 0, 1132, 1133, 5, 70, 0, 0, 1133, 1134, 5, 79, 0, 0, 1134, 1135, 5, 82, 0, 0, 1135, 1136, 5, 67, 0, 0, 1136, 1137, 5, 69, 0, 0, 1137, 1138, 5, 68, 0, 0, 1138, 68, 1, 0, 0, 0, 1139, 1140, 5, 69, 0, 0, 1140, 1141, 5, 78, 0, 0, 1141, 1142, 5, 71, 0, 0, 1142, 1143, 5, 73, 0, 0, 1143, 1144, 5, 78, 0, 0, 1144, 1145, 5, 69, 0, 0, 1145, 70, 1, 0, 0, 0, 1146, 1147, 5, 69, 0, 0, 1147, 1148, 5, 80, 0, 0, 1148, 1149, 5, 79, 0, 0, 1149, 1150, 5, 67, 0, 0, 1150, 1151, 5, 72, 0, 0, 1151, 72, 1, 0, 0, 0, 1152, 1153, 5, 69, 0, 0, 1153, 1154, 5, 82, 0, 0, 1154, 1155, 5, 82, 0, 0, 1155, 1156, 5, 79, 0, 0, 1156, 1157, 5, 82, 0, 0, 1157, 74, 1, 0, 0, 0, 1158, 1159, 5, 69, 0, 0, 1159, 1160, 5, 83, 0, 0, 1160, 1161, 5, 84, 0, 0, 1161, 1162, 5, 73, 0, 0, 1162, 1163, 5, 77, 0, 0, 1163, 1164, 5, 65, 0, 0, 1164, 1165, 5, 84, 0, 0, 1165, 1166, 5, 69, 0, 0, 1166, 1167, 5, 68, 0, 0, 1167, 1168, 5, 95, 0, 0, 1168, 1169, 5, 67, 0, 0, 1169, 1170, 5, 79, 0, 0, 1170, 1171, 5, 83, 0, 0, 1171, 1172, 5, 84, 0, 0, 1172, 76, 1, 0, 0, 0, 1173, 1174, 5, 69, 0, 0, 1174, 1175, 5, 88, 0, 0, 1175, 1176, 5, 67, 0, 0, 1176, 1177, 5, 69, 0, 0, 1177, 1178, 5, 80, 0, 0, 1178, 1179, 5, 84, 0, 0, 1179, 1180, 5, 73, 0, 0, 1180, 1181, 5, 79, 0, 0, 1181, 1182, 5, 78, 0, 0, 1182, 78, 1, 0, 0, 0, 1183, 1184, 5, 69, 0, 0, 1184, 1185, 5, 88, 0, 0, 1185, 1186, 5, 67, 0, 0, 1186, 1187, 5, 76, 0, 0, 1187, 1188, 5, 85, 0, 0, 1188, 1189, 5, 68, 0, 0, 1189, 1190, 5, 69, 0, 0, 1190, 80, 1, 0, 0, 0, 1191, 1192, 5, 69, 0, 0, 1192, 1193, 5, 88, 0, 0, 1193, 1194, 5, 67, 0, 0, 1194, 1195, 5, 76, 0, 0, 1195, 1196, 5, 85, 0, 0, 1196, 1197, 5, 68, 0, 0, 1197, 1198, 5, 73, 0, 0, 1198, 1199, 5, 78, 0, 0, 1199, 1200, 5, 71, 0, 0, 1200, 82, 1, 0, 0, 0, 1201, 1202, 5, 69, 0, 0, 1202, 1203, 5, 88, 0, 0, 1203, 1204, 5, 84, 0, 0, 1204, 1205, 5, 69, 0, 0, 1205, 1206, 5, 78, 0, 0, 1206, 1207, 5, 68, 0, 0, 1207, 1208, 5, 69, 0, 0, 1208, 1209, 5, 68, 0, 0, 1209, 84, 1, 0, 0, 0, 1210, 1211, 5, 70, 0, 0, 1211, 1212, 5, 73, 0, 0, 1212, 1213, 5, 76, 0, 0, 1213, 1214, 5, 69, 0, 0, 1214, 86, 1, 0, 0, 0, 1215, 1216, 5, 70, 0, 0, 1216, 1217, 5, 73, 0, 0, 1217, 1218, 5, 78, 0, 0, 1218, 1219, 5, 65, 0, 0, 1219, 1220, 5, 76, 0, 0, 1220, 88, 1, 0, 0, 0, 1221, 1222, 5, 70, 0, 0, 1222, 1223, 5, 73, 0, 0, 1223, 1224, 5, 82, 0, 0, 1224, 1225, 5, 83, 0, 0, 1225, 1226, 5, 84, 0, 0, 1226, 90, 1, 0, 0, 0, 1227, 1228, 5, 70, 0, 0, 1228, 1229, 5, 79, 0, 0, 1229, 1230, 5, 76, 0, 0, 1230, 1231, 5, 76, 0, 0, 1231, 1232, 5, 79, 0, 0, 1232, 1233, 5, 87, 0, 0, 1233, 1234, 5, 73, 0, 0, 1234, 1235, 5, 78, 0, 0, 1235, 1236, 5, 71, 0, 0, 1236, 92, 1, 0, 0, 0, 1237, 1238, 5, 70, 0, 0, 1238, 1239, 5, 79, 0, 0, 1239, 1240, 5, 82, 0, 0, 1240, 1241, 5, 77, 0, 0, 1241, 1242, 5, 65, 0, 0, 1242, 1243, 5, 84, 0, 0, 1243, 94, 1, 0, 0, 0, 1244, 1245, 5, 70, 0, 0, 1245, 1246, 5, 79, 0, 0, 1246, 1247, 5, 82, 0, 0, 1247, 1248, 5, 84, 0, 0, 1248, 1249, 5, 82, 0, 0, 1249, 1250, 5, 65, 0, 0, 1250, 1251, 5, 78, 0, 0, 1251, 96, 1, 0, 0, 0, 1252, 1253, 5, 70, 0, 0, 1253, 1254, 5, 79, 0, 0, 1254, 1255, 5, 85, 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, 82, 0, 0, 1260, 1261, 5, 65, 0, 0, 1261, 1262, 5, 67, 0, 0, 1262, 1263, 5, 95, 0, 0, 1263, 1264, 5, 83, 0, 0, 1264, 1265, 5, 69, 0, 0, 1265, 1266, 5, 67, 0, 0, 1266, 1267, 5, 79, 0, 0, 1267, 1268, 5, 78, 0, 0, 1268, 1269, 5, 68, 0, 0, 1269, 100, 1, 0, 0, 0, 1270, 1271, 5, 70, 0, 0, 1271, 1272, 5, 85, 0, 0, 1272, 1273, 5, 78, 0, 0, 1273, 1274, 5, 67, 0, 0, 1274, 1275, 5, 84, 0, 0, 1275, 1276, 5, 73, 0, 0, 1276, 1277, 5, 79, 0, 0, 1277, 1278, 5, 78, 0, 0, 1278, 1279, 5, 83, 0, 0, 1279, 102, 1, 0, 0, 0, 1280, 1281, 5, 71, 0, 0, 1281, 1282, 5, 69, 0, 0, 1282, 1283, 5, 78, 0, 0, 1283, 1284, 5, 69, 0, 0, 1284, 1285, 5, 82, 0, 0, 1285, 1286, 5, 65, 0, 0, 1286, 1287, 5, 76, 0, 0, 1287, 104, 1, 0, 0, 0, 1288, 1289, 5, 71, 0, 0, 1289, 1290, 5, 69, 0, 0, 1290, 1291, 5, 78, 0, 0, 1291, 1292, 5, 69, 0, 0, 1292, 1293, 5, 82, 0, 0, 1293, 1294, 5, 65, 0, 0, 1294, 1295, 5, 84, 0, 0, 1295, 1296, 5, 69, 0, 0, 1296, 1297, 5, 68, 0, 0, 1297, 106, 1, 0, 0, 0, 1298, 1299, 5, 71, 0, 0, 1299, 1300, 5, 79, 0, 0, 1300, 108, 1, 0, 0, 0, 1301, 1302, 5, 71, 0, 0, 1302, 1303, 5, 79, 0, 0, 1303, 1304, 5, 84, 0, 0, 1304, 1305, 5, 79, 0, 0, 1305, 110, 1, 0, 0, 0, 1306, 1307, 5, 71, 0, 0, 1307, 1308, 5, 82, 0, 0, 1308, 1309, 5, 65, 0, 0, 1309, 1310, 5, 78, 0, 0, 1310, 1311, 5, 84, 0, 0, 1311, 1312, 5, 69, 0, 0, 1312, 1313, 5, 68, 0, 0, 1313, 112, 1, 0, 0, 0, 1314, 1315, 5, 72, 0, 0, 1315, 1316, 5, 79, 0, 0, 1316, 1317, 5, 80, 0, 0, 1317, 114, 1, 0, 0, 0, 1318, 1319, 5, 72, 0, 0, 1319, 1320, 5, 79, 0, 0, 1320, 1321, 5, 85, 0, 0, 1321, 1322, 5, 82, 0, 0, 1322, 1323, 5, 83, 0, 0, 1323, 116, 1, 0, 0, 0, 1324, 1325, 5, 73, 0, 0, 1325, 1326, 5, 70, 0, 0, 1326, 118, 1, 0, 0, 0, 1327, 1328, 5, 73, 0, 0, 1328, 1329, 5, 71, 0, 0, 1329, 1330, 5, 78, 0, 0, 1330, 1331, 5, 79, 0, 0, 1331, 1332, 5, 82, 0, 0, 1332, 1333, 5, 69, 0, 0, 1333, 120, 1, 0, 0, 0, 1334, 1335, 5, 73, 0, 0, 1335, 1336, 5, 78, 0, 0, 1336, 1337, 5, 67, 0, 0, 1337, 1338, 5, 82, 0, 0, 1338, 1339, 5, 69, 0, 0, 1339, 1340, 5, 77, 0, 0, 1340, 1341, 5, 69, 0, 0, 1341, 1342, 5, 78, 0, 0, 1342, 1343, 5, 84, 0, 0, 1343, 122, 1, 0, 0, 0, 1344, 1345, 5, 73, 0, 0, 1345, 1346, 5, 78, 0, 0, 1346, 1347, 5, 80, 0, 0, 1347, 1348, 5, 85, 0, 0, 1348, 1349, 5, 84, 0, 0, 1349, 124, 1, 0, 0, 0, 1350, 1351, 5, 73, 0, 0, 1351, 1352, 5, 78, 0, 0, 1352, 1353, 5, 86, 0, 0, 1353, 1354, 5, 79, 0, 0, 1354, 1355, 5, 75, 0, 0, 1355, 1356, 5, 69, 0, 0, 1356, 1357, 5, 82, 0, 0, 1357, 126, 1, 0, 0, 0, 1358, 1359, 5, 74, 0, 0, 1359, 1360, 5, 65, 0, 0, 1360, 1361, 5, 82, 0, 0, 1361, 128, 1, 0, 0, 0, 1362, 1363, 5, 74, 0, 0, 1363, 1364, 5, 65, 0, 0, 1364, 1365, 5, 82, 0, 0, 1365, 1366, 5, 83, 0, 0, 1366, 130, 1, 0, 0, 0, 1367, 1368, 5, 74, 0, 0, 1368, 1369, 5, 65, 0, 0, 1369, 1370, 5, 86, 0, 0, 1370, 1371, 5, 65, 0, 0, 1371, 132, 1, 0, 0, 0, 1372, 1373, 5, 74, 0, 0, 1373, 1374, 5, 83, 0, 0, 1374, 1375, 5, 79, 0, 0, 1375, 1376, 5, 78, 0, 0, 1376, 134, 1, 0, 0, 0, 1377, 1378, 5, 74, 0, 0, 1378, 1379, 5, 83, 0, 0, 1379, 1380, 5, 79, 0, 0, 1380, 1381, 5, 78, 0, 0, 1381, 1382, 5, 95, 0, 0, 1382, 1383, 5, 69, 0, 0, 1383, 1384, 5, 88, 0, 0, 1384, 1385, 5, 69, 0, 0, 1385, 1386, 5, 67, 0, 0, 1386, 1387, 5, 85, 0, 0, 1387, 1388, 5, 84, 0, 0, 1388, 1389, 5, 73, 0, 0, 1389, 1390, 5, 79, 0, 0, 1390, 1391, 5, 78, 0, 0, 1391, 1392, 5, 95, 0, 0, 1392, 1393, 5, 80, 0, 0, 1393, 1394, 5, 76, 0, 0, 1394, 1395, 5, 65, 0, 0, 1395, 1396, 5, 78, 0, 0, 1396, 136, 1, 0, 0, 0, 1397, 1398, 5, 75, 0, 0, 1398, 1399, 5, 69, 0, 0, 1399, 1400, 5, 89, 0, 0, 1400, 138, 1, 0, 0, 0, 1401, 1402, 5, 75, 0, 0, 1402, 1403, 5, 69, 0, 0, 1403, 1404, 5, 89, 0, 0, 1404, 1405, 5, 95, 0, 0, 1405, 1406, 5, 77, 0, 0, 1406, 1407, 5, 69, 0, 0, 1407, 1408, 5, 77, 0, 0, 1408, 1409, 5, 66, 0, 0, 1409, 1410, 5, 69, 0, 0, 1410, 1411, 5, 82, 0, 0, 1411, 140, 1, 0, 0, 0, 1412, 1413, 5, 75, 0, 0, 1413, 1414, 5, 69, 0, 0, 1414, 1415, 5, 89, 0, 0, 1415, 1416, 5, 95, 0, 0, 1416, 1417, 5, 84, 0, 0, 1417, 1418, 5, 89, 0, 0, 1418, 1419, 5, 80, 0, 0, 1419, 1420, 5, 69, 0, 0, 1420, 142, 1, 0, 0, 0, 1421, 1422, 5, 76, 0, 0, 1422, 1423, 5, 65, 0, 0, 1423, 1424, 5, 66, 0, 0, 1424, 1425, 5, 69, 0, 0, 1425, 1426, 5, 76, 0, 0, 1426, 144, 1, 0, 0, 0, 1427, 1428, 5, 76, 0, 0, 1428, 1429, 5, 65, 0, 0, 1429, 1430, 5, 83, 0, 0, 1430, 1431, 5, 84, 0, 0, 1431, 146, 1, 0, 0, 0, 1432, 1433, 5, 76, 0, 0, 1433, 1434, 5, 69, 0, 0, 1434, 1435, 5, 78, 0, 0, 1435, 1436, 5, 71, 0, 0, 1436, 1437, 5, 84, 0, 0, 1437, 1438, 5, 72, 0, 0, 1438, 148, 1, 0, 0, 0, 1439, 1440, 5, 76, 0, 0, 1440, 1441, 5, 69, 0, 0, 1441, 1442, 5, 86, 0, 0, 1442, 1443, 5, 69, 0, 0, 1443, 1444, 5, 76, 0, 0, 1444, 150, 1, 0, 0, 0, 1445, 1446, 5, 76, 0, 0, 1446, 1447, 5, 79, 0, 0, 1447, 1448, 5, 65, 0, 0, 1448, 1449, 5, 68, 0, 0, 1449, 152, 1, 0, 0, 0, 1450, 1451, 5, 77, 0, 0, 1451, 1452, 5, 65, 0, 0, 1452, 1453, 5, 80, 0, 0, 1453, 154, 1, 0, 0, 0, 1454, 1455, 5, 77, 0, 0, 1455, 1456, 5, 73, 0, 0, 1456, 1457, 5, 67, 0, 0, 1457, 1458, 5, 82, 0, 0, 1458, 1459, 5, 79, 0, 0, 1459, 1460, 5, 83, 0, 0, 1460, 1461, 5, 69, 0, 0, 1461, 1462, 5, 67, 0, 0, 1462, 1463, 5, 79, 0, 0, 1463, 1464, 5, 78, 0, 0, 1464, 1465, 5, 68, 0, 0, 1465, 156, 1, 0, 0, 0, 1466, 1467, 5, 77, 0, 0, 1467, 1468, 5, 73, 0, 0, 1468, 1469, 5, 76, 0, 0, 1469, 1470, 5, 76, 0, 0, 1470, 1471, 5, 69, 0, 0, 1471, 1472, 5, 78, 0, 0, 1472, 1473, 5, 78, 0, 0, 1473, 1474, 5, 73, 0, 0, 1474, 1475, 5, 85, 0, 0, 1475, 1476, 5, 77, 0, 0, 1476, 158, 1, 0, 0, 0, 1477, 1478, 5, 77, 0, 0, 1478, 1479, 5, 73, 0, 0, 1479, 1480, 5, 76, 0, 0, 1480, 1481, 5, 76, 0, 0, 1481, 1482, 5, 73, 0, 0, 1482, 1483, 5, 83, 0, 0, 1483, 1484, 5, 69, 0, 0, 1484, 1485, 5, 67, 0, 0, 1485, 1486, 5, 79, 0, 0, 1486, 1487, 5, 78, 0, 0, 1487, 1488, 5, 68, 0, 0, 1488, 160, 1, 0, 0, 0, 1489, 1490, 5, 77, 0, 0, 1490, 1491, 5, 73, 0, 0, 1491, 1492, 5, 78, 0, 0, 1492, 1493, 5, 85, 0, 0, 1493, 1494, 5, 84, 0, 0, 1494, 1495, 5, 69, 0, 0, 1495, 1496, 5, 83, 0, 0, 1496, 162, 1, 0, 0, 0, 1497, 1498, 5, 77, 0, 0, 1498, 1499, 5, 73, 0, 0, 1499, 1500, 5, 78, 0, 0, 1500, 1501, 5, 86, 0, 0, 1501, 1502, 5, 65, 0, 0, 1502, 1503, 5, 76, 0, 0, 1503, 1504, 5, 85, 0, 0, 1504, 1505, 5, 69, 0, 0, 1505, 164, 1, 0, 0, 0, 1506, 1507, 5, 77, 0, 0, 1507, 1508, 5, 79, 0, 0, 1508, 1509, 5, 68, 0, 0, 1509, 1510, 5, 73, 0, 0, 1510, 1511, 5, 70, 0, 0, 1511, 1512, 5, 89, 0, 0, 1512, 166, 1, 0, 0, 0, 1513, 1514, 5, 77, 0, 0, 1514, 1515, 5, 79, 0, 0, 1515, 1516, 5, 68, 0, 0, 1516, 1517, 5, 85, 0, 0, 1517, 1518, 5, 76, 0, 0, 1518, 1519, 5, 69, 0, 0, 1519, 1520, 5, 83, 0, 0, 1520, 168, 1, 0, 0, 0, 1521, 1522, 5, 77, 0, 0, 1522, 1523, 5, 79, 0, 0, 1523, 1524, 5, 78, 0, 0, 1524, 1525, 5, 84, 0, 0, 1525, 1526, 5, 72, 0, 0, 1526, 1527, 5, 83, 0, 0, 1527, 170, 1, 0, 0, 0, 1528, 1529, 5, 78, 0, 0, 1529, 1530, 5, 65, 0, 0, 1530, 1531, 5, 78, 0, 0, 1531, 1532, 5, 79, 0, 0, 1532, 1533, 5, 83, 0, 0, 1533, 1534, 5, 69, 0, 0, 1534, 1535, 5, 67, 0, 0, 1535, 1536, 5, 79, 0, 0, 1536, 1537, 5, 78, 0, 0, 1537, 1538, 5, 68, 0, 0, 1538, 172, 1, 0, 0, 0, 1539, 1540, 5, 78, 0, 0, 1540, 1541, 5, 85, 0, 0, 1541, 1542, 5, 76, 0, 0, 1542, 1543, 5, 76, 0, 0, 1543, 1544, 5, 83, 0, 0, 1544, 174, 1, 0, 0, 0, 1545, 1546, 5, 78, 0, 0, 1546, 1547, 5, 85, 0, 0, 1547, 1548, 5, 77, 0, 0, 1548, 1549, 5, 66, 0, 0, 1549, 1550, 5, 69, 0, 0, 1550, 1551, 5, 82, 0, 0, 1551, 176, 1, 0, 0, 0, 1552, 1553, 5, 79, 0, 0, 1553, 1554, 5, 80, 0, 0, 1554, 1555, 5, 84, 0, 0, 1555, 1556, 5, 73, 0, 0, 1556, 1557, 5, 79, 0, 0, 1557, 1558, 5, 78, 0, 0, 1558, 178, 1, 0, 0, 0, 1559, 1560, 5, 79, 0, 0, 1560, 1561, 5, 80, 0, 0, 1561, 1562, 5, 84, 0, 0, 1562, 1563, 5, 73, 0, 0, 1563, 1564, 5, 79, 0, 0, 1564, 1565, 5, 78, 0, 0, 1565, 1566, 5, 83, 0, 0, 1566, 180, 1, 0, 0, 0, 1567, 1568, 5, 79, 0, 0, 1568, 1569, 5, 82, 0, 0, 1569, 1570, 5, 68, 0, 0, 1570, 1571, 5, 69, 0, 0, 1571, 1572, 5, 82, 0, 0, 1572, 1573, 5, 73, 0, 0, 1573, 1574, 5, 78, 0, 0, 1574, 1575, 5, 71, 0, 0, 1575, 182, 1, 0, 0, 0, 1576, 1577, 5, 79, 0, 0, 1577, 1578, 5, 85, 0, 0, 1578, 1579, 5, 84, 0, 0, 1579, 1580, 5, 80, 0, 0, 1580, 1581, 5, 85, 0, 0, 1581, 1582, 5, 84, 0, 0, 1582, 184, 1, 0, 0, 0, 1583, 1584, 5, 79, 0, 0, 1584, 1585, 5, 86, 0, 0, 1585, 1586, 5, 69, 0, 0, 1586, 1587, 5, 82, 0, 0, 1587, 1588, 5, 87, 0, 0, 1588, 1589, 5, 82, 0, 0, 1589, 1590, 5, 73, 0, 0, 1590, 1591, 5, 84, 0, 0, 1591, 1592, 5, 69, 0, 0, 1592, 186, 1, 0, 0, 0, 1593, 1594, 5, 79, 0, 0, 1594, 1595, 5, 86, 0, 0, 1595, 1596, 5, 69, 0, 0, 1596, 1597, 5, 82, 0, 0, 1597, 1598, 5, 87, 0, 0, 1598, 1599, 5, 82, 0, 0, 1599, 1600, 5, 73, 0, 0, 1600, 1601, 5, 84, 0, 0, 1601, 1602, 5, 73, 0, 0, 1602, 1603, 5, 78, 0, 0, 1603, 1604, 5, 71, 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, 69, 0, 0, 1615, 1616, 5, 68, 0, 0, 1616, 190, 1, 0, 0, 0, 1617, 1618, 5, 80, 0, 0, 1618, 1619, 5, 65, 0, 0, 1619, 1620, 5, 82, 0, 0, 1620, 1621, 5, 84, 0, 0, 1621, 1622, 5, 73, 0, 0, 1622, 1623, 5, 84, 0, 0, 1623, 1624, 5, 73, 0, 0, 1624, 1625, 5, 79, 0, 0, 1625, 1626, 5, 78, 0, 0, 1626, 1627, 5, 83, 0, 0, 1627, 192, 1, 0, 0, 0, 1628, 1629, 5, 80, 0, 0, 1629, 1630, 5, 65, 0, 0, 1630, 1631, 5, 83, 0, 0, 1631, 1632, 5, 83, 0, 0, 1632, 1633, 5, 73, 0, 0, 1633, 1634, 5, 78, 0, 0, 1634, 1635, 5, 71, 0, 0, 1635, 194, 1, 0, 0, 0, 1636, 1637, 5, 80, 0, 0, 1637, 1638, 5, 65, 0, 0, 1638, 1639, 5, 83, 0, 0, 1639, 1640, 5, 84, 0, 0, 1640, 196, 1, 0, 0, 0, 1641, 1642, 5, 80, 0, 0, 1642, 1643, 5, 65, 0, 0, 1643, 1644, 5, 84, 0, 0, 1644, 1645, 5, 72, 0, 0, 1645, 198, 1, 0, 0, 0, 1646, 1647, 5, 80, 0, 0, 1647, 1648, 5, 76, 0, 0, 1648, 1649, 5, 65, 0, 0, 1649, 1650, 5, 67, 0, 0, 1650, 1651, 5, 73, 0, 0, 1651, 1652, 5, 78, 0, 0, 1652, 1653, 5, 71, 0, 0, 1653, 200, 1, 0, 0, 0, 1654, 1655, 5, 80, 0, 0, 1655, 1656, 5, 76, 0, 0, 1656, 1657, 5, 65, 0, 0, 1657, 1658, 5, 78, 0, 0, 1658, 202, 1, 0, 0, 0, 1659, 1660, 5, 80, 0, 0, 1660, 1661, 5, 82, 0, 0, 1661, 1662, 5, 69, 0, 0, 1662, 1663, 5, 67, 0, 0, 1663, 1664, 5, 69, 0, 0, 1664, 1665, 5, 68, 0, 0, 1665, 1666, 5, 73, 0, 0, 1666, 1667, 5, 78, 0, 0, 1667, 1668, 5, 71, 0, 0, 1668, 204, 1, 0, 0, 0, 1669, 1670, 5, 80, 0, 0, 1670, 1671, 5, 82, 0, 0, 1671, 1672, 5, 69, 0, 0, 1672, 1673, 5, 83, 0, 0, 1673, 1674, 5, 69, 0, 0, 1674, 1675, 5, 82, 0, 0, 1675, 1676, 5, 86, 0, 0, 1676, 1677, 5, 69, 0, 0, 1677, 206, 1, 0, 0, 0, 1678, 1679, 5, 80, 0, 0, 1679, 1680, 5, 82, 0, 0, 1680, 1681, 5, 73, 0, 0, 1681, 1682, 5, 79, 0, 0, 1682, 1683, 5, 82, 0, 0, 1683, 208, 1, 0, 0, 0, 1684, 1685, 5, 80, 0, 0, 1685, 1686, 5, 82, 0, 0, 1686, 1687, 5, 73, 0, 0, 1687, 1688, 5, 86, 0, 0, 1688, 1689, 5, 73, 0, 0, 1689, 1690, 5, 76, 0, 0, 1690, 1691, 5, 69, 0, 0, 1691, 1692, 5, 71, 0, 0, 1692, 1693, 5, 69, 0, 0, 1693, 1694, 5, 83, 0, 0, 1694, 210, 1, 0, 0, 0, 1695, 1696, 5, 80, 0, 0, 1696, 1697, 5, 85, 0, 0, 1697, 1698, 5, 66, 0, 0, 1698, 1699, 5, 76, 0, 0, 1699, 1700, 5, 73, 0, 0, 1700, 1701, 5, 67, 0, 0, 1701, 212, 1, 0, 0, 0, 1702, 1703, 5, 80, 0, 0, 1703, 1704, 5, 89, 0, 0, 1704, 1705, 5, 84, 0, 0, 1705, 1706, 5, 72, 0, 0, 1706, 1707, 5, 79, 0, 0, 1707, 1708, 5, 78, 0, 0, 1708, 214, 1, 0, 0, 0, 1709, 1710, 5, 80, 0, 0, 1710, 1711, 5, 89, 0, 0, 1711, 1712, 5, 84, 0, 0, 1712, 1713, 5, 72, 0, 0, 1713, 1714, 5, 79, 0, 0, 1714, 1715, 5, 78, 0, 0, 1715, 1716, 5, 95, 0, 0, 1716, 1717, 5, 70, 0, 0, 1717, 1718, 5, 73, 0, 0, 1718, 1719, 5, 76, 0, 0, 1719, 1720, 5, 69, 0, 0, 1720, 1721, 5, 83, 0, 0, 1721, 216, 1, 0, 0, 0, 1722, 1723, 5, 80, 0, 0, 1723, 1724, 5, 89, 0, 0, 1724, 1725, 5, 84, 0, 0, 1725, 1726, 5, 72, 0, 0, 1726, 1727, 5, 79, 0, 0, 1727, 1728, 5, 78, 0, 0, 1728, 1729, 5, 95, 0, 0, 1729, 1730, 5, 82, 0, 0, 1730, 1731, 5, 69, 0, 0, 1731, 1732, 5, 81, 0, 0, 1732, 1733, 5, 85, 0, 0, 1733, 1734, 5, 73, 0, 0, 1734, 1735, 5, 82, 0, 0, 1735, 1736, 5, 69, 0, 0, 1736, 1737, 5, 77, 0, 0, 1737, 1738, 5, 69, 0, 0, 1738, 1739, 5, 78, 0, 0, 1739, 1740, 5, 84, 0, 0, 1740, 1741, 5, 83, 0, 0, 1741, 218, 1, 0, 0, 0, 1742, 1743, 5, 80, 0, 0, 1743, 1744, 5, 89, 0, 0, 1744, 1745, 5, 84, 0, 0, 1745, 1746, 5, 72, 0, 0, 1746, 1747, 5, 79, 0, 0, 1747, 1748, 5, 78, 0, 0, 1748, 1749, 5, 95, 0, 0, 1749, 1750, 5, 68, 0, 0, 1750, 1751, 5, 69, 0, 0, 1751, 1752, 5, 80, 0, 0, 1752, 1753, 5, 69, 0, 0, 1753, 1754, 5, 78, 0, 0, 1754, 1755, 5, 68, 0, 0, 1755, 1756, 5, 69, 0, 0, 1756, 1757, 5, 78, 0, 0, 1757, 1758, 5, 67, 0, 0, 1758, 1759, 5, 73, 0, 0, 1759, 1760, 5, 69, 0, 0, 1760, 1761, 5, 83, 0, 0, 1761, 220, 1, 0, 0, 0, 1762, 1763, 5, 80, 0, 0, 1763, 1764, 5, 89, 0, 0, 1764, 1765, 5, 84, 0, 0, 1765, 1766, 5, 72, 0, 0, 1766, 1767, 5, 79, 0, 0, 1767, 1768, 5, 78, 0, 0, 1768, 1769, 5, 95, 0, 0, 1769, 1770, 5, 74, 0, 0, 1770, 1771, 5, 65, 0, 0, 1771, 1772, 5, 82, 0, 0, 1772, 222, 1, 0, 0, 0, 1773, 1774, 5, 80, 0, 0, 1774, 1775, 5, 89, 0, 0, 1775, 1776, 5, 84, 0, 0, 1776, 1777, 5, 72, 0, 0, 1777, 1778, 5, 79, 0, 0, 1778, 1779, 5, 78, 0, 0, 1779, 1780, 5, 95, 0, 0, 1780, 1781, 5, 65, 0, 0, 1781, 1782, 5, 82, 0, 0, 1782, 1783, 5, 67, 0, 0, 1783, 1784, 5, 72, 0, 0, 1784, 1785, 5, 73, 0, 0, 1785, 1786, 5, 86, 0, 0, 1786, 1787, 5, 69, 0, 0, 1787, 1788, 5, 83, 0, 0, 1788, 224, 1, 0, 0, 0, 1789, 1790, 5, 80, 0, 0, 1790, 1791, 5, 89, 0, 0, 1791, 1792, 5, 84, 0, 0, 1792, 1793, 5, 72, 0, 0, 1793, 1794, 5, 79, 0, 0, 1794, 1795, 5, 78, 0, 0, 1795, 1796, 5, 95, 0, 0, 1796, 1797, 5, 80, 0, 0, 1797, 1798, 5, 65, 0, 0, 1798, 1799, 5, 82, 0, 0, 1799, 1800, 5, 65, 0, 0, 1800, 1801, 5, 77, 0, 0, 1801, 1802, 5, 69, 0, 0, 1802, 1803, 5, 84, 0, 0, 1803, 1804, 5, 69, 0, 0, 1804, 1805, 5, 82, 0, 0, 1805, 226, 1, 0, 0, 0, 1806, 1807, 5, 81, 0, 0, 1807, 1808, 5, 85, 0, 0, 1808, 1809, 5, 65, 0, 0, 1809, 1810, 5, 82, 0, 0, 1810, 1811, 5, 84, 0, 0, 1811, 1812, 5, 69, 0, 0, 1812, 1813, 5, 82, 0, 0, 1813, 228, 1, 0, 0, 0, 1814, 1815, 5, 82, 0, 0, 1815, 1816, 5, 65, 0, 0, 1816, 1817, 5, 87, 0, 0, 1817, 230, 1, 0, 0, 0, 1818, 1819, 5, 82, 0, 0, 1819, 1820, 5, 69, 0, 0, 1820, 1821, 5, 65, 0, 0, 1821, 1822, 5, 68, 0, 0, 1822, 232, 1, 0, 0, 0, 1823, 1824, 5, 82, 0, 0, 1824, 1825, 5, 69, 0, 0, 1825, 1826, 5, 76, 0, 0, 1826, 1827, 5, 65, 0, 0, 1827, 1828, 5, 84, 0, 0, 1828, 1829, 5, 73, 0, 0, 1829, 1830, 5, 86, 0, 0, 1830, 1831, 5, 69, 0, 0, 1831, 234, 1, 0, 0, 0, 1832, 1833, 5, 82, 0, 0, 1833, 1834, 5, 69, 0, 0, 1834, 1835, 5, 77, 0, 0, 1835, 1836, 5, 79, 0, 0, 1836, 1837, 5, 86, 0, 0, 1837, 1838, 5, 69, 0, 0, 1838, 236, 1, 0, 0, 0, 1839, 1840, 5, 82, 0, 0, 1840, 1841, 5, 69, 0, 0, 1841, 1842, 5, 78, 0, 0, 1842, 1843, 5, 65, 0, 0, 1843, 1844, 5, 77, 0, 0, 1844, 1845, 5, 69, 0, 0, 1845, 238, 1, 0, 0, 0, 1846, 1847, 5, 82, 0, 0, 1847, 1848, 5, 69, 0, 0, 1848, 1849, 5, 80, 0, 0, 1849, 1850, 5, 76, 0, 0, 1850, 1851, 5, 65, 0, 0, 1851, 1852, 5, 67, 0, 0, 1852, 1853, 5, 69, 0, 0, 1853, 240, 1, 0, 0, 0, 1854, 1855, 5, 82, 0, 0, 1855, 1856, 5, 69, 0, 0, 1856, 1857, 5, 83, 0, 0, 1857, 1858, 5, 80, 0, 0, 1858, 1859, 5, 69, 0, 0, 1859, 1860, 5, 67, 0, 0, 1860, 1861, 5, 84, 0, 0, 1861, 242, 1, 0, 0, 0, 1862, 1863, 5, 82, 0, 0, 1863, 1864, 5, 69, 0, 0, 1864, 1865, 5, 83, 0, 0, 1865, 1866, 5, 84, 0, 0, 1866, 1867, 5, 65, 0, 0, 1867, 1868, 5, 82, 0, 0, 1868, 1869, 5, 84, 0, 0, 1869, 244, 1, 0, 0, 0, 1870, 1871, 5, 82, 0, 0, 1871, 1872, 5, 69, 0, 0, 1872, 1873, 5, 83, 0, 0, 1873, 1874, 5, 84, 0, 0, 1874, 1875, 5, 82, 0, 0, 1875, 1876, 5, 73, 0, 0, 1876, 1877, 5, 67, 0, 0, 1877, 1878, 5, 84, 0, 0, 1878, 246, 1, 0, 0, 0, 1879, 1880, 5, 82, 0, 0, 1880, 1881, 5, 79, 0, 0, 1881, 1882, 5, 76, 0, 0, 1882, 1883, 5, 69, 0, 0, 1883, 248, 1, 0, 0, 0, 1884, 1885, 5, 82, 0, 0, 1885, 1886, 5, 79, 0, 0, 1886, 1887, 5, 87, 0, 0, 1887, 1888, 5, 95, 0, 0, 1888, 1889, 5, 67, 0, 0, 1889, 1890, 5, 79, 0, 0, 1890, 1891, 5, 85, 0, 0, 1891, 1892, 5, 78, 0, 0, 1892, 1893, 5, 84, 0, 0, 1893, 250, 1, 0, 0, 0, 1894, 1895, 5, 83, 0, 0, 1895, 1896, 5, 67, 0, 0, 1896, 1897, 5, 65, 0, 0, 1897, 1898, 5, 76, 0, 0, 1898, 1899, 5, 65, 0, 0, 1899, 252, 1, 0, 0, 0, 1900, 1901, 5, 83, 0, 0, 1901, 1902, 5, 67, 0, 0, 1902, 1903, 5, 65, 0, 0, 1903, 1904, 5, 76, 0, 0, 1904, 1905, 5, 65, 0, 0, 1905, 1906, 5, 82, 0, 0, 1906, 254, 1, 0, 0, 0, 1907, 1908, 5, 83, 0, 0, 1908, 1909, 5, 67, 0, 0, 1909, 1910, 5, 65, 0, 0, 1910, 1911, 5, 76, 0, 0, 1911, 1912, 5, 69, 0, 0, 1912, 256, 1, 0, 0, 0, 1913, 1914, 5, 83, 0, 0, 1914, 1915, 5, 67, 0, 0, 1915, 1916, 5, 72, 0, 0, 1916, 1917, 5, 69, 0, 0, 1917, 1918, 5, 77, 0, 0, 1918, 1919, 5, 65, 0, 0, 1919, 258, 1, 0, 0, 0, 1920, 1921, 5, 83, 0, 0, 1921, 1922, 5, 69, 0, 0, 1922, 1923, 5, 67, 0, 0, 1923, 1924, 5, 79, 0, 0, 1924, 1925, 5, 78, 0, 0, 1925, 1926, 5, 68, 0, 0, 1926, 1927, 5, 83, 0, 0, 1927, 260, 1, 0, 0, 0, 1928, 1929, 5, 83, 0, 0, 1929, 1930, 5, 69, 0, 0, 1930, 1931, 5, 67, 0, 0, 1931, 1932, 5, 84, 0, 0, 1932, 1933, 5, 73, 0, 0, 1933, 1934, 5, 79, 0, 0, 1934, 1935, 5, 78, 0, 0, 1935, 262, 1, 0, 0, 0, 1936, 1937, 5, 83, 0, 0, 1937, 1938, 5, 69, 0, 0, 1938, 1939, 5, 67, 0, 0, 1939, 1940, 5, 85, 0, 0, 1940, 1941, 5, 82, 0, 0, 1941, 1942, 5, 73, 0, 0, 1942, 1943, 5, 84, 0, 0, 1943, 1944, 5, 89, 0, 0, 1944, 264, 1, 0, 0, 0, 1945, 1946, 5, 83, 0, 0, 1946, 1947, 5, 69, 0, 0, 1947, 1948, 5, 76, 0, 0, 1948, 1949, 5, 70, 0, 0, 1949, 266, 1, 0, 0, 0, 1950, 1951, 5, 83, 0, 0, 1951, 1952, 5, 69, 0, 0, 1952, 1953, 5, 82, 0, 0, 1953, 1954, 5, 86, 0, 0, 1954, 1955, 5, 69, 0, 0, 1955, 1956, 5, 82, 0, 0, 1956, 268, 1, 0, 0, 0, 1957, 1958, 5, 83, 0, 0, 1958, 1959, 5, 69, 0, 0, 1959, 1960, 5, 82, 0, 0, 1960, 1961, 5, 86, 0, 0, 1961, 1962, 5, 69, 0, 0, 1962, 1963, 5, 82, 0, 0, 1963, 1964, 5, 95, 0, 0, 1964, 1965, 5, 78, 0, 0, 1965, 1966, 5, 65, 0, 0, 1966, 1967, 5, 77, 0, 0, 1967, 1968, 5, 69, 0, 0, 1968, 270, 1, 0, 0, 0, 1969, 1970, 5, 83, 0, 0, 1970, 1971, 5, 69, 0, 0, 1971, 1972, 5, 83, 0, 0, 1972, 1973, 5, 83, 0, 0, 1973, 1974, 5, 73, 0, 0, 1974, 1975, 5, 79, 0, 0, 1975, 1976, 5, 78, 0, 0, 1976, 272, 1, 0, 0, 0, 1977, 1978, 5, 83, 0, 0, 1978, 1979, 5, 69, 0, 0, 1979, 1980, 5, 84, 0, 0, 1980, 1981, 5, 83, 0, 0, 1981, 274, 1, 0, 0, 0, 1982, 1983, 5, 83, 0, 0, 1983, 1984, 5, 73, 0, 0, 1984, 1985, 5, 77, 0, 0, 1985, 1986, 5, 80, 0, 0, 1986, 1987, 5, 76, 0, 0, 1987, 1988, 5, 69, 0, 0, 1988, 276, 1, 0, 0, 0, 1989, 1990, 5, 83, 0, 0, 1990, 1991, 5, 73, 0, 0, 1991, 1992, 5, 90, 0, 0, 1992, 1993, 5, 69, 0, 0, 1993, 278, 1, 0, 0, 0, 1994, 1995, 5, 83, 0, 0, 1995, 1996, 5, 76, 0, 0, 1996, 1997, 5, 73, 0, 0, 1997, 1998, 5, 68, 0, 0, 1998, 1999, 5, 69, 0, 0, 1999, 280, 1, 0, 0, 0, 2000, 2001, 5, 83, 0, 0, 2001, 2002, 5, 79, 0, 0, 2002, 2003, 5, 85, 0, 0, 2003, 2004, 5, 82, 0, 0, 2004, 2005, 5, 67, 0, 0, 2005, 2006, 5, 69, 0, 0, 2006, 282, 1, 0, 0, 0, 2007, 2008, 5, 83, 0, 0, 2008, 2009, 5, 80, 0, 0, 2009, 2010, 5, 65, 0, 0, 2010, 2011, 5, 67, 0, 0, 2011, 2012, 5, 69, 0, 0, 2012, 284, 1, 0, 0, 0, 2013, 2014, 5, 83, 0, 0, 2014, 2015, 5, 84, 0, 0, 2015, 2016, 5, 65, 0, 0, 2016, 2017, 5, 84, 0, 0, 2017, 2018, 5, 69, 0, 0, 2018, 286, 1, 0, 0, 0, 2019, 2020, 5, 83, 0, 0, 2020, 2021, 5, 84, 0, 0, 2021, 2022, 5, 65, 0, 0, 2022, 2023, 5, 84, 0, 0, 2023, 2024, 5, 69, 0, 0, 2024, 2025, 5, 77, 0, 0, 2025, 2026, 5, 69, 0, 0, 2026, 2027, 5, 78, 0, 0, 2027, 2028, 5, 84, 0, 0, 2028, 288, 1, 0, 0, 0, 2029, 2030, 5, 83, 0, 0, 2030, 2031, 5, 84, 0, 0, 2031, 2032, 5, 69, 0, 0, 2032, 2033, 5, 80, 0, 0, 2033, 290, 1, 0, 0, 0, 2034, 2035, 5, 83, 0, 0, 2035, 2036, 5, 84, 0, 0, 2036, 2037, 5, 82, 0, 0, 2037, 2038, 5, 73, 0, 0, 2038, 2039, 5, 78, 0, 0, 2039, 2040, 5, 71, 0, 0, 2040, 292, 1, 0, 0, 0, 2041, 2042, 5, 83, 0, 0, 2042, 2043, 5, 84, 0, 0, 2043, 2044, 5, 82, 0, 0, 2044, 2045, 5, 85, 0, 0, 2045, 2046, 5, 67, 0, 0, 2046, 2047, 5, 84, 0, 0, 2047, 2048, 5, 85, 0, 0, 2048, 2049, 5, 82, 0, 0, 2049, 2050, 5, 69, 0, 0, 2050, 294, 1, 0, 0, 0, 2051, 2052, 5, 83, 0, 0, 2052, 2053, 5, 84, 0, 0, 2053, 2054, 5, 89, 0, 0, 2054, 2055, 5, 76, 0, 0, 2055, 2056, 5, 69, 0, 0, 2056, 296, 1, 0, 0, 0, 2057, 2058, 5, 84, 0, 0, 2058, 2059, 5, 65, 0, 0, 2059, 2060, 5, 66, 0, 0, 2060, 2061, 5, 76, 0, 0, 2061, 2062, 5, 69, 0, 0, 2062, 2063, 5, 83, 0, 0, 2063, 298, 1, 0, 0, 0, 2064, 2065, 5, 84, 0, 0, 2065, 2066, 5, 69, 0, 0, 2066, 2067, 5, 77, 0, 0, 2067, 2068, 5, 80, 0, 0, 2068, 2069, 5, 79, 0, 0, 2069, 2070, 5, 82, 0, 0, 2070, 2071, 5, 65, 0, 0, 2071, 2072, 5, 82, 0, 0, 2072, 2073, 5, 89, 0, 0, 2073, 300, 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, 67, 0, 0, 2079, 2080, 5, 79, 0, 0, 2080, 2081, 5, 76, 0, 0, 2081, 302, 1, 0, 0, 0, 2082, 2083, 5, 84, 0, 0, 2083, 2084, 5, 73, 0, 0, 2084, 2085, 5, 77, 0, 0, 2085, 2086, 5, 69, 0, 0, 2086, 2087, 5, 83, 0, 0, 2087, 2088, 5, 84, 0, 0, 2088, 2089, 5, 65, 0, 0, 2089, 2090, 5, 77, 0, 0, 2090, 2091, 5, 80, 0, 0, 2091, 2092, 5, 95, 0, 0, 2092, 2093, 5, 76, 0, 0, 2093, 2094, 5, 84, 0, 0, 2094, 2095, 5, 90, 0, 0, 2095, 304, 1, 0, 0, 0, 2096, 2097, 5, 84, 0, 0, 2097, 2098, 5, 73, 0, 0, 2098, 2099, 5, 77, 0, 0, 2099, 2100, 5, 69, 0, 0, 2100, 2101, 5, 83, 0, 0, 2101, 2102, 5, 84, 0, 0, 2102, 2103, 5, 65, 0, 0, 2103, 2104, 5, 77, 0, 0, 2104, 2105, 5, 80, 0, 0, 2105, 2106, 5, 65, 0, 0, 2106, 2107, 5, 68, 0, 0, 2107, 2108, 5, 68, 0, 0, 2108, 306, 1, 0, 0, 0, 2109, 2110, 5, 84, 0, 0, 2110, 2111, 5, 73, 0, 0, 2111, 2112, 5, 77, 0, 0, 2112, 2113, 5, 69, 0, 0, 2113, 2114, 5, 83, 0, 0, 2114, 2115, 5, 84, 0, 0, 2115, 2116, 5, 65, 0, 0, 2116, 2117, 5, 77, 0, 0, 2117, 2118, 5, 80, 0, 0, 2118, 2119, 5, 68, 0, 0, 2119, 2120, 5, 73, 0, 0, 2120, 2121, 5, 70, 0, 0, 2121, 2122, 5, 70, 0, 0, 2122, 308, 1, 0, 0, 0, 2123, 2124, 5, 84, 0, 0, 2124, 2125, 5, 82, 0, 0, 2125, 2126, 5, 65, 0, 0, 2126, 2127, 5, 78, 0, 0, 2127, 2128, 5, 83, 0, 0, 2128, 2129, 5, 70, 0, 0, 2129, 2130, 5, 79, 0, 0, 2130, 2131, 5, 82, 0, 0, 2131, 2132, 5, 77, 0, 0, 2132, 310, 1, 0, 0, 0, 2133, 2134, 5, 84, 0, 0, 2134, 2135, 5, 85, 0, 0, 2135, 2136, 5, 77, 0, 0, 2136, 2137, 5, 66, 0, 0, 2137, 2138, 5, 76, 0, 0, 2138, 2139, 5, 69, 0, 0, 2139, 312, 1, 0, 0, 0, 2140, 2141, 5, 84, 0, 0, 2141, 2142, 5, 89, 0, 0, 2142, 2143, 5, 80, 0, 0, 2143, 2144, 5, 69, 0, 0, 2144, 314, 1, 0, 0, 0, 2145, 2146, 5, 85, 0, 0, 2146, 2147, 5, 78, 0, 0, 2147, 2148, 5, 68, 0, 0, 2148, 2149, 5, 69, 0, 0, 2149, 2150, 5, 82, 0, 0, 2150, 316, 1, 0, 0, 0, 2151, 2152, 5, 85, 0, 0, 2152, 2153, 5, 78, 0, 0, 2153, 2154, 5, 76, 0, 0, 2154, 2155, 5, 79, 0, 0, 2155, 2156, 5, 65, 0, 0, 2156, 2157, 5, 68, 0, 0, 2157, 318, 1, 0, 0, 0, 2158, 2159, 5, 85, 0, 0, 2159, 2160, 5, 83, 0, 0, 2160, 2161, 5, 65, 0, 0, 2161, 2162, 5, 71, 0, 0, 2162, 2163, 5, 69, 0, 0, 2163, 320, 1, 0, 0, 0, 2164, 2165, 5, 85, 0, 0, 2165, 2166, 5, 83, 0, 0, 2166, 2167, 5, 69, 0, 0, 2167, 322, 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, 49, 0, 0, 2172, 2173, 5, 54, 0, 0, 2173, 324, 1, 0, 0, 0, 2174, 2175, 5, 85, 0, 0, 2175, 2176, 5, 84, 0, 0, 2176, 2177, 5, 70, 0, 0, 2177, 2178, 5, 51, 0, 0, 2178, 2179, 5, 50, 0, 0, 2179, 326, 1, 0, 0, 0, 2180, 2181, 5, 85, 0, 0, 2181, 2182, 5, 84, 0, 0, 2182, 2183, 5, 70, 0, 0, 2183, 2184, 5, 56, 0, 0, 2184, 328, 1, 0, 0, 0, 2185, 2186, 5, 86, 0, 0, 2186, 2187, 5, 69, 0, 0, 2187, 2188, 5, 82, 0, 0, 2188, 2189, 5, 83, 0, 0, 2189, 2190, 5, 73, 0, 0, 2190, 2191, 5, 79, 0, 0, 2191, 2192, 5, 78, 0, 0, 2192, 330, 1, 0, 0, 0, 2193, 2194, 5, 86, 0, 0, 2194, 2195, 5, 73, 0, 0, 2195, 2196, 5, 69, 0, 0, 2196, 2197, 5, 87, 0, 0, 2197, 332, 1, 0, 0, 0, 2198, 2199, 5, 86, 0, 0, 2199, 2200, 5, 73, 0, 0, 2200, 2201, 5, 69, 0, 0, 2201, 2202, 5, 87, 0, 0, 2202, 2203, 5, 83, 0, 0, 2203, 334, 1, 0, 0, 0, 2204, 2205, 5, 86, 0, 0, 2205, 2206, 5, 73, 0, 0, 2206, 2207, 5, 82, 0, 0, 2207, 2208, 5, 84, 0, 0, 2208, 2209, 5, 85, 0, 0, 2209, 2210, 5, 65, 0, 0, 2210, 2211, 5, 76, 0, 0, 2211, 336, 1, 0, 0, 0, 2212, 2213, 5, 87, 0, 0, 2213, 2214, 5, 65, 0, 0, 2214, 2215, 5, 84, 0, 0, 2215, 2216, 5, 69, 0, 0, 2216, 2217, 5, 82, 0, 0, 2217, 2218, 5, 77, 0, 0, 2218, 2219, 5, 65, 0, 0, 2219, 2220, 5, 82, 0, 0, 2220, 2221, 5, 75, 0, 0, 2221, 338, 1, 0, 0, 0, 2222, 2223, 5, 87, 0, 0, 2223, 2224, 5, 65, 0, 0, 2224, 2225, 5, 84, 0, 0, 2225, 2226, 5, 69, 0, 0, 2226, 2227, 5, 82, 0, 0, 2227, 2228, 5, 77, 0, 0, 2228, 2229, 5, 65, 0, 0, 2229, 2230, 5, 82, 0, 0, 2230, 2231, 5, 75, 0, 0, 2231, 2232, 5, 83, 0, 0, 2232, 340, 1, 0, 0, 0, 2233, 2234, 5, 87, 0, 0, 2234, 2235, 5, 69, 0, 0, 2235, 2236, 5, 69, 0, 0, 2236, 2237, 5, 75, 0, 0, 2237, 342, 1, 0, 0, 0, 2238, 2239, 5, 87, 0, 0, 2239, 2240, 5, 69, 0, 0, 2240, 2241, 5, 69, 0, 0, 2241, 2242, 5, 75, 0, 0, 2242, 2243, 5, 83, 0, 0, 2243, 344, 1, 0, 0, 0, 2244, 2245, 5, 87, 0, 0, 2245, 2246, 5, 79, 0, 0, 2246, 2247, 5, 82, 0, 0, 2247, 2248, 5, 75, 0, 0, 2248, 346, 1, 0, 0, 0, 2249, 2250, 5, 87, 0, 0, 2250, 2251, 5, 82, 0, 0, 2251, 2252, 5, 65, 0, 0, 2252, 2253, 5, 80, 0, 0, 2253, 2254, 5, 80, 0, 0, 2254, 2255, 5, 69, 0, 0, 2255, 2256, 5, 82, 0, 0, 2256, 348, 1, 0, 0, 0, 2257, 2258, 5, 89, 0, 0, 2258, 2259, 5, 69, 0, 0, 2259, 2260, 5, 65, 0, 0, 2260, 2261, 5, 82, 0, 0, 2261, 2262, 5, 83, 0, 0, 2262, 350, 1, 0, 0, 0, 2263, 2264, 5, 90, 0, 0, 2264, 2265, 5, 79, 0, 0, 2265, 2266, 5, 78, 0, 0, 2266, 2267, 5, 69, 0, 0, 2267, 352, 1, 0, 0, 0, 2268, 2269, 5, 65, 0, 0, 2269, 2270, 5, 66, 0, 0, 2270, 2271, 5, 83, 0, 0, 2271, 354, 1, 0, 0, 0, 2272, 2273, 5, 65, 0, 0, 2273, 2274, 5, 76, 0, 0, 2274, 2275, 5, 76, 0, 0, 2275, 356, 1, 0, 0, 0, 2276, 2277, 5, 65, 0, 0, 2277, 2278, 5, 76, 0, 0, 2278, 2279, 5, 76, 0, 0, 2279, 2280, 5, 79, 0, 0, 2280, 2281, 5, 87, 0, 0, 2281, 358, 1, 0, 0, 0, 2282, 2283, 5, 65, 0, 0, 2283, 2284, 5, 76, 0, 0, 2284, 2285, 5, 84, 0, 0, 2285, 2286, 5, 69, 0, 0, 2286, 2287, 5, 82, 0, 0, 2287, 360, 1, 0, 0, 0, 2288, 2289, 5, 65, 0, 0, 2289, 2290, 5, 78, 0, 0, 2290, 2291, 5, 68, 0, 0, 2291, 362, 1, 0, 0, 0, 2292, 2293, 5, 65, 0, 0, 2293, 2294, 5, 78, 0, 0, 2294, 2295, 5, 89, 0, 0, 2295, 364, 1, 0, 0, 0, 2296, 2297, 5, 65, 0, 0, 2297, 2298, 5, 82, 0, 0, 2298, 2299, 5, 69, 0, 0, 2299, 366, 1, 0, 0, 0, 2300, 2301, 5, 65, 0, 0, 2301, 2302, 5, 82, 0, 0, 2302, 2303, 5, 82, 0, 0, 2303, 2304, 5, 65, 0, 0, 2304, 2305, 5, 89, 0, 0, 2305, 368, 1, 0, 0, 0, 2306, 2307, 5, 65, 0, 0, 2307, 2308, 5, 83, 0, 0, 2308, 370, 1, 0, 0, 0, 2309, 2310, 5, 65, 0, 0, 2310, 2311, 5, 83, 0, 0, 2311, 2312, 5, 89, 0, 0, 2312, 2313, 5, 77, 0, 0, 2313, 2314, 5, 77, 0, 0, 2314, 2315, 5, 69, 0, 0, 2315, 2316, 5, 84, 0, 0, 2316, 2317, 5, 82, 0, 0, 2317, 2318, 5, 73, 0, 0, 2318, 2319, 5, 67, 0, 0, 2319, 372, 1, 0, 0, 0, 2320, 2321, 5, 65, 0, 0, 2321, 2322, 5, 84, 0, 0, 2322, 374, 1, 0, 0, 0, 2323, 2324, 5, 65, 0, 0, 2324, 2325, 5, 86, 0, 0, 2325, 2326, 5, 71, 0, 0, 2326, 376, 1, 0, 0, 0, 2327, 2328, 5, 66, 0, 0, 2328, 2329, 5, 69, 0, 0, 2329, 2330, 5, 71, 0, 0, 2330, 2331, 5, 73, 0, 0, 2331, 2332, 5, 78, 0, 0, 2332, 378, 1, 0, 0, 0, 2333, 2334, 5, 66, 0, 0, 2334, 2335, 5, 69, 0, 0, 2335, 2336, 5, 84, 0, 0, 2336, 2337, 5, 87, 0, 0, 2337, 2338, 5, 69, 0, 0, 2338, 2339, 5, 69, 0, 0, 2339, 2340, 5, 78, 0, 0, 2340, 380, 1, 0, 0, 0, 2341, 2342, 5, 66, 0, 0, 2342, 2343, 5, 73, 0, 0, 2343, 2344, 5, 71, 0, 0, 2344, 2345, 5, 73, 0, 0, 2345, 2346, 5, 78, 0, 0, 2346, 2347, 5, 84, 0, 0, 2347, 382, 1, 0, 0, 0, 2348, 2349, 5, 66, 0, 0, 2349, 2350, 5, 73, 0, 0, 2350, 2351, 5, 78, 0, 0, 2351, 2352, 5, 65, 0, 0, 2352, 2353, 5, 82, 0, 0, 2353, 2354, 5, 89, 0, 0, 2354, 384, 1, 0, 0, 0, 2355, 2356, 5, 66, 0, 0, 2356, 2357, 5, 73, 0, 0, 2357, 2358, 5, 84, 0, 0, 2358, 386, 1, 0, 0, 0, 2359, 2360, 5, 66, 0, 0, 2360, 2361, 5, 76, 0, 0, 2361, 2362, 5, 79, 0, 0, 2362, 2363, 5, 66, 0, 0, 2363, 388, 1, 0, 0, 0, 2364, 2365, 5, 66, 0, 0, 2365, 2366, 5, 79, 0, 0, 2366, 2367, 5, 79, 0, 0, 2367, 2368, 5, 76, 0, 0, 2368, 2369, 5, 69, 0, 0, 2369, 2370, 5, 65, 0, 0, 2370, 2371, 5, 78, 0, 0, 2371, 390, 1, 0, 0, 0, 2372, 2373, 5, 66, 0, 0, 2373, 2374, 5, 79, 0, 0, 2374, 2375, 5, 84, 0, 0, 2375, 2376, 5, 72, 0, 0, 2376, 392, 1, 0, 0, 0, 2377, 2378, 5, 66, 0, 0, 2378, 2379, 5, 89, 0, 0, 2379, 394, 1, 0, 0, 0, 2380, 2381, 5, 67, 0, 0, 2381, 2382, 5, 65, 0, 0, 2382, 2383, 5, 76, 0, 0, 2383, 2384, 5, 76, 0, 0, 2384, 396, 1, 0, 0, 0, 2385, 2386, 5, 67, 0, 0, 2386, 2387, 5, 65, 0, 0, 2387, 2388, 5, 76, 0, 0, 2388, 2389, 5, 76, 0, 0, 2389, 2390, 5, 69, 0, 0, 2390, 2391, 5, 68, 0, 0, 2391, 398, 1, 0, 0, 0, 2392, 2393, 5, 67, 0, 0, 2393, 2394, 5, 65, 0, 0, 2394, 2395, 5, 83, 0, 0, 2395, 2396, 5, 67, 0, 0, 2396, 2397, 5, 65, 0, 0, 2397, 2398, 5, 68, 0, 0, 2398, 2399, 5, 69, 0, 0, 2399, 2400, 5, 68, 0, 0, 2400, 400, 1, 0, 0, 0, 2401, 2402, 5, 67, 0, 0, 2402, 2403, 5, 65, 0, 0, 2403, 2404, 5, 83, 0, 0, 2404, 2405, 5, 69, 0, 0, 2405, 402, 1, 0, 0, 0, 2406, 2407, 5, 67, 0, 0, 2407, 2408, 5, 65, 0, 0, 2408, 2409, 5, 83, 0, 0, 2409, 2410, 5, 84, 0, 0, 2410, 404, 1, 0, 0, 0, 2411, 2412, 5, 67, 0, 0, 2412, 2413, 5, 69, 0, 0, 2413, 2414, 5, 73, 0, 0, 2414, 2415, 5, 76, 0, 0, 2415, 406, 1, 0, 0, 0, 2416, 2417, 5, 67, 0, 0, 2417, 2418, 5, 72, 0, 0, 2418, 2419, 5, 65, 0, 0, 2419, 2420, 5, 82, 0, 0, 2420, 408, 1, 0, 0, 0, 2421, 2422, 5, 67, 0, 0, 2422, 2423, 5, 72, 0, 0, 2423, 2424, 5, 65, 0, 0, 2424, 2425, 5, 82, 0, 0, 2425, 2426, 5, 65, 0, 0, 2426, 2427, 5, 67, 0, 0, 2427, 2428, 5, 84, 0, 0, 2428, 2429, 5, 69, 0, 0, 2429, 2430, 5, 82, 0, 0, 2430, 410, 1, 0, 0, 0, 2431, 2432, 5, 67, 0, 0, 2432, 2433, 5, 72, 0, 0, 2433, 2434, 5, 69, 0, 0, 2434, 2435, 5, 67, 0, 0, 2435, 2436, 5, 75, 0, 0, 2436, 412, 1, 0, 0, 0, 2437, 2438, 5, 67, 0, 0, 2438, 2439, 5, 76, 0, 0, 2439, 2440, 5, 79, 0, 0, 2440, 2441, 5, 66, 0, 0, 2441, 414, 1, 0, 0, 0, 2442, 2443, 5, 67, 0, 0, 2443, 2444, 5, 76, 0, 0, 2444, 2445, 5, 79, 0, 0, 2445, 2446, 5, 83, 0, 0, 2446, 2447, 5, 69, 0, 0, 2447, 416, 1, 0, 0, 0, 2448, 2449, 5, 67, 0, 0, 2449, 2450, 5, 79, 0, 0, 2450, 2451, 5, 65, 0, 0, 2451, 2452, 5, 76, 0, 0, 2452, 2453, 5, 69, 0, 0, 2453, 2454, 5, 83, 0, 0, 2454, 2455, 5, 67, 0, 0, 2455, 2456, 5, 69, 0, 0, 2456, 418, 1, 0, 0, 0, 2457, 2458, 5, 67, 0, 0, 2458, 2459, 5, 79, 0, 0, 2459, 2460, 5, 76, 0, 0, 2460, 2461, 5, 76, 0, 0, 2461, 2462, 5, 65, 0, 0, 2462, 2463, 5, 84, 0, 0, 2463, 2464, 5, 69, 0, 0, 2464, 420, 1, 0, 0, 0, 2465, 2466, 5, 67, 0, 0, 2466, 2467, 5, 79, 0, 0, 2467, 2468, 5, 76, 0, 0, 2468, 2469, 5, 76, 0, 0, 2469, 2470, 5, 69, 0, 0, 2470, 2471, 5, 67, 0, 0, 2471, 2472, 5, 84, 0, 0, 2472, 422, 1, 0, 0, 0, 2473, 2474, 5, 67, 0, 0, 2474, 2475, 5, 79, 0, 0, 2475, 2476, 5, 76, 0, 0, 2476, 2477, 5, 85, 0, 0, 2477, 2478, 5, 77, 0, 0, 2478, 2479, 5, 78, 0, 0, 2479, 424, 1, 0, 0, 0, 2480, 2481, 5, 67, 0, 0, 2481, 2482, 5, 79, 0, 0, 2482, 2483, 5, 77, 0, 0, 2483, 2484, 5, 77, 0, 0, 2484, 2485, 5, 73, 0, 0, 2485, 2486, 5, 84, 0, 0, 2486, 426, 1, 0, 0, 0, 2487, 2488, 5, 67, 0, 0, 2488, 2489, 5, 79, 0, 0, 2489, 2490, 5, 78, 0, 0, 2490, 2491, 5, 78, 0, 0, 2491, 2492, 5, 69, 0, 0, 2492, 2493, 5, 67, 0, 0, 2493, 2494, 5, 84, 0, 0, 2494, 428, 1, 0, 0, 0, 2495, 2496, 5, 67, 0, 0, 2496, 2497, 5, 79, 0, 0, 2497, 2498, 5, 78, 0, 0, 2498, 2499, 5, 83, 0, 0, 2499, 2500, 5, 84, 0, 0, 2500, 2501, 5, 82, 0, 0, 2501, 2502, 5, 65, 0, 0, 2502, 2503, 5, 73, 0, 0, 2503, 2504, 5, 78, 0, 0, 2504, 2505, 5, 84, 0, 0, 2505, 430, 1, 0, 0, 0, 2506, 2507, 5, 67, 0, 0, 2507, 2508, 5, 79, 0, 0, 2508, 2509, 5, 78, 0, 0, 2509, 2510, 5, 84, 0, 0, 2510, 2511, 5, 65, 0, 0, 2511, 2512, 5, 73, 0, 0, 2512, 2513, 5, 78, 0, 0, 2513, 2514, 5, 83, 0, 0, 2514, 432, 1, 0, 0, 0, 2515, 2516, 5, 67, 0, 0, 2516, 2517, 5, 79, 0, 0, 2517, 2518, 5, 78, 0, 0, 2518, 2519, 5, 86, 0, 0, 2519, 2520, 5, 69, 0, 0, 2520, 2521, 5, 82, 0, 0, 2521, 2522, 5, 84, 0, 0, 2522, 434, 1, 0, 0, 0, 2523, 2524, 5, 67, 0, 0, 2524, 2525, 5, 79, 0, 0, 2525, 2526, 5, 85, 0, 0, 2526, 2527, 5, 78, 0, 0, 2527, 2528, 5, 84, 0, 0, 2528, 436, 1, 0, 0, 0, 2529, 2530, 5, 67, 0, 0, 2530, 2531, 5, 82, 0, 0, 2531, 2532, 5, 69, 0, 0, 2532, 2533, 5, 65, 0, 0, 2533, 2534, 5, 84, 0, 0, 2534, 2535, 5, 69, 0, 0, 2535, 438, 1, 0, 0, 0, 2536, 2537, 5, 67, 0, 0, 2537, 2538, 5, 82, 0, 0, 2538, 2539, 5, 79, 0, 0, 2539, 2540, 5, 83, 0, 0, 2540, 2541, 5, 83, 0, 0, 2541, 440, 1, 0, 0, 0, 2542, 2543, 5, 67, 0, 0, 2543, 2544, 5, 85, 0, 0, 2544, 2545, 5, 66, 0, 0, 2545, 2546, 5, 69, 0, 0, 2546, 442, 1, 0, 0, 0, 2547, 2548, 5, 67, 0, 0, 2548, 2549, 5, 85, 0, 0, 2549, 2550, 5, 82, 0, 0, 2550, 2551, 5, 82, 0, 0, 2551, 2552, 5, 69, 0, 0, 2552, 2553, 5, 78, 0, 0, 2553, 2554, 5, 84, 0, 0, 2554, 444, 1, 0, 0, 0, 2555, 2556, 5, 67, 0, 0, 2556, 2557, 5, 85, 0, 0, 2557, 2558, 5, 82, 0, 0, 2558, 2559, 5, 83, 0, 0, 2559, 2560, 5, 79, 0, 0, 2560, 2561, 5, 82, 0, 0, 2561, 446, 1, 0, 0, 0, 2562, 2563, 5, 67, 0, 0, 2563, 2564, 5, 89, 0, 0, 2564, 2565, 5, 67, 0, 0, 2565, 2566, 5, 76, 0, 0, 2566, 2567, 5, 69, 0, 0, 2567, 448, 1, 0, 0, 0, 2568, 2569, 5, 68, 0, 0, 2569, 2570, 5, 65, 0, 0, 2570, 2571, 5, 84, 0, 0, 2571, 2572, 5, 69, 0, 0, 2572, 450, 1, 0, 0, 0, 2573, 2574, 5, 68, 0, 0, 2574, 2575, 5, 65, 0, 0, 2575, 2576, 5, 84, 0, 0, 2576, 2577, 5, 69, 0, 0, 2577, 2578, 5, 84, 0, 0, 2578, 2579, 5, 73, 0, 0, 2579, 2580, 5, 77, 0, 0, 2580, 2581, 5, 69, 0, 0, 2581, 452, 1, 0, 0, 0, 2582, 2583, 5, 68, 0, 0, 2583, 2584, 5, 65, 0, 0, 2584, 2585, 5, 89, 0, 0, 2585, 454, 1, 0, 0, 0, 2586, 2587, 5, 68, 0, 0, 2587, 2588, 5, 69, 0, 0, 2588, 2589, 5, 67, 0, 0, 2589, 456, 1, 0, 0, 0, 2590, 2591, 5, 68, 0, 0, 2591, 2592, 5, 69, 0, 0, 2592, 2593, 5, 67, 0, 0, 2593, 2594, 5, 73, 0, 0, 2594, 2595, 5, 77, 0, 0, 2595, 2596, 5, 65, 0, 0, 2596, 2597, 5, 76, 0, 0, 2597, 458, 1, 0, 0, 0, 2598, 2599, 5, 68, 0, 0, 2599, 2600, 5, 69, 0, 0, 2600, 2601, 5, 67, 0, 0, 2601, 2602, 5, 76, 0, 0, 2602, 2603, 5, 65, 0, 0, 2603, 2604, 5, 82, 0, 0, 2604, 2605, 5, 69, 0, 0, 2605, 460, 1, 0, 0, 0, 2606, 2607, 5, 68, 0, 0, 2607, 2608, 5, 69, 0, 0, 2608, 2609, 5, 70, 0, 0, 2609, 2610, 5, 65, 0, 0, 2610, 2611, 5, 85, 0, 0, 2611, 2612, 5, 76, 0, 0, 2612, 2613, 5, 84, 0, 0, 2613, 462, 1, 0, 0, 0, 2614, 2615, 5, 68, 0, 0, 2615, 2616, 5, 69, 0, 0, 2616, 2617, 5, 70, 0, 0, 2617, 2618, 5, 73, 0, 0, 2618, 2619, 5, 78, 0, 0, 2619, 2620, 5, 69, 0, 0, 2620, 464, 1, 0, 0, 0, 2621, 2622, 5, 68, 0, 0, 2622, 2623, 5, 69, 0, 0, 2623, 2624, 5, 76, 0, 0, 2624, 2625, 5, 69, 0, 0, 2625, 2626, 5, 84, 0, 0, 2626, 2627, 5, 69, 0, 0, 2627, 466, 1, 0, 0, 0, 2628, 2629, 5, 68, 0, 0, 2629, 2630, 5, 69, 0, 0, 2630, 2631, 5, 83, 0, 0, 2631, 2632, 5, 67, 0, 0, 2632, 2633, 5, 82, 0, 0, 2633, 2634, 5, 73, 0, 0, 2634, 2635, 5, 66, 0, 0, 2635, 2636, 5, 69, 0, 0, 2636, 468, 1, 0, 0, 0, 2637, 2638, 5, 68, 0, 0, 2638, 2639, 5, 73, 0, 0, 2639, 2640, 5, 83, 0, 0, 2640, 2641, 5, 84, 0, 0, 2641, 2642, 5, 73, 0, 0, 2642, 2643, 5, 78, 0, 0, 2643, 2644, 5, 67, 0, 0, 2644, 2645, 5, 84, 0, 0, 2645, 470, 1, 0, 0, 0, 2646, 2647, 5, 68, 0, 0, 2647, 2648, 5, 79, 0, 0, 2648, 2649, 5, 85, 0, 0, 2649, 2650, 5, 66, 0, 0, 2650, 2651, 5, 76, 0, 0, 2651, 2652, 5, 69, 0, 0, 2652, 472, 1, 0, 0, 0, 2653, 2654, 5, 68, 0, 0, 2654, 2655, 5, 82, 0, 0, 2655, 2656, 5, 79, 0, 0, 2656, 2657, 5, 80, 0, 0, 2657, 474, 1, 0, 0, 0, 2658, 2659, 5, 69, 0, 0, 2659, 2660, 5, 65, 0, 0, 2660, 2661, 5, 67, 0, 0, 2661, 2662, 5, 72, 0, 0, 2662, 476, 1, 0, 0, 0, 2663, 2664, 5, 69, 0, 0, 2664, 2665, 5, 76, 0, 0, 2665, 2666, 5, 83, 0, 0, 2666, 2667, 5, 69, 0, 0, 2667, 478, 1, 0, 0, 0, 2668, 2669, 5, 69, 0, 0, 2669, 2670, 5, 78, 0, 0, 2670, 2671, 5, 68, 0, 0, 2671, 480, 1, 0, 0, 0, 2672, 2673, 5, 69, 0, 0, 2673, 2674, 5, 81, 0, 0, 2674, 2675, 5, 85, 0, 0, 2675, 2676, 5, 65, 0, 0, 2676, 2677, 5, 76, 0, 0, 2677, 2678, 5, 83, 0, 0, 2678, 482, 1, 0, 0, 0, 2679, 2680, 5, 69, 0, 0, 2680, 2681, 5, 83, 0, 0, 2681, 2682, 5, 67, 0, 0, 2682, 2683, 5, 65, 0, 0, 2683, 2684, 5, 80, 0, 0, 2684, 2685, 5, 69, 0, 0, 2685, 484, 1, 0, 0, 0, 2686, 2687, 5, 69, 0, 0, 2687, 2688, 5, 88, 0, 0, 2688, 2689, 5, 67, 0, 0, 2689, 2690, 5, 69, 0, 0, 2690, 2691, 5, 80, 0, 0, 2691, 2692, 5, 84, 0, 0, 2692, 486, 1, 0, 0, 0, 2693, 2694, 5, 69, 0, 0, 2694, 2695, 5, 88, 0, 0, 2695, 2696, 5, 69, 0, 0, 2696, 2697, 5, 67, 0, 0, 2697, 2698, 5, 85, 0, 0, 2698, 2699, 5, 84, 0, 0, 2699, 2700, 5, 69, 0, 0, 2700, 488, 1, 0, 0, 0, 2701, 2702, 5, 69, 0, 0, 2702, 2703, 5, 88, 0, 0, 2703, 2704, 5, 73, 0, 0, 2704, 2705, 5, 83, 0, 0, 2705, 2706, 5, 84, 0, 0, 2706, 2707, 5, 83, 0, 0, 2707, 490, 1, 0, 0, 0, 2708, 2709, 5, 69, 0, 0, 2709, 2710, 5, 88, 0, 0, 2710, 2711, 5, 80, 0, 0, 2711, 2712, 5, 76, 0, 0, 2712, 2713, 5, 65, 0, 0, 2713, 2714, 5, 73, 0, 0, 2714, 2715, 5, 78, 0, 0, 2715, 492, 1, 0, 0, 0, 2716, 2717, 5, 69, 0, 0, 2717, 2718, 5, 88, 0, 0, 2718, 2719, 5, 84, 0, 0, 2719, 2720, 5, 69, 0, 0, 2720, 2721, 5, 82, 0, 0, 2721, 2722, 5, 78, 0, 0, 2722, 2723, 5, 65, 0, 0, 2723, 2724, 5, 76, 0, 0, 2724, 494, 1, 0, 0, 0, 2725, 2726, 5, 69, 0, 0, 2726, 2727, 5, 88, 0, 0, 2727, 2728, 5, 84, 0, 0, 2728, 2729, 5, 82, 0, 0, 2729, 2730, 5, 65, 0, 0, 2730, 2731, 5, 67, 0, 0, 2731, 2732, 5, 84, 0, 0, 2732, 496, 1, 0, 0, 0, 2733, 2734, 5, 70, 0, 0, 2734, 2735, 5, 65, 0, 0, 2735, 2736, 5, 76, 0, 0, 2736, 2737, 5, 83, 0, 0, 2737, 2738, 5, 69, 0, 0, 2738, 498, 1, 0, 0, 0, 2739, 2740, 5, 70, 0, 0, 2740, 2741, 5, 76, 0, 0, 2741, 2742, 5, 79, 0, 0, 2742, 2743, 5, 65, 0, 0, 2743, 2744, 5, 84, 0, 0, 2744, 500, 1, 0, 0, 0, 2745, 2746, 5, 70, 0, 0, 2746, 2747, 5, 79, 0, 0, 2747, 2748, 5, 82, 0, 0, 2748, 502, 1, 0, 0, 0, 2749, 2750, 5, 70, 0, 0, 2750, 2751, 5, 82, 0, 0, 2751, 2752, 5, 79, 0, 0, 2752, 2753, 5, 77, 0, 0, 2753, 504, 1, 0, 0, 0, 2754, 2755, 5, 70, 0, 0, 2755, 2756, 5, 85, 0, 0, 2756, 2757, 5, 76, 0, 0, 2757, 2758, 5, 76, 0, 0, 2758, 506, 1, 0, 0, 0, 2759, 2760, 5, 70, 0, 0, 2760, 2761, 5, 85, 0, 0, 2761, 2762, 5, 78, 0, 0, 2762, 2763, 5, 67, 0, 0, 2763, 2764, 5, 84, 0, 0, 2764, 2765, 5, 73, 0, 0, 2765, 2766, 5, 79, 0, 0, 2766, 2767, 5, 78, 0, 0, 2767, 508, 1, 0, 0, 0, 2768, 2769, 5, 71, 0, 0, 2769, 2770, 5, 76, 0, 0, 2770, 2771, 5, 79, 0, 0, 2771, 2772, 5, 66, 0, 0, 2772, 2773, 5, 65, 0, 0, 2773, 2774, 5, 76, 0, 0, 2774, 510, 1, 0, 0, 0, 2775, 2776, 5, 71, 0, 0, 2776, 2777, 5, 82, 0, 0, 2777, 2778, 5, 65, 0, 0, 2778, 2779, 5, 78, 0, 0, 2779, 2780, 5, 84, 0, 0, 2780, 512, 1, 0, 0, 0, 2781, 2782, 5, 71, 0, 0, 2782, 2783, 5, 82, 0, 0, 2783, 2784, 5, 79, 0, 0, 2784, 2785, 5, 85, 0, 0, 2785, 2786, 5, 80, 0, 0, 2786, 514, 1, 0, 0, 0, 2787, 2788, 5, 71, 0, 0, 2788, 2789, 5, 82, 0, 0, 2789, 2790, 5, 79, 0, 0, 2790, 2791, 5, 85, 0, 0, 2791, 2792, 5, 80, 0, 0, 2792, 2793, 5, 73, 0, 0, 2793, 2794, 5, 78, 0, 0, 2794, 2795, 5, 71, 0, 0, 2795, 516, 1, 0, 0, 0, 2796, 2797, 5, 71, 0, 0, 2797, 2798, 5, 82, 0, 0, 2798, 2799, 5, 79, 0, 0, 2799, 2800, 5, 85, 0, 0, 2800, 2801, 5, 80, 0, 0, 2801, 2802, 5, 83, 0, 0, 2802, 518, 1, 0, 0, 0, 2803, 2804, 5, 72, 0, 0, 2804, 2805, 5, 65, 0, 0, 2805, 2806, 5, 86, 0, 0, 2806, 2807, 5, 73, 0, 0, 2807, 2808, 5, 78, 0, 0, 2808, 2809, 5, 71, 0, 0, 2809, 520, 1, 0, 0, 0, 2810, 2811, 5, 72, 0, 0, 2811, 2812, 5, 79, 0, 0, 2812, 2813, 5, 85, 0, 0, 2813, 2814, 5, 82, 0, 0, 2814, 522, 1, 0, 0, 0, 2815, 2816, 5, 73, 0, 0, 2816, 2817, 5, 77, 0, 0, 2817, 2818, 5, 80, 0, 0, 2818, 2819, 5, 79, 0, 0, 2819, 2820, 5, 82, 0, 0, 2820, 2821, 5, 84, 0, 0, 2821, 524, 1, 0, 0, 0, 2822, 2823, 5, 73, 0, 0, 2823, 2824, 5, 78, 0, 0, 2824, 526, 1, 0, 0, 0, 2825, 2826, 5, 73, 0, 0, 2826, 2827, 5, 78, 0, 0, 2827, 2828, 5, 67, 0, 0, 2828, 2829, 5, 76, 0, 0, 2829, 2830, 5, 85, 0, 0, 2830, 2831, 5, 68, 0, 0, 2831, 2832, 5, 73, 0, 0, 2832, 2833, 5, 78, 0, 0, 2833, 2834, 5, 71, 0, 0, 2834, 528, 1, 0, 0, 0, 2835, 2836, 5, 73, 0, 0, 2836, 2837, 5, 78, 0, 0, 2837, 2838, 5, 78, 0, 0, 2838, 2839, 5, 69, 0, 0, 2839, 2840, 5, 82, 0, 0, 2840, 530, 1, 0, 0, 0, 2841, 2842, 5, 73, 0, 0, 2842, 2843, 5, 78, 0, 0, 2843, 2844, 5, 79, 0, 0, 2844, 2845, 5, 85, 0, 0, 2845, 2846, 5, 84, 0, 0, 2846, 532, 1, 0, 0, 0, 2847, 2848, 5, 73, 0, 0, 2848, 2849, 5, 78, 0, 0, 2849, 2850, 5, 83, 0, 0, 2850, 2851, 5, 69, 0, 0, 2851, 2852, 5, 82, 0, 0, 2852, 2853, 5, 84, 0, 0, 2853, 534, 1, 0, 0, 0, 2854, 2855, 5, 73, 0, 0, 2855, 2856, 5, 78, 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, 71, 0, 0, 2863, 2864, 5, 69, 0, 0, 2864, 2865, 5, 82, 0, 0, 2865, 538, 1, 0, 0, 0, 2866, 2867, 5, 73, 0, 0, 2867, 2868, 5, 78, 0, 0, 2868, 2869, 5, 84, 0, 0, 2869, 2870, 5, 69, 0, 0, 2870, 2871, 5, 82, 0, 0, 2871, 2872, 5, 83, 0, 0, 2872, 2873, 5, 69, 0, 0, 2873, 2874, 5, 67, 0, 0, 2874, 2875, 5, 84, 0, 0, 2875, 540, 1, 0, 0, 0, 2876, 2877, 5, 73, 0, 0, 2877, 2878, 5, 78, 0, 0, 2878, 2879, 5, 84, 0, 0, 2879, 2880, 5, 69, 0, 0, 2880, 2881, 5, 82, 0, 0, 2881, 2882, 5, 86, 0, 0, 2882, 2883, 5, 65, 0, 0, 2883, 2884, 5, 76, 0, 0, 2884, 542, 1, 0, 0, 0, 2885, 2886, 5, 73, 0, 0, 2886, 2887, 5, 78, 0, 0, 2887, 2888, 5, 84, 0, 0, 2888, 2889, 5, 79, 0, 0, 2889, 544, 1, 0, 0, 0, 2890, 2891, 5, 73, 0, 0, 2891, 2892, 5, 83, 0, 0, 2892, 546, 1, 0, 0, 0, 2893, 2894, 5, 74, 0, 0, 2894, 2895, 5, 79, 0, 0, 2895, 2896, 5, 73, 0, 0, 2896, 2897, 5, 78, 0, 0, 2897, 548, 1, 0, 0, 0, 2898, 2899, 5, 76, 0, 0, 2899, 2900, 5, 65, 0, 0, 2900, 2901, 5, 71, 0, 0, 2901, 550, 1, 0, 0, 0, 2902, 2903, 5, 76, 0, 0, 2903, 2904, 5, 65, 0, 0, 2904, 2905, 5, 78, 0, 0, 2905, 2906, 5, 71, 0, 0, 2906, 2907, 5, 85, 0, 0, 2907, 2908, 5, 65, 0, 0, 2908, 2909, 5, 71, 0, 0, 2909, 2910, 5, 69, 0, 0, 2910, 552, 1, 0, 0, 0, 2911, 2912, 5, 76, 0, 0, 2912, 2913, 5, 65, 0, 0, 2913, 2914, 5, 84, 0, 0, 2914, 2915, 5, 69, 0, 0, 2915, 2916, 5, 82, 0, 0, 2916, 2917, 5, 65, 0, 0, 2917, 2918, 5, 76, 0, 0, 2918, 554, 1, 0, 0, 0, 2919, 2920, 5, 76, 0, 0, 2920, 2921, 5, 69, 0, 0, 2921, 2922, 5, 65, 0, 0, 2922, 2923, 5, 68, 0, 0, 2923, 2924, 5, 73, 0, 0, 2924, 2925, 5, 78, 0, 0, 2925, 2926, 5, 71, 0, 0, 2926, 556, 1, 0, 0, 0, 2927, 2928, 5, 76, 0, 0, 2928, 2929, 5, 69, 0, 0, 2929, 2930, 5, 70, 0, 0, 2930, 2931, 5, 84, 0, 0, 2931, 558, 1, 0, 0, 0, 2932, 2933, 5, 76, 0, 0, 2933, 2934, 5, 73, 0, 0, 2934, 2935, 5, 75, 0, 0, 2935, 2936, 5, 69, 0, 0, 2936, 560, 1, 0, 0, 0, 2937, 2938, 5, 76, 0, 0, 2938, 2939, 5, 73, 0, 0, 2939, 2940, 5, 77, 0, 0, 2940, 2941, 5, 73, 0, 0, 2941, 2942, 5, 84, 0, 0, 2942, 562, 1, 0, 0, 0, 2943, 2944, 5, 76, 0, 0, 2944, 2945, 5, 79, 0, 0, 2945, 2946, 5, 67, 0, 0, 2946, 2947, 5, 65, 0, 0, 2947, 2948, 5, 76, 0, 0, 2948, 564, 1, 0, 0, 0, 2949, 2950, 5, 77, 0, 0, 2950, 2951, 5, 65, 0, 0, 2951, 2952, 5, 84, 0, 0, 2952, 2953, 5, 67, 0, 0, 2953, 2954, 5, 72, 0, 0, 2954, 566, 1, 0, 0, 0, 2955, 2956, 5, 77, 0, 0, 2956, 2957, 5, 65, 0, 0, 2957, 2958, 5, 84, 0, 0, 2958, 2959, 5, 67, 0, 0, 2959, 2960, 5, 72, 0, 0, 2960, 2961, 5, 95, 0, 0, 2961, 2962, 5, 82, 0, 0, 2962, 2963, 5, 69, 0, 0, 2963, 2964, 5, 67, 0, 0, 2964, 2965, 5, 79, 0, 0, 2965, 2966, 5, 71, 0, 0, 2966, 2967, 5, 78, 0, 0, 2967, 2968, 5, 73, 0, 0, 2968, 2969, 5, 90, 0, 0, 2969, 2970, 5, 69, 0, 0, 2970, 568, 1, 0, 0, 0, 2971, 2972, 5, 77, 0, 0, 2972, 2973, 5, 69, 0, 0, 2973, 2974, 5, 65, 0, 0, 2974, 2975, 5, 83, 0, 0, 2975, 2976, 5, 85, 0, 0, 2976, 2977, 5, 82, 0, 0, 2977, 2978, 5, 69, 0, 0, 2978, 2979, 5, 83, 0, 0, 2979, 570, 1, 0, 0, 0, 2980, 2981, 5, 77, 0, 0, 2981, 2982, 5, 69, 0, 0, 2982, 2983, 5, 82, 0, 0, 2983, 2984, 5, 71, 0, 0, 2984, 2985, 5, 69, 0, 0, 2985, 572, 1, 0, 0, 0, 2986, 2987, 5, 77, 0, 0, 2987, 2988, 5, 69, 0, 0, 2988, 2989, 5, 84, 0, 0, 2989, 2990, 5, 65, 0, 0, 2990, 2991, 5, 68, 0, 0, 2991, 2992, 5, 65, 0, 0, 2992, 2993, 5, 84, 0, 0, 2993, 2994, 5, 65, 0, 0, 2994, 574, 1, 0, 0, 0, 2995, 2996, 5, 77, 0, 0, 2996, 2997, 5, 73, 0, 0, 2997, 2998, 5, 78, 0, 0, 2998, 2999, 5, 85, 0, 0, 2999, 3000, 5, 83, 0, 0, 3000, 576, 1, 0, 0, 0, 3001, 3002, 5, 77, 0, 0, 3002, 3003, 5, 73, 0, 0, 3003, 3004, 5, 78, 0, 0, 3004, 3005, 5, 85, 0, 0, 3005, 3006, 5, 84, 0, 0, 3006, 3007, 5, 69, 0, 0, 3007, 578, 1, 0, 0, 0, 3008, 3009, 5, 77, 0, 0, 3009, 3010, 5, 79, 0, 0, 3010, 3011, 5, 68, 0, 0, 3011, 3012, 5, 73, 0, 0, 3012, 3013, 5, 70, 0, 0, 3013, 3014, 5, 73, 0, 0, 3014, 3015, 5, 69, 0, 0, 3015, 3016, 5, 83, 0, 0, 3016, 580, 1, 0, 0, 0, 3017, 3018, 5, 77, 0, 0, 3018, 3019, 5, 79, 0, 0, 3019, 3020, 5, 68, 0, 0, 3020, 3021, 5, 85, 0, 0, 3021, 3022, 5, 76, 0, 0, 3022, 3023, 5, 69, 0, 0, 3023, 582, 1, 0, 0, 0, 3024, 3025, 5, 77, 0, 0, 3025, 3026, 5, 79, 0, 0, 3026, 3027, 5, 78, 0, 0, 3027, 3028, 5, 84, 0, 0, 3028, 3029, 5, 72, 0, 0, 3029, 584, 1, 0, 0, 0, 3030, 3031, 5, 77, 0, 0, 3031, 3032, 5, 85, 0, 0, 3032, 3033, 5, 76, 0, 0, 3033, 3034, 5, 84, 0, 0, 3034, 3035, 5, 73, 0, 0, 3035, 3036, 5, 83, 0, 0, 3036, 3037, 5, 69, 0, 0, 3037, 3038, 5, 84, 0, 0, 3038, 586, 1, 0, 0, 0, 3039, 3040, 5, 78, 0, 0, 3040, 3041, 5, 65, 0, 0, 3041, 3042, 5, 84, 0, 0, 3042, 3043, 5, 85, 0, 0, 3043, 3044, 5, 82, 0, 0, 3044, 3045, 5, 65, 0, 0, 3045, 3046, 5, 76, 0, 0, 3046, 588, 1, 0, 0, 0, 3047, 3048, 5, 78, 0, 0, 3048, 3049, 5, 69, 0, 0, 3049, 3050, 5, 88, 0, 0, 3050, 3051, 5, 84, 0, 0, 3051, 590, 1, 0, 0, 0, 3052, 3053, 5, 78, 0, 0, 3053, 3054, 5, 79, 0, 0, 3054, 592, 1, 0, 0, 0, 3055, 3056, 5, 78, 0, 0, 3056, 3057, 5, 79, 0, 0, 3057, 3058, 5, 78, 0, 0, 3058, 3059, 5, 69, 0, 0, 3059, 594, 1, 0, 0, 0, 3060, 3061, 5, 78, 0, 0, 3061, 3062, 5, 79, 0, 0, 3062, 3063, 5, 84, 0, 0, 3063, 596, 1, 0, 0, 0, 3064, 3065, 5, 78, 0, 0, 3065, 3066, 5, 85, 0, 0, 3066, 3067, 5, 76, 0, 0, 3067, 3068, 5, 76, 0, 0, 3068, 598, 1, 0, 0, 0, 3069, 3070, 5, 78, 0, 0, 3070, 3071, 5, 85, 0, 0, 3071, 3072, 5, 77, 0, 0, 3072, 3073, 5, 69, 0, 0, 3073, 3074, 5, 82, 0, 0, 3074, 3075, 5, 73, 0, 0, 3075, 3076, 5, 67, 0, 0, 3076, 600, 1, 0, 0, 0, 3077, 3078, 5, 79, 0, 0, 3078, 3079, 5, 70, 0, 0, 3079, 602, 1, 0, 0, 0, 3080, 3081, 5, 79, 0, 0, 3081, 3082, 5, 70, 0, 0, 3082, 3083, 5, 70, 0, 0, 3083, 3084, 5, 83, 0, 0, 3084, 3085, 5, 69, 0, 0, 3085, 3086, 5, 84, 0, 0, 3086, 604, 1, 0, 0, 0, 3087, 3088, 5, 79, 0, 0, 3088, 3089, 5, 78, 0, 0, 3089, 606, 1, 0, 0, 0, 3090, 3091, 5, 79, 0, 0, 3091, 3092, 5, 78, 0, 0, 3092, 3093, 5, 69, 0, 0, 3093, 608, 1, 0, 0, 0, 3094, 3095, 5, 79, 0, 0, 3095, 3096, 5, 82, 0, 0, 3096, 610, 1, 0, 0, 0, 3097, 3098, 5, 79, 0, 0, 3098, 3099, 5, 82, 0, 0, 3099, 3100, 5, 68, 0, 0, 3100, 3101, 5, 69, 0, 0, 3101, 3102, 5, 82, 0, 0, 3102, 612, 1, 0, 0, 0, 3103, 3104, 5, 79, 0, 0, 3104, 3105, 5, 85, 0, 0, 3105, 3106, 5, 84, 0, 0, 3106, 614, 1, 0, 0, 0, 3107, 3108, 5, 79, 0, 0, 3108, 3109, 5, 85, 0, 0, 3109, 3110, 5, 84, 0, 0, 3110, 3111, 5, 69, 0, 0, 3111, 3112, 5, 82, 0, 0, 3112, 616, 1, 0, 0, 0, 3113, 3114, 5, 79, 0, 0, 3114, 3115, 5, 86, 0, 0, 3115, 3116, 5, 69, 0, 0, 3116, 3117, 5, 82, 0, 0, 3117, 618, 1, 0, 0, 0, 3118, 3119, 5, 79, 0, 0, 3119, 3120, 5, 86, 0, 0, 3120, 3121, 5, 69, 0, 0, 3121, 3122, 5, 82, 0, 0, 3122, 3123, 5, 76, 0, 0, 3123, 3124, 5, 65, 0, 0, 3124, 3125, 5, 89, 0, 0, 3125, 620, 1, 0, 0, 0, 3126, 3127, 5, 80, 0, 0, 3127, 3128, 5, 65, 0, 0, 3128, 3129, 5, 82, 0, 0, 3129, 3130, 5, 84, 0, 0, 3130, 3131, 5, 73, 0, 0, 3131, 3132, 5, 84, 0, 0, 3132, 3133, 5, 73, 0, 0, 3133, 3134, 5, 79, 0, 0, 3134, 3135, 5, 78, 0, 0, 3135, 622, 1, 0, 0, 0, 3136, 3137, 5, 80, 0, 0, 3137, 3138, 5, 65, 0, 0, 3138, 3139, 5, 84, 0, 0, 3139, 3140, 5, 84, 0, 0, 3140, 3141, 5, 69, 0, 0, 3141, 3142, 5, 82, 0, 0, 3142, 3143, 5, 78, 0, 0, 3143, 624, 1, 0, 0, 0, 3144, 3145, 5, 80, 0, 0, 3145, 3146, 5, 69, 0, 0, 3146, 3147, 5, 82, 0, 0, 3147, 626, 1, 0, 0, 0, 3148, 3149, 5, 80, 0, 0, 3149, 3150, 5, 69, 0, 0, 3150, 3151, 5, 82, 0, 0, 3151, 3152, 5, 67, 0, 0, 3152, 3153, 5, 69, 0, 0, 3153, 3154, 5, 78, 0, 0, 3154, 3155, 5, 84, 0, 0, 3155, 628, 1, 0, 0, 0, 3156, 3157, 5, 80, 0, 0, 3157, 3158, 5, 69, 0, 0, 3158, 3159, 5, 82, 0, 0, 3159, 3160, 5, 73, 0, 0, 3160, 3161, 5, 79, 0, 0, 3161, 3162, 5, 68, 0, 0, 3162, 630, 1, 0, 0, 0, 3163, 3164, 5, 80, 0, 0, 3164, 3165, 5, 79, 0, 0, 3165, 3166, 5, 83, 0, 0, 3166, 3167, 5, 73, 0, 0, 3167, 3168, 5, 84, 0, 0, 3168, 3169, 5, 73, 0, 0, 3169, 3170, 5, 79, 0, 0, 3170, 3171, 5, 78, 0, 0, 3171, 632, 1, 0, 0, 0, 3172, 3173, 5, 80, 0, 0, 3173, 3174, 5, 79, 0, 0, 3174, 3175, 5, 87, 0, 0, 3175, 3176, 5, 69, 0, 0, 3176, 3177, 5, 82, 0, 0, 3177, 634, 1, 0, 0, 0, 3178, 3179, 5, 80, 0, 0, 3179, 3180, 5, 82, 0, 0, 3180, 3181, 5, 73, 0, 0, 3181, 3182, 5, 77, 0, 0, 3182, 3183, 5, 65, 0, 0, 3183, 3184, 5, 82, 0, 0, 3184, 3185, 5, 89, 0, 0, 3185, 636, 1, 0, 0, 0, 3186, 3187, 5, 82, 0, 0, 3187, 3188, 5, 65, 0, 0, 3188, 3189, 5, 78, 0, 0, 3189, 3190, 5, 71, 0, 0, 3190, 3191, 5, 69, 0, 0, 3191, 638, 1, 0, 0, 0, 3192, 3193, 5, 82, 0, 0, 3193, 3194, 5, 65, 0, 0, 3194, 3195, 5, 78, 0, 0, 3195, 3196, 5, 75, 0, 0, 3196, 640, 1, 0, 0, 0, 3197, 3198, 5, 82, 0, 0, 3198, 3199, 5, 69, 0, 0, 3199, 3200, 5, 83, 0, 0, 3200, 3201, 5, 69, 0, 0, 3201, 3202, 5, 84, 0, 0, 3202, 642, 1, 0, 0, 0, 3203, 3204, 5, 82, 0, 0, 3204, 3205, 5, 69, 0, 0, 3205, 3206, 5, 86, 0, 0, 3206, 3207, 5, 79, 0, 0, 3207, 3208, 5, 75, 0, 0, 3208, 3209, 5, 69, 0, 0, 3209, 644, 1, 0, 0, 0, 3210, 3211, 5, 82, 0, 0, 3211, 3212, 5, 73, 0, 0, 3212, 3213, 5, 71, 0, 0, 3213, 3214, 5, 72, 0, 0, 3214, 3215, 5, 84, 0, 0, 3215, 646, 1, 0, 0, 0, 3216, 3217, 5, 82, 0, 0, 3217, 3218, 5, 76, 0, 0, 3218, 3219, 5, 73, 0, 0, 3219, 3220, 5, 75, 0, 0, 3220, 3221, 5, 69, 0, 0, 3221, 648, 1, 0, 0, 0, 3222, 3223, 5, 82, 0, 0, 3223, 3224, 5, 79, 0, 0, 3224, 3225, 5, 76, 0, 0, 3225, 3226, 5, 76, 0, 0, 3226, 3227, 5, 66, 0, 0, 3227, 3228, 5, 65, 0, 0, 3228, 3229, 5, 67, 0, 0, 3229, 3230, 5, 75, 0, 0, 3230, 650, 1, 0, 0, 0, 3231, 3232, 5, 82, 0, 0, 3232, 3233, 5, 79, 0, 0, 3233, 3234, 5, 76, 0, 0, 3234, 3235, 5, 76, 0, 0, 3235, 3236, 5, 85, 0, 0, 3236, 3237, 5, 80, 0, 0, 3237, 652, 1, 0, 0, 0, 3238, 3239, 5, 82, 0, 0, 3239, 3240, 5, 79, 0, 0, 3240, 3241, 5, 87, 0, 0, 3241, 654, 1, 0, 0, 0, 3242, 3243, 5, 82, 0, 0, 3243, 3244, 5, 79, 0, 0, 3244, 3245, 5, 87, 0, 0, 3245, 3246, 5, 83, 0, 0, 3246, 656, 1, 0, 0, 0, 3247, 3248, 5, 83, 0, 0, 3248, 3249, 5, 69, 0, 0, 3249, 3250, 5, 67, 0, 0, 3250, 3251, 5, 79, 0, 0, 3251, 3252, 5, 78, 0, 0, 3252, 3253, 5, 68, 0, 0, 3253, 658, 1, 0, 0, 0, 3254, 3255, 5, 83, 0, 0, 3255, 3256, 5, 69, 0, 0, 3256, 3257, 5, 76, 0, 0, 3257, 3258, 5, 69, 0, 0, 3258, 3259, 5, 67, 0, 0, 3259, 3260, 5, 84, 0, 0, 3260, 660, 1, 0, 0, 0, 3261, 3262, 5, 83, 0, 0, 3262, 3263, 5, 69, 0, 0, 3263, 3264, 5, 84, 0, 0, 3264, 662, 1, 0, 0, 0, 3265, 3266, 5, 83, 0, 0, 3266, 3267, 5, 72, 0, 0, 3267, 3268, 5, 79, 0, 0, 3268, 3269, 5, 87, 0, 0, 3269, 664, 1, 0, 0, 0, 3270, 3271, 5, 83, 0, 0, 3271, 3272, 5, 73, 0, 0, 3272, 3273, 5, 77, 0, 0, 3273, 3274, 5, 73, 0, 0, 3274, 3275, 5, 76, 0, 0, 3275, 3276, 5, 65, 0, 0, 3276, 3277, 5, 82, 0, 0, 3277, 666, 1, 0, 0, 0, 3278, 3279, 5, 83, 0, 0, 3279, 3280, 5, 75, 0, 0, 3280, 3281, 5, 73, 0, 0, 3281, 3282, 5, 80, 0, 0, 3282, 668, 1, 0, 0, 0, 3283, 3284, 5, 83, 0, 0, 3284, 3285, 5, 77, 0, 0, 3285, 3286, 5, 65, 0, 0, 3286, 3287, 5, 76, 0, 0, 3287, 3288, 5, 76, 0, 0, 3288, 3289, 5, 73, 0, 0, 3289, 3290, 5, 78, 0, 0, 3290, 3291, 5, 84, 0, 0, 3291, 670, 1, 0, 0, 0, 3292, 3293, 5, 83, 0, 0, 3293, 3294, 5, 84, 0, 0, 3294, 3295, 5, 65, 0, 0, 3295, 3296, 5, 82, 0, 0, 3296, 3297, 5, 84, 0, 0, 3297, 672, 1, 0, 0, 0, 3298, 3299, 5, 83, 0, 0, 3299, 3300, 5, 84, 0, 0, 3300, 3301, 5, 65, 0, 0, 3301, 3302, 5, 84, 0, 0, 3302, 3303, 5, 73, 0, 0, 3303, 3304, 5, 67, 0, 0, 3304, 674, 1, 0, 0, 0, 3305, 3306, 5, 83, 0, 0, 3306, 3307, 5, 85, 0, 0, 3307, 3308, 5, 66, 0, 0, 3308, 3309, 5, 83, 0, 0, 3309, 3310, 5, 84, 0, 0, 3310, 3311, 5, 82, 0, 0, 3311, 3312, 5, 73, 0, 0, 3312, 3313, 5, 78, 0, 0, 3313, 3314, 5, 71, 0, 0, 3314, 676, 1, 0, 0, 0, 3315, 3316, 5, 83, 0, 0, 3316, 3317, 5, 85, 0, 0, 3317, 3318, 5, 77, 0, 0, 3318, 678, 1, 0, 0, 0, 3319, 3320, 5, 83, 0, 0, 3320, 3321, 5, 89, 0, 0, 3321, 3322, 5, 77, 0, 0, 3322, 3323, 5, 77, 0, 0, 3323, 3324, 5, 69, 0, 0, 3324, 3325, 5, 84, 0, 0, 3325, 3326, 5, 82, 0, 0, 3326, 3327, 5, 73, 0, 0, 3327, 3328, 5, 67, 0, 0, 3328, 680, 1, 0, 0, 0, 3329, 3330, 5, 83, 0, 0, 3330, 3331, 5, 89, 0, 0, 3331, 3332, 5, 83, 0, 0, 3332, 3333, 5, 84, 0, 0, 3333, 3334, 5, 69, 0, 0, 3334, 3335, 5, 77, 0, 0, 3335, 682, 1, 0, 0, 0, 3336, 3337, 5, 83, 0, 0, 3337, 3338, 5, 89, 0, 0, 3338, 3339, 5, 83, 0, 0, 3339, 3340, 5, 84, 0, 0, 3340, 3341, 5, 69, 0, 0, 3341, 3342, 5, 77, 0, 0, 3342, 3343, 5, 95, 0, 0, 3343, 3344, 5, 84, 0, 0, 3344, 3345, 5, 73, 0, 0, 3345, 3346, 5, 77, 0, 0, 3346, 3347, 5, 69, 0, 0, 3347, 684, 1, 0, 0, 0, 3348, 3349, 5, 83, 0, 0, 3349, 3350, 5, 89, 0, 0, 3350, 3351, 5, 83, 0, 0, 3351, 3352, 5, 84, 0, 0, 3352, 3353, 5, 69, 0, 0, 3353, 3354, 5, 77, 0, 0, 3354, 3355, 5, 95, 0, 0, 3355, 3356, 5, 85, 0, 0, 3356, 3357, 5, 83, 0, 0, 3357, 3358, 5, 69, 0, 0, 3358, 3359, 5, 82, 0, 0, 3359, 686, 1, 0, 0, 0, 3360, 3361, 5, 84, 0, 0, 3361, 3362, 5, 65, 0, 0, 3362, 3363, 5, 66, 0, 0, 3363, 3364, 5, 76, 0, 0, 3364, 3365, 5, 69, 0, 0, 3365, 688, 1, 0, 0, 0, 3366, 3367, 5, 84, 0, 0, 3367, 3368, 5, 65, 0, 0, 3368, 3369, 5, 66, 0, 0, 3369, 3370, 5, 76, 0, 0, 3370, 3371, 5, 69, 0, 0, 3371, 3372, 5, 83, 0, 0, 3372, 3373, 5, 65, 0, 0, 3373, 3374, 5, 77, 0, 0, 3374, 3375, 5, 80, 0, 0, 3375, 3376, 5, 76, 0, 0, 3376, 3377, 5, 69, 0, 0, 3377, 690, 1, 0, 0, 0, 3378, 3379, 5, 84, 0, 0, 3379, 3380, 5, 72, 0, 0, 3380, 3381, 5, 69, 0, 0, 3381, 3382, 5, 78, 0, 0, 3382, 692, 1, 0, 0, 0, 3383, 3384, 5, 84, 0, 0, 3384, 3385, 5, 73, 0, 0, 3385, 3386, 5, 77, 0, 0, 3386, 3387, 5, 69, 0, 0, 3387, 694, 1, 0, 0, 0, 3388, 3389, 5, 84, 0, 0, 3389, 3390, 5, 73, 0, 0, 3390, 3391, 5, 77, 0, 0, 3391, 3392, 5, 69, 0, 0, 3392, 3393, 5, 83, 0, 0, 3393, 3394, 5, 84, 0, 0, 3394, 3395, 5, 65, 0, 0, 3395, 3396, 5, 77, 0, 0, 3396, 3397, 5, 80, 0, 0, 3397, 696, 1, 0, 0, 0, 3398, 3399, 5, 84, 0, 0, 3399, 3400, 5, 73, 0, 0, 3400, 3401, 5, 78, 0, 0, 3401, 3402, 5, 89, 0, 0, 3402, 3403, 5, 73, 0, 0, 3403, 3404, 5, 78, 0, 0, 3404, 3405, 5, 84, 0, 0, 3405, 698, 1, 0, 0, 0, 3406, 3407, 5, 84, 0, 0, 3407, 3408, 5, 79, 0, 0, 3408, 700, 1, 0, 0, 0, 3409, 3410, 5, 84, 0, 0, 3410, 3411, 5, 82, 0, 0, 3411, 3412, 5, 65, 0, 0, 3412, 3413, 5, 73, 0, 0, 3413, 3414, 5, 76, 0, 0, 3414, 3415, 5, 73, 0, 0, 3415, 3416, 5, 78, 0, 0, 3416, 3417, 5, 71, 0, 0, 3417, 702, 1, 0, 0, 0, 3418, 3419, 5, 84, 0, 0, 3419, 3420, 5, 82, 0, 0, 3420, 3421, 5, 85, 0, 0, 3421, 3422, 5, 69, 0, 0, 3422, 704, 1, 0, 0, 0, 3423, 3424, 5, 84, 0, 0, 3424, 3425, 5, 82, 0, 0, 3425, 3426, 5, 85, 0, 0, 3426, 3427, 5, 78, 0, 0, 3427, 3428, 5, 67, 0, 0, 3428, 3429, 5, 65, 0, 0, 3429, 3430, 5, 84, 0, 0, 3430, 3431, 5, 69, 0, 0, 3431, 706, 1, 0, 0, 0, 3432, 3433, 5, 85, 0, 0, 3433, 3434, 5, 78, 0, 0, 3434, 3435, 5, 73, 0, 0, 3435, 3436, 5, 79, 0, 0, 3436, 3437, 5, 78, 0, 0, 3437, 708, 1, 0, 0, 0, 3438, 3439, 5, 85, 0, 0, 3439, 3440, 5, 78, 0, 0, 3440, 3441, 5, 73, 0, 0, 3441, 3442, 5, 81, 0, 0, 3442, 3443, 5, 85, 0, 0, 3443, 3444, 5, 69, 0, 0, 3444, 710, 1, 0, 0, 0, 3445, 3446, 5, 85, 0, 0, 3446, 3447, 5, 78, 0, 0, 3447, 3448, 5, 75, 0, 0, 3448, 3449, 5, 78, 0, 0, 3449, 3450, 5, 79, 0, 0, 3450, 3451, 5, 87, 0, 0, 3451, 3452, 5, 78, 0, 0, 3452, 712, 1, 0, 0, 0, 3453, 3454, 5, 85, 0, 0, 3454, 3455, 5, 78, 0, 0, 3455, 3456, 5, 78, 0, 0, 3456, 3457, 5, 69, 0, 0, 3457, 3458, 5, 83, 0, 0, 3458, 3459, 5, 84, 0, 0, 3459, 714, 1, 0, 0, 0, 3460, 3461, 5, 85, 0, 0, 3461, 3462, 5, 80, 0, 0, 3462, 3463, 5, 80, 0, 0, 3463, 3464, 5, 69, 0, 0, 3464, 3465, 5, 82, 0, 0, 3465, 716, 1, 0, 0, 0, 3466, 3467, 5, 85, 0, 0, 3467, 3468, 5, 80, 0, 0, 3468, 3469, 5, 83, 0, 0, 3469, 3470, 5, 69, 0, 0, 3470, 3471, 5, 82, 0, 0, 3471, 3472, 5, 84, 0, 0, 3472, 718, 1, 0, 0, 0, 3473, 3474, 5, 85, 0, 0, 3474, 3475, 5, 83, 0, 0, 3475, 3476, 5, 69, 0, 0, 3476, 3477, 5, 82, 0, 0, 3477, 720, 1, 0, 0, 0, 3478, 3479, 5, 85, 0, 0, 3479, 3480, 5, 83, 0, 0, 3480, 3481, 5, 73, 0, 0, 3481, 3482, 5, 78, 0, 0, 3482, 3483, 5, 71, 0, 0, 3483, 722, 1, 0, 0, 0, 3484, 3485, 5, 86, 0, 0, 3485, 3486, 5, 65, 0, 0, 3486, 3487, 5, 76, 0, 0, 3487, 3488, 5, 85, 0, 0, 3488, 3489, 5, 69, 0, 0, 3489, 724, 1, 0, 0, 0, 3490, 3491, 5, 86, 0, 0, 3491, 3492, 5, 65, 0, 0, 3492, 3493, 5, 76, 0, 0, 3493, 3494, 5, 85, 0, 0, 3494, 3495, 5, 69, 0, 0, 3495, 3496, 5, 83, 0, 0, 3496, 726, 1, 0, 0, 0, 3497, 3498, 5, 86, 0, 0, 3498, 3499, 5, 65, 0, 0, 3499, 3500, 5, 82, 0, 0, 3500, 3501, 5, 66, 0, 0, 3501, 3502, 5, 73, 0, 0, 3502, 3503, 5, 78, 0, 0, 3503, 3504, 5, 65, 0, 0, 3504, 3505, 5, 82, 0, 0, 3505, 3506, 5, 89, 0, 0, 3506, 728, 1, 0, 0, 0, 3507, 3508, 5, 86, 0, 0, 3508, 3509, 5, 65, 0, 0, 3509, 3510, 5, 82, 0, 0, 3510, 3511, 5, 67, 0, 0, 3511, 3512, 5, 72, 0, 0, 3512, 3513, 5, 65, 0, 0, 3513, 3514, 5, 82, 0, 0, 3514, 730, 1, 0, 0, 0, 3515, 3516, 5, 87, 0, 0, 3516, 3517, 5, 72, 0, 0, 3517, 3518, 5, 69, 0, 0, 3518, 3519, 5, 78, 0, 0, 3519, 732, 1, 0, 0, 0, 3520, 3521, 5, 87, 0, 0, 3521, 3522, 5, 72, 0, 0, 3522, 3523, 5, 69, 0, 0, 3523, 3524, 5, 82, 0, 0, 3524, 3525, 5, 69, 0, 0, 3525, 734, 1, 0, 0, 0, 3526, 3527, 5, 87, 0, 0, 3527, 3528, 5, 73, 0, 0, 3528, 3529, 5, 78, 0, 0, 3529, 3530, 5, 68, 0, 0, 3530, 3531, 5, 79, 0, 0, 3531, 3532, 5, 87, 0, 0, 3532, 736, 1, 0, 0, 0, 3533, 3534, 5, 87, 0, 0, 3534, 3535, 5, 73, 0, 0, 3535, 3536, 5, 84, 0, 0, 3536, 3537, 5, 72, 0, 0, 3537, 738, 1, 0, 0, 0, 3538, 3539, 5, 87, 0, 0, 3539, 3540, 5, 73, 0, 0, 3540, 3541, 5, 84, 0, 0, 3541, 3542, 5, 72, 0, 0, 3542, 3543, 5, 73, 0, 0, 3543, 3544, 5, 78, 0, 0, 3544, 740, 1, 0, 0, 0, 3545, 3546, 5, 87, 0, 0, 3546, 3547, 5, 73, 0, 0, 3547, 3548, 5, 84, 0, 0, 3548, 3549, 5, 72, 0, 0, 3549, 3550, 5, 79, 0, 0, 3550, 3551, 5, 85, 0, 0, 3551, 3552, 5, 84, 0, 0, 3552, 742, 1, 0, 0, 0, 3553, 3554, 5, 89, 0, 0, 3554, 3555, 5, 69, 0, 0, 3555, 3556, 5, 65, 0, 0, 3556, 3557, 5, 82, 0, 0, 3557, 744, 1, 0, 0, 0, 3558, 3559, 5, 61, 0, 0, 3559, 746, 1, 0, 0, 0, 3560, 3561, 5, 62, 0, 0, 3561, 748, 1, 0, 0, 0, 3562, 3563, 5, 60, 0, 0, 3563, 750, 1, 0, 0, 0, 3564, 3565, 5, 33, 0, 0, 3565, 752, 1, 0, 0, 0, 3566, 3567, 5, 126, 0, 0, 3567, 754, 1, 0, 0, 0, 3568, 3569, 5, 124, 0, 0, 3569, 756, 1, 0, 0, 0, 3570, 3571, 5, 38, 0, 0, 3571, 758, 1, 0, 0, 0, 3572, 3573, 5, 94, 0, 0, 3573, 760, 1, 0, 0, 0, 3574, 3575, 5, 46, 0, 0, 3575, 762, 1, 0, 0, 0, 3576, 3577, 5, 91, 0, 0, 3577, 764, 1, 0, 0, 0, 3578, 3579, 5, 93, 0, 0, 3579, 766, 1, 0, 0, 0, 3580, 3581, 5, 40, 0, 0, 3581, 768, 1, 0, 0, 0, 3582, 3583, 5, 41, 0, 0, 3583, 770, 1, 0, 0, 0, 3584, 3585, 5, 123, 0, 0, 3585, 772, 1, 0, 0, 0, 3586, 3587, 5, 125, 0, 0, 3587, 774, 1, 0, 0, 0, 3588, 3589, 5, 44, 0, 0, 3589, 776, 1, 0, 0, 0, 3590, 3591, 5, 59, 0, 0, 3591, 778, 1, 0, 0, 0, 3592, 3593, 5, 64, 0, 0, 3593, 780, 1, 0, 0, 0, 3594, 3595, 5, 39, 0, 0, 3595, 782, 1, 0, 0, 0, 3596, 3597, 5, 34, 0, 0, 3597, 784, 1, 0, 0, 0, 3598, 3599, 5, 96, 0, 0, 3599, 786, 1, 0, 0, 0, 3600, 3601, 5, 58, 0, 0, 3601, 788, 1, 0, 0, 0, 3602, 3603, 5, 42, 0, 0, 3603, 790, 1, 0, 0, 0, 3604, 3605, 5, 95, 0, 0, 3605, 792, 1, 0, 0, 0, 3606, 3607, 5, 45, 0, 0, 3607, 794, 1, 0, 0, 0, 3608, 3609, 5, 43, 0, 0, 3609, 796, 1, 0, 0, 0, 3610, 3611, 5, 37, 0, 0, 3611, 798, 1, 0, 0, 0, 3612, 3613, 5, 124, 0, 0, 3613, 3614, 5, 124, 0, 0, 3614, 800, 1, 0, 0, 0, 3615, 3616, 5, 45, 0, 0, 3616, 3617, 5, 45, 0, 0, 3617, 802, 1, 0, 0, 0, 3618, 3619, 5, 47, 0, 0, 3619, 804, 1, 0, 0, 0, 3620, 3621, 5, 63, 0, 0, 3621, 806, 1, 0, 0, 0, 3622, 3623, 5, 61, 0, 0, 3623, 3624, 5, 62, 0, 0, 3624, 808, 1, 0, 0, 0, 3625, 3629, 3, 833, 416, 0, 3626, 3629, 3, 835, 417, 0, 3627, 3629, 3, 839, 419, 0, 3628, 3625, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3627, 1, 0, 0, 0, 3629, 810, 1, 0, 0, 0, 3630, 3632, 3, 829, 414, 0, 3631, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 812, 1, 0, 0, 0, 3635, 3637, 3, 829, 414, 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, 3641, 1, 0, 0, 0, 3640, 3636, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3644, 5, 46, 0, 0, 3643, 3645, 3, 829, 414, 0, 3644, 3643, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3679, 1, 0, 0, 0, 3648, 3650, 3, 829, 414, 0, 3649, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3649, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 5, 46, 0, 0, 3654, 3655, 3, 825, 412, 0, 3655, 3679, 1, 0, 0, 0, 3656, 3658, 3, 829, 414, 0, 3657, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3657, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 5, 46, 0, 0, 3664, 3666, 3, 829, 414, 0, 3665, 3664, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 3, 825, 412, 0, 3670, 3679, 1, 0, 0, 0, 3671, 3673, 3, 829, 414, 0, 3672, 3671, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3672, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3677, 3, 825, 412, 0, 3677, 3679, 1, 0, 0, 0, 3678, 3640, 1, 0, 0, 0, 3678, 3649, 1, 0, 0, 0, 3678, 3661, 1, 0, 0, 0, 3678, 3672, 1, 0, 0, 0, 3679, 814, 1, 0, 0, 0, 3680, 3681, 3, 837, 418, 0, 3681, 816, 1, 0, 0, 0, 3682, 3683, 3, 827, 413, 0, 3683, 818, 1, 0, 0, 0, 3684, 3685, 3, 821, 410, 0, 3685, 820, 1, 0, 0, 0, 3686, 3690, 7, 2, 0, 0, 3687, 3689, 8, 3, 0, 0, 3688, 3687, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 3694, 1, 0, 0, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3686, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 822, 1, 0, 0, 0, 3697, 3705, 5, 96, 0, 0, 3698, 3699, 5, 92, 0, 0, 3699, 3704, 9, 0, 0, 0, 3700, 3701, 5, 96, 0, 0, 3701, 3704, 5, 96, 0, 0, 3702, 3704, 8, 4, 0, 0, 3703, 3698, 1, 0, 0, 0, 3703, 3700, 1, 0, 0, 0, 3703, 3702, 1, 0, 0, 0, 3704, 3707, 1, 0, 0, 0, 3705, 3703, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3708, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3708, 3709, 5, 96, 0, 0, 3709, 824, 1, 0, 0, 0, 3710, 3712, 5, 69, 0, 0, 3711, 3713, 7, 5, 0, 0, 3712, 3711, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3715, 1, 0, 0, 0, 3714, 3716, 3, 829, 414, 0, 3715, 3714, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3715, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 826, 1, 0, 0, 0, 3719, 3721, 7, 6, 0, 0, 3720, 3719, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3726, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3725, 3727, 7, 7, 0, 0, 3726, 3725, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3729, 3733, 1, 0, 0, 0, 3730, 3732, 7, 6, 0, 0, 3731, 3730, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 828, 1, 0, 0, 0, 3735, 3733, 1, 0, 0, 0, 3736, 3737, 7, 8, 0, 0, 3737, 830, 1, 0, 0, 0, 3738, 3739, 7, 9, 0, 0, 3739, 832, 1, 0, 0, 0, 3740, 3748, 5, 34, 0, 0, 3741, 3742, 5, 92, 0, 0, 3742, 3747, 9, 0, 0, 0, 3743, 3744, 5, 34, 0, 0, 3744, 3747, 5, 34, 0, 0, 3745, 3747, 8, 10, 0, 0, 3746, 3741, 1, 0, 0, 0, 3746, 3743, 1, 0, 0, 0, 3746, 3745, 1, 0, 0, 0, 3747, 3750, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3751, 1, 0, 0, 0, 3750, 3748, 1, 0, 0, 0, 3751, 3752, 5, 34, 0, 0, 3752, 834, 1, 0, 0, 0, 3753, 3761, 5, 39, 0, 0, 3754, 3755, 5, 92, 0, 0, 3755, 3760, 9, 0, 0, 0, 3756, 3757, 5, 39, 0, 0, 3757, 3760, 5, 39, 0, 0, 3758, 3760, 8, 11, 0, 0, 3759, 3754, 1, 0, 0, 0, 3759, 3756, 1, 0, 0, 0, 3759, 3758, 1, 0, 0, 0, 3760, 3763, 1, 0, 0, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3761, 1, 0, 0, 0, 3764, 3765, 5, 39, 0, 0, 3765, 836, 1, 0, 0, 0, 3766, 3767, 5, 66, 0, 0, 3767, 3769, 5, 39, 0, 0, 3768, 3770, 7, 12, 0, 0, 3769, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3769, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 5, 39, 0, 0, 3774, 838, 1, 0, 0, 0, 3775, 3783, 5, 96, 0, 0, 3776, 3777, 5, 92, 0, 0, 3777, 3782, 9, 0, 0, 0, 3778, 3779, 5, 96, 0, 0, 3779, 3782, 5, 96, 0, 0, 3780, 3782, 8, 4, 0, 0, 3781, 3776, 1, 0, 0, 0, 3781, 3778, 1, 0, 0, 0, 3781, 3780, 1, 0, 0, 0, 3782, 3785, 1, 0, 0, 0, 3783, 3781, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3786, 1, 0, 0, 0, 3785, 3783, 1, 0, 0, 0, 3786, 3787, 5, 96, 0, 0, 3787, 840, 1, 0, 0, 0, 37, 0, 844, 854, 865, 870, 874, 878, 884, 888, 890, 3628, 3633, 3638, 3640, 3646, 3651, 3659, 3661, 3667, 3674, 3678, 3690, 3695, 3703, 3705, 3712, 3717, 3722, 3728, 3733, 3746, 3748, 3759, 3761, 3771, 3781, 3783, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 410, 3784, 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, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 1, 0, 4, 0, 843, 8, 0, 11, 0, 12, 0, 844, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 853, 8, 1, 10, 1, 12, 1, 856, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 866, 8, 2, 1, 2, 5, 2, 869, 8, 2, 10, 2, 12, 2, 872, 9, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 3, 2, 879, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 3, 2, 889, 8, 2, 3, 2, 891, 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, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 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, 40, 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, 41, 1, 41, 1, 41, 1, 41, 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, 45, 1, 45, 1, 45, 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, 47, 1, 47, 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, 49, 1, 49, 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, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 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, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 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, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 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, 77, 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, 79, 1, 79, 1, 79, 1, 79, 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, 81, 1, 81, 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, 83, 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, 85, 1, 85, 1, 85, 1, 85, 1, 85, 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, 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, 90, 1, 90, 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, 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, 94, 1, 95, 1, 95, 1, 95, 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, 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, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 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, 101, 1, 102, 1, 102, 1, 102, 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, 104, 1, 104, 1, 104, 1, 104, 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, 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, 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, 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, 112, 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, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 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, 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, 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, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 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, 126, 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, 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, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 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, 134, 1, 134, 1, 134, 1, 134, 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, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 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, 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, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 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, 146, 1, 146, 1, 146, 1, 146, 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, 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, 149, 1, 149, 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, 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, 153, 1, 153, 1, 153, 1, 153, 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, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 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, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 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, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 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, 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, 169, 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, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 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, 182, 1, 182, 1, 182, 1, 182, 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, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 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, 189, 1, 190, 1, 190, 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, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 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, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 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, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 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, 206, 1, 206, 1, 206, 1, 206, 1, 206, 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, 208, 1, 209, 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, 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, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 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, 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, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 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, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 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, 225, 1, 226, 1, 226, 1, 226, 1, 226, 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, 229, 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, 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, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 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, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 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, 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, 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, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 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, 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, 257, 1, 257, 1, 258, 1, 258, 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, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 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, 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, 267, 1, 267, 1, 267, 1, 267, 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, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 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, 275, 1, 276, 1, 276, 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, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 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, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 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, 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, 289, 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, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 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, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 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, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 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, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 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, 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, 312, 1, 312, 1, 312, 1, 312, 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, 314, 1, 315, 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, 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, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 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, 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, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 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, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 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, 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, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 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, 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, 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, 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, 343, 1, 344, 1, 344, 1, 344, 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, 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, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 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, 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, 356, 1, 356, 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, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 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, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 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, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 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, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 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, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 3, 404, 3629, 8, 404, 1, 405, 4, 405, 3632, 8, 405, 11, 405, 12, 405, 3633, 1, 406, 4, 406, 3637, 8, 406, 11, 406, 12, 406, 3638, 3, 406, 3641, 8, 406, 1, 406, 1, 406, 4, 406, 3645, 8, 406, 11, 406, 12, 406, 3646, 1, 406, 4, 406, 3650, 8, 406, 11, 406, 12, 406, 3651, 1, 406, 1, 406, 1, 406, 1, 406, 4, 406, 3658, 8, 406, 11, 406, 12, 406, 3659, 3, 406, 3662, 8, 406, 1, 406, 1, 406, 4, 406, 3666, 8, 406, 11, 406, 12, 406, 3667, 1, 406, 1, 406, 1, 406, 4, 406, 3673, 8, 406, 11, 406, 12, 406, 3674, 1, 406, 1, 406, 3, 406, 3679, 8, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 410, 1, 410, 5, 410, 3689, 8, 410, 10, 410, 12, 410, 3692, 9, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 3700, 8, 411, 10, 411, 12, 411, 3703, 9, 411, 1, 411, 1, 411, 1, 412, 1, 412, 3, 412, 3709, 8, 412, 1, 412, 4, 412, 3712, 8, 412, 11, 412, 12, 412, 3713, 1, 413, 5, 413, 3717, 8, 413, 10, 413, 12, 413, 3720, 9, 413, 1, 413, 4, 413, 3723, 8, 413, 11, 413, 12, 413, 3724, 1, 413, 5, 413, 3728, 8, 413, 10, 413, 12, 413, 3731, 9, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 5, 416, 3743, 8, 416, 10, 416, 12, 416, 3746, 9, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 5, 417, 3756, 8, 417, 10, 417, 12, 417, 3759, 9, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 4, 418, 3766, 8, 418, 11, 418, 12, 418, 3767, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 3778, 8, 419, 10, 419, 12, 419, 3781, 9, 419, 1, 419, 1, 419, 3, 854, 3718, 3724, 0, 420, 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, 408, 817, 409, 819, 410, 821, 0, 823, 0, 825, 0, 827, 0, 829, 0, 831, 0, 833, 0, 835, 0, 837, 0, 839, 0, 1, 0, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 47, 47, 92, 92, 5, 0, 32, 32, 40, 41, 47, 47, 59, 59, 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, 3815, 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, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 1, 842, 1, 0, 0, 0, 3, 848, 1, 0, 0, 0, 5, 890, 1, 0, 0, 0, 7, 894, 1, 0, 0, 0, 9, 898, 1, 0, 0, 0, 11, 904, 1, 0, 0, 0, 13, 910, 1, 0, 0, 0, 15, 918, 1, 0, 0, 0, 17, 922, 1, 0, 0, 0, 19, 929, 1, 0, 0, 0, 21, 935, 1, 0, 0, 0, 23, 943, 1, 0, 0, 0, 25, 951, 1, 0, 0, 0, 27, 960, 1, 0, 0, 0, 29, 968, 1, 0, 0, 0, 31, 974, 1, 0, 0, 0, 33, 989, 1, 0, 0, 0, 35, 1000, 1, 0, 0, 0, 37, 1008, 1, 0, 0, 0, 39, 1016, 1, 0, 0, 0, 41, 1024, 1, 0, 0, 0, 43, 1036, 1, 0, 0, 0, 45, 1048, 1, 0, 0, 0, 47, 1057, 1, 0, 0, 0, 49, 1062, 1, 0, 0, 0, 51, 1071, 1, 0, 0, 0, 53, 1081, 1, 0, 0, 0, 55, 1086, 1, 0, 0, 0, 57, 1093, 1, 0, 0, 0, 59, 1101, 1, 0, 0, 0, 61, 1106, 1, 0, 0, 0, 63, 1117, 1, 0, 0, 0, 65, 1121, 1, 0, 0, 0, 67, 1130, 1, 0, 0, 0, 69, 1139, 1, 0, 0, 0, 71, 1146, 1, 0, 0, 0, 73, 1152, 1, 0, 0, 0, 75, 1158, 1, 0, 0, 0, 77, 1173, 1, 0, 0, 0, 79, 1183, 1, 0, 0, 0, 81, 1191, 1, 0, 0, 0, 83, 1201, 1, 0, 0, 0, 85, 1210, 1, 0, 0, 0, 87, 1215, 1, 0, 0, 0, 89, 1221, 1, 0, 0, 0, 91, 1227, 1, 0, 0, 0, 93, 1237, 1, 0, 0, 0, 95, 1244, 1, 0, 0, 0, 97, 1252, 1, 0, 0, 0, 99, 1258, 1, 0, 0, 0, 101, 1270, 1, 0, 0, 0, 103, 1280, 1, 0, 0, 0, 105, 1288, 1, 0, 0, 0, 107, 1298, 1, 0, 0, 0, 109, 1301, 1, 0, 0, 0, 111, 1306, 1, 0, 0, 0, 113, 1314, 1, 0, 0, 0, 115, 1318, 1, 0, 0, 0, 117, 1324, 1, 0, 0, 0, 119, 1327, 1, 0, 0, 0, 121, 1334, 1, 0, 0, 0, 123, 1344, 1, 0, 0, 0, 125, 1350, 1, 0, 0, 0, 127, 1358, 1, 0, 0, 0, 129, 1362, 1, 0, 0, 0, 131, 1367, 1, 0, 0, 0, 133, 1372, 1, 0, 0, 0, 135, 1377, 1, 0, 0, 0, 137, 1397, 1, 0, 0, 0, 139, 1401, 1, 0, 0, 0, 141, 1412, 1, 0, 0, 0, 143, 1421, 1, 0, 0, 0, 145, 1427, 1, 0, 0, 0, 147, 1432, 1, 0, 0, 0, 149, 1439, 1, 0, 0, 0, 151, 1445, 1, 0, 0, 0, 153, 1450, 1, 0, 0, 0, 155, 1454, 1, 0, 0, 0, 157, 1466, 1, 0, 0, 0, 159, 1477, 1, 0, 0, 0, 161, 1489, 1, 0, 0, 0, 163, 1497, 1, 0, 0, 0, 165, 1506, 1, 0, 0, 0, 167, 1513, 1, 0, 0, 0, 169, 1521, 1, 0, 0, 0, 171, 1528, 1, 0, 0, 0, 173, 1539, 1, 0, 0, 0, 175, 1545, 1, 0, 0, 0, 177, 1552, 1, 0, 0, 0, 179, 1559, 1, 0, 0, 0, 181, 1567, 1, 0, 0, 0, 183, 1576, 1, 0, 0, 0, 185, 1583, 1, 0, 0, 0, 187, 1593, 1, 0, 0, 0, 189, 1605, 1, 0, 0, 0, 191, 1617, 1, 0, 0, 0, 193, 1628, 1, 0, 0, 0, 195, 1636, 1, 0, 0, 0, 197, 1641, 1, 0, 0, 0, 199, 1646, 1, 0, 0, 0, 201, 1654, 1, 0, 0, 0, 203, 1659, 1, 0, 0, 0, 205, 1669, 1, 0, 0, 0, 207, 1678, 1, 0, 0, 0, 209, 1684, 1, 0, 0, 0, 211, 1695, 1, 0, 0, 0, 213, 1702, 1, 0, 0, 0, 215, 1709, 1, 0, 0, 0, 217, 1722, 1, 0, 0, 0, 219, 1742, 1, 0, 0, 0, 221, 1762, 1, 0, 0, 0, 223, 1773, 1, 0, 0, 0, 225, 1789, 1, 0, 0, 0, 227, 1806, 1, 0, 0, 0, 229, 1814, 1, 0, 0, 0, 231, 1818, 1, 0, 0, 0, 233, 1823, 1, 0, 0, 0, 235, 1832, 1, 0, 0, 0, 237, 1839, 1, 0, 0, 0, 239, 1846, 1, 0, 0, 0, 241, 1854, 1, 0, 0, 0, 243, 1862, 1, 0, 0, 0, 245, 1870, 1, 0, 0, 0, 247, 1879, 1, 0, 0, 0, 249, 1884, 1, 0, 0, 0, 251, 1894, 1, 0, 0, 0, 253, 1900, 1, 0, 0, 0, 255, 1907, 1, 0, 0, 0, 257, 1913, 1, 0, 0, 0, 259, 1920, 1, 0, 0, 0, 261, 1928, 1, 0, 0, 0, 263, 1936, 1, 0, 0, 0, 265, 1945, 1, 0, 0, 0, 267, 1950, 1, 0, 0, 0, 269, 1957, 1, 0, 0, 0, 271, 1969, 1, 0, 0, 0, 273, 1977, 1, 0, 0, 0, 275, 1982, 1, 0, 0, 0, 277, 1989, 1, 0, 0, 0, 279, 1994, 1, 0, 0, 0, 281, 2000, 1, 0, 0, 0, 283, 2007, 1, 0, 0, 0, 285, 2013, 1, 0, 0, 0, 287, 2019, 1, 0, 0, 0, 289, 2029, 1, 0, 0, 0, 291, 2034, 1, 0, 0, 0, 293, 2041, 1, 0, 0, 0, 295, 2051, 1, 0, 0, 0, 297, 2057, 1, 0, 0, 0, 299, 2064, 1, 0, 0, 0, 301, 2074, 1, 0, 0, 0, 303, 2082, 1, 0, 0, 0, 305, 2096, 1, 0, 0, 0, 307, 2109, 1, 0, 0, 0, 309, 2123, 1, 0, 0, 0, 311, 2133, 1, 0, 0, 0, 313, 2140, 1, 0, 0, 0, 315, 2145, 1, 0, 0, 0, 317, 2151, 1, 0, 0, 0, 319, 2158, 1, 0, 0, 0, 321, 2164, 1, 0, 0, 0, 323, 2168, 1, 0, 0, 0, 325, 2174, 1, 0, 0, 0, 327, 2180, 1, 0, 0, 0, 329, 2185, 1, 0, 0, 0, 331, 2193, 1, 0, 0, 0, 333, 2198, 1, 0, 0, 0, 335, 2204, 1, 0, 0, 0, 337, 2212, 1, 0, 0, 0, 339, 2222, 1, 0, 0, 0, 341, 2233, 1, 0, 0, 0, 343, 2238, 1, 0, 0, 0, 345, 2244, 1, 0, 0, 0, 347, 2249, 1, 0, 0, 0, 349, 2257, 1, 0, 0, 0, 351, 2263, 1, 0, 0, 0, 353, 2268, 1, 0, 0, 0, 355, 2272, 1, 0, 0, 0, 357, 2276, 1, 0, 0, 0, 359, 2282, 1, 0, 0, 0, 361, 2288, 1, 0, 0, 0, 363, 2292, 1, 0, 0, 0, 365, 2296, 1, 0, 0, 0, 367, 2300, 1, 0, 0, 0, 369, 2306, 1, 0, 0, 0, 371, 2309, 1, 0, 0, 0, 373, 2320, 1, 0, 0, 0, 375, 2323, 1, 0, 0, 0, 377, 2327, 1, 0, 0, 0, 379, 2333, 1, 0, 0, 0, 381, 2341, 1, 0, 0, 0, 383, 2348, 1, 0, 0, 0, 385, 2355, 1, 0, 0, 0, 387, 2359, 1, 0, 0, 0, 389, 2364, 1, 0, 0, 0, 391, 2372, 1, 0, 0, 0, 393, 2377, 1, 0, 0, 0, 395, 2380, 1, 0, 0, 0, 397, 2385, 1, 0, 0, 0, 399, 2392, 1, 0, 0, 0, 401, 2401, 1, 0, 0, 0, 403, 2406, 1, 0, 0, 0, 405, 2411, 1, 0, 0, 0, 407, 2416, 1, 0, 0, 0, 409, 2421, 1, 0, 0, 0, 411, 2431, 1, 0, 0, 0, 413, 2437, 1, 0, 0, 0, 415, 2442, 1, 0, 0, 0, 417, 2448, 1, 0, 0, 0, 419, 2457, 1, 0, 0, 0, 421, 2465, 1, 0, 0, 0, 423, 2473, 1, 0, 0, 0, 425, 2480, 1, 0, 0, 0, 427, 2487, 1, 0, 0, 0, 429, 2495, 1, 0, 0, 0, 431, 2506, 1, 0, 0, 0, 433, 2515, 1, 0, 0, 0, 435, 2523, 1, 0, 0, 0, 437, 2529, 1, 0, 0, 0, 439, 2536, 1, 0, 0, 0, 441, 2542, 1, 0, 0, 0, 443, 2547, 1, 0, 0, 0, 445, 2555, 1, 0, 0, 0, 447, 2562, 1, 0, 0, 0, 449, 2568, 1, 0, 0, 0, 451, 2573, 1, 0, 0, 0, 453, 2582, 1, 0, 0, 0, 455, 2586, 1, 0, 0, 0, 457, 2590, 1, 0, 0, 0, 459, 2598, 1, 0, 0, 0, 461, 2606, 1, 0, 0, 0, 463, 2614, 1, 0, 0, 0, 465, 2621, 1, 0, 0, 0, 467, 2628, 1, 0, 0, 0, 469, 2637, 1, 0, 0, 0, 471, 2646, 1, 0, 0, 0, 473, 2653, 1, 0, 0, 0, 475, 2658, 1, 0, 0, 0, 477, 2663, 1, 0, 0, 0, 479, 2668, 1, 0, 0, 0, 481, 2672, 1, 0, 0, 0, 483, 2679, 1, 0, 0, 0, 485, 2686, 1, 0, 0, 0, 487, 2693, 1, 0, 0, 0, 489, 2701, 1, 0, 0, 0, 491, 2708, 1, 0, 0, 0, 493, 2716, 1, 0, 0, 0, 495, 2725, 1, 0, 0, 0, 497, 2733, 1, 0, 0, 0, 499, 2739, 1, 0, 0, 0, 501, 2745, 1, 0, 0, 0, 503, 2749, 1, 0, 0, 0, 505, 2754, 1, 0, 0, 0, 507, 2759, 1, 0, 0, 0, 509, 2768, 1, 0, 0, 0, 511, 2775, 1, 0, 0, 0, 513, 2781, 1, 0, 0, 0, 515, 2787, 1, 0, 0, 0, 517, 2796, 1, 0, 0, 0, 519, 2803, 1, 0, 0, 0, 521, 2810, 1, 0, 0, 0, 523, 2815, 1, 0, 0, 0, 525, 2822, 1, 0, 0, 0, 527, 2825, 1, 0, 0, 0, 529, 2835, 1, 0, 0, 0, 531, 2841, 1, 0, 0, 0, 533, 2847, 1, 0, 0, 0, 535, 2854, 1, 0, 0, 0, 537, 2858, 1, 0, 0, 0, 539, 2866, 1, 0, 0, 0, 541, 2876, 1, 0, 0, 0, 543, 2885, 1, 0, 0, 0, 545, 2890, 1, 0, 0, 0, 547, 2893, 1, 0, 0, 0, 549, 2898, 1, 0, 0, 0, 551, 2902, 1, 0, 0, 0, 553, 2911, 1, 0, 0, 0, 555, 2919, 1, 0, 0, 0, 557, 2927, 1, 0, 0, 0, 559, 2932, 1, 0, 0, 0, 561, 2937, 1, 0, 0, 0, 563, 2943, 1, 0, 0, 0, 565, 2949, 1, 0, 0, 0, 567, 2955, 1, 0, 0, 0, 569, 2971, 1, 0, 0, 0, 571, 2980, 1, 0, 0, 0, 573, 2986, 1, 0, 0, 0, 575, 2995, 1, 0, 0, 0, 577, 3001, 1, 0, 0, 0, 579, 3008, 1, 0, 0, 0, 581, 3017, 1, 0, 0, 0, 583, 3024, 1, 0, 0, 0, 585, 3030, 1, 0, 0, 0, 587, 3039, 1, 0, 0, 0, 589, 3047, 1, 0, 0, 0, 591, 3052, 1, 0, 0, 0, 593, 3055, 1, 0, 0, 0, 595, 3060, 1, 0, 0, 0, 597, 3064, 1, 0, 0, 0, 599, 3069, 1, 0, 0, 0, 601, 3077, 1, 0, 0, 0, 603, 3080, 1, 0, 0, 0, 605, 3087, 1, 0, 0, 0, 607, 3090, 1, 0, 0, 0, 609, 3094, 1, 0, 0, 0, 611, 3097, 1, 0, 0, 0, 613, 3103, 1, 0, 0, 0, 615, 3107, 1, 0, 0, 0, 617, 3113, 1, 0, 0, 0, 619, 3118, 1, 0, 0, 0, 621, 3126, 1, 0, 0, 0, 623, 3136, 1, 0, 0, 0, 625, 3144, 1, 0, 0, 0, 627, 3148, 1, 0, 0, 0, 629, 3156, 1, 0, 0, 0, 631, 3163, 1, 0, 0, 0, 633, 3172, 1, 0, 0, 0, 635, 3178, 1, 0, 0, 0, 637, 3186, 1, 0, 0, 0, 639, 3192, 1, 0, 0, 0, 641, 3197, 1, 0, 0, 0, 643, 3203, 1, 0, 0, 0, 645, 3210, 1, 0, 0, 0, 647, 3216, 1, 0, 0, 0, 649, 3222, 1, 0, 0, 0, 651, 3231, 1, 0, 0, 0, 653, 3238, 1, 0, 0, 0, 655, 3242, 1, 0, 0, 0, 657, 3247, 1, 0, 0, 0, 659, 3254, 1, 0, 0, 0, 661, 3261, 1, 0, 0, 0, 663, 3265, 1, 0, 0, 0, 665, 3270, 1, 0, 0, 0, 667, 3278, 1, 0, 0, 0, 669, 3283, 1, 0, 0, 0, 671, 3292, 1, 0, 0, 0, 673, 3298, 1, 0, 0, 0, 675, 3305, 1, 0, 0, 0, 677, 3315, 1, 0, 0, 0, 679, 3319, 1, 0, 0, 0, 681, 3329, 1, 0, 0, 0, 683, 3336, 1, 0, 0, 0, 685, 3348, 1, 0, 0, 0, 687, 3360, 1, 0, 0, 0, 689, 3366, 1, 0, 0, 0, 691, 3378, 1, 0, 0, 0, 693, 3383, 1, 0, 0, 0, 695, 3388, 1, 0, 0, 0, 697, 3398, 1, 0, 0, 0, 699, 3406, 1, 0, 0, 0, 701, 3409, 1, 0, 0, 0, 703, 3418, 1, 0, 0, 0, 705, 3423, 1, 0, 0, 0, 707, 3432, 1, 0, 0, 0, 709, 3438, 1, 0, 0, 0, 711, 3445, 1, 0, 0, 0, 713, 3453, 1, 0, 0, 0, 715, 3460, 1, 0, 0, 0, 717, 3466, 1, 0, 0, 0, 719, 3473, 1, 0, 0, 0, 721, 3478, 1, 0, 0, 0, 723, 3484, 1, 0, 0, 0, 725, 3490, 1, 0, 0, 0, 727, 3497, 1, 0, 0, 0, 729, 3507, 1, 0, 0, 0, 731, 3515, 1, 0, 0, 0, 733, 3520, 1, 0, 0, 0, 735, 3526, 1, 0, 0, 0, 737, 3533, 1, 0, 0, 0, 739, 3538, 1, 0, 0, 0, 741, 3545, 1, 0, 0, 0, 743, 3553, 1, 0, 0, 0, 745, 3558, 1, 0, 0, 0, 747, 3560, 1, 0, 0, 0, 749, 3562, 1, 0, 0, 0, 751, 3564, 1, 0, 0, 0, 753, 3566, 1, 0, 0, 0, 755, 3568, 1, 0, 0, 0, 757, 3570, 1, 0, 0, 0, 759, 3572, 1, 0, 0, 0, 761, 3574, 1, 0, 0, 0, 763, 3576, 1, 0, 0, 0, 765, 3578, 1, 0, 0, 0, 767, 3580, 1, 0, 0, 0, 769, 3582, 1, 0, 0, 0, 771, 3584, 1, 0, 0, 0, 773, 3586, 1, 0, 0, 0, 775, 3588, 1, 0, 0, 0, 777, 3590, 1, 0, 0, 0, 779, 3592, 1, 0, 0, 0, 781, 3594, 1, 0, 0, 0, 783, 3596, 1, 0, 0, 0, 785, 3598, 1, 0, 0, 0, 787, 3600, 1, 0, 0, 0, 789, 3602, 1, 0, 0, 0, 791, 3604, 1, 0, 0, 0, 793, 3606, 1, 0, 0, 0, 795, 3608, 1, 0, 0, 0, 797, 3610, 1, 0, 0, 0, 799, 3612, 1, 0, 0, 0, 801, 3615, 1, 0, 0, 0, 803, 3618, 1, 0, 0, 0, 805, 3620, 1, 0, 0, 0, 807, 3622, 1, 0, 0, 0, 809, 3628, 1, 0, 0, 0, 811, 3631, 1, 0, 0, 0, 813, 3678, 1, 0, 0, 0, 815, 3680, 1, 0, 0, 0, 817, 3682, 1, 0, 0, 0, 819, 3684, 1, 0, 0, 0, 821, 3686, 1, 0, 0, 0, 823, 3693, 1, 0, 0, 0, 825, 3706, 1, 0, 0, 0, 827, 3718, 1, 0, 0, 0, 829, 3732, 1, 0, 0, 0, 831, 3734, 1, 0, 0, 0, 833, 3736, 1, 0, 0, 0, 835, 3749, 1, 0, 0, 0, 837, 3762, 1, 0, 0, 0, 839, 3771, 1, 0, 0, 0, 841, 843, 7, 0, 0, 0, 842, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 6, 0, 0, 0, 847, 2, 1, 0, 0, 0, 848, 849, 5, 47, 0, 0, 849, 850, 5, 42, 0, 0, 850, 854, 1, 0, 0, 0, 851, 853, 9, 0, 0, 0, 852, 851, 1, 0, 0, 0, 853, 856, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 855, 857, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 857, 858, 5, 42, 0, 0, 858, 859, 5, 47, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 6, 1, 0, 0, 861, 4, 1, 0, 0, 0, 862, 863, 5, 45, 0, 0, 863, 866, 5, 45, 0, 0, 864, 866, 5, 35, 0, 0, 865, 862, 1, 0, 0, 0, 865, 864, 1, 0, 0, 0, 866, 870, 1, 0, 0, 0, 867, 869, 8, 1, 0, 0, 868, 867, 1, 0, 0, 0, 869, 872, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 878, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 873, 875, 5, 13, 0, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 879, 5, 10, 0, 0, 877, 879, 5, 0, 0, 1, 878, 874, 1, 0, 0, 0, 878, 877, 1, 0, 0, 0, 879, 891, 1, 0, 0, 0, 880, 881, 5, 45, 0, 0, 881, 882, 5, 45, 0, 0, 882, 888, 1, 0, 0, 0, 883, 885, 5, 13, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 5, 10, 0, 0, 887, 889, 5, 0, 0, 1, 888, 884, 1, 0, 0, 0, 888, 887, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 865, 1, 0, 0, 0, 890, 880, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 6, 2, 0, 0, 893, 6, 1, 0, 0, 0, 894, 895, 5, 65, 0, 0, 895, 896, 5, 68, 0, 0, 896, 897, 5, 68, 0, 0, 897, 8, 1, 0, 0, 0, 898, 899, 5, 65, 0, 0, 899, 900, 5, 68, 0, 0, 900, 901, 5, 77, 0, 0, 901, 902, 5, 73, 0, 0, 902, 903, 5, 78, 0, 0, 903, 10, 1, 0, 0, 0, 904, 905, 5, 65, 0, 0, 905, 906, 5, 70, 0, 0, 906, 907, 5, 84, 0, 0, 907, 908, 5, 69, 0, 0, 908, 909, 5, 82, 0, 0, 909, 12, 1, 0, 0, 0, 910, 911, 5, 65, 0, 0, 911, 912, 5, 78, 0, 0, 912, 913, 5, 65, 0, 0, 913, 914, 5, 76, 0, 0, 914, 915, 5, 89, 0, 0, 915, 916, 5, 90, 0, 0, 916, 917, 5, 69, 0, 0, 917, 14, 1, 0, 0, 0, 918, 919, 5, 65, 0, 0, 919, 920, 5, 83, 0, 0, 920, 921, 5, 67, 0, 0, 921, 16, 1, 0, 0, 0, 922, 923, 5, 66, 0, 0, 923, 924, 5, 69, 0, 0, 924, 925, 5, 70, 0, 0, 925, 926, 5, 79, 0, 0, 926, 927, 5, 82, 0, 0, 927, 928, 5, 69, 0, 0, 928, 18, 1, 0, 0, 0, 929, 930, 5, 66, 0, 0, 930, 931, 5, 89, 0, 0, 931, 932, 5, 84, 0, 0, 932, 933, 5, 69, 0, 0, 933, 934, 5, 83, 0, 0, 934, 20, 1, 0, 0, 0, 935, 936, 5, 67, 0, 0, 936, 937, 5, 65, 0, 0, 937, 938, 5, 83, 0, 0, 938, 939, 5, 67, 0, 0, 939, 940, 5, 65, 0, 0, 940, 941, 5, 68, 0, 0, 941, 942, 5, 69, 0, 0, 942, 22, 1, 0, 0, 0, 943, 944, 5, 67, 0, 0, 944, 945, 5, 65, 0, 0, 945, 946, 5, 84, 0, 0, 946, 947, 5, 65, 0, 0, 947, 948, 5, 76, 0, 0, 948, 949, 5, 79, 0, 0, 949, 950, 5, 71, 0, 0, 950, 24, 1, 0, 0, 0, 951, 952, 5, 67, 0, 0, 952, 953, 5, 65, 0, 0, 953, 954, 5, 84, 0, 0, 954, 955, 5, 65, 0, 0, 955, 956, 5, 76, 0, 0, 956, 957, 5, 79, 0, 0, 957, 958, 5, 71, 0, 0, 958, 959, 5, 83, 0, 0, 959, 26, 1, 0, 0, 0, 960, 961, 5, 67, 0, 0, 961, 962, 5, 69, 0, 0, 962, 963, 5, 78, 0, 0, 963, 964, 5, 84, 0, 0, 964, 965, 5, 85, 0, 0, 965, 966, 5, 82, 0, 0, 966, 967, 5, 89, 0, 0, 967, 28, 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, 73, 0, 0, 972, 973, 5, 78, 0, 0, 973, 30, 1, 0, 0, 0, 974, 975, 5, 67, 0, 0, 975, 976, 5, 72, 0, 0, 976, 977, 5, 65, 0, 0, 977, 978, 5, 78, 0, 0, 978, 979, 5, 71, 0, 0, 979, 980, 5, 69, 0, 0, 980, 981, 5, 76, 0, 0, 981, 982, 5, 79, 0, 0, 982, 983, 5, 71, 0, 0, 983, 984, 5, 95, 0, 0, 984, 985, 5, 77, 0, 0, 985, 986, 5, 79, 0, 0, 986, 987, 5, 68, 0, 0, 987, 988, 5, 69, 0, 0, 988, 32, 1, 0, 0, 0, 989, 990, 5, 67, 0, 0, 990, 991, 5, 72, 0, 0, 991, 992, 5, 65, 0, 0, 992, 993, 5, 82, 0, 0, 993, 994, 5, 65, 0, 0, 994, 995, 5, 67, 0, 0, 995, 996, 5, 84, 0, 0, 996, 997, 5, 69, 0, 0, 997, 998, 5, 82, 0, 0, 998, 999, 5, 83, 0, 0, 999, 34, 1, 0, 0, 0, 1000, 1001, 5, 67, 0, 0, 1001, 1002, 5, 79, 0, 0, 1002, 1003, 5, 77, 0, 0, 1003, 1004, 5, 77, 0, 0, 1004, 1005, 5, 69, 0, 0, 1005, 1006, 5, 78, 0, 0, 1006, 1007, 5, 84, 0, 0, 1007, 36, 1, 0, 0, 0, 1008, 1009, 5, 67, 0, 0, 1009, 1010, 5, 79, 0, 0, 1010, 1011, 5, 77, 0, 0, 1011, 1012, 5, 80, 0, 0, 1012, 1013, 5, 65, 0, 0, 1013, 1014, 5, 67, 0, 0, 1014, 1015, 5, 84, 0, 0, 1015, 38, 1, 0, 0, 0, 1016, 1017, 5, 67, 0, 0, 1017, 1018, 5, 79, 0, 0, 1018, 1019, 5, 76, 0, 0, 1019, 1020, 5, 85, 0, 0, 1020, 1021, 5, 77, 0, 0, 1021, 1022, 5, 78, 0, 0, 1022, 1023, 5, 83, 0, 0, 1023, 40, 1, 0, 0, 0, 1024, 1025, 5, 67, 0, 0, 1025, 1026, 5, 79, 0, 0, 1026, 1027, 5, 78, 0, 0, 1027, 1028, 5, 83, 0, 0, 1028, 1029, 5, 84, 0, 0, 1029, 1030, 5, 82, 0, 0, 1030, 1031, 5, 65, 0, 0, 1031, 1032, 5, 73, 0, 0, 1032, 1033, 5, 78, 0, 0, 1033, 1034, 5, 84, 0, 0, 1034, 1035, 5, 83, 0, 0, 1035, 42, 1, 0, 0, 0, 1036, 1037, 5, 67, 0, 0, 1037, 1038, 5, 79, 0, 0, 1038, 1039, 5, 78, 0, 0, 1039, 1040, 5, 83, 0, 0, 1040, 1041, 5, 84, 0, 0, 1041, 1042, 5, 82, 0, 0, 1042, 1043, 5, 85, 0, 0, 1043, 1044, 5, 67, 0, 0, 1044, 1045, 5, 84, 0, 0, 1045, 1046, 5, 79, 0, 0, 1046, 1047, 5, 82, 0, 0, 1047, 44, 1, 0, 0, 0, 1048, 1049, 5, 67, 0, 0, 1049, 1050, 5, 85, 0, 0, 1050, 1051, 5, 77, 0, 0, 1051, 1052, 5, 85, 0, 0, 1052, 1053, 5, 76, 0, 0, 1053, 1054, 5, 65, 0, 0, 1054, 1055, 5, 84, 0, 0, 1055, 1056, 5, 69, 0, 0, 1056, 46, 1, 0, 0, 0, 1057, 1058, 5, 68, 0, 0, 1058, 1059, 5, 65, 0, 0, 1059, 1060, 5, 84, 0, 0, 1060, 1061, 5, 65, 0, 0, 1061, 48, 1, 0, 0, 0, 1062, 1063, 5, 68, 0, 0, 1063, 1064, 5, 65, 0, 0, 1064, 1065, 5, 84, 0, 0, 1065, 1066, 5, 65, 0, 0, 1066, 1067, 5, 66, 0, 0, 1067, 1068, 5, 65, 0, 0, 1068, 1069, 5, 83, 0, 0, 1069, 1070, 5, 69, 0, 0, 1070, 50, 1, 0, 0, 0, 1071, 1072, 5, 68, 0, 0, 1072, 1073, 5, 65, 0, 0, 1073, 1074, 5, 84, 0, 0, 1074, 1075, 5, 65, 0, 0, 1075, 1076, 5, 66, 0, 0, 1076, 1077, 5, 65, 0, 0, 1077, 1078, 5, 83, 0, 0, 1078, 1079, 5, 69, 0, 0, 1079, 1080, 5, 83, 0, 0, 1080, 52, 1, 0, 0, 0, 1081, 1082, 5, 68, 0, 0, 1082, 1083, 5, 65, 0, 0, 1083, 1084, 5, 89, 0, 0, 1084, 1085, 5, 83, 0, 0, 1085, 54, 1, 0, 0, 0, 1086, 1087, 5, 68, 0, 0, 1087, 1088, 5, 69, 0, 0, 1088, 1089, 5, 67, 0, 0, 1089, 1090, 5, 65, 0, 0, 1090, 1091, 5, 68, 0, 0, 1091, 1092, 5, 69, 0, 0, 1092, 56, 1, 0, 0, 0, 1093, 1094, 5, 68, 0, 0, 1094, 1095, 5, 69, 0, 0, 1095, 1096, 5, 70, 0, 0, 1096, 1097, 5, 73, 0, 0, 1097, 1098, 5, 78, 0, 0, 1098, 1099, 5, 69, 0, 0, 1099, 1100, 5, 68, 0, 0, 1100, 58, 1, 0, 0, 0, 1101, 1102, 5, 68, 0, 0, 1102, 1103, 5, 69, 0, 0, 1103, 1104, 5, 83, 0, 0, 1104, 1105, 5, 67, 0, 0, 1105, 60, 1, 0, 0, 0, 1106, 1107, 5, 68, 0, 0, 1107, 1108, 5, 69, 0, 0, 1108, 1109, 5, 83, 0, 0, 1109, 1110, 5, 67, 0, 0, 1110, 1111, 5, 82, 0, 0, 1111, 1112, 5, 73, 0, 0, 1112, 1113, 5, 80, 0, 0, 1113, 1114, 5, 84, 0, 0, 1114, 1115, 5, 79, 0, 0, 1115, 1116, 5, 82, 0, 0, 1116, 62, 1, 0, 0, 0, 1117, 1118, 5, 68, 0, 0, 1118, 1119, 5, 73, 0, 0, 1119, 1120, 5, 86, 0, 0, 1120, 64, 1, 0, 0, 0, 1121, 1122, 5, 69, 0, 0, 1122, 1123, 5, 78, 0, 0, 1123, 1124, 5, 67, 0, 0, 1124, 1125, 5, 79, 0, 0, 1125, 1126, 5, 68, 0, 0, 1126, 1127, 5, 73, 0, 0, 1127, 1128, 5, 78, 0, 0, 1128, 1129, 5, 71, 0, 0, 1129, 66, 1, 0, 0, 0, 1130, 1131, 5, 69, 0, 0, 1131, 1132, 5, 78, 0, 0, 1132, 1133, 5, 70, 0, 0, 1133, 1134, 5, 79, 0, 0, 1134, 1135, 5, 82, 0, 0, 1135, 1136, 5, 67, 0, 0, 1136, 1137, 5, 69, 0, 0, 1137, 1138, 5, 68, 0, 0, 1138, 68, 1, 0, 0, 0, 1139, 1140, 5, 69, 0, 0, 1140, 1141, 5, 78, 0, 0, 1141, 1142, 5, 71, 0, 0, 1142, 1143, 5, 73, 0, 0, 1143, 1144, 5, 78, 0, 0, 1144, 1145, 5, 69, 0, 0, 1145, 70, 1, 0, 0, 0, 1146, 1147, 5, 69, 0, 0, 1147, 1148, 5, 80, 0, 0, 1148, 1149, 5, 79, 0, 0, 1149, 1150, 5, 67, 0, 0, 1150, 1151, 5, 72, 0, 0, 1151, 72, 1, 0, 0, 0, 1152, 1153, 5, 69, 0, 0, 1153, 1154, 5, 82, 0, 0, 1154, 1155, 5, 82, 0, 0, 1155, 1156, 5, 79, 0, 0, 1156, 1157, 5, 82, 0, 0, 1157, 74, 1, 0, 0, 0, 1158, 1159, 5, 69, 0, 0, 1159, 1160, 5, 83, 0, 0, 1160, 1161, 5, 84, 0, 0, 1161, 1162, 5, 73, 0, 0, 1162, 1163, 5, 77, 0, 0, 1163, 1164, 5, 65, 0, 0, 1164, 1165, 5, 84, 0, 0, 1165, 1166, 5, 69, 0, 0, 1166, 1167, 5, 68, 0, 0, 1167, 1168, 5, 95, 0, 0, 1168, 1169, 5, 67, 0, 0, 1169, 1170, 5, 79, 0, 0, 1170, 1171, 5, 83, 0, 0, 1171, 1172, 5, 84, 0, 0, 1172, 76, 1, 0, 0, 0, 1173, 1174, 5, 69, 0, 0, 1174, 1175, 5, 88, 0, 0, 1175, 1176, 5, 67, 0, 0, 1176, 1177, 5, 69, 0, 0, 1177, 1178, 5, 80, 0, 0, 1178, 1179, 5, 84, 0, 0, 1179, 1180, 5, 73, 0, 0, 1180, 1181, 5, 79, 0, 0, 1181, 1182, 5, 78, 0, 0, 1182, 78, 1, 0, 0, 0, 1183, 1184, 5, 69, 0, 0, 1184, 1185, 5, 88, 0, 0, 1185, 1186, 5, 67, 0, 0, 1186, 1187, 5, 76, 0, 0, 1187, 1188, 5, 85, 0, 0, 1188, 1189, 5, 68, 0, 0, 1189, 1190, 5, 69, 0, 0, 1190, 80, 1, 0, 0, 0, 1191, 1192, 5, 69, 0, 0, 1192, 1193, 5, 88, 0, 0, 1193, 1194, 5, 67, 0, 0, 1194, 1195, 5, 76, 0, 0, 1195, 1196, 5, 85, 0, 0, 1196, 1197, 5, 68, 0, 0, 1197, 1198, 5, 73, 0, 0, 1198, 1199, 5, 78, 0, 0, 1199, 1200, 5, 71, 0, 0, 1200, 82, 1, 0, 0, 0, 1201, 1202, 5, 69, 0, 0, 1202, 1203, 5, 88, 0, 0, 1203, 1204, 5, 84, 0, 0, 1204, 1205, 5, 69, 0, 0, 1205, 1206, 5, 78, 0, 0, 1206, 1207, 5, 68, 0, 0, 1207, 1208, 5, 69, 0, 0, 1208, 1209, 5, 68, 0, 0, 1209, 84, 1, 0, 0, 0, 1210, 1211, 5, 70, 0, 0, 1211, 1212, 5, 73, 0, 0, 1212, 1213, 5, 76, 0, 0, 1213, 1214, 5, 69, 0, 0, 1214, 86, 1, 0, 0, 0, 1215, 1216, 5, 70, 0, 0, 1216, 1217, 5, 73, 0, 0, 1217, 1218, 5, 78, 0, 0, 1218, 1219, 5, 65, 0, 0, 1219, 1220, 5, 76, 0, 0, 1220, 88, 1, 0, 0, 0, 1221, 1222, 5, 70, 0, 0, 1222, 1223, 5, 73, 0, 0, 1223, 1224, 5, 82, 0, 0, 1224, 1225, 5, 83, 0, 0, 1225, 1226, 5, 84, 0, 0, 1226, 90, 1, 0, 0, 0, 1227, 1228, 5, 70, 0, 0, 1228, 1229, 5, 79, 0, 0, 1229, 1230, 5, 76, 0, 0, 1230, 1231, 5, 76, 0, 0, 1231, 1232, 5, 79, 0, 0, 1232, 1233, 5, 87, 0, 0, 1233, 1234, 5, 73, 0, 0, 1234, 1235, 5, 78, 0, 0, 1235, 1236, 5, 71, 0, 0, 1236, 92, 1, 0, 0, 0, 1237, 1238, 5, 70, 0, 0, 1238, 1239, 5, 79, 0, 0, 1239, 1240, 5, 82, 0, 0, 1240, 1241, 5, 77, 0, 0, 1241, 1242, 5, 65, 0, 0, 1242, 1243, 5, 84, 0, 0, 1243, 94, 1, 0, 0, 0, 1244, 1245, 5, 70, 0, 0, 1245, 1246, 5, 79, 0, 0, 1246, 1247, 5, 82, 0, 0, 1247, 1248, 5, 84, 0, 0, 1248, 1249, 5, 82, 0, 0, 1249, 1250, 5, 65, 0, 0, 1250, 1251, 5, 78, 0, 0, 1251, 96, 1, 0, 0, 0, 1252, 1253, 5, 70, 0, 0, 1253, 1254, 5, 79, 0, 0, 1254, 1255, 5, 85, 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, 82, 0, 0, 1260, 1261, 5, 65, 0, 0, 1261, 1262, 5, 67, 0, 0, 1262, 1263, 5, 95, 0, 0, 1263, 1264, 5, 83, 0, 0, 1264, 1265, 5, 69, 0, 0, 1265, 1266, 5, 67, 0, 0, 1266, 1267, 5, 79, 0, 0, 1267, 1268, 5, 78, 0, 0, 1268, 1269, 5, 68, 0, 0, 1269, 100, 1, 0, 0, 0, 1270, 1271, 5, 70, 0, 0, 1271, 1272, 5, 85, 0, 0, 1272, 1273, 5, 78, 0, 0, 1273, 1274, 5, 67, 0, 0, 1274, 1275, 5, 84, 0, 0, 1275, 1276, 5, 73, 0, 0, 1276, 1277, 5, 79, 0, 0, 1277, 1278, 5, 78, 0, 0, 1278, 1279, 5, 83, 0, 0, 1279, 102, 1, 0, 0, 0, 1280, 1281, 5, 71, 0, 0, 1281, 1282, 5, 69, 0, 0, 1282, 1283, 5, 78, 0, 0, 1283, 1284, 5, 69, 0, 0, 1284, 1285, 5, 82, 0, 0, 1285, 1286, 5, 65, 0, 0, 1286, 1287, 5, 76, 0, 0, 1287, 104, 1, 0, 0, 0, 1288, 1289, 5, 71, 0, 0, 1289, 1290, 5, 69, 0, 0, 1290, 1291, 5, 78, 0, 0, 1291, 1292, 5, 69, 0, 0, 1292, 1293, 5, 82, 0, 0, 1293, 1294, 5, 65, 0, 0, 1294, 1295, 5, 84, 0, 0, 1295, 1296, 5, 69, 0, 0, 1296, 1297, 5, 68, 0, 0, 1297, 106, 1, 0, 0, 0, 1298, 1299, 5, 71, 0, 0, 1299, 1300, 5, 79, 0, 0, 1300, 108, 1, 0, 0, 0, 1301, 1302, 5, 71, 0, 0, 1302, 1303, 5, 79, 0, 0, 1303, 1304, 5, 84, 0, 0, 1304, 1305, 5, 79, 0, 0, 1305, 110, 1, 0, 0, 0, 1306, 1307, 5, 71, 0, 0, 1307, 1308, 5, 82, 0, 0, 1308, 1309, 5, 65, 0, 0, 1309, 1310, 5, 78, 0, 0, 1310, 1311, 5, 84, 0, 0, 1311, 1312, 5, 69, 0, 0, 1312, 1313, 5, 68, 0, 0, 1313, 112, 1, 0, 0, 0, 1314, 1315, 5, 72, 0, 0, 1315, 1316, 5, 79, 0, 0, 1316, 1317, 5, 80, 0, 0, 1317, 114, 1, 0, 0, 0, 1318, 1319, 5, 72, 0, 0, 1319, 1320, 5, 79, 0, 0, 1320, 1321, 5, 85, 0, 0, 1321, 1322, 5, 82, 0, 0, 1322, 1323, 5, 83, 0, 0, 1323, 116, 1, 0, 0, 0, 1324, 1325, 5, 73, 0, 0, 1325, 1326, 5, 70, 0, 0, 1326, 118, 1, 0, 0, 0, 1327, 1328, 5, 73, 0, 0, 1328, 1329, 5, 71, 0, 0, 1329, 1330, 5, 78, 0, 0, 1330, 1331, 5, 79, 0, 0, 1331, 1332, 5, 82, 0, 0, 1332, 1333, 5, 69, 0, 0, 1333, 120, 1, 0, 0, 0, 1334, 1335, 5, 73, 0, 0, 1335, 1336, 5, 78, 0, 0, 1336, 1337, 5, 67, 0, 0, 1337, 1338, 5, 82, 0, 0, 1338, 1339, 5, 69, 0, 0, 1339, 1340, 5, 77, 0, 0, 1340, 1341, 5, 69, 0, 0, 1341, 1342, 5, 78, 0, 0, 1342, 1343, 5, 84, 0, 0, 1343, 122, 1, 0, 0, 0, 1344, 1345, 5, 73, 0, 0, 1345, 1346, 5, 78, 0, 0, 1346, 1347, 5, 80, 0, 0, 1347, 1348, 5, 85, 0, 0, 1348, 1349, 5, 84, 0, 0, 1349, 124, 1, 0, 0, 0, 1350, 1351, 5, 73, 0, 0, 1351, 1352, 5, 78, 0, 0, 1352, 1353, 5, 86, 0, 0, 1353, 1354, 5, 79, 0, 0, 1354, 1355, 5, 75, 0, 0, 1355, 1356, 5, 69, 0, 0, 1356, 1357, 5, 82, 0, 0, 1357, 126, 1, 0, 0, 0, 1358, 1359, 5, 74, 0, 0, 1359, 1360, 5, 65, 0, 0, 1360, 1361, 5, 82, 0, 0, 1361, 128, 1, 0, 0, 0, 1362, 1363, 5, 74, 0, 0, 1363, 1364, 5, 65, 0, 0, 1364, 1365, 5, 82, 0, 0, 1365, 1366, 5, 83, 0, 0, 1366, 130, 1, 0, 0, 0, 1367, 1368, 5, 74, 0, 0, 1368, 1369, 5, 65, 0, 0, 1369, 1370, 5, 86, 0, 0, 1370, 1371, 5, 65, 0, 0, 1371, 132, 1, 0, 0, 0, 1372, 1373, 5, 74, 0, 0, 1373, 1374, 5, 83, 0, 0, 1374, 1375, 5, 79, 0, 0, 1375, 1376, 5, 78, 0, 0, 1376, 134, 1, 0, 0, 0, 1377, 1378, 5, 74, 0, 0, 1378, 1379, 5, 83, 0, 0, 1379, 1380, 5, 79, 0, 0, 1380, 1381, 5, 78, 0, 0, 1381, 1382, 5, 95, 0, 0, 1382, 1383, 5, 69, 0, 0, 1383, 1384, 5, 88, 0, 0, 1384, 1385, 5, 69, 0, 0, 1385, 1386, 5, 67, 0, 0, 1386, 1387, 5, 85, 0, 0, 1387, 1388, 5, 84, 0, 0, 1388, 1389, 5, 73, 0, 0, 1389, 1390, 5, 79, 0, 0, 1390, 1391, 5, 78, 0, 0, 1391, 1392, 5, 95, 0, 0, 1392, 1393, 5, 80, 0, 0, 1393, 1394, 5, 76, 0, 0, 1394, 1395, 5, 65, 0, 0, 1395, 1396, 5, 78, 0, 0, 1396, 136, 1, 0, 0, 0, 1397, 1398, 5, 75, 0, 0, 1398, 1399, 5, 69, 0, 0, 1399, 1400, 5, 89, 0, 0, 1400, 138, 1, 0, 0, 0, 1401, 1402, 5, 75, 0, 0, 1402, 1403, 5, 69, 0, 0, 1403, 1404, 5, 89, 0, 0, 1404, 1405, 5, 95, 0, 0, 1405, 1406, 5, 77, 0, 0, 1406, 1407, 5, 69, 0, 0, 1407, 1408, 5, 77, 0, 0, 1408, 1409, 5, 66, 0, 0, 1409, 1410, 5, 69, 0, 0, 1410, 1411, 5, 82, 0, 0, 1411, 140, 1, 0, 0, 0, 1412, 1413, 5, 75, 0, 0, 1413, 1414, 5, 69, 0, 0, 1414, 1415, 5, 89, 0, 0, 1415, 1416, 5, 95, 0, 0, 1416, 1417, 5, 84, 0, 0, 1417, 1418, 5, 89, 0, 0, 1418, 1419, 5, 80, 0, 0, 1419, 1420, 5, 69, 0, 0, 1420, 142, 1, 0, 0, 0, 1421, 1422, 5, 76, 0, 0, 1422, 1423, 5, 65, 0, 0, 1423, 1424, 5, 66, 0, 0, 1424, 1425, 5, 69, 0, 0, 1425, 1426, 5, 76, 0, 0, 1426, 144, 1, 0, 0, 0, 1427, 1428, 5, 76, 0, 0, 1428, 1429, 5, 65, 0, 0, 1429, 1430, 5, 83, 0, 0, 1430, 1431, 5, 84, 0, 0, 1431, 146, 1, 0, 0, 0, 1432, 1433, 5, 76, 0, 0, 1433, 1434, 5, 69, 0, 0, 1434, 1435, 5, 78, 0, 0, 1435, 1436, 5, 71, 0, 0, 1436, 1437, 5, 84, 0, 0, 1437, 1438, 5, 72, 0, 0, 1438, 148, 1, 0, 0, 0, 1439, 1440, 5, 76, 0, 0, 1440, 1441, 5, 69, 0, 0, 1441, 1442, 5, 86, 0, 0, 1442, 1443, 5, 69, 0, 0, 1443, 1444, 5, 76, 0, 0, 1444, 150, 1, 0, 0, 0, 1445, 1446, 5, 76, 0, 0, 1446, 1447, 5, 79, 0, 0, 1447, 1448, 5, 65, 0, 0, 1448, 1449, 5, 68, 0, 0, 1449, 152, 1, 0, 0, 0, 1450, 1451, 5, 77, 0, 0, 1451, 1452, 5, 65, 0, 0, 1452, 1453, 5, 80, 0, 0, 1453, 154, 1, 0, 0, 0, 1454, 1455, 5, 77, 0, 0, 1455, 1456, 5, 73, 0, 0, 1456, 1457, 5, 67, 0, 0, 1457, 1458, 5, 82, 0, 0, 1458, 1459, 5, 79, 0, 0, 1459, 1460, 5, 83, 0, 0, 1460, 1461, 5, 69, 0, 0, 1461, 1462, 5, 67, 0, 0, 1462, 1463, 5, 79, 0, 0, 1463, 1464, 5, 78, 0, 0, 1464, 1465, 5, 68, 0, 0, 1465, 156, 1, 0, 0, 0, 1466, 1467, 5, 77, 0, 0, 1467, 1468, 5, 73, 0, 0, 1468, 1469, 5, 76, 0, 0, 1469, 1470, 5, 76, 0, 0, 1470, 1471, 5, 69, 0, 0, 1471, 1472, 5, 78, 0, 0, 1472, 1473, 5, 78, 0, 0, 1473, 1474, 5, 73, 0, 0, 1474, 1475, 5, 85, 0, 0, 1475, 1476, 5, 77, 0, 0, 1476, 158, 1, 0, 0, 0, 1477, 1478, 5, 77, 0, 0, 1478, 1479, 5, 73, 0, 0, 1479, 1480, 5, 76, 0, 0, 1480, 1481, 5, 76, 0, 0, 1481, 1482, 5, 73, 0, 0, 1482, 1483, 5, 83, 0, 0, 1483, 1484, 5, 69, 0, 0, 1484, 1485, 5, 67, 0, 0, 1485, 1486, 5, 79, 0, 0, 1486, 1487, 5, 78, 0, 0, 1487, 1488, 5, 68, 0, 0, 1488, 160, 1, 0, 0, 0, 1489, 1490, 5, 77, 0, 0, 1490, 1491, 5, 73, 0, 0, 1491, 1492, 5, 78, 0, 0, 1492, 1493, 5, 85, 0, 0, 1493, 1494, 5, 84, 0, 0, 1494, 1495, 5, 69, 0, 0, 1495, 1496, 5, 83, 0, 0, 1496, 162, 1, 0, 0, 0, 1497, 1498, 5, 77, 0, 0, 1498, 1499, 5, 73, 0, 0, 1499, 1500, 5, 78, 0, 0, 1500, 1501, 5, 86, 0, 0, 1501, 1502, 5, 65, 0, 0, 1502, 1503, 5, 76, 0, 0, 1503, 1504, 5, 85, 0, 0, 1504, 1505, 5, 69, 0, 0, 1505, 164, 1, 0, 0, 0, 1506, 1507, 5, 77, 0, 0, 1507, 1508, 5, 79, 0, 0, 1508, 1509, 5, 68, 0, 0, 1509, 1510, 5, 73, 0, 0, 1510, 1511, 5, 70, 0, 0, 1511, 1512, 5, 89, 0, 0, 1512, 166, 1, 0, 0, 0, 1513, 1514, 5, 77, 0, 0, 1514, 1515, 5, 79, 0, 0, 1515, 1516, 5, 68, 0, 0, 1516, 1517, 5, 85, 0, 0, 1517, 1518, 5, 76, 0, 0, 1518, 1519, 5, 69, 0, 0, 1519, 1520, 5, 83, 0, 0, 1520, 168, 1, 0, 0, 0, 1521, 1522, 5, 77, 0, 0, 1522, 1523, 5, 79, 0, 0, 1523, 1524, 5, 78, 0, 0, 1524, 1525, 5, 84, 0, 0, 1525, 1526, 5, 72, 0, 0, 1526, 1527, 5, 83, 0, 0, 1527, 170, 1, 0, 0, 0, 1528, 1529, 5, 78, 0, 0, 1529, 1530, 5, 65, 0, 0, 1530, 1531, 5, 78, 0, 0, 1531, 1532, 5, 79, 0, 0, 1532, 1533, 5, 83, 0, 0, 1533, 1534, 5, 69, 0, 0, 1534, 1535, 5, 67, 0, 0, 1535, 1536, 5, 79, 0, 0, 1536, 1537, 5, 78, 0, 0, 1537, 1538, 5, 68, 0, 0, 1538, 172, 1, 0, 0, 0, 1539, 1540, 5, 78, 0, 0, 1540, 1541, 5, 85, 0, 0, 1541, 1542, 5, 76, 0, 0, 1542, 1543, 5, 76, 0, 0, 1543, 1544, 5, 83, 0, 0, 1544, 174, 1, 0, 0, 0, 1545, 1546, 5, 78, 0, 0, 1546, 1547, 5, 85, 0, 0, 1547, 1548, 5, 77, 0, 0, 1548, 1549, 5, 66, 0, 0, 1549, 1550, 5, 69, 0, 0, 1550, 1551, 5, 82, 0, 0, 1551, 176, 1, 0, 0, 0, 1552, 1553, 5, 79, 0, 0, 1553, 1554, 5, 80, 0, 0, 1554, 1555, 5, 84, 0, 0, 1555, 1556, 5, 73, 0, 0, 1556, 1557, 5, 79, 0, 0, 1557, 1558, 5, 78, 0, 0, 1558, 178, 1, 0, 0, 0, 1559, 1560, 5, 79, 0, 0, 1560, 1561, 5, 80, 0, 0, 1561, 1562, 5, 84, 0, 0, 1562, 1563, 5, 73, 0, 0, 1563, 1564, 5, 79, 0, 0, 1564, 1565, 5, 78, 0, 0, 1565, 1566, 5, 83, 0, 0, 1566, 180, 1, 0, 0, 0, 1567, 1568, 5, 79, 0, 0, 1568, 1569, 5, 82, 0, 0, 1569, 1570, 5, 68, 0, 0, 1570, 1571, 5, 69, 0, 0, 1571, 1572, 5, 82, 0, 0, 1572, 1573, 5, 73, 0, 0, 1573, 1574, 5, 78, 0, 0, 1574, 1575, 5, 71, 0, 0, 1575, 182, 1, 0, 0, 0, 1576, 1577, 5, 79, 0, 0, 1577, 1578, 5, 85, 0, 0, 1578, 1579, 5, 84, 0, 0, 1579, 1580, 5, 80, 0, 0, 1580, 1581, 5, 85, 0, 0, 1581, 1582, 5, 84, 0, 0, 1582, 184, 1, 0, 0, 0, 1583, 1584, 5, 79, 0, 0, 1584, 1585, 5, 86, 0, 0, 1585, 1586, 5, 69, 0, 0, 1586, 1587, 5, 82, 0, 0, 1587, 1588, 5, 87, 0, 0, 1588, 1589, 5, 82, 0, 0, 1589, 1590, 5, 73, 0, 0, 1590, 1591, 5, 84, 0, 0, 1591, 1592, 5, 69, 0, 0, 1592, 186, 1, 0, 0, 0, 1593, 1594, 5, 79, 0, 0, 1594, 1595, 5, 86, 0, 0, 1595, 1596, 5, 69, 0, 0, 1596, 1597, 5, 82, 0, 0, 1597, 1598, 5, 87, 0, 0, 1598, 1599, 5, 82, 0, 0, 1599, 1600, 5, 73, 0, 0, 1600, 1601, 5, 84, 0, 0, 1601, 1602, 5, 73, 0, 0, 1602, 1603, 5, 78, 0, 0, 1603, 1604, 5, 71, 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, 69, 0, 0, 1615, 1616, 5, 68, 0, 0, 1616, 190, 1, 0, 0, 0, 1617, 1618, 5, 80, 0, 0, 1618, 1619, 5, 65, 0, 0, 1619, 1620, 5, 82, 0, 0, 1620, 1621, 5, 84, 0, 0, 1621, 1622, 5, 73, 0, 0, 1622, 1623, 5, 84, 0, 0, 1623, 1624, 5, 73, 0, 0, 1624, 1625, 5, 79, 0, 0, 1625, 1626, 5, 78, 0, 0, 1626, 1627, 5, 83, 0, 0, 1627, 192, 1, 0, 0, 0, 1628, 1629, 5, 80, 0, 0, 1629, 1630, 5, 65, 0, 0, 1630, 1631, 5, 83, 0, 0, 1631, 1632, 5, 83, 0, 0, 1632, 1633, 5, 73, 0, 0, 1633, 1634, 5, 78, 0, 0, 1634, 1635, 5, 71, 0, 0, 1635, 194, 1, 0, 0, 0, 1636, 1637, 5, 80, 0, 0, 1637, 1638, 5, 65, 0, 0, 1638, 1639, 5, 83, 0, 0, 1639, 1640, 5, 84, 0, 0, 1640, 196, 1, 0, 0, 0, 1641, 1642, 5, 80, 0, 0, 1642, 1643, 5, 65, 0, 0, 1643, 1644, 5, 84, 0, 0, 1644, 1645, 5, 72, 0, 0, 1645, 198, 1, 0, 0, 0, 1646, 1647, 5, 80, 0, 0, 1647, 1648, 5, 76, 0, 0, 1648, 1649, 5, 65, 0, 0, 1649, 1650, 5, 67, 0, 0, 1650, 1651, 5, 73, 0, 0, 1651, 1652, 5, 78, 0, 0, 1652, 1653, 5, 71, 0, 0, 1653, 200, 1, 0, 0, 0, 1654, 1655, 5, 80, 0, 0, 1655, 1656, 5, 76, 0, 0, 1656, 1657, 5, 65, 0, 0, 1657, 1658, 5, 78, 0, 0, 1658, 202, 1, 0, 0, 0, 1659, 1660, 5, 80, 0, 0, 1660, 1661, 5, 82, 0, 0, 1661, 1662, 5, 69, 0, 0, 1662, 1663, 5, 67, 0, 0, 1663, 1664, 5, 69, 0, 0, 1664, 1665, 5, 68, 0, 0, 1665, 1666, 5, 73, 0, 0, 1666, 1667, 5, 78, 0, 0, 1667, 1668, 5, 71, 0, 0, 1668, 204, 1, 0, 0, 0, 1669, 1670, 5, 80, 0, 0, 1670, 1671, 5, 82, 0, 0, 1671, 1672, 5, 69, 0, 0, 1672, 1673, 5, 83, 0, 0, 1673, 1674, 5, 69, 0, 0, 1674, 1675, 5, 82, 0, 0, 1675, 1676, 5, 86, 0, 0, 1676, 1677, 5, 69, 0, 0, 1677, 206, 1, 0, 0, 0, 1678, 1679, 5, 80, 0, 0, 1679, 1680, 5, 82, 0, 0, 1680, 1681, 5, 73, 0, 0, 1681, 1682, 5, 79, 0, 0, 1682, 1683, 5, 82, 0, 0, 1683, 208, 1, 0, 0, 0, 1684, 1685, 5, 80, 0, 0, 1685, 1686, 5, 82, 0, 0, 1686, 1687, 5, 73, 0, 0, 1687, 1688, 5, 86, 0, 0, 1688, 1689, 5, 73, 0, 0, 1689, 1690, 5, 76, 0, 0, 1690, 1691, 5, 69, 0, 0, 1691, 1692, 5, 71, 0, 0, 1692, 1693, 5, 69, 0, 0, 1693, 1694, 5, 83, 0, 0, 1694, 210, 1, 0, 0, 0, 1695, 1696, 5, 80, 0, 0, 1696, 1697, 5, 85, 0, 0, 1697, 1698, 5, 66, 0, 0, 1698, 1699, 5, 76, 0, 0, 1699, 1700, 5, 73, 0, 0, 1700, 1701, 5, 67, 0, 0, 1701, 212, 1, 0, 0, 0, 1702, 1703, 5, 80, 0, 0, 1703, 1704, 5, 89, 0, 0, 1704, 1705, 5, 84, 0, 0, 1705, 1706, 5, 72, 0, 0, 1706, 1707, 5, 79, 0, 0, 1707, 1708, 5, 78, 0, 0, 1708, 214, 1, 0, 0, 0, 1709, 1710, 5, 80, 0, 0, 1710, 1711, 5, 89, 0, 0, 1711, 1712, 5, 84, 0, 0, 1712, 1713, 5, 72, 0, 0, 1713, 1714, 5, 79, 0, 0, 1714, 1715, 5, 78, 0, 0, 1715, 1716, 5, 95, 0, 0, 1716, 1717, 5, 70, 0, 0, 1717, 1718, 5, 73, 0, 0, 1718, 1719, 5, 76, 0, 0, 1719, 1720, 5, 69, 0, 0, 1720, 1721, 5, 83, 0, 0, 1721, 216, 1, 0, 0, 0, 1722, 1723, 5, 80, 0, 0, 1723, 1724, 5, 89, 0, 0, 1724, 1725, 5, 84, 0, 0, 1725, 1726, 5, 72, 0, 0, 1726, 1727, 5, 79, 0, 0, 1727, 1728, 5, 78, 0, 0, 1728, 1729, 5, 95, 0, 0, 1729, 1730, 5, 82, 0, 0, 1730, 1731, 5, 69, 0, 0, 1731, 1732, 5, 81, 0, 0, 1732, 1733, 5, 85, 0, 0, 1733, 1734, 5, 73, 0, 0, 1734, 1735, 5, 82, 0, 0, 1735, 1736, 5, 69, 0, 0, 1736, 1737, 5, 77, 0, 0, 1737, 1738, 5, 69, 0, 0, 1738, 1739, 5, 78, 0, 0, 1739, 1740, 5, 84, 0, 0, 1740, 1741, 5, 83, 0, 0, 1741, 218, 1, 0, 0, 0, 1742, 1743, 5, 80, 0, 0, 1743, 1744, 5, 89, 0, 0, 1744, 1745, 5, 84, 0, 0, 1745, 1746, 5, 72, 0, 0, 1746, 1747, 5, 79, 0, 0, 1747, 1748, 5, 78, 0, 0, 1748, 1749, 5, 95, 0, 0, 1749, 1750, 5, 68, 0, 0, 1750, 1751, 5, 69, 0, 0, 1751, 1752, 5, 80, 0, 0, 1752, 1753, 5, 69, 0, 0, 1753, 1754, 5, 78, 0, 0, 1754, 1755, 5, 68, 0, 0, 1755, 1756, 5, 69, 0, 0, 1756, 1757, 5, 78, 0, 0, 1757, 1758, 5, 67, 0, 0, 1758, 1759, 5, 73, 0, 0, 1759, 1760, 5, 69, 0, 0, 1760, 1761, 5, 83, 0, 0, 1761, 220, 1, 0, 0, 0, 1762, 1763, 5, 80, 0, 0, 1763, 1764, 5, 89, 0, 0, 1764, 1765, 5, 84, 0, 0, 1765, 1766, 5, 72, 0, 0, 1766, 1767, 5, 79, 0, 0, 1767, 1768, 5, 78, 0, 0, 1768, 1769, 5, 95, 0, 0, 1769, 1770, 5, 74, 0, 0, 1770, 1771, 5, 65, 0, 0, 1771, 1772, 5, 82, 0, 0, 1772, 222, 1, 0, 0, 0, 1773, 1774, 5, 80, 0, 0, 1774, 1775, 5, 89, 0, 0, 1775, 1776, 5, 84, 0, 0, 1776, 1777, 5, 72, 0, 0, 1777, 1778, 5, 79, 0, 0, 1778, 1779, 5, 78, 0, 0, 1779, 1780, 5, 95, 0, 0, 1780, 1781, 5, 65, 0, 0, 1781, 1782, 5, 82, 0, 0, 1782, 1783, 5, 67, 0, 0, 1783, 1784, 5, 72, 0, 0, 1784, 1785, 5, 73, 0, 0, 1785, 1786, 5, 86, 0, 0, 1786, 1787, 5, 69, 0, 0, 1787, 1788, 5, 83, 0, 0, 1788, 224, 1, 0, 0, 0, 1789, 1790, 5, 80, 0, 0, 1790, 1791, 5, 89, 0, 0, 1791, 1792, 5, 84, 0, 0, 1792, 1793, 5, 72, 0, 0, 1793, 1794, 5, 79, 0, 0, 1794, 1795, 5, 78, 0, 0, 1795, 1796, 5, 95, 0, 0, 1796, 1797, 5, 80, 0, 0, 1797, 1798, 5, 65, 0, 0, 1798, 1799, 5, 82, 0, 0, 1799, 1800, 5, 65, 0, 0, 1800, 1801, 5, 77, 0, 0, 1801, 1802, 5, 69, 0, 0, 1802, 1803, 5, 84, 0, 0, 1803, 1804, 5, 69, 0, 0, 1804, 1805, 5, 82, 0, 0, 1805, 226, 1, 0, 0, 0, 1806, 1807, 5, 81, 0, 0, 1807, 1808, 5, 85, 0, 0, 1808, 1809, 5, 65, 0, 0, 1809, 1810, 5, 82, 0, 0, 1810, 1811, 5, 84, 0, 0, 1811, 1812, 5, 69, 0, 0, 1812, 1813, 5, 82, 0, 0, 1813, 228, 1, 0, 0, 0, 1814, 1815, 5, 82, 0, 0, 1815, 1816, 5, 65, 0, 0, 1816, 1817, 5, 87, 0, 0, 1817, 230, 1, 0, 0, 0, 1818, 1819, 5, 82, 0, 0, 1819, 1820, 5, 69, 0, 0, 1820, 1821, 5, 65, 0, 0, 1821, 1822, 5, 68, 0, 0, 1822, 232, 1, 0, 0, 0, 1823, 1824, 5, 82, 0, 0, 1824, 1825, 5, 69, 0, 0, 1825, 1826, 5, 76, 0, 0, 1826, 1827, 5, 65, 0, 0, 1827, 1828, 5, 84, 0, 0, 1828, 1829, 5, 73, 0, 0, 1829, 1830, 5, 86, 0, 0, 1830, 1831, 5, 69, 0, 0, 1831, 234, 1, 0, 0, 0, 1832, 1833, 5, 82, 0, 0, 1833, 1834, 5, 69, 0, 0, 1834, 1835, 5, 77, 0, 0, 1835, 1836, 5, 79, 0, 0, 1836, 1837, 5, 86, 0, 0, 1837, 1838, 5, 69, 0, 0, 1838, 236, 1, 0, 0, 0, 1839, 1840, 5, 82, 0, 0, 1840, 1841, 5, 69, 0, 0, 1841, 1842, 5, 78, 0, 0, 1842, 1843, 5, 65, 0, 0, 1843, 1844, 5, 77, 0, 0, 1844, 1845, 5, 69, 0, 0, 1845, 238, 1, 0, 0, 0, 1846, 1847, 5, 82, 0, 0, 1847, 1848, 5, 69, 0, 0, 1848, 1849, 5, 80, 0, 0, 1849, 1850, 5, 76, 0, 0, 1850, 1851, 5, 65, 0, 0, 1851, 1852, 5, 67, 0, 0, 1852, 1853, 5, 69, 0, 0, 1853, 240, 1, 0, 0, 0, 1854, 1855, 5, 82, 0, 0, 1855, 1856, 5, 69, 0, 0, 1856, 1857, 5, 83, 0, 0, 1857, 1858, 5, 80, 0, 0, 1858, 1859, 5, 69, 0, 0, 1859, 1860, 5, 67, 0, 0, 1860, 1861, 5, 84, 0, 0, 1861, 242, 1, 0, 0, 0, 1862, 1863, 5, 82, 0, 0, 1863, 1864, 5, 69, 0, 0, 1864, 1865, 5, 83, 0, 0, 1865, 1866, 5, 84, 0, 0, 1866, 1867, 5, 65, 0, 0, 1867, 1868, 5, 82, 0, 0, 1868, 1869, 5, 84, 0, 0, 1869, 244, 1, 0, 0, 0, 1870, 1871, 5, 82, 0, 0, 1871, 1872, 5, 69, 0, 0, 1872, 1873, 5, 83, 0, 0, 1873, 1874, 5, 84, 0, 0, 1874, 1875, 5, 82, 0, 0, 1875, 1876, 5, 73, 0, 0, 1876, 1877, 5, 67, 0, 0, 1877, 1878, 5, 84, 0, 0, 1878, 246, 1, 0, 0, 0, 1879, 1880, 5, 82, 0, 0, 1880, 1881, 5, 79, 0, 0, 1881, 1882, 5, 76, 0, 0, 1882, 1883, 5, 69, 0, 0, 1883, 248, 1, 0, 0, 0, 1884, 1885, 5, 82, 0, 0, 1885, 1886, 5, 79, 0, 0, 1886, 1887, 5, 87, 0, 0, 1887, 1888, 5, 95, 0, 0, 1888, 1889, 5, 67, 0, 0, 1889, 1890, 5, 79, 0, 0, 1890, 1891, 5, 85, 0, 0, 1891, 1892, 5, 78, 0, 0, 1892, 1893, 5, 84, 0, 0, 1893, 250, 1, 0, 0, 0, 1894, 1895, 5, 83, 0, 0, 1895, 1896, 5, 67, 0, 0, 1896, 1897, 5, 65, 0, 0, 1897, 1898, 5, 76, 0, 0, 1898, 1899, 5, 65, 0, 0, 1899, 252, 1, 0, 0, 0, 1900, 1901, 5, 83, 0, 0, 1901, 1902, 5, 67, 0, 0, 1902, 1903, 5, 65, 0, 0, 1903, 1904, 5, 76, 0, 0, 1904, 1905, 5, 65, 0, 0, 1905, 1906, 5, 82, 0, 0, 1906, 254, 1, 0, 0, 0, 1907, 1908, 5, 83, 0, 0, 1908, 1909, 5, 67, 0, 0, 1909, 1910, 5, 65, 0, 0, 1910, 1911, 5, 76, 0, 0, 1911, 1912, 5, 69, 0, 0, 1912, 256, 1, 0, 0, 0, 1913, 1914, 5, 83, 0, 0, 1914, 1915, 5, 67, 0, 0, 1915, 1916, 5, 72, 0, 0, 1916, 1917, 5, 69, 0, 0, 1917, 1918, 5, 77, 0, 0, 1918, 1919, 5, 65, 0, 0, 1919, 258, 1, 0, 0, 0, 1920, 1921, 5, 83, 0, 0, 1921, 1922, 5, 69, 0, 0, 1922, 1923, 5, 67, 0, 0, 1923, 1924, 5, 79, 0, 0, 1924, 1925, 5, 78, 0, 0, 1925, 1926, 5, 68, 0, 0, 1926, 1927, 5, 83, 0, 0, 1927, 260, 1, 0, 0, 0, 1928, 1929, 5, 83, 0, 0, 1929, 1930, 5, 69, 0, 0, 1930, 1931, 5, 67, 0, 0, 1931, 1932, 5, 84, 0, 0, 1932, 1933, 5, 73, 0, 0, 1933, 1934, 5, 79, 0, 0, 1934, 1935, 5, 78, 0, 0, 1935, 262, 1, 0, 0, 0, 1936, 1937, 5, 83, 0, 0, 1937, 1938, 5, 69, 0, 0, 1938, 1939, 5, 67, 0, 0, 1939, 1940, 5, 85, 0, 0, 1940, 1941, 5, 82, 0, 0, 1941, 1942, 5, 73, 0, 0, 1942, 1943, 5, 84, 0, 0, 1943, 1944, 5, 89, 0, 0, 1944, 264, 1, 0, 0, 0, 1945, 1946, 5, 83, 0, 0, 1946, 1947, 5, 69, 0, 0, 1947, 1948, 5, 76, 0, 0, 1948, 1949, 5, 70, 0, 0, 1949, 266, 1, 0, 0, 0, 1950, 1951, 5, 83, 0, 0, 1951, 1952, 5, 69, 0, 0, 1952, 1953, 5, 82, 0, 0, 1953, 1954, 5, 86, 0, 0, 1954, 1955, 5, 69, 0, 0, 1955, 1956, 5, 82, 0, 0, 1956, 268, 1, 0, 0, 0, 1957, 1958, 5, 83, 0, 0, 1958, 1959, 5, 69, 0, 0, 1959, 1960, 5, 82, 0, 0, 1960, 1961, 5, 86, 0, 0, 1961, 1962, 5, 69, 0, 0, 1962, 1963, 5, 82, 0, 0, 1963, 1964, 5, 95, 0, 0, 1964, 1965, 5, 78, 0, 0, 1965, 1966, 5, 65, 0, 0, 1966, 1967, 5, 77, 0, 0, 1967, 1968, 5, 69, 0, 0, 1968, 270, 1, 0, 0, 0, 1969, 1970, 5, 83, 0, 0, 1970, 1971, 5, 69, 0, 0, 1971, 1972, 5, 83, 0, 0, 1972, 1973, 5, 83, 0, 0, 1973, 1974, 5, 73, 0, 0, 1974, 1975, 5, 79, 0, 0, 1975, 1976, 5, 78, 0, 0, 1976, 272, 1, 0, 0, 0, 1977, 1978, 5, 83, 0, 0, 1978, 1979, 5, 69, 0, 0, 1979, 1980, 5, 84, 0, 0, 1980, 1981, 5, 83, 0, 0, 1981, 274, 1, 0, 0, 0, 1982, 1983, 5, 83, 0, 0, 1983, 1984, 5, 73, 0, 0, 1984, 1985, 5, 77, 0, 0, 1985, 1986, 5, 80, 0, 0, 1986, 1987, 5, 76, 0, 0, 1987, 1988, 5, 69, 0, 0, 1988, 276, 1, 0, 0, 0, 1989, 1990, 5, 83, 0, 0, 1990, 1991, 5, 73, 0, 0, 1991, 1992, 5, 90, 0, 0, 1992, 1993, 5, 69, 0, 0, 1993, 278, 1, 0, 0, 0, 1994, 1995, 5, 83, 0, 0, 1995, 1996, 5, 76, 0, 0, 1996, 1997, 5, 73, 0, 0, 1997, 1998, 5, 68, 0, 0, 1998, 1999, 5, 69, 0, 0, 1999, 280, 1, 0, 0, 0, 2000, 2001, 5, 83, 0, 0, 2001, 2002, 5, 79, 0, 0, 2002, 2003, 5, 85, 0, 0, 2003, 2004, 5, 82, 0, 0, 2004, 2005, 5, 67, 0, 0, 2005, 2006, 5, 69, 0, 0, 2006, 282, 1, 0, 0, 0, 2007, 2008, 5, 83, 0, 0, 2008, 2009, 5, 80, 0, 0, 2009, 2010, 5, 65, 0, 0, 2010, 2011, 5, 67, 0, 0, 2011, 2012, 5, 69, 0, 0, 2012, 284, 1, 0, 0, 0, 2013, 2014, 5, 83, 0, 0, 2014, 2015, 5, 84, 0, 0, 2015, 2016, 5, 65, 0, 0, 2016, 2017, 5, 84, 0, 0, 2017, 2018, 5, 69, 0, 0, 2018, 286, 1, 0, 0, 0, 2019, 2020, 5, 83, 0, 0, 2020, 2021, 5, 84, 0, 0, 2021, 2022, 5, 65, 0, 0, 2022, 2023, 5, 84, 0, 0, 2023, 2024, 5, 69, 0, 0, 2024, 2025, 5, 77, 0, 0, 2025, 2026, 5, 69, 0, 0, 2026, 2027, 5, 78, 0, 0, 2027, 2028, 5, 84, 0, 0, 2028, 288, 1, 0, 0, 0, 2029, 2030, 5, 83, 0, 0, 2030, 2031, 5, 84, 0, 0, 2031, 2032, 5, 69, 0, 0, 2032, 2033, 5, 80, 0, 0, 2033, 290, 1, 0, 0, 0, 2034, 2035, 5, 83, 0, 0, 2035, 2036, 5, 84, 0, 0, 2036, 2037, 5, 82, 0, 0, 2037, 2038, 5, 73, 0, 0, 2038, 2039, 5, 78, 0, 0, 2039, 2040, 5, 71, 0, 0, 2040, 292, 1, 0, 0, 0, 2041, 2042, 5, 83, 0, 0, 2042, 2043, 5, 84, 0, 0, 2043, 2044, 5, 82, 0, 0, 2044, 2045, 5, 85, 0, 0, 2045, 2046, 5, 67, 0, 0, 2046, 2047, 5, 84, 0, 0, 2047, 2048, 5, 85, 0, 0, 2048, 2049, 5, 82, 0, 0, 2049, 2050, 5, 69, 0, 0, 2050, 294, 1, 0, 0, 0, 2051, 2052, 5, 83, 0, 0, 2052, 2053, 5, 84, 0, 0, 2053, 2054, 5, 89, 0, 0, 2054, 2055, 5, 76, 0, 0, 2055, 2056, 5, 69, 0, 0, 2056, 296, 1, 0, 0, 0, 2057, 2058, 5, 84, 0, 0, 2058, 2059, 5, 65, 0, 0, 2059, 2060, 5, 66, 0, 0, 2060, 2061, 5, 76, 0, 0, 2061, 2062, 5, 69, 0, 0, 2062, 2063, 5, 83, 0, 0, 2063, 298, 1, 0, 0, 0, 2064, 2065, 5, 84, 0, 0, 2065, 2066, 5, 69, 0, 0, 2066, 2067, 5, 77, 0, 0, 2067, 2068, 5, 80, 0, 0, 2068, 2069, 5, 79, 0, 0, 2069, 2070, 5, 82, 0, 0, 2070, 2071, 5, 65, 0, 0, 2071, 2072, 5, 82, 0, 0, 2072, 2073, 5, 89, 0, 0, 2073, 300, 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, 67, 0, 0, 2079, 2080, 5, 79, 0, 0, 2080, 2081, 5, 76, 0, 0, 2081, 302, 1, 0, 0, 0, 2082, 2083, 5, 84, 0, 0, 2083, 2084, 5, 73, 0, 0, 2084, 2085, 5, 77, 0, 0, 2085, 2086, 5, 69, 0, 0, 2086, 2087, 5, 83, 0, 0, 2087, 2088, 5, 84, 0, 0, 2088, 2089, 5, 65, 0, 0, 2089, 2090, 5, 77, 0, 0, 2090, 2091, 5, 80, 0, 0, 2091, 2092, 5, 95, 0, 0, 2092, 2093, 5, 76, 0, 0, 2093, 2094, 5, 84, 0, 0, 2094, 2095, 5, 90, 0, 0, 2095, 304, 1, 0, 0, 0, 2096, 2097, 5, 84, 0, 0, 2097, 2098, 5, 73, 0, 0, 2098, 2099, 5, 77, 0, 0, 2099, 2100, 5, 69, 0, 0, 2100, 2101, 5, 83, 0, 0, 2101, 2102, 5, 84, 0, 0, 2102, 2103, 5, 65, 0, 0, 2103, 2104, 5, 77, 0, 0, 2104, 2105, 5, 80, 0, 0, 2105, 2106, 5, 65, 0, 0, 2106, 2107, 5, 68, 0, 0, 2107, 2108, 5, 68, 0, 0, 2108, 306, 1, 0, 0, 0, 2109, 2110, 5, 84, 0, 0, 2110, 2111, 5, 73, 0, 0, 2111, 2112, 5, 77, 0, 0, 2112, 2113, 5, 69, 0, 0, 2113, 2114, 5, 83, 0, 0, 2114, 2115, 5, 84, 0, 0, 2115, 2116, 5, 65, 0, 0, 2116, 2117, 5, 77, 0, 0, 2117, 2118, 5, 80, 0, 0, 2118, 2119, 5, 68, 0, 0, 2119, 2120, 5, 73, 0, 0, 2120, 2121, 5, 70, 0, 0, 2121, 2122, 5, 70, 0, 0, 2122, 308, 1, 0, 0, 0, 2123, 2124, 5, 84, 0, 0, 2124, 2125, 5, 82, 0, 0, 2125, 2126, 5, 65, 0, 0, 2126, 2127, 5, 78, 0, 0, 2127, 2128, 5, 83, 0, 0, 2128, 2129, 5, 70, 0, 0, 2129, 2130, 5, 79, 0, 0, 2130, 2131, 5, 82, 0, 0, 2131, 2132, 5, 77, 0, 0, 2132, 310, 1, 0, 0, 0, 2133, 2134, 5, 84, 0, 0, 2134, 2135, 5, 85, 0, 0, 2135, 2136, 5, 77, 0, 0, 2136, 2137, 5, 66, 0, 0, 2137, 2138, 5, 76, 0, 0, 2138, 2139, 5, 69, 0, 0, 2139, 312, 1, 0, 0, 0, 2140, 2141, 5, 84, 0, 0, 2141, 2142, 5, 89, 0, 0, 2142, 2143, 5, 80, 0, 0, 2143, 2144, 5, 69, 0, 0, 2144, 314, 1, 0, 0, 0, 2145, 2146, 5, 85, 0, 0, 2146, 2147, 5, 78, 0, 0, 2147, 2148, 5, 68, 0, 0, 2148, 2149, 5, 69, 0, 0, 2149, 2150, 5, 82, 0, 0, 2150, 316, 1, 0, 0, 0, 2151, 2152, 5, 85, 0, 0, 2152, 2153, 5, 78, 0, 0, 2153, 2154, 5, 76, 0, 0, 2154, 2155, 5, 79, 0, 0, 2155, 2156, 5, 65, 0, 0, 2156, 2157, 5, 68, 0, 0, 2157, 318, 1, 0, 0, 0, 2158, 2159, 5, 85, 0, 0, 2159, 2160, 5, 83, 0, 0, 2160, 2161, 5, 65, 0, 0, 2161, 2162, 5, 71, 0, 0, 2162, 2163, 5, 69, 0, 0, 2163, 320, 1, 0, 0, 0, 2164, 2165, 5, 85, 0, 0, 2165, 2166, 5, 83, 0, 0, 2166, 2167, 5, 69, 0, 0, 2167, 322, 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, 49, 0, 0, 2172, 2173, 5, 54, 0, 0, 2173, 324, 1, 0, 0, 0, 2174, 2175, 5, 85, 0, 0, 2175, 2176, 5, 84, 0, 0, 2176, 2177, 5, 70, 0, 0, 2177, 2178, 5, 51, 0, 0, 2178, 2179, 5, 50, 0, 0, 2179, 326, 1, 0, 0, 0, 2180, 2181, 5, 85, 0, 0, 2181, 2182, 5, 84, 0, 0, 2182, 2183, 5, 70, 0, 0, 2183, 2184, 5, 56, 0, 0, 2184, 328, 1, 0, 0, 0, 2185, 2186, 5, 86, 0, 0, 2186, 2187, 5, 69, 0, 0, 2187, 2188, 5, 82, 0, 0, 2188, 2189, 5, 83, 0, 0, 2189, 2190, 5, 73, 0, 0, 2190, 2191, 5, 79, 0, 0, 2191, 2192, 5, 78, 0, 0, 2192, 330, 1, 0, 0, 0, 2193, 2194, 5, 86, 0, 0, 2194, 2195, 5, 73, 0, 0, 2195, 2196, 5, 69, 0, 0, 2196, 2197, 5, 87, 0, 0, 2197, 332, 1, 0, 0, 0, 2198, 2199, 5, 86, 0, 0, 2199, 2200, 5, 73, 0, 0, 2200, 2201, 5, 69, 0, 0, 2201, 2202, 5, 87, 0, 0, 2202, 2203, 5, 83, 0, 0, 2203, 334, 1, 0, 0, 0, 2204, 2205, 5, 86, 0, 0, 2205, 2206, 5, 73, 0, 0, 2206, 2207, 5, 82, 0, 0, 2207, 2208, 5, 84, 0, 0, 2208, 2209, 5, 85, 0, 0, 2209, 2210, 5, 65, 0, 0, 2210, 2211, 5, 76, 0, 0, 2211, 336, 1, 0, 0, 0, 2212, 2213, 5, 87, 0, 0, 2213, 2214, 5, 65, 0, 0, 2214, 2215, 5, 84, 0, 0, 2215, 2216, 5, 69, 0, 0, 2216, 2217, 5, 82, 0, 0, 2217, 2218, 5, 77, 0, 0, 2218, 2219, 5, 65, 0, 0, 2219, 2220, 5, 82, 0, 0, 2220, 2221, 5, 75, 0, 0, 2221, 338, 1, 0, 0, 0, 2222, 2223, 5, 87, 0, 0, 2223, 2224, 5, 65, 0, 0, 2224, 2225, 5, 84, 0, 0, 2225, 2226, 5, 69, 0, 0, 2226, 2227, 5, 82, 0, 0, 2227, 2228, 5, 77, 0, 0, 2228, 2229, 5, 65, 0, 0, 2229, 2230, 5, 82, 0, 0, 2230, 2231, 5, 75, 0, 0, 2231, 2232, 5, 83, 0, 0, 2232, 340, 1, 0, 0, 0, 2233, 2234, 5, 87, 0, 0, 2234, 2235, 5, 69, 0, 0, 2235, 2236, 5, 69, 0, 0, 2236, 2237, 5, 75, 0, 0, 2237, 342, 1, 0, 0, 0, 2238, 2239, 5, 87, 0, 0, 2239, 2240, 5, 69, 0, 0, 2240, 2241, 5, 69, 0, 0, 2241, 2242, 5, 75, 0, 0, 2242, 2243, 5, 83, 0, 0, 2243, 344, 1, 0, 0, 0, 2244, 2245, 5, 87, 0, 0, 2245, 2246, 5, 79, 0, 0, 2246, 2247, 5, 82, 0, 0, 2247, 2248, 5, 75, 0, 0, 2248, 346, 1, 0, 0, 0, 2249, 2250, 5, 87, 0, 0, 2250, 2251, 5, 82, 0, 0, 2251, 2252, 5, 65, 0, 0, 2252, 2253, 5, 80, 0, 0, 2253, 2254, 5, 80, 0, 0, 2254, 2255, 5, 69, 0, 0, 2255, 2256, 5, 82, 0, 0, 2256, 348, 1, 0, 0, 0, 2257, 2258, 5, 89, 0, 0, 2258, 2259, 5, 69, 0, 0, 2259, 2260, 5, 65, 0, 0, 2260, 2261, 5, 82, 0, 0, 2261, 2262, 5, 83, 0, 0, 2262, 350, 1, 0, 0, 0, 2263, 2264, 5, 90, 0, 0, 2264, 2265, 5, 79, 0, 0, 2265, 2266, 5, 78, 0, 0, 2266, 2267, 5, 69, 0, 0, 2267, 352, 1, 0, 0, 0, 2268, 2269, 5, 65, 0, 0, 2269, 2270, 5, 66, 0, 0, 2270, 2271, 5, 83, 0, 0, 2271, 354, 1, 0, 0, 0, 2272, 2273, 5, 65, 0, 0, 2273, 2274, 5, 76, 0, 0, 2274, 2275, 5, 76, 0, 0, 2275, 356, 1, 0, 0, 0, 2276, 2277, 5, 65, 0, 0, 2277, 2278, 5, 76, 0, 0, 2278, 2279, 5, 76, 0, 0, 2279, 2280, 5, 79, 0, 0, 2280, 2281, 5, 87, 0, 0, 2281, 358, 1, 0, 0, 0, 2282, 2283, 5, 65, 0, 0, 2283, 2284, 5, 76, 0, 0, 2284, 2285, 5, 84, 0, 0, 2285, 2286, 5, 69, 0, 0, 2286, 2287, 5, 82, 0, 0, 2287, 360, 1, 0, 0, 0, 2288, 2289, 5, 65, 0, 0, 2289, 2290, 5, 78, 0, 0, 2290, 2291, 5, 68, 0, 0, 2291, 362, 1, 0, 0, 0, 2292, 2293, 5, 65, 0, 0, 2293, 2294, 5, 78, 0, 0, 2294, 2295, 5, 89, 0, 0, 2295, 364, 1, 0, 0, 0, 2296, 2297, 5, 65, 0, 0, 2297, 2298, 5, 82, 0, 0, 2298, 2299, 5, 69, 0, 0, 2299, 366, 1, 0, 0, 0, 2300, 2301, 5, 65, 0, 0, 2301, 2302, 5, 82, 0, 0, 2302, 2303, 5, 82, 0, 0, 2303, 2304, 5, 65, 0, 0, 2304, 2305, 5, 89, 0, 0, 2305, 368, 1, 0, 0, 0, 2306, 2307, 5, 65, 0, 0, 2307, 2308, 5, 83, 0, 0, 2308, 370, 1, 0, 0, 0, 2309, 2310, 5, 65, 0, 0, 2310, 2311, 5, 83, 0, 0, 2311, 2312, 5, 89, 0, 0, 2312, 2313, 5, 77, 0, 0, 2313, 2314, 5, 77, 0, 0, 2314, 2315, 5, 69, 0, 0, 2315, 2316, 5, 84, 0, 0, 2316, 2317, 5, 82, 0, 0, 2317, 2318, 5, 73, 0, 0, 2318, 2319, 5, 67, 0, 0, 2319, 372, 1, 0, 0, 0, 2320, 2321, 5, 65, 0, 0, 2321, 2322, 5, 84, 0, 0, 2322, 374, 1, 0, 0, 0, 2323, 2324, 5, 65, 0, 0, 2324, 2325, 5, 86, 0, 0, 2325, 2326, 5, 71, 0, 0, 2326, 376, 1, 0, 0, 0, 2327, 2328, 5, 66, 0, 0, 2328, 2329, 5, 69, 0, 0, 2329, 2330, 5, 71, 0, 0, 2330, 2331, 5, 73, 0, 0, 2331, 2332, 5, 78, 0, 0, 2332, 378, 1, 0, 0, 0, 2333, 2334, 5, 66, 0, 0, 2334, 2335, 5, 69, 0, 0, 2335, 2336, 5, 84, 0, 0, 2336, 2337, 5, 87, 0, 0, 2337, 2338, 5, 69, 0, 0, 2338, 2339, 5, 69, 0, 0, 2339, 2340, 5, 78, 0, 0, 2340, 380, 1, 0, 0, 0, 2341, 2342, 5, 66, 0, 0, 2342, 2343, 5, 73, 0, 0, 2343, 2344, 5, 71, 0, 0, 2344, 2345, 5, 73, 0, 0, 2345, 2346, 5, 78, 0, 0, 2346, 2347, 5, 84, 0, 0, 2347, 382, 1, 0, 0, 0, 2348, 2349, 5, 66, 0, 0, 2349, 2350, 5, 73, 0, 0, 2350, 2351, 5, 78, 0, 0, 2351, 2352, 5, 65, 0, 0, 2352, 2353, 5, 82, 0, 0, 2353, 2354, 5, 89, 0, 0, 2354, 384, 1, 0, 0, 0, 2355, 2356, 5, 66, 0, 0, 2356, 2357, 5, 73, 0, 0, 2357, 2358, 5, 84, 0, 0, 2358, 386, 1, 0, 0, 0, 2359, 2360, 5, 66, 0, 0, 2360, 2361, 5, 76, 0, 0, 2361, 2362, 5, 79, 0, 0, 2362, 2363, 5, 66, 0, 0, 2363, 388, 1, 0, 0, 0, 2364, 2365, 5, 66, 0, 0, 2365, 2366, 5, 79, 0, 0, 2366, 2367, 5, 79, 0, 0, 2367, 2368, 5, 76, 0, 0, 2368, 2369, 5, 69, 0, 0, 2369, 2370, 5, 65, 0, 0, 2370, 2371, 5, 78, 0, 0, 2371, 390, 1, 0, 0, 0, 2372, 2373, 5, 66, 0, 0, 2373, 2374, 5, 79, 0, 0, 2374, 2375, 5, 84, 0, 0, 2375, 2376, 5, 72, 0, 0, 2376, 392, 1, 0, 0, 0, 2377, 2378, 5, 66, 0, 0, 2378, 2379, 5, 89, 0, 0, 2379, 394, 1, 0, 0, 0, 2380, 2381, 5, 67, 0, 0, 2381, 2382, 5, 65, 0, 0, 2382, 2383, 5, 76, 0, 0, 2383, 2384, 5, 76, 0, 0, 2384, 396, 1, 0, 0, 0, 2385, 2386, 5, 67, 0, 0, 2386, 2387, 5, 65, 0, 0, 2387, 2388, 5, 76, 0, 0, 2388, 2389, 5, 76, 0, 0, 2389, 2390, 5, 69, 0, 0, 2390, 2391, 5, 68, 0, 0, 2391, 398, 1, 0, 0, 0, 2392, 2393, 5, 67, 0, 0, 2393, 2394, 5, 65, 0, 0, 2394, 2395, 5, 83, 0, 0, 2395, 2396, 5, 67, 0, 0, 2396, 2397, 5, 65, 0, 0, 2397, 2398, 5, 68, 0, 0, 2398, 2399, 5, 69, 0, 0, 2399, 2400, 5, 68, 0, 0, 2400, 400, 1, 0, 0, 0, 2401, 2402, 5, 67, 0, 0, 2402, 2403, 5, 65, 0, 0, 2403, 2404, 5, 83, 0, 0, 2404, 2405, 5, 69, 0, 0, 2405, 402, 1, 0, 0, 0, 2406, 2407, 5, 67, 0, 0, 2407, 2408, 5, 65, 0, 0, 2408, 2409, 5, 83, 0, 0, 2409, 2410, 5, 84, 0, 0, 2410, 404, 1, 0, 0, 0, 2411, 2412, 5, 67, 0, 0, 2412, 2413, 5, 69, 0, 0, 2413, 2414, 5, 73, 0, 0, 2414, 2415, 5, 76, 0, 0, 2415, 406, 1, 0, 0, 0, 2416, 2417, 5, 67, 0, 0, 2417, 2418, 5, 72, 0, 0, 2418, 2419, 5, 65, 0, 0, 2419, 2420, 5, 82, 0, 0, 2420, 408, 1, 0, 0, 0, 2421, 2422, 5, 67, 0, 0, 2422, 2423, 5, 72, 0, 0, 2423, 2424, 5, 65, 0, 0, 2424, 2425, 5, 82, 0, 0, 2425, 2426, 5, 65, 0, 0, 2426, 2427, 5, 67, 0, 0, 2427, 2428, 5, 84, 0, 0, 2428, 2429, 5, 69, 0, 0, 2429, 2430, 5, 82, 0, 0, 2430, 410, 1, 0, 0, 0, 2431, 2432, 5, 67, 0, 0, 2432, 2433, 5, 72, 0, 0, 2433, 2434, 5, 69, 0, 0, 2434, 2435, 5, 67, 0, 0, 2435, 2436, 5, 75, 0, 0, 2436, 412, 1, 0, 0, 0, 2437, 2438, 5, 67, 0, 0, 2438, 2439, 5, 76, 0, 0, 2439, 2440, 5, 79, 0, 0, 2440, 2441, 5, 66, 0, 0, 2441, 414, 1, 0, 0, 0, 2442, 2443, 5, 67, 0, 0, 2443, 2444, 5, 76, 0, 0, 2444, 2445, 5, 79, 0, 0, 2445, 2446, 5, 83, 0, 0, 2446, 2447, 5, 69, 0, 0, 2447, 416, 1, 0, 0, 0, 2448, 2449, 5, 67, 0, 0, 2449, 2450, 5, 79, 0, 0, 2450, 2451, 5, 65, 0, 0, 2451, 2452, 5, 76, 0, 0, 2452, 2453, 5, 69, 0, 0, 2453, 2454, 5, 83, 0, 0, 2454, 2455, 5, 67, 0, 0, 2455, 2456, 5, 69, 0, 0, 2456, 418, 1, 0, 0, 0, 2457, 2458, 5, 67, 0, 0, 2458, 2459, 5, 79, 0, 0, 2459, 2460, 5, 76, 0, 0, 2460, 2461, 5, 76, 0, 0, 2461, 2462, 5, 65, 0, 0, 2462, 2463, 5, 84, 0, 0, 2463, 2464, 5, 69, 0, 0, 2464, 420, 1, 0, 0, 0, 2465, 2466, 5, 67, 0, 0, 2466, 2467, 5, 79, 0, 0, 2467, 2468, 5, 76, 0, 0, 2468, 2469, 5, 76, 0, 0, 2469, 2470, 5, 69, 0, 0, 2470, 2471, 5, 67, 0, 0, 2471, 2472, 5, 84, 0, 0, 2472, 422, 1, 0, 0, 0, 2473, 2474, 5, 67, 0, 0, 2474, 2475, 5, 79, 0, 0, 2475, 2476, 5, 76, 0, 0, 2476, 2477, 5, 85, 0, 0, 2477, 2478, 5, 77, 0, 0, 2478, 2479, 5, 78, 0, 0, 2479, 424, 1, 0, 0, 0, 2480, 2481, 5, 67, 0, 0, 2481, 2482, 5, 79, 0, 0, 2482, 2483, 5, 77, 0, 0, 2483, 2484, 5, 77, 0, 0, 2484, 2485, 5, 73, 0, 0, 2485, 2486, 5, 84, 0, 0, 2486, 426, 1, 0, 0, 0, 2487, 2488, 5, 67, 0, 0, 2488, 2489, 5, 79, 0, 0, 2489, 2490, 5, 78, 0, 0, 2490, 2491, 5, 78, 0, 0, 2491, 2492, 5, 69, 0, 0, 2492, 2493, 5, 67, 0, 0, 2493, 2494, 5, 84, 0, 0, 2494, 428, 1, 0, 0, 0, 2495, 2496, 5, 67, 0, 0, 2496, 2497, 5, 79, 0, 0, 2497, 2498, 5, 78, 0, 0, 2498, 2499, 5, 83, 0, 0, 2499, 2500, 5, 84, 0, 0, 2500, 2501, 5, 82, 0, 0, 2501, 2502, 5, 65, 0, 0, 2502, 2503, 5, 73, 0, 0, 2503, 2504, 5, 78, 0, 0, 2504, 2505, 5, 84, 0, 0, 2505, 430, 1, 0, 0, 0, 2506, 2507, 5, 67, 0, 0, 2507, 2508, 5, 79, 0, 0, 2508, 2509, 5, 78, 0, 0, 2509, 2510, 5, 84, 0, 0, 2510, 2511, 5, 65, 0, 0, 2511, 2512, 5, 73, 0, 0, 2512, 2513, 5, 78, 0, 0, 2513, 2514, 5, 83, 0, 0, 2514, 432, 1, 0, 0, 0, 2515, 2516, 5, 67, 0, 0, 2516, 2517, 5, 79, 0, 0, 2517, 2518, 5, 78, 0, 0, 2518, 2519, 5, 86, 0, 0, 2519, 2520, 5, 69, 0, 0, 2520, 2521, 5, 82, 0, 0, 2521, 2522, 5, 84, 0, 0, 2522, 434, 1, 0, 0, 0, 2523, 2524, 5, 67, 0, 0, 2524, 2525, 5, 79, 0, 0, 2525, 2526, 5, 85, 0, 0, 2526, 2527, 5, 78, 0, 0, 2527, 2528, 5, 84, 0, 0, 2528, 436, 1, 0, 0, 0, 2529, 2530, 5, 67, 0, 0, 2530, 2531, 5, 82, 0, 0, 2531, 2532, 5, 69, 0, 0, 2532, 2533, 5, 65, 0, 0, 2533, 2534, 5, 84, 0, 0, 2534, 2535, 5, 69, 0, 0, 2535, 438, 1, 0, 0, 0, 2536, 2537, 5, 67, 0, 0, 2537, 2538, 5, 82, 0, 0, 2538, 2539, 5, 79, 0, 0, 2539, 2540, 5, 83, 0, 0, 2540, 2541, 5, 83, 0, 0, 2541, 440, 1, 0, 0, 0, 2542, 2543, 5, 67, 0, 0, 2543, 2544, 5, 85, 0, 0, 2544, 2545, 5, 66, 0, 0, 2545, 2546, 5, 69, 0, 0, 2546, 442, 1, 0, 0, 0, 2547, 2548, 5, 67, 0, 0, 2548, 2549, 5, 85, 0, 0, 2549, 2550, 5, 82, 0, 0, 2550, 2551, 5, 82, 0, 0, 2551, 2552, 5, 69, 0, 0, 2552, 2553, 5, 78, 0, 0, 2553, 2554, 5, 84, 0, 0, 2554, 444, 1, 0, 0, 0, 2555, 2556, 5, 67, 0, 0, 2556, 2557, 5, 85, 0, 0, 2557, 2558, 5, 82, 0, 0, 2558, 2559, 5, 83, 0, 0, 2559, 2560, 5, 79, 0, 0, 2560, 2561, 5, 82, 0, 0, 2561, 446, 1, 0, 0, 0, 2562, 2563, 5, 67, 0, 0, 2563, 2564, 5, 89, 0, 0, 2564, 2565, 5, 67, 0, 0, 2565, 2566, 5, 76, 0, 0, 2566, 2567, 5, 69, 0, 0, 2567, 448, 1, 0, 0, 0, 2568, 2569, 5, 68, 0, 0, 2569, 2570, 5, 65, 0, 0, 2570, 2571, 5, 84, 0, 0, 2571, 2572, 5, 69, 0, 0, 2572, 450, 1, 0, 0, 0, 2573, 2574, 5, 68, 0, 0, 2574, 2575, 5, 65, 0, 0, 2575, 2576, 5, 84, 0, 0, 2576, 2577, 5, 69, 0, 0, 2577, 2578, 5, 84, 0, 0, 2578, 2579, 5, 73, 0, 0, 2579, 2580, 5, 77, 0, 0, 2580, 2581, 5, 69, 0, 0, 2581, 452, 1, 0, 0, 0, 2582, 2583, 5, 68, 0, 0, 2583, 2584, 5, 65, 0, 0, 2584, 2585, 5, 89, 0, 0, 2585, 454, 1, 0, 0, 0, 2586, 2587, 5, 68, 0, 0, 2587, 2588, 5, 69, 0, 0, 2588, 2589, 5, 67, 0, 0, 2589, 456, 1, 0, 0, 0, 2590, 2591, 5, 68, 0, 0, 2591, 2592, 5, 69, 0, 0, 2592, 2593, 5, 67, 0, 0, 2593, 2594, 5, 73, 0, 0, 2594, 2595, 5, 77, 0, 0, 2595, 2596, 5, 65, 0, 0, 2596, 2597, 5, 76, 0, 0, 2597, 458, 1, 0, 0, 0, 2598, 2599, 5, 68, 0, 0, 2599, 2600, 5, 69, 0, 0, 2600, 2601, 5, 67, 0, 0, 2601, 2602, 5, 76, 0, 0, 2602, 2603, 5, 65, 0, 0, 2603, 2604, 5, 82, 0, 0, 2604, 2605, 5, 69, 0, 0, 2605, 460, 1, 0, 0, 0, 2606, 2607, 5, 68, 0, 0, 2607, 2608, 5, 69, 0, 0, 2608, 2609, 5, 70, 0, 0, 2609, 2610, 5, 65, 0, 0, 2610, 2611, 5, 85, 0, 0, 2611, 2612, 5, 76, 0, 0, 2612, 2613, 5, 84, 0, 0, 2613, 462, 1, 0, 0, 0, 2614, 2615, 5, 68, 0, 0, 2615, 2616, 5, 69, 0, 0, 2616, 2617, 5, 70, 0, 0, 2617, 2618, 5, 73, 0, 0, 2618, 2619, 5, 78, 0, 0, 2619, 2620, 5, 69, 0, 0, 2620, 464, 1, 0, 0, 0, 2621, 2622, 5, 68, 0, 0, 2622, 2623, 5, 69, 0, 0, 2623, 2624, 5, 76, 0, 0, 2624, 2625, 5, 69, 0, 0, 2625, 2626, 5, 84, 0, 0, 2626, 2627, 5, 69, 0, 0, 2627, 466, 1, 0, 0, 0, 2628, 2629, 5, 68, 0, 0, 2629, 2630, 5, 69, 0, 0, 2630, 2631, 5, 83, 0, 0, 2631, 2632, 5, 67, 0, 0, 2632, 2633, 5, 82, 0, 0, 2633, 2634, 5, 73, 0, 0, 2634, 2635, 5, 66, 0, 0, 2635, 2636, 5, 69, 0, 0, 2636, 468, 1, 0, 0, 0, 2637, 2638, 5, 68, 0, 0, 2638, 2639, 5, 73, 0, 0, 2639, 2640, 5, 83, 0, 0, 2640, 2641, 5, 84, 0, 0, 2641, 2642, 5, 73, 0, 0, 2642, 2643, 5, 78, 0, 0, 2643, 2644, 5, 67, 0, 0, 2644, 2645, 5, 84, 0, 0, 2645, 470, 1, 0, 0, 0, 2646, 2647, 5, 68, 0, 0, 2647, 2648, 5, 79, 0, 0, 2648, 2649, 5, 85, 0, 0, 2649, 2650, 5, 66, 0, 0, 2650, 2651, 5, 76, 0, 0, 2651, 2652, 5, 69, 0, 0, 2652, 472, 1, 0, 0, 0, 2653, 2654, 5, 68, 0, 0, 2654, 2655, 5, 82, 0, 0, 2655, 2656, 5, 79, 0, 0, 2656, 2657, 5, 80, 0, 0, 2657, 474, 1, 0, 0, 0, 2658, 2659, 5, 69, 0, 0, 2659, 2660, 5, 65, 0, 0, 2660, 2661, 5, 67, 0, 0, 2661, 2662, 5, 72, 0, 0, 2662, 476, 1, 0, 0, 0, 2663, 2664, 5, 69, 0, 0, 2664, 2665, 5, 76, 0, 0, 2665, 2666, 5, 83, 0, 0, 2666, 2667, 5, 69, 0, 0, 2667, 478, 1, 0, 0, 0, 2668, 2669, 5, 69, 0, 0, 2669, 2670, 5, 78, 0, 0, 2670, 2671, 5, 68, 0, 0, 2671, 480, 1, 0, 0, 0, 2672, 2673, 5, 69, 0, 0, 2673, 2674, 5, 81, 0, 0, 2674, 2675, 5, 85, 0, 0, 2675, 2676, 5, 65, 0, 0, 2676, 2677, 5, 76, 0, 0, 2677, 2678, 5, 83, 0, 0, 2678, 482, 1, 0, 0, 0, 2679, 2680, 5, 69, 0, 0, 2680, 2681, 5, 83, 0, 0, 2681, 2682, 5, 67, 0, 0, 2682, 2683, 5, 65, 0, 0, 2683, 2684, 5, 80, 0, 0, 2684, 2685, 5, 69, 0, 0, 2685, 484, 1, 0, 0, 0, 2686, 2687, 5, 69, 0, 0, 2687, 2688, 5, 88, 0, 0, 2688, 2689, 5, 67, 0, 0, 2689, 2690, 5, 69, 0, 0, 2690, 2691, 5, 80, 0, 0, 2691, 2692, 5, 84, 0, 0, 2692, 486, 1, 0, 0, 0, 2693, 2694, 5, 69, 0, 0, 2694, 2695, 5, 88, 0, 0, 2695, 2696, 5, 69, 0, 0, 2696, 2697, 5, 67, 0, 0, 2697, 2698, 5, 85, 0, 0, 2698, 2699, 5, 84, 0, 0, 2699, 2700, 5, 69, 0, 0, 2700, 488, 1, 0, 0, 0, 2701, 2702, 5, 69, 0, 0, 2702, 2703, 5, 88, 0, 0, 2703, 2704, 5, 73, 0, 0, 2704, 2705, 5, 83, 0, 0, 2705, 2706, 5, 84, 0, 0, 2706, 2707, 5, 83, 0, 0, 2707, 490, 1, 0, 0, 0, 2708, 2709, 5, 69, 0, 0, 2709, 2710, 5, 88, 0, 0, 2710, 2711, 5, 80, 0, 0, 2711, 2712, 5, 76, 0, 0, 2712, 2713, 5, 65, 0, 0, 2713, 2714, 5, 73, 0, 0, 2714, 2715, 5, 78, 0, 0, 2715, 492, 1, 0, 0, 0, 2716, 2717, 5, 69, 0, 0, 2717, 2718, 5, 88, 0, 0, 2718, 2719, 5, 84, 0, 0, 2719, 2720, 5, 69, 0, 0, 2720, 2721, 5, 82, 0, 0, 2721, 2722, 5, 78, 0, 0, 2722, 2723, 5, 65, 0, 0, 2723, 2724, 5, 76, 0, 0, 2724, 494, 1, 0, 0, 0, 2725, 2726, 5, 69, 0, 0, 2726, 2727, 5, 88, 0, 0, 2727, 2728, 5, 84, 0, 0, 2728, 2729, 5, 82, 0, 0, 2729, 2730, 5, 65, 0, 0, 2730, 2731, 5, 67, 0, 0, 2731, 2732, 5, 84, 0, 0, 2732, 496, 1, 0, 0, 0, 2733, 2734, 5, 70, 0, 0, 2734, 2735, 5, 65, 0, 0, 2735, 2736, 5, 76, 0, 0, 2736, 2737, 5, 83, 0, 0, 2737, 2738, 5, 69, 0, 0, 2738, 498, 1, 0, 0, 0, 2739, 2740, 5, 70, 0, 0, 2740, 2741, 5, 76, 0, 0, 2741, 2742, 5, 79, 0, 0, 2742, 2743, 5, 65, 0, 0, 2743, 2744, 5, 84, 0, 0, 2744, 500, 1, 0, 0, 0, 2745, 2746, 5, 70, 0, 0, 2746, 2747, 5, 79, 0, 0, 2747, 2748, 5, 82, 0, 0, 2748, 502, 1, 0, 0, 0, 2749, 2750, 5, 70, 0, 0, 2750, 2751, 5, 82, 0, 0, 2751, 2752, 5, 79, 0, 0, 2752, 2753, 5, 77, 0, 0, 2753, 504, 1, 0, 0, 0, 2754, 2755, 5, 70, 0, 0, 2755, 2756, 5, 85, 0, 0, 2756, 2757, 5, 76, 0, 0, 2757, 2758, 5, 76, 0, 0, 2758, 506, 1, 0, 0, 0, 2759, 2760, 5, 70, 0, 0, 2760, 2761, 5, 85, 0, 0, 2761, 2762, 5, 78, 0, 0, 2762, 2763, 5, 67, 0, 0, 2763, 2764, 5, 84, 0, 0, 2764, 2765, 5, 73, 0, 0, 2765, 2766, 5, 79, 0, 0, 2766, 2767, 5, 78, 0, 0, 2767, 508, 1, 0, 0, 0, 2768, 2769, 5, 71, 0, 0, 2769, 2770, 5, 76, 0, 0, 2770, 2771, 5, 79, 0, 0, 2771, 2772, 5, 66, 0, 0, 2772, 2773, 5, 65, 0, 0, 2773, 2774, 5, 76, 0, 0, 2774, 510, 1, 0, 0, 0, 2775, 2776, 5, 71, 0, 0, 2776, 2777, 5, 82, 0, 0, 2777, 2778, 5, 65, 0, 0, 2778, 2779, 5, 78, 0, 0, 2779, 2780, 5, 84, 0, 0, 2780, 512, 1, 0, 0, 0, 2781, 2782, 5, 71, 0, 0, 2782, 2783, 5, 82, 0, 0, 2783, 2784, 5, 79, 0, 0, 2784, 2785, 5, 85, 0, 0, 2785, 2786, 5, 80, 0, 0, 2786, 514, 1, 0, 0, 0, 2787, 2788, 5, 71, 0, 0, 2788, 2789, 5, 82, 0, 0, 2789, 2790, 5, 79, 0, 0, 2790, 2791, 5, 85, 0, 0, 2791, 2792, 5, 80, 0, 0, 2792, 2793, 5, 73, 0, 0, 2793, 2794, 5, 78, 0, 0, 2794, 2795, 5, 71, 0, 0, 2795, 516, 1, 0, 0, 0, 2796, 2797, 5, 71, 0, 0, 2797, 2798, 5, 82, 0, 0, 2798, 2799, 5, 79, 0, 0, 2799, 2800, 5, 85, 0, 0, 2800, 2801, 5, 80, 0, 0, 2801, 2802, 5, 83, 0, 0, 2802, 518, 1, 0, 0, 0, 2803, 2804, 5, 72, 0, 0, 2804, 2805, 5, 65, 0, 0, 2805, 2806, 5, 86, 0, 0, 2806, 2807, 5, 73, 0, 0, 2807, 2808, 5, 78, 0, 0, 2808, 2809, 5, 71, 0, 0, 2809, 520, 1, 0, 0, 0, 2810, 2811, 5, 72, 0, 0, 2811, 2812, 5, 79, 0, 0, 2812, 2813, 5, 85, 0, 0, 2813, 2814, 5, 82, 0, 0, 2814, 522, 1, 0, 0, 0, 2815, 2816, 5, 73, 0, 0, 2816, 2817, 5, 77, 0, 0, 2817, 2818, 5, 80, 0, 0, 2818, 2819, 5, 79, 0, 0, 2819, 2820, 5, 82, 0, 0, 2820, 2821, 5, 84, 0, 0, 2821, 524, 1, 0, 0, 0, 2822, 2823, 5, 73, 0, 0, 2823, 2824, 5, 78, 0, 0, 2824, 526, 1, 0, 0, 0, 2825, 2826, 5, 73, 0, 0, 2826, 2827, 5, 78, 0, 0, 2827, 2828, 5, 67, 0, 0, 2828, 2829, 5, 76, 0, 0, 2829, 2830, 5, 85, 0, 0, 2830, 2831, 5, 68, 0, 0, 2831, 2832, 5, 73, 0, 0, 2832, 2833, 5, 78, 0, 0, 2833, 2834, 5, 71, 0, 0, 2834, 528, 1, 0, 0, 0, 2835, 2836, 5, 73, 0, 0, 2836, 2837, 5, 78, 0, 0, 2837, 2838, 5, 78, 0, 0, 2838, 2839, 5, 69, 0, 0, 2839, 2840, 5, 82, 0, 0, 2840, 530, 1, 0, 0, 0, 2841, 2842, 5, 73, 0, 0, 2842, 2843, 5, 78, 0, 0, 2843, 2844, 5, 79, 0, 0, 2844, 2845, 5, 85, 0, 0, 2845, 2846, 5, 84, 0, 0, 2846, 532, 1, 0, 0, 0, 2847, 2848, 5, 73, 0, 0, 2848, 2849, 5, 78, 0, 0, 2849, 2850, 5, 83, 0, 0, 2850, 2851, 5, 69, 0, 0, 2851, 2852, 5, 82, 0, 0, 2852, 2853, 5, 84, 0, 0, 2853, 534, 1, 0, 0, 0, 2854, 2855, 5, 73, 0, 0, 2855, 2856, 5, 78, 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, 71, 0, 0, 2863, 2864, 5, 69, 0, 0, 2864, 2865, 5, 82, 0, 0, 2865, 538, 1, 0, 0, 0, 2866, 2867, 5, 73, 0, 0, 2867, 2868, 5, 78, 0, 0, 2868, 2869, 5, 84, 0, 0, 2869, 2870, 5, 69, 0, 0, 2870, 2871, 5, 82, 0, 0, 2871, 2872, 5, 83, 0, 0, 2872, 2873, 5, 69, 0, 0, 2873, 2874, 5, 67, 0, 0, 2874, 2875, 5, 84, 0, 0, 2875, 540, 1, 0, 0, 0, 2876, 2877, 5, 73, 0, 0, 2877, 2878, 5, 78, 0, 0, 2878, 2879, 5, 84, 0, 0, 2879, 2880, 5, 69, 0, 0, 2880, 2881, 5, 82, 0, 0, 2881, 2882, 5, 86, 0, 0, 2882, 2883, 5, 65, 0, 0, 2883, 2884, 5, 76, 0, 0, 2884, 542, 1, 0, 0, 0, 2885, 2886, 5, 73, 0, 0, 2886, 2887, 5, 78, 0, 0, 2887, 2888, 5, 84, 0, 0, 2888, 2889, 5, 79, 0, 0, 2889, 544, 1, 0, 0, 0, 2890, 2891, 5, 73, 0, 0, 2891, 2892, 5, 83, 0, 0, 2892, 546, 1, 0, 0, 0, 2893, 2894, 5, 74, 0, 0, 2894, 2895, 5, 79, 0, 0, 2895, 2896, 5, 73, 0, 0, 2896, 2897, 5, 78, 0, 0, 2897, 548, 1, 0, 0, 0, 2898, 2899, 5, 76, 0, 0, 2899, 2900, 5, 65, 0, 0, 2900, 2901, 5, 71, 0, 0, 2901, 550, 1, 0, 0, 0, 2902, 2903, 5, 76, 0, 0, 2903, 2904, 5, 65, 0, 0, 2904, 2905, 5, 78, 0, 0, 2905, 2906, 5, 71, 0, 0, 2906, 2907, 5, 85, 0, 0, 2907, 2908, 5, 65, 0, 0, 2908, 2909, 5, 71, 0, 0, 2909, 2910, 5, 69, 0, 0, 2910, 552, 1, 0, 0, 0, 2911, 2912, 5, 76, 0, 0, 2912, 2913, 5, 65, 0, 0, 2913, 2914, 5, 84, 0, 0, 2914, 2915, 5, 69, 0, 0, 2915, 2916, 5, 82, 0, 0, 2916, 2917, 5, 65, 0, 0, 2917, 2918, 5, 76, 0, 0, 2918, 554, 1, 0, 0, 0, 2919, 2920, 5, 76, 0, 0, 2920, 2921, 5, 69, 0, 0, 2921, 2922, 5, 65, 0, 0, 2922, 2923, 5, 68, 0, 0, 2923, 2924, 5, 73, 0, 0, 2924, 2925, 5, 78, 0, 0, 2925, 2926, 5, 71, 0, 0, 2926, 556, 1, 0, 0, 0, 2927, 2928, 5, 76, 0, 0, 2928, 2929, 5, 69, 0, 0, 2929, 2930, 5, 70, 0, 0, 2930, 2931, 5, 84, 0, 0, 2931, 558, 1, 0, 0, 0, 2932, 2933, 5, 76, 0, 0, 2933, 2934, 5, 73, 0, 0, 2934, 2935, 5, 75, 0, 0, 2935, 2936, 5, 69, 0, 0, 2936, 560, 1, 0, 0, 0, 2937, 2938, 5, 76, 0, 0, 2938, 2939, 5, 73, 0, 0, 2939, 2940, 5, 77, 0, 0, 2940, 2941, 5, 73, 0, 0, 2941, 2942, 5, 84, 0, 0, 2942, 562, 1, 0, 0, 0, 2943, 2944, 5, 76, 0, 0, 2944, 2945, 5, 79, 0, 0, 2945, 2946, 5, 67, 0, 0, 2946, 2947, 5, 65, 0, 0, 2947, 2948, 5, 76, 0, 0, 2948, 564, 1, 0, 0, 0, 2949, 2950, 5, 77, 0, 0, 2950, 2951, 5, 65, 0, 0, 2951, 2952, 5, 84, 0, 0, 2952, 2953, 5, 67, 0, 0, 2953, 2954, 5, 72, 0, 0, 2954, 566, 1, 0, 0, 0, 2955, 2956, 5, 77, 0, 0, 2956, 2957, 5, 65, 0, 0, 2957, 2958, 5, 84, 0, 0, 2958, 2959, 5, 67, 0, 0, 2959, 2960, 5, 72, 0, 0, 2960, 2961, 5, 95, 0, 0, 2961, 2962, 5, 82, 0, 0, 2962, 2963, 5, 69, 0, 0, 2963, 2964, 5, 67, 0, 0, 2964, 2965, 5, 79, 0, 0, 2965, 2966, 5, 71, 0, 0, 2966, 2967, 5, 78, 0, 0, 2967, 2968, 5, 73, 0, 0, 2968, 2969, 5, 90, 0, 0, 2969, 2970, 5, 69, 0, 0, 2970, 568, 1, 0, 0, 0, 2971, 2972, 5, 77, 0, 0, 2972, 2973, 5, 69, 0, 0, 2973, 2974, 5, 65, 0, 0, 2974, 2975, 5, 83, 0, 0, 2975, 2976, 5, 85, 0, 0, 2976, 2977, 5, 82, 0, 0, 2977, 2978, 5, 69, 0, 0, 2978, 2979, 5, 83, 0, 0, 2979, 570, 1, 0, 0, 0, 2980, 2981, 5, 77, 0, 0, 2981, 2982, 5, 69, 0, 0, 2982, 2983, 5, 82, 0, 0, 2983, 2984, 5, 71, 0, 0, 2984, 2985, 5, 69, 0, 0, 2985, 572, 1, 0, 0, 0, 2986, 2987, 5, 77, 0, 0, 2987, 2988, 5, 69, 0, 0, 2988, 2989, 5, 84, 0, 0, 2989, 2990, 5, 65, 0, 0, 2990, 2991, 5, 68, 0, 0, 2991, 2992, 5, 65, 0, 0, 2992, 2993, 5, 84, 0, 0, 2993, 2994, 5, 65, 0, 0, 2994, 574, 1, 0, 0, 0, 2995, 2996, 5, 77, 0, 0, 2996, 2997, 5, 73, 0, 0, 2997, 2998, 5, 78, 0, 0, 2998, 2999, 5, 85, 0, 0, 2999, 3000, 5, 83, 0, 0, 3000, 576, 1, 0, 0, 0, 3001, 3002, 5, 77, 0, 0, 3002, 3003, 5, 73, 0, 0, 3003, 3004, 5, 78, 0, 0, 3004, 3005, 5, 85, 0, 0, 3005, 3006, 5, 84, 0, 0, 3006, 3007, 5, 69, 0, 0, 3007, 578, 1, 0, 0, 0, 3008, 3009, 5, 77, 0, 0, 3009, 3010, 5, 79, 0, 0, 3010, 3011, 5, 68, 0, 0, 3011, 3012, 5, 73, 0, 0, 3012, 3013, 5, 70, 0, 0, 3013, 3014, 5, 73, 0, 0, 3014, 3015, 5, 69, 0, 0, 3015, 3016, 5, 83, 0, 0, 3016, 580, 1, 0, 0, 0, 3017, 3018, 5, 77, 0, 0, 3018, 3019, 5, 79, 0, 0, 3019, 3020, 5, 68, 0, 0, 3020, 3021, 5, 85, 0, 0, 3021, 3022, 5, 76, 0, 0, 3022, 3023, 5, 69, 0, 0, 3023, 582, 1, 0, 0, 0, 3024, 3025, 5, 77, 0, 0, 3025, 3026, 5, 79, 0, 0, 3026, 3027, 5, 78, 0, 0, 3027, 3028, 5, 84, 0, 0, 3028, 3029, 5, 72, 0, 0, 3029, 584, 1, 0, 0, 0, 3030, 3031, 5, 77, 0, 0, 3031, 3032, 5, 85, 0, 0, 3032, 3033, 5, 76, 0, 0, 3033, 3034, 5, 84, 0, 0, 3034, 3035, 5, 73, 0, 0, 3035, 3036, 5, 83, 0, 0, 3036, 3037, 5, 69, 0, 0, 3037, 3038, 5, 84, 0, 0, 3038, 586, 1, 0, 0, 0, 3039, 3040, 5, 78, 0, 0, 3040, 3041, 5, 65, 0, 0, 3041, 3042, 5, 84, 0, 0, 3042, 3043, 5, 85, 0, 0, 3043, 3044, 5, 82, 0, 0, 3044, 3045, 5, 65, 0, 0, 3045, 3046, 5, 76, 0, 0, 3046, 588, 1, 0, 0, 0, 3047, 3048, 5, 78, 0, 0, 3048, 3049, 5, 69, 0, 0, 3049, 3050, 5, 88, 0, 0, 3050, 3051, 5, 84, 0, 0, 3051, 590, 1, 0, 0, 0, 3052, 3053, 5, 78, 0, 0, 3053, 3054, 5, 79, 0, 0, 3054, 592, 1, 0, 0, 0, 3055, 3056, 5, 78, 0, 0, 3056, 3057, 5, 79, 0, 0, 3057, 3058, 5, 78, 0, 0, 3058, 3059, 5, 69, 0, 0, 3059, 594, 1, 0, 0, 0, 3060, 3061, 5, 78, 0, 0, 3061, 3062, 5, 79, 0, 0, 3062, 3063, 5, 84, 0, 0, 3063, 596, 1, 0, 0, 0, 3064, 3065, 5, 78, 0, 0, 3065, 3066, 5, 85, 0, 0, 3066, 3067, 5, 76, 0, 0, 3067, 3068, 5, 76, 0, 0, 3068, 598, 1, 0, 0, 0, 3069, 3070, 5, 78, 0, 0, 3070, 3071, 5, 85, 0, 0, 3071, 3072, 5, 77, 0, 0, 3072, 3073, 5, 69, 0, 0, 3073, 3074, 5, 82, 0, 0, 3074, 3075, 5, 73, 0, 0, 3075, 3076, 5, 67, 0, 0, 3076, 600, 1, 0, 0, 0, 3077, 3078, 5, 79, 0, 0, 3078, 3079, 5, 70, 0, 0, 3079, 602, 1, 0, 0, 0, 3080, 3081, 5, 79, 0, 0, 3081, 3082, 5, 70, 0, 0, 3082, 3083, 5, 70, 0, 0, 3083, 3084, 5, 83, 0, 0, 3084, 3085, 5, 69, 0, 0, 3085, 3086, 5, 84, 0, 0, 3086, 604, 1, 0, 0, 0, 3087, 3088, 5, 79, 0, 0, 3088, 3089, 5, 78, 0, 0, 3089, 606, 1, 0, 0, 0, 3090, 3091, 5, 79, 0, 0, 3091, 3092, 5, 78, 0, 0, 3092, 3093, 5, 69, 0, 0, 3093, 608, 1, 0, 0, 0, 3094, 3095, 5, 79, 0, 0, 3095, 3096, 5, 82, 0, 0, 3096, 610, 1, 0, 0, 0, 3097, 3098, 5, 79, 0, 0, 3098, 3099, 5, 82, 0, 0, 3099, 3100, 5, 68, 0, 0, 3100, 3101, 5, 69, 0, 0, 3101, 3102, 5, 82, 0, 0, 3102, 612, 1, 0, 0, 0, 3103, 3104, 5, 79, 0, 0, 3104, 3105, 5, 85, 0, 0, 3105, 3106, 5, 84, 0, 0, 3106, 614, 1, 0, 0, 0, 3107, 3108, 5, 79, 0, 0, 3108, 3109, 5, 85, 0, 0, 3109, 3110, 5, 84, 0, 0, 3110, 3111, 5, 69, 0, 0, 3111, 3112, 5, 82, 0, 0, 3112, 616, 1, 0, 0, 0, 3113, 3114, 5, 79, 0, 0, 3114, 3115, 5, 86, 0, 0, 3115, 3116, 5, 69, 0, 0, 3116, 3117, 5, 82, 0, 0, 3117, 618, 1, 0, 0, 0, 3118, 3119, 5, 79, 0, 0, 3119, 3120, 5, 86, 0, 0, 3120, 3121, 5, 69, 0, 0, 3121, 3122, 5, 82, 0, 0, 3122, 3123, 5, 76, 0, 0, 3123, 3124, 5, 65, 0, 0, 3124, 3125, 5, 89, 0, 0, 3125, 620, 1, 0, 0, 0, 3126, 3127, 5, 80, 0, 0, 3127, 3128, 5, 65, 0, 0, 3128, 3129, 5, 82, 0, 0, 3129, 3130, 5, 84, 0, 0, 3130, 3131, 5, 73, 0, 0, 3131, 3132, 5, 84, 0, 0, 3132, 3133, 5, 73, 0, 0, 3133, 3134, 5, 79, 0, 0, 3134, 3135, 5, 78, 0, 0, 3135, 622, 1, 0, 0, 0, 3136, 3137, 5, 80, 0, 0, 3137, 3138, 5, 65, 0, 0, 3138, 3139, 5, 84, 0, 0, 3139, 3140, 5, 84, 0, 0, 3140, 3141, 5, 69, 0, 0, 3141, 3142, 5, 82, 0, 0, 3142, 3143, 5, 78, 0, 0, 3143, 624, 1, 0, 0, 0, 3144, 3145, 5, 80, 0, 0, 3145, 3146, 5, 69, 0, 0, 3146, 3147, 5, 82, 0, 0, 3147, 626, 1, 0, 0, 0, 3148, 3149, 5, 80, 0, 0, 3149, 3150, 5, 69, 0, 0, 3150, 3151, 5, 82, 0, 0, 3151, 3152, 5, 67, 0, 0, 3152, 3153, 5, 69, 0, 0, 3153, 3154, 5, 78, 0, 0, 3154, 3155, 5, 84, 0, 0, 3155, 628, 1, 0, 0, 0, 3156, 3157, 5, 80, 0, 0, 3157, 3158, 5, 69, 0, 0, 3158, 3159, 5, 82, 0, 0, 3159, 3160, 5, 73, 0, 0, 3160, 3161, 5, 79, 0, 0, 3161, 3162, 5, 68, 0, 0, 3162, 630, 1, 0, 0, 0, 3163, 3164, 5, 80, 0, 0, 3164, 3165, 5, 79, 0, 0, 3165, 3166, 5, 83, 0, 0, 3166, 3167, 5, 73, 0, 0, 3167, 3168, 5, 84, 0, 0, 3168, 3169, 5, 73, 0, 0, 3169, 3170, 5, 79, 0, 0, 3170, 3171, 5, 78, 0, 0, 3171, 632, 1, 0, 0, 0, 3172, 3173, 5, 80, 0, 0, 3173, 3174, 5, 79, 0, 0, 3174, 3175, 5, 87, 0, 0, 3175, 3176, 5, 69, 0, 0, 3176, 3177, 5, 82, 0, 0, 3177, 634, 1, 0, 0, 0, 3178, 3179, 5, 80, 0, 0, 3179, 3180, 5, 82, 0, 0, 3180, 3181, 5, 73, 0, 0, 3181, 3182, 5, 77, 0, 0, 3182, 3183, 5, 65, 0, 0, 3183, 3184, 5, 82, 0, 0, 3184, 3185, 5, 89, 0, 0, 3185, 636, 1, 0, 0, 0, 3186, 3187, 5, 82, 0, 0, 3187, 3188, 5, 65, 0, 0, 3188, 3189, 5, 78, 0, 0, 3189, 3190, 5, 71, 0, 0, 3190, 3191, 5, 69, 0, 0, 3191, 638, 1, 0, 0, 0, 3192, 3193, 5, 82, 0, 0, 3193, 3194, 5, 65, 0, 0, 3194, 3195, 5, 78, 0, 0, 3195, 3196, 5, 75, 0, 0, 3196, 640, 1, 0, 0, 0, 3197, 3198, 5, 82, 0, 0, 3198, 3199, 5, 69, 0, 0, 3199, 3200, 5, 83, 0, 0, 3200, 3201, 5, 69, 0, 0, 3201, 3202, 5, 84, 0, 0, 3202, 642, 1, 0, 0, 0, 3203, 3204, 5, 82, 0, 0, 3204, 3205, 5, 69, 0, 0, 3205, 3206, 5, 86, 0, 0, 3206, 3207, 5, 79, 0, 0, 3207, 3208, 5, 75, 0, 0, 3208, 3209, 5, 69, 0, 0, 3209, 644, 1, 0, 0, 0, 3210, 3211, 5, 82, 0, 0, 3211, 3212, 5, 73, 0, 0, 3212, 3213, 5, 71, 0, 0, 3213, 3214, 5, 72, 0, 0, 3214, 3215, 5, 84, 0, 0, 3215, 646, 1, 0, 0, 0, 3216, 3217, 5, 82, 0, 0, 3217, 3218, 5, 76, 0, 0, 3218, 3219, 5, 73, 0, 0, 3219, 3220, 5, 75, 0, 0, 3220, 3221, 5, 69, 0, 0, 3221, 648, 1, 0, 0, 0, 3222, 3223, 5, 82, 0, 0, 3223, 3224, 5, 79, 0, 0, 3224, 3225, 5, 76, 0, 0, 3225, 3226, 5, 76, 0, 0, 3226, 3227, 5, 66, 0, 0, 3227, 3228, 5, 65, 0, 0, 3228, 3229, 5, 67, 0, 0, 3229, 3230, 5, 75, 0, 0, 3230, 650, 1, 0, 0, 0, 3231, 3232, 5, 82, 0, 0, 3232, 3233, 5, 79, 0, 0, 3233, 3234, 5, 76, 0, 0, 3234, 3235, 5, 76, 0, 0, 3235, 3236, 5, 85, 0, 0, 3236, 3237, 5, 80, 0, 0, 3237, 652, 1, 0, 0, 0, 3238, 3239, 5, 82, 0, 0, 3239, 3240, 5, 79, 0, 0, 3240, 3241, 5, 87, 0, 0, 3241, 654, 1, 0, 0, 0, 3242, 3243, 5, 82, 0, 0, 3243, 3244, 5, 79, 0, 0, 3244, 3245, 5, 87, 0, 0, 3245, 3246, 5, 83, 0, 0, 3246, 656, 1, 0, 0, 0, 3247, 3248, 5, 83, 0, 0, 3248, 3249, 5, 69, 0, 0, 3249, 3250, 5, 67, 0, 0, 3250, 3251, 5, 79, 0, 0, 3251, 3252, 5, 78, 0, 0, 3252, 3253, 5, 68, 0, 0, 3253, 658, 1, 0, 0, 0, 3254, 3255, 5, 83, 0, 0, 3255, 3256, 5, 69, 0, 0, 3256, 3257, 5, 76, 0, 0, 3257, 3258, 5, 69, 0, 0, 3258, 3259, 5, 67, 0, 0, 3259, 3260, 5, 84, 0, 0, 3260, 660, 1, 0, 0, 0, 3261, 3262, 5, 83, 0, 0, 3262, 3263, 5, 69, 0, 0, 3263, 3264, 5, 84, 0, 0, 3264, 662, 1, 0, 0, 0, 3265, 3266, 5, 83, 0, 0, 3266, 3267, 5, 72, 0, 0, 3267, 3268, 5, 79, 0, 0, 3268, 3269, 5, 87, 0, 0, 3269, 664, 1, 0, 0, 0, 3270, 3271, 5, 83, 0, 0, 3271, 3272, 5, 73, 0, 0, 3272, 3273, 5, 77, 0, 0, 3273, 3274, 5, 73, 0, 0, 3274, 3275, 5, 76, 0, 0, 3275, 3276, 5, 65, 0, 0, 3276, 3277, 5, 82, 0, 0, 3277, 666, 1, 0, 0, 0, 3278, 3279, 5, 83, 0, 0, 3279, 3280, 5, 75, 0, 0, 3280, 3281, 5, 73, 0, 0, 3281, 3282, 5, 80, 0, 0, 3282, 668, 1, 0, 0, 0, 3283, 3284, 5, 83, 0, 0, 3284, 3285, 5, 77, 0, 0, 3285, 3286, 5, 65, 0, 0, 3286, 3287, 5, 76, 0, 0, 3287, 3288, 5, 76, 0, 0, 3288, 3289, 5, 73, 0, 0, 3289, 3290, 5, 78, 0, 0, 3290, 3291, 5, 84, 0, 0, 3291, 670, 1, 0, 0, 0, 3292, 3293, 5, 83, 0, 0, 3293, 3294, 5, 84, 0, 0, 3294, 3295, 5, 65, 0, 0, 3295, 3296, 5, 82, 0, 0, 3296, 3297, 5, 84, 0, 0, 3297, 672, 1, 0, 0, 0, 3298, 3299, 5, 83, 0, 0, 3299, 3300, 5, 84, 0, 0, 3300, 3301, 5, 65, 0, 0, 3301, 3302, 5, 84, 0, 0, 3302, 3303, 5, 73, 0, 0, 3303, 3304, 5, 67, 0, 0, 3304, 674, 1, 0, 0, 0, 3305, 3306, 5, 83, 0, 0, 3306, 3307, 5, 85, 0, 0, 3307, 3308, 5, 66, 0, 0, 3308, 3309, 5, 83, 0, 0, 3309, 3310, 5, 84, 0, 0, 3310, 3311, 5, 82, 0, 0, 3311, 3312, 5, 73, 0, 0, 3312, 3313, 5, 78, 0, 0, 3313, 3314, 5, 71, 0, 0, 3314, 676, 1, 0, 0, 0, 3315, 3316, 5, 83, 0, 0, 3316, 3317, 5, 85, 0, 0, 3317, 3318, 5, 77, 0, 0, 3318, 678, 1, 0, 0, 0, 3319, 3320, 5, 83, 0, 0, 3320, 3321, 5, 89, 0, 0, 3321, 3322, 5, 77, 0, 0, 3322, 3323, 5, 77, 0, 0, 3323, 3324, 5, 69, 0, 0, 3324, 3325, 5, 84, 0, 0, 3325, 3326, 5, 82, 0, 0, 3326, 3327, 5, 73, 0, 0, 3327, 3328, 5, 67, 0, 0, 3328, 680, 1, 0, 0, 0, 3329, 3330, 5, 83, 0, 0, 3330, 3331, 5, 89, 0, 0, 3331, 3332, 5, 83, 0, 0, 3332, 3333, 5, 84, 0, 0, 3333, 3334, 5, 69, 0, 0, 3334, 3335, 5, 77, 0, 0, 3335, 682, 1, 0, 0, 0, 3336, 3337, 5, 83, 0, 0, 3337, 3338, 5, 89, 0, 0, 3338, 3339, 5, 83, 0, 0, 3339, 3340, 5, 84, 0, 0, 3340, 3341, 5, 69, 0, 0, 3341, 3342, 5, 77, 0, 0, 3342, 3343, 5, 95, 0, 0, 3343, 3344, 5, 84, 0, 0, 3344, 3345, 5, 73, 0, 0, 3345, 3346, 5, 77, 0, 0, 3346, 3347, 5, 69, 0, 0, 3347, 684, 1, 0, 0, 0, 3348, 3349, 5, 83, 0, 0, 3349, 3350, 5, 89, 0, 0, 3350, 3351, 5, 83, 0, 0, 3351, 3352, 5, 84, 0, 0, 3352, 3353, 5, 69, 0, 0, 3353, 3354, 5, 77, 0, 0, 3354, 3355, 5, 95, 0, 0, 3355, 3356, 5, 85, 0, 0, 3356, 3357, 5, 83, 0, 0, 3357, 3358, 5, 69, 0, 0, 3358, 3359, 5, 82, 0, 0, 3359, 686, 1, 0, 0, 0, 3360, 3361, 5, 84, 0, 0, 3361, 3362, 5, 65, 0, 0, 3362, 3363, 5, 66, 0, 0, 3363, 3364, 5, 76, 0, 0, 3364, 3365, 5, 69, 0, 0, 3365, 688, 1, 0, 0, 0, 3366, 3367, 5, 84, 0, 0, 3367, 3368, 5, 65, 0, 0, 3368, 3369, 5, 66, 0, 0, 3369, 3370, 5, 76, 0, 0, 3370, 3371, 5, 69, 0, 0, 3371, 3372, 5, 83, 0, 0, 3372, 3373, 5, 65, 0, 0, 3373, 3374, 5, 77, 0, 0, 3374, 3375, 5, 80, 0, 0, 3375, 3376, 5, 76, 0, 0, 3376, 3377, 5, 69, 0, 0, 3377, 690, 1, 0, 0, 0, 3378, 3379, 5, 84, 0, 0, 3379, 3380, 5, 72, 0, 0, 3380, 3381, 5, 69, 0, 0, 3381, 3382, 5, 78, 0, 0, 3382, 692, 1, 0, 0, 0, 3383, 3384, 5, 84, 0, 0, 3384, 3385, 5, 73, 0, 0, 3385, 3386, 5, 77, 0, 0, 3386, 3387, 5, 69, 0, 0, 3387, 694, 1, 0, 0, 0, 3388, 3389, 5, 84, 0, 0, 3389, 3390, 5, 73, 0, 0, 3390, 3391, 5, 77, 0, 0, 3391, 3392, 5, 69, 0, 0, 3392, 3393, 5, 83, 0, 0, 3393, 3394, 5, 84, 0, 0, 3394, 3395, 5, 65, 0, 0, 3395, 3396, 5, 77, 0, 0, 3396, 3397, 5, 80, 0, 0, 3397, 696, 1, 0, 0, 0, 3398, 3399, 5, 84, 0, 0, 3399, 3400, 5, 73, 0, 0, 3400, 3401, 5, 78, 0, 0, 3401, 3402, 5, 89, 0, 0, 3402, 3403, 5, 73, 0, 0, 3403, 3404, 5, 78, 0, 0, 3404, 3405, 5, 84, 0, 0, 3405, 698, 1, 0, 0, 0, 3406, 3407, 5, 84, 0, 0, 3407, 3408, 5, 79, 0, 0, 3408, 700, 1, 0, 0, 0, 3409, 3410, 5, 84, 0, 0, 3410, 3411, 5, 82, 0, 0, 3411, 3412, 5, 65, 0, 0, 3412, 3413, 5, 73, 0, 0, 3413, 3414, 5, 76, 0, 0, 3414, 3415, 5, 73, 0, 0, 3415, 3416, 5, 78, 0, 0, 3416, 3417, 5, 71, 0, 0, 3417, 702, 1, 0, 0, 0, 3418, 3419, 5, 84, 0, 0, 3419, 3420, 5, 82, 0, 0, 3420, 3421, 5, 85, 0, 0, 3421, 3422, 5, 69, 0, 0, 3422, 704, 1, 0, 0, 0, 3423, 3424, 5, 84, 0, 0, 3424, 3425, 5, 82, 0, 0, 3425, 3426, 5, 85, 0, 0, 3426, 3427, 5, 78, 0, 0, 3427, 3428, 5, 67, 0, 0, 3428, 3429, 5, 65, 0, 0, 3429, 3430, 5, 84, 0, 0, 3430, 3431, 5, 69, 0, 0, 3431, 706, 1, 0, 0, 0, 3432, 3433, 5, 85, 0, 0, 3433, 3434, 5, 78, 0, 0, 3434, 3435, 5, 73, 0, 0, 3435, 3436, 5, 79, 0, 0, 3436, 3437, 5, 78, 0, 0, 3437, 708, 1, 0, 0, 0, 3438, 3439, 5, 85, 0, 0, 3439, 3440, 5, 78, 0, 0, 3440, 3441, 5, 73, 0, 0, 3441, 3442, 5, 81, 0, 0, 3442, 3443, 5, 85, 0, 0, 3443, 3444, 5, 69, 0, 0, 3444, 710, 1, 0, 0, 0, 3445, 3446, 5, 85, 0, 0, 3446, 3447, 5, 78, 0, 0, 3447, 3448, 5, 75, 0, 0, 3448, 3449, 5, 78, 0, 0, 3449, 3450, 5, 79, 0, 0, 3450, 3451, 5, 87, 0, 0, 3451, 3452, 5, 78, 0, 0, 3452, 712, 1, 0, 0, 0, 3453, 3454, 5, 85, 0, 0, 3454, 3455, 5, 78, 0, 0, 3455, 3456, 5, 78, 0, 0, 3456, 3457, 5, 69, 0, 0, 3457, 3458, 5, 83, 0, 0, 3458, 3459, 5, 84, 0, 0, 3459, 714, 1, 0, 0, 0, 3460, 3461, 5, 85, 0, 0, 3461, 3462, 5, 80, 0, 0, 3462, 3463, 5, 80, 0, 0, 3463, 3464, 5, 69, 0, 0, 3464, 3465, 5, 82, 0, 0, 3465, 716, 1, 0, 0, 0, 3466, 3467, 5, 85, 0, 0, 3467, 3468, 5, 80, 0, 0, 3468, 3469, 5, 83, 0, 0, 3469, 3470, 5, 69, 0, 0, 3470, 3471, 5, 82, 0, 0, 3471, 3472, 5, 84, 0, 0, 3472, 718, 1, 0, 0, 0, 3473, 3474, 5, 85, 0, 0, 3474, 3475, 5, 83, 0, 0, 3475, 3476, 5, 69, 0, 0, 3476, 3477, 5, 82, 0, 0, 3477, 720, 1, 0, 0, 0, 3478, 3479, 5, 85, 0, 0, 3479, 3480, 5, 83, 0, 0, 3480, 3481, 5, 73, 0, 0, 3481, 3482, 5, 78, 0, 0, 3482, 3483, 5, 71, 0, 0, 3483, 722, 1, 0, 0, 0, 3484, 3485, 5, 86, 0, 0, 3485, 3486, 5, 65, 0, 0, 3486, 3487, 5, 76, 0, 0, 3487, 3488, 5, 85, 0, 0, 3488, 3489, 5, 69, 0, 0, 3489, 724, 1, 0, 0, 0, 3490, 3491, 5, 86, 0, 0, 3491, 3492, 5, 65, 0, 0, 3492, 3493, 5, 76, 0, 0, 3493, 3494, 5, 85, 0, 0, 3494, 3495, 5, 69, 0, 0, 3495, 3496, 5, 83, 0, 0, 3496, 726, 1, 0, 0, 0, 3497, 3498, 5, 86, 0, 0, 3498, 3499, 5, 65, 0, 0, 3499, 3500, 5, 82, 0, 0, 3500, 3501, 5, 66, 0, 0, 3501, 3502, 5, 73, 0, 0, 3502, 3503, 5, 78, 0, 0, 3503, 3504, 5, 65, 0, 0, 3504, 3505, 5, 82, 0, 0, 3505, 3506, 5, 89, 0, 0, 3506, 728, 1, 0, 0, 0, 3507, 3508, 5, 86, 0, 0, 3508, 3509, 5, 65, 0, 0, 3509, 3510, 5, 82, 0, 0, 3510, 3511, 5, 67, 0, 0, 3511, 3512, 5, 72, 0, 0, 3512, 3513, 5, 65, 0, 0, 3513, 3514, 5, 82, 0, 0, 3514, 730, 1, 0, 0, 0, 3515, 3516, 5, 87, 0, 0, 3516, 3517, 5, 72, 0, 0, 3517, 3518, 5, 69, 0, 0, 3518, 3519, 5, 78, 0, 0, 3519, 732, 1, 0, 0, 0, 3520, 3521, 5, 87, 0, 0, 3521, 3522, 5, 72, 0, 0, 3522, 3523, 5, 69, 0, 0, 3523, 3524, 5, 82, 0, 0, 3524, 3525, 5, 69, 0, 0, 3525, 734, 1, 0, 0, 0, 3526, 3527, 5, 87, 0, 0, 3527, 3528, 5, 73, 0, 0, 3528, 3529, 5, 78, 0, 0, 3529, 3530, 5, 68, 0, 0, 3530, 3531, 5, 79, 0, 0, 3531, 3532, 5, 87, 0, 0, 3532, 736, 1, 0, 0, 0, 3533, 3534, 5, 87, 0, 0, 3534, 3535, 5, 73, 0, 0, 3535, 3536, 5, 84, 0, 0, 3536, 3537, 5, 72, 0, 0, 3537, 738, 1, 0, 0, 0, 3538, 3539, 5, 87, 0, 0, 3539, 3540, 5, 73, 0, 0, 3540, 3541, 5, 84, 0, 0, 3541, 3542, 5, 72, 0, 0, 3542, 3543, 5, 73, 0, 0, 3543, 3544, 5, 78, 0, 0, 3544, 740, 1, 0, 0, 0, 3545, 3546, 5, 87, 0, 0, 3546, 3547, 5, 73, 0, 0, 3547, 3548, 5, 84, 0, 0, 3548, 3549, 5, 72, 0, 0, 3549, 3550, 5, 79, 0, 0, 3550, 3551, 5, 85, 0, 0, 3551, 3552, 5, 84, 0, 0, 3552, 742, 1, 0, 0, 0, 3553, 3554, 5, 89, 0, 0, 3554, 3555, 5, 69, 0, 0, 3555, 3556, 5, 65, 0, 0, 3556, 3557, 5, 82, 0, 0, 3557, 744, 1, 0, 0, 0, 3558, 3559, 5, 61, 0, 0, 3559, 746, 1, 0, 0, 0, 3560, 3561, 5, 62, 0, 0, 3561, 748, 1, 0, 0, 0, 3562, 3563, 5, 60, 0, 0, 3563, 750, 1, 0, 0, 0, 3564, 3565, 5, 33, 0, 0, 3565, 752, 1, 0, 0, 0, 3566, 3567, 5, 126, 0, 0, 3567, 754, 1, 0, 0, 0, 3568, 3569, 5, 124, 0, 0, 3569, 756, 1, 0, 0, 0, 3570, 3571, 5, 38, 0, 0, 3571, 758, 1, 0, 0, 0, 3572, 3573, 5, 94, 0, 0, 3573, 760, 1, 0, 0, 0, 3574, 3575, 5, 46, 0, 0, 3575, 762, 1, 0, 0, 0, 3576, 3577, 5, 91, 0, 0, 3577, 764, 1, 0, 0, 0, 3578, 3579, 5, 93, 0, 0, 3579, 766, 1, 0, 0, 0, 3580, 3581, 5, 40, 0, 0, 3581, 768, 1, 0, 0, 0, 3582, 3583, 5, 41, 0, 0, 3583, 770, 1, 0, 0, 0, 3584, 3585, 5, 123, 0, 0, 3585, 772, 1, 0, 0, 0, 3586, 3587, 5, 125, 0, 0, 3587, 774, 1, 0, 0, 0, 3588, 3589, 5, 44, 0, 0, 3589, 776, 1, 0, 0, 0, 3590, 3591, 5, 59, 0, 0, 3591, 778, 1, 0, 0, 0, 3592, 3593, 5, 64, 0, 0, 3593, 780, 1, 0, 0, 0, 3594, 3595, 5, 39, 0, 0, 3595, 782, 1, 0, 0, 0, 3596, 3597, 5, 34, 0, 0, 3597, 784, 1, 0, 0, 0, 3598, 3599, 5, 96, 0, 0, 3599, 786, 1, 0, 0, 0, 3600, 3601, 5, 58, 0, 0, 3601, 788, 1, 0, 0, 0, 3602, 3603, 5, 42, 0, 0, 3603, 790, 1, 0, 0, 0, 3604, 3605, 5, 95, 0, 0, 3605, 792, 1, 0, 0, 0, 3606, 3607, 5, 45, 0, 0, 3607, 794, 1, 0, 0, 0, 3608, 3609, 5, 43, 0, 0, 3609, 796, 1, 0, 0, 0, 3610, 3611, 5, 37, 0, 0, 3611, 798, 1, 0, 0, 0, 3612, 3613, 5, 124, 0, 0, 3613, 3614, 5, 124, 0, 0, 3614, 800, 1, 0, 0, 0, 3615, 3616, 5, 45, 0, 0, 3616, 3617, 5, 45, 0, 0, 3617, 802, 1, 0, 0, 0, 3618, 3619, 5, 47, 0, 0, 3619, 804, 1, 0, 0, 0, 3620, 3621, 5, 63, 0, 0, 3621, 806, 1, 0, 0, 0, 3622, 3623, 5, 61, 0, 0, 3623, 3624, 5, 62, 0, 0, 3624, 808, 1, 0, 0, 0, 3625, 3629, 3, 833, 416, 0, 3626, 3629, 3, 835, 417, 0, 3627, 3629, 3, 839, 419, 0, 3628, 3625, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3627, 1, 0, 0, 0, 3629, 810, 1, 0, 0, 0, 3630, 3632, 3, 829, 414, 0, 3631, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 812, 1, 0, 0, 0, 3635, 3637, 3, 829, 414, 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, 3641, 1, 0, 0, 0, 3640, 3636, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3644, 5, 46, 0, 0, 3643, 3645, 3, 829, 414, 0, 3644, 3643, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3679, 1, 0, 0, 0, 3648, 3650, 3, 829, 414, 0, 3649, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3649, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 5, 46, 0, 0, 3654, 3655, 3, 825, 412, 0, 3655, 3679, 1, 0, 0, 0, 3656, 3658, 3, 829, 414, 0, 3657, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3657, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 5, 46, 0, 0, 3664, 3666, 3, 829, 414, 0, 3665, 3664, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 3, 825, 412, 0, 3670, 3679, 1, 0, 0, 0, 3671, 3673, 3, 829, 414, 0, 3672, 3671, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3672, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3677, 3, 825, 412, 0, 3677, 3679, 1, 0, 0, 0, 3678, 3640, 1, 0, 0, 0, 3678, 3649, 1, 0, 0, 0, 3678, 3661, 1, 0, 0, 0, 3678, 3672, 1, 0, 0, 0, 3679, 814, 1, 0, 0, 0, 3680, 3681, 3, 837, 418, 0, 3681, 816, 1, 0, 0, 0, 3682, 3683, 3, 827, 413, 0, 3683, 818, 1, 0, 0, 0, 3684, 3685, 3, 821, 410, 0, 3685, 820, 1, 0, 0, 0, 3686, 3690, 7, 2, 0, 0, 3687, 3689, 8, 3, 0, 0, 3688, 3687, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 822, 1, 0, 0, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3701, 5, 96, 0, 0, 3694, 3695, 5, 92, 0, 0, 3695, 3700, 9, 0, 0, 0, 3696, 3697, 5, 96, 0, 0, 3697, 3700, 5, 96, 0, 0, 3698, 3700, 8, 4, 0, 0, 3699, 3694, 1, 0, 0, 0, 3699, 3696, 1, 0, 0, 0, 3699, 3698, 1, 0, 0, 0, 3700, 3703, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3704, 1, 0, 0, 0, 3703, 3701, 1, 0, 0, 0, 3704, 3705, 5, 96, 0, 0, 3705, 824, 1, 0, 0, 0, 3706, 3708, 5, 69, 0, 0, 3707, 3709, 7, 5, 0, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3711, 1, 0, 0, 0, 3710, 3712, 3, 829, 414, 0, 3711, 3710, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 826, 1, 0, 0, 0, 3715, 3717, 7, 6, 0, 0, 3716, 3715, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3723, 7, 7, 0, 0, 3722, 3721, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3725, 3729, 1, 0, 0, 0, 3726, 3728, 7, 6, 0, 0, 3727, 3726, 1, 0, 0, 0, 3728, 3731, 1, 0, 0, 0, 3729, 3727, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 828, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3732, 3733, 7, 8, 0, 0, 3733, 830, 1, 0, 0, 0, 3734, 3735, 7, 9, 0, 0, 3735, 832, 1, 0, 0, 0, 3736, 3744, 5, 34, 0, 0, 3737, 3738, 5, 92, 0, 0, 3738, 3743, 9, 0, 0, 0, 3739, 3740, 5, 34, 0, 0, 3740, 3743, 5, 34, 0, 0, 3741, 3743, 8, 10, 0, 0, 3742, 3737, 1, 0, 0, 0, 3742, 3739, 1, 0, 0, 0, 3742, 3741, 1, 0, 0, 0, 3743, 3746, 1, 0, 0, 0, 3744, 3742, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3747, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3747, 3748, 5, 34, 0, 0, 3748, 834, 1, 0, 0, 0, 3749, 3757, 5, 39, 0, 0, 3750, 3751, 5, 92, 0, 0, 3751, 3756, 9, 0, 0, 0, 3752, 3753, 5, 39, 0, 0, 3753, 3756, 5, 39, 0, 0, 3754, 3756, 8, 11, 0, 0, 3755, 3750, 1, 0, 0, 0, 3755, 3752, 1, 0, 0, 0, 3755, 3754, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3755, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3760, 1, 0, 0, 0, 3759, 3757, 1, 0, 0, 0, 3760, 3761, 5, 39, 0, 0, 3761, 836, 1, 0, 0, 0, 3762, 3763, 5, 66, 0, 0, 3763, 3765, 5, 39, 0, 0, 3764, 3766, 7, 12, 0, 0, 3765, 3764, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 3765, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3770, 5, 39, 0, 0, 3770, 838, 1, 0, 0, 0, 3771, 3779, 5, 96, 0, 0, 3772, 3773, 5, 92, 0, 0, 3773, 3778, 9, 0, 0, 0, 3774, 3775, 5, 96, 0, 0, 3775, 3778, 5, 96, 0, 0, 3776, 3778, 8, 4, 0, 0, 3777, 3772, 1, 0, 0, 0, 3777, 3774, 1, 0, 0, 0, 3777, 3776, 1, 0, 0, 0, 3778, 3781, 1, 0, 0, 0, 3779, 3777, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 1, 0, 0, 0, 3781, 3779, 1, 0, 0, 0, 3782, 3783, 5, 96, 0, 0, 3783, 840, 1, 0, 0, 0, 36, 0, 844, 854, 865, 870, 874, 878, 884, 888, 890, 3628, 3633, 3638, 3640, 3646, 3651, 3659, 3661, 3667, 3674, 3678, 3690, 3699, 3701, 3708, 3713, 3718, 3724, 3729, 3742, 3744, 3755, 3757, 3767, 3777, 3779, 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 d545b67..a488f5e 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -407,7 +407,7 @@ DIG_LITERAL=406 REAL_LITERAL=407 BIT_STRING=408 ID_LITERAL=409 -FILE_PATH=410 +SLASH_TEXT=410 'ADD'=4 'ADMIN'=5 'AFTER'=6 diff --git a/src/lib/flinksql/FlinkSqlLexer.ts b/src/lib/flinksql/FlinkSqlLexer.ts index fce2fb7..d50d58b 100644 --- a/src/lib/flinksql/FlinkSqlLexer.ts +++ b/src/lib/flinksql/FlinkSqlLexer.ts @@ -421,7 +421,7 @@ export default class FlinkSqlLexer extends Lexer { public static readonly REAL_LITERAL = 407; public static readonly BIT_STRING = 408; public static readonly ID_LITERAL = 409; - public static readonly FILE_PATH = 410; + public static readonly SLASH_TEXT = 410; public static readonly EOF = Token.EOF; public static readonly channelNames: string[] = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; @@ -822,7 +822,7 @@ export default class FlinkSqlLexer extends Lexer { "DOUBLE_RIGHT_ARROW", "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", - "ID_LITERAL", "FILE_PATH" ]; + "ID_LITERAL", "SLASH_TEXT" ]; public static readonly modeNames: string[] = [ "DEFAULT_MODE", ]; public static readonly ruleNames: string[] = [ @@ -897,7 +897,7 @@ export default class FlinkSqlLexer extends Lexer { "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL", - "FILE_PATH", "FILE_PATH_STRING", "JAR_FILE_PARTTARN", "EXPONENT_NUM_PART", + "SLASH_TEXT", "SLASH_TEXT_FRAG", "JAR_FILE_PARTTARN", "EXPONENT_NUM_PART", "ID_LITERAL_FRAG", "DEC_DIGIT", "DEC_LETTER", "DQUOTA_STRING", "SQUOTA_STRING", "BIT_STRING_L", "BQUOTA_STRING", ]; @@ -920,7 +920,7 @@ export default class FlinkSqlLexer extends Lexer { public get modeNames(): string[] { return FlinkSqlLexer.modeNames; } - public static readonly _serializedATN: number[] = [4,0,410,3788,6,-1,2, + public static readonly _serializedATN: number[] = [4,0,410,3784,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, @@ -1214,1012 +1214,1010 @@ export default class FlinkSqlLexer extends Lexer { 1,406,4,406,3658,8,406,11,406,12,406,3659,3,406,3662,8,406,1,406,1,406, 4,406,3666,8,406,11,406,12,406,3667,1,406,1,406,1,406,4,406,3673,8,406, 11,406,12,406,3674,1,406,1,406,3,406,3679,8,406,1,407,1,407,1,408,1,408, - 1,409,1,409,1,410,1,410,5,410,3689,8,410,10,410,12,410,3692,9,410,4,410, - 3694,8,410,11,410,12,410,3695,1,411,1,411,1,411,1,411,1,411,1,411,5,411, - 3704,8,411,10,411,12,411,3707,9,411,1,411,1,411,1,412,1,412,3,412,3713, - 8,412,1,412,4,412,3716,8,412,11,412,12,412,3717,1,413,5,413,3721,8,413, - 10,413,12,413,3724,9,413,1,413,4,413,3727,8,413,11,413,12,413,3728,1,413, - 5,413,3732,8,413,10,413,12,413,3735,9,413,1,414,1,414,1,415,1,415,1,416, - 1,416,1,416,1,416,1,416,1,416,5,416,3747,8,416,10,416,12,416,3750,9,416, - 1,416,1,416,1,417,1,417,1,417,1,417,1,417,1,417,5,417,3760,8,417,10,417, - 12,417,3763,9,417,1,417,1,417,1,418,1,418,1,418,4,418,3770,8,418,11,418, - 12,418,3771,1,418,1,418,1,419,1,419,1,419,1,419,1,419,1,419,5,419,3782, - 8,419,10,419,12,419,3785,9,419,1,419,1,419,3,854,3722,3728,0,420,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,408,817,409,819, - 410,821,0,823,0,825,0,827,0,829,0,831,0,833,0,835,0,837,0,839,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,3820,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,0,815,1,0,0,0,0,817,1,0,0,0,0,819,1,0,0,0,1, - 842,1,0,0,0,3,848,1,0,0,0,5,890,1,0,0,0,7,894,1,0,0,0,9,898,1,0,0,0,11, - 904,1,0,0,0,13,910,1,0,0,0,15,918,1,0,0,0,17,922,1,0,0,0,19,929,1,0,0,0, - 21,935,1,0,0,0,23,943,1,0,0,0,25,951,1,0,0,0,27,960,1,0,0,0,29,968,1,0, - 0,0,31,974,1,0,0,0,33,989,1,0,0,0,35,1000,1,0,0,0,37,1008,1,0,0,0,39,1016, - 1,0,0,0,41,1024,1,0,0,0,43,1036,1,0,0,0,45,1048,1,0,0,0,47,1057,1,0,0,0, - 49,1062,1,0,0,0,51,1071,1,0,0,0,53,1081,1,0,0,0,55,1086,1,0,0,0,57,1093, - 1,0,0,0,59,1101,1,0,0,0,61,1106,1,0,0,0,63,1117,1,0,0,0,65,1121,1,0,0,0, - 67,1130,1,0,0,0,69,1139,1,0,0,0,71,1146,1,0,0,0,73,1152,1,0,0,0,75,1158, - 1,0,0,0,77,1173,1,0,0,0,79,1183,1,0,0,0,81,1191,1,0,0,0,83,1201,1,0,0,0, - 85,1210,1,0,0,0,87,1215,1,0,0,0,89,1221,1,0,0,0,91,1227,1,0,0,0,93,1237, - 1,0,0,0,95,1244,1,0,0,0,97,1252,1,0,0,0,99,1258,1,0,0,0,101,1270,1,0,0, - 0,103,1280,1,0,0,0,105,1288,1,0,0,0,107,1298,1,0,0,0,109,1301,1,0,0,0,111, - 1306,1,0,0,0,113,1314,1,0,0,0,115,1318,1,0,0,0,117,1324,1,0,0,0,119,1327, - 1,0,0,0,121,1334,1,0,0,0,123,1344,1,0,0,0,125,1350,1,0,0,0,127,1358,1,0, - 0,0,129,1362,1,0,0,0,131,1367,1,0,0,0,133,1372,1,0,0,0,135,1377,1,0,0,0, - 137,1397,1,0,0,0,139,1401,1,0,0,0,141,1412,1,0,0,0,143,1421,1,0,0,0,145, - 1427,1,0,0,0,147,1432,1,0,0,0,149,1439,1,0,0,0,151,1445,1,0,0,0,153,1450, - 1,0,0,0,155,1454,1,0,0,0,157,1466,1,0,0,0,159,1477,1,0,0,0,161,1489,1,0, - 0,0,163,1497,1,0,0,0,165,1506,1,0,0,0,167,1513,1,0,0,0,169,1521,1,0,0,0, - 171,1528,1,0,0,0,173,1539,1,0,0,0,175,1545,1,0,0,0,177,1552,1,0,0,0,179, - 1559,1,0,0,0,181,1567,1,0,0,0,183,1576,1,0,0,0,185,1583,1,0,0,0,187,1593, - 1,0,0,0,189,1605,1,0,0,0,191,1617,1,0,0,0,193,1628,1,0,0,0,195,1636,1,0, - 0,0,197,1641,1,0,0,0,199,1646,1,0,0,0,201,1654,1,0,0,0,203,1659,1,0,0,0, - 205,1669,1,0,0,0,207,1678,1,0,0,0,209,1684,1,0,0,0,211,1695,1,0,0,0,213, - 1702,1,0,0,0,215,1709,1,0,0,0,217,1722,1,0,0,0,219,1742,1,0,0,0,221,1762, - 1,0,0,0,223,1773,1,0,0,0,225,1789,1,0,0,0,227,1806,1,0,0,0,229,1814,1,0, - 0,0,231,1818,1,0,0,0,233,1823,1,0,0,0,235,1832,1,0,0,0,237,1839,1,0,0,0, - 239,1846,1,0,0,0,241,1854,1,0,0,0,243,1862,1,0,0,0,245,1870,1,0,0,0,247, - 1879,1,0,0,0,249,1884,1,0,0,0,251,1894,1,0,0,0,253,1900,1,0,0,0,255,1907, - 1,0,0,0,257,1913,1,0,0,0,259,1920,1,0,0,0,261,1928,1,0,0,0,263,1936,1,0, - 0,0,265,1945,1,0,0,0,267,1950,1,0,0,0,269,1957,1,0,0,0,271,1969,1,0,0,0, - 273,1977,1,0,0,0,275,1982,1,0,0,0,277,1989,1,0,0,0,279,1994,1,0,0,0,281, - 2000,1,0,0,0,283,2007,1,0,0,0,285,2013,1,0,0,0,287,2019,1,0,0,0,289,2029, - 1,0,0,0,291,2034,1,0,0,0,293,2041,1,0,0,0,295,2051,1,0,0,0,297,2057,1,0, - 0,0,299,2064,1,0,0,0,301,2074,1,0,0,0,303,2082,1,0,0,0,305,2096,1,0,0,0, - 307,2109,1,0,0,0,309,2123,1,0,0,0,311,2133,1,0,0,0,313,2140,1,0,0,0,315, - 2145,1,0,0,0,317,2151,1,0,0,0,319,2158,1,0,0,0,321,2164,1,0,0,0,323,2168, - 1,0,0,0,325,2174,1,0,0,0,327,2180,1,0,0,0,329,2185,1,0,0,0,331,2193,1,0, - 0,0,333,2198,1,0,0,0,335,2204,1,0,0,0,337,2212,1,0,0,0,339,2222,1,0,0,0, - 341,2233,1,0,0,0,343,2238,1,0,0,0,345,2244,1,0,0,0,347,2249,1,0,0,0,349, - 2257,1,0,0,0,351,2263,1,0,0,0,353,2268,1,0,0,0,355,2272,1,0,0,0,357,2276, - 1,0,0,0,359,2282,1,0,0,0,361,2288,1,0,0,0,363,2292,1,0,0,0,365,2296,1,0, - 0,0,367,2300,1,0,0,0,369,2306,1,0,0,0,371,2309,1,0,0,0,373,2320,1,0,0,0, - 375,2323,1,0,0,0,377,2327,1,0,0,0,379,2333,1,0,0,0,381,2341,1,0,0,0,383, - 2348,1,0,0,0,385,2355,1,0,0,0,387,2359,1,0,0,0,389,2364,1,0,0,0,391,2372, - 1,0,0,0,393,2377,1,0,0,0,395,2380,1,0,0,0,397,2385,1,0,0,0,399,2392,1,0, - 0,0,401,2401,1,0,0,0,403,2406,1,0,0,0,405,2411,1,0,0,0,407,2416,1,0,0,0, - 409,2421,1,0,0,0,411,2431,1,0,0,0,413,2437,1,0,0,0,415,2442,1,0,0,0,417, - 2448,1,0,0,0,419,2457,1,0,0,0,421,2465,1,0,0,0,423,2473,1,0,0,0,425,2480, - 1,0,0,0,427,2487,1,0,0,0,429,2495,1,0,0,0,431,2506,1,0,0,0,433,2515,1,0, - 0,0,435,2523,1,0,0,0,437,2529,1,0,0,0,439,2536,1,0,0,0,441,2542,1,0,0,0, - 443,2547,1,0,0,0,445,2555,1,0,0,0,447,2562,1,0,0,0,449,2568,1,0,0,0,451, - 2573,1,0,0,0,453,2582,1,0,0,0,455,2586,1,0,0,0,457,2590,1,0,0,0,459,2598, - 1,0,0,0,461,2606,1,0,0,0,463,2614,1,0,0,0,465,2621,1,0,0,0,467,2628,1,0, - 0,0,469,2637,1,0,0,0,471,2646,1,0,0,0,473,2653,1,0,0,0,475,2658,1,0,0,0, - 477,2663,1,0,0,0,479,2668,1,0,0,0,481,2672,1,0,0,0,483,2679,1,0,0,0,485, - 2686,1,0,0,0,487,2693,1,0,0,0,489,2701,1,0,0,0,491,2708,1,0,0,0,493,2716, - 1,0,0,0,495,2725,1,0,0,0,497,2733,1,0,0,0,499,2739,1,0,0,0,501,2745,1,0, - 0,0,503,2749,1,0,0,0,505,2754,1,0,0,0,507,2759,1,0,0,0,509,2768,1,0,0,0, - 511,2775,1,0,0,0,513,2781,1,0,0,0,515,2787,1,0,0,0,517,2796,1,0,0,0,519, - 2803,1,0,0,0,521,2810,1,0,0,0,523,2815,1,0,0,0,525,2822,1,0,0,0,527,2825, - 1,0,0,0,529,2835,1,0,0,0,531,2841,1,0,0,0,533,2847,1,0,0,0,535,2854,1,0, - 0,0,537,2858,1,0,0,0,539,2866,1,0,0,0,541,2876,1,0,0,0,543,2885,1,0,0,0, - 545,2890,1,0,0,0,547,2893,1,0,0,0,549,2898,1,0,0,0,551,2902,1,0,0,0,553, - 2911,1,0,0,0,555,2919,1,0,0,0,557,2927,1,0,0,0,559,2932,1,0,0,0,561,2937, - 1,0,0,0,563,2943,1,0,0,0,565,2949,1,0,0,0,567,2955,1,0,0,0,569,2971,1,0, - 0,0,571,2980,1,0,0,0,573,2986,1,0,0,0,575,2995,1,0,0,0,577,3001,1,0,0,0, - 579,3008,1,0,0,0,581,3017,1,0,0,0,583,3024,1,0,0,0,585,3030,1,0,0,0,587, - 3039,1,0,0,0,589,3047,1,0,0,0,591,3052,1,0,0,0,593,3055,1,0,0,0,595,3060, - 1,0,0,0,597,3064,1,0,0,0,599,3069,1,0,0,0,601,3077,1,0,0,0,603,3080,1,0, - 0,0,605,3087,1,0,0,0,607,3090,1,0,0,0,609,3094,1,0,0,0,611,3097,1,0,0,0, - 613,3103,1,0,0,0,615,3107,1,0,0,0,617,3113,1,0,0,0,619,3118,1,0,0,0,621, - 3126,1,0,0,0,623,3136,1,0,0,0,625,3144,1,0,0,0,627,3148,1,0,0,0,629,3156, - 1,0,0,0,631,3163,1,0,0,0,633,3172,1,0,0,0,635,3178,1,0,0,0,637,3186,1,0, - 0,0,639,3192,1,0,0,0,641,3197,1,0,0,0,643,3203,1,0,0,0,645,3210,1,0,0,0, - 647,3216,1,0,0,0,649,3222,1,0,0,0,651,3231,1,0,0,0,653,3238,1,0,0,0,655, - 3242,1,0,0,0,657,3247,1,0,0,0,659,3254,1,0,0,0,661,3261,1,0,0,0,663,3265, - 1,0,0,0,665,3270,1,0,0,0,667,3278,1,0,0,0,669,3283,1,0,0,0,671,3292,1,0, - 0,0,673,3298,1,0,0,0,675,3305,1,0,0,0,677,3315,1,0,0,0,679,3319,1,0,0,0, - 681,3329,1,0,0,0,683,3336,1,0,0,0,685,3348,1,0,0,0,687,3360,1,0,0,0,689, - 3366,1,0,0,0,691,3378,1,0,0,0,693,3383,1,0,0,0,695,3388,1,0,0,0,697,3398, - 1,0,0,0,699,3406,1,0,0,0,701,3409,1,0,0,0,703,3418,1,0,0,0,705,3423,1,0, - 0,0,707,3432,1,0,0,0,709,3438,1,0,0,0,711,3445,1,0,0,0,713,3453,1,0,0,0, - 715,3460,1,0,0,0,717,3466,1,0,0,0,719,3473,1,0,0,0,721,3478,1,0,0,0,723, - 3484,1,0,0,0,725,3490,1,0,0,0,727,3497,1,0,0,0,729,3507,1,0,0,0,731,3515, - 1,0,0,0,733,3520,1,0,0,0,735,3526,1,0,0,0,737,3533,1,0,0,0,739,3538,1,0, - 0,0,741,3545,1,0,0,0,743,3553,1,0,0,0,745,3558,1,0,0,0,747,3560,1,0,0,0, - 749,3562,1,0,0,0,751,3564,1,0,0,0,753,3566,1,0,0,0,755,3568,1,0,0,0,757, - 3570,1,0,0,0,759,3572,1,0,0,0,761,3574,1,0,0,0,763,3576,1,0,0,0,765,3578, - 1,0,0,0,767,3580,1,0,0,0,769,3582,1,0,0,0,771,3584,1,0,0,0,773,3586,1,0, - 0,0,775,3588,1,0,0,0,777,3590,1,0,0,0,779,3592,1,0,0,0,781,3594,1,0,0,0, - 783,3596,1,0,0,0,785,3598,1,0,0,0,787,3600,1,0,0,0,789,3602,1,0,0,0,791, - 3604,1,0,0,0,793,3606,1,0,0,0,795,3608,1,0,0,0,797,3610,1,0,0,0,799,3612, - 1,0,0,0,801,3615,1,0,0,0,803,3618,1,0,0,0,805,3620,1,0,0,0,807,3622,1,0, - 0,0,809,3628,1,0,0,0,811,3631,1,0,0,0,813,3678,1,0,0,0,815,3680,1,0,0,0, - 817,3682,1,0,0,0,819,3684,1,0,0,0,821,3693,1,0,0,0,823,3697,1,0,0,0,825, - 3710,1,0,0,0,827,3722,1,0,0,0,829,3736,1,0,0,0,831,3738,1,0,0,0,833,3740, - 1,0,0,0,835,3753,1,0,0,0,837,3766,1,0,0,0,839,3775,1,0,0,0,841,843,7,0, - 0,0,842,841,1,0,0,0,843,844,1,0,0,0,844,842,1,0,0,0,844,845,1,0,0,0,845, - 846,1,0,0,0,846,847,6,0,0,0,847,2,1,0,0,0,848,849,5,47,0,0,849,850,5,42, - 0,0,850,854,1,0,0,0,851,853,9,0,0,0,852,851,1,0,0,0,853,856,1,0,0,0,854, - 855,1,0,0,0,854,852,1,0,0,0,855,857,1,0,0,0,856,854,1,0,0,0,857,858,5,42, - 0,0,858,859,5,47,0,0,859,860,1,0,0,0,860,861,6,1,0,0,861,4,1,0,0,0,862, - 863,5,45,0,0,863,866,5,45,0,0,864,866,5,35,0,0,865,862,1,0,0,0,865,864, - 1,0,0,0,866,870,1,0,0,0,867,869,8,1,0,0,868,867,1,0,0,0,869,872,1,0,0,0, - 870,868,1,0,0,0,870,871,1,0,0,0,871,878,1,0,0,0,872,870,1,0,0,0,873,875, - 5,13,0,0,874,873,1,0,0,0,874,875,1,0,0,0,875,876,1,0,0,0,876,879,5,10,0, - 0,877,879,5,0,0,1,878,874,1,0,0,0,878,877,1,0,0,0,879,891,1,0,0,0,880,881, - 5,45,0,0,881,882,5,45,0,0,882,888,1,0,0,0,883,885,5,13,0,0,884,883,1,0, - 0,0,884,885,1,0,0,0,885,886,1,0,0,0,886,889,5,10,0,0,887,889,5,0,0,1,888, - 884,1,0,0,0,888,887,1,0,0,0,889,891,1,0,0,0,890,865,1,0,0,0,890,880,1,0, - 0,0,891,892,1,0,0,0,892,893,6,2,0,0,893,6,1,0,0,0,894,895,5,65,0,0,895, - 896,5,68,0,0,896,897,5,68,0,0,897,8,1,0,0,0,898,899,5,65,0,0,899,900,5, - 68,0,0,900,901,5,77,0,0,901,902,5,73,0,0,902,903,5,78,0,0,903,10,1,0,0, - 0,904,905,5,65,0,0,905,906,5,70,0,0,906,907,5,84,0,0,907,908,5,69,0,0,908, - 909,5,82,0,0,909,12,1,0,0,0,910,911,5,65,0,0,911,912,5,78,0,0,912,913,5, - 65,0,0,913,914,5,76,0,0,914,915,5,89,0,0,915,916,5,90,0,0,916,917,5,69, - 0,0,917,14,1,0,0,0,918,919,5,65,0,0,919,920,5,83,0,0,920,921,5,67,0,0,921, - 16,1,0,0,0,922,923,5,66,0,0,923,924,5,69,0,0,924,925,5,70,0,0,925,926,5, - 79,0,0,926,927,5,82,0,0,927,928,5,69,0,0,928,18,1,0,0,0,929,930,5,66,0, - 0,930,931,5,89,0,0,931,932,5,84,0,0,932,933,5,69,0,0,933,934,5,83,0,0,934, - 20,1,0,0,0,935,936,5,67,0,0,936,937,5,65,0,0,937,938,5,83,0,0,938,939,5, - 67,0,0,939,940,5,65,0,0,940,941,5,68,0,0,941,942,5,69,0,0,942,22,1,0,0, - 0,943,944,5,67,0,0,944,945,5,65,0,0,945,946,5,84,0,0,946,947,5,65,0,0,947, - 948,5,76,0,0,948,949,5,79,0,0,949,950,5,71,0,0,950,24,1,0,0,0,951,952,5, - 67,0,0,952,953,5,65,0,0,953,954,5,84,0,0,954,955,5,65,0,0,955,956,5,76, - 0,0,956,957,5,79,0,0,957,958,5,71,0,0,958,959,5,83,0,0,959,26,1,0,0,0,960, - 961,5,67,0,0,961,962,5,69,0,0,962,963,5,78,0,0,963,964,5,84,0,0,964,965, - 5,85,0,0,965,966,5,82,0,0,966,967,5,89,0,0,967,28,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,73,0,0,972,973,5,78,0,0, - 973,30,1,0,0,0,974,975,5,67,0,0,975,976,5,72,0,0,976,977,5,65,0,0,977,978, - 5,78,0,0,978,979,5,71,0,0,979,980,5,69,0,0,980,981,5,76,0,0,981,982,5,79, - 0,0,982,983,5,71,0,0,983,984,5,95,0,0,984,985,5,77,0,0,985,986,5,79,0,0, - 986,987,5,68,0,0,987,988,5,69,0,0,988,32,1,0,0,0,989,990,5,67,0,0,990,991, - 5,72,0,0,991,992,5,65,0,0,992,993,5,82,0,0,993,994,5,65,0,0,994,995,5,67, - 0,0,995,996,5,84,0,0,996,997,5,69,0,0,997,998,5,82,0,0,998,999,5,83,0,0, - 999,34,1,0,0,0,1000,1001,5,67,0,0,1001,1002,5,79,0,0,1002,1003,5,77,0,0, - 1003,1004,5,77,0,0,1004,1005,5,69,0,0,1005,1006,5,78,0,0,1006,1007,5,84, - 0,0,1007,36,1,0,0,0,1008,1009,5,67,0,0,1009,1010,5,79,0,0,1010,1011,5,77, - 0,0,1011,1012,5,80,0,0,1012,1013,5,65,0,0,1013,1014,5,67,0,0,1014,1015, - 5,84,0,0,1015,38,1,0,0,0,1016,1017,5,67,0,0,1017,1018,5,79,0,0,1018,1019, - 5,76,0,0,1019,1020,5,85,0,0,1020,1021,5,77,0,0,1021,1022,5,78,0,0,1022, - 1023,5,83,0,0,1023,40,1,0,0,0,1024,1025,5,67,0,0,1025,1026,5,79,0,0,1026, - 1027,5,78,0,0,1027,1028,5,83,0,0,1028,1029,5,84,0,0,1029,1030,5,82,0,0, - 1030,1031,5,65,0,0,1031,1032,5,73,0,0,1032,1033,5,78,0,0,1033,1034,5,84, - 0,0,1034,1035,5,83,0,0,1035,42,1,0,0,0,1036,1037,5,67,0,0,1037,1038,5,79, - 0,0,1038,1039,5,78,0,0,1039,1040,5,83,0,0,1040,1041,5,84,0,0,1041,1042, - 5,82,0,0,1042,1043,5,85,0,0,1043,1044,5,67,0,0,1044,1045,5,84,0,0,1045, - 1046,5,79,0,0,1046,1047,5,82,0,0,1047,44,1,0,0,0,1048,1049,5,67,0,0,1049, - 1050,5,85,0,0,1050,1051,5,77,0,0,1051,1052,5,85,0,0,1052,1053,5,76,0,0, - 1053,1054,5,65,0,0,1054,1055,5,84,0,0,1055,1056,5,69,0,0,1056,46,1,0,0, - 0,1057,1058,5,68,0,0,1058,1059,5,65,0,0,1059,1060,5,84,0,0,1060,1061,5, - 65,0,0,1061,48,1,0,0,0,1062,1063,5,68,0,0,1063,1064,5,65,0,0,1064,1065, - 5,84,0,0,1065,1066,5,65,0,0,1066,1067,5,66,0,0,1067,1068,5,65,0,0,1068, - 1069,5,83,0,0,1069,1070,5,69,0,0,1070,50,1,0,0,0,1071,1072,5,68,0,0,1072, - 1073,5,65,0,0,1073,1074,5,84,0,0,1074,1075,5,65,0,0,1075,1076,5,66,0,0, - 1076,1077,5,65,0,0,1077,1078,5,83,0,0,1078,1079,5,69,0,0,1079,1080,5,83, - 0,0,1080,52,1,0,0,0,1081,1082,5,68,0,0,1082,1083,5,65,0,0,1083,1084,5,89, - 0,0,1084,1085,5,83,0,0,1085,54,1,0,0,0,1086,1087,5,68,0,0,1087,1088,5,69, - 0,0,1088,1089,5,67,0,0,1089,1090,5,65,0,0,1090,1091,5,68,0,0,1091,1092, - 5,69,0,0,1092,56,1,0,0,0,1093,1094,5,68,0,0,1094,1095,5,69,0,0,1095,1096, - 5,70,0,0,1096,1097,5,73,0,0,1097,1098,5,78,0,0,1098,1099,5,69,0,0,1099, - 1100,5,68,0,0,1100,58,1,0,0,0,1101,1102,5,68,0,0,1102,1103,5,69,0,0,1103, - 1104,5,83,0,0,1104,1105,5,67,0,0,1105,60,1,0,0,0,1106,1107,5,68,0,0,1107, - 1108,5,69,0,0,1108,1109,5,83,0,0,1109,1110,5,67,0,0,1110,1111,5,82,0,0, - 1111,1112,5,73,0,0,1112,1113,5,80,0,0,1113,1114,5,84,0,0,1114,1115,5,79, - 0,0,1115,1116,5,82,0,0,1116,62,1,0,0,0,1117,1118,5,68,0,0,1118,1119,5,73, - 0,0,1119,1120,5,86,0,0,1120,64,1,0,0,0,1121,1122,5,69,0,0,1122,1123,5,78, - 0,0,1123,1124,5,67,0,0,1124,1125,5,79,0,0,1125,1126,5,68,0,0,1126,1127, - 5,73,0,0,1127,1128,5,78,0,0,1128,1129,5,71,0,0,1129,66,1,0,0,0,1130,1131, - 5,69,0,0,1131,1132,5,78,0,0,1132,1133,5,70,0,0,1133,1134,5,79,0,0,1134, - 1135,5,82,0,0,1135,1136,5,67,0,0,1136,1137,5,69,0,0,1137,1138,5,68,0,0, - 1138,68,1,0,0,0,1139,1140,5,69,0,0,1140,1141,5,78,0,0,1141,1142,5,71,0, - 0,1142,1143,5,73,0,0,1143,1144,5,78,0,0,1144,1145,5,69,0,0,1145,70,1,0, - 0,0,1146,1147,5,69,0,0,1147,1148,5,80,0,0,1148,1149,5,79,0,0,1149,1150, - 5,67,0,0,1150,1151,5,72,0,0,1151,72,1,0,0,0,1152,1153,5,69,0,0,1153,1154, - 5,82,0,0,1154,1155,5,82,0,0,1155,1156,5,79,0,0,1156,1157,5,82,0,0,1157, - 74,1,0,0,0,1158,1159,5,69,0,0,1159,1160,5,83,0,0,1160,1161,5,84,0,0,1161, - 1162,5,73,0,0,1162,1163,5,77,0,0,1163,1164,5,65,0,0,1164,1165,5,84,0,0, - 1165,1166,5,69,0,0,1166,1167,5,68,0,0,1167,1168,5,95,0,0,1168,1169,5,67, - 0,0,1169,1170,5,79,0,0,1170,1171,5,83,0,0,1171,1172,5,84,0,0,1172,76,1, - 0,0,0,1173,1174,5,69,0,0,1174,1175,5,88,0,0,1175,1176,5,67,0,0,1176,1177, - 5,69,0,0,1177,1178,5,80,0,0,1178,1179,5,84,0,0,1179,1180,5,73,0,0,1180, - 1181,5,79,0,0,1181,1182,5,78,0,0,1182,78,1,0,0,0,1183,1184,5,69,0,0,1184, - 1185,5,88,0,0,1185,1186,5,67,0,0,1186,1187,5,76,0,0,1187,1188,5,85,0,0, - 1188,1189,5,68,0,0,1189,1190,5,69,0,0,1190,80,1,0,0,0,1191,1192,5,69,0, - 0,1192,1193,5,88,0,0,1193,1194,5,67,0,0,1194,1195,5,76,0,0,1195,1196,5, - 85,0,0,1196,1197,5,68,0,0,1197,1198,5,73,0,0,1198,1199,5,78,0,0,1199,1200, - 5,71,0,0,1200,82,1,0,0,0,1201,1202,5,69,0,0,1202,1203,5,88,0,0,1203,1204, - 5,84,0,0,1204,1205,5,69,0,0,1205,1206,5,78,0,0,1206,1207,5,68,0,0,1207, - 1208,5,69,0,0,1208,1209,5,68,0,0,1209,84,1,0,0,0,1210,1211,5,70,0,0,1211, - 1212,5,73,0,0,1212,1213,5,76,0,0,1213,1214,5,69,0,0,1214,86,1,0,0,0,1215, - 1216,5,70,0,0,1216,1217,5,73,0,0,1217,1218,5,78,0,0,1218,1219,5,65,0,0, - 1219,1220,5,76,0,0,1220,88,1,0,0,0,1221,1222,5,70,0,0,1222,1223,5,73,0, - 0,1223,1224,5,82,0,0,1224,1225,5,83,0,0,1225,1226,5,84,0,0,1226,90,1,0, - 0,0,1227,1228,5,70,0,0,1228,1229,5,79,0,0,1229,1230,5,76,0,0,1230,1231, - 5,76,0,0,1231,1232,5,79,0,0,1232,1233,5,87,0,0,1233,1234,5,73,0,0,1234, - 1235,5,78,0,0,1235,1236,5,71,0,0,1236,92,1,0,0,0,1237,1238,5,70,0,0,1238, - 1239,5,79,0,0,1239,1240,5,82,0,0,1240,1241,5,77,0,0,1241,1242,5,65,0,0, - 1242,1243,5,84,0,0,1243,94,1,0,0,0,1244,1245,5,70,0,0,1245,1246,5,79,0, - 0,1246,1247,5,82,0,0,1247,1248,5,84,0,0,1248,1249,5,82,0,0,1249,1250,5, - 65,0,0,1250,1251,5,78,0,0,1251,96,1,0,0,0,1252,1253,5,70,0,0,1253,1254, - 5,79,0,0,1254,1255,5,85,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,82,0,0,1260,1261,5,65,0,0,1261, - 1262,5,67,0,0,1262,1263,5,95,0,0,1263,1264,5,83,0,0,1264,1265,5,69,0,0, - 1265,1266,5,67,0,0,1266,1267,5,79,0,0,1267,1268,5,78,0,0,1268,1269,5,68, - 0,0,1269,100,1,0,0,0,1270,1271,5,70,0,0,1271,1272,5,85,0,0,1272,1273,5, - 78,0,0,1273,1274,5,67,0,0,1274,1275,5,84,0,0,1275,1276,5,73,0,0,1276,1277, - 5,79,0,0,1277,1278,5,78,0,0,1278,1279,5,83,0,0,1279,102,1,0,0,0,1280,1281, - 5,71,0,0,1281,1282,5,69,0,0,1282,1283,5,78,0,0,1283,1284,5,69,0,0,1284, - 1285,5,82,0,0,1285,1286,5,65,0,0,1286,1287,5,76,0,0,1287,104,1,0,0,0,1288, - 1289,5,71,0,0,1289,1290,5,69,0,0,1290,1291,5,78,0,0,1291,1292,5,69,0,0, - 1292,1293,5,82,0,0,1293,1294,5,65,0,0,1294,1295,5,84,0,0,1295,1296,5,69, - 0,0,1296,1297,5,68,0,0,1297,106,1,0,0,0,1298,1299,5,71,0,0,1299,1300,5, - 79,0,0,1300,108,1,0,0,0,1301,1302,5,71,0,0,1302,1303,5,79,0,0,1303,1304, - 5,84,0,0,1304,1305,5,79,0,0,1305,110,1,0,0,0,1306,1307,5,71,0,0,1307,1308, - 5,82,0,0,1308,1309,5,65,0,0,1309,1310,5,78,0,0,1310,1311,5,84,0,0,1311, - 1312,5,69,0,0,1312,1313,5,68,0,0,1313,112,1,0,0,0,1314,1315,5,72,0,0,1315, - 1316,5,79,0,0,1316,1317,5,80,0,0,1317,114,1,0,0,0,1318,1319,5,72,0,0,1319, - 1320,5,79,0,0,1320,1321,5,85,0,0,1321,1322,5,82,0,0,1322,1323,5,83,0,0, - 1323,116,1,0,0,0,1324,1325,5,73,0,0,1325,1326,5,70,0,0,1326,118,1,0,0,0, - 1327,1328,5,73,0,0,1328,1329,5,71,0,0,1329,1330,5,78,0,0,1330,1331,5,79, - 0,0,1331,1332,5,82,0,0,1332,1333,5,69,0,0,1333,120,1,0,0,0,1334,1335,5, - 73,0,0,1335,1336,5,78,0,0,1336,1337,5,67,0,0,1337,1338,5,82,0,0,1338,1339, - 5,69,0,0,1339,1340,5,77,0,0,1340,1341,5,69,0,0,1341,1342,5,78,0,0,1342, - 1343,5,84,0,0,1343,122,1,0,0,0,1344,1345,5,73,0,0,1345,1346,5,78,0,0,1346, - 1347,5,80,0,0,1347,1348,5,85,0,0,1348,1349,5,84,0,0,1349,124,1,0,0,0,1350, - 1351,5,73,0,0,1351,1352,5,78,0,0,1352,1353,5,86,0,0,1353,1354,5,79,0,0, - 1354,1355,5,75,0,0,1355,1356,5,69,0,0,1356,1357,5,82,0,0,1357,126,1,0,0, - 0,1358,1359,5,74,0,0,1359,1360,5,65,0,0,1360,1361,5,82,0,0,1361,128,1,0, - 0,0,1362,1363,5,74,0,0,1363,1364,5,65,0,0,1364,1365,5,82,0,0,1365,1366, - 5,83,0,0,1366,130,1,0,0,0,1367,1368,5,74,0,0,1368,1369,5,65,0,0,1369,1370, - 5,86,0,0,1370,1371,5,65,0,0,1371,132,1,0,0,0,1372,1373,5,74,0,0,1373,1374, - 5,83,0,0,1374,1375,5,79,0,0,1375,1376,5,78,0,0,1376,134,1,0,0,0,1377,1378, - 5,74,0,0,1378,1379,5,83,0,0,1379,1380,5,79,0,0,1380,1381,5,78,0,0,1381, - 1382,5,95,0,0,1382,1383,5,69,0,0,1383,1384,5,88,0,0,1384,1385,5,69,0,0, - 1385,1386,5,67,0,0,1386,1387,5,85,0,0,1387,1388,5,84,0,0,1388,1389,5,73, - 0,0,1389,1390,5,79,0,0,1390,1391,5,78,0,0,1391,1392,5,95,0,0,1392,1393, - 5,80,0,0,1393,1394,5,76,0,0,1394,1395,5,65,0,0,1395,1396,5,78,0,0,1396, - 136,1,0,0,0,1397,1398,5,75,0,0,1398,1399,5,69,0,0,1399,1400,5,89,0,0,1400, - 138,1,0,0,0,1401,1402,5,75,0,0,1402,1403,5,69,0,0,1403,1404,5,89,0,0,1404, - 1405,5,95,0,0,1405,1406,5,77,0,0,1406,1407,5,69,0,0,1407,1408,5,77,0,0, - 1408,1409,5,66,0,0,1409,1410,5,69,0,0,1410,1411,5,82,0,0,1411,140,1,0,0, - 0,1412,1413,5,75,0,0,1413,1414,5,69,0,0,1414,1415,5,89,0,0,1415,1416,5, - 95,0,0,1416,1417,5,84,0,0,1417,1418,5,89,0,0,1418,1419,5,80,0,0,1419,1420, - 5,69,0,0,1420,142,1,0,0,0,1421,1422,5,76,0,0,1422,1423,5,65,0,0,1423,1424, - 5,66,0,0,1424,1425,5,69,0,0,1425,1426,5,76,0,0,1426,144,1,0,0,0,1427,1428, - 5,76,0,0,1428,1429,5,65,0,0,1429,1430,5,83,0,0,1430,1431,5,84,0,0,1431, - 146,1,0,0,0,1432,1433,5,76,0,0,1433,1434,5,69,0,0,1434,1435,5,78,0,0,1435, - 1436,5,71,0,0,1436,1437,5,84,0,0,1437,1438,5,72,0,0,1438,148,1,0,0,0,1439, - 1440,5,76,0,0,1440,1441,5,69,0,0,1441,1442,5,86,0,0,1442,1443,5,69,0,0, - 1443,1444,5,76,0,0,1444,150,1,0,0,0,1445,1446,5,76,0,0,1446,1447,5,79,0, - 0,1447,1448,5,65,0,0,1448,1449,5,68,0,0,1449,152,1,0,0,0,1450,1451,5,77, - 0,0,1451,1452,5,65,0,0,1452,1453,5,80,0,0,1453,154,1,0,0,0,1454,1455,5, - 77,0,0,1455,1456,5,73,0,0,1456,1457,5,67,0,0,1457,1458,5,82,0,0,1458,1459, - 5,79,0,0,1459,1460,5,83,0,0,1460,1461,5,69,0,0,1461,1462,5,67,0,0,1462, - 1463,5,79,0,0,1463,1464,5,78,0,0,1464,1465,5,68,0,0,1465,156,1,0,0,0,1466, - 1467,5,77,0,0,1467,1468,5,73,0,0,1468,1469,5,76,0,0,1469,1470,5,76,0,0, - 1470,1471,5,69,0,0,1471,1472,5,78,0,0,1472,1473,5,78,0,0,1473,1474,5,73, - 0,0,1474,1475,5,85,0,0,1475,1476,5,77,0,0,1476,158,1,0,0,0,1477,1478,5, - 77,0,0,1478,1479,5,73,0,0,1479,1480,5,76,0,0,1480,1481,5,76,0,0,1481,1482, - 5,73,0,0,1482,1483,5,83,0,0,1483,1484,5,69,0,0,1484,1485,5,67,0,0,1485, - 1486,5,79,0,0,1486,1487,5,78,0,0,1487,1488,5,68,0,0,1488,160,1,0,0,0,1489, - 1490,5,77,0,0,1490,1491,5,73,0,0,1491,1492,5,78,0,0,1492,1493,5,85,0,0, - 1493,1494,5,84,0,0,1494,1495,5,69,0,0,1495,1496,5,83,0,0,1496,162,1,0,0, - 0,1497,1498,5,77,0,0,1498,1499,5,73,0,0,1499,1500,5,78,0,0,1500,1501,5, - 86,0,0,1501,1502,5,65,0,0,1502,1503,5,76,0,0,1503,1504,5,85,0,0,1504,1505, - 5,69,0,0,1505,164,1,0,0,0,1506,1507,5,77,0,0,1507,1508,5,79,0,0,1508,1509, - 5,68,0,0,1509,1510,5,73,0,0,1510,1511,5,70,0,0,1511,1512,5,89,0,0,1512, - 166,1,0,0,0,1513,1514,5,77,0,0,1514,1515,5,79,0,0,1515,1516,5,68,0,0,1516, - 1517,5,85,0,0,1517,1518,5,76,0,0,1518,1519,5,69,0,0,1519,1520,5,83,0,0, - 1520,168,1,0,0,0,1521,1522,5,77,0,0,1522,1523,5,79,0,0,1523,1524,5,78,0, - 0,1524,1525,5,84,0,0,1525,1526,5,72,0,0,1526,1527,5,83,0,0,1527,170,1,0, - 0,0,1528,1529,5,78,0,0,1529,1530,5,65,0,0,1530,1531,5,78,0,0,1531,1532, - 5,79,0,0,1532,1533,5,83,0,0,1533,1534,5,69,0,0,1534,1535,5,67,0,0,1535, - 1536,5,79,0,0,1536,1537,5,78,0,0,1537,1538,5,68,0,0,1538,172,1,0,0,0,1539, - 1540,5,78,0,0,1540,1541,5,85,0,0,1541,1542,5,76,0,0,1542,1543,5,76,0,0, - 1543,1544,5,83,0,0,1544,174,1,0,0,0,1545,1546,5,78,0,0,1546,1547,5,85,0, - 0,1547,1548,5,77,0,0,1548,1549,5,66,0,0,1549,1550,5,69,0,0,1550,1551,5, - 82,0,0,1551,176,1,0,0,0,1552,1553,5,79,0,0,1553,1554,5,80,0,0,1554,1555, - 5,84,0,0,1555,1556,5,73,0,0,1556,1557,5,79,0,0,1557,1558,5,78,0,0,1558, - 178,1,0,0,0,1559,1560,5,79,0,0,1560,1561,5,80,0,0,1561,1562,5,84,0,0,1562, - 1563,5,73,0,0,1563,1564,5,79,0,0,1564,1565,5,78,0,0,1565,1566,5,83,0,0, - 1566,180,1,0,0,0,1567,1568,5,79,0,0,1568,1569,5,82,0,0,1569,1570,5,68,0, - 0,1570,1571,5,69,0,0,1571,1572,5,82,0,0,1572,1573,5,73,0,0,1573,1574,5, - 78,0,0,1574,1575,5,71,0,0,1575,182,1,0,0,0,1576,1577,5,79,0,0,1577,1578, - 5,85,0,0,1578,1579,5,84,0,0,1579,1580,5,80,0,0,1580,1581,5,85,0,0,1581, - 1582,5,84,0,0,1582,184,1,0,0,0,1583,1584,5,79,0,0,1584,1585,5,86,0,0,1585, - 1586,5,69,0,0,1586,1587,5,82,0,0,1587,1588,5,87,0,0,1588,1589,5,82,0,0, - 1589,1590,5,73,0,0,1590,1591,5,84,0,0,1591,1592,5,69,0,0,1592,186,1,0,0, - 0,1593,1594,5,79,0,0,1594,1595,5,86,0,0,1595,1596,5,69,0,0,1596,1597,5, - 82,0,0,1597,1598,5,87,0,0,1598,1599,5,82,0,0,1599,1600,5,73,0,0,1600,1601, - 5,84,0,0,1601,1602,5,73,0,0,1602,1603,5,78,0,0,1603,1604,5,71,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,69,0,0,1615,1616,5,68, - 0,0,1616,190,1,0,0,0,1617,1618,5,80,0,0,1618,1619,5,65,0,0,1619,1620,5, - 82,0,0,1620,1621,5,84,0,0,1621,1622,5,73,0,0,1622,1623,5,84,0,0,1623,1624, - 5,73,0,0,1624,1625,5,79,0,0,1625,1626,5,78,0,0,1626,1627,5,83,0,0,1627, - 192,1,0,0,0,1628,1629,5,80,0,0,1629,1630,5,65,0,0,1630,1631,5,83,0,0,1631, - 1632,5,83,0,0,1632,1633,5,73,0,0,1633,1634,5,78,0,0,1634,1635,5,71,0,0, - 1635,194,1,0,0,0,1636,1637,5,80,0,0,1637,1638,5,65,0,0,1638,1639,5,83,0, - 0,1639,1640,5,84,0,0,1640,196,1,0,0,0,1641,1642,5,80,0,0,1642,1643,5,65, - 0,0,1643,1644,5,84,0,0,1644,1645,5,72,0,0,1645,198,1,0,0,0,1646,1647,5, - 80,0,0,1647,1648,5,76,0,0,1648,1649,5,65,0,0,1649,1650,5,67,0,0,1650,1651, - 5,73,0,0,1651,1652,5,78,0,0,1652,1653,5,71,0,0,1653,200,1,0,0,0,1654,1655, - 5,80,0,0,1655,1656,5,76,0,0,1656,1657,5,65,0,0,1657,1658,5,78,0,0,1658, - 202,1,0,0,0,1659,1660,5,80,0,0,1660,1661,5,82,0,0,1661,1662,5,69,0,0,1662, - 1663,5,67,0,0,1663,1664,5,69,0,0,1664,1665,5,68,0,0,1665,1666,5,73,0,0, - 1666,1667,5,78,0,0,1667,1668,5,71,0,0,1668,204,1,0,0,0,1669,1670,5,80,0, - 0,1670,1671,5,82,0,0,1671,1672,5,69,0,0,1672,1673,5,83,0,0,1673,1674,5, - 69,0,0,1674,1675,5,82,0,0,1675,1676,5,86,0,0,1676,1677,5,69,0,0,1677,206, - 1,0,0,0,1678,1679,5,80,0,0,1679,1680,5,82,0,0,1680,1681,5,73,0,0,1681,1682, - 5,79,0,0,1682,1683,5,82,0,0,1683,208,1,0,0,0,1684,1685,5,80,0,0,1685,1686, - 5,82,0,0,1686,1687,5,73,0,0,1687,1688,5,86,0,0,1688,1689,5,73,0,0,1689, - 1690,5,76,0,0,1690,1691,5,69,0,0,1691,1692,5,71,0,0,1692,1693,5,69,0,0, - 1693,1694,5,83,0,0,1694,210,1,0,0,0,1695,1696,5,80,0,0,1696,1697,5,85,0, - 0,1697,1698,5,66,0,0,1698,1699,5,76,0,0,1699,1700,5,73,0,0,1700,1701,5, - 67,0,0,1701,212,1,0,0,0,1702,1703,5,80,0,0,1703,1704,5,89,0,0,1704,1705, - 5,84,0,0,1705,1706,5,72,0,0,1706,1707,5,79,0,0,1707,1708,5,78,0,0,1708, - 214,1,0,0,0,1709,1710,5,80,0,0,1710,1711,5,89,0,0,1711,1712,5,84,0,0,1712, - 1713,5,72,0,0,1713,1714,5,79,0,0,1714,1715,5,78,0,0,1715,1716,5,95,0,0, - 1716,1717,5,70,0,0,1717,1718,5,73,0,0,1718,1719,5,76,0,0,1719,1720,5,69, - 0,0,1720,1721,5,83,0,0,1721,216,1,0,0,0,1722,1723,5,80,0,0,1723,1724,5, - 89,0,0,1724,1725,5,84,0,0,1725,1726,5,72,0,0,1726,1727,5,79,0,0,1727,1728, - 5,78,0,0,1728,1729,5,95,0,0,1729,1730,5,82,0,0,1730,1731,5,69,0,0,1731, - 1732,5,81,0,0,1732,1733,5,85,0,0,1733,1734,5,73,0,0,1734,1735,5,82,0,0, - 1735,1736,5,69,0,0,1736,1737,5,77,0,0,1737,1738,5,69,0,0,1738,1739,5,78, - 0,0,1739,1740,5,84,0,0,1740,1741,5,83,0,0,1741,218,1,0,0,0,1742,1743,5, - 80,0,0,1743,1744,5,89,0,0,1744,1745,5,84,0,0,1745,1746,5,72,0,0,1746,1747, - 5,79,0,0,1747,1748,5,78,0,0,1748,1749,5,95,0,0,1749,1750,5,68,0,0,1750, - 1751,5,69,0,0,1751,1752,5,80,0,0,1752,1753,5,69,0,0,1753,1754,5,78,0,0, - 1754,1755,5,68,0,0,1755,1756,5,69,0,0,1756,1757,5,78,0,0,1757,1758,5,67, - 0,0,1758,1759,5,73,0,0,1759,1760,5,69,0,0,1760,1761,5,83,0,0,1761,220,1, - 0,0,0,1762,1763,5,80,0,0,1763,1764,5,89,0,0,1764,1765,5,84,0,0,1765,1766, - 5,72,0,0,1766,1767,5,79,0,0,1767,1768,5,78,0,0,1768,1769,5,95,0,0,1769, - 1770,5,74,0,0,1770,1771,5,65,0,0,1771,1772,5,82,0,0,1772,222,1,0,0,0,1773, - 1774,5,80,0,0,1774,1775,5,89,0,0,1775,1776,5,84,0,0,1776,1777,5,72,0,0, - 1777,1778,5,79,0,0,1778,1779,5,78,0,0,1779,1780,5,95,0,0,1780,1781,5,65, - 0,0,1781,1782,5,82,0,0,1782,1783,5,67,0,0,1783,1784,5,72,0,0,1784,1785, - 5,73,0,0,1785,1786,5,86,0,0,1786,1787,5,69,0,0,1787,1788,5,83,0,0,1788, - 224,1,0,0,0,1789,1790,5,80,0,0,1790,1791,5,89,0,0,1791,1792,5,84,0,0,1792, - 1793,5,72,0,0,1793,1794,5,79,0,0,1794,1795,5,78,0,0,1795,1796,5,95,0,0, - 1796,1797,5,80,0,0,1797,1798,5,65,0,0,1798,1799,5,82,0,0,1799,1800,5,65, - 0,0,1800,1801,5,77,0,0,1801,1802,5,69,0,0,1802,1803,5,84,0,0,1803,1804, - 5,69,0,0,1804,1805,5,82,0,0,1805,226,1,0,0,0,1806,1807,5,81,0,0,1807,1808, - 5,85,0,0,1808,1809,5,65,0,0,1809,1810,5,82,0,0,1810,1811,5,84,0,0,1811, - 1812,5,69,0,0,1812,1813,5,82,0,0,1813,228,1,0,0,0,1814,1815,5,82,0,0,1815, - 1816,5,65,0,0,1816,1817,5,87,0,0,1817,230,1,0,0,0,1818,1819,5,82,0,0,1819, - 1820,5,69,0,0,1820,1821,5,65,0,0,1821,1822,5,68,0,0,1822,232,1,0,0,0,1823, - 1824,5,82,0,0,1824,1825,5,69,0,0,1825,1826,5,76,0,0,1826,1827,5,65,0,0, - 1827,1828,5,84,0,0,1828,1829,5,73,0,0,1829,1830,5,86,0,0,1830,1831,5,69, - 0,0,1831,234,1,0,0,0,1832,1833,5,82,0,0,1833,1834,5,69,0,0,1834,1835,5, - 77,0,0,1835,1836,5,79,0,0,1836,1837,5,86,0,0,1837,1838,5,69,0,0,1838,236, - 1,0,0,0,1839,1840,5,82,0,0,1840,1841,5,69,0,0,1841,1842,5,78,0,0,1842,1843, - 5,65,0,0,1843,1844,5,77,0,0,1844,1845,5,69,0,0,1845,238,1,0,0,0,1846,1847, - 5,82,0,0,1847,1848,5,69,0,0,1848,1849,5,80,0,0,1849,1850,5,76,0,0,1850, - 1851,5,65,0,0,1851,1852,5,67,0,0,1852,1853,5,69,0,0,1853,240,1,0,0,0,1854, - 1855,5,82,0,0,1855,1856,5,69,0,0,1856,1857,5,83,0,0,1857,1858,5,80,0,0, - 1858,1859,5,69,0,0,1859,1860,5,67,0,0,1860,1861,5,84,0,0,1861,242,1,0,0, - 0,1862,1863,5,82,0,0,1863,1864,5,69,0,0,1864,1865,5,83,0,0,1865,1866,5, - 84,0,0,1866,1867,5,65,0,0,1867,1868,5,82,0,0,1868,1869,5,84,0,0,1869,244, - 1,0,0,0,1870,1871,5,82,0,0,1871,1872,5,69,0,0,1872,1873,5,83,0,0,1873,1874, - 5,84,0,0,1874,1875,5,82,0,0,1875,1876,5,73,0,0,1876,1877,5,67,0,0,1877, - 1878,5,84,0,0,1878,246,1,0,0,0,1879,1880,5,82,0,0,1880,1881,5,79,0,0,1881, - 1882,5,76,0,0,1882,1883,5,69,0,0,1883,248,1,0,0,0,1884,1885,5,82,0,0,1885, - 1886,5,79,0,0,1886,1887,5,87,0,0,1887,1888,5,95,0,0,1888,1889,5,67,0,0, - 1889,1890,5,79,0,0,1890,1891,5,85,0,0,1891,1892,5,78,0,0,1892,1893,5,84, - 0,0,1893,250,1,0,0,0,1894,1895,5,83,0,0,1895,1896,5,67,0,0,1896,1897,5, - 65,0,0,1897,1898,5,76,0,0,1898,1899,5,65,0,0,1899,252,1,0,0,0,1900,1901, - 5,83,0,0,1901,1902,5,67,0,0,1902,1903,5,65,0,0,1903,1904,5,76,0,0,1904, - 1905,5,65,0,0,1905,1906,5,82,0,0,1906,254,1,0,0,0,1907,1908,5,83,0,0,1908, - 1909,5,67,0,0,1909,1910,5,65,0,0,1910,1911,5,76,0,0,1911,1912,5,69,0,0, - 1912,256,1,0,0,0,1913,1914,5,83,0,0,1914,1915,5,67,0,0,1915,1916,5,72,0, - 0,1916,1917,5,69,0,0,1917,1918,5,77,0,0,1918,1919,5,65,0,0,1919,258,1,0, - 0,0,1920,1921,5,83,0,0,1921,1922,5,69,0,0,1922,1923,5,67,0,0,1923,1924, - 5,79,0,0,1924,1925,5,78,0,0,1925,1926,5,68,0,0,1926,1927,5,83,0,0,1927, - 260,1,0,0,0,1928,1929,5,83,0,0,1929,1930,5,69,0,0,1930,1931,5,67,0,0,1931, - 1932,5,84,0,0,1932,1933,5,73,0,0,1933,1934,5,79,0,0,1934,1935,5,78,0,0, - 1935,262,1,0,0,0,1936,1937,5,83,0,0,1937,1938,5,69,0,0,1938,1939,5,67,0, - 0,1939,1940,5,85,0,0,1940,1941,5,82,0,0,1941,1942,5,73,0,0,1942,1943,5, - 84,0,0,1943,1944,5,89,0,0,1944,264,1,0,0,0,1945,1946,5,83,0,0,1946,1947, - 5,69,0,0,1947,1948,5,76,0,0,1948,1949,5,70,0,0,1949,266,1,0,0,0,1950,1951, - 5,83,0,0,1951,1952,5,69,0,0,1952,1953,5,82,0,0,1953,1954,5,86,0,0,1954, - 1955,5,69,0,0,1955,1956,5,82,0,0,1956,268,1,0,0,0,1957,1958,5,83,0,0,1958, - 1959,5,69,0,0,1959,1960,5,82,0,0,1960,1961,5,86,0,0,1961,1962,5,69,0,0, - 1962,1963,5,82,0,0,1963,1964,5,95,0,0,1964,1965,5,78,0,0,1965,1966,5,65, - 0,0,1966,1967,5,77,0,0,1967,1968,5,69,0,0,1968,270,1,0,0,0,1969,1970,5, - 83,0,0,1970,1971,5,69,0,0,1971,1972,5,83,0,0,1972,1973,5,83,0,0,1973,1974, - 5,73,0,0,1974,1975,5,79,0,0,1975,1976,5,78,0,0,1976,272,1,0,0,0,1977,1978, - 5,83,0,0,1978,1979,5,69,0,0,1979,1980,5,84,0,0,1980,1981,5,83,0,0,1981, - 274,1,0,0,0,1982,1983,5,83,0,0,1983,1984,5,73,0,0,1984,1985,5,77,0,0,1985, - 1986,5,80,0,0,1986,1987,5,76,0,0,1987,1988,5,69,0,0,1988,276,1,0,0,0,1989, - 1990,5,83,0,0,1990,1991,5,73,0,0,1991,1992,5,90,0,0,1992,1993,5,69,0,0, - 1993,278,1,0,0,0,1994,1995,5,83,0,0,1995,1996,5,76,0,0,1996,1997,5,73,0, - 0,1997,1998,5,68,0,0,1998,1999,5,69,0,0,1999,280,1,0,0,0,2000,2001,5,83, - 0,0,2001,2002,5,79,0,0,2002,2003,5,85,0,0,2003,2004,5,82,0,0,2004,2005, - 5,67,0,0,2005,2006,5,69,0,0,2006,282,1,0,0,0,2007,2008,5,83,0,0,2008,2009, - 5,80,0,0,2009,2010,5,65,0,0,2010,2011,5,67,0,0,2011,2012,5,69,0,0,2012, - 284,1,0,0,0,2013,2014,5,83,0,0,2014,2015,5,84,0,0,2015,2016,5,65,0,0,2016, - 2017,5,84,0,0,2017,2018,5,69,0,0,2018,286,1,0,0,0,2019,2020,5,83,0,0,2020, - 2021,5,84,0,0,2021,2022,5,65,0,0,2022,2023,5,84,0,0,2023,2024,5,69,0,0, - 2024,2025,5,77,0,0,2025,2026,5,69,0,0,2026,2027,5,78,0,0,2027,2028,5,84, - 0,0,2028,288,1,0,0,0,2029,2030,5,83,0,0,2030,2031,5,84,0,0,2031,2032,5, - 69,0,0,2032,2033,5,80,0,0,2033,290,1,0,0,0,2034,2035,5,83,0,0,2035,2036, - 5,84,0,0,2036,2037,5,82,0,0,2037,2038,5,73,0,0,2038,2039,5,78,0,0,2039, - 2040,5,71,0,0,2040,292,1,0,0,0,2041,2042,5,83,0,0,2042,2043,5,84,0,0,2043, - 2044,5,82,0,0,2044,2045,5,85,0,0,2045,2046,5,67,0,0,2046,2047,5,84,0,0, - 2047,2048,5,85,0,0,2048,2049,5,82,0,0,2049,2050,5,69,0,0,2050,294,1,0,0, - 0,2051,2052,5,83,0,0,2052,2053,5,84,0,0,2053,2054,5,89,0,0,2054,2055,5, - 76,0,0,2055,2056,5,69,0,0,2056,296,1,0,0,0,2057,2058,5,84,0,0,2058,2059, - 5,65,0,0,2059,2060,5,66,0,0,2060,2061,5,76,0,0,2061,2062,5,69,0,0,2062, - 2063,5,83,0,0,2063,298,1,0,0,0,2064,2065,5,84,0,0,2065,2066,5,69,0,0,2066, - 2067,5,77,0,0,2067,2068,5,80,0,0,2068,2069,5,79,0,0,2069,2070,5,82,0,0, - 2070,2071,5,65,0,0,2071,2072,5,82,0,0,2072,2073,5,89,0,0,2073,300,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,67,0,0,2079,2080,5,79,0,0,2080,2081,5,76,0,0,2081,302, - 1,0,0,0,2082,2083,5,84,0,0,2083,2084,5,73,0,0,2084,2085,5,77,0,0,2085,2086, - 5,69,0,0,2086,2087,5,83,0,0,2087,2088,5,84,0,0,2088,2089,5,65,0,0,2089, - 2090,5,77,0,0,2090,2091,5,80,0,0,2091,2092,5,95,0,0,2092,2093,5,76,0,0, - 2093,2094,5,84,0,0,2094,2095,5,90,0,0,2095,304,1,0,0,0,2096,2097,5,84,0, - 0,2097,2098,5,73,0,0,2098,2099,5,77,0,0,2099,2100,5,69,0,0,2100,2101,5, - 83,0,0,2101,2102,5,84,0,0,2102,2103,5,65,0,0,2103,2104,5,77,0,0,2104,2105, - 5,80,0,0,2105,2106,5,65,0,0,2106,2107,5,68,0,0,2107,2108,5,68,0,0,2108, - 306,1,0,0,0,2109,2110,5,84,0,0,2110,2111,5,73,0,0,2111,2112,5,77,0,0,2112, - 2113,5,69,0,0,2113,2114,5,83,0,0,2114,2115,5,84,0,0,2115,2116,5,65,0,0, - 2116,2117,5,77,0,0,2117,2118,5,80,0,0,2118,2119,5,68,0,0,2119,2120,5,73, - 0,0,2120,2121,5,70,0,0,2121,2122,5,70,0,0,2122,308,1,0,0,0,2123,2124,5, - 84,0,0,2124,2125,5,82,0,0,2125,2126,5,65,0,0,2126,2127,5,78,0,0,2127,2128, - 5,83,0,0,2128,2129,5,70,0,0,2129,2130,5,79,0,0,2130,2131,5,82,0,0,2131, - 2132,5,77,0,0,2132,310,1,0,0,0,2133,2134,5,84,0,0,2134,2135,5,85,0,0,2135, - 2136,5,77,0,0,2136,2137,5,66,0,0,2137,2138,5,76,0,0,2138,2139,5,69,0,0, - 2139,312,1,0,0,0,2140,2141,5,84,0,0,2141,2142,5,89,0,0,2142,2143,5,80,0, - 0,2143,2144,5,69,0,0,2144,314,1,0,0,0,2145,2146,5,85,0,0,2146,2147,5,78, - 0,0,2147,2148,5,68,0,0,2148,2149,5,69,0,0,2149,2150,5,82,0,0,2150,316,1, - 0,0,0,2151,2152,5,85,0,0,2152,2153,5,78,0,0,2153,2154,5,76,0,0,2154,2155, - 5,79,0,0,2155,2156,5,65,0,0,2156,2157,5,68,0,0,2157,318,1,0,0,0,2158,2159, - 5,85,0,0,2159,2160,5,83,0,0,2160,2161,5,65,0,0,2161,2162,5,71,0,0,2162, - 2163,5,69,0,0,2163,320,1,0,0,0,2164,2165,5,85,0,0,2165,2166,5,83,0,0,2166, - 2167,5,69,0,0,2167,322,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,49,0,0,2172,2173,5,54,0,0,2173,324,1,0,0,0,2174, - 2175,5,85,0,0,2175,2176,5,84,0,0,2176,2177,5,70,0,0,2177,2178,5,51,0,0, - 2178,2179,5,50,0,0,2179,326,1,0,0,0,2180,2181,5,85,0,0,2181,2182,5,84,0, - 0,2182,2183,5,70,0,0,2183,2184,5,56,0,0,2184,328,1,0,0,0,2185,2186,5,86, - 0,0,2186,2187,5,69,0,0,2187,2188,5,82,0,0,2188,2189,5,83,0,0,2189,2190, - 5,73,0,0,2190,2191,5,79,0,0,2191,2192,5,78,0,0,2192,330,1,0,0,0,2193,2194, - 5,86,0,0,2194,2195,5,73,0,0,2195,2196,5,69,0,0,2196,2197,5,87,0,0,2197, - 332,1,0,0,0,2198,2199,5,86,0,0,2199,2200,5,73,0,0,2200,2201,5,69,0,0,2201, - 2202,5,87,0,0,2202,2203,5,83,0,0,2203,334,1,0,0,0,2204,2205,5,86,0,0,2205, - 2206,5,73,0,0,2206,2207,5,82,0,0,2207,2208,5,84,0,0,2208,2209,5,85,0,0, - 2209,2210,5,65,0,0,2210,2211,5,76,0,0,2211,336,1,0,0,0,2212,2213,5,87,0, - 0,2213,2214,5,65,0,0,2214,2215,5,84,0,0,2215,2216,5,69,0,0,2216,2217,5, - 82,0,0,2217,2218,5,77,0,0,2218,2219,5,65,0,0,2219,2220,5,82,0,0,2220,2221, - 5,75,0,0,2221,338,1,0,0,0,2222,2223,5,87,0,0,2223,2224,5,65,0,0,2224,2225, - 5,84,0,0,2225,2226,5,69,0,0,2226,2227,5,82,0,0,2227,2228,5,77,0,0,2228, - 2229,5,65,0,0,2229,2230,5,82,0,0,2230,2231,5,75,0,0,2231,2232,5,83,0,0, - 2232,340,1,0,0,0,2233,2234,5,87,0,0,2234,2235,5,69,0,0,2235,2236,5,69,0, - 0,2236,2237,5,75,0,0,2237,342,1,0,0,0,2238,2239,5,87,0,0,2239,2240,5,69, - 0,0,2240,2241,5,69,0,0,2241,2242,5,75,0,0,2242,2243,5,83,0,0,2243,344,1, - 0,0,0,2244,2245,5,87,0,0,2245,2246,5,79,0,0,2246,2247,5,82,0,0,2247,2248, - 5,75,0,0,2248,346,1,0,0,0,2249,2250,5,87,0,0,2250,2251,5,82,0,0,2251,2252, - 5,65,0,0,2252,2253,5,80,0,0,2253,2254,5,80,0,0,2254,2255,5,69,0,0,2255, - 2256,5,82,0,0,2256,348,1,0,0,0,2257,2258,5,89,0,0,2258,2259,5,69,0,0,2259, - 2260,5,65,0,0,2260,2261,5,82,0,0,2261,2262,5,83,0,0,2262,350,1,0,0,0,2263, - 2264,5,90,0,0,2264,2265,5,79,0,0,2265,2266,5,78,0,0,2266,2267,5,69,0,0, - 2267,352,1,0,0,0,2268,2269,5,65,0,0,2269,2270,5,66,0,0,2270,2271,5,83,0, - 0,2271,354,1,0,0,0,2272,2273,5,65,0,0,2273,2274,5,76,0,0,2274,2275,5,76, - 0,0,2275,356,1,0,0,0,2276,2277,5,65,0,0,2277,2278,5,76,0,0,2278,2279,5, - 76,0,0,2279,2280,5,79,0,0,2280,2281,5,87,0,0,2281,358,1,0,0,0,2282,2283, - 5,65,0,0,2283,2284,5,76,0,0,2284,2285,5,84,0,0,2285,2286,5,69,0,0,2286, - 2287,5,82,0,0,2287,360,1,0,0,0,2288,2289,5,65,0,0,2289,2290,5,78,0,0,2290, - 2291,5,68,0,0,2291,362,1,0,0,0,2292,2293,5,65,0,0,2293,2294,5,78,0,0,2294, - 2295,5,89,0,0,2295,364,1,0,0,0,2296,2297,5,65,0,0,2297,2298,5,82,0,0,2298, - 2299,5,69,0,0,2299,366,1,0,0,0,2300,2301,5,65,0,0,2301,2302,5,82,0,0,2302, - 2303,5,82,0,0,2303,2304,5,65,0,0,2304,2305,5,89,0,0,2305,368,1,0,0,0,2306, - 2307,5,65,0,0,2307,2308,5,83,0,0,2308,370,1,0,0,0,2309,2310,5,65,0,0,2310, - 2311,5,83,0,0,2311,2312,5,89,0,0,2312,2313,5,77,0,0,2313,2314,5,77,0,0, - 2314,2315,5,69,0,0,2315,2316,5,84,0,0,2316,2317,5,82,0,0,2317,2318,5,73, - 0,0,2318,2319,5,67,0,0,2319,372,1,0,0,0,2320,2321,5,65,0,0,2321,2322,5, - 84,0,0,2322,374,1,0,0,0,2323,2324,5,65,0,0,2324,2325,5,86,0,0,2325,2326, - 5,71,0,0,2326,376,1,0,0,0,2327,2328,5,66,0,0,2328,2329,5,69,0,0,2329,2330, - 5,71,0,0,2330,2331,5,73,0,0,2331,2332,5,78,0,0,2332,378,1,0,0,0,2333,2334, - 5,66,0,0,2334,2335,5,69,0,0,2335,2336,5,84,0,0,2336,2337,5,87,0,0,2337, - 2338,5,69,0,0,2338,2339,5,69,0,0,2339,2340,5,78,0,0,2340,380,1,0,0,0,2341, - 2342,5,66,0,0,2342,2343,5,73,0,0,2343,2344,5,71,0,0,2344,2345,5,73,0,0, - 2345,2346,5,78,0,0,2346,2347,5,84,0,0,2347,382,1,0,0,0,2348,2349,5,66,0, - 0,2349,2350,5,73,0,0,2350,2351,5,78,0,0,2351,2352,5,65,0,0,2352,2353,5, - 82,0,0,2353,2354,5,89,0,0,2354,384,1,0,0,0,2355,2356,5,66,0,0,2356,2357, - 5,73,0,0,2357,2358,5,84,0,0,2358,386,1,0,0,0,2359,2360,5,66,0,0,2360,2361, - 5,76,0,0,2361,2362,5,79,0,0,2362,2363,5,66,0,0,2363,388,1,0,0,0,2364,2365, - 5,66,0,0,2365,2366,5,79,0,0,2366,2367,5,79,0,0,2367,2368,5,76,0,0,2368, - 2369,5,69,0,0,2369,2370,5,65,0,0,2370,2371,5,78,0,0,2371,390,1,0,0,0,2372, - 2373,5,66,0,0,2373,2374,5,79,0,0,2374,2375,5,84,0,0,2375,2376,5,72,0,0, - 2376,392,1,0,0,0,2377,2378,5,66,0,0,2378,2379,5,89,0,0,2379,394,1,0,0,0, - 2380,2381,5,67,0,0,2381,2382,5,65,0,0,2382,2383,5,76,0,0,2383,2384,5,76, - 0,0,2384,396,1,0,0,0,2385,2386,5,67,0,0,2386,2387,5,65,0,0,2387,2388,5, - 76,0,0,2388,2389,5,76,0,0,2389,2390,5,69,0,0,2390,2391,5,68,0,0,2391,398, - 1,0,0,0,2392,2393,5,67,0,0,2393,2394,5,65,0,0,2394,2395,5,83,0,0,2395,2396, - 5,67,0,0,2396,2397,5,65,0,0,2397,2398,5,68,0,0,2398,2399,5,69,0,0,2399, - 2400,5,68,0,0,2400,400,1,0,0,0,2401,2402,5,67,0,0,2402,2403,5,65,0,0,2403, - 2404,5,83,0,0,2404,2405,5,69,0,0,2405,402,1,0,0,0,2406,2407,5,67,0,0,2407, - 2408,5,65,0,0,2408,2409,5,83,0,0,2409,2410,5,84,0,0,2410,404,1,0,0,0,2411, - 2412,5,67,0,0,2412,2413,5,69,0,0,2413,2414,5,73,0,0,2414,2415,5,76,0,0, - 2415,406,1,0,0,0,2416,2417,5,67,0,0,2417,2418,5,72,0,0,2418,2419,5,65,0, - 0,2419,2420,5,82,0,0,2420,408,1,0,0,0,2421,2422,5,67,0,0,2422,2423,5,72, - 0,0,2423,2424,5,65,0,0,2424,2425,5,82,0,0,2425,2426,5,65,0,0,2426,2427, - 5,67,0,0,2427,2428,5,84,0,0,2428,2429,5,69,0,0,2429,2430,5,82,0,0,2430, - 410,1,0,0,0,2431,2432,5,67,0,0,2432,2433,5,72,0,0,2433,2434,5,69,0,0,2434, - 2435,5,67,0,0,2435,2436,5,75,0,0,2436,412,1,0,0,0,2437,2438,5,67,0,0,2438, - 2439,5,76,0,0,2439,2440,5,79,0,0,2440,2441,5,66,0,0,2441,414,1,0,0,0,2442, - 2443,5,67,0,0,2443,2444,5,76,0,0,2444,2445,5,79,0,0,2445,2446,5,83,0,0, - 2446,2447,5,69,0,0,2447,416,1,0,0,0,2448,2449,5,67,0,0,2449,2450,5,79,0, - 0,2450,2451,5,65,0,0,2451,2452,5,76,0,0,2452,2453,5,69,0,0,2453,2454,5, - 83,0,0,2454,2455,5,67,0,0,2455,2456,5,69,0,0,2456,418,1,0,0,0,2457,2458, - 5,67,0,0,2458,2459,5,79,0,0,2459,2460,5,76,0,0,2460,2461,5,76,0,0,2461, - 2462,5,65,0,0,2462,2463,5,84,0,0,2463,2464,5,69,0,0,2464,420,1,0,0,0,2465, - 2466,5,67,0,0,2466,2467,5,79,0,0,2467,2468,5,76,0,0,2468,2469,5,76,0,0, - 2469,2470,5,69,0,0,2470,2471,5,67,0,0,2471,2472,5,84,0,0,2472,422,1,0,0, - 0,2473,2474,5,67,0,0,2474,2475,5,79,0,0,2475,2476,5,76,0,0,2476,2477,5, - 85,0,0,2477,2478,5,77,0,0,2478,2479,5,78,0,0,2479,424,1,0,0,0,2480,2481, - 5,67,0,0,2481,2482,5,79,0,0,2482,2483,5,77,0,0,2483,2484,5,77,0,0,2484, - 2485,5,73,0,0,2485,2486,5,84,0,0,2486,426,1,0,0,0,2487,2488,5,67,0,0,2488, - 2489,5,79,0,0,2489,2490,5,78,0,0,2490,2491,5,78,0,0,2491,2492,5,69,0,0, - 2492,2493,5,67,0,0,2493,2494,5,84,0,0,2494,428,1,0,0,0,2495,2496,5,67,0, - 0,2496,2497,5,79,0,0,2497,2498,5,78,0,0,2498,2499,5,83,0,0,2499,2500,5, - 84,0,0,2500,2501,5,82,0,0,2501,2502,5,65,0,0,2502,2503,5,73,0,0,2503,2504, - 5,78,0,0,2504,2505,5,84,0,0,2505,430,1,0,0,0,2506,2507,5,67,0,0,2507,2508, - 5,79,0,0,2508,2509,5,78,0,0,2509,2510,5,84,0,0,2510,2511,5,65,0,0,2511, - 2512,5,73,0,0,2512,2513,5,78,0,0,2513,2514,5,83,0,0,2514,432,1,0,0,0,2515, - 2516,5,67,0,0,2516,2517,5,79,0,0,2517,2518,5,78,0,0,2518,2519,5,86,0,0, - 2519,2520,5,69,0,0,2520,2521,5,82,0,0,2521,2522,5,84,0,0,2522,434,1,0,0, - 0,2523,2524,5,67,0,0,2524,2525,5,79,0,0,2525,2526,5,85,0,0,2526,2527,5, - 78,0,0,2527,2528,5,84,0,0,2528,436,1,0,0,0,2529,2530,5,67,0,0,2530,2531, - 5,82,0,0,2531,2532,5,69,0,0,2532,2533,5,65,0,0,2533,2534,5,84,0,0,2534, - 2535,5,69,0,0,2535,438,1,0,0,0,2536,2537,5,67,0,0,2537,2538,5,82,0,0,2538, - 2539,5,79,0,0,2539,2540,5,83,0,0,2540,2541,5,83,0,0,2541,440,1,0,0,0,2542, - 2543,5,67,0,0,2543,2544,5,85,0,0,2544,2545,5,66,0,0,2545,2546,5,69,0,0, - 2546,442,1,0,0,0,2547,2548,5,67,0,0,2548,2549,5,85,0,0,2549,2550,5,82,0, - 0,2550,2551,5,82,0,0,2551,2552,5,69,0,0,2552,2553,5,78,0,0,2553,2554,5, - 84,0,0,2554,444,1,0,0,0,2555,2556,5,67,0,0,2556,2557,5,85,0,0,2557,2558, - 5,82,0,0,2558,2559,5,83,0,0,2559,2560,5,79,0,0,2560,2561,5,82,0,0,2561, - 446,1,0,0,0,2562,2563,5,67,0,0,2563,2564,5,89,0,0,2564,2565,5,67,0,0,2565, - 2566,5,76,0,0,2566,2567,5,69,0,0,2567,448,1,0,0,0,2568,2569,5,68,0,0,2569, - 2570,5,65,0,0,2570,2571,5,84,0,0,2571,2572,5,69,0,0,2572,450,1,0,0,0,2573, - 2574,5,68,0,0,2574,2575,5,65,0,0,2575,2576,5,84,0,0,2576,2577,5,69,0,0, - 2577,2578,5,84,0,0,2578,2579,5,73,0,0,2579,2580,5,77,0,0,2580,2581,5,69, - 0,0,2581,452,1,0,0,0,2582,2583,5,68,0,0,2583,2584,5,65,0,0,2584,2585,5, - 89,0,0,2585,454,1,0,0,0,2586,2587,5,68,0,0,2587,2588,5,69,0,0,2588,2589, - 5,67,0,0,2589,456,1,0,0,0,2590,2591,5,68,0,0,2591,2592,5,69,0,0,2592,2593, - 5,67,0,0,2593,2594,5,73,0,0,2594,2595,5,77,0,0,2595,2596,5,65,0,0,2596, - 2597,5,76,0,0,2597,458,1,0,0,0,2598,2599,5,68,0,0,2599,2600,5,69,0,0,2600, - 2601,5,67,0,0,2601,2602,5,76,0,0,2602,2603,5,65,0,0,2603,2604,5,82,0,0, - 2604,2605,5,69,0,0,2605,460,1,0,0,0,2606,2607,5,68,0,0,2607,2608,5,69,0, - 0,2608,2609,5,70,0,0,2609,2610,5,65,0,0,2610,2611,5,85,0,0,2611,2612,5, - 76,0,0,2612,2613,5,84,0,0,2613,462,1,0,0,0,2614,2615,5,68,0,0,2615,2616, - 5,69,0,0,2616,2617,5,70,0,0,2617,2618,5,73,0,0,2618,2619,5,78,0,0,2619, - 2620,5,69,0,0,2620,464,1,0,0,0,2621,2622,5,68,0,0,2622,2623,5,69,0,0,2623, - 2624,5,76,0,0,2624,2625,5,69,0,0,2625,2626,5,84,0,0,2626,2627,5,69,0,0, - 2627,466,1,0,0,0,2628,2629,5,68,0,0,2629,2630,5,69,0,0,2630,2631,5,83,0, - 0,2631,2632,5,67,0,0,2632,2633,5,82,0,0,2633,2634,5,73,0,0,2634,2635,5, - 66,0,0,2635,2636,5,69,0,0,2636,468,1,0,0,0,2637,2638,5,68,0,0,2638,2639, - 5,73,0,0,2639,2640,5,83,0,0,2640,2641,5,84,0,0,2641,2642,5,73,0,0,2642, - 2643,5,78,0,0,2643,2644,5,67,0,0,2644,2645,5,84,0,0,2645,470,1,0,0,0,2646, - 2647,5,68,0,0,2647,2648,5,79,0,0,2648,2649,5,85,0,0,2649,2650,5,66,0,0, - 2650,2651,5,76,0,0,2651,2652,5,69,0,0,2652,472,1,0,0,0,2653,2654,5,68,0, - 0,2654,2655,5,82,0,0,2655,2656,5,79,0,0,2656,2657,5,80,0,0,2657,474,1,0, - 0,0,2658,2659,5,69,0,0,2659,2660,5,65,0,0,2660,2661,5,67,0,0,2661,2662, - 5,72,0,0,2662,476,1,0,0,0,2663,2664,5,69,0,0,2664,2665,5,76,0,0,2665,2666, - 5,83,0,0,2666,2667,5,69,0,0,2667,478,1,0,0,0,2668,2669,5,69,0,0,2669,2670, - 5,78,0,0,2670,2671,5,68,0,0,2671,480,1,0,0,0,2672,2673,5,69,0,0,2673,2674, - 5,81,0,0,2674,2675,5,85,0,0,2675,2676,5,65,0,0,2676,2677,5,76,0,0,2677, - 2678,5,83,0,0,2678,482,1,0,0,0,2679,2680,5,69,0,0,2680,2681,5,83,0,0,2681, - 2682,5,67,0,0,2682,2683,5,65,0,0,2683,2684,5,80,0,0,2684,2685,5,69,0,0, - 2685,484,1,0,0,0,2686,2687,5,69,0,0,2687,2688,5,88,0,0,2688,2689,5,67,0, - 0,2689,2690,5,69,0,0,2690,2691,5,80,0,0,2691,2692,5,84,0,0,2692,486,1,0, - 0,0,2693,2694,5,69,0,0,2694,2695,5,88,0,0,2695,2696,5,69,0,0,2696,2697, - 5,67,0,0,2697,2698,5,85,0,0,2698,2699,5,84,0,0,2699,2700,5,69,0,0,2700, - 488,1,0,0,0,2701,2702,5,69,0,0,2702,2703,5,88,0,0,2703,2704,5,73,0,0,2704, - 2705,5,83,0,0,2705,2706,5,84,0,0,2706,2707,5,83,0,0,2707,490,1,0,0,0,2708, - 2709,5,69,0,0,2709,2710,5,88,0,0,2710,2711,5,80,0,0,2711,2712,5,76,0,0, - 2712,2713,5,65,0,0,2713,2714,5,73,0,0,2714,2715,5,78,0,0,2715,492,1,0,0, - 0,2716,2717,5,69,0,0,2717,2718,5,88,0,0,2718,2719,5,84,0,0,2719,2720,5, - 69,0,0,2720,2721,5,82,0,0,2721,2722,5,78,0,0,2722,2723,5,65,0,0,2723,2724, - 5,76,0,0,2724,494,1,0,0,0,2725,2726,5,69,0,0,2726,2727,5,88,0,0,2727,2728, - 5,84,0,0,2728,2729,5,82,0,0,2729,2730,5,65,0,0,2730,2731,5,67,0,0,2731, - 2732,5,84,0,0,2732,496,1,0,0,0,2733,2734,5,70,0,0,2734,2735,5,65,0,0,2735, - 2736,5,76,0,0,2736,2737,5,83,0,0,2737,2738,5,69,0,0,2738,498,1,0,0,0,2739, - 2740,5,70,0,0,2740,2741,5,76,0,0,2741,2742,5,79,0,0,2742,2743,5,65,0,0, - 2743,2744,5,84,0,0,2744,500,1,0,0,0,2745,2746,5,70,0,0,2746,2747,5,79,0, - 0,2747,2748,5,82,0,0,2748,502,1,0,0,0,2749,2750,5,70,0,0,2750,2751,5,82, - 0,0,2751,2752,5,79,0,0,2752,2753,5,77,0,0,2753,504,1,0,0,0,2754,2755,5, - 70,0,0,2755,2756,5,85,0,0,2756,2757,5,76,0,0,2757,2758,5,76,0,0,2758,506, - 1,0,0,0,2759,2760,5,70,0,0,2760,2761,5,85,0,0,2761,2762,5,78,0,0,2762,2763, - 5,67,0,0,2763,2764,5,84,0,0,2764,2765,5,73,0,0,2765,2766,5,79,0,0,2766, - 2767,5,78,0,0,2767,508,1,0,0,0,2768,2769,5,71,0,0,2769,2770,5,76,0,0,2770, - 2771,5,79,0,0,2771,2772,5,66,0,0,2772,2773,5,65,0,0,2773,2774,5,76,0,0, - 2774,510,1,0,0,0,2775,2776,5,71,0,0,2776,2777,5,82,0,0,2777,2778,5,65,0, - 0,2778,2779,5,78,0,0,2779,2780,5,84,0,0,2780,512,1,0,0,0,2781,2782,5,71, - 0,0,2782,2783,5,82,0,0,2783,2784,5,79,0,0,2784,2785,5,85,0,0,2785,2786, - 5,80,0,0,2786,514,1,0,0,0,2787,2788,5,71,0,0,2788,2789,5,82,0,0,2789,2790, - 5,79,0,0,2790,2791,5,85,0,0,2791,2792,5,80,0,0,2792,2793,5,73,0,0,2793, - 2794,5,78,0,0,2794,2795,5,71,0,0,2795,516,1,0,0,0,2796,2797,5,71,0,0,2797, - 2798,5,82,0,0,2798,2799,5,79,0,0,2799,2800,5,85,0,0,2800,2801,5,80,0,0, - 2801,2802,5,83,0,0,2802,518,1,0,0,0,2803,2804,5,72,0,0,2804,2805,5,65,0, - 0,2805,2806,5,86,0,0,2806,2807,5,73,0,0,2807,2808,5,78,0,0,2808,2809,5, - 71,0,0,2809,520,1,0,0,0,2810,2811,5,72,0,0,2811,2812,5,79,0,0,2812,2813, - 5,85,0,0,2813,2814,5,82,0,0,2814,522,1,0,0,0,2815,2816,5,73,0,0,2816,2817, - 5,77,0,0,2817,2818,5,80,0,0,2818,2819,5,79,0,0,2819,2820,5,82,0,0,2820, - 2821,5,84,0,0,2821,524,1,0,0,0,2822,2823,5,73,0,0,2823,2824,5,78,0,0,2824, - 526,1,0,0,0,2825,2826,5,73,0,0,2826,2827,5,78,0,0,2827,2828,5,67,0,0,2828, - 2829,5,76,0,0,2829,2830,5,85,0,0,2830,2831,5,68,0,0,2831,2832,5,73,0,0, - 2832,2833,5,78,0,0,2833,2834,5,71,0,0,2834,528,1,0,0,0,2835,2836,5,73,0, - 0,2836,2837,5,78,0,0,2837,2838,5,78,0,0,2838,2839,5,69,0,0,2839,2840,5, - 82,0,0,2840,530,1,0,0,0,2841,2842,5,73,0,0,2842,2843,5,78,0,0,2843,2844, - 5,79,0,0,2844,2845,5,85,0,0,2845,2846,5,84,0,0,2846,532,1,0,0,0,2847,2848, - 5,73,0,0,2848,2849,5,78,0,0,2849,2850,5,83,0,0,2850,2851,5,69,0,0,2851, - 2852,5,82,0,0,2852,2853,5,84,0,0,2853,534,1,0,0,0,2854,2855,5,73,0,0,2855, - 2856,5,78,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,71,0,0, - 2863,2864,5,69,0,0,2864,2865,5,82,0,0,2865,538,1,0,0,0,2866,2867,5,73,0, - 0,2867,2868,5,78,0,0,2868,2869,5,84,0,0,2869,2870,5,69,0,0,2870,2871,5, - 82,0,0,2871,2872,5,83,0,0,2872,2873,5,69,0,0,2873,2874,5,67,0,0,2874,2875, - 5,84,0,0,2875,540,1,0,0,0,2876,2877,5,73,0,0,2877,2878,5,78,0,0,2878,2879, - 5,84,0,0,2879,2880,5,69,0,0,2880,2881,5,82,0,0,2881,2882,5,86,0,0,2882, - 2883,5,65,0,0,2883,2884,5,76,0,0,2884,542,1,0,0,0,2885,2886,5,73,0,0,2886, - 2887,5,78,0,0,2887,2888,5,84,0,0,2888,2889,5,79,0,0,2889,544,1,0,0,0,2890, - 2891,5,73,0,0,2891,2892,5,83,0,0,2892,546,1,0,0,0,2893,2894,5,74,0,0,2894, - 2895,5,79,0,0,2895,2896,5,73,0,0,2896,2897,5,78,0,0,2897,548,1,0,0,0,2898, - 2899,5,76,0,0,2899,2900,5,65,0,0,2900,2901,5,71,0,0,2901,550,1,0,0,0,2902, - 2903,5,76,0,0,2903,2904,5,65,0,0,2904,2905,5,78,0,0,2905,2906,5,71,0,0, - 2906,2907,5,85,0,0,2907,2908,5,65,0,0,2908,2909,5,71,0,0,2909,2910,5,69, - 0,0,2910,552,1,0,0,0,2911,2912,5,76,0,0,2912,2913,5,65,0,0,2913,2914,5, - 84,0,0,2914,2915,5,69,0,0,2915,2916,5,82,0,0,2916,2917,5,65,0,0,2917,2918, - 5,76,0,0,2918,554,1,0,0,0,2919,2920,5,76,0,0,2920,2921,5,69,0,0,2921,2922, - 5,65,0,0,2922,2923,5,68,0,0,2923,2924,5,73,0,0,2924,2925,5,78,0,0,2925, - 2926,5,71,0,0,2926,556,1,0,0,0,2927,2928,5,76,0,0,2928,2929,5,69,0,0,2929, - 2930,5,70,0,0,2930,2931,5,84,0,0,2931,558,1,0,0,0,2932,2933,5,76,0,0,2933, - 2934,5,73,0,0,2934,2935,5,75,0,0,2935,2936,5,69,0,0,2936,560,1,0,0,0,2937, - 2938,5,76,0,0,2938,2939,5,73,0,0,2939,2940,5,77,0,0,2940,2941,5,73,0,0, - 2941,2942,5,84,0,0,2942,562,1,0,0,0,2943,2944,5,76,0,0,2944,2945,5,79,0, - 0,2945,2946,5,67,0,0,2946,2947,5,65,0,0,2947,2948,5,76,0,0,2948,564,1,0, - 0,0,2949,2950,5,77,0,0,2950,2951,5,65,0,0,2951,2952,5,84,0,0,2952,2953, - 5,67,0,0,2953,2954,5,72,0,0,2954,566,1,0,0,0,2955,2956,5,77,0,0,2956,2957, - 5,65,0,0,2957,2958,5,84,0,0,2958,2959,5,67,0,0,2959,2960,5,72,0,0,2960, - 2961,5,95,0,0,2961,2962,5,82,0,0,2962,2963,5,69,0,0,2963,2964,5,67,0,0, - 2964,2965,5,79,0,0,2965,2966,5,71,0,0,2966,2967,5,78,0,0,2967,2968,5,73, - 0,0,2968,2969,5,90,0,0,2969,2970,5,69,0,0,2970,568,1,0,0,0,2971,2972,5, - 77,0,0,2972,2973,5,69,0,0,2973,2974,5,65,0,0,2974,2975,5,83,0,0,2975,2976, - 5,85,0,0,2976,2977,5,82,0,0,2977,2978,5,69,0,0,2978,2979,5,83,0,0,2979, - 570,1,0,0,0,2980,2981,5,77,0,0,2981,2982,5,69,0,0,2982,2983,5,82,0,0,2983, - 2984,5,71,0,0,2984,2985,5,69,0,0,2985,572,1,0,0,0,2986,2987,5,77,0,0,2987, - 2988,5,69,0,0,2988,2989,5,84,0,0,2989,2990,5,65,0,0,2990,2991,5,68,0,0, - 2991,2992,5,65,0,0,2992,2993,5,84,0,0,2993,2994,5,65,0,0,2994,574,1,0,0, - 0,2995,2996,5,77,0,0,2996,2997,5,73,0,0,2997,2998,5,78,0,0,2998,2999,5, - 85,0,0,2999,3000,5,83,0,0,3000,576,1,0,0,0,3001,3002,5,77,0,0,3002,3003, - 5,73,0,0,3003,3004,5,78,0,0,3004,3005,5,85,0,0,3005,3006,5,84,0,0,3006, - 3007,5,69,0,0,3007,578,1,0,0,0,3008,3009,5,77,0,0,3009,3010,5,79,0,0,3010, - 3011,5,68,0,0,3011,3012,5,73,0,0,3012,3013,5,70,0,0,3013,3014,5,73,0,0, - 3014,3015,5,69,0,0,3015,3016,5,83,0,0,3016,580,1,0,0,0,3017,3018,5,77,0, - 0,3018,3019,5,79,0,0,3019,3020,5,68,0,0,3020,3021,5,85,0,0,3021,3022,5, - 76,0,0,3022,3023,5,69,0,0,3023,582,1,0,0,0,3024,3025,5,77,0,0,3025,3026, - 5,79,0,0,3026,3027,5,78,0,0,3027,3028,5,84,0,0,3028,3029,5,72,0,0,3029, - 584,1,0,0,0,3030,3031,5,77,0,0,3031,3032,5,85,0,0,3032,3033,5,76,0,0,3033, - 3034,5,84,0,0,3034,3035,5,73,0,0,3035,3036,5,83,0,0,3036,3037,5,69,0,0, - 3037,3038,5,84,0,0,3038,586,1,0,0,0,3039,3040,5,78,0,0,3040,3041,5,65,0, - 0,3041,3042,5,84,0,0,3042,3043,5,85,0,0,3043,3044,5,82,0,0,3044,3045,5, - 65,0,0,3045,3046,5,76,0,0,3046,588,1,0,0,0,3047,3048,5,78,0,0,3048,3049, - 5,69,0,0,3049,3050,5,88,0,0,3050,3051,5,84,0,0,3051,590,1,0,0,0,3052,3053, - 5,78,0,0,3053,3054,5,79,0,0,3054,592,1,0,0,0,3055,3056,5,78,0,0,3056,3057, - 5,79,0,0,3057,3058,5,78,0,0,3058,3059,5,69,0,0,3059,594,1,0,0,0,3060,3061, - 5,78,0,0,3061,3062,5,79,0,0,3062,3063,5,84,0,0,3063,596,1,0,0,0,3064,3065, - 5,78,0,0,3065,3066,5,85,0,0,3066,3067,5,76,0,0,3067,3068,5,76,0,0,3068, - 598,1,0,0,0,3069,3070,5,78,0,0,3070,3071,5,85,0,0,3071,3072,5,77,0,0,3072, - 3073,5,69,0,0,3073,3074,5,82,0,0,3074,3075,5,73,0,0,3075,3076,5,67,0,0, - 3076,600,1,0,0,0,3077,3078,5,79,0,0,3078,3079,5,70,0,0,3079,602,1,0,0,0, - 3080,3081,5,79,0,0,3081,3082,5,70,0,0,3082,3083,5,70,0,0,3083,3084,5,83, - 0,0,3084,3085,5,69,0,0,3085,3086,5,84,0,0,3086,604,1,0,0,0,3087,3088,5, - 79,0,0,3088,3089,5,78,0,0,3089,606,1,0,0,0,3090,3091,5,79,0,0,3091,3092, - 5,78,0,0,3092,3093,5,69,0,0,3093,608,1,0,0,0,3094,3095,5,79,0,0,3095,3096, - 5,82,0,0,3096,610,1,0,0,0,3097,3098,5,79,0,0,3098,3099,5,82,0,0,3099,3100, - 5,68,0,0,3100,3101,5,69,0,0,3101,3102,5,82,0,0,3102,612,1,0,0,0,3103,3104, - 5,79,0,0,3104,3105,5,85,0,0,3105,3106,5,84,0,0,3106,614,1,0,0,0,3107,3108, - 5,79,0,0,3108,3109,5,85,0,0,3109,3110,5,84,0,0,3110,3111,5,69,0,0,3111, - 3112,5,82,0,0,3112,616,1,0,0,0,3113,3114,5,79,0,0,3114,3115,5,86,0,0,3115, - 3116,5,69,0,0,3116,3117,5,82,0,0,3117,618,1,0,0,0,3118,3119,5,79,0,0,3119, - 3120,5,86,0,0,3120,3121,5,69,0,0,3121,3122,5,82,0,0,3122,3123,5,76,0,0, - 3123,3124,5,65,0,0,3124,3125,5,89,0,0,3125,620,1,0,0,0,3126,3127,5,80,0, - 0,3127,3128,5,65,0,0,3128,3129,5,82,0,0,3129,3130,5,84,0,0,3130,3131,5, - 73,0,0,3131,3132,5,84,0,0,3132,3133,5,73,0,0,3133,3134,5,79,0,0,3134,3135, - 5,78,0,0,3135,622,1,0,0,0,3136,3137,5,80,0,0,3137,3138,5,65,0,0,3138,3139, - 5,84,0,0,3139,3140,5,84,0,0,3140,3141,5,69,0,0,3141,3142,5,82,0,0,3142, - 3143,5,78,0,0,3143,624,1,0,0,0,3144,3145,5,80,0,0,3145,3146,5,69,0,0,3146, - 3147,5,82,0,0,3147,626,1,0,0,0,3148,3149,5,80,0,0,3149,3150,5,69,0,0,3150, - 3151,5,82,0,0,3151,3152,5,67,0,0,3152,3153,5,69,0,0,3153,3154,5,78,0,0, - 3154,3155,5,84,0,0,3155,628,1,0,0,0,3156,3157,5,80,0,0,3157,3158,5,69,0, - 0,3158,3159,5,82,0,0,3159,3160,5,73,0,0,3160,3161,5,79,0,0,3161,3162,5, - 68,0,0,3162,630,1,0,0,0,3163,3164,5,80,0,0,3164,3165,5,79,0,0,3165,3166, - 5,83,0,0,3166,3167,5,73,0,0,3167,3168,5,84,0,0,3168,3169,5,73,0,0,3169, - 3170,5,79,0,0,3170,3171,5,78,0,0,3171,632,1,0,0,0,3172,3173,5,80,0,0,3173, - 3174,5,79,0,0,3174,3175,5,87,0,0,3175,3176,5,69,0,0,3176,3177,5,82,0,0, - 3177,634,1,0,0,0,3178,3179,5,80,0,0,3179,3180,5,82,0,0,3180,3181,5,73,0, - 0,3181,3182,5,77,0,0,3182,3183,5,65,0,0,3183,3184,5,82,0,0,3184,3185,5, - 89,0,0,3185,636,1,0,0,0,3186,3187,5,82,0,0,3187,3188,5,65,0,0,3188,3189, - 5,78,0,0,3189,3190,5,71,0,0,3190,3191,5,69,0,0,3191,638,1,0,0,0,3192,3193, - 5,82,0,0,3193,3194,5,65,0,0,3194,3195,5,78,0,0,3195,3196,5,75,0,0,3196, - 640,1,0,0,0,3197,3198,5,82,0,0,3198,3199,5,69,0,0,3199,3200,5,83,0,0,3200, - 3201,5,69,0,0,3201,3202,5,84,0,0,3202,642,1,0,0,0,3203,3204,5,82,0,0,3204, - 3205,5,69,0,0,3205,3206,5,86,0,0,3206,3207,5,79,0,0,3207,3208,5,75,0,0, - 3208,3209,5,69,0,0,3209,644,1,0,0,0,3210,3211,5,82,0,0,3211,3212,5,73,0, - 0,3212,3213,5,71,0,0,3213,3214,5,72,0,0,3214,3215,5,84,0,0,3215,646,1,0, - 0,0,3216,3217,5,82,0,0,3217,3218,5,76,0,0,3218,3219,5,73,0,0,3219,3220, - 5,75,0,0,3220,3221,5,69,0,0,3221,648,1,0,0,0,3222,3223,5,82,0,0,3223,3224, - 5,79,0,0,3224,3225,5,76,0,0,3225,3226,5,76,0,0,3226,3227,5,66,0,0,3227, - 3228,5,65,0,0,3228,3229,5,67,0,0,3229,3230,5,75,0,0,3230,650,1,0,0,0,3231, - 3232,5,82,0,0,3232,3233,5,79,0,0,3233,3234,5,76,0,0,3234,3235,5,76,0,0, - 3235,3236,5,85,0,0,3236,3237,5,80,0,0,3237,652,1,0,0,0,3238,3239,5,82,0, - 0,3239,3240,5,79,0,0,3240,3241,5,87,0,0,3241,654,1,0,0,0,3242,3243,5,82, - 0,0,3243,3244,5,79,0,0,3244,3245,5,87,0,0,3245,3246,5,83,0,0,3246,656,1, - 0,0,0,3247,3248,5,83,0,0,3248,3249,5,69,0,0,3249,3250,5,67,0,0,3250,3251, - 5,79,0,0,3251,3252,5,78,0,0,3252,3253,5,68,0,0,3253,658,1,0,0,0,3254,3255, - 5,83,0,0,3255,3256,5,69,0,0,3256,3257,5,76,0,0,3257,3258,5,69,0,0,3258, - 3259,5,67,0,0,3259,3260,5,84,0,0,3260,660,1,0,0,0,3261,3262,5,83,0,0,3262, - 3263,5,69,0,0,3263,3264,5,84,0,0,3264,662,1,0,0,0,3265,3266,5,83,0,0,3266, - 3267,5,72,0,0,3267,3268,5,79,0,0,3268,3269,5,87,0,0,3269,664,1,0,0,0,3270, - 3271,5,83,0,0,3271,3272,5,73,0,0,3272,3273,5,77,0,0,3273,3274,5,73,0,0, - 3274,3275,5,76,0,0,3275,3276,5,65,0,0,3276,3277,5,82,0,0,3277,666,1,0,0, - 0,3278,3279,5,83,0,0,3279,3280,5,75,0,0,3280,3281,5,73,0,0,3281,3282,5, - 80,0,0,3282,668,1,0,0,0,3283,3284,5,83,0,0,3284,3285,5,77,0,0,3285,3286, - 5,65,0,0,3286,3287,5,76,0,0,3287,3288,5,76,0,0,3288,3289,5,73,0,0,3289, - 3290,5,78,0,0,3290,3291,5,84,0,0,3291,670,1,0,0,0,3292,3293,5,83,0,0,3293, - 3294,5,84,0,0,3294,3295,5,65,0,0,3295,3296,5,82,0,0,3296,3297,5,84,0,0, - 3297,672,1,0,0,0,3298,3299,5,83,0,0,3299,3300,5,84,0,0,3300,3301,5,65,0, - 0,3301,3302,5,84,0,0,3302,3303,5,73,0,0,3303,3304,5,67,0,0,3304,674,1,0, - 0,0,3305,3306,5,83,0,0,3306,3307,5,85,0,0,3307,3308,5,66,0,0,3308,3309, - 5,83,0,0,3309,3310,5,84,0,0,3310,3311,5,82,0,0,3311,3312,5,73,0,0,3312, - 3313,5,78,0,0,3313,3314,5,71,0,0,3314,676,1,0,0,0,3315,3316,5,83,0,0,3316, - 3317,5,85,0,0,3317,3318,5,77,0,0,3318,678,1,0,0,0,3319,3320,5,83,0,0,3320, - 3321,5,89,0,0,3321,3322,5,77,0,0,3322,3323,5,77,0,0,3323,3324,5,69,0,0, - 3324,3325,5,84,0,0,3325,3326,5,82,0,0,3326,3327,5,73,0,0,3327,3328,5,67, - 0,0,3328,680,1,0,0,0,3329,3330,5,83,0,0,3330,3331,5,89,0,0,3331,3332,5, - 83,0,0,3332,3333,5,84,0,0,3333,3334,5,69,0,0,3334,3335,5,77,0,0,3335,682, - 1,0,0,0,3336,3337,5,83,0,0,3337,3338,5,89,0,0,3338,3339,5,83,0,0,3339,3340, - 5,84,0,0,3340,3341,5,69,0,0,3341,3342,5,77,0,0,3342,3343,5,95,0,0,3343, - 3344,5,84,0,0,3344,3345,5,73,0,0,3345,3346,5,77,0,0,3346,3347,5,69,0,0, - 3347,684,1,0,0,0,3348,3349,5,83,0,0,3349,3350,5,89,0,0,3350,3351,5,83,0, - 0,3351,3352,5,84,0,0,3352,3353,5,69,0,0,3353,3354,5,77,0,0,3354,3355,5, - 95,0,0,3355,3356,5,85,0,0,3356,3357,5,83,0,0,3357,3358,5,69,0,0,3358,3359, - 5,82,0,0,3359,686,1,0,0,0,3360,3361,5,84,0,0,3361,3362,5,65,0,0,3362,3363, - 5,66,0,0,3363,3364,5,76,0,0,3364,3365,5,69,0,0,3365,688,1,0,0,0,3366,3367, - 5,84,0,0,3367,3368,5,65,0,0,3368,3369,5,66,0,0,3369,3370,5,76,0,0,3370, - 3371,5,69,0,0,3371,3372,5,83,0,0,3372,3373,5,65,0,0,3373,3374,5,77,0,0, - 3374,3375,5,80,0,0,3375,3376,5,76,0,0,3376,3377,5,69,0,0,3377,690,1,0,0, - 0,3378,3379,5,84,0,0,3379,3380,5,72,0,0,3380,3381,5,69,0,0,3381,3382,5, - 78,0,0,3382,692,1,0,0,0,3383,3384,5,84,0,0,3384,3385,5,73,0,0,3385,3386, - 5,77,0,0,3386,3387,5,69,0,0,3387,694,1,0,0,0,3388,3389,5,84,0,0,3389,3390, - 5,73,0,0,3390,3391,5,77,0,0,3391,3392,5,69,0,0,3392,3393,5,83,0,0,3393, - 3394,5,84,0,0,3394,3395,5,65,0,0,3395,3396,5,77,0,0,3396,3397,5,80,0,0, - 3397,696,1,0,0,0,3398,3399,5,84,0,0,3399,3400,5,73,0,0,3400,3401,5,78,0, - 0,3401,3402,5,89,0,0,3402,3403,5,73,0,0,3403,3404,5,78,0,0,3404,3405,5, - 84,0,0,3405,698,1,0,0,0,3406,3407,5,84,0,0,3407,3408,5,79,0,0,3408,700, - 1,0,0,0,3409,3410,5,84,0,0,3410,3411,5,82,0,0,3411,3412,5,65,0,0,3412,3413, - 5,73,0,0,3413,3414,5,76,0,0,3414,3415,5,73,0,0,3415,3416,5,78,0,0,3416, - 3417,5,71,0,0,3417,702,1,0,0,0,3418,3419,5,84,0,0,3419,3420,5,82,0,0,3420, - 3421,5,85,0,0,3421,3422,5,69,0,0,3422,704,1,0,0,0,3423,3424,5,84,0,0,3424, - 3425,5,82,0,0,3425,3426,5,85,0,0,3426,3427,5,78,0,0,3427,3428,5,67,0,0, - 3428,3429,5,65,0,0,3429,3430,5,84,0,0,3430,3431,5,69,0,0,3431,706,1,0,0, - 0,3432,3433,5,85,0,0,3433,3434,5,78,0,0,3434,3435,5,73,0,0,3435,3436,5, - 79,0,0,3436,3437,5,78,0,0,3437,708,1,0,0,0,3438,3439,5,85,0,0,3439,3440, - 5,78,0,0,3440,3441,5,73,0,0,3441,3442,5,81,0,0,3442,3443,5,85,0,0,3443, - 3444,5,69,0,0,3444,710,1,0,0,0,3445,3446,5,85,0,0,3446,3447,5,78,0,0,3447, - 3448,5,75,0,0,3448,3449,5,78,0,0,3449,3450,5,79,0,0,3450,3451,5,87,0,0, - 3451,3452,5,78,0,0,3452,712,1,0,0,0,3453,3454,5,85,0,0,3454,3455,5,78,0, - 0,3455,3456,5,78,0,0,3456,3457,5,69,0,0,3457,3458,5,83,0,0,3458,3459,5, - 84,0,0,3459,714,1,0,0,0,3460,3461,5,85,0,0,3461,3462,5,80,0,0,3462,3463, - 5,80,0,0,3463,3464,5,69,0,0,3464,3465,5,82,0,0,3465,716,1,0,0,0,3466,3467, - 5,85,0,0,3467,3468,5,80,0,0,3468,3469,5,83,0,0,3469,3470,5,69,0,0,3470, - 3471,5,82,0,0,3471,3472,5,84,0,0,3472,718,1,0,0,0,3473,3474,5,85,0,0,3474, - 3475,5,83,0,0,3475,3476,5,69,0,0,3476,3477,5,82,0,0,3477,720,1,0,0,0,3478, - 3479,5,85,0,0,3479,3480,5,83,0,0,3480,3481,5,73,0,0,3481,3482,5,78,0,0, - 3482,3483,5,71,0,0,3483,722,1,0,0,0,3484,3485,5,86,0,0,3485,3486,5,65,0, - 0,3486,3487,5,76,0,0,3487,3488,5,85,0,0,3488,3489,5,69,0,0,3489,724,1,0, - 0,0,3490,3491,5,86,0,0,3491,3492,5,65,0,0,3492,3493,5,76,0,0,3493,3494, - 5,85,0,0,3494,3495,5,69,0,0,3495,3496,5,83,0,0,3496,726,1,0,0,0,3497,3498, - 5,86,0,0,3498,3499,5,65,0,0,3499,3500,5,82,0,0,3500,3501,5,66,0,0,3501, - 3502,5,73,0,0,3502,3503,5,78,0,0,3503,3504,5,65,0,0,3504,3505,5,82,0,0, - 3505,3506,5,89,0,0,3506,728,1,0,0,0,3507,3508,5,86,0,0,3508,3509,5,65,0, - 0,3509,3510,5,82,0,0,3510,3511,5,67,0,0,3511,3512,5,72,0,0,3512,3513,5, - 65,0,0,3513,3514,5,82,0,0,3514,730,1,0,0,0,3515,3516,5,87,0,0,3516,3517, - 5,72,0,0,3517,3518,5,69,0,0,3518,3519,5,78,0,0,3519,732,1,0,0,0,3520,3521, - 5,87,0,0,3521,3522,5,72,0,0,3522,3523,5,69,0,0,3523,3524,5,82,0,0,3524, - 3525,5,69,0,0,3525,734,1,0,0,0,3526,3527,5,87,0,0,3527,3528,5,73,0,0,3528, - 3529,5,78,0,0,3529,3530,5,68,0,0,3530,3531,5,79,0,0,3531,3532,5,87,0,0, - 3532,736,1,0,0,0,3533,3534,5,87,0,0,3534,3535,5,73,0,0,3535,3536,5,84,0, - 0,3536,3537,5,72,0,0,3537,738,1,0,0,0,3538,3539,5,87,0,0,3539,3540,5,73, - 0,0,3540,3541,5,84,0,0,3541,3542,5,72,0,0,3542,3543,5,73,0,0,3543,3544, - 5,78,0,0,3544,740,1,0,0,0,3545,3546,5,87,0,0,3546,3547,5,73,0,0,3547,3548, - 5,84,0,0,3548,3549,5,72,0,0,3549,3550,5,79,0,0,3550,3551,5,85,0,0,3551, - 3552,5,84,0,0,3552,742,1,0,0,0,3553,3554,5,89,0,0,3554,3555,5,69,0,0,3555, - 3556,5,65,0,0,3556,3557,5,82,0,0,3557,744,1,0,0,0,3558,3559,5,61,0,0,3559, - 746,1,0,0,0,3560,3561,5,62,0,0,3561,748,1,0,0,0,3562,3563,5,60,0,0,3563, - 750,1,0,0,0,3564,3565,5,33,0,0,3565,752,1,0,0,0,3566,3567,5,126,0,0,3567, - 754,1,0,0,0,3568,3569,5,124,0,0,3569,756,1,0,0,0,3570,3571,5,38,0,0,3571, - 758,1,0,0,0,3572,3573,5,94,0,0,3573,760,1,0,0,0,3574,3575,5,46,0,0,3575, - 762,1,0,0,0,3576,3577,5,91,0,0,3577,764,1,0,0,0,3578,3579,5,93,0,0,3579, - 766,1,0,0,0,3580,3581,5,40,0,0,3581,768,1,0,0,0,3582,3583,5,41,0,0,3583, - 770,1,0,0,0,3584,3585,5,123,0,0,3585,772,1,0,0,0,3586,3587,5,125,0,0,3587, - 774,1,0,0,0,3588,3589,5,44,0,0,3589,776,1,0,0,0,3590,3591,5,59,0,0,3591, - 778,1,0,0,0,3592,3593,5,64,0,0,3593,780,1,0,0,0,3594,3595,5,39,0,0,3595, - 782,1,0,0,0,3596,3597,5,34,0,0,3597,784,1,0,0,0,3598,3599,5,96,0,0,3599, - 786,1,0,0,0,3600,3601,5,58,0,0,3601,788,1,0,0,0,3602,3603,5,42,0,0,3603, - 790,1,0,0,0,3604,3605,5,95,0,0,3605,792,1,0,0,0,3606,3607,5,45,0,0,3607, - 794,1,0,0,0,3608,3609,5,43,0,0,3609,796,1,0,0,0,3610,3611,5,37,0,0,3611, - 798,1,0,0,0,3612,3613,5,124,0,0,3613,3614,5,124,0,0,3614,800,1,0,0,0,3615, - 3616,5,45,0,0,3616,3617,5,45,0,0,3617,802,1,0,0,0,3618,3619,5,47,0,0,3619, - 804,1,0,0,0,3620,3621,5,63,0,0,3621,806,1,0,0,0,3622,3623,5,61,0,0,3623, - 3624,5,62,0,0,3624,808,1,0,0,0,3625,3629,3,833,416,0,3626,3629,3,835,417, - 0,3627,3629,3,839,419,0,3628,3625,1,0,0,0,3628,3626,1,0,0,0,3628,3627,1, - 0,0,0,3629,810,1,0,0,0,3630,3632,3,829,414,0,3631,3630,1,0,0,0,3632,3633, - 1,0,0,0,3633,3631,1,0,0,0,3633,3634,1,0,0,0,3634,812,1,0,0,0,3635,3637, - 3,829,414,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,3641,1,0,0,0,3640,3636,1,0,0,0,3640,3641,1,0,0,0,3641, - 3642,1,0,0,0,3642,3644,5,46,0,0,3643,3645,3,829,414,0,3644,3643,1,0,0,0, - 3645,3646,1,0,0,0,3646,3644,1,0,0,0,3646,3647,1,0,0,0,3647,3679,1,0,0,0, - 3648,3650,3,829,414,0,3649,3648,1,0,0,0,3650,3651,1,0,0,0,3651,3649,1,0, - 0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653,3654,5,46,0,0,3654,3655,3, - 825,412,0,3655,3679,1,0,0,0,3656,3658,3,829,414,0,3657,3656,1,0,0,0,3658, - 3659,1,0,0,0,3659,3657,1,0,0,0,3659,3660,1,0,0,0,3660,3662,1,0,0,0,3661, - 3657,1,0,0,0,3661,3662,1,0,0,0,3662,3663,1,0,0,0,3663,3665,5,46,0,0,3664, - 3666,3,829,414,0,3665,3664,1,0,0,0,3666,3667,1,0,0,0,3667,3665,1,0,0,0, - 3667,3668,1,0,0,0,3668,3669,1,0,0,0,3669,3670,3,825,412,0,3670,3679,1,0, - 0,0,3671,3673,3,829,414,0,3672,3671,1,0,0,0,3673,3674,1,0,0,0,3674,3672, - 1,0,0,0,3674,3675,1,0,0,0,3675,3676,1,0,0,0,3676,3677,3,825,412,0,3677, - 3679,1,0,0,0,3678,3640,1,0,0,0,3678,3649,1,0,0,0,3678,3661,1,0,0,0,3678, - 3672,1,0,0,0,3679,814,1,0,0,0,3680,3681,3,837,418,0,3681,816,1,0,0,0,3682, - 3683,3,827,413,0,3683,818,1,0,0,0,3684,3685,3,821,410,0,3685,820,1,0,0, - 0,3686,3690,7,2,0,0,3687,3689,8,3,0,0,3688,3687,1,0,0,0,3689,3692,1,0,0, - 0,3690,3688,1,0,0,0,3690,3691,1,0,0,0,3691,3694,1,0,0,0,3692,3690,1,0,0, - 0,3693,3686,1,0,0,0,3694,3695,1,0,0,0,3695,3693,1,0,0,0,3695,3696,1,0,0, - 0,3696,822,1,0,0,0,3697,3705,5,96,0,0,3698,3699,5,92,0,0,3699,3704,9,0, - 0,0,3700,3701,5,96,0,0,3701,3704,5,96,0,0,3702,3704,8,4,0,0,3703,3698,1, - 0,0,0,3703,3700,1,0,0,0,3703,3702,1,0,0,0,3704,3707,1,0,0,0,3705,3703,1, - 0,0,0,3705,3706,1,0,0,0,3706,3708,1,0,0,0,3707,3705,1,0,0,0,3708,3709,5, - 96,0,0,3709,824,1,0,0,0,3710,3712,5,69,0,0,3711,3713,7,5,0,0,3712,3711, - 1,0,0,0,3712,3713,1,0,0,0,3713,3715,1,0,0,0,3714,3716,3,829,414,0,3715, - 3714,1,0,0,0,3716,3717,1,0,0,0,3717,3715,1,0,0,0,3717,3718,1,0,0,0,3718, - 826,1,0,0,0,3719,3721,7,6,0,0,3720,3719,1,0,0,0,3721,3724,1,0,0,0,3722, - 3723,1,0,0,0,3722,3720,1,0,0,0,3723,3726,1,0,0,0,3724,3722,1,0,0,0,3725, - 3727,7,7,0,0,3726,3725,1,0,0,0,3727,3728,1,0,0,0,3728,3729,1,0,0,0,3728, - 3726,1,0,0,0,3729,3733,1,0,0,0,3730,3732,7,6,0,0,3731,3730,1,0,0,0,3732, - 3735,1,0,0,0,3733,3731,1,0,0,0,3733,3734,1,0,0,0,3734,828,1,0,0,0,3735, - 3733,1,0,0,0,3736,3737,7,8,0,0,3737,830,1,0,0,0,3738,3739,7,9,0,0,3739, - 832,1,0,0,0,3740,3748,5,34,0,0,3741,3742,5,92,0,0,3742,3747,9,0,0,0,3743, - 3744,5,34,0,0,3744,3747,5,34,0,0,3745,3747,8,10,0,0,3746,3741,1,0,0,0,3746, - 3743,1,0,0,0,3746,3745,1,0,0,0,3747,3750,1,0,0,0,3748,3746,1,0,0,0,3748, - 3749,1,0,0,0,3749,3751,1,0,0,0,3750,3748,1,0,0,0,3751,3752,5,34,0,0,3752, - 834,1,0,0,0,3753,3761,5,39,0,0,3754,3755,5,92,0,0,3755,3760,9,0,0,0,3756, - 3757,5,39,0,0,3757,3760,5,39,0,0,3758,3760,8,11,0,0,3759,3754,1,0,0,0,3759, - 3756,1,0,0,0,3759,3758,1,0,0,0,3760,3763,1,0,0,0,3761,3759,1,0,0,0,3761, - 3762,1,0,0,0,3762,3764,1,0,0,0,3763,3761,1,0,0,0,3764,3765,5,39,0,0,3765, - 836,1,0,0,0,3766,3767,5,66,0,0,3767,3769,5,39,0,0,3768,3770,7,12,0,0,3769, - 3768,1,0,0,0,3770,3771,1,0,0,0,3771,3769,1,0,0,0,3771,3772,1,0,0,0,3772, - 3773,1,0,0,0,3773,3774,5,39,0,0,3774,838,1,0,0,0,3775,3783,5,96,0,0,3776, - 3777,5,92,0,0,3777,3782,9,0,0,0,3778,3779,5,96,0,0,3779,3782,5,96,0,0,3780, - 3782,8,4,0,0,3781,3776,1,0,0,0,3781,3778,1,0,0,0,3781,3780,1,0,0,0,3782, - 3785,1,0,0,0,3783,3781,1,0,0,0,3783,3784,1,0,0,0,3784,3786,1,0,0,0,3785, - 3783,1,0,0,0,3786,3787,5,96,0,0,3787,840,1,0,0,0,37,0,844,854,865,870,874, - 878,884,888,890,3628,3633,3638,3640,3646,3651,3659,3661,3667,3674,3678, - 3690,3695,3703,3705,3712,3717,3722,3728,3733,3746,3748,3759,3761,3771,3781, - 3783,1,0,1,0]; + 1,409,1,409,1,410,1,410,5,410,3689,8,410,10,410,12,410,3692,9,410,1,411, + 1,411,1,411,1,411,1,411,1,411,5,411,3700,8,411,10,411,12,411,3703,9,411, + 1,411,1,411,1,412,1,412,3,412,3709,8,412,1,412,4,412,3712,8,412,11,412, + 12,412,3713,1,413,5,413,3717,8,413,10,413,12,413,3720,9,413,1,413,4,413, + 3723,8,413,11,413,12,413,3724,1,413,5,413,3728,8,413,10,413,12,413,3731, + 9,413,1,414,1,414,1,415,1,415,1,416,1,416,1,416,1,416,1,416,1,416,5,416, + 3743,8,416,10,416,12,416,3746,9,416,1,416,1,416,1,417,1,417,1,417,1,417, + 1,417,1,417,5,417,3756,8,417,10,417,12,417,3759,9,417,1,417,1,417,1,418, + 1,418,1,418,4,418,3766,8,418,11,418,12,418,3767,1,418,1,418,1,419,1,419, + 1,419,1,419,1,419,1,419,5,419,3778,8,419,10,419,12,419,3781,9,419,1,419, + 1,419,3,854,3718,3724,0,420,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,408,817,409,819,410,821,0,823,0,825,0,827,0,829, + 0,831,0,833,0,835,0,837,0,839,0,1,0,13,3,0,9,10,13,13,32,32,2,0,10,10,13, + 13,2,0,47,47,92,92,5,0,32,32,40,41,47,47,59,59,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,3815,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,0,815,1,0,0,0,0,817,1,0,0,0,0,819,1,0,0,0,1,842,1,0,0,0,3,848,1,0,0, + 0,5,890,1,0,0,0,7,894,1,0,0,0,9,898,1,0,0,0,11,904,1,0,0,0,13,910,1,0,0, + 0,15,918,1,0,0,0,17,922,1,0,0,0,19,929,1,0,0,0,21,935,1,0,0,0,23,943,1, + 0,0,0,25,951,1,0,0,0,27,960,1,0,0,0,29,968,1,0,0,0,31,974,1,0,0,0,33,989, + 1,0,0,0,35,1000,1,0,0,0,37,1008,1,0,0,0,39,1016,1,0,0,0,41,1024,1,0,0,0, + 43,1036,1,0,0,0,45,1048,1,0,0,0,47,1057,1,0,0,0,49,1062,1,0,0,0,51,1071, + 1,0,0,0,53,1081,1,0,0,0,55,1086,1,0,0,0,57,1093,1,0,0,0,59,1101,1,0,0,0, + 61,1106,1,0,0,0,63,1117,1,0,0,0,65,1121,1,0,0,0,67,1130,1,0,0,0,69,1139, + 1,0,0,0,71,1146,1,0,0,0,73,1152,1,0,0,0,75,1158,1,0,0,0,77,1173,1,0,0,0, + 79,1183,1,0,0,0,81,1191,1,0,0,0,83,1201,1,0,0,0,85,1210,1,0,0,0,87,1215, + 1,0,0,0,89,1221,1,0,0,0,91,1227,1,0,0,0,93,1237,1,0,0,0,95,1244,1,0,0,0, + 97,1252,1,0,0,0,99,1258,1,0,0,0,101,1270,1,0,0,0,103,1280,1,0,0,0,105,1288, + 1,0,0,0,107,1298,1,0,0,0,109,1301,1,0,0,0,111,1306,1,0,0,0,113,1314,1,0, + 0,0,115,1318,1,0,0,0,117,1324,1,0,0,0,119,1327,1,0,0,0,121,1334,1,0,0,0, + 123,1344,1,0,0,0,125,1350,1,0,0,0,127,1358,1,0,0,0,129,1362,1,0,0,0,131, + 1367,1,0,0,0,133,1372,1,0,0,0,135,1377,1,0,0,0,137,1397,1,0,0,0,139,1401, + 1,0,0,0,141,1412,1,0,0,0,143,1421,1,0,0,0,145,1427,1,0,0,0,147,1432,1,0, + 0,0,149,1439,1,0,0,0,151,1445,1,0,0,0,153,1450,1,0,0,0,155,1454,1,0,0,0, + 157,1466,1,0,0,0,159,1477,1,0,0,0,161,1489,1,0,0,0,163,1497,1,0,0,0,165, + 1506,1,0,0,0,167,1513,1,0,0,0,169,1521,1,0,0,0,171,1528,1,0,0,0,173,1539, + 1,0,0,0,175,1545,1,0,0,0,177,1552,1,0,0,0,179,1559,1,0,0,0,181,1567,1,0, + 0,0,183,1576,1,0,0,0,185,1583,1,0,0,0,187,1593,1,0,0,0,189,1605,1,0,0,0, + 191,1617,1,0,0,0,193,1628,1,0,0,0,195,1636,1,0,0,0,197,1641,1,0,0,0,199, + 1646,1,0,0,0,201,1654,1,0,0,0,203,1659,1,0,0,0,205,1669,1,0,0,0,207,1678, + 1,0,0,0,209,1684,1,0,0,0,211,1695,1,0,0,0,213,1702,1,0,0,0,215,1709,1,0, + 0,0,217,1722,1,0,0,0,219,1742,1,0,0,0,221,1762,1,0,0,0,223,1773,1,0,0,0, + 225,1789,1,0,0,0,227,1806,1,0,0,0,229,1814,1,0,0,0,231,1818,1,0,0,0,233, + 1823,1,0,0,0,235,1832,1,0,0,0,237,1839,1,0,0,0,239,1846,1,0,0,0,241,1854, + 1,0,0,0,243,1862,1,0,0,0,245,1870,1,0,0,0,247,1879,1,0,0,0,249,1884,1,0, + 0,0,251,1894,1,0,0,0,253,1900,1,0,0,0,255,1907,1,0,0,0,257,1913,1,0,0,0, + 259,1920,1,0,0,0,261,1928,1,0,0,0,263,1936,1,0,0,0,265,1945,1,0,0,0,267, + 1950,1,0,0,0,269,1957,1,0,0,0,271,1969,1,0,0,0,273,1977,1,0,0,0,275,1982, + 1,0,0,0,277,1989,1,0,0,0,279,1994,1,0,0,0,281,2000,1,0,0,0,283,2007,1,0, + 0,0,285,2013,1,0,0,0,287,2019,1,0,0,0,289,2029,1,0,0,0,291,2034,1,0,0,0, + 293,2041,1,0,0,0,295,2051,1,0,0,0,297,2057,1,0,0,0,299,2064,1,0,0,0,301, + 2074,1,0,0,0,303,2082,1,0,0,0,305,2096,1,0,0,0,307,2109,1,0,0,0,309,2123, + 1,0,0,0,311,2133,1,0,0,0,313,2140,1,0,0,0,315,2145,1,0,0,0,317,2151,1,0, + 0,0,319,2158,1,0,0,0,321,2164,1,0,0,0,323,2168,1,0,0,0,325,2174,1,0,0,0, + 327,2180,1,0,0,0,329,2185,1,0,0,0,331,2193,1,0,0,0,333,2198,1,0,0,0,335, + 2204,1,0,0,0,337,2212,1,0,0,0,339,2222,1,0,0,0,341,2233,1,0,0,0,343,2238, + 1,0,0,0,345,2244,1,0,0,0,347,2249,1,0,0,0,349,2257,1,0,0,0,351,2263,1,0, + 0,0,353,2268,1,0,0,0,355,2272,1,0,0,0,357,2276,1,0,0,0,359,2282,1,0,0,0, + 361,2288,1,0,0,0,363,2292,1,0,0,0,365,2296,1,0,0,0,367,2300,1,0,0,0,369, + 2306,1,0,0,0,371,2309,1,0,0,0,373,2320,1,0,0,0,375,2323,1,0,0,0,377,2327, + 1,0,0,0,379,2333,1,0,0,0,381,2341,1,0,0,0,383,2348,1,0,0,0,385,2355,1,0, + 0,0,387,2359,1,0,0,0,389,2364,1,0,0,0,391,2372,1,0,0,0,393,2377,1,0,0,0, + 395,2380,1,0,0,0,397,2385,1,0,0,0,399,2392,1,0,0,0,401,2401,1,0,0,0,403, + 2406,1,0,0,0,405,2411,1,0,0,0,407,2416,1,0,0,0,409,2421,1,0,0,0,411,2431, + 1,0,0,0,413,2437,1,0,0,0,415,2442,1,0,0,0,417,2448,1,0,0,0,419,2457,1,0, + 0,0,421,2465,1,0,0,0,423,2473,1,0,0,0,425,2480,1,0,0,0,427,2487,1,0,0,0, + 429,2495,1,0,0,0,431,2506,1,0,0,0,433,2515,1,0,0,0,435,2523,1,0,0,0,437, + 2529,1,0,0,0,439,2536,1,0,0,0,441,2542,1,0,0,0,443,2547,1,0,0,0,445,2555, + 1,0,0,0,447,2562,1,0,0,0,449,2568,1,0,0,0,451,2573,1,0,0,0,453,2582,1,0, + 0,0,455,2586,1,0,0,0,457,2590,1,0,0,0,459,2598,1,0,0,0,461,2606,1,0,0,0, + 463,2614,1,0,0,0,465,2621,1,0,0,0,467,2628,1,0,0,0,469,2637,1,0,0,0,471, + 2646,1,0,0,0,473,2653,1,0,0,0,475,2658,1,0,0,0,477,2663,1,0,0,0,479,2668, + 1,0,0,0,481,2672,1,0,0,0,483,2679,1,0,0,0,485,2686,1,0,0,0,487,2693,1,0, + 0,0,489,2701,1,0,0,0,491,2708,1,0,0,0,493,2716,1,0,0,0,495,2725,1,0,0,0, + 497,2733,1,0,0,0,499,2739,1,0,0,0,501,2745,1,0,0,0,503,2749,1,0,0,0,505, + 2754,1,0,0,0,507,2759,1,0,0,0,509,2768,1,0,0,0,511,2775,1,0,0,0,513,2781, + 1,0,0,0,515,2787,1,0,0,0,517,2796,1,0,0,0,519,2803,1,0,0,0,521,2810,1,0, + 0,0,523,2815,1,0,0,0,525,2822,1,0,0,0,527,2825,1,0,0,0,529,2835,1,0,0,0, + 531,2841,1,0,0,0,533,2847,1,0,0,0,535,2854,1,0,0,0,537,2858,1,0,0,0,539, + 2866,1,0,0,0,541,2876,1,0,0,0,543,2885,1,0,0,0,545,2890,1,0,0,0,547,2893, + 1,0,0,0,549,2898,1,0,0,0,551,2902,1,0,0,0,553,2911,1,0,0,0,555,2919,1,0, + 0,0,557,2927,1,0,0,0,559,2932,1,0,0,0,561,2937,1,0,0,0,563,2943,1,0,0,0, + 565,2949,1,0,0,0,567,2955,1,0,0,0,569,2971,1,0,0,0,571,2980,1,0,0,0,573, + 2986,1,0,0,0,575,2995,1,0,0,0,577,3001,1,0,0,0,579,3008,1,0,0,0,581,3017, + 1,0,0,0,583,3024,1,0,0,0,585,3030,1,0,0,0,587,3039,1,0,0,0,589,3047,1,0, + 0,0,591,3052,1,0,0,0,593,3055,1,0,0,0,595,3060,1,0,0,0,597,3064,1,0,0,0, + 599,3069,1,0,0,0,601,3077,1,0,0,0,603,3080,1,0,0,0,605,3087,1,0,0,0,607, + 3090,1,0,0,0,609,3094,1,0,0,0,611,3097,1,0,0,0,613,3103,1,0,0,0,615,3107, + 1,0,0,0,617,3113,1,0,0,0,619,3118,1,0,0,0,621,3126,1,0,0,0,623,3136,1,0, + 0,0,625,3144,1,0,0,0,627,3148,1,0,0,0,629,3156,1,0,0,0,631,3163,1,0,0,0, + 633,3172,1,0,0,0,635,3178,1,0,0,0,637,3186,1,0,0,0,639,3192,1,0,0,0,641, + 3197,1,0,0,0,643,3203,1,0,0,0,645,3210,1,0,0,0,647,3216,1,0,0,0,649,3222, + 1,0,0,0,651,3231,1,0,0,0,653,3238,1,0,0,0,655,3242,1,0,0,0,657,3247,1,0, + 0,0,659,3254,1,0,0,0,661,3261,1,0,0,0,663,3265,1,0,0,0,665,3270,1,0,0,0, + 667,3278,1,0,0,0,669,3283,1,0,0,0,671,3292,1,0,0,0,673,3298,1,0,0,0,675, + 3305,1,0,0,0,677,3315,1,0,0,0,679,3319,1,0,0,0,681,3329,1,0,0,0,683,3336, + 1,0,0,0,685,3348,1,0,0,0,687,3360,1,0,0,0,689,3366,1,0,0,0,691,3378,1,0, + 0,0,693,3383,1,0,0,0,695,3388,1,0,0,0,697,3398,1,0,0,0,699,3406,1,0,0,0, + 701,3409,1,0,0,0,703,3418,1,0,0,0,705,3423,1,0,0,0,707,3432,1,0,0,0,709, + 3438,1,0,0,0,711,3445,1,0,0,0,713,3453,1,0,0,0,715,3460,1,0,0,0,717,3466, + 1,0,0,0,719,3473,1,0,0,0,721,3478,1,0,0,0,723,3484,1,0,0,0,725,3490,1,0, + 0,0,727,3497,1,0,0,0,729,3507,1,0,0,0,731,3515,1,0,0,0,733,3520,1,0,0,0, + 735,3526,1,0,0,0,737,3533,1,0,0,0,739,3538,1,0,0,0,741,3545,1,0,0,0,743, + 3553,1,0,0,0,745,3558,1,0,0,0,747,3560,1,0,0,0,749,3562,1,0,0,0,751,3564, + 1,0,0,0,753,3566,1,0,0,0,755,3568,1,0,0,0,757,3570,1,0,0,0,759,3572,1,0, + 0,0,761,3574,1,0,0,0,763,3576,1,0,0,0,765,3578,1,0,0,0,767,3580,1,0,0,0, + 769,3582,1,0,0,0,771,3584,1,0,0,0,773,3586,1,0,0,0,775,3588,1,0,0,0,777, + 3590,1,0,0,0,779,3592,1,0,0,0,781,3594,1,0,0,0,783,3596,1,0,0,0,785,3598, + 1,0,0,0,787,3600,1,0,0,0,789,3602,1,0,0,0,791,3604,1,0,0,0,793,3606,1,0, + 0,0,795,3608,1,0,0,0,797,3610,1,0,0,0,799,3612,1,0,0,0,801,3615,1,0,0,0, + 803,3618,1,0,0,0,805,3620,1,0,0,0,807,3622,1,0,0,0,809,3628,1,0,0,0,811, + 3631,1,0,0,0,813,3678,1,0,0,0,815,3680,1,0,0,0,817,3682,1,0,0,0,819,3684, + 1,0,0,0,821,3686,1,0,0,0,823,3693,1,0,0,0,825,3706,1,0,0,0,827,3718,1,0, + 0,0,829,3732,1,0,0,0,831,3734,1,0,0,0,833,3736,1,0,0,0,835,3749,1,0,0,0, + 837,3762,1,0,0,0,839,3771,1,0,0,0,841,843,7,0,0,0,842,841,1,0,0,0,843,844, + 1,0,0,0,844,842,1,0,0,0,844,845,1,0,0,0,845,846,1,0,0,0,846,847,6,0,0,0, + 847,2,1,0,0,0,848,849,5,47,0,0,849,850,5,42,0,0,850,854,1,0,0,0,851,853, + 9,0,0,0,852,851,1,0,0,0,853,856,1,0,0,0,854,855,1,0,0,0,854,852,1,0,0,0, + 855,857,1,0,0,0,856,854,1,0,0,0,857,858,5,42,0,0,858,859,5,47,0,0,859,860, + 1,0,0,0,860,861,6,1,0,0,861,4,1,0,0,0,862,863,5,45,0,0,863,866,5,45,0,0, + 864,866,5,35,0,0,865,862,1,0,0,0,865,864,1,0,0,0,866,870,1,0,0,0,867,869, + 8,1,0,0,868,867,1,0,0,0,869,872,1,0,0,0,870,868,1,0,0,0,870,871,1,0,0,0, + 871,878,1,0,0,0,872,870,1,0,0,0,873,875,5,13,0,0,874,873,1,0,0,0,874,875, + 1,0,0,0,875,876,1,0,0,0,876,879,5,10,0,0,877,879,5,0,0,1,878,874,1,0,0, + 0,878,877,1,0,0,0,879,891,1,0,0,0,880,881,5,45,0,0,881,882,5,45,0,0,882, + 888,1,0,0,0,883,885,5,13,0,0,884,883,1,0,0,0,884,885,1,0,0,0,885,886,1, + 0,0,0,886,889,5,10,0,0,887,889,5,0,0,1,888,884,1,0,0,0,888,887,1,0,0,0, + 889,891,1,0,0,0,890,865,1,0,0,0,890,880,1,0,0,0,891,892,1,0,0,0,892,893, + 6,2,0,0,893,6,1,0,0,0,894,895,5,65,0,0,895,896,5,68,0,0,896,897,5,68,0, + 0,897,8,1,0,0,0,898,899,5,65,0,0,899,900,5,68,0,0,900,901,5,77,0,0,901, + 902,5,73,0,0,902,903,5,78,0,0,903,10,1,0,0,0,904,905,5,65,0,0,905,906,5, + 70,0,0,906,907,5,84,0,0,907,908,5,69,0,0,908,909,5,82,0,0,909,12,1,0,0, + 0,910,911,5,65,0,0,911,912,5,78,0,0,912,913,5,65,0,0,913,914,5,76,0,0,914, + 915,5,89,0,0,915,916,5,90,0,0,916,917,5,69,0,0,917,14,1,0,0,0,918,919,5, + 65,0,0,919,920,5,83,0,0,920,921,5,67,0,0,921,16,1,0,0,0,922,923,5,66,0, + 0,923,924,5,69,0,0,924,925,5,70,0,0,925,926,5,79,0,0,926,927,5,82,0,0,927, + 928,5,69,0,0,928,18,1,0,0,0,929,930,5,66,0,0,930,931,5,89,0,0,931,932,5, + 84,0,0,932,933,5,69,0,0,933,934,5,83,0,0,934,20,1,0,0,0,935,936,5,67,0, + 0,936,937,5,65,0,0,937,938,5,83,0,0,938,939,5,67,0,0,939,940,5,65,0,0,940, + 941,5,68,0,0,941,942,5,69,0,0,942,22,1,0,0,0,943,944,5,67,0,0,944,945,5, + 65,0,0,945,946,5,84,0,0,946,947,5,65,0,0,947,948,5,76,0,0,948,949,5,79, + 0,0,949,950,5,71,0,0,950,24,1,0,0,0,951,952,5,67,0,0,952,953,5,65,0,0,953, + 954,5,84,0,0,954,955,5,65,0,0,955,956,5,76,0,0,956,957,5,79,0,0,957,958, + 5,71,0,0,958,959,5,83,0,0,959,26,1,0,0,0,960,961,5,67,0,0,961,962,5,69, + 0,0,962,963,5,78,0,0,963,964,5,84,0,0,964,965,5,85,0,0,965,966,5,82,0,0, + 966,967,5,89,0,0,967,28,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,73,0,0,972,973,5,78,0,0,973,30,1,0,0,0,974,975,5,67, + 0,0,975,976,5,72,0,0,976,977,5,65,0,0,977,978,5,78,0,0,978,979,5,71,0,0, + 979,980,5,69,0,0,980,981,5,76,0,0,981,982,5,79,0,0,982,983,5,71,0,0,983, + 984,5,95,0,0,984,985,5,77,0,0,985,986,5,79,0,0,986,987,5,68,0,0,987,988, + 5,69,0,0,988,32,1,0,0,0,989,990,5,67,0,0,990,991,5,72,0,0,991,992,5,65, + 0,0,992,993,5,82,0,0,993,994,5,65,0,0,994,995,5,67,0,0,995,996,5,84,0,0, + 996,997,5,69,0,0,997,998,5,82,0,0,998,999,5,83,0,0,999,34,1,0,0,0,1000, + 1001,5,67,0,0,1001,1002,5,79,0,0,1002,1003,5,77,0,0,1003,1004,5,77,0,0, + 1004,1005,5,69,0,0,1005,1006,5,78,0,0,1006,1007,5,84,0,0,1007,36,1,0,0, + 0,1008,1009,5,67,0,0,1009,1010,5,79,0,0,1010,1011,5,77,0,0,1011,1012,5, + 80,0,0,1012,1013,5,65,0,0,1013,1014,5,67,0,0,1014,1015,5,84,0,0,1015,38, + 1,0,0,0,1016,1017,5,67,0,0,1017,1018,5,79,0,0,1018,1019,5,76,0,0,1019,1020, + 5,85,0,0,1020,1021,5,77,0,0,1021,1022,5,78,0,0,1022,1023,5,83,0,0,1023, + 40,1,0,0,0,1024,1025,5,67,0,0,1025,1026,5,79,0,0,1026,1027,5,78,0,0,1027, + 1028,5,83,0,0,1028,1029,5,84,0,0,1029,1030,5,82,0,0,1030,1031,5,65,0,0, + 1031,1032,5,73,0,0,1032,1033,5,78,0,0,1033,1034,5,84,0,0,1034,1035,5,83, + 0,0,1035,42,1,0,0,0,1036,1037,5,67,0,0,1037,1038,5,79,0,0,1038,1039,5,78, + 0,0,1039,1040,5,83,0,0,1040,1041,5,84,0,0,1041,1042,5,82,0,0,1042,1043, + 5,85,0,0,1043,1044,5,67,0,0,1044,1045,5,84,0,0,1045,1046,5,79,0,0,1046, + 1047,5,82,0,0,1047,44,1,0,0,0,1048,1049,5,67,0,0,1049,1050,5,85,0,0,1050, + 1051,5,77,0,0,1051,1052,5,85,0,0,1052,1053,5,76,0,0,1053,1054,5,65,0,0, + 1054,1055,5,84,0,0,1055,1056,5,69,0,0,1056,46,1,0,0,0,1057,1058,5,68,0, + 0,1058,1059,5,65,0,0,1059,1060,5,84,0,0,1060,1061,5,65,0,0,1061,48,1,0, + 0,0,1062,1063,5,68,0,0,1063,1064,5,65,0,0,1064,1065,5,84,0,0,1065,1066, + 5,65,0,0,1066,1067,5,66,0,0,1067,1068,5,65,0,0,1068,1069,5,83,0,0,1069, + 1070,5,69,0,0,1070,50,1,0,0,0,1071,1072,5,68,0,0,1072,1073,5,65,0,0,1073, + 1074,5,84,0,0,1074,1075,5,65,0,0,1075,1076,5,66,0,0,1076,1077,5,65,0,0, + 1077,1078,5,83,0,0,1078,1079,5,69,0,0,1079,1080,5,83,0,0,1080,52,1,0,0, + 0,1081,1082,5,68,0,0,1082,1083,5,65,0,0,1083,1084,5,89,0,0,1084,1085,5, + 83,0,0,1085,54,1,0,0,0,1086,1087,5,68,0,0,1087,1088,5,69,0,0,1088,1089, + 5,67,0,0,1089,1090,5,65,0,0,1090,1091,5,68,0,0,1091,1092,5,69,0,0,1092, + 56,1,0,0,0,1093,1094,5,68,0,0,1094,1095,5,69,0,0,1095,1096,5,70,0,0,1096, + 1097,5,73,0,0,1097,1098,5,78,0,0,1098,1099,5,69,0,0,1099,1100,5,68,0,0, + 1100,58,1,0,0,0,1101,1102,5,68,0,0,1102,1103,5,69,0,0,1103,1104,5,83,0, + 0,1104,1105,5,67,0,0,1105,60,1,0,0,0,1106,1107,5,68,0,0,1107,1108,5,69, + 0,0,1108,1109,5,83,0,0,1109,1110,5,67,0,0,1110,1111,5,82,0,0,1111,1112, + 5,73,0,0,1112,1113,5,80,0,0,1113,1114,5,84,0,0,1114,1115,5,79,0,0,1115, + 1116,5,82,0,0,1116,62,1,0,0,0,1117,1118,5,68,0,0,1118,1119,5,73,0,0,1119, + 1120,5,86,0,0,1120,64,1,0,0,0,1121,1122,5,69,0,0,1122,1123,5,78,0,0,1123, + 1124,5,67,0,0,1124,1125,5,79,0,0,1125,1126,5,68,0,0,1126,1127,5,73,0,0, + 1127,1128,5,78,0,0,1128,1129,5,71,0,0,1129,66,1,0,0,0,1130,1131,5,69,0, + 0,1131,1132,5,78,0,0,1132,1133,5,70,0,0,1133,1134,5,79,0,0,1134,1135,5, + 82,0,0,1135,1136,5,67,0,0,1136,1137,5,69,0,0,1137,1138,5,68,0,0,1138,68, + 1,0,0,0,1139,1140,5,69,0,0,1140,1141,5,78,0,0,1141,1142,5,71,0,0,1142,1143, + 5,73,0,0,1143,1144,5,78,0,0,1144,1145,5,69,0,0,1145,70,1,0,0,0,1146,1147, + 5,69,0,0,1147,1148,5,80,0,0,1148,1149,5,79,0,0,1149,1150,5,67,0,0,1150, + 1151,5,72,0,0,1151,72,1,0,0,0,1152,1153,5,69,0,0,1153,1154,5,82,0,0,1154, + 1155,5,82,0,0,1155,1156,5,79,0,0,1156,1157,5,82,0,0,1157,74,1,0,0,0,1158, + 1159,5,69,0,0,1159,1160,5,83,0,0,1160,1161,5,84,0,0,1161,1162,5,73,0,0, + 1162,1163,5,77,0,0,1163,1164,5,65,0,0,1164,1165,5,84,0,0,1165,1166,5,69, + 0,0,1166,1167,5,68,0,0,1167,1168,5,95,0,0,1168,1169,5,67,0,0,1169,1170, + 5,79,0,0,1170,1171,5,83,0,0,1171,1172,5,84,0,0,1172,76,1,0,0,0,1173,1174, + 5,69,0,0,1174,1175,5,88,0,0,1175,1176,5,67,0,0,1176,1177,5,69,0,0,1177, + 1178,5,80,0,0,1178,1179,5,84,0,0,1179,1180,5,73,0,0,1180,1181,5,79,0,0, + 1181,1182,5,78,0,0,1182,78,1,0,0,0,1183,1184,5,69,0,0,1184,1185,5,88,0, + 0,1185,1186,5,67,0,0,1186,1187,5,76,0,0,1187,1188,5,85,0,0,1188,1189,5, + 68,0,0,1189,1190,5,69,0,0,1190,80,1,0,0,0,1191,1192,5,69,0,0,1192,1193, + 5,88,0,0,1193,1194,5,67,0,0,1194,1195,5,76,0,0,1195,1196,5,85,0,0,1196, + 1197,5,68,0,0,1197,1198,5,73,0,0,1198,1199,5,78,0,0,1199,1200,5,71,0,0, + 1200,82,1,0,0,0,1201,1202,5,69,0,0,1202,1203,5,88,0,0,1203,1204,5,84,0, + 0,1204,1205,5,69,0,0,1205,1206,5,78,0,0,1206,1207,5,68,0,0,1207,1208,5, + 69,0,0,1208,1209,5,68,0,0,1209,84,1,0,0,0,1210,1211,5,70,0,0,1211,1212, + 5,73,0,0,1212,1213,5,76,0,0,1213,1214,5,69,0,0,1214,86,1,0,0,0,1215,1216, + 5,70,0,0,1216,1217,5,73,0,0,1217,1218,5,78,0,0,1218,1219,5,65,0,0,1219, + 1220,5,76,0,0,1220,88,1,0,0,0,1221,1222,5,70,0,0,1222,1223,5,73,0,0,1223, + 1224,5,82,0,0,1224,1225,5,83,0,0,1225,1226,5,84,0,0,1226,90,1,0,0,0,1227, + 1228,5,70,0,0,1228,1229,5,79,0,0,1229,1230,5,76,0,0,1230,1231,5,76,0,0, + 1231,1232,5,79,0,0,1232,1233,5,87,0,0,1233,1234,5,73,0,0,1234,1235,5,78, + 0,0,1235,1236,5,71,0,0,1236,92,1,0,0,0,1237,1238,5,70,0,0,1238,1239,5,79, + 0,0,1239,1240,5,82,0,0,1240,1241,5,77,0,0,1241,1242,5,65,0,0,1242,1243, + 5,84,0,0,1243,94,1,0,0,0,1244,1245,5,70,0,0,1245,1246,5,79,0,0,1246,1247, + 5,82,0,0,1247,1248,5,84,0,0,1248,1249,5,82,0,0,1249,1250,5,65,0,0,1250, + 1251,5,78,0,0,1251,96,1,0,0,0,1252,1253,5,70,0,0,1253,1254,5,79,0,0,1254, + 1255,5,85,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,82,0,0,1260,1261,5,65,0,0,1261,1262,5,67,0,0, + 1262,1263,5,95,0,0,1263,1264,5,83,0,0,1264,1265,5,69,0,0,1265,1266,5,67, + 0,0,1266,1267,5,79,0,0,1267,1268,5,78,0,0,1268,1269,5,68,0,0,1269,100,1, + 0,0,0,1270,1271,5,70,0,0,1271,1272,5,85,0,0,1272,1273,5,78,0,0,1273,1274, + 5,67,0,0,1274,1275,5,84,0,0,1275,1276,5,73,0,0,1276,1277,5,79,0,0,1277, + 1278,5,78,0,0,1278,1279,5,83,0,0,1279,102,1,0,0,0,1280,1281,5,71,0,0,1281, + 1282,5,69,0,0,1282,1283,5,78,0,0,1283,1284,5,69,0,0,1284,1285,5,82,0,0, + 1285,1286,5,65,0,0,1286,1287,5,76,0,0,1287,104,1,0,0,0,1288,1289,5,71,0, + 0,1289,1290,5,69,0,0,1290,1291,5,78,0,0,1291,1292,5,69,0,0,1292,1293,5, + 82,0,0,1293,1294,5,65,0,0,1294,1295,5,84,0,0,1295,1296,5,69,0,0,1296,1297, + 5,68,0,0,1297,106,1,0,0,0,1298,1299,5,71,0,0,1299,1300,5,79,0,0,1300,108, + 1,0,0,0,1301,1302,5,71,0,0,1302,1303,5,79,0,0,1303,1304,5,84,0,0,1304,1305, + 5,79,0,0,1305,110,1,0,0,0,1306,1307,5,71,0,0,1307,1308,5,82,0,0,1308,1309, + 5,65,0,0,1309,1310,5,78,0,0,1310,1311,5,84,0,0,1311,1312,5,69,0,0,1312, + 1313,5,68,0,0,1313,112,1,0,0,0,1314,1315,5,72,0,0,1315,1316,5,79,0,0,1316, + 1317,5,80,0,0,1317,114,1,0,0,0,1318,1319,5,72,0,0,1319,1320,5,79,0,0,1320, + 1321,5,85,0,0,1321,1322,5,82,0,0,1322,1323,5,83,0,0,1323,116,1,0,0,0,1324, + 1325,5,73,0,0,1325,1326,5,70,0,0,1326,118,1,0,0,0,1327,1328,5,73,0,0,1328, + 1329,5,71,0,0,1329,1330,5,78,0,0,1330,1331,5,79,0,0,1331,1332,5,82,0,0, + 1332,1333,5,69,0,0,1333,120,1,0,0,0,1334,1335,5,73,0,0,1335,1336,5,78,0, + 0,1336,1337,5,67,0,0,1337,1338,5,82,0,0,1338,1339,5,69,0,0,1339,1340,5, + 77,0,0,1340,1341,5,69,0,0,1341,1342,5,78,0,0,1342,1343,5,84,0,0,1343,122, + 1,0,0,0,1344,1345,5,73,0,0,1345,1346,5,78,0,0,1346,1347,5,80,0,0,1347,1348, + 5,85,0,0,1348,1349,5,84,0,0,1349,124,1,0,0,0,1350,1351,5,73,0,0,1351,1352, + 5,78,0,0,1352,1353,5,86,0,0,1353,1354,5,79,0,0,1354,1355,5,75,0,0,1355, + 1356,5,69,0,0,1356,1357,5,82,0,0,1357,126,1,0,0,0,1358,1359,5,74,0,0,1359, + 1360,5,65,0,0,1360,1361,5,82,0,0,1361,128,1,0,0,0,1362,1363,5,74,0,0,1363, + 1364,5,65,0,0,1364,1365,5,82,0,0,1365,1366,5,83,0,0,1366,130,1,0,0,0,1367, + 1368,5,74,0,0,1368,1369,5,65,0,0,1369,1370,5,86,0,0,1370,1371,5,65,0,0, + 1371,132,1,0,0,0,1372,1373,5,74,0,0,1373,1374,5,83,0,0,1374,1375,5,79,0, + 0,1375,1376,5,78,0,0,1376,134,1,0,0,0,1377,1378,5,74,0,0,1378,1379,5,83, + 0,0,1379,1380,5,79,0,0,1380,1381,5,78,0,0,1381,1382,5,95,0,0,1382,1383, + 5,69,0,0,1383,1384,5,88,0,0,1384,1385,5,69,0,0,1385,1386,5,67,0,0,1386, + 1387,5,85,0,0,1387,1388,5,84,0,0,1388,1389,5,73,0,0,1389,1390,5,79,0,0, + 1390,1391,5,78,0,0,1391,1392,5,95,0,0,1392,1393,5,80,0,0,1393,1394,5,76, + 0,0,1394,1395,5,65,0,0,1395,1396,5,78,0,0,1396,136,1,0,0,0,1397,1398,5, + 75,0,0,1398,1399,5,69,0,0,1399,1400,5,89,0,0,1400,138,1,0,0,0,1401,1402, + 5,75,0,0,1402,1403,5,69,0,0,1403,1404,5,89,0,0,1404,1405,5,95,0,0,1405, + 1406,5,77,0,0,1406,1407,5,69,0,0,1407,1408,5,77,0,0,1408,1409,5,66,0,0, + 1409,1410,5,69,0,0,1410,1411,5,82,0,0,1411,140,1,0,0,0,1412,1413,5,75,0, + 0,1413,1414,5,69,0,0,1414,1415,5,89,0,0,1415,1416,5,95,0,0,1416,1417,5, + 84,0,0,1417,1418,5,89,0,0,1418,1419,5,80,0,0,1419,1420,5,69,0,0,1420,142, + 1,0,0,0,1421,1422,5,76,0,0,1422,1423,5,65,0,0,1423,1424,5,66,0,0,1424,1425, + 5,69,0,0,1425,1426,5,76,0,0,1426,144,1,0,0,0,1427,1428,5,76,0,0,1428,1429, + 5,65,0,0,1429,1430,5,83,0,0,1430,1431,5,84,0,0,1431,146,1,0,0,0,1432,1433, + 5,76,0,0,1433,1434,5,69,0,0,1434,1435,5,78,0,0,1435,1436,5,71,0,0,1436, + 1437,5,84,0,0,1437,1438,5,72,0,0,1438,148,1,0,0,0,1439,1440,5,76,0,0,1440, + 1441,5,69,0,0,1441,1442,5,86,0,0,1442,1443,5,69,0,0,1443,1444,5,76,0,0, + 1444,150,1,0,0,0,1445,1446,5,76,0,0,1446,1447,5,79,0,0,1447,1448,5,65,0, + 0,1448,1449,5,68,0,0,1449,152,1,0,0,0,1450,1451,5,77,0,0,1451,1452,5,65, + 0,0,1452,1453,5,80,0,0,1453,154,1,0,0,0,1454,1455,5,77,0,0,1455,1456,5, + 73,0,0,1456,1457,5,67,0,0,1457,1458,5,82,0,0,1458,1459,5,79,0,0,1459,1460, + 5,83,0,0,1460,1461,5,69,0,0,1461,1462,5,67,0,0,1462,1463,5,79,0,0,1463, + 1464,5,78,0,0,1464,1465,5,68,0,0,1465,156,1,0,0,0,1466,1467,5,77,0,0,1467, + 1468,5,73,0,0,1468,1469,5,76,0,0,1469,1470,5,76,0,0,1470,1471,5,69,0,0, + 1471,1472,5,78,0,0,1472,1473,5,78,0,0,1473,1474,5,73,0,0,1474,1475,5,85, + 0,0,1475,1476,5,77,0,0,1476,158,1,0,0,0,1477,1478,5,77,0,0,1478,1479,5, + 73,0,0,1479,1480,5,76,0,0,1480,1481,5,76,0,0,1481,1482,5,73,0,0,1482,1483, + 5,83,0,0,1483,1484,5,69,0,0,1484,1485,5,67,0,0,1485,1486,5,79,0,0,1486, + 1487,5,78,0,0,1487,1488,5,68,0,0,1488,160,1,0,0,0,1489,1490,5,77,0,0,1490, + 1491,5,73,0,0,1491,1492,5,78,0,0,1492,1493,5,85,0,0,1493,1494,5,84,0,0, + 1494,1495,5,69,0,0,1495,1496,5,83,0,0,1496,162,1,0,0,0,1497,1498,5,77,0, + 0,1498,1499,5,73,0,0,1499,1500,5,78,0,0,1500,1501,5,86,0,0,1501,1502,5, + 65,0,0,1502,1503,5,76,0,0,1503,1504,5,85,0,0,1504,1505,5,69,0,0,1505,164, + 1,0,0,0,1506,1507,5,77,0,0,1507,1508,5,79,0,0,1508,1509,5,68,0,0,1509,1510, + 5,73,0,0,1510,1511,5,70,0,0,1511,1512,5,89,0,0,1512,166,1,0,0,0,1513,1514, + 5,77,0,0,1514,1515,5,79,0,0,1515,1516,5,68,0,0,1516,1517,5,85,0,0,1517, + 1518,5,76,0,0,1518,1519,5,69,0,0,1519,1520,5,83,0,0,1520,168,1,0,0,0,1521, + 1522,5,77,0,0,1522,1523,5,79,0,0,1523,1524,5,78,0,0,1524,1525,5,84,0,0, + 1525,1526,5,72,0,0,1526,1527,5,83,0,0,1527,170,1,0,0,0,1528,1529,5,78,0, + 0,1529,1530,5,65,0,0,1530,1531,5,78,0,0,1531,1532,5,79,0,0,1532,1533,5, + 83,0,0,1533,1534,5,69,0,0,1534,1535,5,67,0,0,1535,1536,5,79,0,0,1536,1537, + 5,78,0,0,1537,1538,5,68,0,0,1538,172,1,0,0,0,1539,1540,5,78,0,0,1540,1541, + 5,85,0,0,1541,1542,5,76,0,0,1542,1543,5,76,0,0,1543,1544,5,83,0,0,1544, + 174,1,0,0,0,1545,1546,5,78,0,0,1546,1547,5,85,0,0,1547,1548,5,77,0,0,1548, + 1549,5,66,0,0,1549,1550,5,69,0,0,1550,1551,5,82,0,0,1551,176,1,0,0,0,1552, + 1553,5,79,0,0,1553,1554,5,80,0,0,1554,1555,5,84,0,0,1555,1556,5,73,0,0, + 1556,1557,5,79,0,0,1557,1558,5,78,0,0,1558,178,1,0,0,0,1559,1560,5,79,0, + 0,1560,1561,5,80,0,0,1561,1562,5,84,0,0,1562,1563,5,73,0,0,1563,1564,5, + 79,0,0,1564,1565,5,78,0,0,1565,1566,5,83,0,0,1566,180,1,0,0,0,1567,1568, + 5,79,0,0,1568,1569,5,82,0,0,1569,1570,5,68,0,0,1570,1571,5,69,0,0,1571, + 1572,5,82,0,0,1572,1573,5,73,0,0,1573,1574,5,78,0,0,1574,1575,5,71,0,0, + 1575,182,1,0,0,0,1576,1577,5,79,0,0,1577,1578,5,85,0,0,1578,1579,5,84,0, + 0,1579,1580,5,80,0,0,1580,1581,5,85,0,0,1581,1582,5,84,0,0,1582,184,1,0, + 0,0,1583,1584,5,79,0,0,1584,1585,5,86,0,0,1585,1586,5,69,0,0,1586,1587, + 5,82,0,0,1587,1588,5,87,0,0,1588,1589,5,82,0,0,1589,1590,5,73,0,0,1590, + 1591,5,84,0,0,1591,1592,5,69,0,0,1592,186,1,0,0,0,1593,1594,5,79,0,0,1594, + 1595,5,86,0,0,1595,1596,5,69,0,0,1596,1597,5,82,0,0,1597,1598,5,87,0,0, + 1598,1599,5,82,0,0,1599,1600,5,73,0,0,1600,1601,5,84,0,0,1601,1602,5,73, + 0,0,1602,1603,5,78,0,0,1603,1604,5,71,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,69,0,0,1615,1616,5,68,0,0,1616,190,1,0,0,0,1617, + 1618,5,80,0,0,1618,1619,5,65,0,0,1619,1620,5,82,0,0,1620,1621,5,84,0,0, + 1621,1622,5,73,0,0,1622,1623,5,84,0,0,1623,1624,5,73,0,0,1624,1625,5,79, + 0,0,1625,1626,5,78,0,0,1626,1627,5,83,0,0,1627,192,1,0,0,0,1628,1629,5, + 80,0,0,1629,1630,5,65,0,0,1630,1631,5,83,0,0,1631,1632,5,83,0,0,1632,1633, + 5,73,0,0,1633,1634,5,78,0,0,1634,1635,5,71,0,0,1635,194,1,0,0,0,1636,1637, + 5,80,0,0,1637,1638,5,65,0,0,1638,1639,5,83,0,0,1639,1640,5,84,0,0,1640, + 196,1,0,0,0,1641,1642,5,80,0,0,1642,1643,5,65,0,0,1643,1644,5,84,0,0,1644, + 1645,5,72,0,0,1645,198,1,0,0,0,1646,1647,5,80,0,0,1647,1648,5,76,0,0,1648, + 1649,5,65,0,0,1649,1650,5,67,0,0,1650,1651,5,73,0,0,1651,1652,5,78,0,0, + 1652,1653,5,71,0,0,1653,200,1,0,0,0,1654,1655,5,80,0,0,1655,1656,5,76,0, + 0,1656,1657,5,65,0,0,1657,1658,5,78,0,0,1658,202,1,0,0,0,1659,1660,5,80, + 0,0,1660,1661,5,82,0,0,1661,1662,5,69,0,0,1662,1663,5,67,0,0,1663,1664, + 5,69,0,0,1664,1665,5,68,0,0,1665,1666,5,73,0,0,1666,1667,5,78,0,0,1667, + 1668,5,71,0,0,1668,204,1,0,0,0,1669,1670,5,80,0,0,1670,1671,5,82,0,0,1671, + 1672,5,69,0,0,1672,1673,5,83,0,0,1673,1674,5,69,0,0,1674,1675,5,82,0,0, + 1675,1676,5,86,0,0,1676,1677,5,69,0,0,1677,206,1,0,0,0,1678,1679,5,80,0, + 0,1679,1680,5,82,0,0,1680,1681,5,73,0,0,1681,1682,5,79,0,0,1682,1683,5, + 82,0,0,1683,208,1,0,0,0,1684,1685,5,80,0,0,1685,1686,5,82,0,0,1686,1687, + 5,73,0,0,1687,1688,5,86,0,0,1688,1689,5,73,0,0,1689,1690,5,76,0,0,1690, + 1691,5,69,0,0,1691,1692,5,71,0,0,1692,1693,5,69,0,0,1693,1694,5,83,0,0, + 1694,210,1,0,0,0,1695,1696,5,80,0,0,1696,1697,5,85,0,0,1697,1698,5,66,0, + 0,1698,1699,5,76,0,0,1699,1700,5,73,0,0,1700,1701,5,67,0,0,1701,212,1,0, + 0,0,1702,1703,5,80,0,0,1703,1704,5,89,0,0,1704,1705,5,84,0,0,1705,1706, + 5,72,0,0,1706,1707,5,79,0,0,1707,1708,5,78,0,0,1708,214,1,0,0,0,1709,1710, + 5,80,0,0,1710,1711,5,89,0,0,1711,1712,5,84,0,0,1712,1713,5,72,0,0,1713, + 1714,5,79,0,0,1714,1715,5,78,0,0,1715,1716,5,95,0,0,1716,1717,5,70,0,0, + 1717,1718,5,73,0,0,1718,1719,5,76,0,0,1719,1720,5,69,0,0,1720,1721,5,83, + 0,0,1721,216,1,0,0,0,1722,1723,5,80,0,0,1723,1724,5,89,0,0,1724,1725,5, + 84,0,0,1725,1726,5,72,0,0,1726,1727,5,79,0,0,1727,1728,5,78,0,0,1728,1729, + 5,95,0,0,1729,1730,5,82,0,0,1730,1731,5,69,0,0,1731,1732,5,81,0,0,1732, + 1733,5,85,0,0,1733,1734,5,73,0,0,1734,1735,5,82,0,0,1735,1736,5,69,0,0, + 1736,1737,5,77,0,0,1737,1738,5,69,0,0,1738,1739,5,78,0,0,1739,1740,5,84, + 0,0,1740,1741,5,83,0,0,1741,218,1,0,0,0,1742,1743,5,80,0,0,1743,1744,5, + 89,0,0,1744,1745,5,84,0,0,1745,1746,5,72,0,0,1746,1747,5,79,0,0,1747,1748, + 5,78,0,0,1748,1749,5,95,0,0,1749,1750,5,68,0,0,1750,1751,5,69,0,0,1751, + 1752,5,80,0,0,1752,1753,5,69,0,0,1753,1754,5,78,0,0,1754,1755,5,68,0,0, + 1755,1756,5,69,0,0,1756,1757,5,78,0,0,1757,1758,5,67,0,0,1758,1759,5,73, + 0,0,1759,1760,5,69,0,0,1760,1761,5,83,0,0,1761,220,1,0,0,0,1762,1763,5, + 80,0,0,1763,1764,5,89,0,0,1764,1765,5,84,0,0,1765,1766,5,72,0,0,1766,1767, + 5,79,0,0,1767,1768,5,78,0,0,1768,1769,5,95,0,0,1769,1770,5,74,0,0,1770, + 1771,5,65,0,0,1771,1772,5,82,0,0,1772,222,1,0,0,0,1773,1774,5,80,0,0,1774, + 1775,5,89,0,0,1775,1776,5,84,0,0,1776,1777,5,72,0,0,1777,1778,5,79,0,0, + 1778,1779,5,78,0,0,1779,1780,5,95,0,0,1780,1781,5,65,0,0,1781,1782,5,82, + 0,0,1782,1783,5,67,0,0,1783,1784,5,72,0,0,1784,1785,5,73,0,0,1785,1786, + 5,86,0,0,1786,1787,5,69,0,0,1787,1788,5,83,0,0,1788,224,1,0,0,0,1789,1790, + 5,80,0,0,1790,1791,5,89,0,0,1791,1792,5,84,0,0,1792,1793,5,72,0,0,1793, + 1794,5,79,0,0,1794,1795,5,78,0,0,1795,1796,5,95,0,0,1796,1797,5,80,0,0, + 1797,1798,5,65,0,0,1798,1799,5,82,0,0,1799,1800,5,65,0,0,1800,1801,5,77, + 0,0,1801,1802,5,69,0,0,1802,1803,5,84,0,0,1803,1804,5,69,0,0,1804,1805, + 5,82,0,0,1805,226,1,0,0,0,1806,1807,5,81,0,0,1807,1808,5,85,0,0,1808,1809, + 5,65,0,0,1809,1810,5,82,0,0,1810,1811,5,84,0,0,1811,1812,5,69,0,0,1812, + 1813,5,82,0,0,1813,228,1,0,0,0,1814,1815,5,82,0,0,1815,1816,5,65,0,0,1816, + 1817,5,87,0,0,1817,230,1,0,0,0,1818,1819,5,82,0,0,1819,1820,5,69,0,0,1820, + 1821,5,65,0,0,1821,1822,5,68,0,0,1822,232,1,0,0,0,1823,1824,5,82,0,0,1824, + 1825,5,69,0,0,1825,1826,5,76,0,0,1826,1827,5,65,0,0,1827,1828,5,84,0,0, + 1828,1829,5,73,0,0,1829,1830,5,86,0,0,1830,1831,5,69,0,0,1831,234,1,0,0, + 0,1832,1833,5,82,0,0,1833,1834,5,69,0,0,1834,1835,5,77,0,0,1835,1836,5, + 79,0,0,1836,1837,5,86,0,0,1837,1838,5,69,0,0,1838,236,1,0,0,0,1839,1840, + 5,82,0,0,1840,1841,5,69,0,0,1841,1842,5,78,0,0,1842,1843,5,65,0,0,1843, + 1844,5,77,0,0,1844,1845,5,69,0,0,1845,238,1,0,0,0,1846,1847,5,82,0,0,1847, + 1848,5,69,0,0,1848,1849,5,80,0,0,1849,1850,5,76,0,0,1850,1851,5,65,0,0, + 1851,1852,5,67,0,0,1852,1853,5,69,0,0,1853,240,1,0,0,0,1854,1855,5,82,0, + 0,1855,1856,5,69,0,0,1856,1857,5,83,0,0,1857,1858,5,80,0,0,1858,1859,5, + 69,0,0,1859,1860,5,67,0,0,1860,1861,5,84,0,0,1861,242,1,0,0,0,1862,1863, + 5,82,0,0,1863,1864,5,69,0,0,1864,1865,5,83,0,0,1865,1866,5,84,0,0,1866, + 1867,5,65,0,0,1867,1868,5,82,0,0,1868,1869,5,84,0,0,1869,244,1,0,0,0,1870, + 1871,5,82,0,0,1871,1872,5,69,0,0,1872,1873,5,83,0,0,1873,1874,5,84,0,0, + 1874,1875,5,82,0,0,1875,1876,5,73,0,0,1876,1877,5,67,0,0,1877,1878,5,84, + 0,0,1878,246,1,0,0,0,1879,1880,5,82,0,0,1880,1881,5,79,0,0,1881,1882,5, + 76,0,0,1882,1883,5,69,0,0,1883,248,1,0,0,0,1884,1885,5,82,0,0,1885,1886, + 5,79,0,0,1886,1887,5,87,0,0,1887,1888,5,95,0,0,1888,1889,5,67,0,0,1889, + 1890,5,79,0,0,1890,1891,5,85,0,0,1891,1892,5,78,0,0,1892,1893,5,84,0,0, + 1893,250,1,0,0,0,1894,1895,5,83,0,0,1895,1896,5,67,0,0,1896,1897,5,65,0, + 0,1897,1898,5,76,0,0,1898,1899,5,65,0,0,1899,252,1,0,0,0,1900,1901,5,83, + 0,0,1901,1902,5,67,0,0,1902,1903,5,65,0,0,1903,1904,5,76,0,0,1904,1905, + 5,65,0,0,1905,1906,5,82,0,0,1906,254,1,0,0,0,1907,1908,5,83,0,0,1908,1909, + 5,67,0,0,1909,1910,5,65,0,0,1910,1911,5,76,0,0,1911,1912,5,69,0,0,1912, + 256,1,0,0,0,1913,1914,5,83,0,0,1914,1915,5,67,0,0,1915,1916,5,72,0,0,1916, + 1917,5,69,0,0,1917,1918,5,77,0,0,1918,1919,5,65,0,0,1919,258,1,0,0,0,1920, + 1921,5,83,0,0,1921,1922,5,69,0,0,1922,1923,5,67,0,0,1923,1924,5,79,0,0, + 1924,1925,5,78,0,0,1925,1926,5,68,0,0,1926,1927,5,83,0,0,1927,260,1,0,0, + 0,1928,1929,5,83,0,0,1929,1930,5,69,0,0,1930,1931,5,67,0,0,1931,1932,5, + 84,0,0,1932,1933,5,73,0,0,1933,1934,5,79,0,0,1934,1935,5,78,0,0,1935,262, + 1,0,0,0,1936,1937,5,83,0,0,1937,1938,5,69,0,0,1938,1939,5,67,0,0,1939,1940, + 5,85,0,0,1940,1941,5,82,0,0,1941,1942,5,73,0,0,1942,1943,5,84,0,0,1943, + 1944,5,89,0,0,1944,264,1,0,0,0,1945,1946,5,83,0,0,1946,1947,5,69,0,0,1947, + 1948,5,76,0,0,1948,1949,5,70,0,0,1949,266,1,0,0,0,1950,1951,5,83,0,0,1951, + 1952,5,69,0,0,1952,1953,5,82,0,0,1953,1954,5,86,0,0,1954,1955,5,69,0,0, + 1955,1956,5,82,0,0,1956,268,1,0,0,0,1957,1958,5,83,0,0,1958,1959,5,69,0, + 0,1959,1960,5,82,0,0,1960,1961,5,86,0,0,1961,1962,5,69,0,0,1962,1963,5, + 82,0,0,1963,1964,5,95,0,0,1964,1965,5,78,0,0,1965,1966,5,65,0,0,1966,1967, + 5,77,0,0,1967,1968,5,69,0,0,1968,270,1,0,0,0,1969,1970,5,83,0,0,1970,1971, + 5,69,0,0,1971,1972,5,83,0,0,1972,1973,5,83,0,0,1973,1974,5,73,0,0,1974, + 1975,5,79,0,0,1975,1976,5,78,0,0,1976,272,1,0,0,0,1977,1978,5,83,0,0,1978, + 1979,5,69,0,0,1979,1980,5,84,0,0,1980,1981,5,83,0,0,1981,274,1,0,0,0,1982, + 1983,5,83,0,0,1983,1984,5,73,0,0,1984,1985,5,77,0,0,1985,1986,5,80,0,0, + 1986,1987,5,76,0,0,1987,1988,5,69,0,0,1988,276,1,0,0,0,1989,1990,5,83,0, + 0,1990,1991,5,73,0,0,1991,1992,5,90,0,0,1992,1993,5,69,0,0,1993,278,1,0, + 0,0,1994,1995,5,83,0,0,1995,1996,5,76,0,0,1996,1997,5,73,0,0,1997,1998, + 5,68,0,0,1998,1999,5,69,0,0,1999,280,1,0,0,0,2000,2001,5,83,0,0,2001,2002, + 5,79,0,0,2002,2003,5,85,0,0,2003,2004,5,82,0,0,2004,2005,5,67,0,0,2005, + 2006,5,69,0,0,2006,282,1,0,0,0,2007,2008,5,83,0,0,2008,2009,5,80,0,0,2009, + 2010,5,65,0,0,2010,2011,5,67,0,0,2011,2012,5,69,0,0,2012,284,1,0,0,0,2013, + 2014,5,83,0,0,2014,2015,5,84,0,0,2015,2016,5,65,0,0,2016,2017,5,84,0,0, + 2017,2018,5,69,0,0,2018,286,1,0,0,0,2019,2020,5,83,0,0,2020,2021,5,84,0, + 0,2021,2022,5,65,0,0,2022,2023,5,84,0,0,2023,2024,5,69,0,0,2024,2025,5, + 77,0,0,2025,2026,5,69,0,0,2026,2027,5,78,0,0,2027,2028,5,84,0,0,2028,288, + 1,0,0,0,2029,2030,5,83,0,0,2030,2031,5,84,0,0,2031,2032,5,69,0,0,2032,2033, + 5,80,0,0,2033,290,1,0,0,0,2034,2035,5,83,0,0,2035,2036,5,84,0,0,2036,2037, + 5,82,0,0,2037,2038,5,73,0,0,2038,2039,5,78,0,0,2039,2040,5,71,0,0,2040, + 292,1,0,0,0,2041,2042,5,83,0,0,2042,2043,5,84,0,0,2043,2044,5,82,0,0,2044, + 2045,5,85,0,0,2045,2046,5,67,0,0,2046,2047,5,84,0,0,2047,2048,5,85,0,0, + 2048,2049,5,82,0,0,2049,2050,5,69,0,0,2050,294,1,0,0,0,2051,2052,5,83,0, + 0,2052,2053,5,84,0,0,2053,2054,5,89,0,0,2054,2055,5,76,0,0,2055,2056,5, + 69,0,0,2056,296,1,0,0,0,2057,2058,5,84,0,0,2058,2059,5,65,0,0,2059,2060, + 5,66,0,0,2060,2061,5,76,0,0,2061,2062,5,69,0,0,2062,2063,5,83,0,0,2063, + 298,1,0,0,0,2064,2065,5,84,0,0,2065,2066,5,69,0,0,2066,2067,5,77,0,0,2067, + 2068,5,80,0,0,2068,2069,5,79,0,0,2069,2070,5,82,0,0,2070,2071,5,65,0,0, + 2071,2072,5,82,0,0,2072,2073,5,89,0,0,2073,300,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, + 67,0,0,2079,2080,5,79,0,0,2080,2081,5,76,0,0,2081,302,1,0,0,0,2082,2083, + 5,84,0,0,2083,2084,5,73,0,0,2084,2085,5,77,0,0,2085,2086,5,69,0,0,2086, + 2087,5,83,0,0,2087,2088,5,84,0,0,2088,2089,5,65,0,0,2089,2090,5,77,0,0, + 2090,2091,5,80,0,0,2091,2092,5,95,0,0,2092,2093,5,76,0,0,2093,2094,5,84, + 0,0,2094,2095,5,90,0,0,2095,304,1,0,0,0,2096,2097,5,84,0,0,2097,2098,5, + 73,0,0,2098,2099,5,77,0,0,2099,2100,5,69,0,0,2100,2101,5,83,0,0,2101,2102, + 5,84,0,0,2102,2103,5,65,0,0,2103,2104,5,77,0,0,2104,2105,5,80,0,0,2105, + 2106,5,65,0,0,2106,2107,5,68,0,0,2107,2108,5,68,0,0,2108,306,1,0,0,0,2109, + 2110,5,84,0,0,2110,2111,5,73,0,0,2111,2112,5,77,0,0,2112,2113,5,69,0,0, + 2113,2114,5,83,0,0,2114,2115,5,84,0,0,2115,2116,5,65,0,0,2116,2117,5,77, + 0,0,2117,2118,5,80,0,0,2118,2119,5,68,0,0,2119,2120,5,73,0,0,2120,2121, + 5,70,0,0,2121,2122,5,70,0,0,2122,308,1,0,0,0,2123,2124,5,84,0,0,2124,2125, + 5,82,0,0,2125,2126,5,65,0,0,2126,2127,5,78,0,0,2127,2128,5,83,0,0,2128, + 2129,5,70,0,0,2129,2130,5,79,0,0,2130,2131,5,82,0,0,2131,2132,5,77,0,0, + 2132,310,1,0,0,0,2133,2134,5,84,0,0,2134,2135,5,85,0,0,2135,2136,5,77,0, + 0,2136,2137,5,66,0,0,2137,2138,5,76,0,0,2138,2139,5,69,0,0,2139,312,1,0, + 0,0,2140,2141,5,84,0,0,2141,2142,5,89,0,0,2142,2143,5,80,0,0,2143,2144, + 5,69,0,0,2144,314,1,0,0,0,2145,2146,5,85,0,0,2146,2147,5,78,0,0,2147,2148, + 5,68,0,0,2148,2149,5,69,0,0,2149,2150,5,82,0,0,2150,316,1,0,0,0,2151,2152, + 5,85,0,0,2152,2153,5,78,0,0,2153,2154,5,76,0,0,2154,2155,5,79,0,0,2155, + 2156,5,65,0,0,2156,2157,5,68,0,0,2157,318,1,0,0,0,2158,2159,5,85,0,0,2159, + 2160,5,83,0,0,2160,2161,5,65,0,0,2161,2162,5,71,0,0,2162,2163,5,69,0,0, + 2163,320,1,0,0,0,2164,2165,5,85,0,0,2165,2166,5,83,0,0,2166,2167,5,69,0, + 0,2167,322,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,49,0,0,2172,2173,5,54,0,0,2173,324,1,0,0,0,2174,2175,5, + 85,0,0,2175,2176,5,84,0,0,2176,2177,5,70,0,0,2177,2178,5,51,0,0,2178,2179, + 5,50,0,0,2179,326,1,0,0,0,2180,2181,5,85,0,0,2181,2182,5,84,0,0,2182,2183, + 5,70,0,0,2183,2184,5,56,0,0,2184,328,1,0,0,0,2185,2186,5,86,0,0,2186,2187, + 5,69,0,0,2187,2188,5,82,0,0,2188,2189,5,83,0,0,2189,2190,5,73,0,0,2190, + 2191,5,79,0,0,2191,2192,5,78,0,0,2192,330,1,0,0,0,2193,2194,5,86,0,0,2194, + 2195,5,73,0,0,2195,2196,5,69,0,0,2196,2197,5,87,0,0,2197,332,1,0,0,0,2198, + 2199,5,86,0,0,2199,2200,5,73,0,0,2200,2201,5,69,0,0,2201,2202,5,87,0,0, + 2202,2203,5,83,0,0,2203,334,1,0,0,0,2204,2205,5,86,0,0,2205,2206,5,73,0, + 0,2206,2207,5,82,0,0,2207,2208,5,84,0,0,2208,2209,5,85,0,0,2209,2210,5, + 65,0,0,2210,2211,5,76,0,0,2211,336,1,0,0,0,2212,2213,5,87,0,0,2213,2214, + 5,65,0,0,2214,2215,5,84,0,0,2215,2216,5,69,0,0,2216,2217,5,82,0,0,2217, + 2218,5,77,0,0,2218,2219,5,65,0,0,2219,2220,5,82,0,0,2220,2221,5,75,0,0, + 2221,338,1,0,0,0,2222,2223,5,87,0,0,2223,2224,5,65,0,0,2224,2225,5,84,0, + 0,2225,2226,5,69,0,0,2226,2227,5,82,0,0,2227,2228,5,77,0,0,2228,2229,5, + 65,0,0,2229,2230,5,82,0,0,2230,2231,5,75,0,0,2231,2232,5,83,0,0,2232,340, + 1,0,0,0,2233,2234,5,87,0,0,2234,2235,5,69,0,0,2235,2236,5,69,0,0,2236,2237, + 5,75,0,0,2237,342,1,0,0,0,2238,2239,5,87,0,0,2239,2240,5,69,0,0,2240,2241, + 5,69,0,0,2241,2242,5,75,0,0,2242,2243,5,83,0,0,2243,344,1,0,0,0,2244,2245, + 5,87,0,0,2245,2246,5,79,0,0,2246,2247,5,82,0,0,2247,2248,5,75,0,0,2248, + 346,1,0,0,0,2249,2250,5,87,0,0,2250,2251,5,82,0,0,2251,2252,5,65,0,0,2252, + 2253,5,80,0,0,2253,2254,5,80,0,0,2254,2255,5,69,0,0,2255,2256,5,82,0,0, + 2256,348,1,0,0,0,2257,2258,5,89,0,0,2258,2259,5,69,0,0,2259,2260,5,65,0, + 0,2260,2261,5,82,0,0,2261,2262,5,83,0,0,2262,350,1,0,0,0,2263,2264,5,90, + 0,0,2264,2265,5,79,0,0,2265,2266,5,78,0,0,2266,2267,5,69,0,0,2267,352,1, + 0,0,0,2268,2269,5,65,0,0,2269,2270,5,66,0,0,2270,2271,5,83,0,0,2271,354, + 1,0,0,0,2272,2273,5,65,0,0,2273,2274,5,76,0,0,2274,2275,5,76,0,0,2275,356, + 1,0,0,0,2276,2277,5,65,0,0,2277,2278,5,76,0,0,2278,2279,5,76,0,0,2279,2280, + 5,79,0,0,2280,2281,5,87,0,0,2281,358,1,0,0,0,2282,2283,5,65,0,0,2283,2284, + 5,76,0,0,2284,2285,5,84,0,0,2285,2286,5,69,0,0,2286,2287,5,82,0,0,2287, + 360,1,0,0,0,2288,2289,5,65,0,0,2289,2290,5,78,0,0,2290,2291,5,68,0,0,2291, + 362,1,0,0,0,2292,2293,5,65,0,0,2293,2294,5,78,0,0,2294,2295,5,89,0,0,2295, + 364,1,0,0,0,2296,2297,5,65,0,0,2297,2298,5,82,0,0,2298,2299,5,69,0,0,2299, + 366,1,0,0,0,2300,2301,5,65,0,0,2301,2302,5,82,0,0,2302,2303,5,82,0,0,2303, + 2304,5,65,0,0,2304,2305,5,89,0,0,2305,368,1,0,0,0,2306,2307,5,65,0,0,2307, + 2308,5,83,0,0,2308,370,1,0,0,0,2309,2310,5,65,0,0,2310,2311,5,83,0,0,2311, + 2312,5,89,0,0,2312,2313,5,77,0,0,2313,2314,5,77,0,0,2314,2315,5,69,0,0, + 2315,2316,5,84,0,0,2316,2317,5,82,0,0,2317,2318,5,73,0,0,2318,2319,5,67, + 0,0,2319,372,1,0,0,0,2320,2321,5,65,0,0,2321,2322,5,84,0,0,2322,374,1,0, + 0,0,2323,2324,5,65,0,0,2324,2325,5,86,0,0,2325,2326,5,71,0,0,2326,376,1, + 0,0,0,2327,2328,5,66,0,0,2328,2329,5,69,0,0,2329,2330,5,71,0,0,2330,2331, + 5,73,0,0,2331,2332,5,78,0,0,2332,378,1,0,0,0,2333,2334,5,66,0,0,2334,2335, + 5,69,0,0,2335,2336,5,84,0,0,2336,2337,5,87,0,0,2337,2338,5,69,0,0,2338, + 2339,5,69,0,0,2339,2340,5,78,0,0,2340,380,1,0,0,0,2341,2342,5,66,0,0,2342, + 2343,5,73,0,0,2343,2344,5,71,0,0,2344,2345,5,73,0,0,2345,2346,5,78,0,0, + 2346,2347,5,84,0,0,2347,382,1,0,0,0,2348,2349,5,66,0,0,2349,2350,5,73,0, + 0,2350,2351,5,78,0,0,2351,2352,5,65,0,0,2352,2353,5,82,0,0,2353,2354,5, + 89,0,0,2354,384,1,0,0,0,2355,2356,5,66,0,0,2356,2357,5,73,0,0,2357,2358, + 5,84,0,0,2358,386,1,0,0,0,2359,2360,5,66,0,0,2360,2361,5,76,0,0,2361,2362, + 5,79,0,0,2362,2363,5,66,0,0,2363,388,1,0,0,0,2364,2365,5,66,0,0,2365,2366, + 5,79,0,0,2366,2367,5,79,0,0,2367,2368,5,76,0,0,2368,2369,5,69,0,0,2369, + 2370,5,65,0,0,2370,2371,5,78,0,0,2371,390,1,0,0,0,2372,2373,5,66,0,0,2373, + 2374,5,79,0,0,2374,2375,5,84,0,0,2375,2376,5,72,0,0,2376,392,1,0,0,0,2377, + 2378,5,66,0,0,2378,2379,5,89,0,0,2379,394,1,0,0,0,2380,2381,5,67,0,0,2381, + 2382,5,65,0,0,2382,2383,5,76,0,0,2383,2384,5,76,0,0,2384,396,1,0,0,0,2385, + 2386,5,67,0,0,2386,2387,5,65,0,0,2387,2388,5,76,0,0,2388,2389,5,76,0,0, + 2389,2390,5,69,0,0,2390,2391,5,68,0,0,2391,398,1,0,0,0,2392,2393,5,67,0, + 0,2393,2394,5,65,0,0,2394,2395,5,83,0,0,2395,2396,5,67,0,0,2396,2397,5, + 65,0,0,2397,2398,5,68,0,0,2398,2399,5,69,0,0,2399,2400,5,68,0,0,2400,400, + 1,0,0,0,2401,2402,5,67,0,0,2402,2403,5,65,0,0,2403,2404,5,83,0,0,2404,2405, + 5,69,0,0,2405,402,1,0,0,0,2406,2407,5,67,0,0,2407,2408,5,65,0,0,2408,2409, + 5,83,0,0,2409,2410,5,84,0,0,2410,404,1,0,0,0,2411,2412,5,67,0,0,2412,2413, + 5,69,0,0,2413,2414,5,73,0,0,2414,2415,5,76,0,0,2415,406,1,0,0,0,2416,2417, + 5,67,0,0,2417,2418,5,72,0,0,2418,2419,5,65,0,0,2419,2420,5,82,0,0,2420, + 408,1,0,0,0,2421,2422,5,67,0,0,2422,2423,5,72,0,0,2423,2424,5,65,0,0,2424, + 2425,5,82,0,0,2425,2426,5,65,0,0,2426,2427,5,67,0,0,2427,2428,5,84,0,0, + 2428,2429,5,69,0,0,2429,2430,5,82,0,0,2430,410,1,0,0,0,2431,2432,5,67,0, + 0,2432,2433,5,72,0,0,2433,2434,5,69,0,0,2434,2435,5,67,0,0,2435,2436,5, + 75,0,0,2436,412,1,0,0,0,2437,2438,5,67,0,0,2438,2439,5,76,0,0,2439,2440, + 5,79,0,0,2440,2441,5,66,0,0,2441,414,1,0,0,0,2442,2443,5,67,0,0,2443,2444, + 5,76,0,0,2444,2445,5,79,0,0,2445,2446,5,83,0,0,2446,2447,5,69,0,0,2447, + 416,1,0,0,0,2448,2449,5,67,0,0,2449,2450,5,79,0,0,2450,2451,5,65,0,0,2451, + 2452,5,76,0,0,2452,2453,5,69,0,0,2453,2454,5,83,0,0,2454,2455,5,67,0,0, + 2455,2456,5,69,0,0,2456,418,1,0,0,0,2457,2458,5,67,0,0,2458,2459,5,79,0, + 0,2459,2460,5,76,0,0,2460,2461,5,76,0,0,2461,2462,5,65,0,0,2462,2463,5, + 84,0,0,2463,2464,5,69,0,0,2464,420,1,0,0,0,2465,2466,5,67,0,0,2466,2467, + 5,79,0,0,2467,2468,5,76,0,0,2468,2469,5,76,0,0,2469,2470,5,69,0,0,2470, + 2471,5,67,0,0,2471,2472,5,84,0,0,2472,422,1,0,0,0,2473,2474,5,67,0,0,2474, + 2475,5,79,0,0,2475,2476,5,76,0,0,2476,2477,5,85,0,0,2477,2478,5,77,0,0, + 2478,2479,5,78,0,0,2479,424,1,0,0,0,2480,2481,5,67,0,0,2481,2482,5,79,0, + 0,2482,2483,5,77,0,0,2483,2484,5,77,0,0,2484,2485,5,73,0,0,2485,2486,5, + 84,0,0,2486,426,1,0,0,0,2487,2488,5,67,0,0,2488,2489,5,79,0,0,2489,2490, + 5,78,0,0,2490,2491,5,78,0,0,2491,2492,5,69,0,0,2492,2493,5,67,0,0,2493, + 2494,5,84,0,0,2494,428,1,0,0,0,2495,2496,5,67,0,0,2496,2497,5,79,0,0,2497, + 2498,5,78,0,0,2498,2499,5,83,0,0,2499,2500,5,84,0,0,2500,2501,5,82,0,0, + 2501,2502,5,65,0,0,2502,2503,5,73,0,0,2503,2504,5,78,0,0,2504,2505,5,84, + 0,0,2505,430,1,0,0,0,2506,2507,5,67,0,0,2507,2508,5,79,0,0,2508,2509,5, + 78,0,0,2509,2510,5,84,0,0,2510,2511,5,65,0,0,2511,2512,5,73,0,0,2512,2513, + 5,78,0,0,2513,2514,5,83,0,0,2514,432,1,0,0,0,2515,2516,5,67,0,0,2516,2517, + 5,79,0,0,2517,2518,5,78,0,0,2518,2519,5,86,0,0,2519,2520,5,69,0,0,2520, + 2521,5,82,0,0,2521,2522,5,84,0,0,2522,434,1,0,0,0,2523,2524,5,67,0,0,2524, + 2525,5,79,0,0,2525,2526,5,85,0,0,2526,2527,5,78,0,0,2527,2528,5,84,0,0, + 2528,436,1,0,0,0,2529,2530,5,67,0,0,2530,2531,5,82,0,0,2531,2532,5,69,0, + 0,2532,2533,5,65,0,0,2533,2534,5,84,0,0,2534,2535,5,69,0,0,2535,438,1,0, + 0,0,2536,2537,5,67,0,0,2537,2538,5,82,0,0,2538,2539,5,79,0,0,2539,2540, + 5,83,0,0,2540,2541,5,83,0,0,2541,440,1,0,0,0,2542,2543,5,67,0,0,2543,2544, + 5,85,0,0,2544,2545,5,66,0,0,2545,2546,5,69,0,0,2546,442,1,0,0,0,2547,2548, + 5,67,0,0,2548,2549,5,85,0,0,2549,2550,5,82,0,0,2550,2551,5,82,0,0,2551, + 2552,5,69,0,0,2552,2553,5,78,0,0,2553,2554,5,84,0,0,2554,444,1,0,0,0,2555, + 2556,5,67,0,0,2556,2557,5,85,0,0,2557,2558,5,82,0,0,2558,2559,5,83,0,0, + 2559,2560,5,79,0,0,2560,2561,5,82,0,0,2561,446,1,0,0,0,2562,2563,5,67,0, + 0,2563,2564,5,89,0,0,2564,2565,5,67,0,0,2565,2566,5,76,0,0,2566,2567,5, + 69,0,0,2567,448,1,0,0,0,2568,2569,5,68,0,0,2569,2570,5,65,0,0,2570,2571, + 5,84,0,0,2571,2572,5,69,0,0,2572,450,1,0,0,0,2573,2574,5,68,0,0,2574,2575, + 5,65,0,0,2575,2576,5,84,0,0,2576,2577,5,69,0,0,2577,2578,5,84,0,0,2578, + 2579,5,73,0,0,2579,2580,5,77,0,0,2580,2581,5,69,0,0,2581,452,1,0,0,0,2582, + 2583,5,68,0,0,2583,2584,5,65,0,0,2584,2585,5,89,0,0,2585,454,1,0,0,0,2586, + 2587,5,68,0,0,2587,2588,5,69,0,0,2588,2589,5,67,0,0,2589,456,1,0,0,0,2590, + 2591,5,68,0,0,2591,2592,5,69,0,0,2592,2593,5,67,0,0,2593,2594,5,73,0,0, + 2594,2595,5,77,0,0,2595,2596,5,65,0,0,2596,2597,5,76,0,0,2597,458,1,0,0, + 0,2598,2599,5,68,0,0,2599,2600,5,69,0,0,2600,2601,5,67,0,0,2601,2602,5, + 76,0,0,2602,2603,5,65,0,0,2603,2604,5,82,0,0,2604,2605,5,69,0,0,2605,460, + 1,0,0,0,2606,2607,5,68,0,0,2607,2608,5,69,0,0,2608,2609,5,70,0,0,2609,2610, + 5,65,0,0,2610,2611,5,85,0,0,2611,2612,5,76,0,0,2612,2613,5,84,0,0,2613, + 462,1,0,0,0,2614,2615,5,68,0,0,2615,2616,5,69,0,0,2616,2617,5,70,0,0,2617, + 2618,5,73,0,0,2618,2619,5,78,0,0,2619,2620,5,69,0,0,2620,464,1,0,0,0,2621, + 2622,5,68,0,0,2622,2623,5,69,0,0,2623,2624,5,76,0,0,2624,2625,5,69,0,0, + 2625,2626,5,84,0,0,2626,2627,5,69,0,0,2627,466,1,0,0,0,2628,2629,5,68,0, + 0,2629,2630,5,69,0,0,2630,2631,5,83,0,0,2631,2632,5,67,0,0,2632,2633,5, + 82,0,0,2633,2634,5,73,0,0,2634,2635,5,66,0,0,2635,2636,5,69,0,0,2636,468, + 1,0,0,0,2637,2638,5,68,0,0,2638,2639,5,73,0,0,2639,2640,5,83,0,0,2640,2641, + 5,84,0,0,2641,2642,5,73,0,0,2642,2643,5,78,0,0,2643,2644,5,67,0,0,2644, + 2645,5,84,0,0,2645,470,1,0,0,0,2646,2647,5,68,0,0,2647,2648,5,79,0,0,2648, + 2649,5,85,0,0,2649,2650,5,66,0,0,2650,2651,5,76,0,0,2651,2652,5,69,0,0, + 2652,472,1,0,0,0,2653,2654,5,68,0,0,2654,2655,5,82,0,0,2655,2656,5,79,0, + 0,2656,2657,5,80,0,0,2657,474,1,0,0,0,2658,2659,5,69,0,0,2659,2660,5,65, + 0,0,2660,2661,5,67,0,0,2661,2662,5,72,0,0,2662,476,1,0,0,0,2663,2664,5, + 69,0,0,2664,2665,5,76,0,0,2665,2666,5,83,0,0,2666,2667,5,69,0,0,2667,478, + 1,0,0,0,2668,2669,5,69,0,0,2669,2670,5,78,0,0,2670,2671,5,68,0,0,2671,480, + 1,0,0,0,2672,2673,5,69,0,0,2673,2674,5,81,0,0,2674,2675,5,85,0,0,2675,2676, + 5,65,0,0,2676,2677,5,76,0,0,2677,2678,5,83,0,0,2678,482,1,0,0,0,2679,2680, + 5,69,0,0,2680,2681,5,83,0,0,2681,2682,5,67,0,0,2682,2683,5,65,0,0,2683, + 2684,5,80,0,0,2684,2685,5,69,0,0,2685,484,1,0,0,0,2686,2687,5,69,0,0,2687, + 2688,5,88,0,0,2688,2689,5,67,0,0,2689,2690,5,69,0,0,2690,2691,5,80,0,0, + 2691,2692,5,84,0,0,2692,486,1,0,0,0,2693,2694,5,69,0,0,2694,2695,5,88,0, + 0,2695,2696,5,69,0,0,2696,2697,5,67,0,0,2697,2698,5,85,0,0,2698,2699,5, + 84,0,0,2699,2700,5,69,0,0,2700,488,1,0,0,0,2701,2702,5,69,0,0,2702,2703, + 5,88,0,0,2703,2704,5,73,0,0,2704,2705,5,83,0,0,2705,2706,5,84,0,0,2706, + 2707,5,83,0,0,2707,490,1,0,0,0,2708,2709,5,69,0,0,2709,2710,5,88,0,0,2710, + 2711,5,80,0,0,2711,2712,5,76,0,0,2712,2713,5,65,0,0,2713,2714,5,73,0,0, + 2714,2715,5,78,0,0,2715,492,1,0,0,0,2716,2717,5,69,0,0,2717,2718,5,88,0, + 0,2718,2719,5,84,0,0,2719,2720,5,69,0,0,2720,2721,5,82,0,0,2721,2722,5, + 78,0,0,2722,2723,5,65,0,0,2723,2724,5,76,0,0,2724,494,1,0,0,0,2725,2726, + 5,69,0,0,2726,2727,5,88,0,0,2727,2728,5,84,0,0,2728,2729,5,82,0,0,2729, + 2730,5,65,0,0,2730,2731,5,67,0,0,2731,2732,5,84,0,0,2732,496,1,0,0,0,2733, + 2734,5,70,0,0,2734,2735,5,65,0,0,2735,2736,5,76,0,0,2736,2737,5,83,0,0, + 2737,2738,5,69,0,0,2738,498,1,0,0,0,2739,2740,5,70,0,0,2740,2741,5,76,0, + 0,2741,2742,5,79,0,0,2742,2743,5,65,0,0,2743,2744,5,84,0,0,2744,500,1,0, + 0,0,2745,2746,5,70,0,0,2746,2747,5,79,0,0,2747,2748,5,82,0,0,2748,502,1, + 0,0,0,2749,2750,5,70,0,0,2750,2751,5,82,0,0,2751,2752,5,79,0,0,2752,2753, + 5,77,0,0,2753,504,1,0,0,0,2754,2755,5,70,0,0,2755,2756,5,85,0,0,2756,2757, + 5,76,0,0,2757,2758,5,76,0,0,2758,506,1,0,0,0,2759,2760,5,70,0,0,2760,2761, + 5,85,0,0,2761,2762,5,78,0,0,2762,2763,5,67,0,0,2763,2764,5,84,0,0,2764, + 2765,5,73,0,0,2765,2766,5,79,0,0,2766,2767,5,78,0,0,2767,508,1,0,0,0,2768, + 2769,5,71,0,0,2769,2770,5,76,0,0,2770,2771,5,79,0,0,2771,2772,5,66,0,0, + 2772,2773,5,65,0,0,2773,2774,5,76,0,0,2774,510,1,0,0,0,2775,2776,5,71,0, + 0,2776,2777,5,82,0,0,2777,2778,5,65,0,0,2778,2779,5,78,0,0,2779,2780,5, + 84,0,0,2780,512,1,0,0,0,2781,2782,5,71,0,0,2782,2783,5,82,0,0,2783,2784, + 5,79,0,0,2784,2785,5,85,0,0,2785,2786,5,80,0,0,2786,514,1,0,0,0,2787,2788, + 5,71,0,0,2788,2789,5,82,0,0,2789,2790,5,79,0,0,2790,2791,5,85,0,0,2791, + 2792,5,80,0,0,2792,2793,5,73,0,0,2793,2794,5,78,0,0,2794,2795,5,71,0,0, + 2795,516,1,0,0,0,2796,2797,5,71,0,0,2797,2798,5,82,0,0,2798,2799,5,79,0, + 0,2799,2800,5,85,0,0,2800,2801,5,80,0,0,2801,2802,5,83,0,0,2802,518,1,0, + 0,0,2803,2804,5,72,0,0,2804,2805,5,65,0,0,2805,2806,5,86,0,0,2806,2807, + 5,73,0,0,2807,2808,5,78,0,0,2808,2809,5,71,0,0,2809,520,1,0,0,0,2810,2811, + 5,72,0,0,2811,2812,5,79,0,0,2812,2813,5,85,0,0,2813,2814,5,82,0,0,2814, + 522,1,0,0,0,2815,2816,5,73,0,0,2816,2817,5,77,0,0,2817,2818,5,80,0,0,2818, + 2819,5,79,0,0,2819,2820,5,82,0,0,2820,2821,5,84,0,0,2821,524,1,0,0,0,2822, + 2823,5,73,0,0,2823,2824,5,78,0,0,2824,526,1,0,0,0,2825,2826,5,73,0,0,2826, + 2827,5,78,0,0,2827,2828,5,67,0,0,2828,2829,5,76,0,0,2829,2830,5,85,0,0, + 2830,2831,5,68,0,0,2831,2832,5,73,0,0,2832,2833,5,78,0,0,2833,2834,5,71, + 0,0,2834,528,1,0,0,0,2835,2836,5,73,0,0,2836,2837,5,78,0,0,2837,2838,5, + 78,0,0,2838,2839,5,69,0,0,2839,2840,5,82,0,0,2840,530,1,0,0,0,2841,2842, + 5,73,0,0,2842,2843,5,78,0,0,2843,2844,5,79,0,0,2844,2845,5,85,0,0,2845, + 2846,5,84,0,0,2846,532,1,0,0,0,2847,2848,5,73,0,0,2848,2849,5,78,0,0,2849, + 2850,5,83,0,0,2850,2851,5,69,0,0,2851,2852,5,82,0,0,2852,2853,5,84,0,0, + 2853,534,1,0,0,0,2854,2855,5,73,0,0,2855,2856,5,78,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,71,0,0,2863,2864,5,69,0,0,2864,2865, + 5,82,0,0,2865,538,1,0,0,0,2866,2867,5,73,0,0,2867,2868,5,78,0,0,2868,2869, + 5,84,0,0,2869,2870,5,69,0,0,2870,2871,5,82,0,0,2871,2872,5,83,0,0,2872, + 2873,5,69,0,0,2873,2874,5,67,0,0,2874,2875,5,84,0,0,2875,540,1,0,0,0,2876, + 2877,5,73,0,0,2877,2878,5,78,0,0,2878,2879,5,84,0,0,2879,2880,5,69,0,0, + 2880,2881,5,82,0,0,2881,2882,5,86,0,0,2882,2883,5,65,0,0,2883,2884,5,76, + 0,0,2884,542,1,0,0,0,2885,2886,5,73,0,0,2886,2887,5,78,0,0,2887,2888,5, + 84,0,0,2888,2889,5,79,0,0,2889,544,1,0,0,0,2890,2891,5,73,0,0,2891,2892, + 5,83,0,0,2892,546,1,0,0,0,2893,2894,5,74,0,0,2894,2895,5,79,0,0,2895,2896, + 5,73,0,0,2896,2897,5,78,0,0,2897,548,1,0,0,0,2898,2899,5,76,0,0,2899,2900, + 5,65,0,0,2900,2901,5,71,0,0,2901,550,1,0,0,0,2902,2903,5,76,0,0,2903,2904, + 5,65,0,0,2904,2905,5,78,0,0,2905,2906,5,71,0,0,2906,2907,5,85,0,0,2907, + 2908,5,65,0,0,2908,2909,5,71,0,0,2909,2910,5,69,0,0,2910,552,1,0,0,0,2911, + 2912,5,76,0,0,2912,2913,5,65,0,0,2913,2914,5,84,0,0,2914,2915,5,69,0,0, + 2915,2916,5,82,0,0,2916,2917,5,65,0,0,2917,2918,5,76,0,0,2918,554,1,0,0, + 0,2919,2920,5,76,0,0,2920,2921,5,69,0,0,2921,2922,5,65,0,0,2922,2923,5, + 68,0,0,2923,2924,5,73,0,0,2924,2925,5,78,0,0,2925,2926,5,71,0,0,2926,556, + 1,0,0,0,2927,2928,5,76,0,0,2928,2929,5,69,0,0,2929,2930,5,70,0,0,2930,2931, + 5,84,0,0,2931,558,1,0,0,0,2932,2933,5,76,0,0,2933,2934,5,73,0,0,2934,2935, + 5,75,0,0,2935,2936,5,69,0,0,2936,560,1,0,0,0,2937,2938,5,76,0,0,2938,2939, + 5,73,0,0,2939,2940,5,77,0,0,2940,2941,5,73,0,0,2941,2942,5,84,0,0,2942, + 562,1,0,0,0,2943,2944,5,76,0,0,2944,2945,5,79,0,0,2945,2946,5,67,0,0,2946, + 2947,5,65,0,0,2947,2948,5,76,0,0,2948,564,1,0,0,0,2949,2950,5,77,0,0,2950, + 2951,5,65,0,0,2951,2952,5,84,0,0,2952,2953,5,67,0,0,2953,2954,5,72,0,0, + 2954,566,1,0,0,0,2955,2956,5,77,0,0,2956,2957,5,65,0,0,2957,2958,5,84,0, + 0,2958,2959,5,67,0,0,2959,2960,5,72,0,0,2960,2961,5,95,0,0,2961,2962,5, + 82,0,0,2962,2963,5,69,0,0,2963,2964,5,67,0,0,2964,2965,5,79,0,0,2965,2966, + 5,71,0,0,2966,2967,5,78,0,0,2967,2968,5,73,0,0,2968,2969,5,90,0,0,2969, + 2970,5,69,0,0,2970,568,1,0,0,0,2971,2972,5,77,0,0,2972,2973,5,69,0,0,2973, + 2974,5,65,0,0,2974,2975,5,83,0,0,2975,2976,5,85,0,0,2976,2977,5,82,0,0, + 2977,2978,5,69,0,0,2978,2979,5,83,0,0,2979,570,1,0,0,0,2980,2981,5,77,0, + 0,2981,2982,5,69,0,0,2982,2983,5,82,0,0,2983,2984,5,71,0,0,2984,2985,5, + 69,0,0,2985,572,1,0,0,0,2986,2987,5,77,0,0,2987,2988,5,69,0,0,2988,2989, + 5,84,0,0,2989,2990,5,65,0,0,2990,2991,5,68,0,0,2991,2992,5,65,0,0,2992, + 2993,5,84,0,0,2993,2994,5,65,0,0,2994,574,1,0,0,0,2995,2996,5,77,0,0,2996, + 2997,5,73,0,0,2997,2998,5,78,0,0,2998,2999,5,85,0,0,2999,3000,5,83,0,0, + 3000,576,1,0,0,0,3001,3002,5,77,0,0,3002,3003,5,73,0,0,3003,3004,5,78,0, + 0,3004,3005,5,85,0,0,3005,3006,5,84,0,0,3006,3007,5,69,0,0,3007,578,1,0, + 0,0,3008,3009,5,77,0,0,3009,3010,5,79,0,0,3010,3011,5,68,0,0,3011,3012, + 5,73,0,0,3012,3013,5,70,0,0,3013,3014,5,73,0,0,3014,3015,5,69,0,0,3015, + 3016,5,83,0,0,3016,580,1,0,0,0,3017,3018,5,77,0,0,3018,3019,5,79,0,0,3019, + 3020,5,68,0,0,3020,3021,5,85,0,0,3021,3022,5,76,0,0,3022,3023,5,69,0,0, + 3023,582,1,0,0,0,3024,3025,5,77,0,0,3025,3026,5,79,0,0,3026,3027,5,78,0, + 0,3027,3028,5,84,0,0,3028,3029,5,72,0,0,3029,584,1,0,0,0,3030,3031,5,77, + 0,0,3031,3032,5,85,0,0,3032,3033,5,76,0,0,3033,3034,5,84,0,0,3034,3035, + 5,73,0,0,3035,3036,5,83,0,0,3036,3037,5,69,0,0,3037,3038,5,84,0,0,3038, + 586,1,0,0,0,3039,3040,5,78,0,0,3040,3041,5,65,0,0,3041,3042,5,84,0,0,3042, + 3043,5,85,0,0,3043,3044,5,82,0,0,3044,3045,5,65,0,0,3045,3046,5,76,0,0, + 3046,588,1,0,0,0,3047,3048,5,78,0,0,3048,3049,5,69,0,0,3049,3050,5,88,0, + 0,3050,3051,5,84,0,0,3051,590,1,0,0,0,3052,3053,5,78,0,0,3053,3054,5,79, + 0,0,3054,592,1,0,0,0,3055,3056,5,78,0,0,3056,3057,5,79,0,0,3057,3058,5, + 78,0,0,3058,3059,5,69,0,0,3059,594,1,0,0,0,3060,3061,5,78,0,0,3061,3062, + 5,79,0,0,3062,3063,5,84,0,0,3063,596,1,0,0,0,3064,3065,5,78,0,0,3065,3066, + 5,85,0,0,3066,3067,5,76,0,0,3067,3068,5,76,0,0,3068,598,1,0,0,0,3069,3070, + 5,78,0,0,3070,3071,5,85,0,0,3071,3072,5,77,0,0,3072,3073,5,69,0,0,3073, + 3074,5,82,0,0,3074,3075,5,73,0,0,3075,3076,5,67,0,0,3076,600,1,0,0,0,3077, + 3078,5,79,0,0,3078,3079,5,70,0,0,3079,602,1,0,0,0,3080,3081,5,79,0,0,3081, + 3082,5,70,0,0,3082,3083,5,70,0,0,3083,3084,5,83,0,0,3084,3085,5,69,0,0, + 3085,3086,5,84,0,0,3086,604,1,0,0,0,3087,3088,5,79,0,0,3088,3089,5,78,0, + 0,3089,606,1,0,0,0,3090,3091,5,79,0,0,3091,3092,5,78,0,0,3092,3093,5,69, + 0,0,3093,608,1,0,0,0,3094,3095,5,79,0,0,3095,3096,5,82,0,0,3096,610,1,0, + 0,0,3097,3098,5,79,0,0,3098,3099,5,82,0,0,3099,3100,5,68,0,0,3100,3101, + 5,69,0,0,3101,3102,5,82,0,0,3102,612,1,0,0,0,3103,3104,5,79,0,0,3104,3105, + 5,85,0,0,3105,3106,5,84,0,0,3106,614,1,0,0,0,3107,3108,5,79,0,0,3108,3109, + 5,85,0,0,3109,3110,5,84,0,0,3110,3111,5,69,0,0,3111,3112,5,82,0,0,3112, + 616,1,0,0,0,3113,3114,5,79,0,0,3114,3115,5,86,0,0,3115,3116,5,69,0,0,3116, + 3117,5,82,0,0,3117,618,1,0,0,0,3118,3119,5,79,0,0,3119,3120,5,86,0,0,3120, + 3121,5,69,0,0,3121,3122,5,82,0,0,3122,3123,5,76,0,0,3123,3124,5,65,0,0, + 3124,3125,5,89,0,0,3125,620,1,0,0,0,3126,3127,5,80,0,0,3127,3128,5,65,0, + 0,3128,3129,5,82,0,0,3129,3130,5,84,0,0,3130,3131,5,73,0,0,3131,3132,5, + 84,0,0,3132,3133,5,73,0,0,3133,3134,5,79,0,0,3134,3135,5,78,0,0,3135,622, + 1,0,0,0,3136,3137,5,80,0,0,3137,3138,5,65,0,0,3138,3139,5,84,0,0,3139,3140, + 5,84,0,0,3140,3141,5,69,0,0,3141,3142,5,82,0,0,3142,3143,5,78,0,0,3143, + 624,1,0,0,0,3144,3145,5,80,0,0,3145,3146,5,69,0,0,3146,3147,5,82,0,0,3147, + 626,1,0,0,0,3148,3149,5,80,0,0,3149,3150,5,69,0,0,3150,3151,5,82,0,0,3151, + 3152,5,67,0,0,3152,3153,5,69,0,0,3153,3154,5,78,0,0,3154,3155,5,84,0,0, + 3155,628,1,0,0,0,3156,3157,5,80,0,0,3157,3158,5,69,0,0,3158,3159,5,82,0, + 0,3159,3160,5,73,0,0,3160,3161,5,79,0,0,3161,3162,5,68,0,0,3162,630,1,0, + 0,0,3163,3164,5,80,0,0,3164,3165,5,79,0,0,3165,3166,5,83,0,0,3166,3167, + 5,73,0,0,3167,3168,5,84,0,0,3168,3169,5,73,0,0,3169,3170,5,79,0,0,3170, + 3171,5,78,0,0,3171,632,1,0,0,0,3172,3173,5,80,0,0,3173,3174,5,79,0,0,3174, + 3175,5,87,0,0,3175,3176,5,69,0,0,3176,3177,5,82,0,0,3177,634,1,0,0,0,3178, + 3179,5,80,0,0,3179,3180,5,82,0,0,3180,3181,5,73,0,0,3181,3182,5,77,0,0, + 3182,3183,5,65,0,0,3183,3184,5,82,0,0,3184,3185,5,89,0,0,3185,636,1,0,0, + 0,3186,3187,5,82,0,0,3187,3188,5,65,0,0,3188,3189,5,78,0,0,3189,3190,5, + 71,0,0,3190,3191,5,69,0,0,3191,638,1,0,0,0,3192,3193,5,82,0,0,3193,3194, + 5,65,0,0,3194,3195,5,78,0,0,3195,3196,5,75,0,0,3196,640,1,0,0,0,3197,3198, + 5,82,0,0,3198,3199,5,69,0,0,3199,3200,5,83,0,0,3200,3201,5,69,0,0,3201, + 3202,5,84,0,0,3202,642,1,0,0,0,3203,3204,5,82,0,0,3204,3205,5,69,0,0,3205, + 3206,5,86,0,0,3206,3207,5,79,0,0,3207,3208,5,75,0,0,3208,3209,5,69,0,0, + 3209,644,1,0,0,0,3210,3211,5,82,0,0,3211,3212,5,73,0,0,3212,3213,5,71,0, + 0,3213,3214,5,72,0,0,3214,3215,5,84,0,0,3215,646,1,0,0,0,3216,3217,5,82, + 0,0,3217,3218,5,76,0,0,3218,3219,5,73,0,0,3219,3220,5,75,0,0,3220,3221, + 5,69,0,0,3221,648,1,0,0,0,3222,3223,5,82,0,0,3223,3224,5,79,0,0,3224,3225, + 5,76,0,0,3225,3226,5,76,0,0,3226,3227,5,66,0,0,3227,3228,5,65,0,0,3228, + 3229,5,67,0,0,3229,3230,5,75,0,0,3230,650,1,0,0,0,3231,3232,5,82,0,0,3232, + 3233,5,79,0,0,3233,3234,5,76,0,0,3234,3235,5,76,0,0,3235,3236,5,85,0,0, + 3236,3237,5,80,0,0,3237,652,1,0,0,0,3238,3239,5,82,0,0,3239,3240,5,79,0, + 0,3240,3241,5,87,0,0,3241,654,1,0,0,0,3242,3243,5,82,0,0,3243,3244,5,79, + 0,0,3244,3245,5,87,0,0,3245,3246,5,83,0,0,3246,656,1,0,0,0,3247,3248,5, + 83,0,0,3248,3249,5,69,0,0,3249,3250,5,67,0,0,3250,3251,5,79,0,0,3251,3252, + 5,78,0,0,3252,3253,5,68,0,0,3253,658,1,0,0,0,3254,3255,5,83,0,0,3255,3256, + 5,69,0,0,3256,3257,5,76,0,0,3257,3258,5,69,0,0,3258,3259,5,67,0,0,3259, + 3260,5,84,0,0,3260,660,1,0,0,0,3261,3262,5,83,0,0,3262,3263,5,69,0,0,3263, + 3264,5,84,0,0,3264,662,1,0,0,0,3265,3266,5,83,0,0,3266,3267,5,72,0,0,3267, + 3268,5,79,0,0,3268,3269,5,87,0,0,3269,664,1,0,0,0,3270,3271,5,83,0,0,3271, + 3272,5,73,0,0,3272,3273,5,77,0,0,3273,3274,5,73,0,0,3274,3275,5,76,0,0, + 3275,3276,5,65,0,0,3276,3277,5,82,0,0,3277,666,1,0,0,0,3278,3279,5,83,0, + 0,3279,3280,5,75,0,0,3280,3281,5,73,0,0,3281,3282,5,80,0,0,3282,668,1,0, + 0,0,3283,3284,5,83,0,0,3284,3285,5,77,0,0,3285,3286,5,65,0,0,3286,3287, + 5,76,0,0,3287,3288,5,76,0,0,3288,3289,5,73,0,0,3289,3290,5,78,0,0,3290, + 3291,5,84,0,0,3291,670,1,0,0,0,3292,3293,5,83,0,0,3293,3294,5,84,0,0,3294, + 3295,5,65,0,0,3295,3296,5,82,0,0,3296,3297,5,84,0,0,3297,672,1,0,0,0,3298, + 3299,5,83,0,0,3299,3300,5,84,0,0,3300,3301,5,65,0,0,3301,3302,5,84,0,0, + 3302,3303,5,73,0,0,3303,3304,5,67,0,0,3304,674,1,0,0,0,3305,3306,5,83,0, + 0,3306,3307,5,85,0,0,3307,3308,5,66,0,0,3308,3309,5,83,0,0,3309,3310,5, + 84,0,0,3310,3311,5,82,0,0,3311,3312,5,73,0,0,3312,3313,5,78,0,0,3313,3314, + 5,71,0,0,3314,676,1,0,0,0,3315,3316,5,83,0,0,3316,3317,5,85,0,0,3317,3318, + 5,77,0,0,3318,678,1,0,0,0,3319,3320,5,83,0,0,3320,3321,5,89,0,0,3321,3322, + 5,77,0,0,3322,3323,5,77,0,0,3323,3324,5,69,0,0,3324,3325,5,84,0,0,3325, + 3326,5,82,0,0,3326,3327,5,73,0,0,3327,3328,5,67,0,0,3328,680,1,0,0,0,3329, + 3330,5,83,0,0,3330,3331,5,89,0,0,3331,3332,5,83,0,0,3332,3333,5,84,0,0, + 3333,3334,5,69,0,0,3334,3335,5,77,0,0,3335,682,1,0,0,0,3336,3337,5,83,0, + 0,3337,3338,5,89,0,0,3338,3339,5,83,0,0,3339,3340,5,84,0,0,3340,3341,5, + 69,0,0,3341,3342,5,77,0,0,3342,3343,5,95,0,0,3343,3344,5,84,0,0,3344,3345, + 5,73,0,0,3345,3346,5,77,0,0,3346,3347,5,69,0,0,3347,684,1,0,0,0,3348,3349, + 5,83,0,0,3349,3350,5,89,0,0,3350,3351,5,83,0,0,3351,3352,5,84,0,0,3352, + 3353,5,69,0,0,3353,3354,5,77,0,0,3354,3355,5,95,0,0,3355,3356,5,85,0,0, + 3356,3357,5,83,0,0,3357,3358,5,69,0,0,3358,3359,5,82,0,0,3359,686,1,0,0, + 0,3360,3361,5,84,0,0,3361,3362,5,65,0,0,3362,3363,5,66,0,0,3363,3364,5, + 76,0,0,3364,3365,5,69,0,0,3365,688,1,0,0,0,3366,3367,5,84,0,0,3367,3368, + 5,65,0,0,3368,3369,5,66,0,0,3369,3370,5,76,0,0,3370,3371,5,69,0,0,3371, + 3372,5,83,0,0,3372,3373,5,65,0,0,3373,3374,5,77,0,0,3374,3375,5,80,0,0, + 3375,3376,5,76,0,0,3376,3377,5,69,0,0,3377,690,1,0,0,0,3378,3379,5,84,0, + 0,3379,3380,5,72,0,0,3380,3381,5,69,0,0,3381,3382,5,78,0,0,3382,692,1,0, + 0,0,3383,3384,5,84,0,0,3384,3385,5,73,0,0,3385,3386,5,77,0,0,3386,3387, + 5,69,0,0,3387,694,1,0,0,0,3388,3389,5,84,0,0,3389,3390,5,73,0,0,3390,3391, + 5,77,0,0,3391,3392,5,69,0,0,3392,3393,5,83,0,0,3393,3394,5,84,0,0,3394, + 3395,5,65,0,0,3395,3396,5,77,0,0,3396,3397,5,80,0,0,3397,696,1,0,0,0,3398, + 3399,5,84,0,0,3399,3400,5,73,0,0,3400,3401,5,78,0,0,3401,3402,5,89,0,0, + 3402,3403,5,73,0,0,3403,3404,5,78,0,0,3404,3405,5,84,0,0,3405,698,1,0,0, + 0,3406,3407,5,84,0,0,3407,3408,5,79,0,0,3408,700,1,0,0,0,3409,3410,5,84, + 0,0,3410,3411,5,82,0,0,3411,3412,5,65,0,0,3412,3413,5,73,0,0,3413,3414, + 5,76,0,0,3414,3415,5,73,0,0,3415,3416,5,78,0,0,3416,3417,5,71,0,0,3417, + 702,1,0,0,0,3418,3419,5,84,0,0,3419,3420,5,82,0,0,3420,3421,5,85,0,0,3421, + 3422,5,69,0,0,3422,704,1,0,0,0,3423,3424,5,84,0,0,3424,3425,5,82,0,0,3425, + 3426,5,85,0,0,3426,3427,5,78,0,0,3427,3428,5,67,0,0,3428,3429,5,65,0,0, + 3429,3430,5,84,0,0,3430,3431,5,69,0,0,3431,706,1,0,0,0,3432,3433,5,85,0, + 0,3433,3434,5,78,0,0,3434,3435,5,73,0,0,3435,3436,5,79,0,0,3436,3437,5, + 78,0,0,3437,708,1,0,0,0,3438,3439,5,85,0,0,3439,3440,5,78,0,0,3440,3441, + 5,73,0,0,3441,3442,5,81,0,0,3442,3443,5,85,0,0,3443,3444,5,69,0,0,3444, + 710,1,0,0,0,3445,3446,5,85,0,0,3446,3447,5,78,0,0,3447,3448,5,75,0,0,3448, + 3449,5,78,0,0,3449,3450,5,79,0,0,3450,3451,5,87,0,0,3451,3452,5,78,0,0, + 3452,712,1,0,0,0,3453,3454,5,85,0,0,3454,3455,5,78,0,0,3455,3456,5,78,0, + 0,3456,3457,5,69,0,0,3457,3458,5,83,0,0,3458,3459,5,84,0,0,3459,714,1,0, + 0,0,3460,3461,5,85,0,0,3461,3462,5,80,0,0,3462,3463,5,80,0,0,3463,3464, + 5,69,0,0,3464,3465,5,82,0,0,3465,716,1,0,0,0,3466,3467,5,85,0,0,3467,3468, + 5,80,0,0,3468,3469,5,83,0,0,3469,3470,5,69,0,0,3470,3471,5,82,0,0,3471, + 3472,5,84,0,0,3472,718,1,0,0,0,3473,3474,5,85,0,0,3474,3475,5,83,0,0,3475, + 3476,5,69,0,0,3476,3477,5,82,0,0,3477,720,1,0,0,0,3478,3479,5,85,0,0,3479, + 3480,5,83,0,0,3480,3481,5,73,0,0,3481,3482,5,78,0,0,3482,3483,5,71,0,0, + 3483,722,1,0,0,0,3484,3485,5,86,0,0,3485,3486,5,65,0,0,3486,3487,5,76,0, + 0,3487,3488,5,85,0,0,3488,3489,5,69,0,0,3489,724,1,0,0,0,3490,3491,5,86, + 0,0,3491,3492,5,65,0,0,3492,3493,5,76,0,0,3493,3494,5,85,0,0,3494,3495, + 5,69,0,0,3495,3496,5,83,0,0,3496,726,1,0,0,0,3497,3498,5,86,0,0,3498,3499, + 5,65,0,0,3499,3500,5,82,0,0,3500,3501,5,66,0,0,3501,3502,5,73,0,0,3502, + 3503,5,78,0,0,3503,3504,5,65,0,0,3504,3505,5,82,0,0,3505,3506,5,89,0,0, + 3506,728,1,0,0,0,3507,3508,5,86,0,0,3508,3509,5,65,0,0,3509,3510,5,82,0, + 0,3510,3511,5,67,0,0,3511,3512,5,72,0,0,3512,3513,5,65,0,0,3513,3514,5, + 82,0,0,3514,730,1,0,0,0,3515,3516,5,87,0,0,3516,3517,5,72,0,0,3517,3518, + 5,69,0,0,3518,3519,5,78,0,0,3519,732,1,0,0,0,3520,3521,5,87,0,0,3521,3522, + 5,72,0,0,3522,3523,5,69,0,0,3523,3524,5,82,0,0,3524,3525,5,69,0,0,3525, + 734,1,0,0,0,3526,3527,5,87,0,0,3527,3528,5,73,0,0,3528,3529,5,78,0,0,3529, + 3530,5,68,0,0,3530,3531,5,79,0,0,3531,3532,5,87,0,0,3532,736,1,0,0,0,3533, + 3534,5,87,0,0,3534,3535,5,73,0,0,3535,3536,5,84,0,0,3536,3537,5,72,0,0, + 3537,738,1,0,0,0,3538,3539,5,87,0,0,3539,3540,5,73,0,0,3540,3541,5,84,0, + 0,3541,3542,5,72,0,0,3542,3543,5,73,0,0,3543,3544,5,78,0,0,3544,740,1,0, + 0,0,3545,3546,5,87,0,0,3546,3547,5,73,0,0,3547,3548,5,84,0,0,3548,3549, + 5,72,0,0,3549,3550,5,79,0,0,3550,3551,5,85,0,0,3551,3552,5,84,0,0,3552, + 742,1,0,0,0,3553,3554,5,89,0,0,3554,3555,5,69,0,0,3555,3556,5,65,0,0,3556, + 3557,5,82,0,0,3557,744,1,0,0,0,3558,3559,5,61,0,0,3559,746,1,0,0,0,3560, + 3561,5,62,0,0,3561,748,1,0,0,0,3562,3563,5,60,0,0,3563,750,1,0,0,0,3564, + 3565,5,33,0,0,3565,752,1,0,0,0,3566,3567,5,126,0,0,3567,754,1,0,0,0,3568, + 3569,5,124,0,0,3569,756,1,0,0,0,3570,3571,5,38,0,0,3571,758,1,0,0,0,3572, + 3573,5,94,0,0,3573,760,1,0,0,0,3574,3575,5,46,0,0,3575,762,1,0,0,0,3576, + 3577,5,91,0,0,3577,764,1,0,0,0,3578,3579,5,93,0,0,3579,766,1,0,0,0,3580, + 3581,5,40,0,0,3581,768,1,0,0,0,3582,3583,5,41,0,0,3583,770,1,0,0,0,3584, + 3585,5,123,0,0,3585,772,1,0,0,0,3586,3587,5,125,0,0,3587,774,1,0,0,0,3588, + 3589,5,44,0,0,3589,776,1,0,0,0,3590,3591,5,59,0,0,3591,778,1,0,0,0,3592, + 3593,5,64,0,0,3593,780,1,0,0,0,3594,3595,5,39,0,0,3595,782,1,0,0,0,3596, + 3597,5,34,0,0,3597,784,1,0,0,0,3598,3599,5,96,0,0,3599,786,1,0,0,0,3600, + 3601,5,58,0,0,3601,788,1,0,0,0,3602,3603,5,42,0,0,3603,790,1,0,0,0,3604, + 3605,5,95,0,0,3605,792,1,0,0,0,3606,3607,5,45,0,0,3607,794,1,0,0,0,3608, + 3609,5,43,0,0,3609,796,1,0,0,0,3610,3611,5,37,0,0,3611,798,1,0,0,0,3612, + 3613,5,124,0,0,3613,3614,5,124,0,0,3614,800,1,0,0,0,3615,3616,5,45,0,0, + 3616,3617,5,45,0,0,3617,802,1,0,0,0,3618,3619,5,47,0,0,3619,804,1,0,0,0, + 3620,3621,5,63,0,0,3621,806,1,0,0,0,3622,3623,5,61,0,0,3623,3624,5,62,0, + 0,3624,808,1,0,0,0,3625,3629,3,833,416,0,3626,3629,3,835,417,0,3627,3629, + 3,839,419,0,3628,3625,1,0,0,0,3628,3626,1,0,0,0,3628,3627,1,0,0,0,3629, + 810,1,0,0,0,3630,3632,3,829,414,0,3631,3630,1,0,0,0,3632,3633,1,0,0,0,3633, + 3631,1,0,0,0,3633,3634,1,0,0,0,3634,812,1,0,0,0,3635,3637,3,829,414,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, + 3641,1,0,0,0,3640,3636,1,0,0,0,3640,3641,1,0,0,0,3641,3642,1,0,0,0,3642, + 3644,5,46,0,0,3643,3645,3,829,414,0,3644,3643,1,0,0,0,3645,3646,1,0,0,0, + 3646,3644,1,0,0,0,3646,3647,1,0,0,0,3647,3679,1,0,0,0,3648,3650,3,829,414, + 0,3649,3648,1,0,0,0,3650,3651,1,0,0,0,3651,3649,1,0,0,0,3651,3652,1,0,0, + 0,3652,3653,1,0,0,0,3653,3654,5,46,0,0,3654,3655,3,825,412,0,3655,3679, + 1,0,0,0,3656,3658,3,829,414,0,3657,3656,1,0,0,0,3658,3659,1,0,0,0,3659, + 3657,1,0,0,0,3659,3660,1,0,0,0,3660,3662,1,0,0,0,3661,3657,1,0,0,0,3661, + 3662,1,0,0,0,3662,3663,1,0,0,0,3663,3665,5,46,0,0,3664,3666,3,829,414,0, + 3665,3664,1,0,0,0,3666,3667,1,0,0,0,3667,3665,1,0,0,0,3667,3668,1,0,0,0, + 3668,3669,1,0,0,0,3669,3670,3,825,412,0,3670,3679,1,0,0,0,3671,3673,3,829, + 414,0,3672,3671,1,0,0,0,3673,3674,1,0,0,0,3674,3672,1,0,0,0,3674,3675,1, + 0,0,0,3675,3676,1,0,0,0,3676,3677,3,825,412,0,3677,3679,1,0,0,0,3678,3640, + 1,0,0,0,3678,3649,1,0,0,0,3678,3661,1,0,0,0,3678,3672,1,0,0,0,3679,814, + 1,0,0,0,3680,3681,3,837,418,0,3681,816,1,0,0,0,3682,3683,3,827,413,0,3683, + 818,1,0,0,0,3684,3685,3,821,410,0,3685,820,1,0,0,0,3686,3690,7,2,0,0,3687, + 3689,8,3,0,0,3688,3687,1,0,0,0,3689,3692,1,0,0,0,3690,3688,1,0,0,0,3690, + 3691,1,0,0,0,3691,822,1,0,0,0,3692,3690,1,0,0,0,3693,3701,5,96,0,0,3694, + 3695,5,92,0,0,3695,3700,9,0,0,0,3696,3697,5,96,0,0,3697,3700,5,96,0,0,3698, + 3700,8,4,0,0,3699,3694,1,0,0,0,3699,3696,1,0,0,0,3699,3698,1,0,0,0,3700, + 3703,1,0,0,0,3701,3699,1,0,0,0,3701,3702,1,0,0,0,3702,3704,1,0,0,0,3703, + 3701,1,0,0,0,3704,3705,5,96,0,0,3705,824,1,0,0,0,3706,3708,5,69,0,0,3707, + 3709,7,5,0,0,3708,3707,1,0,0,0,3708,3709,1,0,0,0,3709,3711,1,0,0,0,3710, + 3712,3,829,414,0,3711,3710,1,0,0,0,3712,3713,1,0,0,0,3713,3711,1,0,0,0, + 3713,3714,1,0,0,0,3714,826,1,0,0,0,3715,3717,7,6,0,0,3716,3715,1,0,0,0, + 3717,3720,1,0,0,0,3718,3719,1,0,0,0,3718,3716,1,0,0,0,3719,3722,1,0,0,0, + 3720,3718,1,0,0,0,3721,3723,7,7,0,0,3722,3721,1,0,0,0,3723,3724,1,0,0,0, + 3724,3725,1,0,0,0,3724,3722,1,0,0,0,3725,3729,1,0,0,0,3726,3728,7,6,0,0, + 3727,3726,1,0,0,0,3728,3731,1,0,0,0,3729,3727,1,0,0,0,3729,3730,1,0,0,0, + 3730,828,1,0,0,0,3731,3729,1,0,0,0,3732,3733,7,8,0,0,3733,830,1,0,0,0,3734, + 3735,7,9,0,0,3735,832,1,0,0,0,3736,3744,5,34,0,0,3737,3738,5,92,0,0,3738, + 3743,9,0,0,0,3739,3740,5,34,0,0,3740,3743,5,34,0,0,3741,3743,8,10,0,0,3742, + 3737,1,0,0,0,3742,3739,1,0,0,0,3742,3741,1,0,0,0,3743,3746,1,0,0,0,3744, + 3742,1,0,0,0,3744,3745,1,0,0,0,3745,3747,1,0,0,0,3746,3744,1,0,0,0,3747, + 3748,5,34,0,0,3748,834,1,0,0,0,3749,3757,5,39,0,0,3750,3751,5,92,0,0,3751, + 3756,9,0,0,0,3752,3753,5,39,0,0,3753,3756,5,39,0,0,3754,3756,8,11,0,0,3755, + 3750,1,0,0,0,3755,3752,1,0,0,0,3755,3754,1,0,0,0,3756,3759,1,0,0,0,3757, + 3755,1,0,0,0,3757,3758,1,0,0,0,3758,3760,1,0,0,0,3759,3757,1,0,0,0,3760, + 3761,5,39,0,0,3761,836,1,0,0,0,3762,3763,5,66,0,0,3763,3765,5,39,0,0,3764, + 3766,7,12,0,0,3765,3764,1,0,0,0,3766,3767,1,0,0,0,3767,3765,1,0,0,0,3767, + 3768,1,0,0,0,3768,3769,1,0,0,0,3769,3770,5,39,0,0,3770,838,1,0,0,0,3771, + 3779,5,96,0,0,3772,3773,5,92,0,0,3773,3778,9,0,0,0,3774,3775,5,96,0,0,3775, + 3778,5,96,0,0,3776,3778,8,4,0,0,3777,3772,1,0,0,0,3777,3774,1,0,0,0,3777, + 3776,1,0,0,0,3778,3781,1,0,0,0,3779,3777,1,0,0,0,3779,3780,1,0,0,0,3780, + 3782,1,0,0,0,3781,3779,1,0,0,0,3782,3783,5,96,0,0,3783,840,1,0,0,0,36,0, + 844,854,865,870,874,878,884,888,890,3628,3633,3638,3640,3646,3651,3659, + 3661,3667,3674,3678,3690,3699,3701,3708,3713,3718,3724,3729,3742,3744,3755, + 3757,3767,3777,3779,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 bbee0fc..46d14e1 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -822,7 +822,7 @@ DIG_LITERAL REAL_LITERAL BIT_STRING ID_LITERAL -FILE_PATH +SLASH_TEXT rule names: program @@ -845,6 +845,7 @@ setStatememt resetStatememt jarStatememt dtAddStatement +dtFilePath createTable simpleCreateTable createTableAsSelect @@ -1010,4 +1011,4 @@ nonReservedKeywords atn: -[4, 1, 410, 2163, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 373, 8, 2, 1, 2, 5, 2, 376, 8, 2, 10, 2, 12, 2, 379, 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, 393, 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, 411, 8, 5, 1, 6, 1, 6, 3, 6, 415, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 424, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 429, 8, 8, 1, 9, 1, 9, 1, 9, 5, 9, 434, 8, 9, 10, 9, 12, 9, 437, 9, 9, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 443, 8, 11, 1, 11, 1, 11, 3, 11, 447, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 454, 8, 12, 10, 12, 12, 12, 457, 9, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 468, 8, 13, 1, 13, 3, 13, 471, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 478, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 486, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 491, 8, 13, 1, 13, 3, 13, 494, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 501, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 509, 8, 16, 1, 17, 1, 17, 3, 17, 513, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 525, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 533, 8, 19, 1, 19, 1, 19, 3, 19, 537, 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, 558, 8, 19, 1, 20, 1, 20, 3, 20, 562, 8, 20, 1, 21, 1, 21, 3, 21, 566, 8, 21, 1, 21, 1, 21, 3, 21, 570, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 577, 8, 21, 10, 21, 12, 21, 580, 9, 21, 1, 21, 1, 21, 3, 21, 584, 8, 21, 1, 21, 1, 21, 3, 21, 588, 8, 21, 1, 21, 1, 21, 3, 21, 592, 8, 21, 1, 21, 1, 21, 3, 21, 596, 8, 21, 1, 21, 3, 21, 599, 8, 21, 1, 21, 1, 21, 3, 21, 603, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 608, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 614, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 619, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 624, 8, 24, 1, 24, 3, 24, 627, 8, 24, 1, 25, 1, 25, 3, 25, 631, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 637, 8, 26, 10, 26, 12, 26, 640, 9, 26, 1, 26, 1, 26, 1, 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, 1, 27, 1, 27, 3, 27, 675, 8, 27, 1, 27, 1, 27, 3, 27, 679, 8, 27, 3, 27, 681, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 691, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 699, 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, 721, 8, 33, 10, 33, 12, 33, 724, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 730, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 736, 8, 34, 1, 34, 3, 34, 739, 8, 34, 1, 34, 3, 34, 742, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 752, 8, 36, 1, 36, 3, 36, 755, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 763, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 775, 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, 797, 8, 45, 10, 45, 12, 45, 800, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 810, 8, 46, 10, 46, 12, 46, 813, 9, 46, 1, 46, 1, 46, 3, 46, 817, 8, 46, 1, 47, 1, 47, 3, 47, 821, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 827, 8, 48, 10, 48, 12, 48, 830, 9, 48, 1, 48, 3, 48, 833, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 841, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 851, 8, 52, 1, 52, 1, 52, 3, 52, 855, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 861, 8, 53, 1, 53, 1, 53, 3, 53, 865, 8, 53, 1, 53, 1, 53, 3, 53, 869, 8, 53, 1, 53, 3, 53, 872, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 881, 8, 54, 1, 54, 1, 54, 3, 54, 885, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 892, 8, 54, 1, 54, 3, 54, 895, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 903, 8, 55, 10, 55, 12, 55, 906, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 913, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 921, 8, 57, 1, 58, 1, 58, 3, 58, 925, 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, 940, 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, 959, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 970, 8, 66, 1, 66, 1, 66, 3, 66, 974, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 981, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 986, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 992, 8, 68, 1, 68, 1, 68, 3, 68, 996, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1003, 8, 69, 1, 69, 1, 69, 3, 69, 1007, 8, 69, 1, 70, 1, 70, 3, 70, 1011, 8, 70, 1, 70, 1, 70, 3, 70, 1015, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1023, 8, 71, 1, 71, 1, 71, 3, 71, 1027, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1032, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1038, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1044, 8, 73, 1, 73, 3, 73, 1047, 8, 73, 1, 73, 1, 73, 3, 73, 1051, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1060, 8, 75, 10, 75, 12, 75, 1063, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1069, 8, 76, 10, 76, 12, 76, 1072, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1083, 8, 77, 11, 77, 12, 77, 1084, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1095, 8, 78, 11, 78, 12, 78, 1096, 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, 1112, 8, 79, 1, 79, 3, 79, 1115, 8, 79, 1, 79, 1, 79, 3, 79, 1119, 8, 79, 1, 79, 3, 79, 1122, 8, 79, 3, 79, 1124, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1129, 8, 79, 1, 79, 1, 79, 3, 79, 1133, 8, 79, 1, 79, 3, 79, 1136, 8, 79, 5, 79, 1138, 8, 79, 10, 79, 12, 79, 1141, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1147, 8, 80, 10, 80, 12, 80, 1150, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1156, 8, 81, 10, 81, 12, 81, 1159, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1166, 8, 82, 10, 82, 12, 82, 1169, 9, 82, 1, 82, 1, 82, 3, 82, 1173, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 1185, 8, 84, 1, 84, 3, 84, 1188, 8, 84, 1, 84, 3, 84, 1191, 8, 84, 1, 84, 3, 84, 1194, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1200, 8, 84, 1, 85, 1, 85, 3, 85, 1204, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1210, 8, 85, 10, 85, 12, 85, 1213, 9, 85, 3, 85, 1215, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1220, 8, 86, 1, 86, 3, 86, 1223, 8, 86, 3, 86, 1225, 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, 1239, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1248, 8, 89, 10, 89, 12, 89, 1251, 9, 89, 1, 89, 1, 89, 3, 89, 1255, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1263, 8, 89, 1, 89, 3, 89, 1266, 8, 89, 1, 89, 3, 89, 1269, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1274, 8, 89, 5, 89, 1276, 8, 89, 10, 89, 12, 89, 1279, 9, 89, 1, 90, 1, 90, 3, 90, 1283, 8, 90, 1, 91, 3, 91, 1286, 8, 91, 1, 91, 1, 91, 3, 91, 1290, 8, 91, 1, 91, 3, 91, 1293, 8, 91, 1, 91, 3, 91, 1296, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1306, 8, 91, 10, 91, 12, 91, 1309, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1315, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1326, 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, 1353, 8, 97, 10, 97, 12, 97, 1356, 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, 1377, 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, 1393, 8, 102, 10, 102, 12, 102, 1396, 9, 102, 1, 102, 1, 102, 3, 102, 1400, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1410, 8, 104, 10, 104, 12, 104, 1413, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1423, 8, 105, 10, 105, 12, 105, 1426, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1435, 8, 105, 10, 105, 12, 105, 1438, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1447, 8, 105, 10, 105, 12, 105, 1450, 9, 105, 1, 105, 1, 105, 3, 105, 1454, 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, 1479, 8, 112, 10, 112, 12, 112, 1482, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1489, 8, 114, 1, 114, 1, 114, 3, 114, 1493, 8, 114, 1, 114, 3, 114, 1496, 8, 114, 1, 114, 3, 114, 1499, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1506, 8, 115, 1, 115, 3, 115, 1509, 8, 115, 1, 115, 3, 115, 1512, 8, 115, 1, 115, 3, 115, 1515, 8, 115, 1, 115, 3, 115, 1518, 8, 115, 1, 115, 3, 115, 1521, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1526, 8, 115, 1, 115, 3, 115, 1529, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1536, 8, 116, 10, 116, 12, 116, 1539, 9, 116, 1, 117, 1, 117, 3, 117, 1543, 8, 117, 1, 117, 1, 117, 3, 117, 1547, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1552, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1559, 8, 119, 10, 119, 12, 119, 1562, 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, 1580, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1586, 8, 121, 10, 121, 12, 121, 1589, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1594, 8, 122, 11, 122, 12, 122, 1595, 1, 122, 1, 122, 3, 122, 1600, 8, 122, 1, 123, 1, 123, 3, 123, 1604, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1614, 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, 1640, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1646, 8, 126, 10, 126, 12, 126, 1649, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1660, 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, 1682, 8, 131, 3, 131, 1684, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1695, 8, 131, 1, 131, 5, 131, 1698, 8, 131, 10, 131, 12, 131, 1701, 9, 131, 1, 132, 3, 132, 1704, 8, 132, 1, 132, 1, 132, 3, 132, 1708, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1715, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1722, 8, 132, 10, 132, 12, 132, 1725, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1730, 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, 1743, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1750, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1755, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1761, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1768, 8, 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, 1, 133, 1, 133, 3, 133, 1799, 8, 133, 3, 133, 1801, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1807, 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, 1828, 8, 134, 10, 134, 12, 134, 1831, 9, 134, 1, 135, 1, 135, 1, 135, 4, 135, 1836, 8, 135, 11, 135, 12, 135, 1837, 1, 135, 1, 135, 3, 135, 1842, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 1849, 8, 135, 11, 135, 12, 135, 1850, 1, 135, 1, 135, 3, 135, 1855, 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, 1871, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1880, 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, 1904, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1909, 8, 135, 10, 135, 12, 135, 1912, 9, 135, 3, 135, 1914, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1924, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1931, 8, 135, 10, 135, 12, 135, 1934, 9, 135, 1, 136, 1, 136, 1, 136, 3, 136, 1939, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1945, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 1953, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 1958, 8, 141, 1, 142, 1, 142, 3, 142, 1962, 8, 142, 1, 143, 1, 143, 1, 143, 4, 143, 1967, 8, 143, 11, 143, 12, 143, 1968, 1, 144, 1, 144, 1, 144, 3, 144, 1974, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 3, 146, 1982, 8, 146, 1, 146, 1, 146, 3, 146, 1986, 8, 146, 1, 147, 3, 147, 1989, 8, 147, 1, 147, 1, 147, 3, 147, 1993, 8, 147, 1, 148, 3, 148, 1996, 8, 148, 1, 148, 1, 148, 3, 148, 2000, 8, 148, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 4, 150, 2007, 8, 150, 11, 150, 12, 150, 2008, 1, 150, 3, 150, 2012, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 5, 152, 2021, 8, 152, 10, 152, 12, 152, 2024, 9, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2029, 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, 2043, 8, 157, 10, 157, 12, 157, 2046, 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, 2062, 8, 161, 10, 161, 12, 161, 2065, 9, 161, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2071, 8, 162, 1, 162, 3, 162, 2074, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2079, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2085, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2093, 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, 2109, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2118, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2128, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2135, 8, 170, 1, 170, 3, 170, 2138, 8, 170, 1, 171, 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, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 2044, 5, 158, 178, 262, 268, 270, 182, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 0, 47, 2, 0, 30, 30, 234, 234, 3, 0, 16, 16, 38, 38, 68, 68, 4, 0, 13, 13, 26, 26, 65, 65, 167, 167, 2, 0, 12, 12, 25, 25, 2, 0, 252, 252, 263, 263, 2, 0, 166, 166, 344, 344, 2, 0, 4, 4, 118, 118, 1, 0, 108, 112, 3, 0, 195, 195, 225, 225, 299, 299, 11, 0, 10, 10, 146, 146, 152, 152, 191, 192, 204, 204, 226, 226, 268, 269, 335, 335, 347, 347, 349, 349, 364, 365, 2, 0, 369, 369, 371, 371, 4, 0, 228, 229, 236, 236, 250, 250, 300, 300, 2, 0, 184, 184, 293, 293, 2, 0, 41, 41, 264, 264, 3, 0, 21, 21, 96, 96, 178, 178, 3, 0, 41, 41, 94, 94, 264, 264, 3, 0, 53, 53, 90, 90, 170, 170, 3, 0, 66, 66, 107, 107, 126, 126, 2, 0, 11, 11, 123, 123, 2, 0, 93, 93, 272, 272, 3, 0, 243, 243, 270, 270, 354, 354, 4, 0, 253, 253, 265, 265, 279, 279, 323, 323, 3, 0, 23, 23, 57, 57, 156, 156, 5, 0, 24, 24, 139, 140, 145, 145, 151, 151, 302, 302, 2, 0, 221, 221, 326, 326, 3, 0, 57, 57, 136, 136, 156, 156, 2, 0, 8, 8, 30, 30, 2, 0, 45, 45, 73, 73, 4, 0, 249, 249, 299, 299, 352, 352, 356, 356, 2, 0, 186, 186, 340, 340, 2, 0, 178, 178, 182, 182, 2, 0, 377, 377, 397, 398, 4, 0, 32, 32, 395, 395, 399, 399, 402, 402, 2, 0, 397, 398, 400, 400, 1, 0, 397, 398, 1, 0, 406, 407, 2, 0, 406, 406, 409, 409, 4, 0, 32, 32, 395, 395, 397, 399, 401, 402, 3, 0, 298, 298, 376, 377, 397, 398, 2, 0, 249, 249, 352, 352, 2, 0, 178, 178, 235, 235, 10, 0, 78, 78, 80, 80, 114, 114, 171, 171, 227, 227, 261, 261, 289, 289, 292, 292, 329, 329, 372, 372, 16, 0, 14, 14, 27, 28, 36, 36, 58, 58, 78, 81, 85, 86, 114, 114, 130, 130, 171, 172, 175, 175, 227, 227, 261, 261, 289, 289, 292, 292, 329, 329, 372, 372, 6, 0, 178, 178, 196, 196, 235, 235, 278, 278, 351, 351, 395, 395, 28, 0, 59, 59, 77, 77, 114, 114, 171, 171, 177, 177, 184, 184, 188, 188, 202, 203, 209, 209, 211, 211, 218, 218, 225, 225, 258, 258, 261, 261, 275, 275, 279, 279, 289, 289, 292, 292, 310, 310, 316, 317, 320, 320, 323, 323, 329, 329, 338, 339, 347, 348, 353, 353, 358, 358, 372, 372, 5, 0, 177, 241, 243, 316, 318, 339, 341, 350, 352, 372, 3, 0, 4, 35, 37, 171, 173, 176, 2346, 0, 364, 1, 0, 0, 0, 2, 367, 1, 0, 0, 0, 4, 377, 1, 0, 0, 0, 6, 392, 1, 0, 0, 0, 8, 394, 1, 0, 0, 0, 10, 410, 1, 0, 0, 0, 12, 414, 1, 0, 0, 0, 14, 416, 1, 0, 0, 0, 16, 419, 1, 0, 0, 0, 18, 430, 1, 0, 0, 0, 20, 438, 1, 0, 0, 0, 22, 446, 1, 0, 0, 0, 24, 448, 1, 0, 0, 0, 26, 493, 1, 0, 0, 0, 28, 495, 1, 0, 0, 0, 30, 502, 1, 0, 0, 0, 32, 506, 1, 0, 0, 0, 34, 510, 1, 0, 0, 0, 36, 514, 1, 0, 0, 0, 38, 557, 1, 0, 0, 0, 40, 561, 1, 0, 0, 0, 42, 563, 1, 0, 0, 0, 44, 604, 1, 0, 0, 0, 46, 618, 1, 0, 0, 0, 48, 620, 1, 0, 0, 0, 50, 630, 1, 0, 0, 0, 52, 632, 1, 0, 0, 0, 54, 680, 1, 0, 0, 0, 56, 682, 1, 0, 0, 0, 58, 686, 1, 0, 0, 0, 60, 694, 1, 0, 0, 0, 62, 702, 1, 0, 0, 0, 64, 706, 1, 0, 0, 0, 66, 713, 1, 0, 0, 0, 68, 741, 1, 0, 0, 0, 70, 743, 1, 0, 0, 0, 72, 746, 1, 0, 0, 0, 74, 756, 1, 0, 0, 0, 76, 758, 1, 0, 0, 0, 78, 764, 1, 0, 0, 0, 80, 766, 1, 0, 0, 0, 82, 774, 1, 0, 0, 0, 84, 782, 1, 0, 0, 0, 86, 784, 1, 0, 0, 0, 88, 788, 1, 0, 0, 0, 90, 792, 1, 0, 0, 0, 92, 816, 1, 0, 0, 0, 94, 820, 1, 0, 0, 0, 96, 822, 1, 0, 0, 0, 98, 834, 1, 0, 0, 0, 100, 840, 1, 0, 0, 0, 102, 842, 1, 0, 0, 0, 104, 847, 1, 0, 0, 0, 106, 858, 1, 0, 0, 0, 108, 876, 1, 0, 0, 0, 110, 896, 1, 0, 0, 0, 112, 907, 1, 0, 0, 0, 114, 909, 1, 0, 0, 0, 116, 922, 1, 0, 0, 0, 118, 929, 1, 0, 0, 0, 120, 932, 1, 0, 0, 0, 122, 941, 1, 0, 0, 0, 124, 945, 1, 0, 0, 0, 126, 949, 1, 0, 0, 0, 128, 952, 1, 0, 0, 0, 130, 960, 1, 0, 0, 0, 132, 965, 1, 0, 0, 0, 134, 982, 1, 0, 0, 0, 136, 989, 1, 0, 0, 0, 138, 999, 1, 0, 0, 0, 140, 1008, 1, 0, 0, 0, 142, 1018, 1, 0, 0, 0, 144, 1037, 1, 0, 0, 0, 146, 1039, 1, 0, 0, 0, 148, 1052, 1, 0, 0, 0, 150, 1055, 1, 0, 0, 0, 152, 1064, 1, 0, 0, 0, 154, 1075, 1, 0, 0, 0, 156, 1088, 1, 0, 0, 0, 158, 1123, 1, 0, 0, 0, 160, 1142, 1, 0, 0, 0, 162, 1151, 1, 0, 0, 0, 164, 1160, 1, 0, 0, 0, 166, 1179, 1, 0, 0, 0, 168, 1199, 1, 0, 0, 0, 170, 1201, 1, 0, 0, 0, 172, 1224, 1, 0, 0, 0, 174, 1238, 1, 0, 0, 0, 176, 1240, 1, 0, 0, 0, 178, 1254, 1, 0, 0, 0, 180, 1280, 1, 0, 0, 0, 182, 1325, 1, 0, 0, 0, 184, 1327, 1, 0, 0, 0, 186, 1329, 1, 0, 0, 0, 188, 1335, 1, 0, 0, 0, 190, 1337, 1, 0, 0, 0, 192, 1342, 1, 0, 0, 0, 194, 1347, 1, 0, 0, 0, 196, 1359, 1, 0, 0, 0, 198, 1376, 1, 0, 0, 0, 200, 1378, 1, 0, 0, 0, 202, 1380, 1, 0, 0, 0, 204, 1399, 1, 0, 0, 0, 206, 1401, 1, 0, 0, 0, 208, 1404, 1, 0, 0, 0, 210, 1453, 1, 0, 0, 0, 212, 1455, 1, 0, 0, 0, 214, 1458, 1, 0, 0, 0, 216, 1460, 1, 0, 0, 0, 218, 1467, 1, 0, 0, 0, 220, 1469, 1, 0, 0, 0, 222, 1471, 1, 0, 0, 0, 224, 1474, 1, 0, 0, 0, 226, 1483, 1, 0, 0, 0, 228, 1488, 1, 0, 0, 0, 230, 1502, 1, 0, 0, 0, 232, 1530, 1, 0, 0, 0, 234, 1540, 1, 0, 0, 0, 236, 1548, 1, 0, 0, 0, 238, 1553, 1, 0, 0, 0, 240, 1579, 1, 0, 0, 0, 242, 1581, 1, 0, 0, 0, 244, 1590, 1, 0, 0, 0, 246, 1601, 1, 0, 0, 0, 248, 1613, 1, 0, 0, 0, 250, 1639, 1, 0, 0, 0, 252, 1641, 1, 0, 0, 0, 254, 1659, 1, 0, 0, 0, 256, 1661, 1, 0, 0, 0, 258, 1666, 1, 0, 0, 0, 260, 1669, 1, 0, 0, 0, 262, 1683, 1, 0, 0, 0, 264, 1769, 1, 0, 0, 0, 266, 1800, 1, 0, 0, 0, 268, 1806, 1, 0, 0, 0, 270, 1923, 1, 0, 0, 0, 272, 1938, 1, 0, 0, 0, 274, 1944, 1, 0, 0, 0, 276, 1946, 1, 0, 0, 0, 278, 1948, 1, 0, 0, 0, 280, 1952, 1, 0, 0, 0, 282, 1954, 1, 0, 0, 0, 284, 1959, 1, 0, 0, 0, 286, 1966, 1, 0, 0, 0, 288, 1970, 1, 0, 0, 0, 290, 1975, 1, 0, 0, 0, 292, 1985, 1, 0, 0, 0, 294, 1988, 1, 0, 0, 0, 296, 1995, 1, 0, 0, 0, 298, 2001, 1, 0, 0, 0, 300, 2011, 1, 0, 0, 0, 302, 2013, 1, 0, 0, 0, 304, 2017, 1, 0, 0, 0, 306, 2028, 1, 0, 0, 0, 308, 2030, 1, 0, 0, 0, 310, 2032, 1, 0, 0, 0, 312, 2034, 1, 0, 0, 0, 314, 2039, 1, 0, 0, 0, 316, 2047, 1, 0, 0, 0, 318, 2050, 1, 0, 0, 0, 320, 2054, 1, 0, 0, 0, 322, 2057, 1, 0, 0, 0, 324, 2068, 1, 0, 0, 0, 326, 2078, 1, 0, 0, 0, 328, 2084, 1, 0, 0, 0, 330, 2092, 1, 0, 0, 0, 332, 2108, 1, 0, 0, 0, 334, 2117, 1, 0, 0, 0, 336, 2119, 1, 0, 0, 0, 338, 2121, 1, 0, 0, 0, 340, 2137, 1, 0, 0, 0, 342, 2139, 1, 0, 0, 0, 344, 2142, 1, 0, 0, 0, 346, 2144, 1, 0, 0, 0, 348, 2146, 1, 0, 0, 0, 350, 2148, 1, 0, 0, 0, 352, 2150, 1, 0, 0, 0, 354, 2152, 1, 0, 0, 0, 356, 2154, 1, 0, 0, 0, 358, 2156, 1, 0, 0, 0, 360, 2158, 1, 0, 0, 0, 362, 2160, 1, 0, 0, 0, 364, 365, 3, 2, 1, 0, 365, 366, 5, 0, 0, 1, 366, 1, 1, 0, 0, 0, 367, 368, 3, 4, 2, 0, 368, 369, 5, 0, 0, 1, 369, 3, 1, 0, 0, 0, 370, 372, 3, 6, 3, 0, 371, 373, 5, 389, 0, 0, 372, 371, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 376, 3, 8, 4, 0, 375, 370, 1, 0, 0, 0, 375, 374, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 5, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 393, 3, 10, 5, 0, 381, 393, 3, 12, 6, 0, 382, 393, 3, 14, 7, 0, 383, 393, 3, 16, 8, 0, 384, 393, 3, 22, 11, 0, 385, 393, 3, 26, 13, 0, 386, 393, 3, 28, 14, 0, 387, 393, 3, 30, 15, 0, 388, 393, 3, 32, 16, 0, 389, 393, 3, 34, 17, 0, 390, 393, 3, 36, 18, 0, 391, 393, 3, 38, 19, 0, 392, 380, 1, 0, 0, 0, 392, 381, 1, 0, 0, 0, 392, 382, 1, 0, 0, 0, 392, 383, 1, 0, 0, 0, 392, 384, 1, 0, 0, 0, 392, 385, 1, 0, 0, 0, 392, 386, 1, 0, 0, 0, 392, 387, 1, 0, 0, 0, 392, 388, 1, 0, 0, 0, 392, 389, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 7, 1, 0, 0, 0, 394, 395, 5, 389, 0, 0, 395, 9, 1, 0, 0, 0, 396, 411, 3, 40, 20, 0, 397, 411, 3, 104, 52, 0, 398, 411, 3, 106, 53, 0, 399, 411, 3, 108, 54, 0, 400, 411, 3, 102, 51, 0, 401, 411, 3, 114, 57, 0, 402, 411, 3, 128, 64, 0, 403, 411, 3, 130, 65, 0, 404, 411, 3, 132, 66, 0, 405, 411, 3, 134, 67, 0, 406, 411, 3, 136, 68, 0, 407, 411, 3, 138, 69, 0, 408, 411, 3, 140, 70, 0, 409, 411, 3, 142, 71, 0, 410, 396, 1, 0, 0, 0, 410, 397, 1, 0, 0, 0, 410, 398, 1, 0, 0, 0, 410, 399, 1, 0, 0, 0, 410, 400, 1, 0, 0, 0, 410, 401, 1, 0, 0, 0, 410, 402, 1, 0, 0, 0, 410, 403, 1, 0, 0, 0, 410, 404, 1, 0, 0, 0, 410, 405, 1, 0, 0, 0, 410, 406, 1, 0, 0, 0, 410, 407, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 410, 409, 1, 0, 0, 0, 411, 11, 1, 0, 0, 0, 412, 415, 3, 158, 79, 0, 413, 415, 3, 144, 72, 0, 414, 412, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 13, 1, 0, 0, 0, 416, 417, 7, 0, 0, 0, 417, 418, 3, 314, 157, 0, 418, 15, 1, 0, 0, 0, 419, 423, 5, 246, 0, 0, 420, 424, 3, 18, 9, 0, 421, 422, 5, 101, 0, 0, 422, 424, 5, 251, 0, 0, 423, 420, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 428, 1, 0, 0, 0, 425, 429, 3, 12, 6, 0, 426, 429, 3, 146, 73, 0, 427, 429, 3, 156, 78, 0, 428, 425, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 427, 1, 0, 0, 0, 429, 17, 1, 0, 0, 0, 430, 435, 3, 20, 10, 0, 431, 432, 5, 388, 0, 0, 432, 434, 3, 20, 10, 0, 433, 431, 1, 0, 0, 0, 434, 437, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 19, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 438, 439, 7, 1, 0, 0, 439, 21, 1, 0, 0, 0, 440, 442, 5, 161, 0, 0, 441, 443, 5, 12, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 447, 3, 314, 157, 0, 445, 447, 3, 24, 12, 0, 446, 440, 1, 0, 0, 0, 446, 445, 1, 0, 0, 0, 447, 23, 1, 0, 0, 0, 448, 449, 5, 161, 0, 0, 449, 450, 5, 84, 0, 0, 450, 455, 3, 314, 157, 0, 451, 452, 5, 388, 0, 0, 452, 454, 3, 314, 157, 0, 453, 451, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 25, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 459, 5, 332, 0, 0, 459, 494, 7, 2, 0, 0, 460, 461, 5, 332, 0, 0, 461, 462, 5, 222, 0, 0, 462, 494, 7, 3, 0, 0, 463, 464, 5, 332, 0, 0, 464, 467, 5, 149, 0, 0, 465, 466, 7, 4, 0, 0, 466, 468, 3, 314, 157, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 470, 1, 0, 0, 0, 469, 471, 3, 266, 133, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 494, 1, 0, 0, 0, 472, 473, 5, 332, 0, 0, 473, 474, 5, 20, 0, 0, 474, 475, 7, 4, 0, 0, 475, 477, 3, 314, 157, 0, 476, 478, 3, 266, 133, 0, 477, 476, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 494, 1, 0, 0, 0, 479, 480, 5, 332, 0, 0, 480, 481, 5, 219, 0, 0, 481, 482, 7, 5, 0, 0, 482, 494, 3, 314, 157, 0, 483, 485, 5, 332, 0, 0, 484, 486, 5, 360, 0, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 494, 5, 51, 0, 0, 488, 490, 5, 332, 0, 0, 489, 491, 5, 253, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 5, 84, 0, 0, 493, 458, 1, 0, 0, 0, 493, 460, 1, 0, 0, 0, 493, 463, 1, 0, 0, 0, 493, 472, 1, 0, 0, 0, 493, 479, 1, 0, 0, 0, 493, 483, 1, 0, 0, 0, 493, 488, 1, 0, 0, 0, 494, 27, 1, 0, 0, 0, 495, 496, 5, 76, 0, 0, 496, 497, 5, 291, 0, 0, 497, 500, 3, 314, 157, 0, 498, 499, 5, 369, 0, 0, 499, 501, 3, 322, 161, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 29, 1, 0, 0, 0, 502, 503, 5, 159, 0, 0, 503, 504, 5, 291, 0, 0, 504, 505, 3, 314, 157, 0, 505, 31, 1, 0, 0, 0, 506, 508, 5, 331, 0, 0, 507, 509, 3, 324, 162, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 33, 1, 0, 0, 0, 510, 512, 5, 321, 0, 0, 511, 513, 3, 326, 163, 0, 512, 511, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 35, 1, 0, 0, 0, 514, 515, 7, 6, 0, 0, 515, 516, 5, 64, 0, 0, 516, 517, 3, 112, 56, 0, 517, 37, 1, 0, 0, 0, 518, 519, 5, 4, 0, 0, 519, 520, 5, 64, 0, 0, 520, 521, 5, 369, 0, 0, 521, 524, 5, 410, 0, 0, 522, 523, 5, 185, 0, 0, 523, 525, 3, 314, 157, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 558, 1, 0, 0, 0, 526, 527, 5, 4, 0, 0, 527, 528, 5, 43, 0, 0, 528, 529, 5, 369, 0, 0, 529, 532, 5, 410, 0, 0, 530, 531, 5, 185, 0, 0, 531, 533, 3, 314, 157, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 536, 1, 0, 0, 0, 534, 535, 5, 119, 0, 0, 535, 537, 3, 314, 157, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 558, 1, 0, 0, 0, 538, 539, 5, 4, 0, 0, 539, 540, 7, 7, 0, 0, 540, 541, 5, 369, 0, 0, 541, 542, 5, 410, 0, 0, 542, 543, 5, 119, 0, 0, 543, 558, 3, 314, 157, 0, 544, 545, 5, 4, 0, 0, 545, 546, 5, 113, 0, 0, 546, 558, 5, 410, 0, 0, 547, 548, 5, 4, 0, 0, 548, 549, 5, 35, 0, 0, 549, 550, 5, 43, 0, 0, 550, 551, 5, 369, 0, 0, 551, 552, 5, 410, 0, 0, 552, 553, 5, 119, 0, 0, 553, 554, 3, 314, 157, 0, 554, 555, 5, 69, 0, 0, 555, 556, 3, 314, 157, 0, 556, 558, 1, 0, 0, 0, 557, 518, 1, 0, 0, 0, 557, 526, 1, 0, 0, 0, 557, 538, 1, 0, 0, 0, 557, 544, 1, 0, 0, 0, 557, 547, 1, 0, 0, 0, 558, 39, 1, 0, 0, 0, 559, 562, 3, 42, 21, 0, 560, 562, 3, 44, 22, 0, 561, 559, 1, 0, 0, 0, 561, 560, 1, 0, 0, 0, 562, 41, 1, 0, 0, 0, 563, 565, 5, 219, 0, 0, 564, 566, 5, 150, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 569, 5, 344, 0, 0, 568, 570, 3, 318, 159, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 3, 98, 49, 0, 572, 573, 5, 384, 0, 0, 573, 578, 3, 46, 23, 0, 574, 575, 5, 388, 0, 0, 575, 577, 3, 46, 23, 0, 576, 574, 1, 0, 0, 0, 577, 580, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 583, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 582, 5, 388, 0, 0, 582, 584, 3, 80, 40, 0, 583, 581, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 586, 5, 388, 0, 0, 586, 588, 3, 82, 41, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 590, 5, 388, 0, 0, 590, 592, 3, 86, 43, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 595, 5, 385, 0, 0, 594, 596, 3, 70, 35, 0, 595, 594, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 598, 1, 0, 0, 0, 597, 599, 3, 88, 44, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 602, 3, 316, 158, 0, 601, 603, 3, 96, 48, 0, 602, 601, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 43, 1, 0, 0, 0, 604, 605, 5, 219, 0, 0, 605, 607, 5, 344, 0, 0, 606, 608, 3, 318, 159, 0, 607, 606, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 3, 98, 49, 0, 610, 613, 3, 316, 158, 0, 611, 612, 5, 185, 0, 0, 612, 614, 3, 158, 79, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 45, 1, 0, 0, 0, 615, 619, 3, 48, 24, 0, 616, 619, 3, 72, 36, 0, 617, 619, 3, 76, 38, 0, 618, 615, 1, 0, 0, 0, 618, 616, 1, 0, 0, 0, 618, 617, 1, 0, 0, 0, 619, 47, 1, 0, 0, 0, 620, 621, 3, 50, 25, 0, 621, 623, 3, 54, 27, 0, 622, 624, 3, 68, 34, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 70, 35, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 49, 1, 0, 0, 0, 628, 631, 3, 314, 157, 0, 629, 631, 3, 260, 130, 0, 630, 628, 1, 0, 0, 0, 630, 629, 1, 0, 0, 0, 631, 51, 1, 0, 0, 0, 632, 633, 5, 384, 0, 0, 633, 638, 3, 50, 25, 0, 634, 635, 5, 388, 0, 0, 635, 637, 3, 50, 25, 0, 636, 634, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 641, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 5, 385, 0, 0, 642, 53, 1, 0, 0, 0, 643, 681, 7, 8, 0, 0, 644, 646, 7, 9, 0, 0, 645, 647, 3, 56, 28, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 681, 1, 0, 0, 0, 648, 650, 5, 348, 0, 0, 649, 651, 3, 56, 28, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 658, 1, 0, 0, 0, 652, 654, 7, 10, 0, 0, 653, 655, 5, 282, 0, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 347, 0, 0, 657, 659, 5, 176, 0, 0, 658, 652, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 681, 1, 0, 0, 0, 660, 662, 7, 11, 0, 0, 661, 663, 3, 58, 29, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 681, 1, 0, 0, 0, 664, 666, 7, 12, 0, 0, 665, 667, 3, 62, 31, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 681, 1, 0, 0, 0, 668, 670, 5, 77, 0, 0, 669, 671, 3, 64, 32, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 681, 1, 0, 0, 0, 672, 674, 5, 327, 0, 0, 673, 675, 3, 66, 33, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 681, 1, 0, 0, 0, 676, 678, 5, 115, 0, 0, 677, 679, 3, 60, 30, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 681, 1, 0, 0, 0, 680, 643, 1, 0, 0, 0, 680, 644, 1, 0, 0, 0, 680, 648, 1, 0, 0, 0, 680, 660, 1, 0, 0, 0, 680, 664, 1, 0, 0, 0, 680, 668, 1, 0, 0, 0, 680, 672, 1, 0, 0, 0, 680, 676, 1, 0, 0, 0, 681, 55, 1, 0, 0, 0, 682, 683, 5, 384, 0, 0, 683, 684, 3, 346, 173, 0, 684, 685, 5, 385, 0, 0, 685, 57, 1, 0, 0, 0, 686, 687, 5, 384, 0, 0, 687, 690, 3, 346, 173, 0, 688, 689, 5, 388, 0, 0, 689, 691, 3, 346, 173, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 5, 385, 0, 0, 693, 59, 1, 0, 0, 0, 694, 695, 5, 384, 0, 0, 695, 698, 3, 344, 172, 0, 696, 697, 5, 388, 0, 0, 697, 699, 3, 344, 172, 0, 698, 696, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 385, 0, 0, 701, 61, 1, 0, 0, 0, 702, 703, 5, 375, 0, 0, 703, 704, 3, 54, 27, 0, 704, 705, 5, 374, 0, 0, 705, 63, 1, 0, 0, 0, 706, 707, 5, 375, 0, 0, 707, 708, 3, 54, 27, 0, 708, 709, 5, 388, 0, 0, 709, 710, 3, 54, 27, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 374, 0, 0, 712, 65, 1, 0, 0, 0, 713, 714, 5, 375, 0, 0, 714, 715, 3, 50, 25, 0, 715, 722, 3, 54, 27, 0, 716, 717, 5, 388, 0, 0, 717, 718, 3, 50, 25, 0, 718, 719, 3, 54, 27, 0, 719, 721, 1, 0, 0, 0, 720, 716, 1, 0, 0, 0, 721, 724, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 725, 726, 5, 374, 0, 0, 726, 67, 1, 0, 0, 0, 727, 728, 5, 215, 0, 0, 728, 730, 3, 84, 42, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 5, 318, 0, 0, 732, 735, 5, 69, 0, 0, 733, 734, 5, 298, 0, 0, 734, 736, 5, 34, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 742, 1, 0, 0, 0, 737, 739, 5, 298, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 742, 5, 299, 0, 0, 741, 729, 1, 0, 0, 0, 741, 738, 1, 0, 0, 0, 742, 69, 1, 0, 0, 0, 743, 744, 5, 18, 0, 0, 744, 745, 5, 405, 0, 0, 745, 71, 1, 0, 0, 0, 746, 747, 3, 50, 25, 0, 747, 748, 3, 54, 27, 0, 748, 751, 5, 287, 0, 0, 749, 750, 5, 252, 0, 0, 750, 752, 3, 74, 37, 0, 751, 749, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 754, 1, 0, 0, 0, 753, 755, 5, 168, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 73, 1, 0, 0, 0, 756, 757, 5, 405, 0, 0, 757, 75, 1, 0, 0, 0, 758, 759, 3, 50, 25, 0, 759, 760, 5, 185, 0, 0, 760, 762, 3, 78, 39, 0, 761, 763, 3, 70, 35, 0, 762, 761, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 77, 1, 0, 0, 0, 764, 765, 3, 260, 130, 0, 765, 79, 1, 0, 0, 0, 766, 767, 5, 169, 0, 0, 767, 768, 5, 251, 0, 0, 768, 769, 3, 260, 130, 0, 769, 770, 5, 185, 0, 0, 770, 771, 3, 260, 130, 0, 771, 81, 1, 0, 0, 0, 772, 773, 5, 215, 0, 0, 773, 775, 3, 84, 42, 0, 774, 772, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 5, 318, 0, 0, 777, 778, 5, 69, 0, 0, 778, 779, 3, 52, 26, 0, 779, 780, 5, 298, 0, 0, 780, 781, 5, 34, 0, 0, 781, 83, 1, 0, 0, 0, 782, 783, 3, 306, 153, 0, 783, 85, 1, 0, 0, 0, 784, 785, 5, 315, 0, 0, 785, 786, 5, 251, 0, 0, 786, 787, 5, 342, 0, 0, 787, 87, 1, 0, 0, 0, 788, 789, 5, 95, 0, 0, 789, 790, 5, 197, 0, 0, 790, 791, 3, 90, 45, 0, 791, 89, 1, 0, 0, 0, 792, 793, 5, 384, 0, 0, 793, 798, 3, 92, 46, 0, 794, 795, 5, 388, 0, 0, 795, 797, 3, 92, 46, 0, 796, 794, 1, 0, 0, 0, 797, 800, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 801, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 801, 802, 5, 385, 0, 0, 802, 91, 1, 0, 0, 0, 803, 817, 3, 280, 140, 0, 804, 805, 3, 306, 153, 0, 805, 806, 5, 384, 0, 0, 806, 811, 3, 94, 47, 0, 807, 808, 5, 388, 0, 0, 808, 810, 3, 94, 47, 0, 809, 807, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 815, 5, 385, 0, 0, 815, 817, 1, 0, 0, 0, 816, 803, 1, 0, 0, 0, 816, 804, 1, 0, 0, 0, 817, 93, 1, 0, 0, 0, 818, 821, 3, 280, 140, 0, 819, 821, 3, 340, 170, 0, 820, 818, 1, 0, 0, 0, 820, 819, 1, 0, 0, 0, 821, 95, 1, 0, 0, 0, 822, 823, 5, 280, 0, 0, 823, 832, 3, 98, 49, 0, 824, 828, 5, 384, 0, 0, 825, 827, 3, 100, 50, 0, 826, 825, 1, 0, 0, 0, 827, 830, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 833, 5, 385, 0, 0, 832, 824, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 97, 1, 0, 0, 0, 834, 835, 3, 314, 157, 0, 835, 99, 1, 0, 0, 0, 836, 837, 7, 13, 0, 0, 837, 841, 7, 14, 0, 0, 838, 839, 7, 15, 0, 0, 839, 841, 7, 16, 0, 0, 840, 836, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 101, 1, 0, 0, 0, 842, 843, 5, 219, 0, 0, 843, 844, 5, 12, 0, 0, 844, 845, 3, 314, 157, 0, 845, 846, 3, 316, 158, 0, 846, 103, 1, 0, 0, 0, 847, 848, 5, 219, 0, 0, 848, 850, 5, 25, 0, 0, 849, 851, 3, 318, 159, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 3, 314, 157, 0, 853, 855, 3, 70, 35, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 3, 316, 158, 0, 857, 105, 1, 0, 0, 0, 858, 860, 5, 219, 0, 0, 859, 861, 5, 150, 0, 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 864, 5, 166, 0, 0, 863, 865, 3, 318, 159, 0, 864, 863, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 868, 3, 314, 157, 0, 867, 869, 3, 52, 26, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 1, 0, 0, 0, 870, 872, 3, 70, 35, 0, 871, 870, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 5, 185, 0, 0, 874, 875, 3, 158, 79, 0, 875, 107, 1, 0, 0, 0, 876, 880, 5, 219, 0, 0, 877, 881, 5, 150, 0, 0, 878, 879, 5, 150, 0, 0, 879, 881, 5, 341, 0, 0, 880, 877, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 5, 254, 0, 0, 883, 885, 3, 318, 159, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 3, 314, 157, 0, 887, 888, 5, 185, 0, 0, 888, 891, 3, 306, 153, 0, 889, 890, 5, 276, 0, 0, 890, 892, 7, 17, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 894, 1, 0, 0, 0, 893, 895, 3, 110, 55, 0, 894, 893, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 109, 1, 0, 0, 0, 896, 897, 5, 361, 0, 0, 897, 898, 5, 64, 0, 0, 898, 904, 3, 112, 56, 0, 899, 900, 5, 388, 0, 0, 900, 901, 5, 64, 0, 0, 901, 903, 3, 112, 56, 0, 902, 899, 1, 0, 0, 0, 903, 906, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 111, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 907, 908, 5, 405, 0, 0, 908, 113, 1, 0, 0, 0, 909, 910, 5, 180, 0, 0, 910, 912, 5, 344, 0, 0, 911, 913, 3, 320, 160, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 920, 3, 314, 157, 0, 915, 921, 3, 116, 58, 0, 916, 921, 3, 118, 59, 0, 917, 921, 3, 120, 60, 0, 918, 921, 3, 122, 61, 0, 919, 921, 3, 124, 62, 0, 920, 915, 1, 0, 0, 0, 920, 916, 1, 0, 0, 0, 920, 917, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 920, 919, 1, 0, 0, 0, 921, 115, 1, 0, 0, 0, 922, 924, 5, 119, 0, 0, 923, 925, 3, 314, 157, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 5, 350, 0, 0, 927, 928, 3, 314, 157, 0, 928, 117, 1, 0, 0, 0, 929, 930, 5, 331, 0, 0, 930, 931, 3, 322, 161, 0, 931, 119, 1, 0, 0, 0, 932, 933, 5, 4, 0, 0, 933, 934, 5, 215, 0, 0, 934, 935, 3, 84, 42, 0, 935, 936, 5, 318, 0, 0, 936, 937, 5, 69, 0, 0, 937, 939, 3, 52, 26, 0, 938, 940, 3, 126, 63, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 121, 1, 0, 0, 0, 941, 942, 5, 237, 0, 0, 942, 943, 5, 215, 0, 0, 943, 944, 3, 84, 42, 0, 944, 123, 1, 0, 0, 0, 945, 946, 5, 4, 0, 0, 946, 947, 5, 355, 0, 0, 947, 948, 3, 52, 26, 0, 948, 125, 1, 0, 0, 0, 949, 950, 5, 298, 0, 0, 950, 951, 5, 34, 0, 0, 951, 127, 1, 0, 0, 0, 952, 953, 5, 180, 0, 0, 953, 954, 5, 166, 0, 0, 954, 958, 3, 314, 157, 0, 955, 959, 3, 116, 58, 0, 956, 957, 5, 185, 0, 0, 957, 959, 3, 158, 79, 0, 958, 955, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 959, 129, 1, 0, 0, 0, 960, 961, 5, 180, 0, 0, 961, 962, 5, 25, 0, 0, 962, 963, 3, 314, 157, 0, 963, 964, 3, 118, 59, 0, 964, 131, 1, 0, 0, 0, 965, 969, 5, 180, 0, 0, 966, 970, 5, 150, 0, 0, 967, 968, 5, 150, 0, 0, 968, 970, 5, 341, 0, 0, 969, 966, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 973, 5, 254, 0, 0, 972, 974, 3, 320, 160, 0, 973, 972, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 3, 314, 157, 0, 976, 977, 5, 185, 0, 0, 977, 980, 3, 306, 153, 0, 978, 979, 5, 276, 0, 0, 979, 981, 7, 17, 0, 0, 980, 978, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 133, 1, 0, 0, 0, 982, 983, 5, 237, 0, 0, 983, 985, 5, 12, 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, 135, 1, 0, 0, 0, 989, 991, 5, 237, 0, 0, 990, 992, 5, 150, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 5, 344, 0, 0, 994, 996, 3, 320, 160, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 3, 314, 157, 0, 998, 137, 1, 0, 0, 0, 999, 1000, 5, 237, 0, 0, 1000, 1002, 5, 25, 0, 0, 1001, 1003, 3, 320, 160, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1006, 3, 314, 157, 0, 1005, 1007, 7, 18, 0, 0, 1006, 1005, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 139, 1, 0, 0, 0, 1008, 1010, 5, 237, 0, 0, 1009, 1011, 5, 150, 0, 0, 1010, 1009, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1014, 5, 166, 0, 0, 1013, 1015, 3, 320, 160, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 3, 314, 157, 0, 1017, 141, 1, 0, 0, 0, 1018, 1022, 5, 237, 0, 0, 1019, 1023, 5, 150, 0, 0, 1020, 1021, 5, 150, 0, 0, 1021, 1023, 5, 341, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1026, 5, 254, 0, 0, 1025, 1027, 3, 320, 160, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 3, 314, 157, 0, 1029, 143, 1, 0, 0, 0, 1030, 1032, 5, 244, 0, 0, 1031, 1030, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1038, 3, 146, 73, 0, 1034, 1038, 3, 154, 77, 0, 1035, 1036, 5, 244, 0, 0, 1036, 1038, 3, 156, 78, 0, 1037, 1031, 1, 0, 0, 0, 1037, 1034, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1038, 145, 1, 0, 0, 0, 1039, 1040, 5, 267, 0, 0, 1040, 1041, 7, 19, 0, 0, 1041, 1050, 3, 314, 157, 0, 1042, 1044, 3, 148, 74, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 1047, 3, 52, 26, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1051, 3, 158, 79, 0, 1049, 1051, 3, 150, 75, 0, 1050, 1043, 1, 0, 0, 0, 1050, 1049, 1, 0, 0, 0, 1051, 147, 1, 0, 0, 0, 1052, 1053, 5, 311, 0, 0, 1053, 1054, 3, 322, 161, 0, 1054, 149, 1, 0, 0, 0, 1055, 1056, 5, 363, 0, 0, 1056, 1061, 3, 152, 76, 0, 1057, 1058, 5, 388, 0, 0, 1058, 1060, 3, 152, 76, 0, 1059, 1057, 1, 0, 0, 0, 1060, 1063, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 151, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1064, 1065, 5, 384, 0, 0, 1065, 1070, 3, 340, 170, 0, 1066, 1067, 5, 388, 0, 0, 1067, 1069, 3, 340, 170, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1072, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1073, 1074, 5, 385, 0, 0, 1074, 153, 1, 0, 0, 0, 1075, 1076, 5, 189, 0, 0, 1076, 1077, 5, 144, 0, 0, 1077, 1078, 5, 331, 0, 0, 1078, 1082, 5, 389, 0, 0, 1079, 1080, 3, 146, 73, 0, 1080, 1081, 5, 389, 0, 0, 1081, 1083, 1, 0, 0, 0, 1082, 1079, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 5, 240, 0, 0, 1087, 155, 1, 0, 0, 0, 1088, 1089, 5, 144, 0, 0, 1089, 1090, 5, 331, 0, 0, 1090, 1094, 5, 189, 0, 0, 1091, 1092, 3, 146, 73, 0, 1092, 1093, 5, 389, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1091, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 5, 240, 0, 0, 1099, 157, 1, 0, 0, 0, 1100, 1101, 6, 79, -1, 0, 1101, 1124, 3, 160, 80, 0, 1102, 1103, 3, 162, 81, 0, 1103, 1104, 3, 158, 79, 5, 1104, 1124, 1, 0, 0, 0, 1105, 1106, 5, 384, 0, 0, 1106, 1107, 3, 158, 79, 0, 1107, 1108, 5, 385, 0, 0, 1108, 1124, 1, 0, 0, 0, 1109, 1111, 3, 170, 85, 0, 1110, 1112, 3, 232, 116, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1115, 3, 236, 118, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1124, 1, 0, 0, 0, 1116, 1118, 3, 168, 84, 0, 1117, 1119, 3, 232, 116, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1121, 1, 0, 0, 0, 1120, 1122, 3, 236, 118, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1124, 1, 0, 0, 0, 1123, 1100, 1, 0, 0, 0, 1123, 1102, 1, 0, 0, 0, 1123, 1105, 1, 0, 0, 0, 1123, 1109, 1, 0, 0, 0, 1123, 1116, 1, 0, 0, 0, 1124, 1139, 1, 0, 0, 0, 1125, 1126, 10, 3, 0, 0, 1126, 1128, 7, 20, 0, 0, 1127, 1129, 5, 178, 0, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1132, 3, 158, 79, 0, 1131, 1133, 3, 232, 116, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1135, 1, 0, 0, 0, 1134, 1136, 3, 236, 118, 0, 1135, 1134, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1138, 1, 0, 0, 0, 1137, 1125, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 159, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1142, 1143, 5, 363, 0, 0, 1143, 1148, 3, 260, 130, 0, 1144, 1145, 5, 388, 0, 0, 1145, 1147, 3, 260, 130, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1150, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 161, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1151, 1152, 5, 369, 0, 0, 1152, 1157, 3, 164, 82, 0, 1153, 1154, 5, 388, 0, 0, 1154, 1156, 3, 164, 82, 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, 163, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1172, 3, 166, 83, 0, 1161, 1162, 5, 384, 0, 0, 1162, 1167, 3, 50, 25, 0, 1163, 1164, 5, 388, 0, 0, 1164, 1166, 3, 50, 25, 0, 1165, 1163, 1, 0, 0, 0, 1166, 1169, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1171, 5, 385, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1161, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 5, 185, 0, 0, 1175, 1176, 5, 384, 0, 0, 1176, 1177, 3, 158, 79, 0, 1177, 1178, 5, 385, 0, 0, 1178, 165, 1, 0, 0, 0, 1179, 1180, 3, 306, 153, 0, 1180, 167, 1, 0, 0, 0, 1181, 1182, 3, 170, 85, 0, 1182, 1184, 3, 176, 88, 0, 1183, 1185, 3, 206, 103, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 3, 208, 104, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1190, 1, 0, 0, 0, 1189, 1191, 3, 222, 111, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1193, 1, 0, 0, 0, 1192, 1194, 3, 224, 112, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1200, 1, 0, 0, 0, 1195, 1196, 3, 170, 85, 0, 1196, 1197, 3, 176, 88, 0, 1197, 1198, 3, 230, 115, 0, 1198, 1200, 1, 0, 0, 0, 1199, 1181, 1, 0, 0, 0, 1199, 1195, 1, 0, 0, 0, 1200, 169, 1, 0, 0, 0, 1201, 1203, 5, 330, 0, 0, 1202, 1204, 3, 350, 175, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1214, 1, 0, 0, 0, 1205, 1215, 5, 395, 0, 0, 1206, 1211, 3, 172, 86, 0, 1207, 1208, 5, 388, 0, 0, 1208, 1210, 3, 172, 86, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1205, 1, 0, 0, 0, 1214, 1206, 1, 0, 0, 0, 1215, 171, 1, 0, 0, 0, 1216, 1225, 3, 174, 87, 0, 1217, 1222, 3, 260, 130, 0, 1218, 1220, 5, 185, 0, 0, 1219, 1218, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1223, 3, 260, 130, 0, 1222, 1219, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1216, 1, 0, 0, 0, 1224, 1217, 1, 0, 0, 0, 1225, 173, 1, 0, 0, 0, 1226, 1227, 3, 270, 135, 0, 1227, 1228, 5, 309, 0, 0, 1228, 1229, 3, 228, 114, 0, 1229, 1230, 5, 185, 0, 0, 1230, 1231, 3, 306, 153, 0, 1231, 1239, 1, 0, 0, 0, 1232, 1233, 3, 270, 135, 0, 1233, 1234, 5, 309, 0, 0, 1234, 1235, 3, 298, 149, 0, 1235, 1236, 5, 185, 0, 0, 1236, 1237, 3, 306, 153, 0, 1237, 1239, 1, 0, 0, 0, 1238, 1226, 1, 0, 0, 0, 1238, 1232, 1, 0, 0, 0, 1239, 175, 1, 0, 0, 0, 1240, 1241, 5, 252, 0, 0, 1241, 1242, 3, 178, 89, 0, 1242, 177, 1, 0, 0, 0, 1243, 1244, 6, 89, -1, 0, 1244, 1249, 3, 180, 90, 0, 1245, 1246, 5, 388, 0, 0, 1246, 1248, 3, 180, 90, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1251, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1255, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1255, 3, 190, 95, 0, 1253, 1255, 3, 192, 96, 0, 1254, 1243, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1277, 1, 0, 0, 0, 1256, 1257, 10, 3, 0, 0, 1257, 1258, 5, 220, 0, 0, 1258, 1259, 5, 274, 0, 0, 1259, 1276, 3, 178, 89, 4, 1260, 1262, 10, 4, 0, 0, 1261, 1263, 5, 294, 0, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1265, 1, 0, 0, 0, 1264, 1266, 7, 21, 0, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1268, 1, 0, 0, 0, 1267, 1269, 5, 308, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 5, 274, 0, 0, 1271, 1273, 3, 178, 89, 0, 1272, 1274, 3, 204, 102, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1256, 1, 0, 0, 0, 1275, 1260, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 179, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1282, 3, 182, 91, 0, 1281, 1283, 3, 296, 148, 0, 1282, 1281, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 181, 1, 0, 0, 0, 1284, 1286, 5, 344, 0, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 3, 184, 92, 0, 1288, 1290, 3, 186, 93, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1295, 1, 0, 0, 0, 1291, 1293, 5, 185, 0, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1296, 3, 278, 139, 0, 1295, 1292, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1326, 1, 0, 0, 0, 1297, 1298, 5, 277, 0, 0, 1298, 1299, 5, 344, 0, 0, 1299, 1300, 5, 384, 0, 0, 1300, 1301, 3, 272, 136, 0, 1301, 1302, 5, 384, 0, 0, 1302, 1307, 3, 274, 137, 0, 1303, 1304, 5, 388, 0, 0, 1304, 1306, 3, 274, 137, 0, 1305, 1303, 1, 0, 0, 0, 1306, 1309, 1, 0, 0, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1307, 1, 0, 0, 0, 1310, 1311, 5, 385, 0, 0, 1311, 1312, 5, 385, 0, 0, 1312, 1326, 1, 0, 0, 0, 1313, 1315, 5, 277, 0, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 5, 384, 0, 0, 1317, 1318, 3, 158, 79, 0, 1318, 1319, 5, 385, 0, 0, 1319, 1326, 1, 0, 0, 0, 1320, 1321, 5, 357, 0, 0, 1321, 1322, 5, 384, 0, 0, 1322, 1323, 3, 260, 130, 0, 1323, 1324, 5, 385, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1285, 1, 0, 0, 0, 1325, 1297, 1, 0, 0, 0, 1325, 1314, 1, 0, 0, 0, 1325, 1320, 1, 0, 0, 0, 1326, 183, 1, 0, 0, 0, 1327, 1328, 3, 314, 157, 0, 1328, 185, 1, 0, 0, 0, 1329, 1330, 5, 251, 0, 0, 1330, 1331, 5, 342, 0, 0, 1331, 1332, 5, 185, 0, 0, 1332, 1333, 5, 301, 0, 0, 1333, 1334, 3, 188, 94, 0, 1334, 187, 1, 0, 0, 0, 1335, 1336, 3, 260, 130, 0, 1336, 189, 1, 0, 0, 0, 1337, 1338, 5, 384, 0, 0, 1338, 1339, 3, 150, 75, 0, 1339, 1340, 5, 385, 0, 0, 1340, 1341, 3, 296, 148, 0, 1341, 191, 1, 0, 0, 0, 1342, 1343, 5, 344, 0, 0, 1343, 1344, 5, 384, 0, 0, 1344, 1345, 3, 194, 97, 0, 1345, 1346, 5, 385, 0, 0, 1346, 193, 1, 0, 0, 0, 1347, 1348, 3, 196, 98, 0, 1348, 1349, 5, 384, 0, 0, 1349, 1354, 3, 198, 99, 0, 1350, 1351, 5, 388, 0, 0, 1351, 1353, 3, 198, 99, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1358, 5, 385, 0, 0, 1358, 195, 1, 0, 0, 0, 1359, 1360, 7, 22, 0, 0, 1360, 197, 1, 0, 0, 0, 1361, 1362, 5, 344, 0, 0, 1362, 1377, 3, 220, 110, 0, 1363, 1377, 3, 202, 101, 0, 1364, 1377, 3, 282, 141, 0, 1365, 1366, 5, 24, 0, 0, 1366, 1367, 5, 404, 0, 0, 1367, 1368, 5, 344, 0, 0, 1368, 1377, 3, 220, 110, 0, 1369, 1370, 5, 151, 0, 0, 1370, 1371, 5, 404, 0, 0, 1371, 1377, 3, 202, 101, 0, 1372, 1373, 3, 200, 100, 0, 1373, 1374, 5, 404, 0, 0, 1374, 1375, 3, 282, 141, 0, 1375, 1377, 1, 0, 0, 0, 1376, 1361, 1, 0, 0, 0, 1376, 1363, 1, 0, 0, 0, 1376, 1364, 1, 0, 0, 0, 1376, 1365, 1, 0, 0, 0, 1376, 1369, 1, 0, 0, 0, 1376, 1372, 1, 0, 0, 0, 1377, 199, 1, 0, 0, 0, 1378, 1379, 7, 23, 0, 0, 1379, 201, 1, 0, 0, 0, 1380, 1381, 5, 31, 0, 0, 1381, 1382, 5, 384, 0, 0, 1382, 1383, 3, 314, 157, 0, 1383, 1384, 5, 385, 0, 0, 1384, 203, 1, 0, 0, 0, 1385, 1386, 5, 303, 0, 0, 1386, 1400, 3, 262, 131, 0, 1387, 1388, 5, 361, 0, 0, 1388, 1389, 5, 384, 0, 0, 1389, 1394, 3, 314, 157, 0, 1390, 1391, 5, 388, 0, 0, 1391, 1393, 3, 314, 157, 0, 1392, 1390, 1, 0, 0, 0, 1393, 1396, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1397, 1, 0, 0, 0, 1396, 1394, 1, 0, 0, 0, 1397, 1398, 5, 385, 0, 0, 1398, 1400, 1, 0, 0, 0, 1399, 1385, 1, 0, 0, 0, 1399, 1387, 1, 0, 0, 0, 1400, 205, 1, 0, 0, 0, 1401, 1402, 5, 367, 0, 0, 1402, 1403, 3, 262, 131, 0, 1403, 207, 1, 0, 0, 0, 1404, 1405, 5, 257, 0, 0, 1405, 1406, 5, 197, 0, 0, 1406, 1411, 3, 210, 105, 0, 1407, 1408, 5, 388, 0, 0, 1408, 1410, 3, 210, 105, 0, 1409, 1407, 1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 209, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1414, 1454, 3, 260, 130, 0, 1415, 1454, 3, 216, 108, 0, 1416, 1417, 5, 384, 0, 0, 1417, 1454, 5, 385, 0, 0, 1418, 1419, 5, 384, 0, 0, 1419, 1424, 3, 260, 130, 0, 1420, 1421, 5, 388, 0, 0, 1421, 1423, 3, 260, 130, 0, 1422, 1420, 1, 0, 0, 0, 1423, 1426, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1424, 1, 0, 0, 0, 1427, 1428, 5, 385, 0, 0, 1428, 1454, 1, 0, 0, 0, 1429, 1430, 3, 214, 107, 0, 1430, 1431, 5, 384, 0, 0, 1431, 1436, 3, 260, 130, 0, 1432, 1433, 5, 388, 0, 0, 1433, 1435, 3, 260, 130, 0, 1434, 1432, 1, 0, 0, 0, 1435, 1438, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1439, 1, 0, 0, 0, 1438, 1436, 1, 0, 0, 0, 1439, 1440, 5, 385, 0, 0, 1440, 1454, 1, 0, 0, 0, 1441, 1442, 3, 212, 106, 0, 1442, 1443, 5, 384, 0, 0, 1443, 1448, 3, 210, 105, 0, 1444, 1445, 5, 388, 0, 0, 1445, 1447, 3, 210, 105, 0, 1446, 1444, 1, 0, 0, 0, 1447, 1450, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1451, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1451, 1452, 5, 385, 0, 0, 1452, 1454, 1, 0, 0, 0, 1453, 1414, 1, 0, 0, 0, 1453, 1415, 1, 0, 0, 0, 1453, 1416, 1, 0, 0, 0, 1453, 1418, 1, 0, 0, 0, 1453, 1429, 1, 0, 0, 0, 1453, 1441, 1, 0, 0, 0, 1454, 211, 1, 0, 0, 0, 1455, 1456, 5, 258, 0, 0, 1456, 1457, 5, 137, 0, 0, 1457, 213, 1, 0, 0, 0, 1458, 1459, 7, 24, 0, 0, 1459, 215, 1, 0, 0, 0, 1460, 1461, 3, 218, 109, 0, 1461, 1462, 5, 384, 0, 0, 1462, 1463, 3, 220, 110, 0, 1463, 1464, 5, 388, 0, 0, 1464, 1465, 3, 282, 141, 0, 1465, 1466, 5, 385, 0, 0, 1466, 217, 1, 0, 0, 0, 1467, 1468, 7, 25, 0, 0, 1468, 219, 1, 0, 0, 0, 1469, 1470, 3, 314, 157, 0, 1470, 221, 1, 0, 0, 0, 1471, 1472, 5, 260, 0, 0, 1472, 1473, 3, 262, 131, 0, 1473, 223, 1, 0, 0, 0, 1474, 1475, 5, 368, 0, 0, 1475, 1480, 3, 226, 113, 0, 1476, 1477, 5, 388, 0, 0, 1477, 1479, 3, 226, 113, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1482, 1, 0, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 225, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1484, 3, 298, 149, 0, 1484, 1485, 5, 185, 0, 0, 1485, 1486, 3, 228, 114, 0, 1486, 227, 1, 0, 0, 0, 1487, 1489, 3, 298, 149, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 5, 384, 0, 0, 1491, 1493, 3, 238, 119, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 1, 0, 0, 0, 1494, 1496, 3, 232, 116, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1498, 1, 0, 0, 0, 1497, 1499, 3, 254, 127, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 5, 385, 0, 0, 1501, 229, 1, 0, 0, 0, 1502, 1503, 5, 284, 0, 0, 1503, 1505, 5, 384, 0, 0, 1504, 1506, 3, 238, 119, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1509, 3, 232, 116, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1511, 1, 0, 0, 0, 1510, 1512, 3, 242, 121, 0, 1511, 1510, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1515, 3, 248, 124, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1517, 1, 0, 0, 0, 1516, 1518, 3, 250, 125, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1521, 3, 244, 122, 0, 1520, 1519, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1523, 3, 252, 126, 0, 1523, 1528, 5, 385, 0, 0, 1524, 1526, 5, 185, 0, 0, 1525, 1524, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1529, 3, 306, 153, 0, 1528, 1525, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 231, 1, 0, 0, 0, 1530, 1531, 5, 306, 0, 0, 1531, 1532, 5, 197, 0, 0, 1532, 1537, 3, 234, 117, 0, 1533, 1534, 5, 388, 0, 0, 1534, 1536, 3, 234, 117, 0, 1535, 1533, 1, 0, 0, 0, 1536, 1539, 1, 0, 0, 0, 1537, 1535, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 233, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1540, 1542, 3, 260, 130, 0, 1541, 1543, 7, 26, 0, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1545, 5, 87, 0, 0, 1545, 1547, 7, 27, 0, 0, 1546, 1544, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 235, 1, 0, 0, 0, 1548, 1551, 5, 281, 0, 0, 1549, 1552, 5, 178, 0, 0, 1550, 1552, 3, 260, 130, 0, 1551, 1549, 1, 0, 0, 0, 1551, 1550, 1, 0, 0, 0, 1552, 237, 1, 0, 0, 0, 1553, 1554, 5, 311, 0, 0, 1554, 1555, 5, 197, 0, 0, 1555, 1560, 3, 260, 130, 0, 1556, 1557, 5, 388, 0, 0, 1557, 1559, 3, 260, 130, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1562, 1, 0, 0, 0, 1560, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 239, 1, 0, 0, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1580, 5, 395, 0, 0, 1564, 1580, 5, 398, 0, 0, 1565, 1580, 5, 403, 0, 0, 1566, 1567, 5, 386, 0, 0, 1567, 1568, 5, 406, 0, 0, 1568, 1569, 5, 388, 0, 0, 1569, 1570, 5, 406, 0, 0, 1570, 1580, 5, 387, 0, 0, 1571, 1572, 5, 386, 0, 0, 1572, 1573, 5, 406, 0, 0, 1573, 1574, 5, 388, 0, 0, 1574, 1580, 5, 387, 0, 0, 1575, 1576, 5, 386, 0, 0, 1576, 1577, 5, 388, 0, 0, 1577, 1578, 5, 406, 0, 0, 1578, 1580, 5, 387, 0, 0, 1579, 1563, 1, 0, 0, 0, 1579, 1564, 1, 0, 0, 0, 1579, 1565, 1, 0, 0, 0, 1579, 1566, 1, 0, 0, 0, 1579, 1571, 1, 0, 0, 0, 1579, 1575, 1, 0, 0, 0, 1580, 241, 1, 0, 0, 0, 1581, 1582, 5, 285, 0, 0, 1582, 1587, 3, 172, 86, 0, 1583, 1584, 5, 388, 0, 0, 1584, 1586, 3, 172, 86, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 243, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1591, 5, 312, 0, 0, 1591, 1593, 5, 384, 0, 0, 1592, 1594, 3, 246, 123, 0, 1593, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1599, 5, 385, 0, 0, 1598, 1600, 3, 258, 129, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 245, 1, 0, 0, 0, 1601, 1603, 3, 308, 154, 0, 1602, 1604, 3, 240, 120, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 247, 1, 0, 0, 0, 1605, 1606, 5, 178, 0, 0, 1606, 1607, 5, 328, 0, 0, 1607, 1608, 5, 313, 0, 0, 1608, 1614, 5, 283, 0, 0, 1609, 1610, 5, 304, 0, 0, 1610, 1611, 5, 327, 0, 0, 1611, 1612, 5, 313, 0, 0, 1612, 1614, 5, 283, 0, 0, 1613, 1605, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1614, 249, 1, 0, 0, 0, 1615, 1616, 5, 6, 0, 0, 1616, 1617, 5, 283, 0, 0, 1617, 1618, 5, 334, 0, 0, 1618, 1619, 5, 98, 0, 0, 1619, 1620, 5, 73, 0, 0, 1620, 1640, 5, 327, 0, 0, 1621, 1622, 5, 6, 0, 0, 1622, 1623, 5, 283, 0, 0, 1623, 1624, 5, 334, 0, 0, 1624, 1625, 5, 350, 0, 0, 1625, 1626, 5, 295, 0, 0, 1626, 1640, 5, 327, 0, 0, 1627, 1628, 5, 6, 0, 0, 1628, 1629, 5, 283, 0, 0, 1629, 1630, 5, 334, 0, 0, 1630, 1631, 5, 350, 0, 0, 1631, 1632, 5, 73, 0, 0, 1632, 1640, 3, 308, 154, 0, 1633, 1634, 5, 6, 0, 0, 1634, 1635, 5, 283, 0, 0, 1635, 1636, 5, 334, 0, 0, 1636, 1637, 5, 350, 0, 0, 1637, 1638, 5, 45, 0, 0, 1638, 1640, 3, 308, 154, 0, 1639, 1615, 1, 0, 0, 0, 1639, 1621, 1, 0, 0, 0, 1639, 1627, 1, 0, 0, 0, 1639, 1633, 1, 0, 0, 0, 1640, 251, 1, 0, 0, 0, 1641, 1642, 5, 232, 0, 0, 1642, 1647, 3, 172, 86, 0, 1643, 1644, 5, 388, 0, 0, 1644, 1646, 3, 172, 86, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 253, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1651, 5, 319, 0, 0, 1651, 1652, 5, 190, 0, 0, 1652, 1653, 3, 282, 141, 0, 1653, 1654, 3, 256, 128, 0, 1654, 1660, 1, 0, 0, 0, 1655, 1656, 5, 328, 0, 0, 1656, 1657, 5, 190, 0, 0, 1657, 1658, 5, 406, 0, 0, 1658, 1660, 3, 256, 128, 0, 1659, 1650, 1, 0, 0, 0, 1659, 1655, 1, 0, 0, 0, 1660, 255, 1, 0, 0, 0, 1661, 1662, 5, 102, 0, 0, 1662, 1663, 5, 181, 0, 0, 1663, 1664, 5, 222, 0, 0, 1664, 1665, 5, 327, 0, 0, 1665, 257, 1, 0, 0, 0, 1666, 1667, 5, 370, 0, 0, 1667, 1668, 3, 282, 141, 0, 1668, 259, 1, 0, 0, 0, 1669, 1670, 3, 262, 131, 0, 1670, 261, 1, 0, 0, 0, 1671, 1672, 6, 131, -1, 0, 1672, 1673, 5, 298, 0, 0, 1673, 1684, 3, 262, 131, 6, 1674, 1675, 5, 245, 0, 0, 1675, 1676, 5, 384, 0, 0, 1676, 1677, 3, 158, 79, 0, 1677, 1678, 5, 385, 0, 0, 1678, 1684, 1, 0, 0, 0, 1679, 1681, 3, 268, 134, 0, 1680, 1682, 3, 264, 132, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1671, 1, 0, 0, 0, 1683, 1674, 1, 0, 0, 0, 1683, 1679, 1, 0, 0, 0, 1684, 1699, 1, 0, 0, 0, 1685, 1686, 10, 3, 0, 0, 1686, 1687, 5, 181, 0, 0, 1687, 1698, 3, 262, 131, 4, 1688, 1689, 10, 2, 0, 0, 1689, 1690, 5, 305, 0, 0, 1690, 1698, 3, 262, 131, 3, 1691, 1692, 10, 1, 0, 0, 1692, 1694, 5, 273, 0, 0, 1693, 1695, 5, 298, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, 7, 28, 0, 0, 1697, 1685, 1, 0, 0, 0, 1697, 1688, 1, 0, 0, 0, 1697, 1691, 1, 0, 0, 0, 1698, 1701, 1, 0, 0, 0, 1699, 1697, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 263, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1704, 5, 298, 0, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 5, 190, 0, 0, 1706, 1708, 7, 29, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 3, 268, 134, 0, 1710, 1711, 5, 181, 0, 0, 1711, 1712, 3, 268, 134, 0, 1712, 1770, 1, 0, 0, 0, 1713, 1715, 5, 298, 0, 0, 1714, 1713, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 5, 263, 0, 0, 1717, 1718, 5, 384, 0, 0, 1718, 1723, 3, 260, 130, 0, 1719, 1720, 5, 388, 0, 0, 1720, 1722, 3, 260, 130, 0, 1721, 1719, 1, 0, 0, 0, 1722, 1725, 1, 0, 0, 0, 1723, 1721, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1726, 1, 0, 0, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1727, 5, 385, 0, 0, 1727, 1770, 1, 0, 0, 0, 1728, 1730, 5, 298, 0, 0, 1729, 1728, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 5, 263, 0, 0, 1732, 1733, 5, 384, 0, 0, 1733, 1734, 3, 158, 79, 0, 1734, 1735, 5, 385, 0, 0, 1735, 1770, 1, 0, 0, 0, 1736, 1737, 5, 245, 0, 0, 1737, 1738, 5, 384, 0, 0, 1738, 1739, 3, 158, 79, 0, 1739, 1740, 5, 385, 0, 0, 1740, 1770, 1, 0, 0, 0, 1741, 1743, 5, 298, 0, 0, 1742, 1741, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 5, 324, 0, 0, 1745, 1770, 3, 268, 134, 0, 1746, 1770, 3, 266, 133, 0, 1747, 1749, 5, 273, 0, 0, 1748, 1750, 5, 298, 0, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1770, 7, 28, 0, 0, 1752, 1754, 5, 273, 0, 0, 1753, 1755, 5, 298, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 5, 235, 0, 0, 1757, 1758, 5, 252, 0, 0, 1758, 1770, 3, 268, 134, 0, 1759, 1761, 5, 298, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 5, 333, 0, 0, 1763, 1764, 5, 350, 0, 0, 1764, 1767, 3, 268, 134, 0, 1765, 1766, 5, 242, 0, 0, 1766, 1768, 3, 344, 172, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1703, 1, 0, 0, 0, 1769, 1714, 1, 0, 0, 0, 1769, 1729, 1, 0, 0, 0, 1769, 1736, 1, 0, 0, 0, 1769, 1742, 1, 0, 0, 0, 1769, 1746, 1, 0, 0, 0, 1769, 1747, 1, 0, 0, 0, 1769, 1752, 1, 0, 0, 0, 1769, 1760, 1, 0, 0, 0, 1770, 265, 1, 0, 0, 0, 1771, 1773, 5, 298, 0, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 5, 280, 0, 0, 1775, 1789, 7, 30, 0, 0, 1776, 1777, 5, 384, 0, 0, 1777, 1790, 5, 385, 0, 0, 1778, 1779, 5, 384, 0, 0, 1779, 1784, 3, 260, 130, 0, 1780, 1781, 5, 388, 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, 385, 0, 0, 1788, 1790, 1, 0, 0, 0, 1789, 1776, 1, 0, 0, 0, 1789, 1778, 1, 0, 0, 0, 1790, 1801, 1, 0, 0, 0, 1791, 1793, 5, 298, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 5, 280, 0, 0, 1795, 1798, 3, 268, 134, 0, 1796, 1797, 5, 242, 0, 0, 1797, 1799, 3, 344, 172, 0, 1798, 1796, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, 1, 0, 0, 0, 1800, 1772, 1, 0, 0, 0, 1800, 1792, 1, 0, 0, 0, 1801, 267, 1, 0, 0, 0, 1802, 1803, 6, 134, -1, 0, 1803, 1807, 3, 270, 135, 0, 1804, 1805, 7, 31, 0, 0, 1805, 1807, 3, 268, 134, 7, 1806, 1802, 1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1829, 1, 0, 0, 0, 1808, 1809, 10, 6, 0, 0, 1809, 1810, 7, 32, 0, 0, 1810, 1828, 3, 268, 134, 7, 1811, 1812, 10, 5, 0, 0, 1812, 1813, 7, 33, 0, 0, 1813, 1828, 3, 268, 134, 6, 1814, 1815, 10, 4, 0, 0, 1815, 1816, 5, 379, 0, 0, 1816, 1828, 3, 268, 134, 5, 1817, 1818, 10, 3, 0, 0, 1818, 1819, 5, 380, 0, 0, 1819, 1828, 3, 268, 134, 4, 1820, 1821, 10, 2, 0, 0, 1821, 1822, 5, 378, 0, 0, 1822, 1828, 3, 268, 134, 3, 1823, 1824, 10, 1, 0, 0, 1824, 1825, 3, 332, 166, 0, 1825, 1826, 3, 268, 134, 2, 1826, 1828, 1, 0, 0, 0, 1827, 1808, 1, 0, 0, 0, 1827, 1811, 1, 0, 0, 0, 1827, 1814, 1, 0, 0, 0, 1827, 1817, 1, 0, 0, 0, 1827, 1820, 1, 0, 0, 0, 1827, 1823, 1, 0, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 269, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1833, 6, 135, -1, 0, 1833, 1835, 5, 201, 0, 0, 1834, 1836, 3, 312, 156, 0, 1835, 1834, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1840, 5, 239, 0, 0, 1840, 1842, 3, 260, 130, 0, 1841, 1839, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 5, 240, 0, 0, 1844, 1924, 1, 0, 0, 0, 1845, 1846, 5, 201, 0, 0, 1846, 1848, 3, 260, 130, 0, 1847, 1849, 3, 312, 156, 0, 1848, 1847, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1854, 1, 0, 0, 0, 1852, 1853, 5, 239, 0, 0, 1853, 1855, 3, 260, 130, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 5, 240, 0, 0, 1857, 1924, 1, 0, 0, 0, 1858, 1859, 5, 202, 0, 0, 1859, 1860, 5, 384, 0, 0, 1860, 1861, 3, 260, 130, 0, 1861, 1862, 5, 185, 0, 0, 1862, 1863, 3, 54, 27, 0, 1863, 1864, 5, 385, 0, 0, 1864, 1924, 1, 0, 0, 0, 1865, 1866, 5, 45, 0, 0, 1866, 1867, 5, 384, 0, 0, 1867, 1870, 3, 260, 130, 0, 1868, 1869, 5, 60, 0, 0, 1869, 1871, 5, 87, 0, 0, 1870, 1868, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1873, 5, 385, 0, 0, 1873, 1924, 1, 0, 0, 0, 1874, 1875, 5, 73, 0, 0, 1875, 1876, 5, 384, 0, 0, 1876, 1879, 3, 260, 130, 0, 1877, 1878, 5, 60, 0, 0, 1878, 1880, 5, 87, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 5, 385, 0, 0, 1882, 1924, 1, 0, 0, 0, 1883, 1884, 5, 316, 0, 0, 1884, 1885, 5, 384, 0, 0, 1885, 1886, 3, 268, 134, 0, 1886, 1887, 5, 263, 0, 0, 1887, 1888, 3, 268, 134, 0, 1888, 1889, 5, 385, 0, 0, 1889, 1924, 1, 0, 0, 0, 1890, 1924, 3, 340, 170, 0, 1891, 1924, 5, 395, 0, 0, 1892, 1893, 3, 314, 157, 0, 1893, 1894, 5, 381, 0, 0, 1894, 1895, 5, 395, 0, 0, 1895, 1924, 1, 0, 0, 0, 1896, 1897, 5, 384, 0, 0, 1897, 1898, 3, 158, 79, 0, 1898, 1899, 5, 385, 0, 0, 1899, 1924, 1, 0, 0, 0, 1900, 1901, 3, 272, 136, 0, 1901, 1913, 5, 384, 0, 0, 1902, 1904, 3, 350, 175, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1910, 3, 274, 137, 0, 1906, 1907, 5, 388, 0, 0, 1907, 1909, 3, 274, 137, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1914, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1903, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 5, 385, 0, 0, 1916, 1924, 1, 0, 0, 0, 1917, 1924, 3, 306, 153, 0, 1918, 1924, 3, 276, 138, 0, 1919, 1920, 5, 384, 0, 0, 1920, 1921, 3, 260, 130, 0, 1921, 1922, 5, 385, 0, 0, 1922, 1924, 1, 0, 0, 0, 1923, 1832, 1, 0, 0, 0, 1923, 1845, 1, 0, 0, 0, 1923, 1858, 1, 0, 0, 0, 1923, 1865, 1, 0, 0, 0, 1923, 1874, 1, 0, 0, 0, 1923, 1883, 1, 0, 0, 0, 1923, 1890, 1, 0, 0, 0, 1923, 1891, 1, 0, 0, 0, 1923, 1892, 1, 0, 0, 0, 1923, 1896, 1, 0, 0, 0, 1923, 1900, 1, 0, 0, 0, 1923, 1917, 1, 0, 0, 0, 1923, 1918, 1, 0, 0, 0, 1923, 1919, 1, 0, 0, 0, 1924, 1932, 1, 0, 0, 0, 1925, 1926, 10, 4, 0, 0, 1926, 1927, 5, 382, 0, 0, 1927, 1928, 3, 268, 134, 0, 1928, 1929, 5, 383, 0, 0, 1929, 1931, 1, 0, 0, 0, 1930, 1925, 1, 0, 0, 0, 1931, 1934, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 271, 1, 0, 0, 0, 1934, 1932, 1, 0, 0, 0, 1935, 1939, 3, 358, 179, 0, 1936, 1939, 3, 362, 181, 0, 1937, 1939, 3, 314, 157, 0, 1938, 1935, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1937, 1, 0, 0, 0, 1939, 273, 1, 0, 0, 0, 1940, 1945, 3, 356, 178, 0, 1941, 1945, 3, 354, 177, 0, 1942, 1945, 3, 352, 176, 0, 1943, 1945, 3, 260, 130, 0, 1944, 1940, 1, 0, 0, 0, 1944, 1941, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1943, 1, 0, 0, 0, 1945, 275, 1, 0, 0, 0, 1946, 1947, 3, 314, 157, 0, 1947, 277, 1, 0, 0, 0, 1948, 1949, 3, 306, 153, 0, 1949, 279, 1, 0, 0, 0, 1950, 1953, 3, 306, 153, 0, 1951, 1953, 3, 276, 138, 0, 1952, 1950, 1, 0, 0, 0, 1952, 1951, 1, 0, 0, 0, 1953, 281, 1, 0, 0, 0, 1954, 1957, 5, 271, 0, 0, 1955, 1958, 3, 284, 142, 0, 1956, 1958, 3, 288, 144, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 283, 1, 0, 0, 0, 1959, 1961, 3, 286, 143, 0, 1960, 1962, 3, 290, 145, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 285, 1, 0, 0, 0, 1963, 1964, 3, 292, 146, 0, 1964, 1965, 3, 354, 177, 0, 1965, 1967, 1, 0, 0, 0, 1966, 1963, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 287, 1, 0, 0, 0, 1970, 1973, 3, 290, 145, 0, 1971, 1974, 3, 286, 143, 0, 1972, 1974, 3, 290, 145, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 289, 1, 0, 0, 0, 1975, 1976, 3, 292, 146, 0, 1976, 1977, 3, 354, 177, 0, 1977, 1978, 5, 350, 0, 0, 1978, 1979, 3, 354, 177, 0, 1979, 291, 1, 0, 0, 0, 1980, 1982, 7, 34, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1986, 7, 35, 0, 0, 1984, 1986, 5, 405, 0, 0, 1985, 1981, 1, 0, 0, 0, 1985, 1984, 1, 0, 0, 0, 1986, 293, 1, 0, 0, 0, 1987, 1989, 5, 185, 0, 0, 1988, 1987, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 3, 306, 153, 0, 1991, 1993, 3, 302, 151, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 295, 1, 0, 0, 0, 1994, 1996, 5, 185, 0, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1999, 3, 306, 153, 0, 1998, 2000, 3, 302, 151, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 297, 1, 0, 0, 0, 2001, 2002, 3, 306, 153, 0, 2002, 2003, 3, 300, 150, 0, 2003, 299, 1, 0, 0, 0, 2004, 2005, 5, 288, 0, 0, 2005, 2007, 3, 306, 153, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2012, 1, 0, 0, 0, 2010, 2012, 1, 0, 0, 0, 2011, 2006, 1, 0, 0, 0, 2011, 2010, 1, 0, 0, 0, 2012, 301, 1, 0, 0, 0, 2013, 2014, 5, 384, 0, 0, 2014, 2015, 3, 304, 152, 0, 2015, 2016, 5, 385, 0, 0, 2016, 303, 1, 0, 0, 0, 2017, 2022, 3, 306, 153, 0, 2018, 2019, 5, 388, 0, 0, 2019, 2021, 3, 306, 153, 0, 2020, 2018, 1, 0, 0, 0, 2021, 2024, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 305, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2025, 2029, 3, 308, 154, 0, 2026, 2029, 3, 310, 155, 0, 2027, 2029, 3, 362, 181, 0, 2028, 2025, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2027, 1, 0, 0, 0, 2029, 307, 1, 0, 0, 0, 2030, 2031, 7, 36, 0, 0, 2031, 309, 1, 0, 0, 0, 2032, 2033, 5, 405, 0, 0, 2033, 311, 1, 0, 0, 0, 2034, 2035, 5, 366, 0, 0, 2035, 2036, 3, 260, 130, 0, 2036, 2037, 5, 346, 0, 0, 2037, 2038, 3, 260, 130, 0, 2038, 313, 1, 0, 0, 0, 2039, 2044, 3, 306, 153, 0, 2040, 2041, 5, 381, 0, 0, 2041, 2043, 3, 306, 153, 0, 2042, 2040, 1, 0, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2044, 2042, 1, 0, 0, 0, 2045, 315, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2047, 2048, 5, 369, 0, 0, 2048, 2049, 3, 322, 161, 0, 2049, 317, 1, 0, 0, 0, 2050, 2051, 5, 59, 0, 0, 2051, 2052, 5, 298, 0, 0, 2052, 2053, 5, 245, 0, 0, 2053, 319, 1, 0, 0, 0, 2054, 2055, 5, 59, 0, 0, 2055, 2056, 5, 245, 0, 0, 2056, 321, 1, 0, 0, 0, 2057, 2058, 5, 384, 0, 0, 2058, 2063, 3, 324, 162, 0, 2059, 2060, 5, 388, 0, 0, 2060, 2062, 3, 324, 162, 0, 2061, 2059, 1, 0, 0, 0, 2062, 2065, 1, 0, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2067, 5, 385, 0, 0, 2067, 323, 1, 0, 0, 0, 2068, 2073, 3, 326, 163, 0, 2069, 2071, 5, 373, 0, 0, 2070, 2069, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2074, 3, 328, 164, 0, 2073, 2070, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 325, 1, 0, 0, 0, 2075, 2079, 3, 306, 153, 0, 2076, 2079, 3, 276, 138, 0, 2077, 2079, 5, 405, 0, 0, 2078, 2075, 1, 0, 0, 0, 2078, 2076, 1, 0, 0, 0, 2078, 2077, 1, 0, 0, 0, 2079, 327, 1, 0, 0, 0, 2080, 2085, 5, 406, 0, 0, 2081, 2085, 5, 407, 0, 0, 2082, 2085, 3, 348, 174, 0, 2083, 2085, 5, 405, 0, 0, 2084, 2080, 1, 0, 0, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2083, 1, 0, 0, 0, 2085, 329, 1, 0, 0, 0, 2086, 2093, 5, 181, 0, 0, 2087, 2088, 5, 379, 0, 0, 2088, 2093, 5, 379, 0, 0, 2089, 2093, 5, 305, 0, 0, 2090, 2091, 5, 378, 0, 0, 2091, 2093, 5, 378, 0, 0, 2092, 2086, 1, 0, 0, 0, 2092, 2087, 1, 0, 0, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2093, 331, 1, 0, 0, 0, 2094, 2109, 5, 373, 0, 0, 2095, 2109, 5, 374, 0, 0, 2096, 2109, 5, 375, 0, 0, 2097, 2098, 5, 375, 0, 0, 2098, 2109, 5, 373, 0, 0, 2099, 2100, 5, 374, 0, 0, 2100, 2109, 5, 373, 0, 0, 2101, 2102, 5, 375, 0, 0, 2102, 2109, 5, 374, 0, 0, 2103, 2104, 5, 376, 0, 0, 2104, 2109, 5, 373, 0, 0, 2105, 2106, 5, 375, 0, 0, 2106, 2107, 5, 373, 0, 0, 2107, 2109, 5, 374, 0, 0, 2108, 2094, 1, 0, 0, 0, 2108, 2095, 1, 0, 0, 0, 2108, 2096, 1, 0, 0, 0, 2108, 2097, 1, 0, 0, 0, 2108, 2099, 1, 0, 0, 0, 2108, 2101, 1, 0, 0, 0, 2108, 2103, 1, 0, 0, 0, 2108, 2105, 1, 0, 0, 0, 2109, 333, 1, 0, 0, 0, 2110, 2111, 5, 375, 0, 0, 2111, 2118, 5, 375, 0, 0, 2112, 2113, 5, 374, 0, 0, 2113, 2118, 5, 374, 0, 0, 2114, 2118, 5, 379, 0, 0, 2115, 2118, 5, 380, 0, 0, 2116, 2118, 5, 378, 0, 0, 2117, 2110, 1, 0, 0, 0, 2117, 2112, 1, 0, 0, 0, 2117, 2114, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2116, 1, 0, 0, 0, 2118, 335, 1, 0, 0, 0, 2119, 2120, 7, 37, 0, 0, 2120, 337, 1, 0, 0, 0, 2121, 2122, 7, 38, 0, 0, 2122, 339, 1, 0, 0, 0, 2123, 2138, 3, 282, 141, 0, 2124, 2138, 3, 342, 171, 0, 2125, 2138, 3, 344, 172, 0, 2126, 2128, 5, 397, 0, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2138, 3, 346, 173, 0, 2130, 2138, 3, 348, 174, 0, 2131, 2138, 5, 407, 0, 0, 2132, 2138, 5, 408, 0, 0, 2133, 2135, 5, 298, 0, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2138, 5, 299, 0, 0, 2137, 2123, 1, 0, 0, 0, 2137, 2124, 1, 0, 0, 0, 2137, 2125, 1, 0, 0, 0, 2137, 2127, 1, 0, 0, 0, 2137, 2130, 1, 0, 0, 0, 2137, 2131, 1, 0, 0, 0, 2137, 2132, 1, 0, 0, 0, 2137, 2134, 1, 0, 0, 0, 2138, 341, 1, 0, 0, 0, 2139, 2140, 3, 352, 176, 0, 2140, 2141, 3, 344, 172, 0, 2141, 343, 1, 0, 0, 0, 2142, 2143, 5, 405, 0, 0, 2143, 345, 1, 0, 0, 0, 2144, 2145, 5, 406, 0, 0, 2145, 347, 1, 0, 0, 0, 2146, 2147, 7, 39, 0, 0, 2147, 349, 1, 0, 0, 0, 2148, 2149, 7, 40, 0, 0, 2149, 351, 1, 0, 0, 0, 2150, 2151, 7, 41, 0, 0, 2151, 353, 1, 0, 0, 0, 2152, 2153, 7, 42, 0, 0, 2153, 355, 1, 0, 0, 0, 2154, 2155, 7, 43, 0, 0, 2155, 357, 1, 0, 0, 0, 2156, 2157, 7, 44, 0, 0, 2157, 359, 1, 0, 0, 0, 2158, 2159, 7, 45, 0, 0, 2159, 361, 1, 0, 0, 0, 2160, 2161, 7, 46, 0, 0, 2161, 363, 1, 0, 0, 0, 249, 372, 375, 377, 392, 410, 414, 423, 428, 435, 442, 446, 455, 467, 470, 477, 485, 490, 493, 500, 508, 512, 524, 532, 536, 557, 561, 565, 569, 578, 583, 587, 591, 595, 598, 602, 607, 613, 618, 623, 626, 630, 638, 646, 650, 654, 658, 662, 666, 670, 674, 678, 680, 690, 698, 722, 729, 735, 738, 741, 751, 754, 762, 774, 798, 811, 816, 820, 828, 832, 840, 850, 854, 860, 864, 868, 871, 880, 884, 891, 894, 904, 912, 920, 924, 939, 958, 969, 973, 980, 985, 991, 995, 1002, 1006, 1010, 1014, 1022, 1026, 1031, 1037, 1043, 1046, 1050, 1061, 1070, 1084, 1096, 1111, 1114, 1118, 1121, 1123, 1128, 1132, 1135, 1139, 1148, 1157, 1167, 1172, 1184, 1187, 1190, 1193, 1199, 1203, 1211, 1214, 1219, 1222, 1224, 1238, 1249, 1254, 1262, 1265, 1268, 1273, 1275, 1277, 1282, 1285, 1289, 1292, 1295, 1307, 1314, 1325, 1354, 1376, 1394, 1399, 1411, 1424, 1436, 1448, 1453, 1480, 1488, 1492, 1495, 1498, 1505, 1508, 1511, 1514, 1517, 1520, 1525, 1528, 1537, 1542, 1546, 1551, 1560, 1579, 1587, 1595, 1599, 1603, 1613, 1639, 1647, 1659, 1681, 1683, 1694, 1697, 1699, 1703, 1707, 1714, 1723, 1729, 1742, 1749, 1754, 1760, 1767, 1769, 1772, 1784, 1789, 1792, 1798, 1800, 1806, 1827, 1829, 1837, 1841, 1850, 1854, 1870, 1879, 1903, 1910, 1913, 1923, 1932, 1938, 1944, 1952, 1957, 1961, 1968, 1973, 1981, 1985, 1988, 1992, 1995, 1999, 2008, 2011, 2022, 2028, 2044, 2063, 2070, 2073, 2078, 2084, 2092, 2108, 2117, 2127, 2134, 2137] \ No newline at end of file +[4, 1, 410, 2173, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 375, 8, 2, 1, 2, 5, 2, 378, 8, 2, 10, 2, 12, 2, 381, 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, 395, 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, 413, 8, 5, 1, 6, 1, 6, 3, 6, 417, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 426, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 431, 8, 8, 1, 9, 1, 9, 1, 9, 5, 9, 436, 8, 9, 10, 9, 12, 9, 439, 9, 9, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 445, 8, 11, 1, 11, 1, 11, 3, 11, 449, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 456, 8, 12, 10, 12, 12, 12, 459, 9, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 470, 8, 13, 1, 13, 3, 13, 473, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 480, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 488, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 493, 8, 13, 1, 13, 3, 13, 496, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 503, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 511, 8, 16, 1, 17, 1, 17, 3, 17, 515, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 527, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 535, 8, 19, 1, 19, 1, 19, 3, 19, 539, 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, 1, 19, 3, 19, 561, 8, 19, 1, 20, 4, 20, 564, 8, 20, 11, 20, 12, 20, 565, 1, 21, 1, 21, 3, 21, 570, 8, 21, 1, 22, 1, 22, 3, 22, 574, 8, 22, 1, 22, 1, 22, 3, 22, 578, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 585, 8, 22, 10, 22, 12, 22, 588, 9, 22, 1, 22, 1, 22, 3, 22, 592, 8, 22, 1, 22, 1, 22, 3, 22, 596, 8, 22, 1, 22, 1, 22, 3, 22, 600, 8, 22, 1, 22, 1, 22, 3, 22, 604, 8, 22, 1, 22, 3, 22, 607, 8, 22, 1, 22, 1, 22, 3, 22, 611, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 616, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 622, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 627, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 632, 8, 25, 1, 25, 3, 25, 635, 8, 25, 1, 26, 1, 26, 3, 26, 639, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 645, 8, 27, 10, 27, 12, 27, 648, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 655, 8, 28, 1, 28, 1, 28, 3, 28, 659, 8, 28, 1, 28, 1, 28, 3, 28, 663, 8, 28, 1, 28, 1, 28, 3, 28, 667, 8, 28, 1, 28, 1, 28, 3, 28, 671, 8, 28, 1, 28, 1, 28, 3, 28, 675, 8, 28, 1, 28, 1, 28, 3, 28, 679, 8, 28, 1, 28, 1, 28, 3, 28, 683, 8, 28, 1, 28, 1, 28, 3, 28, 687, 8, 28, 3, 28, 689, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 699, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 707, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 729, 8, 34, 10, 34, 12, 34, 732, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 738, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 744, 8, 35, 1, 35, 3, 35, 747, 8, 35, 1, 35, 3, 35, 750, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 760, 8, 37, 1, 37, 3, 37, 763, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 771, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 783, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 805, 8, 46, 10, 46, 12, 46, 808, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 818, 8, 47, 10, 47, 12, 47, 821, 9, 47, 1, 47, 1, 47, 3, 47, 825, 8, 47, 1, 48, 1, 48, 3, 48, 829, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 835, 8, 49, 10, 49, 12, 49, 838, 9, 49, 1, 49, 3, 49, 841, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 849, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 3, 53, 859, 8, 53, 1, 53, 1, 53, 3, 53, 863, 8, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 869, 8, 54, 1, 54, 1, 54, 3, 54, 873, 8, 54, 1, 54, 1, 54, 3, 54, 877, 8, 54, 1, 54, 3, 54, 880, 8, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 889, 8, 55, 1, 55, 1, 55, 3, 55, 893, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 900, 8, 55, 1, 55, 3, 55, 903, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 911, 8, 56, 10, 56, 12, 56, 914, 9, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 921, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 929, 8, 58, 1, 59, 1, 59, 3, 59, 933, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 948, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 967, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 978, 8, 67, 1, 67, 1, 67, 3, 67, 982, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 989, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 994, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1000, 8, 69, 1, 69, 1, 69, 3, 69, 1004, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 1011, 8, 70, 1, 70, 1, 70, 3, 70, 1015, 8, 70, 1, 71, 1, 71, 3, 71, 1019, 8, 71, 1, 71, 1, 71, 3, 71, 1023, 8, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1031, 8, 72, 1, 72, 1, 72, 3, 72, 1035, 8, 72, 1, 72, 1, 72, 1, 73, 3, 73, 1040, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1046, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1052, 8, 74, 1, 74, 3, 74, 1055, 8, 74, 1, 74, 1, 74, 3, 74, 1059, 8, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1068, 8, 76, 10, 76, 12, 76, 1071, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1077, 8, 77, 10, 77, 12, 77, 1080, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1091, 8, 78, 11, 78, 12, 78, 1092, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1103, 8, 79, 11, 79, 12, 79, 1104, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1120, 8, 80, 1, 80, 3, 80, 1123, 8, 80, 1, 80, 1, 80, 3, 80, 1127, 8, 80, 1, 80, 3, 80, 1130, 8, 80, 3, 80, 1132, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1137, 8, 80, 1, 80, 1, 80, 3, 80, 1141, 8, 80, 1, 80, 3, 80, 1144, 8, 80, 5, 80, 1146, 8, 80, 10, 80, 12, 80, 1149, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1155, 8, 81, 10, 81, 12, 81, 1158, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1164, 8, 82, 10, 82, 12, 82, 1167, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1174, 8, 83, 10, 83, 12, 83, 1177, 9, 83, 1, 83, 1, 83, 3, 83, 1181, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1193, 8, 85, 1, 85, 3, 85, 1196, 8, 85, 1, 85, 3, 85, 1199, 8, 85, 1, 85, 3, 85, 1202, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1208, 8, 85, 1, 86, 1, 86, 3, 86, 1212, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1218, 8, 86, 10, 86, 12, 86, 1221, 9, 86, 3, 86, 1223, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1228, 8, 87, 1, 87, 3, 87, 1231, 8, 87, 3, 87, 1233, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1247, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1256, 8, 90, 10, 90, 12, 90, 1259, 9, 90, 1, 90, 1, 90, 3, 90, 1263, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1271, 8, 90, 1, 90, 3, 90, 1274, 8, 90, 1, 90, 3, 90, 1277, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1282, 8, 90, 5, 90, 1284, 8, 90, 10, 90, 12, 90, 1287, 9, 90, 1, 91, 1, 91, 3, 91, 1291, 8, 91, 1, 92, 3, 92, 1294, 8, 92, 1, 92, 1, 92, 3, 92, 1298, 8, 92, 1, 92, 3, 92, 1301, 8, 92, 1, 92, 3, 92, 1304, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 1314, 8, 92, 10, 92, 12, 92, 1317, 9, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1323, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1334, 8, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 1361, 8, 98, 10, 98, 12, 98, 1364, 9, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1385, 8, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1401, 8, 103, 10, 103, 12, 103, 1404, 9, 103, 1, 103, 1, 103, 3, 103, 1408, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1418, 8, 105, 10, 105, 12, 105, 1421, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1431, 8, 106, 10, 106, 12, 106, 1434, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1443, 8, 106, 10, 106, 12, 106, 1446, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1455, 8, 106, 10, 106, 12, 106, 1458, 9, 106, 1, 106, 1, 106, 3, 106, 1462, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1487, 8, 113, 10, 113, 12, 113, 1490, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 3, 115, 1497, 8, 115, 1, 115, 1, 115, 3, 115, 1501, 8, 115, 1, 115, 3, 115, 1504, 8, 115, 1, 115, 3, 115, 1507, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1514, 8, 116, 1, 116, 3, 116, 1517, 8, 116, 1, 116, 3, 116, 1520, 8, 116, 1, 116, 3, 116, 1523, 8, 116, 1, 116, 3, 116, 1526, 8, 116, 1, 116, 3, 116, 1529, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1534, 8, 116, 1, 116, 3, 116, 1537, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 1544, 8, 117, 10, 117, 12, 117, 1547, 9, 117, 1, 118, 1, 118, 3, 118, 1551, 8, 118, 1, 118, 1, 118, 3, 118, 1555, 8, 118, 1, 119, 1, 119, 1, 119, 3, 119, 1560, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1567, 8, 120, 10, 120, 12, 120, 1570, 9, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1588, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 1594, 8, 122, 10, 122, 12, 122, 1597, 9, 122, 1, 123, 1, 123, 1, 123, 4, 123, 1602, 8, 123, 11, 123, 12, 123, 1603, 1, 123, 1, 123, 3, 123, 1608, 8, 123, 1, 124, 1, 124, 3, 124, 1612, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1622, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1648, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1654, 8, 127, 10, 127, 12, 127, 1657, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1668, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1690, 8, 132, 3, 132, 1692, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1703, 8, 132, 1, 132, 5, 132, 1706, 8, 132, 10, 132, 12, 132, 1709, 9, 132, 1, 133, 3, 133, 1712, 8, 133, 1, 133, 1, 133, 3, 133, 1716, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1723, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1730, 8, 133, 10, 133, 12, 133, 1733, 9, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1738, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1751, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1758, 8, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1763, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1769, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1776, 8, 133, 3, 133, 1778, 8, 133, 1, 134, 3, 134, 1781, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1791, 8, 134, 10, 134, 12, 134, 1794, 9, 134, 1, 134, 1, 134, 3, 134, 1798, 8, 134, 1, 134, 3, 134, 1801, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1807, 8, 134, 3, 134, 1809, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1815, 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, 5, 135, 1838, 8, 135, 10, 135, 12, 135, 1841, 9, 135, 1, 136, 1, 136, 1, 136, 4, 136, 1846, 8, 136, 11, 136, 12, 136, 1847, 1, 136, 1, 136, 3, 136, 1852, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 4, 136, 1859, 8, 136, 11, 136, 12, 136, 1860, 1, 136, 1, 136, 3, 136, 1865, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1881, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1890, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1914, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1919, 8, 136, 10, 136, 12, 136, 1922, 9, 136, 3, 136, 1924, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1934, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1941, 8, 136, 10, 136, 12, 136, 1944, 9, 136, 1, 137, 1, 137, 1, 137, 3, 137, 1949, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1955, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 1963, 8, 141, 1, 142, 1, 142, 1, 142, 3, 142, 1968, 8, 142, 1, 143, 1, 143, 3, 143, 1972, 8, 143, 1, 144, 1, 144, 1, 144, 4, 144, 1977, 8, 144, 11, 144, 12, 144, 1978, 1, 145, 1, 145, 1, 145, 3, 145, 1984, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 3, 147, 1992, 8, 147, 1, 147, 1, 147, 3, 147, 1996, 8, 147, 1, 148, 3, 148, 1999, 8, 148, 1, 148, 1, 148, 3, 148, 2003, 8, 148, 1, 149, 3, 149, 2006, 8, 149, 1, 149, 1, 149, 3, 149, 2010, 8, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 4, 151, 2017, 8, 151, 11, 151, 12, 151, 2018, 1, 151, 3, 151, 2022, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2031, 8, 153, 10, 153, 12, 153, 2034, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2039, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 5, 158, 2053, 8, 158, 10, 158, 12, 158, 2056, 9, 158, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 2072, 8, 162, 10, 162, 12, 162, 2075, 9, 162, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 2081, 8, 163, 1, 163, 3, 163, 2084, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2089, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2095, 8, 165, 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, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2119, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2128, 8, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2138, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2145, 8, 171, 1, 171, 3, 171, 2148, 8, 171, 1, 172, 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, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 2054, 5, 160, 180, 264, 270, 272, 183, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 0, 47, 2, 0, 30, 30, 234, 234, 3, 0, 16, 16, 38, 38, 68, 68, 4, 0, 13, 13, 26, 26, 65, 65, 167, 167, 2, 0, 12, 12, 25, 25, 2, 0, 252, 252, 263, 263, 2, 0, 166, 166, 344, 344, 2, 0, 4, 4, 118, 118, 1, 0, 108, 112, 3, 0, 195, 195, 225, 225, 299, 299, 11, 0, 10, 10, 146, 146, 152, 152, 191, 192, 204, 204, 226, 226, 268, 269, 335, 335, 347, 347, 349, 349, 364, 365, 2, 0, 369, 369, 371, 371, 4, 0, 228, 229, 236, 236, 250, 250, 300, 300, 2, 0, 184, 184, 293, 293, 2, 0, 41, 41, 264, 264, 3, 0, 21, 21, 96, 96, 178, 178, 3, 0, 41, 41, 94, 94, 264, 264, 3, 0, 53, 53, 90, 90, 170, 170, 3, 0, 66, 66, 107, 107, 126, 126, 2, 0, 11, 11, 123, 123, 2, 0, 93, 93, 272, 272, 3, 0, 243, 243, 270, 270, 354, 354, 4, 0, 253, 253, 265, 265, 279, 279, 323, 323, 3, 0, 23, 23, 57, 57, 156, 156, 5, 0, 24, 24, 139, 140, 145, 145, 151, 151, 302, 302, 2, 0, 221, 221, 326, 326, 3, 0, 57, 57, 136, 136, 156, 156, 2, 0, 8, 8, 30, 30, 2, 0, 45, 45, 73, 73, 4, 0, 249, 249, 299, 299, 352, 352, 356, 356, 2, 0, 186, 186, 340, 340, 2, 0, 178, 178, 182, 182, 2, 0, 377, 377, 397, 398, 4, 0, 32, 32, 395, 395, 399, 399, 402, 402, 2, 0, 397, 398, 400, 400, 1, 0, 397, 398, 1, 0, 406, 407, 2, 0, 406, 406, 409, 409, 4, 0, 32, 32, 395, 395, 397, 399, 401, 402, 3, 0, 298, 298, 376, 377, 397, 398, 2, 0, 249, 249, 352, 352, 2, 0, 178, 178, 235, 235, 10, 0, 78, 78, 80, 80, 114, 114, 171, 171, 227, 227, 261, 261, 289, 289, 292, 292, 329, 329, 372, 372, 16, 0, 14, 14, 27, 28, 36, 36, 58, 58, 78, 81, 85, 86, 114, 114, 130, 130, 171, 172, 175, 175, 227, 227, 261, 261, 289, 289, 292, 292, 329, 329, 372, 372, 6, 0, 178, 178, 196, 196, 235, 235, 278, 278, 351, 351, 395, 395, 28, 0, 59, 59, 77, 77, 114, 114, 171, 171, 177, 177, 184, 184, 188, 188, 202, 203, 209, 209, 211, 211, 218, 218, 225, 225, 258, 258, 261, 261, 275, 275, 279, 279, 289, 289, 292, 292, 310, 310, 316, 317, 320, 320, 323, 323, 329, 329, 338, 339, 347, 348, 353, 353, 358, 358, 372, 372, 5, 0, 177, 241, 243, 316, 318, 339, 341, 350, 352, 372, 3, 0, 4, 35, 37, 171, 173, 176, 2357, 0, 366, 1, 0, 0, 0, 2, 369, 1, 0, 0, 0, 4, 379, 1, 0, 0, 0, 6, 394, 1, 0, 0, 0, 8, 396, 1, 0, 0, 0, 10, 412, 1, 0, 0, 0, 12, 416, 1, 0, 0, 0, 14, 418, 1, 0, 0, 0, 16, 421, 1, 0, 0, 0, 18, 432, 1, 0, 0, 0, 20, 440, 1, 0, 0, 0, 22, 448, 1, 0, 0, 0, 24, 450, 1, 0, 0, 0, 26, 495, 1, 0, 0, 0, 28, 497, 1, 0, 0, 0, 30, 504, 1, 0, 0, 0, 32, 508, 1, 0, 0, 0, 34, 512, 1, 0, 0, 0, 36, 516, 1, 0, 0, 0, 38, 560, 1, 0, 0, 0, 40, 563, 1, 0, 0, 0, 42, 569, 1, 0, 0, 0, 44, 571, 1, 0, 0, 0, 46, 612, 1, 0, 0, 0, 48, 626, 1, 0, 0, 0, 50, 628, 1, 0, 0, 0, 52, 638, 1, 0, 0, 0, 54, 640, 1, 0, 0, 0, 56, 688, 1, 0, 0, 0, 58, 690, 1, 0, 0, 0, 60, 694, 1, 0, 0, 0, 62, 702, 1, 0, 0, 0, 64, 710, 1, 0, 0, 0, 66, 714, 1, 0, 0, 0, 68, 721, 1, 0, 0, 0, 70, 749, 1, 0, 0, 0, 72, 751, 1, 0, 0, 0, 74, 754, 1, 0, 0, 0, 76, 764, 1, 0, 0, 0, 78, 766, 1, 0, 0, 0, 80, 772, 1, 0, 0, 0, 82, 774, 1, 0, 0, 0, 84, 782, 1, 0, 0, 0, 86, 790, 1, 0, 0, 0, 88, 792, 1, 0, 0, 0, 90, 796, 1, 0, 0, 0, 92, 800, 1, 0, 0, 0, 94, 824, 1, 0, 0, 0, 96, 828, 1, 0, 0, 0, 98, 830, 1, 0, 0, 0, 100, 842, 1, 0, 0, 0, 102, 848, 1, 0, 0, 0, 104, 850, 1, 0, 0, 0, 106, 855, 1, 0, 0, 0, 108, 866, 1, 0, 0, 0, 110, 884, 1, 0, 0, 0, 112, 904, 1, 0, 0, 0, 114, 915, 1, 0, 0, 0, 116, 917, 1, 0, 0, 0, 118, 930, 1, 0, 0, 0, 120, 937, 1, 0, 0, 0, 122, 940, 1, 0, 0, 0, 124, 949, 1, 0, 0, 0, 126, 953, 1, 0, 0, 0, 128, 957, 1, 0, 0, 0, 130, 960, 1, 0, 0, 0, 132, 968, 1, 0, 0, 0, 134, 973, 1, 0, 0, 0, 136, 990, 1, 0, 0, 0, 138, 997, 1, 0, 0, 0, 140, 1007, 1, 0, 0, 0, 142, 1016, 1, 0, 0, 0, 144, 1026, 1, 0, 0, 0, 146, 1045, 1, 0, 0, 0, 148, 1047, 1, 0, 0, 0, 150, 1060, 1, 0, 0, 0, 152, 1063, 1, 0, 0, 0, 154, 1072, 1, 0, 0, 0, 156, 1083, 1, 0, 0, 0, 158, 1096, 1, 0, 0, 0, 160, 1131, 1, 0, 0, 0, 162, 1150, 1, 0, 0, 0, 164, 1159, 1, 0, 0, 0, 166, 1168, 1, 0, 0, 0, 168, 1187, 1, 0, 0, 0, 170, 1207, 1, 0, 0, 0, 172, 1209, 1, 0, 0, 0, 174, 1232, 1, 0, 0, 0, 176, 1246, 1, 0, 0, 0, 178, 1248, 1, 0, 0, 0, 180, 1262, 1, 0, 0, 0, 182, 1288, 1, 0, 0, 0, 184, 1333, 1, 0, 0, 0, 186, 1335, 1, 0, 0, 0, 188, 1337, 1, 0, 0, 0, 190, 1343, 1, 0, 0, 0, 192, 1345, 1, 0, 0, 0, 194, 1350, 1, 0, 0, 0, 196, 1355, 1, 0, 0, 0, 198, 1367, 1, 0, 0, 0, 200, 1384, 1, 0, 0, 0, 202, 1386, 1, 0, 0, 0, 204, 1388, 1, 0, 0, 0, 206, 1407, 1, 0, 0, 0, 208, 1409, 1, 0, 0, 0, 210, 1412, 1, 0, 0, 0, 212, 1461, 1, 0, 0, 0, 214, 1463, 1, 0, 0, 0, 216, 1466, 1, 0, 0, 0, 218, 1468, 1, 0, 0, 0, 220, 1475, 1, 0, 0, 0, 222, 1477, 1, 0, 0, 0, 224, 1479, 1, 0, 0, 0, 226, 1482, 1, 0, 0, 0, 228, 1491, 1, 0, 0, 0, 230, 1496, 1, 0, 0, 0, 232, 1510, 1, 0, 0, 0, 234, 1538, 1, 0, 0, 0, 236, 1548, 1, 0, 0, 0, 238, 1556, 1, 0, 0, 0, 240, 1561, 1, 0, 0, 0, 242, 1587, 1, 0, 0, 0, 244, 1589, 1, 0, 0, 0, 246, 1598, 1, 0, 0, 0, 248, 1609, 1, 0, 0, 0, 250, 1621, 1, 0, 0, 0, 252, 1647, 1, 0, 0, 0, 254, 1649, 1, 0, 0, 0, 256, 1667, 1, 0, 0, 0, 258, 1669, 1, 0, 0, 0, 260, 1674, 1, 0, 0, 0, 262, 1677, 1, 0, 0, 0, 264, 1691, 1, 0, 0, 0, 266, 1777, 1, 0, 0, 0, 268, 1808, 1, 0, 0, 0, 270, 1814, 1, 0, 0, 0, 272, 1933, 1, 0, 0, 0, 274, 1948, 1, 0, 0, 0, 276, 1954, 1, 0, 0, 0, 278, 1956, 1, 0, 0, 0, 280, 1958, 1, 0, 0, 0, 282, 1962, 1, 0, 0, 0, 284, 1964, 1, 0, 0, 0, 286, 1969, 1, 0, 0, 0, 288, 1976, 1, 0, 0, 0, 290, 1980, 1, 0, 0, 0, 292, 1985, 1, 0, 0, 0, 294, 1995, 1, 0, 0, 0, 296, 1998, 1, 0, 0, 0, 298, 2005, 1, 0, 0, 0, 300, 2011, 1, 0, 0, 0, 302, 2021, 1, 0, 0, 0, 304, 2023, 1, 0, 0, 0, 306, 2027, 1, 0, 0, 0, 308, 2038, 1, 0, 0, 0, 310, 2040, 1, 0, 0, 0, 312, 2042, 1, 0, 0, 0, 314, 2044, 1, 0, 0, 0, 316, 2049, 1, 0, 0, 0, 318, 2057, 1, 0, 0, 0, 320, 2060, 1, 0, 0, 0, 322, 2064, 1, 0, 0, 0, 324, 2067, 1, 0, 0, 0, 326, 2078, 1, 0, 0, 0, 328, 2088, 1, 0, 0, 0, 330, 2094, 1, 0, 0, 0, 332, 2102, 1, 0, 0, 0, 334, 2118, 1, 0, 0, 0, 336, 2127, 1, 0, 0, 0, 338, 2129, 1, 0, 0, 0, 340, 2131, 1, 0, 0, 0, 342, 2147, 1, 0, 0, 0, 344, 2149, 1, 0, 0, 0, 346, 2152, 1, 0, 0, 0, 348, 2154, 1, 0, 0, 0, 350, 2156, 1, 0, 0, 0, 352, 2158, 1, 0, 0, 0, 354, 2160, 1, 0, 0, 0, 356, 2162, 1, 0, 0, 0, 358, 2164, 1, 0, 0, 0, 360, 2166, 1, 0, 0, 0, 362, 2168, 1, 0, 0, 0, 364, 2170, 1, 0, 0, 0, 366, 367, 3, 2, 1, 0, 367, 368, 5, 0, 0, 1, 368, 1, 1, 0, 0, 0, 369, 370, 3, 4, 2, 0, 370, 371, 5, 0, 0, 1, 371, 3, 1, 0, 0, 0, 372, 374, 3, 6, 3, 0, 373, 375, 5, 389, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 8, 4, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 5, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 395, 3, 10, 5, 0, 383, 395, 3, 12, 6, 0, 384, 395, 3, 14, 7, 0, 385, 395, 3, 16, 8, 0, 386, 395, 3, 22, 11, 0, 387, 395, 3, 26, 13, 0, 388, 395, 3, 28, 14, 0, 389, 395, 3, 30, 15, 0, 390, 395, 3, 32, 16, 0, 391, 395, 3, 34, 17, 0, 392, 395, 3, 36, 18, 0, 393, 395, 3, 38, 19, 0, 394, 382, 1, 0, 0, 0, 394, 383, 1, 0, 0, 0, 394, 384, 1, 0, 0, 0, 394, 385, 1, 0, 0, 0, 394, 386, 1, 0, 0, 0, 394, 387, 1, 0, 0, 0, 394, 388, 1, 0, 0, 0, 394, 389, 1, 0, 0, 0, 394, 390, 1, 0, 0, 0, 394, 391, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 393, 1, 0, 0, 0, 395, 7, 1, 0, 0, 0, 396, 397, 5, 389, 0, 0, 397, 9, 1, 0, 0, 0, 398, 413, 3, 42, 21, 0, 399, 413, 3, 106, 53, 0, 400, 413, 3, 108, 54, 0, 401, 413, 3, 110, 55, 0, 402, 413, 3, 104, 52, 0, 403, 413, 3, 116, 58, 0, 404, 413, 3, 130, 65, 0, 405, 413, 3, 132, 66, 0, 406, 413, 3, 134, 67, 0, 407, 413, 3, 136, 68, 0, 408, 413, 3, 138, 69, 0, 409, 413, 3, 140, 70, 0, 410, 413, 3, 142, 71, 0, 411, 413, 3, 144, 72, 0, 412, 398, 1, 0, 0, 0, 412, 399, 1, 0, 0, 0, 412, 400, 1, 0, 0, 0, 412, 401, 1, 0, 0, 0, 412, 402, 1, 0, 0, 0, 412, 403, 1, 0, 0, 0, 412, 404, 1, 0, 0, 0, 412, 405, 1, 0, 0, 0, 412, 406, 1, 0, 0, 0, 412, 407, 1, 0, 0, 0, 412, 408, 1, 0, 0, 0, 412, 409, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 412, 411, 1, 0, 0, 0, 413, 11, 1, 0, 0, 0, 414, 417, 3, 160, 80, 0, 415, 417, 3, 146, 73, 0, 416, 414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 13, 1, 0, 0, 0, 418, 419, 7, 0, 0, 0, 419, 420, 3, 316, 158, 0, 420, 15, 1, 0, 0, 0, 421, 425, 5, 246, 0, 0, 422, 426, 3, 18, 9, 0, 423, 424, 5, 101, 0, 0, 424, 426, 5, 251, 0, 0, 425, 422, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 430, 1, 0, 0, 0, 427, 431, 3, 12, 6, 0, 428, 431, 3, 148, 74, 0, 429, 431, 3, 158, 79, 0, 430, 427, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 17, 1, 0, 0, 0, 432, 437, 3, 20, 10, 0, 433, 434, 5, 388, 0, 0, 434, 436, 3, 20, 10, 0, 435, 433, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 19, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 440, 441, 7, 1, 0, 0, 441, 21, 1, 0, 0, 0, 442, 444, 5, 161, 0, 0, 443, 445, 5, 12, 0, 0, 444, 443, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 449, 3, 316, 158, 0, 447, 449, 3, 24, 12, 0, 448, 442, 1, 0, 0, 0, 448, 447, 1, 0, 0, 0, 449, 23, 1, 0, 0, 0, 450, 451, 5, 161, 0, 0, 451, 452, 5, 84, 0, 0, 452, 457, 3, 316, 158, 0, 453, 454, 5, 388, 0, 0, 454, 456, 3, 316, 158, 0, 455, 453, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 25, 1, 0, 0, 0, 459, 457, 1, 0, 0, 0, 460, 461, 5, 332, 0, 0, 461, 496, 7, 2, 0, 0, 462, 463, 5, 332, 0, 0, 463, 464, 5, 222, 0, 0, 464, 496, 7, 3, 0, 0, 465, 466, 5, 332, 0, 0, 466, 469, 5, 149, 0, 0, 467, 468, 7, 4, 0, 0, 468, 470, 3, 316, 158, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 1, 0, 0, 0, 471, 473, 3, 268, 134, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 496, 1, 0, 0, 0, 474, 475, 5, 332, 0, 0, 475, 476, 5, 20, 0, 0, 476, 477, 7, 4, 0, 0, 477, 479, 3, 316, 158, 0, 478, 480, 3, 268, 134, 0, 479, 478, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 496, 1, 0, 0, 0, 481, 482, 5, 332, 0, 0, 482, 483, 5, 219, 0, 0, 483, 484, 7, 5, 0, 0, 484, 496, 3, 316, 158, 0, 485, 487, 5, 332, 0, 0, 486, 488, 5, 360, 0, 0, 487, 486, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 496, 5, 51, 0, 0, 490, 492, 5, 332, 0, 0, 491, 493, 5, 253, 0, 0, 492, 491, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 496, 5, 84, 0, 0, 495, 460, 1, 0, 0, 0, 495, 462, 1, 0, 0, 0, 495, 465, 1, 0, 0, 0, 495, 474, 1, 0, 0, 0, 495, 481, 1, 0, 0, 0, 495, 485, 1, 0, 0, 0, 495, 490, 1, 0, 0, 0, 496, 27, 1, 0, 0, 0, 497, 498, 5, 76, 0, 0, 498, 499, 5, 291, 0, 0, 499, 502, 3, 316, 158, 0, 500, 501, 5, 369, 0, 0, 501, 503, 3, 324, 162, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 29, 1, 0, 0, 0, 504, 505, 5, 159, 0, 0, 505, 506, 5, 291, 0, 0, 506, 507, 3, 316, 158, 0, 507, 31, 1, 0, 0, 0, 508, 510, 5, 331, 0, 0, 509, 511, 3, 326, 163, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 33, 1, 0, 0, 0, 512, 514, 5, 321, 0, 0, 513, 515, 3, 328, 164, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 35, 1, 0, 0, 0, 516, 517, 7, 6, 0, 0, 517, 518, 5, 64, 0, 0, 518, 519, 3, 114, 57, 0, 519, 37, 1, 0, 0, 0, 520, 521, 5, 4, 0, 0, 521, 522, 5, 64, 0, 0, 522, 523, 5, 369, 0, 0, 523, 526, 3, 40, 20, 0, 524, 525, 5, 185, 0, 0, 525, 527, 3, 316, 158, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 561, 1, 0, 0, 0, 528, 529, 5, 4, 0, 0, 529, 530, 5, 43, 0, 0, 530, 531, 5, 369, 0, 0, 531, 534, 3, 40, 20, 0, 532, 533, 5, 185, 0, 0, 533, 535, 3, 316, 158, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 538, 1, 0, 0, 0, 536, 537, 5, 119, 0, 0, 537, 539, 3, 316, 158, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 561, 1, 0, 0, 0, 540, 541, 5, 4, 0, 0, 541, 542, 7, 7, 0, 0, 542, 543, 5, 369, 0, 0, 543, 544, 3, 40, 20, 0, 544, 545, 5, 119, 0, 0, 545, 546, 3, 316, 158, 0, 546, 561, 1, 0, 0, 0, 547, 548, 5, 4, 0, 0, 548, 549, 5, 113, 0, 0, 549, 561, 3, 40, 20, 0, 550, 551, 5, 4, 0, 0, 551, 552, 5, 35, 0, 0, 552, 553, 5, 43, 0, 0, 553, 554, 5, 369, 0, 0, 554, 555, 3, 40, 20, 0, 555, 556, 5, 119, 0, 0, 556, 557, 3, 316, 158, 0, 557, 558, 5, 69, 0, 0, 558, 559, 3, 316, 158, 0, 559, 561, 1, 0, 0, 0, 560, 520, 1, 0, 0, 0, 560, 528, 1, 0, 0, 0, 560, 540, 1, 0, 0, 0, 560, 547, 1, 0, 0, 0, 560, 550, 1, 0, 0, 0, 561, 39, 1, 0, 0, 0, 562, 564, 5, 410, 0, 0, 563, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 41, 1, 0, 0, 0, 567, 570, 3, 44, 22, 0, 568, 570, 3, 46, 23, 0, 569, 567, 1, 0, 0, 0, 569, 568, 1, 0, 0, 0, 570, 43, 1, 0, 0, 0, 571, 573, 5, 219, 0, 0, 572, 574, 5, 150, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 5, 344, 0, 0, 576, 578, 3, 320, 160, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 3, 100, 50, 0, 580, 581, 5, 384, 0, 0, 581, 586, 3, 48, 24, 0, 582, 583, 5, 388, 0, 0, 583, 585, 3, 48, 24, 0, 584, 582, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 591, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 590, 5, 388, 0, 0, 590, 592, 3, 82, 41, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 594, 5, 388, 0, 0, 594, 596, 3, 84, 42, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 599, 1, 0, 0, 0, 597, 598, 5, 388, 0, 0, 598, 600, 3, 88, 44, 0, 599, 597, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 5, 385, 0, 0, 602, 604, 3, 72, 36, 0, 603, 602, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 606, 1, 0, 0, 0, 605, 607, 3, 90, 45, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 610, 3, 318, 159, 0, 609, 611, 3, 98, 49, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 45, 1, 0, 0, 0, 612, 613, 5, 219, 0, 0, 613, 615, 5, 344, 0, 0, 614, 616, 3, 320, 160, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 3, 100, 50, 0, 618, 621, 3, 318, 159, 0, 619, 620, 5, 185, 0, 0, 620, 622, 3, 160, 80, 0, 621, 619, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 47, 1, 0, 0, 0, 623, 627, 3, 50, 25, 0, 624, 627, 3, 74, 37, 0, 625, 627, 3, 78, 39, 0, 626, 623, 1, 0, 0, 0, 626, 624, 1, 0, 0, 0, 626, 625, 1, 0, 0, 0, 627, 49, 1, 0, 0, 0, 628, 629, 3, 52, 26, 0, 629, 631, 3, 56, 28, 0, 630, 632, 3, 70, 35, 0, 631, 630, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 634, 1, 0, 0, 0, 633, 635, 3, 72, 36, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 51, 1, 0, 0, 0, 636, 639, 3, 316, 158, 0, 637, 639, 3, 262, 131, 0, 638, 636, 1, 0, 0, 0, 638, 637, 1, 0, 0, 0, 639, 53, 1, 0, 0, 0, 640, 641, 5, 384, 0, 0, 641, 646, 3, 52, 26, 0, 642, 643, 5, 388, 0, 0, 643, 645, 3, 52, 26, 0, 644, 642, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 649, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 649, 650, 5, 385, 0, 0, 650, 55, 1, 0, 0, 0, 651, 689, 7, 8, 0, 0, 652, 654, 7, 9, 0, 0, 653, 655, 3, 58, 29, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 689, 1, 0, 0, 0, 656, 658, 5, 348, 0, 0, 657, 659, 3, 58, 29, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 666, 1, 0, 0, 0, 660, 662, 7, 10, 0, 0, 661, 663, 5, 282, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 5, 347, 0, 0, 665, 667, 5, 176, 0, 0, 666, 660, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 689, 1, 0, 0, 0, 668, 670, 7, 11, 0, 0, 669, 671, 3, 60, 30, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 689, 1, 0, 0, 0, 672, 674, 7, 12, 0, 0, 673, 675, 3, 64, 32, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 689, 1, 0, 0, 0, 676, 678, 5, 77, 0, 0, 677, 679, 3, 66, 33, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 689, 1, 0, 0, 0, 680, 682, 5, 327, 0, 0, 681, 683, 3, 68, 34, 0, 682, 681, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 689, 1, 0, 0, 0, 684, 686, 5, 115, 0, 0, 685, 687, 3, 62, 31, 0, 686, 685, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 689, 1, 0, 0, 0, 688, 651, 1, 0, 0, 0, 688, 652, 1, 0, 0, 0, 688, 656, 1, 0, 0, 0, 688, 668, 1, 0, 0, 0, 688, 672, 1, 0, 0, 0, 688, 676, 1, 0, 0, 0, 688, 680, 1, 0, 0, 0, 688, 684, 1, 0, 0, 0, 689, 57, 1, 0, 0, 0, 690, 691, 5, 384, 0, 0, 691, 692, 3, 348, 174, 0, 692, 693, 5, 385, 0, 0, 693, 59, 1, 0, 0, 0, 694, 695, 5, 384, 0, 0, 695, 698, 3, 348, 174, 0, 696, 697, 5, 388, 0, 0, 697, 699, 3, 348, 174, 0, 698, 696, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 385, 0, 0, 701, 61, 1, 0, 0, 0, 702, 703, 5, 384, 0, 0, 703, 706, 3, 346, 173, 0, 704, 705, 5, 388, 0, 0, 705, 707, 3, 346, 173, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 385, 0, 0, 709, 63, 1, 0, 0, 0, 710, 711, 5, 375, 0, 0, 711, 712, 3, 56, 28, 0, 712, 713, 5, 374, 0, 0, 713, 65, 1, 0, 0, 0, 714, 715, 5, 375, 0, 0, 715, 716, 3, 56, 28, 0, 716, 717, 5, 388, 0, 0, 717, 718, 3, 56, 28, 0, 718, 719, 1, 0, 0, 0, 719, 720, 5, 374, 0, 0, 720, 67, 1, 0, 0, 0, 721, 722, 5, 375, 0, 0, 722, 723, 3, 52, 26, 0, 723, 730, 3, 56, 28, 0, 724, 725, 5, 388, 0, 0, 725, 726, 3, 52, 26, 0, 726, 727, 3, 56, 28, 0, 727, 729, 1, 0, 0, 0, 728, 724, 1, 0, 0, 0, 729, 732, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 733, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 733, 734, 5, 374, 0, 0, 734, 69, 1, 0, 0, 0, 735, 736, 5, 215, 0, 0, 736, 738, 3, 86, 43, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 5, 318, 0, 0, 740, 743, 5, 69, 0, 0, 741, 742, 5, 298, 0, 0, 742, 744, 5, 34, 0, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 750, 1, 0, 0, 0, 745, 747, 5, 298, 0, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 750, 5, 299, 0, 0, 749, 737, 1, 0, 0, 0, 749, 746, 1, 0, 0, 0, 750, 71, 1, 0, 0, 0, 751, 752, 5, 18, 0, 0, 752, 753, 5, 405, 0, 0, 753, 73, 1, 0, 0, 0, 754, 755, 3, 52, 26, 0, 755, 756, 3, 56, 28, 0, 756, 759, 5, 287, 0, 0, 757, 758, 5, 252, 0, 0, 758, 760, 3, 76, 38, 0, 759, 757, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 762, 1, 0, 0, 0, 761, 763, 5, 168, 0, 0, 762, 761, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 75, 1, 0, 0, 0, 764, 765, 5, 405, 0, 0, 765, 77, 1, 0, 0, 0, 766, 767, 3, 52, 26, 0, 767, 768, 5, 185, 0, 0, 768, 770, 3, 80, 40, 0, 769, 771, 3, 72, 36, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 79, 1, 0, 0, 0, 772, 773, 3, 262, 131, 0, 773, 81, 1, 0, 0, 0, 774, 775, 5, 169, 0, 0, 775, 776, 5, 251, 0, 0, 776, 777, 3, 262, 131, 0, 777, 778, 5, 185, 0, 0, 778, 779, 3, 262, 131, 0, 779, 83, 1, 0, 0, 0, 780, 781, 5, 215, 0, 0, 781, 783, 3, 86, 43, 0, 782, 780, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 318, 0, 0, 785, 786, 5, 69, 0, 0, 786, 787, 3, 54, 27, 0, 787, 788, 5, 298, 0, 0, 788, 789, 5, 34, 0, 0, 789, 85, 1, 0, 0, 0, 790, 791, 3, 308, 154, 0, 791, 87, 1, 0, 0, 0, 792, 793, 5, 315, 0, 0, 793, 794, 5, 251, 0, 0, 794, 795, 5, 342, 0, 0, 795, 89, 1, 0, 0, 0, 796, 797, 5, 95, 0, 0, 797, 798, 5, 197, 0, 0, 798, 799, 3, 92, 46, 0, 799, 91, 1, 0, 0, 0, 800, 801, 5, 384, 0, 0, 801, 806, 3, 94, 47, 0, 802, 803, 5, 388, 0, 0, 803, 805, 3, 94, 47, 0, 804, 802, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 809, 810, 5, 385, 0, 0, 810, 93, 1, 0, 0, 0, 811, 825, 3, 282, 141, 0, 812, 813, 3, 308, 154, 0, 813, 814, 5, 384, 0, 0, 814, 819, 3, 96, 48, 0, 815, 816, 5, 388, 0, 0, 816, 818, 3, 96, 48, 0, 817, 815, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 817, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 822, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 822, 823, 5, 385, 0, 0, 823, 825, 1, 0, 0, 0, 824, 811, 1, 0, 0, 0, 824, 812, 1, 0, 0, 0, 825, 95, 1, 0, 0, 0, 826, 829, 3, 282, 141, 0, 827, 829, 3, 342, 171, 0, 828, 826, 1, 0, 0, 0, 828, 827, 1, 0, 0, 0, 829, 97, 1, 0, 0, 0, 830, 831, 5, 280, 0, 0, 831, 840, 3, 100, 50, 0, 832, 836, 5, 384, 0, 0, 833, 835, 3, 102, 51, 0, 834, 833, 1, 0, 0, 0, 835, 838, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 839, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 839, 841, 5, 385, 0, 0, 840, 832, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 99, 1, 0, 0, 0, 842, 843, 3, 316, 158, 0, 843, 101, 1, 0, 0, 0, 844, 845, 7, 13, 0, 0, 845, 849, 7, 14, 0, 0, 846, 847, 7, 15, 0, 0, 847, 849, 7, 16, 0, 0, 848, 844, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 849, 103, 1, 0, 0, 0, 850, 851, 5, 219, 0, 0, 851, 852, 5, 12, 0, 0, 852, 853, 3, 316, 158, 0, 853, 854, 3, 318, 159, 0, 854, 105, 1, 0, 0, 0, 855, 856, 5, 219, 0, 0, 856, 858, 5, 25, 0, 0, 857, 859, 3, 320, 160, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 3, 316, 158, 0, 861, 863, 3, 72, 36, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 3, 318, 159, 0, 865, 107, 1, 0, 0, 0, 866, 868, 5, 219, 0, 0, 867, 869, 5, 150, 0, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 5, 166, 0, 0, 871, 873, 3, 320, 160, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 3, 316, 158, 0, 875, 877, 3, 54, 27, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 1, 0, 0, 0, 878, 880, 3, 72, 36, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882, 5, 185, 0, 0, 882, 883, 3, 160, 80, 0, 883, 109, 1, 0, 0, 0, 884, 888, 5, 219, 0, 0, 885, 889, 5, 150, 0, 0, 886, 887, 5, 150, 0, 0, 887, 889, 5, 341, 0, 0, 888, 885, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 5, 254, 0, 0, 891, 893, 3, 320, 160, 0, 892, 891, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 3, 316, 158, 0, 895, 896, 5, 185, 0, 0, 896, 899, 3, 308, 154, 0, 897, 898, 5, 276, 0, 0, 898, 900, 7, 17, 0, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 902, 1, 0, 0, 0, 901, 903, 3, 112, 56, 0, 902, 901, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 111, 1, 0, 0, 0, 904, 905, 5, 361, 0, 0, 905, 906, 5, 64, 0, 0, 906, 912, 3, 114, 57, 0, 907, 908, 5, 388, 0, 0, 908, 909, 5, 64, 0, 0, 909, 911, 3, 114, 57, 0, 910, 907, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 113, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 5, 405, 0, 0, 916, 115, 1, 0, 0, 0, 917, 918, 5, 180, 0, 0, 918, 920, 5, 344, 0, 0, 919, 921, 3, 322, 161, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 928, 3, 316, 158, 0, 923, 929, 3, 118, 59, 0, 924, 929, 3, 120, 60, 0, 925, 929, 3, 122, 61, 0, 926, 929, 3, 124, 62, 0, 927, 929, 3, 126, 63, 0, 928, 923, 1, 0, 0, 0, 928, 924, 1, 0, 0, 0, 928, 925, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 928, 927, 1, 0, 0, 0, 929, 117, 1, 0, 0, 0, 930, 932, 5, 119, 0, 0, 931, 933, 3, 316, 158, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 350, 0, 0, 935, 936, 3, 316, 158, 0, 936, 119, 1, 0, 0, 0, 937, 938, 5, 331, 0, 0, 938, 939, 3, 324, 162, 0, 939, 121, 1, 0, 0, 0, 940, 941, 5, 4, 0, 0, 941, 942, 5, 215, 0, 0, 942, 943, 3, 86, 43, 0, 943, 944, 5, 318, 0, 0, 944, 945, 5, 69, 0, 0, 945, 947, 3, 54, 27, 0, 946, 948, 3, 128, 64, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 123, 1, 0, 0, 0, 949, 950, 5, 237, 0, 0, 950, 951, 5, 215, 0, 0, 951, 952, 3, 86, 43, 0, 952, 125, 1, 0, 0, 0, 953, 954, 5, 4, 0, 0, 954, 955, 5, 355, 0, 0, 955, 956, 3, 54, 27, 0, 956, 127, 1, 0, 0, 0, 957, 958, 5, 298, 0, 0, 958, 959, 5, 34, 0, 0, 959, 129, 1, 0, 0, 0, 960, 961, 5, 180, 0, 0, 961, 962, 5, 166, 0, 0, 962, 966, 3, 316, 158, 0, 963, 967, 3, 118, 59, 0, 964, 965, 5, 185, 0, 0, 965, 967, 3, 160, 80, 0, 966, 963, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 967, 131, 1, 0, 0, 0, 968, 969, 5, 180, 0, 0, 969, 970, 5, 25, 0, 0, 970, 971, 3, 316, 158, 0, 971, 972, 3, 120, 60, 0, 972, 133, 1, 0, 0, 0, 973, 977, 5, 180, 0, 0, 974, 978, 5, 150, 0, 0, 975, 976, 5, 150, 0, 0, 976, 978, 5, 341, 0, 0, 977, 974, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 981, 5, 254, 0, 0, 980, 982, 3, 322, 161, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 3, 316, 158, 0, 984, 985, 5, 185, 0, 0, 985, 988, 3, 308, 154, 0, 986, 987, 5, 276, 0, 0, 987, 989, 7, 17, 0, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 135, 1, 0, 0, 0, 990, 991, 5, 237, 0, 0, 991, 993, 5, 12, 0, 0, 992, 994, 3, 322, 161, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 3, 316, 158, 0, 996, 137, 1, 0, 0, 0, 997, 999, 5, 237, 0, 0, 998, 1000, 5, 150, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 5, 344, 0, 0, 1002, 1004, 3, 322, 161, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 3, 316, 158, 0, 1006, 139, 1, 0, 0, 0, 1007, 1008, 5, 237, 0, 0, 1008, 1010, 5, 25, 0, 0, 1009, 1011, 3, 322, 161, 0, 1010, 1009, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1014, 3, 316, 158, 0, 1013, 1015, 7, 18, 0, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 141, 1, 0, 0, 0, 1016, 1018, 5, 237, 0, 0, 1017, 1019, 5, 150, 0, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1022, 5, 166, 0, 0, 1021, 1023, 3, 322, 161, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 3, 316, 158, 0, 1025, 143, 1, 0, 0, 0, 1026, 1030, 5, 237, 0, 0, 1027, 1031, 5, 150, 0, 0, 1028, 1029, 5, 150, 0, 0, 1029, 1031, 5, 341, 0, 0, 1030, 1027, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1034, 5, 254, 0, 0, 1033, 1035, 3, 322, 161, 0, 1034, 1033, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 3, 316, 158, 0, 1037, 145, 1, 0, 0, 0, 1038, 1040, 5, 244, 0, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1046, 3, 148, 74, 0, 1042, 1046, 3, 156, 78, 0, 1043, 1044, 5, 244, 0, 0, 1044, 1046, 3, 158, 79, 0, 1045, 1039, 1, 0, 0, 0, 1045, 1042, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1046, 147, 1, 0, 0, 0, 1047, 1048, 5, 267, 0, 0, 1048, 1049, 7, 19, 0, 0, 1049, 1058, 3, 316, 158, 0, 1050, 1052, 3, 150, 75, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1054, 1, 0, 0, 0, 1053, 1055, 3, 54, 27, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1059, 3, 160, 80, 0, 1057, 1059, 3, 152, 76, 0, 1058, 1051, 1, 0, 0, 0, 1058, 1057, 1, 0, 0, 0, 1059, 149, 1, 0, 0, 0, 1060, 1061, 5, 311, 0, 0, 1061, 1062, 3, 324, 162, 0, 1062, 151, 1, 0, 0, 0, 1063, 1064, 5, 363, 0, 0, 1064, 1069, 3, 154, 77, 0, 1065, 1066, 5, 388, 0, 0, 1066, 1068, 3, 154, 77, 0, 1067, 1065, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 153, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1072, 1073, 5, 384, 0, 0, 1073, 1078, 3, 342, 171, 0, 1074, 1075, 5, 388, 0, 0, 1075, 1077, 3, 342, 171, 0, 1076, 1074, 1, 0, 0, 0, 1077, 1080, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1081, 1082, 5, 385, 0, 0, 1082, 155, 1, 0, 0, 0, 1083, 1084, 5, 189, 0, 0, 1084, 1085, 5, 144, 0, 0, 1085, 1086, 5, 331, 0, 0, 1086, 1090, 5, 389, 0, 0, 1087, 1088, 3, 148, 74, 0, 1088, 1089, 5, 389, 0, 0, 1089, 1091, 1, 0, 0, 0, 1090, 1087, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 5, 240, 0, 0, 1095, 157, 1, 0, 0, 0, 1096, 1097, 5, 144, 0, 0, 1097, 1098, 5, 331, 0, 0, 1098, 1102, 5, 189, 0, 0, 1099, 1100, 3, 148, 74, 0, 1100, 1101, 5, 389, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1099, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 5, 240, 0, 0, 1107, 159, 1, 0, 0, 0, 1108, 1109, 6, 80, -1, 0, 1109, 1132, 3, 162, 81, 0, 1110, 1111, 3, 164, 82, 0, 1111, 1112, 3, 160, 80, 5, 1112, 1132, 1, 0, 0, 0, 1113, 1114, 5, 384, 0, 0, 1114, 1115, 3, 160, 80, 0, 1115, 1116, 5, 385, 0, 0, 1116, 1132, 1, 0, 0, 0, 1117, 1119, 3, 172, 86, 0, 1118, 1120, 3, 234, 117, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1123, 3, 238, 119, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1132, 1, 0, 0, 0, 1124, 1126, 3, 170, 85, 0, 1125, 1127, 3, 234, 117, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1130, 3, 238, 119, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1108, 1, 0, 0, 0, 1131, 1110, 1, 0, 0, 0, 1131, 1113, 1, 0, 0, 0, 1131, 1117, 1, 0, 0, 0, 1131, 1124, 1, 0, 0, 0, 1132, 1147, 1, 0, 0, 0, 1133, 1134, 10, 3, 0, 0, 1134, 1136, 7, 20, 0, 0, 1135, 1137, 5, 178, 0, 0, 1136, 1135, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1140, 3, 160, 80, 0, 1139, 1141, 3, 234, 117, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1143, 1, 0, 0, 0, 1142, 1144, 3, 238, 119, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 1, 0, 0, 0, 1145, 1133, 1, 0, 0, 0, 1146, 1149, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 161, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1150, 1151, 5, 363, 0, 0, 1151, 1156, 3, 262, 131, 0, 1152, 1153, 5, 388, 0, 0, 1153, 1155, 3, 262, 131, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 163, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1160, 5, 369, 0, 0, 1160, 1165, 3, 166, 83, 0, 1161, 1162, 5, 388, 0, 0, 1162, 1164, 3, 166, 83, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 165, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1180, 3, 168, 84, 0, 1169, 1170, 5, 384, 0, 0, 1170, 1175, 3, 52, 26, 0, 1171, 1172, 5, 388, 0, 0, 1172, 1174, 3, 52, 26, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1178, 1179, 5, 385, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1169, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 5, 185, 0, 0, 1183, 1184, 5, 384, 0, 0, 1184, 1185, 3, 160, 80, 0, 1185, 1186, 5, 385, 0, 0, 1186, 167, 1, 0, 0, 0, 1187, 1188, 3, 308, 154, 0, 1188, 169, 1, 0, 0, 0, 1189, 1190, 3, 172, 86, 0, 1190, 1192, 3, 178, 89, 0, 1191, 1193, 3, 208, 104, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 3, 210, 105, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1199, 3, 224, 112, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1202, 3, 226, 113, 0, 1201, 1200, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1208, 1, 0, 0, 0, 1203, 1204, 3, 172, 86, 0, 1204, 1205, 3, 178, 89, 0, 1205, 1206, 3, 232, 116, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1189, 1, 0, 0, 0, 1207, 1203, 1, 0, 0, 0, 1208, 171, 1, 0, 0, 0, 1209, 1211, 5, 330, 0, 0, 1210, 1212, 3, 352, 176, 0, 1211, 1210, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1222, 1, 0, 0, 0, 1213, 1223, 5, 395, 0, 0, 1214, 1219, 3, 174, 87, 0, 1215, 1216, 5, 388, 0, 0, 1216, 1218, 3, 174, 87, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1213, 1, 0, 0, 0, 1222, 1214, 1, 0, 0, 0, 1223, 173, 1, 0, 0, 0, 1224, 1233, 3, 176, 88, 0, 1225, 1230, 3, 262, 131, 0, 1226, 1228, 5, 185, 0, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1231, 3, 262, 131, 0, 1230, 1227, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1233, 1, 0, 0, 0, 1232, 1224, 1, 0, 0, 0, 1232, 1225, 1, 0, 0, 0, 1233, 175, 1, 0, 0, 0, 1234, 1235, 3, 272, 136, 0, 1235, 1236, 5, 309, 0, 0, 1236, 1237, 3, 230, 115, 0, 1237, 1238, 5, 185, 0, 0, 1238, 1239, 3, 308, 154, 0, 1239, 1247, 1, 0, 0, 0, 1240, 1241, 3, 272, 136, 0, 1241, 1242, 5, 309, 0, 0, 1242, 1243, 3, 300, 150, 0, 1243, 1244, 5, 185, 0, 0, 1244, 1245, 3, 308, 154, 0, 1245, 1247, 1, 0, 0, 0, 1246, 1234, 1, 0, 0, 0, 1246, 1240, 1, 0, 0, 0, 1247, 177, 1, 0, 0, 0, 1248, 1249, 5, 252, 0, 0, 1249, 1250, 3, 180, 90, 0, 1250, 179, 1, 0, 0, 0, 1251, 1252, 6, 90, -1, 0, 1252, 1257, 3, 182, 91, 0, 1253, 1254, 5, 388, 0, 0, 1254, 1256, 3, 182, 91, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1263, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 3, 192, 96, 0, 1261, 1263, 3, 194, 97, 0, 1262, 1251, 1, 0, 0, 0, 1262, 1260, 1, 0, 0, 0, 1262, 1261, 1, 0, 0, 0, 1263, 1285, 1, 0, 0, 0, 1264, 1265, 10, 3, 0, 0, 1265, 1266, 5, 220, 0, 0, 1266, 1267, 5, 274, 0, 0, 1267, 1284, 3, 180, 90, 4, 1268, 1270, 10, 4, 0, 0, 1269, 1271, 5, 294, 0, 0, 1270, 1269, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1273, 1, 0, 0, 0, 1272, 1274, 7, 21, 0, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1277, 5, 308, 0, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 5, 274, 0, 0, 1279, 1281, 3, 180, 90, 0, 1280, 1282, 3, 206, 103, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1264, 1, 0, 0, 0, 1283, 1268, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 181, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1290, 3, 184, 92, 0, 1289, 1291, 3, 298, 149, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 183, 1, 0, 0, 0, 1292, 1294, 5, 344, 0, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 3, 186, 93, 0, 1296, 1298, 3, 188, 94, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1303, 1, 0, 0, 0, 1299, 1301, 5, 185, 0, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1304, 3, 280, 140, 0, 1303, 1300, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1334, 1, 0, 0, 0, 1305, 1306, 5, 277, 0, 0, 1306, 1307, 5, 344, 0, 0, 1307, 1308, 5, 384, 0, 0, 1308, 1309, 3, 274, 137, 0, 1309, 1310, 5, 384, 0, 0, 1310, 1315, 3, 276, 138, 0, 1311, 1312, 5, 388, 0, 0, 1312, 1314, 3, 276, 138, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1317, 1, 0, 0, 0, 1315, 1313, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1315, 1, 0, 0, 0, 1318, 1319, 5, 385, 0, 0, 1319, 1320, 5, 385, 0, 0, 1320, 1334, 1, 0, 0, 0, 1321, 1323, 5, 277, 0, 0, 1322, 1321, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 5, 384, 0, 0, 1325, 1326, 3, 160, 80, 0, 1326, 1327, 5, 385, 0, 0, 1327, 1334, 1, 0, 0, 0, 1328, 1329, 5, 357, 0, 0, 1329, 1330, 5, 384, 0, 0, 1330, 1331, 3, 262, 131, 0, 1331, 1332, 5, 385, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1293, 1, 0, 0, 0, 1333, 1305, 1, 0, 0, 0, 1333, 1322, 1, 0, 0, 0, 1333, 1328, 1, 0, 0, 0, 1334, 185, 1, 0, 0, 0, 1335, 1336, 3, 316, 158, 0, 1336, 187, 1, 0, 0, 0, 1337, 1338, 5, 251, 0, 0, 1338, 1339, 5, 342, 0, 0, 1339, 1340, 5, 185, 0, 0, 1340, 1341, 5, 301, 0, 0, 1341, 1342, 3, 190, 95, 0, 1342, 189, 1, 0, 0, 0, 1343, 1344, 3, 262, 131, 0, 1344, 191, 1, 0, 0, 0, 1345, 1346, 5, 384, 0, 0, 1346, 1347, 3, 152, 76, 0, 1347, 1348, 5, 385, 0, 0, 1348, 1349, 3, 298, 149, 0, 1349, 193, 1, 0, 0, 0, 1350, 1351, 5, 344, 0, 0, 1351, 1352, 5, 384, 0, 0, 1352, 1353, 3, 196, 98, 0, 1353, 1354, 5, 385, 0, 0, 1354, 195, 1, 0, 0, 0, 1355, 1356, 3, 198, 99, 0, 1356, 1357, 5, 384, 0, 0, 1357, 1362, 3, 200, 100, 0, 1358, 1359, 5, 388, 0, 0, 1359, 1361, 3, 200, 100, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1365, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1366, 5, 385, 0, 0, 1366, 197, 1, 0, 0, 0, 1367, 1368, 7, 22, 0, 0, 1368, 199, 1, 0, 0, 0, 1369, 1370, 5, 344, 0, 0, 1370, 1385, 3, 222, 111, 0, 1371, 1385, 3, 204, 102, 0, 1372, 1385, 3, 284, 142, 0, 1373, 1374, 5, 24, 0, 0, 1374, 1375, 5, 404, 0, 0, 1375, 1376, 5, 344, 0, 0, 1376, 1385, 3, 222, 111, 0, 1377, 1378, 5, 151, 0, 0, 1378, 1379, 5, 404, 0, 0, 1379, 1385, 3, 204, 102, 0, 1380, 1381, 3, 202, 101, 0, 1381, 1382, 5, 404, 0, 0, 1382, 1383, 3, 284, 142, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1369, 1, 0, 0, 0, 1384, 1371, 1, 0, 0, 0, 1384, 1372, 1, 0, 0, 0, 1384, 1373, 1, 0, 0, 0, 1384, 1377, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1385, 201, 1, 0, 0, 0, 1386, 1387, 7, 23, 0, 0, 1387, 203, 1, 0, 0, 0, 1388, 1389, 5, 31, 0, 0, 1389, 1390, 5, 384, 0, 0, 1390, 1391, 3, 316, 158, 0, 1391, 1392, 5, 385, 0, 0, 1392, 205, 1, 0, 0, 0, 1393, 1394, 5, 303, 0, 0, 1394, 1408, 3, 264, 132, 0, 1395, 1396, 5, 361, 0, 0, 1396, 1397, 5, 384, 0, 0, 1397, 1402, 3, 316, 158, 0, 1398, 1399, 5, 388, 0, 0, 1399, 1401, 3, 316, 158, 0, 1400, 1398, 1, 0, 0, 0, 1401, 1404, 1, 0, 0, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1405, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1405, 1406, 5, 385, 0, 0, 1406, 1408, 1, 0, 0, 0, 1407, 1393, 1, 0, 0, 0, 1407, 1395, 1, 0, 0, 0, 1408, 207, 1, 0, 0, 0, 1409, 1410, 5, 367, 0, 0, 1410, 1411, 3, 264, 132, 0, 1411, 209, 1, 0, 0, 0, 1412, 1413, 5, 257, 0, 0, 1413, 1414, 5, 197, 0, 0, 1414, 1419, 3, 212, 106, 0, 1415, 1416, 5, 388, 0, 0, 1416, 1418, 3, 212, 106, 0, 1417, 1415, 1, 0, 0, 0, 1418, 1421, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 211, 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1462, 3, 262, 131, 0, 1423, 1462, 3, 218, 109, 0, 1424, 1425, 5, 384, 0, 0, 1425, 1462, 5, 385, 0, 0, 1426, 1427, 5, 384, 0, 0, 1427, 1432, 3, 262, 131, 0, 1428, 1429, 5, 388, 0, 0, 1429, 1431, 3, 262, 131, 0, 1430, 1428, 1, 0, 0, 0, 1431, 1434, 1, 0, 0, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1435, 1, 0, 0, 0, 1434, 1432, 1, 0, 0, 0, 1435, 1436, 5, 385, 0, 0, 1436, 1462, 1, 0, 0, 0, 1437, 1438, 3, 216, 108, 0, 1438, 1439, 5, 384, 0, 0, 1439, 1444, 3, 262, 131, 0, 1440, 1441, 5, 388, 0, 0, 1441, 1443, 3, 262, 131, 0, 1442, 1440, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1447, 1, 0, 0, 0, 1446, 1444, 1, 0, 0, 0, 1447, 1448, 5, 385, 0, 0, 1448, 1462, 1, 0, 0, 0, 1449, 1450, 3, 214, 107, 0, 1450, 1451, 5, 384, 0, 0, 1451, 1456, 3, 212, 106, 0, 1452, 1453, 5, 388, 0, 0, 1453, 1455, 3, 212, 106, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1458, 1, 0, 0, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1459, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1460, 5, 385, 0, 0, 1460, 1462, 1, 0, 0, 0, 1461, 1422, 1, 0, 0, 0, 1461, 1423, 1, 0, 0, 0, 1461, 1424, 1, 0, 0, 0, 1461, 1426, 1, 0, 0, 0, 1461, 1437, 1, 0, 0, 0, 1461, 1449, 1, 0, 0, 0, 1462, 213, 1, 0, 0, 0, 1463, 1464, 5, 258, 0, 0, 1464, 1465, 5, 137, 0, 0, 1465, 215, 1, 0, 0, 0, 1466, 1467, 7, 24, 0, 0, 1467, 217, 1, 0, 0, 0, 1468, 1469, 3, 220, 110, 0, 1469, 1470, 5, 384, 0, 0, 1470, 1471, 3, 222, 111, 0, 1471, 1472, 5, 388, 0, 0, 1472, 1473, 3, 284, 142, 0, 1473, 1474, 5, 385, 0, 0, 1474, 219, 1, 0, 0, 0, 1475, 1476, 7, 25, 0, 0, 1476, 221, 1, 0, 0, 0, 1477, 1478, 3, 316, 158, 0, 1478, 223, 1, 0, 0, 0, 1479, 1480, 5, 260, 0, 0, 1480, 1481, 3, 264, 132, 0, 1481, 225, 1, 0, 0, 0, 1482, 1483, 5, 368, 0, 0, 1483, 1488, 3, 228, 114, 0, 1484, 1485, 5, 388, 0, 0, 1485, 1487, 3, 228, 114, 0, 1486, 1484, 1, 0, 0, 0, 1487, 1490, 1, 0, 0, 0, 1488, 1486, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 227, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1492, 3, 300, 150, 0, 1492, 1493, 5, 185, 0, 0, 1493, 1494, 3, 230, 115, 0, 1494, 229, 1, 0, 0, 0, 1495, 1497, 3, 300, 150, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 5, 384, 0, 0, 1499, 1501, 3, 240, 120, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1503, 1, 0, 0, 0, 1502, 1504, 3, 234, 117, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1506, 1, 0, 0, 0, 1505, 1507, 3, 256, 128, 0, 1506, 1505, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 5, 385, 0, 0, 1509, 231, 1, 0, 0, 0, 1510, 1511, 5, 284, 0, 0, 1511, 1513, 5, 384, 0, 0, 1512, 1514, 3, 240, 120, 0, 1513, 1512, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1516, 1, 0, 0, 0, 1515, 1517, 3, 234, 117, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1519, 1, 0, 0, 0, 1518, 1520, 3, 244, 122, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 1, 0, 0, 0, 1521, 1523, 3, 250, 125, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1526, 3, 252, 126, 0, 1525, 1524, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1528, 1, 0, 0, 0, 1527, 1529, 3, 246, 123, 0, 1528, 1527, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1531, 3, 254, 127, 0, 1531, 1536, 5, 385, 0, 0, 1532, 1534, 5, 185, 0, 0, 1533, 1532, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1537, 3, 308, 154, 0, 1536, 1533, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 233, 1, 0, 0, 0, 1538, 1539, 5, 306, 0, 0, 1539, 1540, 5, 197, 0, 0, 1540, 1545, 3, 236, 118, 0, 1541, 1542, 5, 388, 0, 0, 1542, 1544, 3, 236, 118, 0, 1543, 1541, 1, 0, 0, 0, 1544, 1547, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 235, 1, 0, 0, 0, 1547, 1545, 1, 0, 0, 0, 1548, 1550, 3, 262, 131, 0, 1549, 1551, 7, 26, 0, 0, 1550, 1549, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1553, 5, 87, 0, 0, 1553, 1555, 7, 27, 0, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 237, 1, 0, 0, 0, 1556, 1559, 5, 281, 0, 0, 1557, 1560, 5, 178, 0, 0, 1558, 1560, 3, 262, 131, 0, 1559, 1557, 1, 0, 0, 0, 1559, 1558, 1, 0, 0, 0, 1560, 239, 1, 0, 0, 0, 1561, 1562, 5, 311, 0, 0, 1562, 1563, 5, 197, 0, 0, 1563, 1568, 3, 262, 131, 0, 1564, 1565, 5, 388, 0, 0, 1565, 1567, 3, 262, 131, 0, 1566, 1564, 1, 0, 0, 0, 1567, 1570, 1, 0, 0, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 241, 1, 0, 0, 0, 1570, 1568, 1, 0, 0, 0, 1571, 1588, 5, 395, 0, 0, 1572, 1588, 5, 398, 0, 0, 1573, 1588, 5, 403, 0, 0, 1574, 1575, 5, 386, 0, 0, 1575, 1576, 5, 406, 0, 0, 1576, 1577, 5, 388, 0, 0, 1577, 1578, 5, 406, 0, 0, 1578, 1588, 5, 387, 0, 0, 1579, 1580, 5, 386, 0, 0, 1580, 1581, 5, 406, 0, 0, 1581, 1582, 5, 388, 0, 0, 1582, 1588, 5, 387, 0, 0, 1583, 1584, 5, 386, 0, 0, 1584, 1585, 5, 388, 0, 0, 1585, 1586, 5, 406, 0, 0, 1586, 1588, 5, 387, 0, 0, 1587, 1571, 1, 0, 0, 0, 1587, 1572, 1, 0, 0, 0, 1587, 1573, 1, 0, 0, 0, 1587, 1574, 1, 0, 0, 0, 1587, 1579, 1, 0, 0, 0, 1587, 1583, 1, 0, 0, 0, 1588, 243, 1, 0, 0, 0, 1589, 1590, 5, 285, 0, 0, 1590, 1595, 3, 174, 87, 0, 1591, 1592, 5, 388, 0, 0, 1592, 1594, 3, 174, 87, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 245, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1599, 5, 312, 0, 0, 1599, 1601, 5, 384, 0, 0, 1600, 1602, 3, 248, 124, 0, 1601, 1600, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1601, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1607, 5, 385, 0, 0, 1606, 1608, 3, 260, 130, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 247, 1, 0, 0, 0, 1609, 1611, 3, 310, 155, 0, 1610, 1612, 3, 242, 121, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 249, 1, 0, 0, 0, 1613, 1614, 5, 178, 0, 0, 1614, 1615, 5, 328, 0, 0, 1615, 1616, 5, 313, 0, 0, 1616, 1622, 5, 283, 0, 0, 1617, 1618, 5, 304, 0, 0, 1618, 1619, 5, 327, 0, 0, 1619, 1620, 5, 313, 0, 0, 1620, 1622, 5, 283, 0, 0, 1621, 1613, 1, 0, 0, 0, 1621, 1617, 1, 0, 0, 0, 1622, 251, 1, 0, 0, 0, 1623, 1624, 5, 6, 0, 0, 1624, 1625, 5, 283, 0, 0, 1625, 1626, 5, 334, 0, 0, 1626, 1627, 5, 98, 0, 0, 1627, 1628, 5, 73, 0, 0, 1628, 1648, 5, 327, 0, 0, 1629, 1630, 5, 6, 0, 0, 1630, 1631, 5, 283, 0, 0, 1631, 1632, 5, 334, 0, 0, 1632, 1633, 5, 350, 0, 0, 1633, 1634, 5, 295, 0, 0, 1634, 1648, 5, 327, 0, 0, 1635, 1636, 5, 6, 0, 0, 1636, 1637, 5, 283, 0, 0, 1637, 1638, 5, 334, 0, 0, 1638, 1639, 5, 350, 0, 0, 1639, 1640, 5, 73, 0, 0, 1640, 1648, 3, 310, 155, 0, 1641, 1642, 5, 6, 0, 0, 1642, 1643, 5, 283, 0, 0, 1643, 1644, 5, 334, 0, 0, 1644, 1645, 5, 350, 0, 0, 1645, 1646, 5, 45, 0, 0, 1646, 1648, 3, 310, 155, 0, 1647, 1623, 1, 0, 0, 0, 1647, 1629, 1, 0, 0, 0, 1647, 1635, 1, 0, 0, 0, 1647, 1641, 1, 0, 0, 0, 1648, 253, 1, 0, 0, 0, 1649, 1650, 5, 232, 0, 0, 1650, 1655, 3, 174, 87, 0, 1651, 1652, 5, 388, 0, 0, 1652, 1654, 3, 174, 87, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 255, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1658, 1659, 5, 319, 0, 0, 1659, 1660, 5, 190, 0, 0, 1660, 1661, 3, 284, 142, 0, 1661, 1662, 3, 258, 129, 0, 1662, 1668, 1, 0, 0, 0, 1663, 1664, 5, 328, 0, 0, 1664, 1665, 5, 190, 0, 0, 1665, 1666, 5, 406, 0, 0, 1666, 1668, 3, 258, 129, 0, 1667, 1658, 1, 0, 0, 0, 1667, 1663, 1, 0, 0, 0, 1668, 257, 1, 0, 0, 0, 1669, 1670, 5, 102, 0, 0, 1670, 1671, 5, 181, 0, 0, 1671, 1672, 5, 222, 0, 0, 1672, 1673, 5, 327, 0, 0, 1673, 259, 1, 0, 0, 0, 1674, 1675, 5, 370, 0, 0, 1675, 1676, 3, 284, 142, 0, 1676, 261, 1, 0, 0, 0, 1677, 1678, 3, 264, 132, 0, 1678, 263, 1, 0, 0, 0, 1679, 1680, 6, 132, -1, 0, 1680, 1681, 5, 298, 0, 0, 1681, 1692, 3, 264, 132, 6, 1682, 1683, 5, 245, 0, 0, 1683, 1684, 5, 384, 0, 0, 1684, 1685, 3, 160, 80, 0, 1685, 1686, 5, 385, 0, 0, 1686, 1692, 1, 0, 0, 0, 1687, 1689, 3, 270, 135, 0, 1688, 1690, 3, 266, 133, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 1, 0, 0, 0, 1691, 1679, 1, 0, 0, 0, 1691, 1682, 1, 0, 0, 0, 1691, 1687, 1, 0, 0, 0, 1692, 1707, 1, 0, 0, 0, 1693, 1694, 10, 3, 0, 0, 1694, 1695, 5, 181, 0, 0, 1695, 1706, 3, 264, 132, 4, 1696, 1697, 10, 2, 0, 0, 1697, 1698, 5, 305, 0, 0, 1698, 1706, 3, 264, 132, 3, 1699, 1700, 10, 1, 0, 0, 1700, 1702, 5, 273, 0, 0, 1701, 1703, 5, 298, 0, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1706, 7, 28, 0, 0, 1705, 1693, 1, 0, 0, 0, 1705, 1696, 1, 0, 0, 0, 1705, 1699, 1, 0, 0, 0, 1706, 1709, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 265, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1710, 1712, 5, 298, 0, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 5, 190, 0, 0, 1714, 1716, 7, 29, 0, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 3, 270, 135, 0, 1718, 1719, 5, 181, 0, 0, 1719, 1720, 3, 270, 135, 0, 1720, 1778, 1, 0, 0, 0, 1721, 1723, 5, 298, 0, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 5, 263, 0, 0, 1725, 1726, 5, 384, 0, 0, 1726, 1731, 3, 262, 131, 0, 1727, 1728, 5, 388, 0, 0, 1728, 1730, 3, 262, 131, 0, 1729, 1727, 1, 0, 0, 0, 1730, 1733, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1734, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1735, 5, 385, 0, 0, 1735, 1778, 1, 0, 0, 0, 1736, 1738, 5, 298, 0, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 5, 263, 0, 0, 1740, 1741, 5, 384, 0, 0, 1741, 1742, 3, 160, 80, 0, 1742, 1743, 5, 385, 0, 0, 1743, 1778, 1, 0, 0, 0, 1744, 1745, 5, 245, 0, 0, 1745, 1746, 5, 384, 0, 0, 1746, 1747, 3, 160, 80, 0, 1747, 1748, 5, 385, 0, 0, 1748, 1778, 1, 0, 0, 0, 1749, 1751, 5, 298, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 5, 324, 0, 0, 1753, 1778, 3, 270, 135, 0, 1754, 1778, 3, 268, 134, 0, 1755, 1757, 5, 273, 0, 0, 1756, 1758, 5, 298, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1778, 7, 28, 0, 0, 1760, 1762, 5, 273, 0, 0, 1761, 1763, 5, 298, 0, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 5, 235, 0, 0, 1765, 1766, 5, 252, 0, 0, 1766, 1778, 3, 270, 135, 0, 1767, 1769, 5, 298, 0, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 5, 333, 0, 0, 1771, 1772, 5, 350, 0, 0, 1772, 1775, 3, 270, 135, 0, 1773, 1774, 5, 242, 0, 0, 1774, 1776, 3, 346, 173, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1778, 1, 0, 0, 0, 1777, 1711, 1, 0, 0, 0, 1777, 1722, 1, 0, 0, 0, 1777, 1737, 1, 0, 0, 0, 1777, 1744, 1, 0, 0, 0, 1777, 1750, 1, 0, 0, 0, 1777, 1754, 1, 0, 0, 0, 1777, 1755, 1, 0, 0, 0, 1777, 1760, 1, 0, 0, 0, 1777, 1768, 1, 0, 0, 0, 1778, 267, 1, 0, 0, 0, 1779, 1781, 5, 298, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 280, 0, 0, 1783, 1797, 7, 30, 0, 0, 1784, 1785, 5, 384, 0, 0, 1785, 1798, 5, 385, 0, 0, 1786, 1787, 5, 384, 0, 0, 1787, 1792, 3, 262, 131, 0, 1788, 1789, 5, 388, 0, 0, 1789, 1791, 3, 262, 131, 0, 1790, 1788, 1, 0, 0, 0, 1791, 1794, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1796, 5, 385, 0, 0, 1796, 1798, 1, 0, 0, 0, 1797, 1784, 1, 0, 0, 0, 1797, 1786, 1, 0, 0, 0, 1798, 1809, 1, 0, 0, 0, 1799, 1801, 5, 298, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 5, 280, 0, 0, 1803, 1806, 3, 270, 135, 0, 1804, 1805, 5, 242, 0, 0, 1805, 1807, 3, 346, 173, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1780, 1, 0, 0, 0, 1808, 1800, 1, 0, 0, 0, 1809, 269, 1, 0, 0, 0, 1810, 1811, 6, 135, -1, 0, 1811, 1815, 3, 272, 136, 0, 1812, 1813, 7, 31, 0, 0, 1813, 1815, 3, 270, 135, 8, 1814, 1810, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1839, 1, 0, 0, 0, 1816, 1817, 10, 7, 0, 0, 1817, 1818, 7, 32, 0, 0, 1818, 1838, 3, 270, 135, 8, 1819, 1820, 10, 6, 0, 0, 1820, 1821, 7, 33, 0, 0, 1821, 1838, 3, 270, 135, 7, 1822, 1823, 10, 5, 0, 0, 1823, 1824, 5, 379, 0, 0, 1824, 1838, 3, 270, 135, 6, 1825, 1826, 10, 4, 0, 0, 1826, 1827, 5, 380, 0, 0, 1827, 1838, 3, 270, 135, 5, 1828, 1829, 10, 3, 0, 0, 1829, 1830, 5, 378, 0, 0, 1830, 1838, 3, 270, 135, 4, 1831, 1832, 10, 2, 0, 0, 1832, 1833, 3, 334, 167, 0, 1833, 1834, 3, 270, 135, 3, 1834, 1838, 1, 0, 0, 0, 1835, 1836, 10, 1, 0, 0, 1836, 1838, 5, 410, 0, 0, 1837, 1816, 1, 0, 0, 0, 1837, 1819, 1, 0, 0, 0, 1837, 1822, 1, 0, 0, 0, 1837, 1825, 1, 0, 0, 0, 1837, 1828, 1, 0, 0, 0, 1837, 1831, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 271, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1843, 6, 136, -1, 0, 1843, 1845, 5, 201, 0, 0, 1844, 1846, 3, 314, 157, 0, 1845, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1851, 1, 0, 0, 0, 1849, 1850, 5, 239, 0, 0, 1850, 1852, 3, 262, 131, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 5, 240, 0, 0, 1854, 1934, 1, 0, 0, 0, 1855, 1856, 5, 201, 0, 0, 1856, 1858, 3, 262, 131, 0, 1857, 1859, 3, 314, 157, 0, 1858, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1864, 1, 0, 0, 0, 1862, 1863, 5, 239, 0, 0, 1863, 1865, 3, 262, 131, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 5, 240, 0, 0, 1867, 1934, 1, 0, 0, 0, 1868, 1869, 5, 202, 0, 0, 1869, 1870, 5, 384, 0, 0, 1870, 1871, 3, 262, 131, 0, 1871, 1872, 5, 185, 0, 0, 1872, 1873, 3, 56, 28, 0, 1873, 1874, 5, 385, 0, 0, 1874, 1934, 1, 0, 0, 0, 1875, 1876, 5, 45, 0, 0, 1876, 1877, 5, 384, 0, 0, 1877, 1880, 3, 262, 131, 0, 1878, 1879, 5, 60, 0, 0, 1879, 1881, 5, 87, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1883, 5, 385, 0, 0, 1883, 1934, 1, 0, 0, 0, 1884, 1885, 5, 73, 0, 0, 1885, 1886, 5, 384, 0, 0, 1886, 1889, 3, 262, 131, 0, 1887, 1888, 5, 60, 0, 0, 1888, 1890, 5, 87, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 5, 385, 0, 0, 1892, 1934, 1, 0, 0, 0, 1893, 1894, 5, 316, 0, 0, 1894, 1895, 5, 384, 0, 0, 1895, 1896, 3, 270, 135, 0, 1896, 1897, 5, 263, 0, 0, 1897, 1898, 3, 270, 135, 0, 1898, 1899, 5, 385, 0, 0, 1899, 1934, 1, 0, 0, 0, 1900, 1934, 3, 342, 171, 0, 1901, 1934, 5, 395, 0, 0, 1902, 1903, 3, 316, 158, 0, 1903, 1904, 5, 381, 0, 0, 1904, 1905, 5, 395, 0, 0, 1905, 1934, 1, 0, 0, 0, 1906, 1907, 5, 384, 0, 0, 1907, 1908, 3, 160, 80, 0, 1908, 1909, 5, 385, 0, 0, 1909, 1934, 1, 0, 0, 0, 1910, 1911, 3, 274, 137, 0, 1911, 1923, 5, 384, 0, 0, 1912, 1914, 3, 352, 176, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1920, 3, 276, 138, 0, 1916, 1917, 5, 388, 0, 0, 1917, 1919, 3, 276, 138, 0, 1918, 1916, 1, 0, 0, 0, 1919, 1922, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1924, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1913, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1926, 5, 385, 0, 0, 1926, 1934, 1, 0, 0, 0, 1927, 1934, 3, 308, 154, 0, 1928, 1934, 3, 278, 139, 0, 1929, 1930, 5, 384, 0, 0, 1930, 1931, 3, 262, 131, 0, 1931, 1932, 5, 385, 0, 0, 1932, 1934, 1, 0, 0, 0, 1933, 1842, 1, 0, 0, 0, 1933, 1855, 1, 0, 0, 0, 1933, 1868, 1, 0, 0, 0, 1933, 1875, 1, 0, 0, 0, 1933, 1884, 1, 0, 0, 0, 1933, 1893, 1, 0, 0, 0, 1933, 1900, 1, 0, 0, 0, 1933, 1901, 1, 0, 0, 0, 1933, 1902, 1, 0, 0, 0, 1933, 1906, 1, 0, 0, 0, 1933, 1910, 1, 0, 0, 0, 1933, 1927, 1, 0, 0, 0, 1933, 1928, 1, 0, 0, 0, 1933, 1929, 1, 0, 0, 0, 1934, 1942, 1, 0, 0, 0, 1935, 1936, 10, 4, 0, 0, 1936, 1937, 5, 382, 0, 0, 1937, 1938, 3, 270, 135, 0, 1938, 1939, 5, 383, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1935, 1, 0, 0, 0, 1941, 1944, 1, 0, 0, 0, 1942, 1940, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 273, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1945, 1949, 3, 360, 180, 0, 1946, 1949, 3, 364, 182, 0, 1947, 1949, 3, 316, 158, 0, 1948, 1945, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1947, 1, 0, 0, 0, 1949, 275, 1, 0, 0, 0, 1950, 1955, 3, 358, 179, 0, 1951, 1955, 3, 356, 178, 0, 1952, 1955, 3, 354, 177, 0, 1953, 1955, 3, 262, 131, 0, 1954, 1950, 1, 0, 0, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 277, 1, 0, 0, 0, 1956, 1957, 3, 316, 158, 0, 1957, 279, 1, 0, 0, 0, 1958, 1959, 3, 308, 154, 0, 1959, 281, 1, 0, 0, 0, 1960, 1963, 3, 308, 154, 0, 1961, 1963, 3, 278, 139, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1961, 1, 0, 0, 0, 1963, 283, 1, 0, 0, 0, 1964, 1967, 5, 271, 0, 0, 1965, 1968, 3, 286, 143, 0, 1966, 1968, 3, 290, 145, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 285, 1, 0, 0, 0, 1969, 1971, 3, 288, 144, 0, 1970, 1972, 3, 292, 146, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 287, 1, 0, 0, 0, 1973, 1974, 3, 294, 147, 0, 1974, 1975, 3, 356, 178, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1973, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1976, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 289, 1, 0, 0, 0, 1980, 1983, 3, 292, 146, 0, 1981, 1984, 3, 288, 144, 0, 1982, 1984, 3, 292, 146, 0, 1983, 1981, 1, 0, 0, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 291, 1, 0, 0, 0, 1985, 1986, 3, 294, 147, 0, 1986, 1987, 3, 356, 178, 0, 1987, 1988, 5, 350, 0, 0, 1988, 1989, 3, 356, 178, 0, 1989, 293, 1, 0, 0, 0, 1990, 1992, 7, 34, 0, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1996, 7, 35, 0, 0, 1994, 1996, 5, 405, 0, 0, 1995, 1991, 1, 0, 0, 0, 1995, 1994, 1, 0, 0, 0, 1996, 295, 1, 0, 0, 0, 1997, 1999, 5, 185, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2002, 3, 308, 154, 0, 2001, 2003, 3, 304, 152, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 297, 1, 0, 0, 0, 2004, 2006, 5, 185, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 3, 308, 154, 0, 2008, 2010, 3, 304, 152, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 299, 1, 0, 0, 0, 2011, 2012, 3, 308, 154, 0, 2012, 2013, 3, 302, 151, 0, 2013, 301, 1, 0, 0, 0, 2014, 2015, 5, 288, 0, 0, 2015, 2017, 3, 308, 154, 0, 2016, 2014, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2022, 1, 0, 0, 0, 2021, 2016, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2022, 303, 1, 0, 0, 0, 2023, 2024, 5, 384, 0, 0, 2024, 2025, 3, 306, 153, 0, 2025, 2026, 5, 385, 0, 0, 2026, 305, 1, 0, 0, 0, 2027, 2032, 3, 308, 154, 0, 2028, 2029, 5, 388, 0, 0, 2029, 2031, 3, 308, 154, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2034, 1, 0, 0, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 307, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2035, 2039, 3, 310, 155, 0, 2036, 2039, 3, 312, 156, 0, 2037, 2039, 3, 364, 182, 0, 2038, 2035, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2037, 1, 0, 0, 0, 2039, 309, 1, 0, 0, 0, 2040, 2041, 7, 36, 0, 0, 2041, 311, 1, 0, 0, 0, 2042, 2043, 5, 405, 0, 0, 2043, 313, 1, 0, 0, 0, 2044, 2045, 5, 366, 0, 0, 2045, 2046, 3, 262, 131, 0, 2046, 2047, 5, 346, 0, 0, 2047, 2048, 3, 262, 131, 0, 2048, 315, 1, 0, 0, 0, 2049, 2054, 3, 308, 154, 0, 2050, 2051, 5, 381, 0, 0, 2051, 2053, 3, 308, 154, 0, 2052, 2050, 1, 0, 0, 0, 2053, 2056, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2054, 2052, 1, 0, 0, 0, 2055, 317, 1, 0, 0, 0, 2056, 2054, 1, 0, 0, 0, 2057, 2058, 5, 369, 0, 0, 2058, 2059, 3, 324, 162, 0, 2059, 319, 1, 0, 0, 0, 2060, 2061, 5, 59, 0, 0, 2061, 2062, 5, 298, 0, 0, 2062, 2063, 5, 245, 0, 0, 2063, 321, 1, 0, 0, 0, 2064, 2065, 5, 59, 0, 0, 2065, 2066, 5, 245, 0, 0, 2066, 323, 1, 0, 0, 0, 2067, 2068, 5, 384, 0, 0, 2068, 2073, 3, 326, 163, 0, 2069, 2070, 5, 388, 0, 0, 2070, 2072, 3, 326, 163, 0, 2071, 2069, 1, 0, 0, 0, 2072, 2075, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2076, 2077, 5, 385, 0, 0, 2077, 325, 1, 0, 0, 0, 2078, 2083, 3, 328, 164, 0, 2079, 2081, 5, 373, 0, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2084, 3, 330, 165, 0, 2083, 2080, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 327, 1, 0, 0, 0, 2085, 2089, 3, 308, 154, 0, 2086, 2089, 3, 278, 139, 0, 2087, 2089, 5, 405, 0, 0, 2088, 2085, 1, 0, 0, 0, 2088, 2086, 1, 0, 0, 0, 2088, 2087, 1, 0, 0, 0, 2089, 329, 1, 0, 0, 0, 2090, 2095, 5, 406, 0, 0, 2091, 2095, 5, 407, 0, 0, 2092, 2095, 3, 350, 175, 0, 2093, 2095, 5, 405, 0, 0, 2094, 2090, 1, 0, 0, 0, 2094, 2091, 1, 0, 0, 0, 2094, 2092, 1, 0, 0, 0, 2094, 2093, 1, 0, 0, 0, 2095, 331, 1, 0, 0, 0, 2096, 2103, 5, 181, 0, 0, 2097, 2098, 5, 379, 0, 0, 2098, 2103, 5, 379, 0, 0, 2099, 2103, 5, 305, 0, 0, 2100, 2101, 5, 378, 0, 0, 2101, 2103, 5, 378, 0, 0, 2102, 2096, 1, 0, 0, 0, 2102, 2097, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2103, 333, 1, 0, 0, 0, 2104, 2119, 5, 373, 0, 0, 2105, 2119, 5, 374, 0, 0, 2106, 2119, 5, 375, 0, 0, 2107, 2108, 5, 375, 0, 0, 2108, 2119, 5, 373, 0, 0, 2109, 2110, 5, 374, 0, 0, 2110, 2119, 5, 373, 0, 0, 2111, 2112, 5, 375, 0, 0, 2112, 2119, 5, 374, 0, 0, 2113, 2114, 5, 376, 0, 0, 2114, 2119, 5, 373, 0, 0, 2115, 2116, 5, 375, 0, 0, 2116, 2117, 5, 373, 0, 0, 2117, 2119, 5, 374, 0, 0, 2118, 2104, 1, 0, 0, 0, 2118, 2105, 1, 0, 0, 0, 2118, 2106, 1, 0, 0, 0, 2118, 2107, 1, 0, 0, 0, 2118, 2109, 1, 0, 0, 0, 2118, 2111, 1, 0, 0, 0, 2118, 2113, 1, 0, 0, 0, 2118, 2115, 1, 0, 0, 0, 2119, 335, 1, 0, 0, 0, 2120, 2121, 5, 375, 0, 0, 2121, 2128, 5, 375, 0, 0, 2122, 2123, 5, 374, 0, 0, 2123, 2128, 5, 374, 0, 0, 2124, 2128, 5, 379, 0, 0, 2125, 2128, 5, 380, 0, 0, 2126, 2128, 5, 378, 0, 0, 2127, 2120, 1, 0, 0, 0, 2127, 2122, 1, 0, 0, 0, 2127, 2124, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2127, 2126, 1, 0, 0, 0, 2128, 337, 1, 0, 0, 0, 2129, 2130, 7, 37, 0, 0, 2130, 339, 1, 0, 0, 0, 2131, 2132, 7, 38, 0, 0, 2132, 341, 1, 0, 0, 0, 2133, 2148, 3, 284, 142, 0, 2134, 2148, 3, 344, 172, 0, 2135, 2148, 3, 346, 173, 0, 2136, 2138, 5, 397, 0, 0, 2137, 2136, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2148, 3, 348, 174, 0, 2140, 2148, 3, 350, 175, 0, 2141, 2148, 5, 407, 0, 0, 2142, 2148, 5, 408, 0, 0, 2143, 2145, 5, 298, 0, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 5, 299, 0, 0, 2147, 2133, 1, 0, 0, 0, 2147, 2134, 1, 0, 0, 0, 2147, 2135, 1, 0, 0, 0, 2147, 2137, 1, 0, 0, 0, 2147, 2140, 1, 0, 0, 0, 2147, 2141, 1, 0, 0, 0, 2147, 2142, 1, 0, 0, 0, 2147, 2144, 1, 0, 0, 0, 2148, 343, 1, 0, 0, 0, 2149, 2150, 3, 354, 177, 0, 2150, 2151, 3, 346, 173, 0, 2151, 345, 1, 0, 0, 0, 2152, 2153, 5, 405, 0, 0, 2153, 347, 1, 0, 0, 0, 2154, 2155, 5, 406, 0, 0, 2155, 349, 1, 0, 0, 0, 2156, 2157, 7, 39, 0, 0, 2157, 351, 1, 0, 0, 0, 2158, 2159, 7, 40, 0, 0, 2159, 353, 1, 0, 0, 0, 2160, 2161, 7, 41, 0, 0, 2161, 355, 1, 0, 0, 0, 2162, 2163, 7, 42, 0, 0, 2163, 357, 1, 0, 0, 0, 2164, 2165, 7, 43, 0, 0, 2165, 359, 1, 0, 0, 0, 2166, 2167, 7, 44, 0, 0, 2167, 361, 1, 0, 0, 0, 2168, 2169, 7, 45, 0, 0, 2169, 363, 1, 0, 0, 0, 2170, 2171, 7, 46, 0, 0, 2171, 365, 1, 0, 0, 0, 250, 374, 377, 379, 394, 412, 416, 425, 430, 437, 444, 448, 457, 469, 472, 479, 487, 492, 495, 502, 510, 514, 526, 534, 538, 560, 565, 569, 573, 577, 586, 591, 595, 599, 603, 606, 610, 615, 621, 626, 631, 634, 638, 646, 654, 658, 662, 666, 670, 674, 678, 682, 686, 688, 698, 706, 730, 737, 743, 746, 749, 759, 762, 770, 782, 806, 819, 824, 828, 836, 840, 848, 858, 862, 868, 872, 876, 879, 888, 892, 899, 902, 912, 920, 928, 932, 947, 966, 977, 981, 988, 993, 999, 1003, 1010, 1014, 1018, 1022, 1030, 1034, 1039, 1045, 1051, 1054, 1058, 1069, 1078, 1092, 1104, 1119, 1122, 1126, 1129, 1131, 1136, 1140, 1143, 1147, 1156, 1165, 1175, 1180, 1192, 1195, 1198, 1201, 1207, 1211, 1219, 1222, 1227, 1230, 1232, 1246, 1257, 1262, 1270, 1273, 1276, 1281, 1283, 1285, 1290, 1293, 1297, 1300, 1303, 1315, 1322, 1333, 1362, 1384, 1402, 1407, 1419, 1432, 1444, 1456, 1461, 1488, 1496, 1500, 1503, 1506, 1513, 1516, 1519, 1522, 1525, 1528, 1533, 1536, 1545, 1550, 1554, 1559, 1568, 1587, 1595, 1603, 1607, 1611, 1621, 1647, 1655, 1667, 1689, 1691, 1702, 1705, 1707, 1711, 1715, 1722, 1731, 1737, 1750, 1757, 1762, 1768, 1775, 1777, 1780, 1792, 1797, 1800, 1806, 1808, 1814, 1837, 1839, 1847, 1851, 1860, 1864, 1880, 1889, 1913, 1920, 1923, 1933, 1942, 1948, 1954, 1962, 1967, 1971, 1978, 1983, 1991, 1995, 1998, 2002, 2005, 2009, 2018, 2021, 2032, 2038, 2054, 2073, 2080, 2083, 2088, 2094, 2102, 2118, 2127, 2137, 2144, 2147] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index d545b67..a488f5e 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -407,7 +407,7 @@ DIG_LITERAL=406 REAL_LITERAL=407 BIT_STRING=408 ID_LITERAL=409 -FILE_PATH=410 +SLASH_TEXT=410 'ADD'=4 'ADMIN'=5 'AFTER'=6 diff --git a/src/lib/flinksql/FlinkSqlParser.ts b/src/lib/flinksql/FlinkSqlParser.ts index 2f23f5b..531ccf7 100644 --- a/src/lib/flinksql/FlinkSqlParser.ts +++ b/src/lib/flinksql/FlinkSqlParser.ts @@ -428,7 +428,7 @@ export default class FlinkSqlParser extends Parser { public static readonly REAL_LITERAL = 407; public static readonly BIT_STRING = 408; public static readonly ID_LITERAL = 409; - public static readonly FILE_PATH = 410; + public static readonly SLASH_TEXT = 410; public static readonly EOF = Token.EOF; public static readonly RULE_program = 0; public static readonly RULE_statement = 1; @@ -450,168 +450,169 @@ export default class FlinkSqlParser extends Parser { public static readonly RULE_resetStatememt = 17; public static readonly RULE_jarStatememt = 18; public static readonly RULE_dtAddStatement = 19; - public static readonly RULE_createTable = 20; - public static readonly RULE_simpleCreateTable = 21; - public static readonly RULE_createTableAsSelect = 22; - public static readonly RULE_columnOptionDefinition = 23; - public static readonly RULE_physicalColumnDefinition = 24; - public static readonly RULE_columnName = 25; - public static readonly RULE_columnNameList = 26; - public static readonly RULE_columnType = 27; - public static readonly RULE_lengthOneDimension = 28; - public static readonly RULE_lengthTwoOptionalDimension = 29; - public static readonly RULE_lengthTwoStringDimension = 30; - public static readonly RULE_lengthOneTypeDimension = 31; - public static readonly RULE_mapTypeDimension = 32; - public static readonly RULE_rowTypeDimension = 33; - public static readonly RULE_columnConstraint = 34; - public static readonly RULE_commentSpec = 35; - public static readonly RULE_metadataColumnDefinition = 36; - public static readonly RULE_metadataKey = 37; - public static readonly RULE_computedColumnDefinition = 38; - public static readonly RULE_computedColumnExpression = 39; - public static readonly RULE_watermarkDefinition = 40; - public static readonly RULE_tableConstraint = 41; - public static readonly RULE_constraintName = 42; - public static readonly RULE_selfDefinitionClause = 43; - public static readonly RULE_partitionDefinition = 44; - public static readonly RULE_transformList = 45; - public static readonly RULE_transform = 46; - public static readonly RULE_transformArgument = 47; - public static readonly RULE_likeDefinition = 48; - public static readonly RULE_sourceTable = 49; - public static readonly RULE_likeOption = 50; - public static readonly RULE_createCatalog = 51; - public static readonly RULE_createDatabase = 52; - public static readonly RULE_createView = 53; - public static readonly RULE_createFunction = 54; - public static readonly RULE_usingClause = 55; - public static readonly RULE_jarFileName = 56; - public static readonly RULE_alterTable = 57; - public static readonly RULE_renameDefinition = 58; - public static readonly RULE_setKeyValueDefinition = 59; - public static readonly RULE_addConstraint = 60; - public static readonly RULE_dropConstraint = 61; - public static readonly RULE_addUnique = 62; - public static readonly RULE_notForced = 63; - public static readonly RULE_alertView = 64; - public static readonly RULE_alterDatabase = 65; - public static readonly RULE_alterFunction = 66; - public static readonly RULE_dropCatalog = 67; - public static readonly RULE_dropTable = 68; - public static readonly RULE_dropDatabase = 69; - public static readonly RULE_dropView = 70; - public static readonly RULE_dropFunction = 71; - public static readonly RULE_insertStatement = 72; - public static readonly RULE_insertSimpleStatement = 73; - public static readonly RULE_insertPartitionDefinition = 74; - public static readonly RULE_valuesDefinition = 75; - public static readonly RULE_valuesRowDefinition = 76; - public static readonly RULE_insertMulStatementCompatibility = 77; - public static readonly RULE_insertMulStatement = 78; - public static readonly RULE_queryStatement = 79; - public static readonly RULE_valuesCaluse = 80; - public static readonly RULE_withClause = 81; - public static readonly RULE_withItem = 82; - public static readonly RULE_withItemName = 83; - public static readonly RULE_selectStatement = 84; - public static readonly RULE_selectClause = 85; - public static readonly RULE_projectItemDefinition = 86; - public static readonly RULE_overWindowItem = 87; - public static readonly RULE_fromClause = 88; - public static readonly RULE_tableExpression = 89; - public static readonly RULE_tableReference = 90; - public static readonly RULE_tablePrimary = 91; - public static readonly RULE_tablePath = 92; - public static readonly RULE_systemTimePeriod = 93; - public static readonly RULE_dateTimeExpression = 94; - public static readonly RULE_inlineDataValueClause = 95; - public static readonly RULE_windoTVFClause = 96; - public static readonly RULE_windowTVFExression = 97; - public static readonly RULE_windoTVFName = 98; - public static readonly RULE_windowTVFParam = 99; - public static readonly RULE_timeIntervalParamName = 100; - public static readonly RULE_columnDescriptor = 101; - public static readonly RULE_joinCondition = 102; - public static readonly RULE_whereClause = 103; - public static readonly RULE_groupByClause = 104; - public static readonly RULE_groupItemDefinition = 105; - public static readonly RULE_groupingSets = 106; - public static readonly RULE_groupingSetsNotaionName = 107; - public static readonly RULE_groupWindowFunction = 108; - public static readonly RULE_groupWindowFunctionName = 109; - public static readonly RULE_timeAttrColumn = 110; - public static readonly RULE_havingClause = 111; - public static readonly RULE_windowClause = 112; - public static readonly RULE_namedWindow = 113; - public static readonly RULE_windowSpec = 114; - public static readonly RULE_matchRecognizeClause = 115; - public static readonly RULE_orderByCaluse = 116; - public static readonly RULE_orderItemDefition = 117; - public static readonly RULE_limitClause = 118; - public static readonly RULE_partitionByClause = 119; - public static readonly RULE_quantifiers = 120; - public static readonly RULE_measuresClause = 121; - public static readonly RULE_patternDefination = 122; - public static readonly RULE_patternVariable = 123; - public static readonly RULE_outputMode = 124; - public static readonly RULE_afterMatchStrategy = 125; - public static readonly RULE_patternVariablesDefination = 126; - public static readonly RULE_windowFrame = 127; - public static readonly RULE_frameBound = 128; - public static readonly RULE_withinClause = 129; - public static readonly RULE_expression = 130; - public static readonly RULE_booleanExpression = 131; - public static readonly RULE_predicate = 132; - public static readonly RULE_likePredicate = 133; - public static readonly RULE_valueExpression = 134; - public static readonly RULE_primaryExpression = 135; - public static readonly RULE_functionName = 136; - public static readonly RULE_functionParam = 137; - public static readonly RULE_dereferenceDefinition = 138; - public static readonly RULE_correlationName = 139; - public static readonly RULE_qualifiedName = 140; - public static readonly RULE_timeIntervalExpression = 141; - public static readonly RULE_errorCapturingMultiUnitsInterval = 142; - public static readonly RULE_multiUnitsInterval = 143; - public static readonly RULE_errorCapturingUnitToUnitInterval = 144; - public static readonly RULE_unitToUnitInterval = 145; - public static readonly RULE_intervalValue = 146; - public static readonly RULE_columnAlias = 147; - public static readonly RULE_tableAlias = 148; - public static readonly RULE_errorCapturingIdentifier = 149; - public static readonly RULE_errorCapturingIdentifierExtra = 150; - public static readonly RULE_identifierList = 151; - public static readonly RULE_identifierSeq = 152; - public static readonly RULE_identifier = 153; - public static readonly RULE_unquotedIdentifier = 154; - public static readonly RULE_quotedIdentifier = 155; - public static readonly RULE_whenClause = 156; - public static readonly RULE_uid = 157; - public static readonly RULE_withOption = 158; - public static readonly RULE_ifNotExists = 159; - public static readonly RULE_ifExists = 160; - public static readonly RULE_tablePropertyList = 161; - public static readonly RULE_tableProperty = 162; - public static readonly RULE_tablePropertyKey = 163; - public static readonly RULE_tablePropertyValue = 164; - public static readonly RULE_logicalOperator = 165; - public static readonly RULE_comparisonOperator = 166; - public static readonly RULE_bitOperator = 167; - public static readonly RULE_mathOperator = 168; - public static readonly RULE_unaryOperator = 169; - public static readonly RULE_constant = 170; - public static readonly RULE_timePointLiteral = 171; - public static readonly RULE_stringLiteral = 172; - public static readonly RULE_decimalLiteral = 173; - public static readonly RULE_booleanLiteral = 174; - public static readonly RULE_setQuantifier = 175; - public static readonly RULE_timePointUnit = 176; - public static readonly RULE_timeIntervalUnit = 177; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 178; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 179; - public static readonly RULE_reservedKeywords = 180; - public static readonly RULE_nonReservedKeywords = 181; + public static readonly RULE_dtFilePath = 20; + public static readonly RULE_createTable = 21; + public static readonly RULE_simpleCreateTable = 22; + public static readonly RULE_createTableAsSelect = 23; + public static readonly RULE_columnOptionDefinition = 24; + public static readonly RULE_physicalColumnDefinition = 25; + public static readonly RULE_columnName = 26; + public static readonly RULE_columnNameList = 27; + public static readonly RULE_columnType = 28; + public static readonly RULE_lengthOneDimension = 29; + public static readonly RULE_lengthTwoOptionalDimension = 30; + public static readonly RULE_lengthTwoStringDimension = 31; + public static readonly RULE_lengthOneTypeDimension = 32; + public static readonly RULE_mapTypeDimension = 33; + public static readonly RULE_rowTypeDimension = 34; + public static readonly RULE_columnConstraint = 35; + public static readonly RULE_commentSpec = 36; + public static readonly RULE_metadataColumnDefinition = 37; + public static readonly RULE_metadataKey = 38; + public static readonly RULE_computedColumnDefinition = 39; + public static readonly RULE_computedColumnExpression = 40; + public static readonly RULE_watermarkDefinition = 41; + public static readonly RULE_tableConstraint = 42; + public static readonly RULE_constraintName = 43; + public static readonly RULE_selfDefinitionClause = 44; + public static readonly RULE_partitionDefinition = 45; + public static readonly RULE_transformList = 46; + public static readonly RULE_transform = 47; + public static readonly RULE_transformArgument = 48; + public static readonly RULE_likeDefinition = 49; + public static readonly RULE_sourceTable = 50; + public static readonly RULE_likeOption = 51; + public static readonly RULE_createCatalog = 52; + public static readonly RULE_createDatabase = 53; + public static readonly RULE_createView = 54; + public static readonly RULE_createFunction = 55; + public static readonly RULE_usingClause = 56; + public static readonly RULE_jarFileName = 57; + public static readonly RULE_alterTable = 58; + public static readonly RULE_renameDefinition = 59; + public static readonly RULE_setKeyValueDefinition = 60; + public static readonly RULE_addConstraint = 61; + public static readonly RULE_dropConstraint = 62; + public static readonly RULE_addUnique = 63; + public static readonly RULE_notForced = 64; + public static readonly RULE_alertView = 65; + public static readonly RULE_alterDatabase = 66; + public static readonly RULE_alterFunction = 67; + public static readonly RULE_dropCatalog = 68; + public static readonly RULE_dropTable = 69; + public static readonly RULE_dropDatabase = 70; + public static readonly RULE_dropView = 71; + public static readonly RULE_dropFunction = 72; + public static readonly RULE_insertStatement = 73; + public static readonly RULE_insertSimpleStatement = 74; + public static readonly RULE_insertPartitionDefinition = 75; + public static readonly RULE_valuesDefinition = 76; + public static readonly RULE_valuesRowDefinition = 77; + public static readonly RULE_insertMulStatementCompatibility = 78; + public static readonly RULE_insertMulStatement = 79; + public static readonly RULE_queryStatement = 80; + public static readonly RULE_valuesCaluse = 81; + public static readonly RULE_withClause = 82; + public static readonly RULE_withItem = 83; + public static readonly RULE_withItemName = 84; + public static readonly RULE_selectStatement = 85; + public static readonly RULE_selectClause = 86; + public static readonly RULE_projectItemDefinition = 87; + public static readonly RULE_overWindowItem = 88; + public static readonly RULE_fromClause = 89; + public static readonly RULE_tableExpression = 90; + public static readonly RULE_tableReference = 91; + public static readonly RULE_tablePrimary = 92; + public static readonly RULE_tablePath = 93; + public static readonly RULE_systemTimePeriod = 94; + public static readonly RULE_dateTimeExpression = 95; + public static readonly RULE_inlineDataValueClause = 96; + public static readonly RULE_windoTVFClause = 97; + public static readonly RULE_windowTVFExression = 98; + public static readonly RULE_windoTVFName = 99; + public static readonly RULE_windowTVFParam = 100; + public static readonly RULE_timeIntervalParamName = 101; + public static readonly RULE_columnDescriptor = 102; + public static readonly RULE_joinCondition = 103; + public static readonly RULE_whereClause = 104; + public static readonly RULE_groupByClause = 105; + public static readonly RULE_groupItemDefinition = 106; + public static readonly RULE_groupingSets = 107; + public static readonly RULE_groupingSetsNotaionName = 108; + public static readonly RULE_groupWindowFunction = 109; + public static readonly RULE_groupWindowFunctionName = 110; + public static readonly RULE_timeAttrColumn = 111; + public static readonly RULE_havingClause = 112; + public static readonly RULE_windowClause = 113; + public static readonly RULE_namedWindow = 114; + public static readonly RULE_windowSpec = 115; + public static readonly RULE_matchRecognizeClause = 116; + public static readonly RULE_orderByCaluse = 117; + public static readonly RULE_orderItemDefition = 118; + public static readonly RULE_limitClause = 119; + public static readonly RULE_partitionByClause = 120; + public static readonly RULE_quantifiers = 121; + public static readonly RULE_measuresClause = 122; + public static readonly RULE_patternDefination = 123; + public static readonly RULE_patternVariable = 124; + public static readonly RULE_outputMode = 125; + public static readonly RULE_afterMatchStrategy = 126; + public static readonly RULE_patternVariablesDefination = 127; + public static readonly RULE_windowFrame = 128; + public static readonly RULE_frameBound = 129; + public static readonly RULE_withinClause = 130; + public static readonly RULE_expression = 131; + public static readonly RULE_booleanExpression = 132; + public static readonly RULE_predicate = 133; + public static readonly RULE_likePredicate = 134; + public static readonly RULE_valueExpression = 135; + public static readonly RULE_primaryExpression = 136; + public static readonly RULE_functionName = 137; + public static readonly RULE_functionParam = 138; + public static readonly RULE_dereferenceDefinition = 139; + public static readonly RULE_correlationName = 140; + public static readonly RULE_qualifiedName = 141; + public static readonly RULE_timeIntervalExpression = 142; + public static readonly RULE_errorCapturingMultiUnitsInterval = 143; + public static readonly RULE_multiUnitsInterval = 144; + public static readonly RULE_errorCapturingUnitToUnitInterval = 145; + public static readonly RULE_unitToUnitInterval = 146; + public static readonly RULE_intervalValue = 147; + public static readonly RULE_columnAlias = 148; + public static readonly RULE_tableAlias = 149; + public static readonly RULE_errorCapturingIdentifier = 150; + public static readonly RULE_errorCapturingIdentifierExtra = 151; + public static readonly RULE_identifierList = 152; + public static readonly RULE_identifierSeq = 153; + public static readonly RULE_identifier = 154; + public static readonly RULE_unquotedIdentifier = 155; + public static readonly RULE_quotedIdentifier = 156; + public static readonly RULE_whenClause = 157; + public static readonly RULE_uid = 158; + public static readonly RULE_withOption = 159; + public static readonly RULE_ifNotExists = 160; + public static readonly RULE_ifExists = 161; + public static readonly RULE_tablePropertyList = 162; + public static readonly RULE_tableProperty = 163; + public static readonly RULE_tablePropertyKey = 164; + public static readonly RULE_tablePropertyValue = 165; + public static readonly RULE_logicalOperator = 166; + public static readonly RULE_comparisonOperator = 167; + public static readonly RULE_bitOperator = 168; + public static readonly RULE_mathOperator = 169; + public static readonly RULE_unaryOperator = 170; + public static readonly RULE_constant = 171; + public static readonly RULE_timePointLiteral = 172; + public static readonly RULE_stringLiteral = 173; + public static readonly RULE_decimalLiteral = 174; + public static readonly RULE_booleanLiteral = 175; + public static readonly RULE_setQuantifier = 176; + public static readonly RULE_timePointUnit = 177; + public static readonly RULE_timeIntervalUnit = 178; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 179; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 180; + public static readonly RULE_reservedKeywords = 181; + public static readonly RULE_nonReservedKeywords = 182; public static readonly literalNames: (string | null)[] = [ null, null, null, null, "'ADD'", "'ADMIN'", @@ -1261,14 +1262,14 @@ export default class FlinkSqlParser extends Parser { "REAL_LITERAL", "BIT_STRING", "ID_LITERAL", - "FILE_PATH" ]; + "SLASH_TEXT" ]; // tslint:disable:no-trailing-whitespace public static readonly ruleNames: string[] = [ "program", "statement", "sqlStatements", "sqlStatement", "emptyStatement", "ddlStatement", "dmlStatement", "describeStatement", "explainStatement", "explainDetails", "explainDetail", "useStatement", "useModuleStatement", "showStatememt", "loadStatement", "unloadStatememt", "setStatememt", "resetStatememt", - "jarStatememt", "dtAddStatement", "createTable", "simpleCreateTable", + "jarStatememt", "dtAddStatement", "dtFilePath", "createTable", "simpleCreateTable", "createTableAsSelect", "columnOptionDefinition", "physicalColumnDefinition", "columnName", "columnNameList", "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", "lengthTwoStringDimension", "lengthOneTypeDimension", "mapTypeDimension", @@ -1330,9 +1331,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 364; + this.state = 366; this.statement(); - this.state = 365; + this.state = 367; this.match(FlinkSqlParser.EOF); } } @@ -1357,9 +1358,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 367; + this.state = 369; this.sqlStatements(); - this.state = 368; + this.state = 370; this.match(FlinkSqlParser.EOF); } } @@ -1385,12 +1386,12 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 377; + this.state = 379; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===4 || _la===30 || _la===76 || _la===118 || ((((_la - 159)) & ~0x1F) === 0 && ((1 << (_la - 159)) & 1075838981) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 168067073) !== 0) || _la===267 || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 3585) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 69206081) !== 0)) { { - this.state = 375; + this.state = 377; this._errHandler.sync(this); switch (this._input.LA(1)) { case 4: @@ -1415,14 +1416,14 @@ export default class FlinkSqlParser extends Parser { case 369: case 384: { - this.state = 370; - this.sqlStatement(); this.state = 372; + this.sqlStatement(); + this.state = 374; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 0, this._ctx) ) { case 1: { - this.state = 371; + this.state = 373; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1431,7 +1432,7 @@ export default class FlinkSqlParser extends Parser { break; case 389: { - this.state = 374; + this.state = 376; this.emptyStatement(); } break; @@ -1439,7 +1440,7 @@ export default class FlinkSqlParser extends Parser { throw new NoViableAltException(this); } } - this.state = 379; + this.state = 381; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1464,90 +1465,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 = 392; + this.state = 394; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 3, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 380; + this.state = 382; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 381; + this.state = 383; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 382; + this.state = 384; this.describeStatement(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 383; + this.state = 385; this.explainStatement(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 384; + this.state = 386; this.useStatement(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 385; + this.state = 387; this.showStatememt(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 386; + this.state = 388; this.loadStatement(); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 387; + this.state = 389; this.unloadStatememt(); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 388; + this.state = 390; this.setStatememt(); } break; case 10: this.enterOuterAlt(localctx, 10); { - this.state = 389; + this.state = 391; this.resetStatememt(); } break; case 11: this.enterOuterAlt(localctx, 11); { - this.state = 390; + this.state = 392; this.jarStatememt(); } break; case 12: this.enterOuterAlt(localctx, 12); { - this.state = 391; + this.state = 393; this.dtAddStatement(); } break; @@ -1574,7 +1575,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 394; + this.state = 396; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1597,104 +1598,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 = 410; + this.state = 412; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 4, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 396; + this.state = 398; this.createTable(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 397; + this.state = 399; this.createDatabase(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 398; + this.state = 400; this.createView(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 399; + this.state = 401; this.createFunction(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 400; + this.state = 402; this.createCatalog(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 401; + this.state = 403; this.alterTable(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 402; + this.state = 404; this.alertView(); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 403; + this.state = 405; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 404; + this.state = 406; this.alterFunction(); } break; case 10: this.enterOuterAlt(localctx, 10); { - this.state = 405; + this.state = 407; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localctx, 11); { - this.state = 406; + this.state = 408; this.dropTable(); } break; case 12: this.enterOuterAlt(localctx, 12); { - this.state = 407; + this.state = 409; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localctx, 13); { - this.state = 408; + this.state = 410; this.dropView(); } break; case 14: this.enterOuterAlt(localctx, 14); { - this.state = 409; + this.state = 411; this.dropFunction(); } break; @@ -1719,7 +1720,7 @@ 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 = 414; + this.state = 416; this._errHandler.sync(this); switch (this._input.LA(1)) { case 330: @@ -1728,7 +1729,7 @@ export default class FlinkSqlParser extends Parser { case 384: this.enterOuterAlt(localctx, 1); { - this.state = 412; + this.state = 414; this.queryStatement(0); } break; @@ -1737,7 +1738,7 @@ export default class FlinkSqlParser extends Parser { case 267: this.enterOuterAlt(localctx, 2); { - this.state = 413; + this.state = 415; this.insertStatement(); } break; @@ -1767,7 +1768,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 416; + this.state = 418; _la = this._input.LA(1); if(!(_la===30 || _la===234)) { this._errHandler.recoverInline(this); @@ -1776,7 +1777,7 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 417; + this.state = 419; this.uid(); } } @@ -1801,24 +1802,24 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 419; + this.state = 421; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 423; + this.state = 425; this._errHandler.sync(this); switch (this._input.LA(1)) { case 16: case 38: case 68: { - this.state = 420; + this.state = 422; this.explainDetails(); } break; case 101: { - this.state = 421; + this.state = 423; this.match(FlinkSqlParser.KW_PLAN); - this.state = 422; + this.state = 424; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1834,24 +1835,24 @@ export default class FlinkSqlParser extends Parser { default: break; } - this.state = 428; + this.state = 430; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 7, this._ctx) ) { case 1: { - this.state = 425; + this.state = 427; this.dmlStatement(); } break; case 2: { - this.state = 426; + this.state = 428; this.insertSimpleStatement(); } break; case 3: { - this.state = 427; + this.state = 429; this.insertMulStatement(); } break; @@ -1880,21 +1881,21 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 430; + this.state = 432; this.explainDetail(); - this.state = 435; + this.state = 437; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 431; + this.state = 433; this.match(FlinkSqlParser.COMMA); - this.state = 432; + this.state = 434; this.explainDetail(); } } - this.state = 437; + this.state = 439; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1922,7 +1923,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 438; + this.state = 440; _la = this._input.LA(1); if(!(_la===16 || _la===38 || _la===68)) { this._errHandler.recoverInline(this); @@ -1952,32 +1953,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 = 446; + this.state = 448; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 10, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 440; - this.match(FlinkSqlParser.KW_USE); this.state = 442; + this.match(FlinkSqlParser.KW_USE); + this.state = 444; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 9, this._ctx) ) { case 1: { - this.state = 441; + this.state = 443; this.match(FlinkSqlParser.KW_CATALOG); } break; } - this.state = 444; + this.state = 446; this.uid(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 445; + this.state = 447; this.useModuleStatement(); } break; @@ -2005,25 +2006,25 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 448; - this.match(FlinkSqlParser.KW_USE); - this.state = 449; - this.match(FlinkSqlParser.KW_MODULES); this.state = 450; + this.match(FlinkSqlParser.KW_USE); + this.state = 451; + this.match(FlinkSqlParser.KW_MODULES); + this.state = 452; this.uid(); - this.state = 455; + this.state = 457; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 451; + this.state = 453; this.match(FlinkSqlParser.COMMA); - this.state = 452; + this.state = 454; this.uid(); } } - this.state = 457; + this.state = 459; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -2049,15 +2050,15 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 26, FlinkSqlParser.RULE_showStatememt); let _la: number; try { - this.state = 493; + this.state = 495; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 17, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 458; + this.state = 460; this.match(FlinkSqlParser.KW_SHOW); - this.state = 459; + this.state = 461; _la = this._input.LA(1); if(!(_la===13 || _la===26 || _la===65 || _la===167)) { this._errHandler.recoverInline(this); @@ -2071,11 +2072,11 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 460; - this.match(FlinkSqlParser.KW_SHOW); - this.state = 461; - this.match(FlinkSqlParser.KW_CURRENT); this.state = 462; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 463; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 464; _la = this._input.LA(1); if(!(_la===12 || _la===25)) { this._errHandler.recoverInline(this); @@ -2089,16 +2090,16 @@ export default class FlinkSqlParser extends Parser { case 3: this.enterOuterAlt(localctx, 3); { - this.state = 463; + this.state = 465; this.match(FlinkSqlParser.KW_SHOW); - this.state = 464; + this.state = 466; this.match(FlinkSqlParser.KW_TABLES); - this.state = 467; + this.state = 469; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===252 || _la===263) { { - this.state = 465; + this.state = 467; _la = this._input.LA(1); if(!(_la===252 || _la===263)) { this._errHandler.recoverInline(this); @@ -2107,17 +2108,17 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 466; + this.state = 468; this.uid(); } } - this.state = 470; + this.state = 472; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===280 || _la===298) { { - this.state = 469; + this.state = 471; this.likePredicate(); } } @@ -2127,11 +2128,11 @@ export default class FlinkSqlParser extends Parser { case 4: this.enterOuterAlt(localctx, 4); { - this.state = 472; - this.match(FlinkSqlParser.KW_SHOW); - this.state = 473; - this.match(FlinkSqlParser.KW_COLUMNS); this.state = 474; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 475; + this.match(FlinkSqlParser.KW_COLUMNS); + this.state = 476; _la = this._input.LA(1); if(!(_la===252 || _la===263)) { this._errHandler.recoverInline(this); @@ -2140,14 +2141,14 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 475; - this.uid(); this.state = 477; + this.uid(); + this.state = 479; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===280 || _la===298) { { - this.state = 476; + this.state = 478; this.likePredicate(); } } @@ -2157,11 +2158,11 @@ export default class FlinkSqlParser extends Parser { case 5: this.enterOuterAlt(localctx, 5); { - this.state = 479; - this.match(FlinkSqlParser.KW_SHOW); - this.state = 480; - this.match(FlinkSqlParser.KW_CREATE); this.state = 481; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 482; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 483; _la = this._input.LA(1); if(!(_la===166 || _la===344)) { this._errHandler.recoverInline(this); @@ -2170,45 +2171,45 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 482; + this.state = 484; this.uid(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 483; - this.match(FlinkSqlParser.KW_SHOW); this.state = 485; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 487; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===360) { { - this.state = 484; + this.state = 486; this.match(FlinkSqlParser.KW_USER); } } - this.state = 487; + this.state = 489; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 488; - this.match(FlinkSqlParser.KW_SHOW); this.state = 490; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 492; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===253) { { - this.state = 489; + this.state = 491; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 492; + this.state = 494; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -2235,20 +2236,20 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 495; - this.match(FlinkSqlParser.KW_LOAD); - this.state = 496; - this.match(FlinkSqlParser.KW_MODULE); this.state = 497; + this.match(FlinkSqlParser.KW_LOAD); + this.state = 498; + this.match(FlinkSqlParser.KW_MODULE); + this.state = 499; this.uid(); - this.state = 500; + this.state = 502; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 18, this._ctx) ) { case 1: { - this.state = 498; + this.state = 500; this.match(FlinkSqlParser.KW_WITH); - this.state = 499; + this.state = 501; this.tablePropertyList(); } break; @@ -2276,11 +2277,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 502; - this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 503; - this.match(FlinkSqlParser.KW_MODULE); this.state = 504; + this.match(FlinkSqlParser.KW_UNLOAD); + this.state = 505; + this.match(FlinkSqlParser.KW_MODULE); + this.state = 506; this.uid(); } } @@ -2305,14 +2306,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 506; - this.match(FlinkSqlParser.KW_SET); this.state = 508; + this.match(FlinkSqlParser.KW_SET); + this.state = 510; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 19, this._ctx) ) { case 1: { - this.state = 507; + this.state = 509; this.tableProperty(); } break; @@ -2340,14 +2341,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 510; - this.match(FlinkSqlParser.KW_RESET); this.state = 512; + this.match(FlinkSqlParser.KW_RESET); + this.state = 514; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 20, this._ctx) ) { case 1: { - this.state = 511; + this.state = 513; this.tablePropertyKey(); } break; @@ -2376,7 +2377,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 514; + this.state = 516; _la = this._input.LA(1); if(!(_la===4 || _la===118)) { this._errHandler.recoverInline(this); @@ -2385,9 +2386,9 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 515; + this.state = 517; this.match(FlinkSqlParser.KW_JAR); - this.state = 516; + this.state = 518; this.jarFileName(); } } @@ -2411,28 +2412,28 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 38, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 557; + this.state = 560; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 24, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 518; - this.match(FlinkSqlParser.KW_ADD); - this.state = 519; - this.match(FlinkSqlParser.KW_JAR); this.state = 520; - this.match(FlinkSqlParser.KW_WITH); + this.match(FlinkSqlParser.KW_ADD); this.state = 521; - this.match(FlinkSqlParser.FILE_PATH); - this.state = 524; + this.match(FlinkSqlParser.KW_JAR); + this.state = 522; + this.match(FlinkSqlParser.KW_WITH); + this.state = 523; + this.dtFilePath(); + this.state = 526; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 522; + this.state = 524; this.match(FlinkSqlParser.KW_AS); - this.state = 523; + this.state = 525; this.uid(); } } @@ -2442,34 +2443,34 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 526; - this.match(FlinkSqlParser.KW_ADD); - this.state = 527; - this.match(FlinkSqlParser.KW_FILE); this.state = 528; - this.match(FlinkSqlParser.KW_WITH); + this.match(FlinkSqlParser.KW_ADD); this.state = 529; - this.match(FlinkSqlParser.FILE_PATH); - this.state = 532; + this.match(FlinkSqlParser.KW_FILE); + this.state = 530; + this.match(FlinkSqlParser.KW_WITH); + this.state = 531; + this.dtFilePath(); + this.state = 534; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 530; + this.state = 532; this.match(FlinkSqlParser.KW_AS); - this.state = 531; + this.state = 533; this.uid(); } } - this.state = 536; + this.state = 538; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===119) { { - this.state = 534; + this.state = 536; this.match(FlinkSqlParser.KW_RENAME); - this.state = 535; + this.state = 537; this.uid(); } } @@ -2479,9 +2480,9 @@ export default class FlinkSqlParser extends Parser { case 3: this.enterOuterAlt(localctx, 3); { - this.state = 538; + this.state = 540; this.match(FlinkSqlParser.KW_ADD); - this.state = 539; + this.state = 541; _la = this._input.LA(1); if(!(((((_la - 108)) & ~0x1F) === 0 && ((1 << (_la - 108)) & 31) !== 0))) { this._errHandler.recoverInline(this); @@ -2490,47 +2491,47 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 540; - this.match(FlinkSqlParser.KW_WITH); - this.state = 541; - this.match(FlinkSqlParser.FILE_PATH); this.state = 542; - this.match(FlinkSqlParser.KW_RENAME); + this.match(FlinkSqlParser.KW_WITH); this.state = 543; + this.dtFilePath(); + this.state = 544; + this.match(FlinkSqlParser.KW_RENAME); + this.state = 545; this.uid(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 544; + this.state = 547; this.match(FlinkSqlParser.KW_ADD); - this.state = 545; + this.state = 548; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 546; - this.match(FlinkSqlParser.FILE_PATH); + this.state = 549; + this.dtFilePath(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 547; - this.match(FlinkSqlParser.KW_ADD); - this.state = 548; - this.match(FlinkSqlParser.KW_ENGINE); - this.state = 549; - this.match(FlinkSqlParser.KW_FILE); this.state = 550; - this.match(FlinkSqlParser.KW_WITH); + this.match(FlinkSqlParser.KW_ADD); this.state = 551; - this.match(FlinkSqlParser.FILE_PATH); + this.match(FlinkSqlParser.KW_ENGINE); this.state = 552; - this.match(FlinkSqlParser.KW_RENAME); + this.match(FlinkSqlParser.KW_FILE); this.state = 553; - this.uid(); + this.match(FlinkSqlParser.KW_WITH); this.state = 554; - this.match(FlinkSqlParser.KW_KEY); + this.dtFilePath(); this.state = 555; + this.match(FlinkSqlParser.KW_RENAME); + this.state = 556; + this.uid(); + this.state = 557; + this.match(FlinkSqlParser.KW_KEY); + this.state = 558; this.uid(); } break; @@ -2551,24 +2552,62 @@ export default class FlinkSqlParser extends Parser { return localctx; } // @RuleVersion(0) - public createTable(): CreateTableContext { - let localctx: CreateTableContext = new CreateTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 40, FlinkSqlParser.RULE_createTable); + public dtFilePath(): DtFilePathContext { + let localctx: DtFilePathContext = new DtFilePathContext(this, this._ctx, this.state); + this.enterRule(localctx, 40, FlinkSqlParser.RULE_dtFilePath); + let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 561; + this.state = 563; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 25, this._ctx) ) { + _la = this._input.LA(1); + do { + { + { + this.state = 562; + this.match(FlinkSqlParser.SLASH_TEXT); + } + } + this.state = 565; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while (_la===410); + } + } + 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 createTable(): CreateTableContext { + let localctx: CreateTableContext = new CreateTableContext(this, this._ctx, this.state); + this.enterRule(localctx, 42, FlinkSqlParser.RULE_createTable); + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 569; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 26, this._ctx) ) { case 1: { - this.state = 559; + this.state = 567; this.simpleCreateTable(); } break; case 2: { - this.state = 560; + this.state = 568; this.createTableAsSelect(); } break; @@ -2592,126 +2631,126 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public simpleCreateTable(): SimpleCreateTableContext { let localctx: SimpleCreateTableContext = new SimpleCreateTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 42, FlinkSqlParser.RULE_simpleCreateTable); + this.enterRule(localctx, 44, FlinkSqlParser.RULE_simpleCreateTable); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 563; + this.state = 571; this.match(FlinkSqlParser.KW_CREATE); - this.state = 565; + this.state = 573; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===150) { { - this.state = 564; + this.state = 572; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 567; + this.state = 575; this.match(FlinkSqlParser.KW_TABLE); - this.state = 569; + this.state = 577; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 27, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 28, this._ctx) ) { case 1: { - this.state = 568; + this.state = 576; this.ifNotExists(); } break; } - this.state = 571; + this.state = 579; this.sourceTable(); - this.state = 572; + this.state = 580; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 573; + this.state = 581; this.columnOptionDefinition(); - this.state = 578; + this.state = 586; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 28, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 29, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 574; + this.state = 582; this.match(FlinkSqlParser.COMMA); - this.state = 575; + this.state = 583; this.columnOptionDefinition(); } } } - this.state = 580; + this.state = 588; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 28, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 29, this._ctx); } - this.state = 583; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 29, this._ctx) ) { - case 1: - { - this.state = 581; - this.match(FlinkSqlParser.COMMA); - this.state = 582; - this.watermarkDefinition(); - } - break; - } - this.state = 587; + this.state = 591; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 30, this._ctx) ) { case 1: { - this.state = 585; + this.state = 589; this.match(FlinkSqlParser.COMMA); - this.state = 586; + this.state = 590; + this.watermarkDefinition(); + } + break; + } + this.state = 595; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 31, this._ctx) ) { + case 1: + { + this.state = 593; + this.match(FlinkSqlParser.COMMA); + this.state = 594; this.tableConstraint(); } break; } - this.state = 591; + this.state = 599; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===388) { { - this.state = 589; + this.state = 597; this.match(FlinkSqlParser.COMMA); - this.state = 590; + this.state = 598; this.selfDefinitionClause(); } } - this.state = 593; + this.state = 601; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 595; + this.state = 603; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 594; + this.state = 602; this.commentSpec(); } } - this.state = 598; + this.state = 606; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===95) { { - this.state = 597; + this.state = 605; this.partitionDefinition(); } } - this.state = 600; + this.state = 608; this.withOption(); - this.state = 602; + this.state = 610; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===280) { { - this.state = 601; + this.state = 609; this.likeDefinition(); } } @@ -2735,37 +2774,37 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public createTableAsSelect(): CreateTableAsSelectContext { let localctx: CreateTableAsSelectContext = new CreateTableAsSelectContext(this, this._ctx, this.state); - this.enterRule(localctx, 44, FlinkSqlParser.RULE_createTableAsSelect); + this.enterRule(localctx, 46, FlinkSqlParser.RULE_createTableAsSelect); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 604; + this.state = 612; this.match(FlinkSqlParser.KW_CREATE); - this.state = 605; + this.state = 613; this.match(FlinkSqlParser.KW_TABLE); - this.state = 607; + this.state = 615; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 35, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 36, this._ctx) ) { case 1: { - this.state = 606; + this.state = 614; this.ifNotExists(); } break; } - this.state = 609; + this.state = 617; this.sourceTable(); - this.state = 610; + this.state = 618; this.withOption(); - this.state = 613; + this.state = 621; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 611; + this.state = 619; this.match(FlinkSqlParser.KW_AS); - this.state = 612; + this.state = 620; this.queryStatement(0); } } @@ -2789,29 +2828,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnOptionDefinition(): ColumnOptionDefinitionContext { let localctx: ColumnOptionDefinitionContext = new ColumnOptionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 46, FlinkSqlParser.RULE_columnOptionDefinition); + this.enterRule(localctx, 48, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 618; + this.state = 626; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 37, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 38, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 615; + this.state = 623; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 616; + this.state = 624; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 617; + this.state = 625; this.computedColumnDefinition(); } break; @@ -2834,31 +2873,31 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public physicalColumnDefinition(): PhysicalColumnDefinitionContext { let localctx: PhysicalColumnDefinitionContext = new PhysicalColumnDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 48, FlinkSqlParser.RULE_physicalColumnDefinition); + this.enterRule(localctx, 50, FlinkSqlParser.RULE_physicalColumnDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 620; + this.state = 628; this.columnName(); - this.state = 621; + this.state = 629; this.columnType(); - this.state = 623; + this.state = 631; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===215 || ((((_la - 298)) & ~0x1F) === 0 && ((1 << (_la - 298)) & 1048579) !== 0)) { { - this.state = 622; + this.state = 630; this.columnConstraint(); } } - this.state = 626; + this.state = 634; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 625; + this.state = 633; this.commentSpec(); } } @@ -2882,22 +2921,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnName(): ColumnNameContext { let localctx: ColumnNameContext = new ColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 50, FlinkSqlParser.RULE_columnName); + this.enterRule(localctx, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 630; + this.state = 638; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 40, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 41, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 628; + this.state = 636; this.uid(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 629; + this.state = 637; this.expression(); } break; @@ -2920,32 +2959,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnNameList(): ColumnNameListContext { let localctx: ColumnNameListContext = new ColumnNameListContext(this, this._ctx, this.state); - this.enterRule(localctx, 52, FlinkSqlParser.RULE_columnNameList); + this.enterRule(localctx, 54, FlinkSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 632; + this.state = 640; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 633; + this.state = 641; this.columnName(); - this.state = 638; + this.state = 646; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 634; + this.state = 642; this.match(FlinkSqlParser.COMMA); - this.state = 635; + this.state = 643; this.columnName(); } } - this.state = 640; + this.state = 648; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 641; + this.state = 649; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2966,10 +3005,10 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnType(): ColumnTypeContext { let localctx: ColumnTypeContext = new ColumnTypeContext(this, this._ctx, this.state); - this.enterRule(localctx, 54, FlinkSqlParser.RULE_columnType); + this.enterRule(localctx, 56, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 680; + this.state = 688; this._errHandler.sync(this); switch (this._input.LA(1)) { case 195: @@ -2977,7 +3016,7 @@ export default class FlinkSqlParser extends Parser { case 299: this.enterOuterAlt(localctx, 1); { - this.state = 643; + this.state = 651; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); if(!(_la===195 || _la===225 || _la===299)) { @@ -3005,7 +3044,7 @@ export default class FlinkSqlParser extends Parser { case 365: this.enterOuterAlt(localctx, 2); { - this.state = 644; + this.state = 652; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); if(!(_la===10 || _la===146 || _la===152 || ((((_la - 191)) & ~0x1F) === 0 && ((1 << (_la - 191)) & 8195) !== 0) || _la===226 || _la===268 || _la===269 || ((((_la - 335)) & ~0x1F) === 0 && ((1 << (_la - 335)) & 1610633217) !== 0))) { @@ -3015,12 +3054,12 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 646; + this.state = 654; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 645; + this.state = 653; this.lengthOneDimension(); } } @@ -3030,24 +3069,24 @@ export default class FlinkSqlParser extends Parser { case 348: this.enterOuterAlt(localctx, 3); { - this.state = 648; + this.state = 656; localctx._typeName = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 650; + this.state = 658; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 649; + this.state = 657; this.lengthOneDimension(); } } - this.state = 658; + this.state = 666; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===369 || _la===371) { { - this.state = 652; + this.state = 660; _la = this._input.LA(1); if(!(_la===369 || _la===371)) { this._errHandler.recoverInline(this); @@ -3056,19 +3095,19 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 654; + this.state = 662; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===282) { { - this.state = 653; + this.state = 661; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 656; + this.state = 664; this.match(FlinkSqlParser.KW_TIME); - this.state = 657; + this.state = 665; this.match(FlinkSqlParser.KW_ZONE); } } @@ -3082,7 +3121,7 @@ export default class FlinkSqlParser extends Parser { case 300: this.enterOuterAlt(localctx, 4); { - this.state = 660; + this.state = 668; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); if(!(((((_la - 228)) & ~0x1F) === 0 && ((1 << (_la - 228)) & 4194563) !== 0) || _la===300)) { @@ -3092,12 +3131,12 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 662; + this.state = 670; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 661; + this.state = 669; this.lengthTwoOptionalDimension(); } } @@ -3108,7 +3147,7 @@ export default class FlinkSqlParser extends Parser { case 293: this.enterOuterAlt(localctx, 5); { - this.state = 664; + this.state = 672; localctx._type_ = this._input.LT(1); _la = this._input.LA(1); if(!(_la===184 || _la===293)) { @@ -3118,12 +3157,12 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 666; + this.state = 674; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===375) { { - this.state = 665; + this.state = 673; this.lengthOneTypeDimension(); } } @@ -3133,14 +3172,14 @@ export default class FlinkSqlParser extends Parser { case 77: this.enterOuterAlt(localctx, 6); { - this.state = 668; + this.state = 676; localctx._type_ = this.match(FlinkSqlParser.KW_MAP); - this.state = 670; + this.state = 678; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===375) { { - this.state = 669; + this.state = 677; this.mapTypeDimension(); } } @@ -3150,14 +3189,14 @@ export default class FlinkSqlParser extends Parser { case 327: this.enterOuterAlt(localctx, 7); { - this.state = 672; + this.state = 680; localctx._type_ = this.match(FlinkSqlParser.KW_ROW); - this.state = 674; + this.state = 682; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===375) { { - this.state = 673; + this.state = 681; this.rowTypeDimension(); } } @@ -3167,14 +3206,14 @@ export default class FlinkSqlParser extends Parser { case 115: this.enterOuterAlt(localctx, 8); { - this.state = 676; + this.state = 684; localctx._type_ = this.match(FlinkSqlParser.KW_RAW); - this.state = 678; + this.state = 686; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 677; + this.state = 685; this.lengthTwoStringDimension(); } } @@ -3202,15 +3241,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public lengthOneDimension(): LengthOneDimensionContext { let localctx: LengthOneDimensionContext = new LengthOneDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 56, FlinkSqlParser.RULE_lengthOneDimension); + this.enterRule(localctx, 58, FlinkSqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localctx, 1); { - this.state = 682; + this.state = 690; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 683; + this.state = 691; this.decimalLiteral(); - this.state = 684; + this.state = 692; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3231,49 +3270,7 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localctx: LengthTwoOptionalDimensionContext = new LengthTwoOptionalDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 58, FlinkSqlParser.RULE_lengthTwoOptionalDimension); - let _la: number; - try { - this.enterOuterAlt(localctx, 1); - { - this.state = 686; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 687; - this.decimalLiteral(); - this.state = 690; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la===388) { - { - this.state = 688; - this.match(FlinkSqlParser.COMMA); - this.state = 689; - this.decimalLiteral(); - } - } - - this.state = 692; - this.match(FlinkSqlParser.RR_BRACKET); - } - } - 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 lengthTwoStringDimension(): LengthTwoStringDimensionContext { - let localctx: LengthTwoStringDimensionContext = new LengthTwoStringDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 60, FlinkSqlParser.RULE_lengthTwoStringDimension); + this.enterRule(localctx, 60, FlinkSqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localctx, 1); @@ -3281,7 +3278,7 @@ export default class FlinkSqlParser extends Parser { this.state = 694; this.match(FlinkSqlParser.LR_BRACKET); this.state = 695; - this.stringLiteral(); + this.decimalLiteral(); this.state = 698; this._errHandler.sync(this); _la = this._input.LA(1); @@ -3290,7 +3287,7 @@ export default class FlinkSqlParser extends Parser { this.state = 696; this.match(FlinkSqlParser.COMMA); this.state = 697; - this.stringLiteral(); + this.decimalLiteral(); } } @@ -3313,17 +3310,59 @@ export default class FlinkSqlParser extends Parser { return localctx; } // @RuleVersion(0) - public lengthOneTypeDimension(): LengthOneTypeDimensionContext { - let localctx: LengthOneTypeDimensionContext = new LengthOneTypeDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 62, FlinkSqlParser.RULE_lengthOneTypeDimension); + public lengthTwoStringDimension(): LengthTwoStringDimensionContext { + let localctx: LengthTwoStringDimensionContext = new LengthTwoStringDimensionContext(this, this._ctx, this.state); + this.enterRule(localctx, 62, FlinkSqlParser.RULE_lengthTwoStringDimension); + let _la: number; try { this.enterOuterAlt(localctx, 1); { this.state = 702; - this.match(FlinkSqlParser.LESS_SYMBOL); + this.match(FlinkSqlParser.LR_BRACKET); this.state = 703; + this.stringLiteral(); + this.state = 706; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===388) { + { + this.state = 704; + this.match(FlinkSqlParser.COMMA); + this.state = 705; + this.stringLiteral(); + } + } + + this.state = 708; + this.match(FlinkSqlParser.RR_BRACKET); + } + } + 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 lengthOneTypeDimension(): LengthOneTypeDimensionContext { + let localctx: LengthOneTypeDimensionContext = new LengthOneTypeDimensionContext(this, this._ctx, this.state); + this.enterRule(localctx, 64, FlinkSqlParser.RULE_lengthOneTypeDimension); + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 710; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 711; this.columnType(); - this.state = 704; + this.state = 712; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3344,21 +3383,21 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public mapTypeDimension(): MapTypeDimensionContext { let localctx: MapTypeDimensionContext = new MapTypeDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 64, FlinkSqlParser.RULE_mapTypeDimension); + this.enterRule(localctx, 66, FlinkSqlParser.RULE_mapTypeDimension); try { this.enterOuterAlt(localctx, 1); { - this.state = 706; + this.state = 714; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 707; + this.state = 715; this.columnType(); { - this.state = 708; + this.state = 716; this.match(FlinkSqlParser.COMMA); - this.state = 709; + this.state = 717; this.columnType(); } - this.state = 711; + this.state = 719; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3379,36 +3418,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public rowTypeDimension(): RowTypeDimensionContext { let localctx: RowTypeDimensionContext = new RowTypeDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 66, FlinkSqlParser.RULE_rowTypeDimension); + this.enterRule(localctx, 68, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 713; + this.state = 721; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 714; - this.columnName(); - this.state = 715; - this.columnType(); this.state = 722; + this.columnName(); + this.state = 723; + this.columnType(); + this.state = 730; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 716; + this.state = 724; this.match(FlinkSqlParser.COMMA); - this.state = 717; + this.state = 725; this.columnName(); - this.state = 718; + this.state = 726; this.columnType(); } } - this.state = 724; + this.state = 732; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 725; + this.state = 733; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3429,40 +3468,40 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnConstraint(): ColumnConstraintContext { let localctx: ColumnConstraintContext = new ColumnConstraintContext(this, this._ctx, this.state); - this.enterRule(localctx, 68, FlinkSqlParser.RULE_columnConstraint); + this.enterRule(localctx, 70, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 741; + this.state = 749; this._errHandler.sync(this); switch (this._input.LA(1)) { case 215: case 318: this.enterOuterAlt(localctx, 1); { - this.state = 729; + this.state = 737; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===215) { { - this.state = 727; + this.state = 735; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 728; + this.state = 736; this.constraintName(); } } - this.state = 731; + this.state = 739; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 732; + this.state = 740; this.match(FlinkSqlParser.KW_KEY); - this.state = 735; + this.state = 743; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 733; + this.state = 741; this.match(FlinkSqlParser.KW_NOT); - this.state = 734; + this.state = 742; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3473,17 +3512,17 @@ export default class FlinkSqlParser extends Parser { case 299: this.enterOuterAlt(localctx, 2); { - this.state = 738; + this.state = 746; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 737; + this.state = 745; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 740; + this.state = 748; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3508,13 +3547,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public commentSpec(): CommentSpecContext { let localctx: CommentSpecContext = new CommentSpecContext(this, this._ctx, this.state); - this.enterRule(localctx, 70, FlinkSqlParser.RULE_commentSpec); + this.enterRule(localctx, 72, FlinkSqlParser.RULE_commentSpec); try { this.enterOuterAlt(localctx, 1); { - this.state = 743; + this.state = 751; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 744; + this.state = 752; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3535,35 +3574,35 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public metadataColumnDefinition(): MetadataColumnDefinitionContext { let localctx: MetadataColumnDefinitionContext = new MetadataColumnDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 72, FlinkSqlParser.RULE_metadataColumnDefinition); + this.enterRule(localctx, 74, FlinkSqlParser.RULE_metadataColumnDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 746; + this.state = 754; this.columnName(); - this.state = 747; + this.state = 755; this.columnType(); - this.state = 748; + this.state = 756; this.match(FlinkSqlParser.KW_METADATA); - this.state = 751; + this.state = 759; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===252) { { - this.state = 749; + this.state = 757; this.match(FlinkSqlParser.KW_FROM); - this.state = 750; + this.state = 758; this.metadataKey(); } } - this.state = 754; + this.state = 762; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===168) { { - this.state = 753; + this.state = 761; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3587,11 +3626,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public metadataKey(): MetadataKeyContext { let localctx: MetadataKeyContext = new MetadataKeyContext(this, this._ctx, this.state); - this.enterRule(localctx, 74, FlinkSqlParser.RULE_metadataKey); + this.enterRule(localctx, 76, FlinkSqlParser.RULE_metadataKey); try { this.enterOuterAlt(localctx, 1); { - this.state = 756; + this.state = 764; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3612,23 +3651,23 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public computedColumnDefinition(): ComputedColumnDefinitionContext { let localctx: ComputedColumnDefinitionContext = new ComputedColumnDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 76, FlinkSqlParser.RULE_computedColumnDefinition); + this.enterRule(localctx, 78, FlinkSqlParser.RULE_computedColumnDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 758; + this.state = 766; this.columnName(); - this.state = 759; + this.state = 767; this.match(FlinkSqlParser.KW_AS); - this.state = 760; + this.state = 768; this.computedColumnExpression(); - this.state = 762; + this.state = 770; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 761; + this.state = 769; this.commentSpec(); } } @@ -3652,11 +3691,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public computedColumnExpression(): ComputedColumnExpressionContext { let localctx: ComputedColumnExpressionContext = new ComputedColumnExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 78, FlinkSqlParser.RULE_computedColumnExpression); + this.enterRule(localctx, 80, FlinkSqlParser.RULE_computedColumnExpression); try { this.enterOuterAlt(localctx, 1); { - this.state = 764; + this.state = 772; this.expression(); } } @@ -3677,19 +3716,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public watermarkDefinition(): WatermarkDefinitionContext { let localctx: WatermarkDefinitionContext = new WatermarkDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 80, FlinkSqlParser.RULE_watermarkDefinition); + this.enterRule(localctx, 82, FlinkSqlParser.RULE_watermarkDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 766; + this.state = 774; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 767; + this.state = 775; this.match(FlinkSqlParser.KW_FOR); - this.state = 768; + this.state = 776; this.expression(); - this.state = 769; + this.state = 777; this.match(FlinkSqlParser.KW_AS); - this.state = 770; + this.state = 778; this.expression(); } } @@ -3710,32 +3749,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableConstraint(): TableConstraintContext { let localctx: TableConstraintContext = new TableConstraintContext(this, this._ctx, this.state); - this.enterRule(localctx, 82, FlinkSqlParser.RULE_tableConstraint); + this.enterRule(localctx, 84, FlinkSqlParser.RULE_tableConstraint); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 774; + this.state = 782; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===215) { { - this.state = 772; + this.state = 780; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 773; + this.state = 781; this.constraintName(); } } - this.state = 776; + this.state = 784; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 777; + this.state = 785; this.match(FlinkSqlParser.KW_KEY); - this.state = 778; + this.state = 786; this.columnNameList(); - this.state = 779; + this.state = 787; this.match(FlinkSqlParser.KW_NOT); - this.state = 780; + this.state = 788; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3756,11 +3795,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public constraintName(): ConstraintNameContext { let localctx: ConstraintNameContext = new ConstraintNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 84, FlinkSqlParser.RULE_constraintName); + this.enterRule(localctx, 86, FlinkSqlParser.RULE_constraintName); try { this.enterOuterAlt(localctx, 1); { - this.state = 782; + this.state = 790; this.identifier(); } } @@ -3781,15 +3820,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public selfDefinitionClause(): SelfDefinitionClauseContext { let localctx: SelfDefinitionClauseContext = new SelfDefinitionClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 86, FlinkSqlParser.RULE_selfDefinitionClause); + this.enterRule(localctx, 88, FlinkSqlParser.RULE_selfDefinitionClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 784; + this.state = 792; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 785; + this.state = 793; this.match(FlinkSqlParser.KW_FOR); - this.state = 786; + this.state = 794; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3810,15 +3849,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public partitionDefinition(): PartitionDefinitionContext { let localctx: PartitionDefinitionContext = new PartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 88, FlinkSqlParser.RULE_partitionDefinition); + this.enterRule(localctx, 90, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 788; + this.state = 796; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 789; + this.state = 797; this.match(FlinkSqlParser.KW_BY); - this.state = 790; + this.state = 798; this.transformList(); } } @@ -3839,32 +3878,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public transformList(): TransformListContext { let localctx: TransformListContext = new TransformListContext(this, this._ctx, this.state); - this.enterRule(localctx, 90, FlinkSqlParser.RULE_transformList); + this.enterRule(localctx, 92, FlinkSqlParser.RULE_transformList); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 792; + this.state = 800; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 793; + this.state = 801; this.transform(); - this.state = 798; + this.state = 806; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 794; + this.state = 802; this.match(FlinkSqlParser.COMMA); - this.state = 795; + this.state = 803; this.transform(); } } - this.state = 800; + this.state = 808; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 801; + this.state = 809; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3885,17 +3924,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public transform(): TransformContext { let localctx: TransformContext = new TransformContext(this, this._ctx, this.state); - this.enterRule(localctx, 92, FlinkSqlParser.RULE_transform); + this.enterRule(localctx, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 816; + this.state = 824; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 65, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 66, this._ctx) ) { case 1: localctx = new IdentityTransformContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 803; + this.state = 811; this.qualifiedName(); } break; @@ -3903,29 +3942,29 @@ export default class FlinkSqlParser extends Parser { localctx = new ApplyTransformContext(this, localctx); this.enterOuterAlt(localctx, 2); { - this.state = 804; + this.state = 812; (localctx as ApplyTransformContext)._transformName = this.identifier(); - this.state = 805; + this.state = 813; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 806; + this.state = 814; this.transformArgument(); - this.state = 811; + this.state = 819; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 807; + this.state = 815; this.match(FlinkSqlParser.COMMA); - this.state = 808; + this.state = 816; this.transformArgument(); } } - this.state = 813; + this.state = 821; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 814; + this.state = 822; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3948,22 +3987,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public transformArgument(): TransformArgumentContext { let localctx: TransformArgumentContext = new TransformArgumentContext(this, this._ctx, this.state); - this.enterRule(localctx, 94, FlinkSqlParser.RULE_transformArgument); + this.enterRule(localctx, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 820; + this.state = 828; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 66, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 67, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 818; + this.state = 826; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 819; + this.state = 827; this.constant(); } break; @@ -3986,37 +4025,37 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public likeDefinition(): LikeDefinitionContext { let localctx: LikeDefinitionContext = new LikeDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 96, FlinkSqlParser.RULE_likeDefinition); + this.enterRule(localctx, 98, FlinkSqlParser.RULE_likeDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 822; + this.state = 830; this.match(FlinkSqlParser.KW_LIKE); - this.state = 823; + this.state = 831; this.sourceTable(); - this.state = 832; + this.state = 840; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 68, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 69, this._ctx) ) { case 1: { - this.state = 824; + this.state = 832; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 828; + this.state = 836; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===41 || _la===94 || _la===264) { { { - this.state = 825; + this.state = 833; this.likeOption(); } } - this.state = 830; + this.state = 838; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 831; + this.state = 839; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -4040,11 +4079,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public sourceTable(): SourceTableContext { let localctx: SourceTableContext = new SourceTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 98, FlinkSqlParser.RULE_sourceTable); + this.enterRule(localctx, 100, FlinkSqlParser.RULE_sourceTable); try { this.enterOuterAlt(localctx, 1); { - this.state = 834; + this.state = 842; this.uid(); } } @@ -4065,17 +4104,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public likeOption(): LikeOptionContext { let localctx: LikeOptionContext = new LikeOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 100, FlinkSqlParser.RULE_likeOption); + this.enterRule(localctx, 102, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 840; + this.state = 848; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 69, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 70, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 836; + this.state = 844; _la = this._input.LA(1); if(!(_la===41 || _la===264)) { this._errHandler.recoverInline(this); @@ -4084,7 +4123,7 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 837; + this.state = 845; _la = this._input.LA(1); if(!(_la===21 || _la===96 || _la===178)) { this._errHandler.recoverInline(this); @@ -4100,7 +4139,7 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 2); { { - this.state = 838; + this.state = 846; _la = this._input.LA(1); if(!(_la===41 || _la===94 || _la===264)) { this._errHandler.recoverInline(this); @@ -4109,7 +4148,7 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 839; + this.state = 847; _la = this._input.LA(1); if(!(_la===53 || _la===90 || _la===170)) { this._errHandler.recoverInline(this); @@ -4140,17 +4179,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public createCatalog(): CreateCatalogContext { let localctx: CreateCatalogContext = new CreateCatalogContext(this, this._ctx, this.state); - this.enterRule(localctx, 102, FlinkSqlParser.RULE_createCatalog); + this.enterRule(localctx, 104, FlinkSqlParser.RULE_createCatalog); try { this.enterOuterAlt(localctx, 1); { - this.state = 842; + this.state = 850; this.match(FlinkSqlParser.KW_CREATE); - this.state = 843; + this.state = 851; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 844; + this.state = 852; this.uid(); - this.state = 845; + this.state = 853; this.withOption(); } } @@ -4171,38 +4210,38 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public createDatabase(): CreateDatabaseContext { let localctx: CreateDatabaseContext = new CreateDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 104, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localctx, 106, FlinkSqlParser.RULE_createDatabase); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 847; + this.state = 855; this.match(FlinkSqlParser.KW_CREATE); - this.state = 848; + this.state = 856; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 850; + this.state = 858; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 70, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 71, this._ctx) ) { case 1: { - this.state = 849; + this.state = 857; this.ifNotExists(); } break; } - this.state = 852; + this.state = 860; this.uid(); - this.state = 854; + this.state = 862; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 853; + this.state = 861; this.commentSpec(); } } - this.state = 856; + this.state = 864; this.withOption(); } } @@ -4223,60 +4262,60 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public createView(): CreateViewContext { let localctx: CreateViewContext = new CreateViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 106, FlinkSqlParser.RULE_createView); + this.enterRule(localctx, 108, FlinkSqlParser.RULE_createView); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 858; + this.state = 866; this.match(FlinkSqlParser.KW_CREATE); - this.state = 860; + this.state = 868; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===150) { { - this.state = 859; + this.state = 867; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 862; + this.state = 870; this.match(FlinkSqlParser.KW_VIEW); - this.state = 864; + this.state = 872; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 73, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 74, this._ctx) ) { case 1: { - this.state = 863; + this.state = 871; this.ifNotExists(); } break; } - this.state = 866; + this.state = 874; this.uid(); - this.state = 868; + this.state = 876; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 867; + this.state = 875; this.columnNameList(); } } - this.state = 871; + this.state = 879; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 870; + this.state = 878; this.commentSpec(); } } - this.state = 873; + this.state = 881; this.match(FlinkSqlParser.KW_AS); - this.state = 874; + this.state = 882; this.queryStatement(0); } } @@ -4297,57 +4336,57 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public createFunction(): CreateFunctionContext { let localctx: CreateFunctionContext = new CreateFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 108, FlinkSqlParser.RULE_createFunction); + this.enterRule(localctx, 110, FlinkSqlParser.RULE_createFunction); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 876; + this.state = 884; this.match(FlinkSqlParser.KW_CREATE); - this.state = 880; + this.state = 888; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 76, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 77, this._ctx) ) { case 1: { - this.state = 877; + this.state = 885; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 878; + this.state = 886; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 879; + this.state = 887; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 882; + this.state = 890; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 884; + this.state = 892; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 77, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 78, this._ctx) ) { case 1: { - this.state = 883; + this.state = 891; this.ifNotExists(); } break; } - this.state = 886; + this.state = 894; this.uid(); - this.state = 887; + this.state = 895; this.match(FlinkSqlParser.KW_AS); - this.state = 888; + this.state = 896; this.identifier(); - this.state = 891; + this.state = 899; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===276) { { - this.state = 889; + this.state = 897; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 890; + this.state = 898; _la = this._input.LA(1); if(!(_la===66 || _la===107 || _la===126)) { this._errHandler.recoverInline(this); @@ -4359,12 +4398,12 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 894; + this.state = 902; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===361) { { - this.state = 893; + this.state = 901; this.usingClause(); } } @@ -4388,32 +4427,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public usingClause(): UsingClauseContext { let localctx: UsingClauseContext = new UsingClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 110, FlinkSqlParser.RULE_usingClause); + this.enterRule(localctx, 112, FlinkSqlParser.RULE_usingClause); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 896; - this.match(FlinkSqlParser.KW_USING); - this.state = 897; - this.match(FlinkSqlParser.KW_JAR); - this.state = 898; - this.jarFileName(); this.state = 904; + this.match(FlinkSqlParser.KW_USING); + this.state = 905; + this.match(FlinkSqlParser.KW_JAR); + this.state = 906; + this.jarFileName(); + this.state = 912; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 899; + this.state = 907; this.match(FlinkSqlParser.COMMA); - this.state = 900; + this.state = 908; this.match(FlinkSqlParser.KW_JAR); - this.state = 901; + this.state = 909; this.jarFileName(); } } - this.state = 906; + this.state = 914; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -4436,11 +4475,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public jarFileName(): JarFileNameContext { let localctx: JarFileNameContext = new JarFileNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 112, FlinkSqlParser.RULE_jarFileName); + this.enterRule(localctx, 114, FlinkSqlParser.RULE_jarFileName); try { this.enterOuterAlt(localctx, 1); { - this.state = 907; + this.state = 915; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4461,56 +4500,56 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public alterTable(): AlterTableContext { let localctx: AlterTableContext = new AlterTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 114, FlinkSqlParser.RULE_alterTable); + this.enterRule(localctx, 116, FlinkSqlParser.RULE_alterTable); try { this.enterOuterAlt(localctx, 1); { - this.state = 909; + this.state = 917; this.match(FlinkSqlParser.KW_ALTER); - this.state = 910; + this.state = 918; this.match(FlinkSqlParser.KW_TABLE); - this.state = 912; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 81, this._ctx) ) { - case 1: - { - this.state = 911; - this.ifExists(); - } - break; - } - this.state = 914; - this.uid(); this.state = 920; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 82, this._ctx) ) { case 1: { - this.state = 915; + this.state = 919; + this.ifExists(); + } + break; + } + this.state = 922; + this.uid(); + this.state = 928; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 83, this._ctx) ) { + case 1: + { + this.state = 923; this.renameDefinition(); } break; case 2: { - this.state = 916; + this.state = 924; this.setKeyValueDefinition(); } break; case 3: { - this.state = 917; + this.state = 925; this.addConstraint(); } break; case 4: { - this.state = 918; + this.state = 926; this.dropConstraint(); } break; case 5: { - this.state = 919; + this.state = 927; this.addUnique(); } break; @@ -4534,26 +4573,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public renameDefinition(): RenameDefinitionContext { let localctx: RenameDefinitionContext = new RenameDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 116, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localctx, 118, FlinkSqlParser.RULE_renameDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 922; + this.state = 930; this.match(FlinkSqlParser.KW_RENAME); - this.state = 924; + this.state = 932; this._errHandler.sync(this); _la = this._input.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967279) !== 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)) & 126975) !== 0) || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 19) !== 0)) { { - this.state = 923; + this.state = 931; this.uid(); } } - this.state = 926; + this.state = 934; this.match(FlinkSqlParser.KW_TO); - this.state = 927; + this.state = 935; this.uid(); } } @@ -4574,13 +4613,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public setKeyValueDefinition(): SetKeyValueDefinitionContext { let localctx: SetKeyValueDefinitionContext = new SetKeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 118, FlinkSqlParser.RULE_setKeyValueDefinition); + this.enterRule(localctx, 120, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 929; + this.state = 937; this.match(FlinkSqlParser.KW_SET); - this.state = 930; + this.state = 938; this.tablePropertyList(); } } @@ -4601,29 +4640,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public addConstraint(): AddConstraintContext { let localctx: AddConstraintContext = new AddConstraintContext(this, this._ctx, this.state); - this.enterRule(localctx, 120, FlinkSqlParser.RULE_addConstraint); + this.enterRule(localctx, 122, FlinkSqlParser.RULE_addConstraint); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 932; + this.state = 940; this.match(FlinkSqlParser.KW_ADD); - this.state = 933; + this.state = 941; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 934; + this.state = 942; this.constraintName(); - this.state = 935; + this.state = 943; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 936; + this.state = 944; this.match(FlinkSqlParser.KW_KEY); - this.state = 937; + this.state = 945; this.columnNameList(); - this.state = 939; + this.state = 947; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 938; + this.state = 946; this.notForced(); } } @@ -4647,15 +4686,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropConstraint(): DropConstraintContext { let localctx: DropConstraintContext = new DropConstraintContext(this, this._ctx, this.state); - this.enterRule(localctx, 122, FlinkSqlParser.RULE_dropConstraint); + this.enterRule(localctx, 124, FlinkSqlParser.RULE_dropConstraint); try { this.enterOuterAlt(localctx, 1); { - this.state = 941; + this.state = 949; this.match(FlinkSqlParser.KW_DROP); - this.state = 942; + this.state = 950; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 943; + this.state = 951; this.constraintName(); } } @@ -4676,15 +4715,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public addUnique(): AddUniqueContext { let localctx: AddUniqueContext = new AddUniqueContext(this, this._ctx, this.state); - this.enterRule(localctx, 124, FlinkSqlParser.RULE_addUnique); + this.enterRule(localctx, 126, FlinkSqlParser.RULE_addUnique); try { this.enterOuterAlt(localctx, 1); { - this.state = 945; + this.state = 953; this.match(FlinkSqlParser.KW_ADD); - this.state = 946; + this.state = 954; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 947; + this.state = 955; this.columnNameList(); } } @@ -4705,13 +4744,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public notForced(): NotForcedContext { let localctx: NotForcedContext = new NotForcedContext(this, this._ctx, this.state); - this.enterRule(localctx, 126, FlinkSqlParser.RULE_notForced); + this.enterRule(localctx, 128, FlinkSqlParser.RULE_notForced); try { this.enterOuterAlt(localctx, 1); { - this.state = 949; + this.state = 957; this.match(FlinkSqlParser.KW_NOT); - this.state = 950; + this.state = 958; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4732,30 +4771,30 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public alertView(): AlertViewContext { let localctx: AlertViewContext = new AlertViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 128, FlinkSqlParser.RULE_alertView); + this.enterRule(localctx, 130, FlinkSqlParser.RULE_alertView); try { this.enterOuterAlt(localctx, 1); { - this.state = 952; + this.state = 960; this.match(FlinkSqlParser.KW_ALTER); - this.state = 953; + this.state = 961; this.match(FlinkSqlParser.KW_VIEW); - this.state = 954; + this.state = 962; this.uid(); - this.state = 958; + this.state = 966; this._errHandler.sync(this); switch (this._input.LA(1)) { case 119: { - this.state = 955; + this.state = 963; this.renameDefinition(); } break; case 185: { - this.state = 956; + this.state = 964; this.match(FlinkSqlParser.KW_AS); - this.state = 957; + this.state = 965; this.queryStatement(0); } break; @@ -4781,17 +4820,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public alterDatabase(): AlterDatabaseContext { let localctx: AlterDatabaseContext = new AlterDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 130, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localctx, 132, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); { - this.state = 960; + this.state = 968; this.match(FlinkSqlParser.KW_ALTER); - this.state = 961; + this.state = 969; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 962; + this.state = 970; this.uid(); - this.state = 963; + this.state = 971; this.setKeyValueDefinition(); } } @@ -4812,57 +4851,57 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public alterFunction(): AlterFunctionContext { let localctx: AlterFunctionContext = new AlterFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 132, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localctx, 134, FlinkSqlParser.RULE_alterFunction); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 965; + this.state = 973; this.match(FlinkSqlParser.KW_ALTER); - this.state = 969; + this.state = 977; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 86, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 87, this._ctx) ) { case 1: { - this.state = 966; + this.state = 974; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 967; + this.state = 975; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 968; + this.state = 976; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 971; + this.state = 979; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 973; + this.state = 981; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 87, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 88, this._ctx) ) { case 1: { - this.state = 972; + this.state = 980; this.ifExists(); } break; } - this.state = 975; + this.state = 983; this.uid(); - this.state = 976; + this.state = 984; this.match(FlinkSqlParser.KW_AS); - this.state = 977; + this.state = 985; this.identifier(); - this.state = 980; + this.state = 988; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===276) { { - this.state = 978; + this.state = 986; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 979; + this.state = 987; _la = this._input.LA(1); if(!(_la===66 || _la===107 || _la===126)) { this._errHandler.recoverInline(this); @@ -4893,25 +4932,25 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropCatalog(): DropCatalogContext { let localctx: DropCatalogContext = new DropCatalogContext(this, this._ctx, this.state); - this.enterRule(localctx, 134, FlinkSqlParser.RULE_dropCatalog); + this.enterRule(localctx, 136, FlinkSqlParser.RULE_dropCatalog); try { this.enterOuterAlt(localctx, 1); { - this.state = 982; + this.state = 990; this.match(FlinkSqlParser.KW_DROP); - this.state = 983; + this.state = 991; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 985; + this.state = 993; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 89, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 90, this._ctx) ) { case 1: { - this.state = 984; + this.state = 992; this.ifExists(); } break; } - this.state = 987; + this.state = 995; this.uid(); } } @@ -4932,36 +4971,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropTable(): DropTableContext { let localctx: DropTableContext = new DropTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 136, FlinkSqlParser.RULE_dropTable); + this.enterRule(localctx, 138, FlinkSqlParser.RULE_dropTable); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 989; + this.state = 997; this.match(FlinkSqlParser.KW_DROP); - this.state = 991; + this.state = 999; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===150) { { - this.state = 990; + this.state = 998; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 993; + this.state = 1001; this.match(FlinkSqlParser.KW_TABLE); - this.state = 995; + this.state = 1003; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 91, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 92, this._ctx) ) { case 1: { - this.state = 994; + this.state = 1002; this.ifExists(); } break; } - this.state = 997; + this.state = 1005; this.uid(); } } @@ -4982,33 +5021,33 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropDatabase(): DropDatabaseContext { let localctx: DropDatabaseContext = new DropDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 138, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localctx, 140, FlinkSqlParser.RULE_dropDatabase); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 999; + this.state = 1007; this.match(FlinkSqlParser.KW_DROP); - this.state = 1000; + this.state = 1008; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1002; + this.state = 1010; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 92, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 93, this._ctx) ) { case 1: { - this.state = 1001; + this.state = 1009; this.ifExists(); } break; } - this.state = 1004; + this.state = 1012; this.uid(); - this.state = 1006; + this.state = 1014; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===11 || _la===123) { { - this.state = 1005; + this.state = 1013; localctx._dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===11 || _la===123)) { @@ -5040,36 +5079,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropView(): DropViewContext { let localctx: DropViewContext = new DropViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 140, FlinkSqlParser.RULE_dropView); + this.enterRule(localctx, 142, FlinkSqlParser.RULE_dropView); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1008; + this.state = 1016; this.match(FlinkSqlParser.KW_DROP); - this.state = 1010; + this.state = 1018; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===150) { { - this.state = 1009; + this.state = 1017; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1012; + this.state = 1020; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1014; + this.state = 1022; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 95, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 96, this._ctx) ) { case 1: { - this.state = 1013; + this.state = 1021; this.ifExists(); } break; } - this.state = 1016; + this.state = 1024; this.uid(); } } @@ -5090,43 +5129,43 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropFunction(): DropFunctionContext { let localctx: DropFunctionContext = new DropFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 142, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localctx, 144, FlinkSqlParser.RULE_dropFunction); try { this.enterOuterAlt(localctx, 1); { - this.state = 1018; + this.state = 1026; this.match(FlinkSqlParser.KW_DROP); - this.state = 1022; + this.state = 1030; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 96, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 97, this._ctx) ) { case 1: { - this.state = 1019; + this.state = 1027; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1020; + this.state = 1028; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1021; + this.state = 1029; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1024; + this.state = 1032; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1026; + this.state = 1034; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 97, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 98, this._ctx) ) { case 1: { - this.state = 1025; + this.state = 1033; this.ifExists(); } break; } - this.state = 1028; + this.state = 1036; this.uid(); } } @@ -5147,27 +5186,27 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertStatement(): InsertStatementContext { let localctx: InsertStatementContext = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 144, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localctx, 146, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1037; + this.state = 1045; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 99, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 100, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 1031; + this.state = 1039; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===244) { { - this.state = 1030; + this.state = 1038; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1033; + this.state = 1041; this.insertSimpleStatement(); } } @@ -5175,7 +5214,7 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1034; + this.state = 1042; this.insertMulStatementCompatibility(); } break; @@ -5183,9 +5222,9 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 3); { { - this.state = 1035; + this.state = 1043; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1036; + this.state = 1044; this.insertMulStatement(); } } @@ -5209,14 +5248,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertSimpleStatement(): InsertSimpleStatementContext { let localctx: InsertSimpleStatementContext = new InsertSimpleStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 146, FlinkSqlParser.RULE_insertSimpleStatement); + this.enterRule(localctx, 148, FlinkSqlParser.RULE_insertSimpleStatement); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1039; + this.state = 1047; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1040; + this.state = 1048; _la = this._input.LA(1); if(!(_la===93 || _la===272)) { this._errHandler.recoverInline(this); @@ -5225,40 +5264,40 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1041; + this.state = 1049; this.uid(); - this.state = 1050; + this.state = 1058; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 102, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 103, this._ctx) ) { case 1: { - this.state = 1043; + this.state = 1051; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===311) { { - this.state = 1042; + this.state = 1050; this.insertPartitionDefinition(); } } - this.state = 1046; + this.state = 1054; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 101, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 102, this._ctx) ) { case 1: { - this.state = 1045; + this.state = 1053; this.columnNameList(); } break; } - this.state = 1048; + this.state = 1056; this.queryStatement(0); } break; case 2: { - this.state = 1049; + this.state = 1057; this.valuesDefinition(); } break; @@ -5282,13 +5321,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertPartitionDefinition(): InsertPartitionDefinitionContext { let localctx: InsertPartitionDefinitionContext = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 148, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localctx, 150, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 1052; + this.state = 1060; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1053; + this.state = 1061; this.tablePropertyList(); } } @@ -5309,28 +5348,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public valuesDefinition(): ValuesDefinitionContext { let localctx: ValuesDefinitionContext = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 150, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localctx, 152, FlinkSqlParser.RULE_valuesDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1055; + this.state = 1063; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1056; + this.state = 1064; this.valuesRowDefinition(); - this.state = 1061; + this.state = 1069; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1057; + this.state = 1065; this.match(FlinkSqlParser.COMMA); - this.state = 1058; + this.state = 1066; this.valuesRowDefinition(); } } - this.state = 1063; + this.state = 1071; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -5353,32 +5392,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public valuesRowDefinition(): ValuesRowDefinitionContext { let localctx: ValuesRowDefinitionContext = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 152, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 154, FlinkSqlParser.RULE_valuesRowDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1064; + this.state = 1072; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1065; + this.state = 1073; this.constant(); - this.state = 1070; + this.state = 1078; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1066; + this.state = 1074; this.match(FlinkSqlParser.COMMA); - this.state = 1067; + this.state = 1075; this.constant(); } } - this.state = 1072; + this.state = 1080; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1073; + this.state = 1081; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5399,36 +5438,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertMulStatementCompatibility(): InsertMulStatementCompatibilityContext { let localctx: InsertMulStatementCompatibilityContext = new InsertMulStatementCompatibilityContext(this, this._ctx, this.state); - this.enterRule(localctx, 154, FlinkSqlParser.RULE_insertMulStatementCompatibility); + this.enterRule(localctx, 156, FlinkSqlParser.RULE_insertMulStatementCompatibility); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1075; + this.state = 1083; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1076; + this.state = 1084; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1077; + this.state = 1085; this.match(FlinkSqlParser.KW_SET); - this.state = 1078; + this.state = 1086; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1082; + this.state = 1090; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1079; + this.state = 1087; this.insertSimpleStatement(); - this.state = 1080; + this.state = 1088; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1084; + this.state = 1092; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===267); - this.state = 1086; + this.state = 1094; this.match(FlinkSqlParser.KW_END); } } @@ -5449,34 +5488,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertMulStatement(): InsertMulStatementContext { let localctx: InsertMulStatementContext = new InsertMulStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 156, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localctx, 158, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1088; + this.state = 1096; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1089; + this.state = 1097; this.match(FlinkSqlParser.KW_SET); - this.state = 1090; + this.state = 1098; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1094; + this.state = 1102; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1091; + this.state = 1099; this.insertSimpleStatement(); - this.state = 1092; + this.state = 1100; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1096; + this.state = 1104; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===267); - this.state = 1098; + this.state = 1106; this.match(FlinkSqlParser.KW_END); } } @@ -5507,60 +5546,60 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: QueryStatementContext = new QueryStatementContext(this, this._ctx, _parentState); let _prevctx: QueryStatementContext = localctx; - let _startState: number = 158; - this.enterRecursionRule(localctx, 158, FlinkSqlParser.RULE_queryStatement, _p); + let _startState: number = 160; + this.enterRecursionRule(localctx, 160, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1123; + this.state = 1131; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 111, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 112, this._ctx) ) { case 1: { - this.state = 1101; + this.state = 1109; this.valuesCaluse(); } break; case 2: { - this.state = 1102; + this.state = 1110; this.withClause(); - this.state = 1103; + this.state = 1111; this.queryStatement(5); } break; case 3: { - this.state = 1105; + this.state = 1113; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1106; + this.state = 1114; this.queryStatement(0); - this.state = 1107; + this.state = 1115; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1109; + this.state = 1117; this.selectClause(); - this.state = 1111; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 107, this._ctx) ) { - case 1: - { - this.state = 1110; - this.orderByCaluse(); - } - break; - } - this.state = 1114; + this.state = 1119; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 108, this._ctx) ) { case 1: { - this.state = 1113; + this.state = 1118; + this.orderByCaluse(); + } + break; + } + this.state = 1122; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 109, this._ctx) ) { + case 1: + { + this.state = 1121; this.limitClause(); } break; @@ -5569,24 +5608,24 @@ export default class FlinkSqlParser extends Parser { break; case 5: { - this.state = 1116; + this.state = 1124; this.selectStatement(); - this.state = 1118; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 109, this._ctx) ) { - case 1: - { - this.state = 1117; - this.orderByCaluse(); - } - break; - } - this.state = 1121; + this.state = 1126; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 110, this._ctx) ) { case 1: { - this.state = 1120; + this.state = 1125; + this.orderByCaluse(); + } + break; + } + this.state = 1129; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 111, this._ctx) ) { + case 1: + { + this.state = 1128; this.limitClause(); } break; @@ -5595,9 +5634,9 @@ export default class FlinkSqlParser extends Parser { break; } this._ctx.stop = this._input.LT(-1); - this.state = 1139; + this.state = 1147; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 115, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 116, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -5609,11 +5648,11 @@ export default class FlinkSqlParser extends Parser { localctx = new QueryStatementContext(this, _parentctx, _parentState); localctx._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1125; + this.state = 1133; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1126; + this.state = 1134; localctx._operator = this._input.LT(1); _la = this._input.LA(1); if(!(_la===243 || _la===270 || _la===354)) { @@ -5623,34 +5662,34 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1128; + this.state = 1136; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===178) { { - this.state = 1127; + this.state = 1135; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1130; + this.state = 1138; localctx._right = this.queryStatement(0); - this.state = 1132; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 113, this._ctx) ) { - case 1: - { - this.state = 1131; - this.orderByCaluse(); - } - break; - } - this.state = 1135; + this.state = 1140; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 114, this._ctx) ) { case 1: { - this.state = 1134; + this.state = 1139; + this.orderByCaluse(); + } + break; + } + this.state = 1143; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 115, this._ctx) ) { + case 1: + { + this.state = 1142; this.limitClause(); } break; @@ -5658,9 +5697,9 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1141; + this.state = 1149; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 115, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 116, this._ctx); } } } @@ -5681,32 +5720,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public valuesCaluse(): ValuesCaluseContext { let localctx: ValuesCaluseContext = new ValuesCaluseContext(this, this._ctx, this.state); - this.enterRule(localctx, 160, FlinkSqlParser.RULE_valuesCaluse); + this.enterRule(localctx, 162, FlinkSqlParser.RULE_valuesCaluse); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1142; + this.state = 1150; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1143; + this.state = 1151; this.expression(); - this.state = 1148; + this.state = 1156; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 116, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 117, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1144; + this.state = 1152; this.match(FlinkSqlParser.COMMA); - this.state = 1145; + this.state = 1153; this.expression(); } } } - this.state = 1150; + this.state = 1158; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 116, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 117, this._ctx); } } } @@ -5727,28 +5766,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withClause(): WithClauseContext { let localctx: WithClauseContext = new WithClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 162, FlinkSqlParser.RULE_withClause); + this.enterRule(localctx, 164, FlinkSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1151; + this.state = 1159; this.match(FlinkSqlParser.KW_WITH); - this.state = 1152; + this.state = 1160; this.withItem(); - this.state = 1157; + this.state = 1165; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1153; + this.state = 1161; this.match(FlinkSqlParser.COMMA); - this.state = 1154; + this.state = 1162; this.withItem(); } } - this.state = 1159; + this.state = 1167; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -5771,50 +5810,50 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withItem(): WithItemContext { let localctx: WithItemContext = new WithItemContext(this, this._ctx, this.state); - this.enterRule(localctx, 164, FlinkSqlParser.RULE_withItem); + this.enterRule(localctx, 166, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1160; + this.state = 1168; this.withItemName(); - this.state = 1172; + this.state = 1180; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 1161; + this.state = 1169; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1162; + this.state = 1170; this.columnName(); - this.state = 1167; + this.state = 1175; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1163; + this.state = 1171; this.match(FlinkSqlParser.COMMA); - this.state = 1164; + this.state = 1172; this.columnName(); } } - this.state = 1169; + this.state = 1177; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1170; + this.state = 1178; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1174; + this.state = 1182; this.match(FlinkSqlParser.KW_AS); - this.state = 1175; + this.state = 1183; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1176; + this.state = 1184; this.queryStatement(0); - this.state = 1177; + this.state = 1185; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5835,11 +5874,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withItemName(): WithItemNameContext { let localctx: WithItemNameContext = new WithItemNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 166, FlinkSqlParser.RULE_withItemName); + this.enterRule(localctx, 168, FlinkSqlParser.RULE_withItemName); try { this.enterOuterAlt(localctx, 1); { - this.state = 1179; + this.state = 1187; this.identifier(); } } @@ -5860,54 +5899,54 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public selectStatement(): SelectStatementContext { let localctx: SelectStatementContext = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 168, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localctx, 170, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1199; + this.state = 1207; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 124, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 125, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1181; + this.state = 1189; this.selectClause(); - this.state = 1182; + this.state = 1190; this.fromClause(); - this.state = 1184; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 120, this._ctx) ) { - case 1: - { - this.state = 1183; - this.whereClause(); - } - break; - } - this.state = 1187; + this.state = 1192; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 121, this._ctx) ) { case 1: { - this.state = 1186; - this.groupByClause(); + this.state = 1191; + this.whereClause(); } break; } - this.state = 1190; + this.state = 1195; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 122, this._ctx) ) { case 1: { - this.state = 1189; - this.havingClause(); + this.state = 1194; + this.groupByClause(); } break; } - this.state = 1193; + this.state = 1198; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 123, this._ctx) ) { case 1: { - this.state = 1192; + this.state = 1197; + this.havingClause(); + } + break; + } + this.state = 1201; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 124, this._ctx) ) { + case 1: + { + this.state = 1200; this.windowClause(); } break; @@ -5917,11 +5956,11 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1195; + this.state = 1203; this.selectClause(); - this.state = 1196; + this.state = 1204; this.fromClause(); - this.state = 1197; + this.state = 1205; this.matchRecognizeClause(); } break; @@ -5944,54 +5983,54 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public selectClause(): SelectClauseContext { let localctx: SelectClauseContext = new SelectClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 170, FlinkSqlParser.RULE_selectClause); + this.enterRule(localctx, 172, FlinkSqlParser.RULE_selectClause); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1201; + this.state = 1209; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1203; + this.state = 1211; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===178 || _la===235) { { - this.state = 1202; + this.state = 1210; this.setQuantifier(); } } - this.state = 1214; + this.state = 1222; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 127, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 128, this._ctx) ) { case 1: { - this.state = 1205; + this.state = 1213; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1206; + this.state = 1214; this.projectItemDefinition(); - this.state = 1211; + this.state = 1219; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 126, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 127, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1207; + this.state = 1215; this.match(FlinkSqlParser.COMMA); - this.state = 1208; + this.state = 1216; this.projectItemDefinition(); } } } - this.state = 1213; + this.state = 1221; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 126, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 127, this._ctx); } } break; @@ -6015,40 +6054,40 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public projectItemDefinition(): ProjectItemDefinitionContext { let localctx: ProjectItemDefinitionContext = new ProjectItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 172, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localctx, 174, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1224; + this.state = 1232; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 130, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 131, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1216; + this.state = 1224; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1217; + this.state = 1225; this.expression(); - this.state = 1222; + this.state = 1230; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 129, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 130, this._ctx) ) { case 1: { - this.state = 1219; + this.state = 1227; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 1218; + this.state = 1226; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1221; + this.state = 1229; this.expression(); } break; @@ -6074,38 +6113,38 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public overWindowItem(): OverWindowItemContext { let localctx: OverWindowItemContext = new OverWindowItemContext(this, this._ctx, this.state); - this.enterRule(localctx, 174, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localctx, 176, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1238; + this.state = 1246; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 131, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 132, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1226; + this.state = 1234; this.primaryExpression(0); - this.state = 1227; + this.state = 1235; this.match(FlinkSqlParser.KW_OVER); - this.state = 1228; + this.state = 1236; this.windowSpec(); - this.state = 1229; + this.state = 1237; this.match(FlinkSqlParser.KW_AS); - this.state = 1230; + this.state = 1238; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1232; + this.state = 1240; this.primaryExpression(0); - this.state = 1233; + this.state = 1241; this.match(FlinkSqlParser.KW_OVER); - this.state = 1234; + this.state = 1242; this.errorCapturingIdentifier(); - this.state = 1235; + this.state = 1243; this.match(FlinkSqlParser.KW_AS); - this.state = 1236; + this.state = 1244; this.identifier(); } break; @@ -6128,13 +6167,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public fromClause(): FromClauseContext { let localctx: FromClauseContext = new FromClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 176, FlinkSqlParser.RULE_fromClause); + this.enterRule(localctx, 178, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1240; + this.state = 1248; this.match(FlinkSqlParser.KW_FROM); - this.state = 1241; + this.state = 1249; this.tableExpression(0); } } @@ -6165,57 +6204,57 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: TableExpressionContext = new TableExpressionContext(this, this._ctx, _parentState); let _prevctx: TableExpressionContext = localctx; - let _startState: number = 178; - this.enterRecursionRule(localctx, 178, FlinkSqlParser.RULE_tableExpression, _p); + let _startState: number = 180; + this.enterRecursionRule(localctx, 180, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1254; + this.state = 1262; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 133, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 134, this._ctx) ) { case 1: { - this.state = 1244; + this.state = 1252; this.tableReference(); - this.state = 1249; + this.state = 1257; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 132, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 133, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1245; + this.state = 1253; this.match(FlinkSqlParser.COMMA); - this.state = 1246; + this.state = 1254; this.tableReference(); } } } - this.state = 1251; + this.state = 1259; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 132, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 133, this._ctx); } } break; case 2: { - this.state = 1252; + this.state = 1260; this.inlineDataValueClause(); } break; case 3: { - this.state = 1253; + this.state = 1261; this.windoTVFClause(); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1277; + this.state = 1285; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 139, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 140, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -6223,22 +6262,22 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1275; + this.state = 1283; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 138, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 139, this._ctx) ) { case 1: { localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1256; + this.state = 1264; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1257; + this.state = 1265; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1258; + this.state = 1266; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1259; + this.state = 1267; this.tableExpression(4); } break; @@ -6246,26 +6285,26 @@ export default class FlinkSqlParser extends Parser { { localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1260; + this.state = 1268; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1262; + this.state = 1270; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===294) { { - this.state = 1261; + this.state = 1269; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1265; + this.state = 1273; this._errHandler.sync(this); _la = this._input.LA(1); if (((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 67112961) !== 0) || _la===323) { { - this.state = 1264; + this.state = 1272; _la = this._input.LA(1); if(!(((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 67112961) !== 0) || _la===323)) { this._errHandler.recoverInline(this); @@ -6277,26 +6316,26 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1268; + this.state = 1276; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===308) { { - this.state = 1267; + this.state = 1275; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1270; + this.state = 1278; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1271; + this.state = 1279; this.tableExpression(0); - this.state = 1273; + this.state = 1281; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 137, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 138, this._ctx) ) { case 1: { - this.state = 1272; + this.state = 1280; this.joinCondition(); } break; @@ -6306,9 +6345,9 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1279; + this.state = 1287; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 139, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 140, this._ctx); } } } @@ -6329,18 +6368,18 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableReference(): TableReferenceContext { let localctx: TableReferenceContext = new TableReferenceContext(this, this._ctx, this.state); - this.enterRule(localctx, 180, FlinkSqlParser.RULE_tableReference); + this.enterRule(localctx, 182, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localctx, 1); { - this.state = 1280; + this.state = 1288; this.tablePrimary(); - this.state = 1282; + this.state = 1290; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 140, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 141, this._ctx) ) { case 1: { - this.state = 1281; + this.state = 1289; this.tableAlias(); } break; @@ -6364,53 +6403,53 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePrimary(): TablePrimaryContext { let localctx: TablePrimaryContext = new TablePrimaryContext(this, this._ctx, this.state); - this.enterRule(localctx, 182, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localctx, 184, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1325; + this.state = 1333; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 147, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 148, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1285; + this.state = 1293; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===344) { { - this.state = 1284; + this.state = 1292; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1287; + this.state = 1295; this.tablePath(); - this.state = 1289; + this.state = 1297; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 142, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 143, this._ctx) ) { case 1: { - this.state = 1288; + this.state = 1296; this.systemTimePeriod(); } break; } - this.state = 1295; + this.state = 1303; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 144, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 145, this._ctx) ) { case 1: { - this.state = 1292; + this.state = 1300; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 1291; + this.state = 1299; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1294; + this.state = 1302; this.correlationName(); } break; @@ -6420,71 +6459,71 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1297; + this.state = 1305; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1298; + this.state = 1306; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1299; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1300; - this.functionName(); - this.state = 1301; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1302; - this.functionParam(); this.state = 1307; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1308; + this.functionName(); + this.state = 1309; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1310; + this.functionParam(); + this.state = 1315; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1303; + this.state = 1311; this.match(FlinkSqlParser.COMMA); - this.state = 1304; + this.state = 1312; this.functionParam(); } } - this.state = 1309; + this.state = 1317; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1310; + this.state = 1318; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1311; + this.state = 1319; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1314; + this.state = 1322; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===277) { { - this.state = 1313; + this.state = 1321; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1316; + this.state = 1324; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1317; + this.state = 1325; this.queryStatement(0); - this.state = 1318; + this.state = 1326; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1320; + this.state = 1328; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1321; + this.state = 1329; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1322; + this.state = 1330; this.expression(); - this.state = 1323; + this.state = 1331; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6507,11 +6546,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePath(): TablePathContext { let localctx: TablePathContext = new TablePathContext(this, this._ctx, this.state); - this.enterRule(localctx, 184, FlinkSqlParser.RULE_tablePath); + this.enterRule(localctx, 186, FlinkSqlParser.RULE_tablePath); try { this.enterOuterAlt(localctx, 1); { - this.state = 1327; + this.state = 1335; this.uid(); } } @@ -6532,19 +6571,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public systemTimePeriod(): SystemTimePeriodContext { let localctx: SystemTimePeriodContext = new SystemTimePeriodContext(this, this._ctx, this.state); - this.enterRule(localctx, 186, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localctx, 188, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localctx, 1); { - this.state = 1329; + this.state = 1337; this.match(FlinkSqlParser.KW_FOR); - this.state = 1330; + this.state = 1338; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1331; + this.state = 1339; this.match(FlinkSqlParser.KW_AS); - this.state = 1332; + this.state = 1340; this.match(FlinkSqlParser.KW_OF); - this.state = 1333; + this.state = 1341; this.dateTimeExpression(); } } @@ -6565,11 +6604,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dateTimeExpression(): DateTimeExpressionContext { let localctx: DateTimeExpressionContext = new DateTimeExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 188, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localctx, 190, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localctx, 1); { - this.state = 1335; + this.state = 1343; this.expression(); } } @@ -6590,17 +6629,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public inlineDataValueClause(): InlineDataValueClauseContext { let localctx: InlineDataValueClauseContext = new InlineDataValueClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 190, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localctx, 192, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1337; + this.state = 1345; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1338; + this.state = 1346; this.valuesDefinition(); - this.state = 1339; + this.state = 1347; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1340; + this.state = 1348; this.tableAlias(); } } @@ -6621,17 +6660,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windoTVFClause(): WindoTVFClauseContext { let localctx: WindoTVFClauseContext = new WindoTVFClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 192, FlinkSqlParser.RULE_windoTVFClause); + this.enterRule(localctx, 194, FlinkSqlParser.RULE_windoTVFClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1342; + this.state = 1350; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1343; + this.state = 1351; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1344; + this.state = 1352; this.windowTVFExression(); - this.state = 1345; + this.state = 1353; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6652,34 +6691,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowTVFExression(): WindowTVFExressionContext { let localctx: WindowTVFExressionContext = new WindowTVFExressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 194, FlinkSqlParser.RULE_windowTVFExression); + this.enterRule(localctx, 196, FlinkSqlParser.RULE_windowTVFExression); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1347; + this.state = 1355; this.windoTVFName(); - this.state = 1348; + this.state = 1356; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1349; + this.state = 1357; this.windowTVFParam(); - this.state = 1354; + this.state = 1362; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1350; + this.state = 1358; this.match(FlinkSqlParser.COMMA); - this.state = 1351; + this.state = 1359; this.windowTVFParam(); } } - this.state = 1356; + this.state = 1364; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1357; + this.state = 1365; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6700,12 +6739,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windoTVFName(): WindoTVFNameContext { let localctx: WindoTVFNameContext = new WindoTVFNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 196, FlinkSqlParser.RULE_windoTVFName); + this.enterRule(localctx, 198, FlinkSqlParser.RULE_windoTVFName); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1359; + this.state = 1367; _la = this._input.LA(1); if(!(_la===23 || _la===57 || _la===156)) { this._errHandler.recoverInline(this); @@ -6733,66 +6772,66 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowTVFParam(): WindowTVFParamContext { let localctx: WindowTVFParamContext = new WindowTVFParamContext(this, this._ctx, this.state); - this.enterRule(localctx, 198, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localctx, 200, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1376; + this.state = 1384; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 149, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 150, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1361; + this.state = 1369; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1362; + this.state = 1370; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1363; + this.state = 1371; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1364; + this.state = 1372; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1365; + this.state = 1373; this.match(FlinkSqlParser.KW_DATA); - this.state = 1366; + this.state = 1374; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1367; + this.state = 1375; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1368; + this.state = 1376; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1369; + this.state = 1377; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1370; + this.state = 1378; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1371; + this.state = 1379; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1372; + this.state = 1380; this.timeIntervalParamName(); - this.state = 1373; + this.state = 1381; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1374; + this.state = 1382; this.timeIntervalExpression(); } break; @@ -6815,12 +6854,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public timeIntervalParamName(): TimeIntervalParamNameContext { let localctx: TimeIntervalParamNameContext = new TimeIntervalParamNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 200, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localctx, 202, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1378; + this.state = 1386; _la = this._input.LA(1); if(!(_la===24 || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4163) !== 0) || _la===302)) { this._errHandler.recoverInline(this); @@ -6848,17 +6887,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnDescriptor(): ColumnDescriptorContext { let localctx: ColumnDescriptorContext = new ColumnDescriptorContext(this, this._ctx, this.state); - this.enterRule(localctx, 202, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localctx, 204, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localctx, 1); { - this.state = 1380; + this.state = 1388; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1381; + this.state = 1389; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1382; + this.state = 1390; this.uid(); - this.state = 1383; + this.state = 1391; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6879,47 +6918,47 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public joinCondition(): JoinConditionContext { let localctx: JoinConditionContext = new JoinConditionContext(this, this._ctx, this.state); - this.enterRule(localctx, 204, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localctx, 206, FlinkSqlParser.RULE_joinCondition); let _la: number; try { - this.state = 1399; + this.state = 1407; this._errHandler.sync(this); switch (this._input.LA(1)) { case 303: this.enterOuterAlt(localctx, 1); { - this.state = 1385; + this.state = 1393; this.match(FlinkSqlParser.KW_ON); - this.state = 1386; + this.state = 1394; this.booleanExpression(0); } break; case 361: this.enterOuterAlt(localctx, 2); { - this.state = 1387; + this.state = 1395; this.match(FlinkSqlParser.KW_USING); - this.state = 1388; + this.state = 1396; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1389; + this.state = 1397; this.uid(); - this.state = 1394; + this.state = 1402; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1390; + this.state = 1398; this.match(FlinkSqlParser.COMMA); - this.state = 1391; + this.state = 1399; this.uid(); } } - this.state = 1396; + this.state = 1404; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1397; + this.state = 1405; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6944,13 +6983,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public whereClause(): WhereClauseContext { let localctx: WhereClauseContext = new WhereClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 206, FlinkSqlParser.RULE_whereClause); + this.enterRule(localctx, 208, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1401; + this.state = 1409; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1402; + this.state = 1410; this.booleanExpression(0); } } @@ -6971,34 +7010,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupByClause(): GroupByClauseContext { let localctx: GroupByClauseContext = new GroupByClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 208, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localctx, 210, FlinkSqlParser.RULE_groupByClause); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1404; + this.state = 1412; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1405; + this.state = 1413; this.match(FlinkSqlParser.KW_BY); - this.state = 1406; + this.state = 1414; this.groupItemDefinition(); - this.state = 1411; + this.state = 1419; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 152, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 153, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1407; + this.state = 1415; this.match(FlinkSqlParser.COMMA); - this.state = 1408; + this.state = 1416; this.groupItemDefinition(); } } } - this.state = 1413; + this.state = 1421; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 152, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 153, this._ctx); } } } @@ -7019,117 +7058,117 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupItemDefinition(): GroupItemDefinitionContext { let localctx: GroupItemDefinitionContext = new GroupItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 210, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localctx, 212, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1453; + this.state = 1461; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 156, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 157, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1414; + this.state = 1422; this.expression(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1415; + this.state = 1423; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1416; + this.state = 1424; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1417; + this.state = 1425; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1418; + this.state = 1426; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1419; + this.state = 1427; this.expression(); - this.state = 1424; + this.state = 1432; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1420; + this.state = 1428; this.match(FlinkSqlParser.COMMA); - this.state = 1421; + this.state = 1429; this.expression(); } } - this.state = 1426; + this.state = 1434; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1427; + this.state = 1435; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1429; + this.state = 1437; this.groupingSetsNotaionName(); - this.state = 1430; + this.state = 1438; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1431; + this.state = 1439; this.expression(); - this.state = 1436; + this.state = 1444; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1432; + this.state = 1440; this.match(FlinkSqlParser.COMMA); - this.state = 1433; + this.state = 1441; this.expression(); } } - this.state = 1438; + this.state = 1446; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1439; + this.state = 1447; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1441; + this.state = 1449; this.groupingSets(); - this.state = 1442; + this.state = 1450; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1443; + this.state = 1451; this.groupItemDefinition(); - this.state = 1448; + this.state = 1456; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1444; + this.state = 1452; this.match(FlinkSqlParser.COMMA); - this.state = 1445; + this.state = 1453; this.groupItemDefinition(); } } - this.state = 1450; + this.state = 1458; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1451; + this.state = 1459; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7152,13 +7191,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupingSets(): GroupingSetsContext { let localctx: GroupingSetsContext = new GroupingSetsContext(this, this._ctx, this.state); - this.enterRule(localctx, 212, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localctx, 214, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localctx, 1); { - this.state = 1455; + this.state = 1463; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1456; + this.state = 1464; this.match(FlinkSqlParser.KW_SETS); } } @@ -7179,12 +7218,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupingSetsNotaionName(): GroupingSetsNotaionNameContext { let localctx: GroupingSetsNotaionNameContext = new GroupingSetsNotaionNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 214, FlinkSqlParser.RULE_groupingSetsNotaionName); + this.enterRule(localctx, 216, FlinkSqlParser.RULE_groupingSetsNotaionName); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1458; + this.state = 1466; _la = this._input.LA(1); if(!(_la===221 || _la===326)) { this._errHandler.recoverInline(this); @@ -7212,21 +7251,21 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupWindowFunction(): GroupWindowFunctionContext { let localctx: GroupWindowFunctionContext = new GroupWindowFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 216, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localctx, 218, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localctx, 1); { - this.state = 1460; + this.state = 1468; this.groupWindowFunctionName(); - this.state = 1461; + this.state = 1469; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1462; + this.state = 1470; this.timeAttrColumn(); - this.state = 1463; + this.state = 1471; this.match(FlinkSqlParser.COMMA); - this.state = 1464; + this.state = 1472; this.timeIntervalExpression(); - this.state = 1465; + this.state = 1473; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7247,12 +7286,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localctx: GroupWindowFunctionNameContext = new GroupWindowFunctionNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 218, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localctx, 220, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1467; + this.state = 1475; _la = this._input.LA(1); if(!(_la===57 || _la===136 || _la===156)) { this._errHandler.recoverInline(this); @@ -7280,11 +7319,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public timeAttrColumn(): TimeAttrColumnContext { let localctx: TimeAttrColumnContext = new TimeAttrColumnContext(this, this._ctx, this.state); - this.enterRule(localctx, 220, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localctx, 222, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localctx, 1); { - this.state = 1469; + this.state = 1477; this.uid(); } } @@ -7305,13 +7344,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public havingClause(): HavingClauseContext { let localctx: HavingClauseContext = new HavingClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 222, FlinkSqlParser.RULE_havingClause); + this.enterRule(localctx, 224, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1471; + this.state = 1479; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1472; + this.state = 1480; this.booleanExpression(0); } } @@ -7332,32 +7371,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowClause(): WindowClauseContext { let localctx: WindowClauseContext = new WindowClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 224, FlinkSqlParser.RULE_windowClause); + this.enterRule(localctx, 226, FlinkSqlParser.RULE_windowClause); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1474; + this.state = 1482; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1475; + this.state = 1483; this.namedWindow(); - this.state = 1480; + this.state = 1488; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 157, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 158, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1476; + this.state = 1484; this.match(FlinkSqlParser.COMMA); - this.state = 1477; + this.state = 1485; this.namedWindow(); } } } - this.state = 1482; + this.state = 1490; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 157, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 158, this._ctx); } } } @@ -7378,15 +7417,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public namedWindow(): NamedWindowContext { let localctx: NamedWindowContext = new NamedWindowContext(this, this._ctx, this.state); - this.enterRule(localctx, 226, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localctx, 228, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localctx, 1); { - this.state = 1483; + this.state = 1491; localctx._name = this.errorCapturingIdentifier(); - this.state = 1484; + this.state = 1492; this.match(FlinkSqlParser.KW_AS); - this.state = 1485; + this.state = 1493; this.windowSpec(); } } @@ -7407,54 +7446,54 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowSpec(): WindowSpecContext { let localctx: WindowSpecContext = new WindowSpecContext(this, this._ctx, this.state); - this.enterRule(localctx, 228, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localctx, 230, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1488; + this.state = 1496; this._errHandler.sync(this); _la = this._input.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967279) !== 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)) & 126975) !== 0) || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 19) !== 0)) { { - this.state = 1487; + this.state = 1495; localctx._name = this.errorCapturingIdentifier(); } } - this.state = 1490; + this.state = 1498; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1492; + this.state = 1500; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===311) { { - this.state = 1491; + this.state = 1499; this.partitionByClause(); } } - this.state = 1495; + this.state = 1503; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===306) { { - this.state = 1494; + this.state = 1502; this.orderByCaluse(); } } - this.state = 1498; + this.state = 1506; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===319 || _la===328) { { - this.state = 1497; + this.state = 1505; this.windowFrame(); } } - this.state = 1500; + this.state = 1508; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7475,95 +7514,95 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public matchRecognizeClause(): MatchRecognizeClauseContext { let localctx: MatchRecognizeClauseContext = new MatchRecognizeClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 230, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localctx, 232, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1502; + this.state = 1510; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1503; + this.state = 1511; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1505; + this.state = 1513; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===311) { { - this.state = 1504; + this.state = 1512; this.partitionByClause(); } } - this.state = 1508; + this.state = 1516; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===306) { { - this.state = 1507; + this.state = 1515; this.orderByCaluse(); } } - this.state = 1511; + this.state = 1519; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===285) { { - this.state = 1510; + this.state = 1518; this.measuresClause(); } } - this.state = 1514; + this.state = 1522; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===178 || _la===304) { { - this.state = 1513; + this.state = 1521; this.outputMode(); } } - this.state = 1517; + this.state = 1525; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===6) { { - this.state = 1516; + this.state = 1524; this.afterMatchStrategy(); } } - this.state = 1520; + this.state = 1528; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===312) { { - this.state = 1519; + this.state = 1527; this.patternDefination(); } } - this.state = 1522; + this.state = 1530; this.patternVariablesDefination(); - this.state = 1523; + this.state = 1531; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1528; + this.state = 1536; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 169, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 170, this._ctx) ) { case 1: { - this.state = 1525; + this.state = 1533; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 1524; + this.state = 1532; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1527; + this.state = 1535; this.identifier(); } break; @@ -7587,34 +7626,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public orderByCaluse(): OrderByCaluseContext { let localctx: OrderByCaluseContext = new OrderByCaluseContext(this, this._ctx, this.state); - this.enterRule(localctx, 232, FlinkSqlParser.RULE_orderByCaluse); + this.enterRule(localctx, 234, FlinkSqlParser.RULE_orderByCaluse); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1530; + this.state = 1538; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1531; + this.state = 1539; this.match(FlinkSqlParser.KW_BY); - this.state = 1532; + this.state = 1540; this.orderItemDefition(); - this.state = 1537; + this.state = 1545; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 170, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 171, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1533; + this.state = 1541; this.match(FlinkSqlParser.COMMA); - this.state = 1534; + this.state = 1542; this.orderItemDefition(); } } } - this.state = 1539; + this.state = 1547; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 170, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 171, this._ctx); } } } @@ -7635,19 +7674,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public orderItemDefition(): OrderItemDefitionContext { let localctx: OrderItemDefitionContext = new OrderItemDefitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 234, FlinkSqlParser.RULE_orderItemDefition); + this.enterRule(localctx, 236, FlinkSqlParser.RULE_orderItemDefition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1540; + this.state = 1548; this.expression(); - this.state = 1542; + this.state = 1550; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 171, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 172, this._ctx) ) { case 1: { - this.state = 1541; + this.state = 1549; localctx._ordering = this._input.LT(1); _la = this._input.LA(1); if(!(_la===8 || _la===30)) { @@ -7660,14 +7699,14 @@ export default class FlinkSqlParser extends Parser { } break; } - this.state = 1546; + this.state = 1554; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 172, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 173, this._ctx) ) { case 1: { - this.state = 1544; + this.state = 1552; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1545; + this.state = 1553; localctx._nullOrder = this._input.LT(1); _la = this._input.LA(1); if(!(_la===45 || _la===73)) { @@ -7699,18 +7738,18 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public limitClause(): LimitClauseContext { let localctx: LimitClauseContext = new LimitClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 236, FlinkSqlParser.RULE_limitClause); + this.enterRule(localctx, 238, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1548; + this.state = 1556; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1551; + this.state = 1559; this._errHandler.sync(this); switch (this._input.LA(1)) { case 178: { - this.state = 1549; + this.state = 1557; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7932,7 +7971,7 @@ export default class FlinkSqlParser extends Parser { case 408: case 409: { - this.state = 1550; + this.state = 1558; localctx._limit = this.expression(); } break; @@ -7958,30 +7997,30 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public partitionByClause(): PartitionByClauseContext { let localctx: PartitionByClauseContext = new PartitionByClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 238, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localctx, 240, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1553; + this.state = 1561; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1554; + this.state = 1562; this.match(FlinkSqlParser.KW_BY); - this.state = 1555; + this.state = 1563; this.expression(); - this.state = 1560; + this.state = 1568; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1556; + this.state = 1564; this.match(FlinkSqlParser.COMMA); - this.state = 1557; + this.state = 1565; this.expression(); } } - this.state = 1562; + this.state = 1570; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -8004,16 +8043,16 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public quantifiers(): QuantifiersContext { let localctx: QuantifiersContext = new QuantifiersContext(this, this._ctx, this.state); - this.enterRule(localctx, 240, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localctx, 242, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1579; + this.state = 1587; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 175, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 176, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 1563; + this.state = 1571; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -8022,7 +8061,7 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 2); { { - this.state = 1564; + this.state = 1572; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -8031,7 +8070,7 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 3); { { - this.state = 1565; + this.state = 1573; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -8040,15 +8079,15 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 4); { { - this.state = 1566; + this.state = 1574; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1567; + this.state = 1575; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1568; + this.state = 1576; this.match(FlinkSqlParser.COMMA); - this.state = 1569; + this.state = 1577; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1570; + this.state = 1578; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8057,13 +8096,13 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 5); { { - this.state = 1571; + this.state = 1579; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1572; + this.state = 1580; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1573; + this.state = 1581; this.match(FlinkSqlParser.COMMA); - this.state = 1574; + this.state = 1582; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8072,13 +8111,13 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 6); { { - this.state = 1575; + this.state = 1583; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1576; + this.state = 1584; this.match(FlinkSqlParser.COMMA); - this.state = 1577; + this.state = 1585; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1578; + this.state = 1586; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8102,28 +8141,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public measuresClause(): MeasuresClauseContext { let localctx: MeasuresClauseContext = new MeasuresClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 242, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localctx, 244, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1581; + this.state = 1589; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1582; + this.state = 1590; this.projectItemDefinition(); - this.state = 1587; + this.state = 1595; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1583; + this.state = 1591; this.match(FlinkSqlParser.COMMA); - this.state = 1584; + this.state = 1592; this.projectItemDefinition(); } } - this.state = 1589; + this.state = 1597; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -8146,37 +8185,37 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public patternDefination(): PatternDefinationContext { let localctx: PatternDefinationContext = new PatternDefinationContext(this, this._ctx, this.state); - this.enterRule(localctx, 244, FlinkSqlParser.RULE_patternDefination); + this.enterRule(localctx, 246, FlinkSqlParser.RULE_patternDefination); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1590; + this.state = 1598; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1591; + this.state = 1599; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1593; + this.state = 1601; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1592; + this.state = 1600; this.patternVariable(); } } - this.state = 1595; + this.state = 1603; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===406 || _la===409); - this.state = 1597; + this.state = 1605; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1599; + this.state = 1607; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===370) { { - this.state = 1598; + this.state = 1606; this.withinClause(); } } @@ -8200,19 +8239,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public patternVariable(): PatternVariableContext { let localctx: PatternVariableContext = new PatternVariableContext(this, this._ctx, this.state); - this.enterRule(localctx, 246, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localctx, 248, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1601; + this.state = 1609; this.unquotedIdentifier(); - this.state = 1603; + this.state = 1611; this._errHandler.sync(this); _la = this._input.LA(1); if (((((_la - 386)) & ~0x1F) === 0 && ((1 << (_la - 386)) & 135681) !== 0)) { { - this.state = 1602; + this.state = 1610; this.quantifiers(); } } @@ -8236,34 +8275,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public outputMode(): OutputModeContext { let localctx: OutputModeContext = new OutputModeContext(this, this._ctx, this.state); - this.enterRule(localctx, 248, FlinkSqlParser.RULE_outputMode); + this.enterRule(localctx, 250, FlinkSqlParser.RULE_outputMode); try { - this.state = 1613; + this.state = 1621; this._errHandler.sync(this); switch (this._input.LA(1)) { case 178: this.enterOuterAlt(localctx, 1); { - this.state = 1605; + this.state = 1613; this.match(FlinkSqlParser.KW_ALL); - this.state = 1606; + this.state = 1614; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1607; + this.state = 1615; this.match(FlinkSqlParser.KW_PER); - this.state = 1608; + this.state = 1616; this.match(FlinkSqlParser.KW_MATCH); } break; case 304: this.enterOuterAlt(localctx, 2); { - this.state = 1609; + this.state = 1617; this.match(FlinkSqlParser.KW_ONE); - this.state = 1610; + this.state = 1618; this.match(FlinkSqlParser.KW_ROW); - this.state = 1611; + this.state = 1619; this.match(FlinkSqlParser.KW_PER); - this.state = 1612; + this.state = 1620; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -8288,76 +8327,76 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public afterMatchStrategy(): AfterMatchStrategyContext { let localctx: AfterMatchStrategyContext = new AfterMatchStrategyContext(this, this._ctx, this.state); - this.enterRule(localctx, 250, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localctx, 252, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1639; + this.state = 1647; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 181, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 182, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1615; + this.state = 1623; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1616; + this.state = 1624; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1617; + this.state = 1625; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1618; + this.state = 1626; this.match(FlinkSqlParser.KW_PAST); - this.state = 1619; + this.state = 1627; this.match(FlinkSqlParser.KW_LAST); - this.state = 1620; + this.state = 1628; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1621; + this.state = 1629; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1622; + this.state = 1630; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1623; + this.state = 1631; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1624; + this.state = 1632; this.match(FlinkSqlParser.KW_TO); - this.state = 1625; + this.state = 1633; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1626; + this.state = 1634; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1627; + this.state = 1635; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1628; + this.state = 1636; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1629; + this.state = 1637; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1630; + this.state = 1638; this.match(FlinkSqlParser.KW_TO); - this.state = 1631; + this.state = 1639; this.match(FlinkSqlParser.KW_LAST); - this.state = 1632; + this.state = 1640; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1633; + this.state = 1641; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1634; + this.state = 1642; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1635; + this.state = 1643; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1636; + this.state = 1644; this.match(FlinkSqlParser.KW_TO); - this.state = 1637; + this.state = 1645; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1638; + this.state = 1646; this.unquotedIdentifier(); } break; @@ -8380,28 +8419,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public patternVariablesDefination(): PatternVariablesDefinationContext { let localctx: PatternVariablesDefinationContext = new PatternVariablesDefinationContext(this, this._ctx, this.state); - this.enterRule(localctx, 252, FlinkSqlParser.RULE_patternVariablesDefination); + this.enterRule(localctx, 254, FlinkSqlParser.RULE_patternVariablesDefination); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1641; + this.state = 1649; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1642; + this.state = 1650; this.projectItemDefinition(); - this.state = 1647; + this.state = 1655; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1643; + this.state = 1651; this.match(FlinkSqlParser.COMMA); - this.state = 1644; + this.state = 1652; this.projectItemDefinition(); } } - this.state = 1649; + this.state = 1657; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -8424,34 +8463,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowFrame(): WindowFrameContext { let localctx: WindowFrameContext = new WindowFrameContext(this, this._ctx, this.state); - this.enterRule(localctx, 254, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localctx, 256, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1659; + this.state = 1667; this._errHandler.sync(this); switch (this._input.LA(1)) { case 319: this.enterOuterAlt(localctx, 1); { - this.state = 1650; + this.state = 1658; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1651; + this.state = 1659; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1652; + this.state = 1660; this.timeIntervalExpression(); - this.state = 1653; + this.state = 1661; this.frameBound(); } break; case 328: this.enterOuterAlt(localctx, 2); { - this.state = 1655; + this.state = 1663; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1656; + this.state = 1664; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1657; + this.state = 1665; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1658; + this.state = 1666; this.frameBound(); } break; @@ -8476,17 +8515,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public frameBound(): FrameBoundContext { let localctx: FrameBoundContext = new FrameBoundContext(this, this._ctx, this.state); - this.enterRule(localctx, 256, FlinkSqlParser.RULE_frameBound); + this.enterRule(localctx, 258, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localctx, 1); { - this.state = 1661; + this.state = 1669; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1662; + this.state = 1670; this.match(FlinkSqlParser.KW_AND); - this.state = 1663; + this.state = 1671; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1664; + this.state = 1672; this.match(FlinkSqlParser.KW_ROW); } } @@ -8507,13 +8546,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withinClause(): WithinClauseContext { let localctx: WithinClauseContext = new WithinClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 258, FlinkSqlParser.RULE_withinClause); + this.enterRule(localctx, 260, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1666; + this.state = 1674; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1667; + this.state = 1675; this.timeIntervalExpression(); } } @@ -8534,11 +8573,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public expression(): ExpressionContext { let localctx: ExpressionContext = new ExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 260, FlinkSqlParser.RULE_expression); + this.enterRule(localctx, 262, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localctx, 1); { - this.state = 1669; + this.state = 1677; this.booleanExpression(0); } } @@ -8569,25 +8608,25 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: BooleanExpressionContext = new BooleanExpressionContext(this, this._ctx, _parentState); let _prevctx: BooleanExpressionContext = localctx; - let _startState: number = 262; - this.enterRecursionRule(localctx, 262, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState: number = 264; + this.enterRecursionRule(localctx, 264, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1683; + this.state = 1691; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 185, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 186, this._ctx) ) { case 1: { localctx = new LogicalNotContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1672; + this.state = 1680; this.match(FlinkSqlParser.KW_NOT); - this.state = 1673; + this.state = 1681; this.booleanExpression(6); } break; @@ -8596,13 +8635,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ExistsContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1674; + this.state = 1682; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1675; + this.state = 1683; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1676; + this.state = 1684; this.queryStatement(0); - this.state = 1677; + this.state = 1685; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8611,14 +8650,14 @@ export default class FlinkSqlParser extends Parser { localctx = new PredicatedContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1679; + this.state = 1687; this.valueExpression(0); - this.state = 1681; + this.state = 1689; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 184, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 185, this._ctx) ) { case 1: { - this.state = 1680; + this.state = 1688; this.predicate(); } break; @@ -8627,9 +8666,9 @@ export default class FlinkSqlParser extends Parser { break; } this._ctx.stop = this._input.LT(-1); - this.state = 1699; + this.state = 1707; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 188, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 189, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -8637,21 +8676,21 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1697; + this.state = 1705; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 187, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 188, 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 = 1685; + this.state = 1693; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1686; + this.state = 1694; (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1687; + this.state = 1695; (localctx as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8660,13 +8699,13 @@ 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 = 1688; + this.state = 1696; if (!(this.precpred(this._ctx, 2))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - this.state = 1689; + this.state = 1697; (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1690; + this.state = 1698; (localctx as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8674,23 +8713,23 @@ export default class FlinkSqlParser extends Parser { { localctx = new LogicalNestedContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1691; + this.state = 1699; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1692; + this.state = 1700; this.match(FlinkSqlParser.KW_IS); - this.state = 1694; + this.state = 1702; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1693; + this.state = 1701; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1696; + this.state = 1704; (localctx as LogicalNestedContext)._kind = this._input.LT(1); _la = this._input.LA(1); if(!(_la===249 || _la===299 || _la===352 || _la===356)) { @@ -8705,9 +8744,9 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1701; + this.state = 1709; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 188, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 189, this._ctx); } } } @@ -8728,33 +8767,33 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public predicate(): PredicateContext { let localctx: PredicateContext = new PredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 264, FlinkSqlParser.RULE_predicate); + this.enterRule(localctx, 266, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1769; + this.state = 1777; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 199, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 200, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1703; + this.state = 1711; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1702; + this.state = 1710; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1705; + this.state = 1713; localctx._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1707; + this.state = 1715; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===186 || _la===340) { { - this.state = 1706; + this.state = 1714; _la = this._input.LA(1); if(!(_la===186 || _la===340)) { this._errHandler.recoverInline(this); @@ -8766,131 +8805,131 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1709; + this.state = 1717; localctx._lower = this.valueExpression(0); - this.state = 1710; + this.state = 1718; this.match(FlinkSqlParser.KW_AND); - this.state = 1711; + this.state = 1719; localctx._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1714; + this.state = 1722; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1713; + this.state = 1721; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1716; + this.state = 1724; localctx._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1717; + this.state = 1725; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1718; + this.state = 1726; this.expression(); - this.state = 1723; + this.state = 1731; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1719; + this.state = 1727; this.match(FlinkSqlParser.COMMA); - this.state = 1720; + this.state = 1728; this.expression(); } } - this.state = 1725; + this.state = 1733; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1726; + this.state = 1734; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1729; + this.state = 1737; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1728; + this.state = 1736; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1731; + this.state = 1739; localctx._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1732; + this.state = 1740; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1733; + this.state = 1741; this.queryStatement(0); - this.state = 1734; + this.state = 1742; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1736; + this.state = 1744; localctx._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1737; + this.state = 1745; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1738; + this.state = 1746; this.queryStatement(0); - this.state = 1739; + this.state = 1747; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1742; + this.state = 1750; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1741; + this.state = 1749; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1744; + this.state = 1752; localctx._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1745; + this.state = 1753; localctx._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1746; + this.state = 1754; this.likePredicate(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 1747; + this.state = 1755; this.match(FlinkSqlParser.KW_IS); - this.state = 1749; + this.state = 1757; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1748; + this.state = 1756; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1751; + this.state = 1759; localctx._kind = this._input.LT(1); _la = this._input.LA(1); if(!(_la===249 || _la===299 || _la===352 || _la===356)) { @@ -8905,53 +8944,53 @@ export default class FlinkSqlParser extends Parser { case 8: this.enterOuterAlt(localctx, 8); { - this.state = 1752; + this.state = 1760; this.match(FlinkSqlParser.KW_IS); - this.state = 1754; + this.state = 1762; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1753; + this.state = 1761; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1756; + this.state = 1764; localctx._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1757; + this.state = 1765; this.match(FlinkSqlParser.KW_FROM); - this.state = 1758; + this.state = 1766; localctx._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 1760; + this.state = 1768; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1759; + this.state = 1767; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1762; + this.state = 1770; localctx._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1763; + this.state = 1771; this.match(FlinkSqlParser.KW_TO); - this.state = 1764; + this.state = 1772; localctx._right = this.valueExpression(0); - this.state = 1767; + this.state = 1775; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 198, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 199, this._ctx) ) { case 1: { - this.state = 1765; + this.state = 1773; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1766; + this.state = 1774; this.stringLiteral(); } break; @@ -8977,28 +9016,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public likePredicate(): LikePredicateContext { let localctx: LikePredicateContext = new LikePredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 266, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localctx, 268, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1800; + this.state = 1808; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 205, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 206, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1772; + this.state = 1780; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1771; + this.state = 1779; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1774; + this.state = 1782; localctx._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1775; + this.state = 1783; localctx._quantifier = this._input.LT(1); _la = this._input.LA(1); if(!(_la===178 || _la===182)) { @@ -9008,40 +9047,40 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1789; + this.state = 1797; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 202, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 203, this._ctx) ) { case 1: { - this.state = 1776; + this.state = 1784; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1777; + this.state = 1785; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1778; + this.state = 1786; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1779; + this.state = 1787; this.expression(); - this.state = 1784; + this.state = 1792; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1780; + this.state = 1788; this.match(FlinkSqlParser.COMMA); - this.state = 1781; + this.state = 1789; this.expression(); } } - this.state = 1786; + this.state = 1794; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1787; + this.state = 1795; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9051,28 +9090,28 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1792; + this.state = 1800; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 1791; + this.state = 1799; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1794; + this.state = 1802; localctx._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1795; + this.state = 1803; localctx._pattern = this.valueExpression(0); - this.state = 1798; + this.state = 1806; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 204, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 205, this._ctx) ) { case 1: { - this.state = 1796; + this.state = 1804; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1797; + this.state = 1805; this.stringLiteral(); } break; @@ -9108,23 +9147,23 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: ValueExpressionContext = new ValueExpressionContext(this, this._ctx, _parentState); let _prevctx: ValueExpressionContext = localctx; - let _startState: number = 268; - this.enterRecursionRule(localctx, 268, FlinkSqlParser.RULE_valueExpression, _p); + let _startState: number = 270; + this.enterRecursionRule(localctx, 270, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1806; + this.state = 1814; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 206, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 207, this._ctx) ) { case 1: { localctx = new ValueExpressionDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1803; + this.state = 1811; this.primaryExpression(0); } break; @@ -9133,7 +9172,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticUnaryContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1804; + this.state = 1812; (localctx as ArithmeticUnaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); if(!(((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3145729) !== 0))) { @@ -9143,15 +9182,15 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1805; - this.valueExpression(7); + this.state = 1813; + this.valueExpression(8); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1829; + this.state = 1839; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 209, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -9159,19 +9198,19 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1827; + this.state = 1837; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 207, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 208, this._ctx) ) { case 1: { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1808; - if (!(this.precpred(this._ctx, 6))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 6)"); + this.state = 1816; + if (!(this.precpred(this._ctx, 7))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 7)"); } - this.state = 1809; + this.state = 1817; (localctx as ArithmeticBinaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); if(!(_la===32 || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 145) !== 0))) { @@ -9181,8 +9220,8 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1810; - (localctx as ArithmeticBinaryContext)._right = this.valueExpression(7); + this.state = 1818; + (localctx as ArithmeticBinaryContext)._right = this.valueExpression(8); } break; case 2: @@ -9190,11 +9229,11 @@ 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 = 1811; - if (!(this.precpred(this._ctx, 5))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); + this.state = 1819; + if (!(this.precpred(this._ctx, 6))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 6)"); } - this.state = 1812; + this.state = 1820; (localctx as ArithmeticBinaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); if(!(((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 11) !== 0))) { @@ -9204,8 +9243,8 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1813; - (localctx as ArithmeticBinaryContext)._right = this.valueExpression(6); + this.state = 1821; + (localctx as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; case 3: @@ -9213,14 +9252,14 @@ 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 = 1814; - if (!(this.precpred(this._ctx, 4))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); + this.state = 1822; + if (!(this.precpred(this._ctx, 5))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); } - this.state = 1815; + this.state = 1823; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1816; - (localctx as ArithmeticBinaryContext)._right = this.valueExpression(5); + this.state = 1824; + (localctx as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; case 4: @@ -9228,14 +9267,14 @@ 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 = 1817; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + this.state = 1825; + if (!(this.precpred(this._ctx, 4))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1818; + this.state = 1826; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1819; - (localctx as ArithmeticBinaryContext)._right = this.valueExpression(4); + this.state = 1827; + (localctx as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; case 5: @@ -9243,14 +9282,14 @@ 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 = 1820; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + this.state = 1828; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1821; + this.state = 1829; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1822; - (localctx as ArithmeticBinaryContext)._right = this.valueExpression(3); + this.state = 1830; + (localctx as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; case 6: @@ -9258,22 +9297,35 @@ 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 = 1823; + this.state = 1831; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 1832; + this.comparisonOperator(); + this.state = 1833; + (localctx as ComparisonContext)._right = this.valueExpression(3); + } + break; + case 7: + { + localctx = new ArithmeticBinaryAlternateContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + (localctx as ArithmeticBinaryAlternateContext)._left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 1835; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1824; - this.comparisonOperator(); - this.state = 1825; - (localctx as ComparisonContext)._right = this.valueExpression(2); + this.state = 1836; + (localctx as ArithmeticBinaryAlternateContext)._right = this.match(FlinkSqlParser.SLASH_TEXT); } break; } } } - this.state = 1831; + this.state = 1841; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 209, this._ctx); } } } @@ -9304,51 +9356,51 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: PrimaryExpressionContext = new PrimaryExpressionContext(this, this._ctx, _parentState); let _prevctx: PrimaryExpressionContext = localctx; - let _startState: number = 270; - this.enterRecursionRule(localctx, 270, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState: number = 272; + this.enterRecursionRule(localctx, 272, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1923; + this.state = 1933; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 218, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 219, this._ctx) ) { case 1: { localctx = new SearchedCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1833; + this.state = 1843; this.match(FlinkSqlParser.KW_CASE); - this.state = 1835; + this.state = 1845; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1834; + this.state = 1844; this.whenClause(); } } - this.state = 1837; + this.state = 1847; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===366); - this.state = 1841; + this.state = 1851; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===239) { { - this.state = 1839; + this.state = 1849; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1840; + this.state = 1850; (localctx as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1843; + this.state = 1853; this.match(FlinkSqlParser.KW_END); } break; @@ -9357,37 +9409,37 @@ export default class FlinkSqlParser extends Parser { localctx = new SimpleCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1845; + this.state = 1855; this.match(FlinkSqlParser.KW_CASE); - this.state = 1846; + this.state = 1856; (localctx as SimpleCaseContext)._value = this.expression(); - this.state = 1848; + this.state = 1858; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1847; + this.state = 1857; this.whenClause(); } } - this.state = 1850; + this.state = 1860; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===366); - this.state = 1854; + this.state = 1864; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===239) { { - this.state = 1852; + this.state = 1862; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1853; + this.state = 1863; (localctx as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1856; + this.state = 1866; this.match(FlinkSqlParser.KW_END); } break; @@ -9396,17 +9448,17 @@ export default class FlinkSqlParser extends Parser { localctx = new CastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1858; + this.state = 1868; this.match(FlinkSqlParser.KW_CAST); - this.state = 1859; + this.state = 1869; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1860; + this.state = 1870; this.expression(); - this.state = 1861; + this.state = 1871; this.match(FlinkSqlParser.KW_AS); - this.state = 1862; + this.state = 1872; this.columnType(); - this.state = 1863; + this.state = 1873; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9415,25 +9467,25 @@ export default class FlinkSqlParser extends Parser { localctx = new FirstContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1865; + this.state = 1875; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1866; + this.state = 1876; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1867; + this.state = 1877; this.expression(); - this.state = 1870; + this.state = 1880; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===60) { { - this.state = 1868; + this.state = 1878; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1869; + this.state = 1879; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1872; + this.state = 1882; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9442,25 +9494,25 @@ export default class FlinkSqlParser extends Parser { localctx = new LastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1874; + this.state = 1884; this.match(FlinkSqlParser.KW_LAST); - this.state = 1875; + this.state = 1885; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1876; + this.state = 1886; this.expression(); - this.state = 1879; + this.state = 1889; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===60) { { - this.state = 1877; + this.state = 1887; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1878; + this.state = 1888; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1881; + this.state = 1891; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9469,17 +9521,17 @@ export default class FlinkSqlParser extends Parser { localctx = new PositionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1883; + this.state = 1893; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1884; + this.state = 1894; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1885; + this.state = 1895; (localctx as PositionContext)._substr = this.valueExpression(0); - this.state = 1886; + this.state = 1896; this.match(FlinkSqlParser.KW_IN); - this.state = 1887; + this.state = 1897; (localctx as PositionContext)._str = this.valueExpression(0); - this.state = 1888; + this.state = 1898; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9488,7 +9540,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ConstantDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1890; + this.state = 1900; this.constant(); } break; @@ -9497,7 +9549,7 @@ export default class FlinkSqlParser extends Parser { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1891; + this.state = 1901; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9506,11 +9558,11 @@ export default class FlinkSqlParser extends Parser { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1892; + this.state = 1902; this.uid(); - this.state = 1893; + this.state = 1903; this.match(FlinkSqlParser.DOT); - this.state = 1894; + this.state = 1904; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9519,11 +9571,11 @@ export default class FlinkSqlParser extends Parser { localctx = new SubqueryExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1896; + this.state = 1906; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1897; + this.state = 1907; this.queryStatement(0); - this.state = 1898; + this.state = 1908; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9532,47 +9584,47 @@ export default class FlinkSqlParser extends Parser { localctx = new FunctionCallContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1900; + this.state = 1910; this.functionName(); - this.state = 1901; + this.state = 1911; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1913; + this.state = 1923; 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)) & 285736959) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2688590049) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 75514881) !== 0) || ((((_la - 271)) & ~0x1F) === 0 && ((1 << (_la - 271)) & 405012881) !== 0) || ((((_la - 310)) & ~0x1F) === 0 && ((1 << (_la - 310)) & 805840065) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 1107298419) !== 0) || ((((_la - 384)) & ~0x1F) === 0 && ((1 << (_la - 384)) & 65038337) !== 0)) { { - this.state = 1903; + this.state = 1913; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 215, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 216, this._ctx) ) { case 1: { - this.state = 1902; + this.state = 1912; this.setQuantifier(); } break; } - this.state = 1905; + this.state = 1915; this.functionParam(); - this.state = 1910; + this.state = 1920; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 1906; + this.state = 1916; this.match(FlinkSqlParser.COMMA); - this.state = 1907; + this.state = 1917; this.functionParam(); } } - this.state = 1912; + this.state = 1922; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 1915; + this.state = 1925; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9581,7 +9633,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ColumnReferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1917; + this.state = 1927; this.identifier(); } break; @@ -9590,7 +9642,7 @@ export default class FlinkSqlParser extends Parser { localctx = new DereferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1918; + this.state = 1928; this.dereferenceDefinition(); } break; @@ -9599,19 +9651,19 @@ export default class FlinkSqlParser extends Parser { localctx = new ParenthesizedExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1919; + this.state = 1929; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1920; + this.state = 1930; this.expression(); - this.state = 1921; + this.state = 1931; this.match(FlinkSqlParser.RR_BRACKET); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1932; + this.state = 1942; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 219, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 220, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -9623,22 +9675,22 @@ 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 = 1925; + this.state = 1935; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1926; + this.state = 1936; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1927; + this.state = 1937; (localctx as SubscriptContext)._index = this.valueExpression(0); - this.state = 1928; + this.state = 1938; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1934; + this.state = 1944; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 219, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 220, this._ctx); } } } @@ -9659,29 +9711,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public functionName(): FunctionNameContext { let localctx: FunctionNameContext = new FunctionNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 272, FlinkSqlParser.RULE_functionName); + this.enterRule(localctx, 274, FlinkSqlParser.RULE_functionName); try { - this.state = 1938; + this.state = 1948; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 220, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 221, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1935; + this.state = 1945; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1936; + this.state = 1946; this.nonReservedKeywords(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1937; + this.state = 1947; this.uid(); } break; @@ -9704,36 +9756,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public functionParam(): FunctionParamContext { let localctx: FunctionParamContext = new FunctionParamContext(this, this._ctx, this.state); - this.enterRule(localctx, 274, FlinkSqlParser.RULE_functionParam); + this.enterRule(localctx, 276, FlinkSqlParser.RULE_functionParam); try { - this.state = 1944; + this.state = 1954; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 221, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 222, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1940; + this.state = 1950; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1941; + this.state = 1951; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1942; + this.state = 1952; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1943; + this.state = 1953; this.expression(); } break; @@ -9756,11 +9808,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dereferenceDefinition(): DereferenceDefinitionContext { let localctx: DereferenceDefinitionContext = new DereferenceDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 276, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localctx, 278, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 1946; + this.state = 1956; this.uid(); } } @@ -9781,11 +9833,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public correlationName(): CorrelationNameContext { let localctx: CorrelationNameContext = new CorrelationNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 278, FlinkSqlParser.RULE_correlationName); + this.enterRule(localctx, 280, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localctx, 1); { - this.state = 1948; + this.state = 1958; this.identifier(); } } @@ -9806,22 +9858,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public qualifiedName(): QualifiedNameContext { let localctx: QualifiedNameContext = new QualifiedNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 280, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localctx, 282, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 1952; + this.state = 1962; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 222, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 223, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1950; + this.state = 1960; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1951; + this.state = 1961; this.dereferenceDefinition(); } break; @@ -9844,24 +9896,24 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public timeIntervalExpression(): TimeIntervalExpressionContext { let localctx: TimeIntervalExpressionContext = new TimeIntervalExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 282, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localctx, 284, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localctx, 1); { - this.state = 1954; + this.state = 1964; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 1957; + this.state = 1967; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 223, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 224, this._ctx) ) { case 1: { - this.state = 1955; + this.state = 1965; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 1956; + this.state = 1966; this.errorCapturingUnitToUnitInterval(); } break; @@ -9885,18 +9937,18 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localctx: ErrorCapturingMultiUnitsIntervalContext = new ErrorCapturingMultiUnitsIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 284, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localctx, 286, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1959; + this.state = 1969; this.multiUnitsInterval(); - this.state = 1961; + this.state = 1971; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 224, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 225, this._ctx) ) { case 1: { - this.state = 1960; + this.state = 1970; this.unitToUnitInterval(); } break; @@ -9920,12 +9972,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public multiUnitsInterval(): MultiUnitsIntervalContext { let localctx: MultiUnitsIntervalContext = new MultiUnitsIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 286, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localctx, 288, FlinkSqlParser.RULE_multiUnitsInterval); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1966; + this.state = 1976; this._errHandler.sync(this); _alt = 1; do { @@ -9933,9 +9985,9 @@ export default class FlinkSqlParser extends Parser { case 1: { { - this.state = 1963; + this.state = 1973; this.intervalValue(); - this.state = 1964; + this.state = 1974; this.timeIntervalUnit(); } } @@ -9943,9 +9995,9 @@ export default class FlinkSqlParser extends Parser { default: throw new NoViableAltException(this); } - this.state = 1968; + this.state = 1978; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 225, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 226, this._ctx); } while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER); } } @@ -9966,24 +10018,24 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localctx: ErrorCapturingUnitToUnitIntervalContext = new ErrorCapturingUnitToUnitIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 288, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localctx, 290, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1970; + this.state = 1980; localctx._body = this.unitToUnitInterval(); - this.state = 1973; + this.state = 1983; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 226, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 227, this._ctx) ) { case 1: { - this.state = 1971; + this.state = 1981; localctx._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 1972; + this.state = 1982; localctx._error2 = this.unitToUnitInterval(); } break; @@ -10007,17 +10059,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public unitToUnitInterval(): UnitToUnitIntervalContext { let localctx: UnitToUnitIntervalContext = new UnitToUnitIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 290, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localctx, 292, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1975; + this.state = 1985; localctx._value = this.intervalValue(); - this.state = 1976; + this.state = 1986; localctx._from_ = this.timeIntervalUnit(); - this.state = 1977; + this.state = 1987; this.match(FlinkSqlParser.KW_TO); - this.state = 1978; + this.state = 1988; localctx._to = this.timeIntervalUnit(); } } @@ -10038,10 +10090,10 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public intervalValue(): IntervalValueContext { let localctx: IntervalValueContext = new IntervalValueContext(this, this._ctx, this.state); - this.enterRule(localctx, 292, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localctx, 294, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 1985; + this.state = 1995; this._errHandler.sync(this); switch (this._input.LA(1)) { case 397: @@ -10050,12 +10102,12 @@ export default class FlinkSqlParser extends Parser { case 407: this.enterOuterAlt(localctx, 1); { - this.state = 1981; + this.state = 1991; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===397 || _la===398) { { - this.state = 1980; + this.state = 1990; _la = this._input.LA(1); if(!(_la===397 || _la===398)) { this._errHandler.recoverInline(this); @@ -10067,7 +10119,7 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1983; + this.state = 1993; _la = this._input.LA(1); if(!(_la===406 || _la===407)) { this._errHandler.recoverInline(this); @@ -10081,7 +10133,7 @@ export default class FlinkSqlParser extends Parser { case 405: this.enterOuterAlt(localctx, 2); { - this.state = 1984; + this.state = 1994; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10106,29 +10158,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnAlias(): ColumnAliasContext { let localctx: ColumnAliasContext = new ColumnAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 294, FlinkSqlParser.RULE_columnAlias); + this.enterRule(localctx, 296, FlinkSqlParser.RULE_columnAlias); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1988; + this.state = 1998; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 1987; + this.state = 1997; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1990; + this.state = 2000; this.identifier(); - this.state = 1992; + this.state = 2002; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===384) { { - this.state = 1991; + this.state = 2001; this.identifierList(); } } @@ -10152,29 +10204,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableAlias(): TableAliasContext { let localctx: TableAliasContext = new TableAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 296, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localctx, 298, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1995; + this.state = 2005; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 1994; + this.state = 2004; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1997; + this.state = 2007; this.identifier(); - this.state = 1999; + this.state = 2009; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 232, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 233, this._ctx) ) { case 1: { - this.state = 1998; + this.state = 2008; this.identifierList(); } break; @@ -10198,13 +10250,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localctx: ErrorCapturingIdentifierContext = new ErrorCapturingIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 298, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localctx, 300, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localctx, 1); { - this.state = 2001; + this.state = 2011; this.identifier(); - this.state = 2002; + this.state = 2012; this.errorCapturingIdentifierExtra(); } } @@ -10225,29 +10277,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localctx: ErrorCapturingIdentifierExtraContext = new ErrorCapturingIdentifierExtraContext(this, this._ctx, this.state); - this.enterRule(localctx, 300, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localctx, 302, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2011; + this.state = 2021; this._errHandler.sync(this); switch (this._input.LA(1)) { case 288: localctx = new ErrorIdentContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 2006; + this.state = 2016; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 2004; + this.state = 2014; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2005; + this.state = 2015; this.identifier(); } } - this.state = 2008; + this.state = 2018; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===288); @@ -10282,15 +10334,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public identifierList(): IdentifierListContext { let localctx: IdentifierListContext = new IdentifierListContext(this, this._ctx, this.state); - this.enterRule(localctx, 302, FlinkSqlParser.RULE_identifierList); + this.enterRule(localctx, 304, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localctx, 1); { - this.state = 2013; + this.state = 2023; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2014; + this.state = 2024; this.identifierSeq(); - this.state = 2015; + this.state = 2025; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10311,26 +10363,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public identifierSeq(): IdentifierSeqContext { let localctx: IdentifierSeqContext = new IdentifierSeqContext(this, this._ctx, this.state); - this.enterRule(localctx, 304, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localctx, 306, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2017; + this.state = 2027; this.identifier(); - this.state = 2022; + this.state = 2032; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 2018; + this.state = 2028; this.match(FlinkSqlParser.COMMA); - this.state = 2019; + this.state = 2029; this.identifier(); } } - this.state = 2024; + this.state = 2034; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -10353,9 +10405,9 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public identifier(): IdentifierContext { let localctx: IdentifierContext = new IdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 306, FlinkSqlParser.RULE_identifier); + this.enterRule(localctx, 308, FlinkSqlParser.RULE_identifier); try { - this.state = 2028; + this.state = 2038; this._errHandler.sync(this); switch (this._input.LA(1)) { case 406: @@ -10363,7 +10415,7 @@ export default class FlinkSqlParser extends Parser { localctx = new UnquotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 2025; + this.state = 2035; this.unquotedIdentifier(); } break; @@ -10371,7 +10423,7 @@ export default class FlinkSqlParser extends Parser { localctx = new QuotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 2); { - this.state = 2026; + this.state = 2036; this.quotedIdentifier(); } break; @@ -10549,7 +10601,7 @@ export default class FlinkSqlParser extends Parser { localctx = new NonReservedKeywordsAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 3); { - this.state = 2027; + this.state = 2037; this.nonReservedKeywords(); } break; @@ -10574,12 +10626,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public unquotedIdentifier(): UnquotedIdentifierContext { let localctx: UnquotedIdentifierContext = new UnquotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 308, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localctx, 310, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2030; + this.state = 2040; _la = this._input.LA(1); if(!(_la===406 || _la===409)) { this._errHandler.recoverInline(this); @@ -10607,11 +10659,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public quotedIdentifier(): QuotedIdentifierContext { let localctx: QuotedIdentifierContext = new QuotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 310, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localctx, 312, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localctx, 1); { - this.state = 2032; + this.state = 2042; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10632,17 +10684,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public whenClause(): WhenClauseContext { let localctx: WhenClauseContext = new WhenClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 312, FlinkSqlParser.RULE_whenClause); + this.enterRule(localctx, 314, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 2034; + this.state = 2044; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2035; + this.state = 2045; localctx._condition = this.expression(); - this.state = 2036; + this.state = 2046; this.match(FlinkSqlParser.KW_THEN); - this.state = 2037; + this.state = 2047; localctx._result = this.expression(); } } @@ -10663,30 +10715,30 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public uid(): UidContext { let localctx: UidContext = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 314, FlinkSqlParser.RULE_uid); + this.enterRule(localctx, 316, FlinkSqlParser.RULE_uid); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 2039; + this.state = 2049; this.identifier(); - this.state = 2044; + this.state = 2054; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 237, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 238, this._ctx); while (_alt !== 1 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1 + 1) { { { - this.state = 2040; + this.state = 2050; this.match(FlinkSqlParser.DOT); - this.state = 2041; + this.state = 2051; this.identifier(); } } } - this.state = 2046; + this.state = 2056; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 237, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 238, this._ctx); } } } @@ -10707,13 +10759,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withOption(): WithOptionContext { let localctx: WithOptionContext = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 316, FlinkSqlParser.RULE_withOption); + this.enterRule(localctx, 318, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localctx, 1); { - this.state = 2047; + this.state = 2057; this.match(FlinkSqlParser.KW_WITH); - this.state = 2048; + this.state = 2058; this.tablePropertyList(); } } @@ -10734,15 +10786,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public ifNotExists(): IfNotExistsContext { let localctx: IfNotExistsContext = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 318, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localctx, 320, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); { - this.state = 2050; + this.state = 2060; this.match(FlinkSqlParser.KW_IF); - this.state = 2051; + this.state = 2061; this.match(FlinkSqlParser.KW_NOT); - this.state = 2052; + this.state = 2062; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10763,13 +10815,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public ifExists(): IfExistsContext { let localctx: IfExistsContext = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 320, FlinkSqlParser.RULE_ifExists); + this.enterRule(localctx, 322, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); { - this.state = 2054; + this.state = 2064; this.match(FlinkSqlParser.KW_IF); - this.state = 2055; + this.state = 2065; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10790,32 +10842,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePropertyList(): TablePropertyListContext { let localctx: TablePropertyListContext = new TablePropertyListContext(this, this._ctx, this.state); - this.enterRule(localctx, 322, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localctx, 324, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2057; + this.state = 2067; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2058; + this.state = 2068; this.tableProperty(); - this.state = 2063; + this.state = 2073; this._errHandler.sync(this); _la = this._input.LA(1); while (_la===388) { { { - this.state = 2059; + this.state = 2069; this.match(FlinkSqlParser.COMMA); - this.state = 2060; + this.state = 2070; this.tableProperty(); } } - this.state = 2065; + this.state = 2075; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 2066; + this.state = 2076; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10836,29 +10888,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableProperty(): TablePropertyContext { let localctx: TablePropertyContext = new TablePropertyContext(this, this._ctx, this.state); - this.enterRule(localctx, 324, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localctx, 326, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2068; + this.state = 2078; localctx._key = this.tablePropertyKey(); - this.state = 2073; + this.state = 2083; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===249 || _la===352 || _la===373 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 7) !== 0)) { { - this.state = 2070; + this.state = 2080; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===373) { { - this.state = 2069; + this.state = 2079; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2072; + this.state = 2082; localctx._value = this.tablePropertyValue(); } } @@ -10882,29 +10934,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePropertyKey(): TablePropertyKeyContext { let localctx: TablePropertyKeyContext = new TablePropertyKeyContext(this, this._ctx, this.state); - this.enterRule(localctx, 326, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localctx, 328, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2078; + this.state = 2088; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 241, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 242, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 2075; + this.state = 2085; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 2076; + this.state = 2086; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 2077; + this.state = 2087; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10927,22 +10979,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePropertyValue(): TablePropertyValueContext { let localctx: TablePropertyValueContext = new TablePropertyValueContext(this, this._ctx, this.state); - this.enterRule(localctx, 328, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localctx, 330, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2084; + this.state = 2094; this._errHandler.sync(this); switch (this._input.LA(1)) { case 406: this.enterOuterAlt(localctx, 1); { - this.state = 2080; + this.state = 2090; this.match(FlinkSqlParser.DIG_LITERAL); } break; case 407: this.enterOuterAlt(localctx, 2); { - this.state = 2081; + this.state = 2091; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -10950,14 +11002,14 @@ export default class FlinkSqlParser extends Parser { case 352: this.enterOuterAlt(localctx, 3); { - this.state = 2082; + this.state = 2092; this.booleanLiteral(); } break; case 405: this.enterOuterAlt(localctx, 4); { - this.state = 2083; + this.state = 2093; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10982,40 +11034,40 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public logicalOperator(): LogicalOperatorContext { let localctx: LogicalOperatorContext = new LogicalOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 330, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localctx, 332, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2092; + this.state = 2102; this._errHandler.sync(this); switch (this._input.LA(1)) { case 181: this.enterOuterAlt(localctx, 1); { - this.state = 2086; + this.state = 2096; this.match(FlinkSqlParser.KW_AND); } break; case 379: this.enterOuterAlt(localctx, 2); { - this.state = 2087; + this.state = 2097; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2088; + this.state = 2098; this.match(FlinkSqlParser.BIT_AND_OP); } break; case 305: this.enterOuterAlt(localctx, 3); { - this.state = 2089; + this.state = 2099; this.match(FlinkSqlParser.KW_OR); } break; case 378: this.enterOuterAlt(localctx, 4); { - this.state = 2090; + this.state = 2100; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2091; + this.state = 2101; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11040,76 +11092,76 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public comparisonOperator(): ComparisonOperatorContext { let localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 332, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localctx, 334, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2108; + this.state = 2118; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 244, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 245, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 2094; + this.state = 2104; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 2095; + this.state = 2105; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 2096; + this.state = 2106; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 2097; + this.state = 2107; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2098; + this.state = 2108; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 2099; + this.state = 2109; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2100; + this.state = 2110; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 2101; + this.state = 2111; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2102; + this.state = 2112; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 2103; + this.state = 2113; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2104; + this.state = 2114; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 2105; + this.state = 2115; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2106; + this.state = 2116; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2107; + this.state = 2117; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11132,47 +11184,47 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public bitOperator(): BitOperatorContext { let localctx: BitOperatorContext = new BitOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 334, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localctx, 336, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2117; + this.state = 2127; this._errHandler.sync(this); switch (this._input.LA(1)) { case 375: this.enterOuterAlt(localctx, 1); { - this.state = 2110; + this.state = 2120; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2111; + this.state = 2121; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 374: this.enterOuterAlt(localctx, 2); { - this.state = 2112; + this.state = 2122; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2113; + this.state = 2123; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 379: this.enterOuterAlt(localctx, 3); { - this.state = 2114; + this.state = 2124; this.match(FlinkSqlParser.BIT_AND_OP); } break; case 380: this.enterOuterAlt(localctx, 4); { - this.state = 2115; + this.state = 2125; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case 378: this.enterOuterAlt(localctx, 5); { - this.state = 2116; + this.state = 2126; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11197,12 +11249,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public mathOperator(): MathOperatorContext { let localctx: MathOperatorContext = new MathOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 336, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localctx, 338, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2119; + this.state = 2129; _la = this._input.LA(1); if(!(_la===32 || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 221) !== 0))) { this._errHandler.recoverInline(this); @@ -11230,12 +11282,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public unaryOperator(): UnaryOperatorContext { let localctx: UnaryOperatorContext = new UnaryOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 338, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localctx, 340, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2121; + this.state = 2131; _la = this._input.LA(1); if(!(_la===298 || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 6291459) !== 0))) { this._errHandler.recoverInline(this); @@ -11263,16 +11315,16 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public constant(): ConstantContext { let localctx: ConstantContext = new ConstantContext(this, this._ctx, this.state); - this.enterRule(localctx, 340, FlinkSqlParser.RULE_constant); + this.enterRule(localctx, 342, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2137; + this.state = 2147; this._errHandler.sync(this); switch (this._input.LA(1)) { case 271: this.enterOuterAlt(localctx, 1); { - this.state = 2123; + this.state = 2133; this.timeIntervalExpression(); } break; @@ -11288,14 +11340,14 @@ export default class FlinkSqlParser extends Parser { case 372: this.enterOuterAlt(localctx, 2); { - this.state = 2124; + this.state = 2134; this.timePointLiteral(); } break; case 405: this.enterOuterAlt(localctx, 3); { - this.state = 2125; + this.state = 2135; this.stringLiteral(); } break; @@ -11303,17 +11355,17 @@ export default class FlinkSqlParser extends Parser { case 406: this.enterOuterAlt(localctx, 4); { - this.state = 2127; + this.state = 2137; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===397) { { - this.state = 2126; + this.state = 2136; this.match(FlinkSqlParser.HYPNEN_SIGN); } } - this.state = 2129; + this.state = 2139; this.decimalLiteral(); } break; @@ -11321,21 +11373,21 @@ export default class FlinkSqlParser extends Parser { case 352: this.enterOuterAlt(localctx, 5); { - this.state = 2130; + this.state = 2140; this.booleanLiteral(); } break; case 407: this.enterOuterAlt(localctx, 6); { - this.state = 2131; + this.state = 2141; this.match(FlinkSqlParser.REAL_LITERAL); } break; case 408: this.enterOuterAlt(localctx, 7); { - this.state = 2132; + this.state = 2142; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11343,17 +11395,17 @@ export default class FlinkSqlParser extends Parser { case 299: this.enterOuterAlt(localctx, 8); { - this.state = 2134; + this.state = 2144; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===298) { { - this.state = 2133; + this.state = 2143; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2136; + this.state = 2146; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11378,13 +11430,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public timePointLiteral(): TimePointLiteralContext { let localctx: TimePointLiteralContext = new TimePointLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 342, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localctx, 344, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localctx, 1); { - this.state = 2139; + this.state = 2149; this.timePointUnit(); - this.state = 2140; + this.state = 2150; this.stringLiteral(); } } @@ -11405,11 +11457,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public stringLiteral(): StringLiteralContext { let localctx: StringLiteralContext = new StringLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 344, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localctx, 346, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localctx, 1); { - this.state = 2142; + this.state = 2152; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11430,11 +11482,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public decimalLiteral(): DecimalLiteralContext { let localctx: DecimalLiteralContext = new DecimalLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 346, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localctx, 348, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localctx, 1); { - this.state = 2144; + this.state = 2154; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11455,12 +11507,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public booleanLiteral(): BooleanLiteralContext { let localctx: BooleanLiteralContext = new BooleanLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 348, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localctx, 350, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2146; + this.state = 2156; _la = this._input.LA(1); if(!(_la===249 || _la===352)) { this._errHandler.recoverInline(this); @@ -11488,12 +11540,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public setQuantifier(): SetQuantifierContext { let localctx: SetQuantifierContext = new SetQuantifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 350, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localctx, 352, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2148; + this.state = 2158; _la = this._input.LA(1); if(!(_la===178 || _la===235)) { this._errHandler.recoverInline(this); @@ -11521,12 +11573,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public timePointUnit(): TimePointUnitContext { let localctx: TimePointUnitContext = new TimePointUnitContext(this, this._ctx, this.state); - this.enterRule(localctx, 352, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localctx, 354, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2150; + this.state = 2160; _la = this._input.LA(1); if(!(_la===78 || _la===80 || _la===114 || _la===171 || _la===227 || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 2415919105) !== 0) || _la===329 || _la===372)) { this._errHandler.recoverInline(this); @@ -11554,12 +11606,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public timeIntervalUnit(): TimeIntervalUnitContext { let localctx: TimeIntervalUnitContext = new TimeIntervalUnitContext(this, this._ctx, this.state); - this.enterRule(localctx, 354, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localctx, 356, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2152; + this.state = 2162; _la = this._input.LA(1); if(!(((((_la - 14)) & ~0x1F) === 0 && ((1 << (_la - 14)) & 4218881) !== 0) || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & 418381825) !== 0) || _la===114 || _la===130 || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 19) !== 0) || _la===227 || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 2415919105) !== 0) || _la===329 || _la===372)) { this._errHandler.recoverInline(this); @@ -11587,12 +11639,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localctx: ReservedKeywordsUsedAsFuncParamContext = new ReservedKeywordsUsedAsFuncParamContext(this, this._ctx, this.state); - this.enterRule(localctx, 356, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localctx, 358, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2154; + this.state = 2164; _la = this._input.LA(1); if(!(_la===178 || _la===196 || _la===235 || _la===278 || _la===351 || _la===395)) { this._errHandler.recoverInline(this); @@ -11620,12 +11672,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localctx: ReservedKeywordsUsedAsFuncNameContext = new ReservedKeywordsUsedAsFuncNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 358, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localctx, 360, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2156; + this.state = 2166; _la = this._input.LA(1); if(!(_la===59 || _la===77 || _la===114 || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 2147622977) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4227393) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 2149711881) !== 0) || ((((_la - 292)) & ~0x1F) === 0 && ((1 << (_la - 292)) & 2466512897) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 554436097) !== 0) || _la===372)) { this._errHandler.recoverInline(this); @@ -11653,12 +11705,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public reservedKeywords(): ReservedKeywordsContext { let localctx: ReservedKeywordsContext = new ReservedKeywordsContext(this, this._ctx, this.state); - this.enterRule(localctx, 360, FlinkSqlParser.RULE_reservedKeywords); + this.enterRule(localctx, 362, FlinkSqlParser.RULE_reservedKeywords); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2158; + this.state = 2168; _la = this._input.LA(1); if(!(((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 4294967295) !== 0) || ((((_la - 209)) & ~0x1F) === 0 && ((1 << (_la - 209)) & 4294967295) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 4294967293) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 4294967295) !== 0) || ((((_la - 305)) & ~0x1F) === 0 && ((1 << (_la - 305)) & 4294963199) !== 0) || ((((_la - 337)) & ~0x1F) === 0 && ((1 << (_la - 337)) & 4294950903) !== 0) || ((((_la - 369)) & ~0x1F) === 0 && ((1 << (_la - 369)) & 15) !== 0))) { this._errHandler.recoverInline(this); @@ -11686,12 +11738,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, 362, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localctx, 364, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 2160; + this.state = 2170; _la = this._input.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967280) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967279) !== 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)) & 126975) !== 0))) { this._errHandler.recoverInline(this); @@ -11719,15 +11771,15 @@ export default class FlinkSqlParser extends Parser { public sempred(localctx: RuleContext, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 79: + case 80: return this.queryStatement_sempred(localctx as QueryStatementContext, predIndex); - case 89: + case 90: return this.tableExpression_sempred(localctx as TableExpressionContext, predIndex); - case 131: + case 132: return this.booleanExpression_sempred(localctx as BooleanExpressionContext, predIndex); - case 134: - return this.valueExpression_sempred(localctx as ValueExpressionContext, predIndex); case 135: + return this.valueExpression_sempred(localctx as ValueExpressionContext, predIndex); + case 136: return this.primaryExpression_sempred(localctx as PrimaryExpressionContext, predIndex); } return true; @@ -11762,29 +11814,31 @@ export default class FlinkSqlParser extends Parser { private valueExpression_sempred(localctx: ValueExpressionContext, predIndex: number): boolean { switch (predIndex) { case 6: - return this.precpred(this._ctx, 6); + return this.precpred(this._ctx, 7); case 7: - return this.precpred(this._ctx, 5); + return this.precpred(this._ctx, 6); case 8: - return this.precpred(this._ctx, 4); + return this.precpred(this._ctx, 5); case 9: - return this.precpred(this._ctx, 3); + return this.precpred(this._ctx, 4); case 10: - return this.precpred(this._ctx, 2); + return this.precpred(this._ctx, 3); case 11: + return this.precpred(this._ctx, 2); + case 12: return this.precpred(this._ctx, 1); } return true; } private primaryExpression_sempred(localctx: PrimaryExpressionContext, predIndex: number): boolean { switch (predIndex) { - case 12: + case 13: return this.precpred(this._ctx, 4); } return true; } - public static readonly _serializedATN: number[] = [4,1,410,2163,2,0,7,0, + public static readonly _serializedATN: number[] = [4,1,410,2173,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, @@ -11812,800 +11866,804 @@ export default class FlinkSqlParser extends Parser { 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,1,0,1,0,1,0,1,1,1,1,1,1,1,2,1,2,3,2,373,8,2,1,2,5,2,376,8,2,10,2, - 12,2,379,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,393,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,411, - 8,5,1,6,1,6,3,6,415,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,3,8,424,8,8,1,8,1,8, - 1,8,3,8,429,8,8,1,9,1,9,1,9,5,9,434,8,9,10,9,12,9,437,9,9,1,10,1,10,1,11, - 1,11,3,11,443,8,11,1,11,1,11,3,11,447,8,11,1,12,1,12,1,12,1,12,1,12,5,12, - 454,8,12,10,12,12,12,457,9,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,3,13,468,8,13,1,13,3,13,471,8,13,1,13,1,13,1,13,1,13,1,13,3,13,478,8, - 13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,486,8,13,1,13,1,13,1,13,3,13,491, - 8,13,1,13,3,13,494,8,13,1,14,1,14,1,14,1,14,1,14,3,14,501,8,14,1,15,1,15, - 1,15,1,15,1,16,1,16,3,16,509,8,16,1,17,1,17,3,17,513,8,17,1,18,1,18,1,18, - 1,18,1,19,1,19,1,19,1,19,1,19,1,19,3,19,525,8,19,1,19,1,19,1,19,1,19,1, - 19,1,19,3,19,533,8,19,1,19,1,19,3,19,537,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,558,8,19,1,20,1,20,3,20,562,8,20,1,21,1,21,3,21,566,8,21,1,21,1,21,3, - 21,570,8,21,1,21,1,21,1,21,1,21,1,21,5,21,577,8,21,10,21,12,21,580,9,21, - 1,21,1,21,3,21,584,8,21,1,21,1,21,3,21,588,8,21,1,21,1,21,3,21,592,8,21, - 1,21,1,21,3,21,596,8,21,1,21,3,21,599,8,21,1,21,1,21,3,21,603,8,21,1,22, - 1,22,1,22,3,22,608,8,22,1,22,1,22,1,22,1,22,3,22,614,8,22,1,23,1,23,1,23, - 3,23,619,8,23,1,24,1,24,1,24,3,24,624,8,24,1,24,3,24,627,8,24,1,25,1,25, - 3,25,631,8,25,1,26,1,26,1,26,1,26,5,26,637,8,26,10,26,12,26,640,9,26,1, - 26,1,26,1,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,1,27,1,27,3,27,675,8,27,1,27,1,27, - 3,27,679,8,27,3,27,681,8,27,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,3,29, - 691,8,29,1,29,1,29,1,30,1,30,1,30,1,30,3,30,699,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,721,8,33,10,33,12,33,724,9,33,1,33,1,33,1,34,1,34,3,34,730, - 8,34,1,34,1,34,1,34,1,34,3,34,736,8,34,1,34,3,34,739,8,34,1,34,3,34,742, - 8,34,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,3,36,752,8,36,1,36,3,36,755, - 8,36,1,37,1,37,1,38,1,38,1,38,1,38,3,38,763,8,38,1,39,1,39,1,40,1,40,1, - 40,1,40,1,40,1,40,1,41,1,41,3,41,775,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,797,8,45,10,45,12,45,800,9,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46, - 5,46,810,8,46,10,46,12,46,813,9,46,1,46,1,46,3,46,817,8,46,1,47,1,47,3, - 47,821,8,47,1,48,1,48,1,48,1,48,5,48,827,8,48,10,48,12,48,830,9,48,1,48, - 3,48,833,8,48,1,49,1,49,1,50,1,50,1,50,1,50,3,50,841,8,50,1,51,1,51,1,51, - 1,51,1,51,1,52,1,52,1,52,3,52,851,8,52,1,52,1,52,3,52,855,8,52,1,52,1,52, - 1,53,1,53,3,53,861,8,53,1,53,1,53,3,53,865,8,53,1,53,1,53,3,53,869,8,53, - 1,53,3,53,872,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,881,8,54,1,54, - 1,54,3,54,885,8,54,1,54,1,54,1,54,1,54,1,54,3,54,892,8,54,1,54,3,54,895, - 8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,903,8,55,10,55,12,55,906,9,55,1, - 56,1,56,1,57,1,57,1,57,3,57,913,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57, - 921,8,57,1,58,1,58,3,58,925,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,940,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,959,8,64,1,65, - 1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,970,8,66,1,66,1,66,3,66,974, - 8,66,1,66,1,66,1,66,1,66,1,66,3,66,981,8,66,1,67,1,67,1,67,3,67,986,8,67, - 1,67,1,67,1,68,1,68,3,68,992,8,68,1,68,1,68,3,68,996,8,68,1,68,1,68,1,69, - 1,69,1,69,3,69,1003,8,69,1,69,1,69,3,69,1007,8,69,1,70,1,70,3,70,1011,8, - 70,1,70,1,70,3,70,1015,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1023,8,71, - 1,71,1,71,3,71,1027,8,71,1,71,1,71,1,72,3,72,1032,8,72,1,72,1,72,1,72,1, - 72,3,72,1038,8,72,1,73,1,73,1,73,1,73,3,73,1044,8,73,1,73,3,73,1047,8,73, - 1,73,1,73,3,73,1051,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1060,8, - 75,10,75,12,75,1063,9,75,1,76,1,76,1,76,1,76,5,76,1069,8,76,10,76,12,76, - 1072,9,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1083,8,77,11, - 77,12,77,1084,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1095,8,78,11, - 78,12,78,1096,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,1112,8,79,1,79,3,79,1115,8,79,1,79,1,79,3,79,1119,8,79,1,79, - 3,79,1122,8,79,3,79,1124,8,79,1,79,1,79,1,79,3,79,1129,8,79,1,79,1,79,3, - 79,1133,8,79,1,79,3,79,1136,8,79,5,79,1138,8,79,10,79,12,79,1141,9,79,1, - 80,1,80,1,80,1,80,5,80,1147,8,80,10,80,12,80,1150,9,80,1,81,1,81,1,81,1, - 81,5,81,1156,8,81,10,81,12,81,1159,9,81,1,82,1,82,1,82,1,82,1,82,5,82,1166, - 8,82,10,82,12,82,1169,9,82,1,82,1,82,3,82,1173,8,82,1,82,1,82,1,82,1,82, - 1,82,1,83,1,83,1,84,1,84,1,84,3,84,1185,8,84,1,84,3,84,1188,8,84,1,84,3, - 84,1191,8,84,1,84,3,84,1194,8,84,1,84,1,84,1,84,1,84,3,84,1200,8,84,1,85, - 1,85,3,85,1204,8,85,1,85,1,85,1,85,1,85,5,85,1210,8,85,10,85,12,85,1213, - 9,85,3,85,1215,8,85,1,86,1,86,1,86,3,86,1220,8,86,1,86,3,86,1223,8,86,3, - 86,1225,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,1239,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1248,8,89,10,89, - 12,89,1251,9,89,1,89,1,89,3,89,1255,8,89,1,89,1,89,1,89,1,89,1,89,1,89, - 3,89,1263,8,89,1,89,3,89,1266,8,89,1,89,3,89,1269,8,89,1,89,1,89,1,89,3, - 89,1274,8,89,5,89,1276,8,89,10,89,12,89,1279,9,89,1,90,1,90,3,90,1283,8, - 90,1,91,3,91,1286,8,91,1,91,1,91,3,91,1290,8,91,1,91,3,91,1293,8,91,1,91, - 3,91,1296,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1306,8,91,10, - 91,12,91,1309,9,91,1,91,1,91,1,91,1,91,3,91,1315,8,91,1,91,1,91,1,91,1, - 91,1,91,1,91,1,91,1,91,1,91,3,91,1326,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,1353,8,97,10,97,12,97,1356,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,1377,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,1393,8,102,10,102,12,102,1396, - 9,102,1,102,1,102,3,102,1400,8,102,1,103,1,103,1,103,1,104,1,104,1,104, - 1,104,1,104,5,104,1410,8,104,10,104,12,104,1413,9,104,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,5,105,1423,8,105,10,105,12,105,1426,9,105, - 1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1435,8,105,10,105,12,105, - 1438,9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1447,8,105,10, - 105,12,105,1450,9,105,1,105,1,105,3,105,1454,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,1479,8,112,10,112,12, - 112,1482,9,112,1,113,1,113,1,113,1,113,1,114,3,114,1489,8,114,1,114,1,114, - 3,114,1493,8,114,1,114,3,114,1496,8,114,1,114,3,114,1499,8,114,1,114,1, - 114,1,115,1,115,1,115,3,115,1506,8,115,1,115,3,115,1509,8,115,1,115,3,115, - 1512,8,115,1,115,3,115,1515,8,115,1,115,3,115,1518,8,115,1,115,3,115,1521, - 8,115,1,115,1,115,1,115,3,115,1526,8,115,1,115,3,115,1529,8,115,1,116,1, - 116,1,116,1,116,1,116,5,116,1536,8,116,10,116,12,116,1539,9,116,1,117,1, - 117,3,117,1543,8,117,1,117,1,117,3,117,1547,8,117,1,118,1,118,1,118,3,118, - 1552,8,118,1,119,1,119,1,119,1,119,1,119,5,119,1559,8,119,10,119,12,119, - 1562,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,1580,8,120,1,121,1,121,1,121, - 1,121,5,121,1586,8,121,10,121,12,121,1589,9,121,1,122,1,122,1,122,4,122, - 1594,8,122,11,122,12,122,1595,1,122,1,122,3,122,1600,8,122,1,123,1,123, - 3,123,1604,8,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124, - 1614,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,1640,8,125,1,126,1,126,1,126,1,126,5,126,1646,8,126,10, - 126,12,126,1649,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1, - 127,3,127,1660,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,1682,8,131,3,131,1684,8,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,3,131,1695,8,131,1,131,5,131,1698,8,131,10,131,12,131,1701, - 9,131,1,132,3,132,1704,8,132,1,132,1,132,3,132,1708,8,132,1,132,1,132,1, - 132,1,132,1,132,3,132,1715,8,132,1,132,1,132,1,132,1,132,1,132,5,132,1722, - 8,132,10,132,12,132,1725,9,132,1,132,1,132,1,132,3,132,1730,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,1743, - 8,132,1,132,1,132,1,132,1,132,1,132,3,132,1750,8,132,1,132,1,132,1,132, - 3,132,1755,8,132,1,132,1,132,1,132,1,132,3,132,1761,8,132,1,132,1,132,1, - 132,1,132,1,132,3,132,1768,8,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,1,133,1,133,3,133,1799,8,133,3,133,1801,8,133,1,134,1,134,1,134, - 1,134,3,134,1807,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, - 1828,8,134,10,134,12,134,1831,9,134,1,135,1,135,1,135,4,135,1836,8,135, - 11,135,12,135,1837,1,135,1,135,3,135,1842,8,135,1,135,1,135,1,135,1,135, - 1,135,4,135,1849,8,135,11,135,12,135,1850,1,135,1,135,3,135,1855,8,135, + 7,181,2,182,7,182,1,0,1,0,1,0,1,1,1,1,1,1,1,2,1,2,3,2,375,8,2,1,2,5,2,378, + 8,2,10,2,12,2,381,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,395,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,413,8,5,1,6,1,6,3,6,417,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,3,8,426,8, + 8,1,8,1,8,1,8,3,8,431,8,8,1,9,1,9,1,9,5,9,436,8,9,10,9,12,9,439,9,9,1,10, + 1,10,1,11,1,11,3,11,445,8,11,1,11,1,11,3,11,449,8,11,1,12,1,12,1,12,1,12, + 1,12,5,12,456,8,12,10,12,12,12,459,9,12,1,13,1,13,1,13,1,13,1,13,1,13,1, + 13,1,13,1,13,3,13,470,8,13,1,13,3,13,473,8,13,1,13,1,13,1,13,1,13,1,13, + 3,13,480,8,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,488,8,13,1,13,1,13,1,13, + 3,13,493,8,13,1,13,3,13,496,8,13,1,14,1,14,1,14,1,14,1,14,3,14,503,8,14, + 1,15,1,15,1,15,1,15,1,16,1,16,3,16,511,8,16,1,17,1,17,3,17,515,8,17,1,18, + 1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,3,19,527,8,19,1,19,1,19,1, + 19,1,19,1,19,1,19,3,19,535,8,19,1,19,1,19,3,19,539,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,1,19,3,19,561,8,19,1,20,4,20,564,8,20,11,20,12,20,565,1,21,1,21, + 3,21,570,8,21,1,22,1,22,3,22,574,8,22,1,22,1,22,3,22,578,8,22,1,22,1,22, + 1,22,1,22,1,22,5,22,585,8,22,10,22,12,22,588,9,22,1,22,1,22,3,22,592,8, + 22,1,22,1,22,3,22,596,8,22,1,22,1,22,3,22,600,8,22,1,22,1,22,3,22,604,8, + 22,1,22,3,22,607,8,22,1,22,1,22,3,22,611,8,22,1,23,1,23,1,23,3,23,616,8, + 23,1,23,1,23,1,23,1,23,3,23,622,8,23,1,24,1,24,1,24,3,24,627,8,24,1,25, + 1,25,1,25,3,25,632,8,25,1,25,3,25,635,8,25,1,26,1,26,3,26,639,8,26,1,27, + 1,27,1,27,1,27,5,27,645,8,27,10,27,12,27,648,9,27,1,27,1,27,1,28,1,28,1, + 28,3,28,655,8,28,1,28,1,28,3,28,659,8,28,1,28,1,28,3,28,663,8,28,1,28,1, + 28,3,28,667,8,28,1,28,1,28,3,28,671,8,28,1,28,1,28,3,28,675,8,28,1,28,1, + 28,3,28,679,8,28,1,28,1,28,3,28,683,8,28,1,28,1,28,3,28,687,8,28,3,28,689, + 8,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,3,30,699,8,30,1,30,1,30,1, + 31,1,31,1,31,1,31,3,31,707,8,31,1,31,1,31,1,32,1,32,1,32,1,32,1,33,1,33, + 1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34,729,8, + 34,10,34,12,34,732,9,34,1,34,1,34,1,35,1,35,3,35,738,8,35,1,35,1,35,1,35, + 1,35,3,35,744,8,35,1,35,3,35,747,8,35,1,35,3,35,750,8,35,1,36,1,36,1,36, + 1,37,1,37,1,37,1,37,1,37,3,37,760,8,37,1,37,3,37,763,8,37,1,38,1,38,1,39, + 1,39,1,39,1,39,3,39,771,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1, + 42,1,42,3,42,783,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44, + 1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,805,8,46,10,46,12, + 46,808,9,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,5,47,818,8,47,10,47, + 12,47,821,9,47,1,47,1,47,3,47,825,8,47,1,48,1,48,3,48,829,8,48,1,49,1,49, + 1,49,1,49,5,49,835,8,49,10,49,12,49,838,9,49,1,49,3,49,841,8,49,1,50,1, + 50,1,51,1,51,1,51,1,51,3,51,849,8,51,1,52,1,52,1,52,1,52,1,52,1,53,1,53, + 1,53,3,53,859,8,53,1,53,1,53,3,53,863,8,53,1,53,1,53,1,54,1,54,3,54,869, + 8,54,1,54,1,54,3,54,873,8,54,1,54,1,54,3,54,877,8,54,1,54,3,54,880,8,54, + 1,54,1,54,1,54,1,55,1,55,1,55,1,55,3,55,889,8,55,1,55,1,55,3,55,893,8,55, + 1,55,1,55,1,55,1,55,1,55,3,55,900,8,55,1,55,3,55,903,8,55,1,56,1,56,1,56, + 1,56,1,56,1,56,5,56,911,8,56,10,56,12,56,914,9,56,1,57,1,57,1,58,1,58,1, + 58,3,58,921,8,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,929,8,58,1,59,1,59, + 3,59,933,8,59,1,59,1,59,1,59,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1, + 61,1,61,3,61,948,8,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,64,1,64, + 1,64,1,65,1,65,1,65,1,65,1,65,1,65,3,65,967,8,65,1,66,1,66,1,66,1,66,1, + 66,1,67,1,67,1,67,1,67,3,67,978,8,67,1,67,1,67,3,67,982,8,67,1,67,1,67, + 1,67,1,67,1,67,3,67,989,8,67,1,68,1,68,1,68,3,68,994,8,68,1,68,1,68,1,69, + 1,69,3,69,1000,8,69,1,69,1,69,3,69,1004,8,69,1,69,1,69,1,70,1,70,1,70,3, + 70,1011,8,70,1,70,1,70,3,70,1015,8,70,1,71,1,71,3,71,1019,8,71,1,71,1,71, + 3,71,1023,8,71,1,71,1,71,1,72,1,72,1,72,1,72,3,72,1031,8,72,1,72,1,72,3, + 72,1035,8,72,1,72,1,72,1,73,3,73,1040,8,73,1,73,1,73,1,73,1,73,3,73,1046, + 8,73,1,74,1,74,1,74,1,74,3,74,1052,8,74,1,74,3,74,1055,8,74,1,74,1,74,3, + 74,1059,8,74,1,75,1,75,1,75,1,76,1,76,1,76,1,76,5,76,1068,8,76,10,76,12, + 76,1071,9,76,1,77,1,77,1,77,1,77,5,77,1077,8,77,10,77,12,77,1080,9,77,1, + 77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1091,8,78,11,78,12,78,1092, + 1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,4,79,1103,8,79,11,79,12,79,1104, + 1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1120, + 8,80,1,80,3,80,1123,8,80,1,80,1,80,3,80,1127,8,80,1,80,3,80,1130,8,80,3, + 80,1132,8,80,1,80,1,80,1,80,3,80,1137,8,80,1,80,1,80,3,80,1141,8,80,1,80, + 3,80,1144,8,80,5,80,1146,8,80,10,80,12,80,1149,9,80,1,81,1,81,1,81,1,81, + 5,81,1155,8,81,10,81,12,81,1158,9,81,1,82,1,82,1,82,1,82,5,82,1164,8,82, + 10,82,12,82,1167,9,82,1,83,1,83,1,83,1,83,1,83,5,83,1174,8,83,10,83,12, + 83,1177,9,83,1,83,1,83,3,83,1181,8,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84, + 1,85,1,85,1,85,3,85,1193,8,85,1,85,3,85,1196,8,85,1,85,3,85,1199,8,85,1, + 85,3,85,1202,8,85,1,85,1,85,1,85,1,85,3,85,1208,8,85,1,86,1,86,3,86,1212, + 8,86,1,86,1,86,1,86,1,86,5,86,1218,8,86,10,86,12,86,1221,9,86,3,86,1223, + 8,86,1,87,1,87,1,87,3,87,1228,8,87,1,87,3,87,1231,8,87,3,87,1233,8,87,1, + 88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,3,88,1247,8,88, + 1,89,1,89,1,89,1,90,1,90,1,90,1,90,5,90,1256,8,90,10,90,12,90,1259,9,90, + 1,90,1,90,3,90,1263,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1271,8,90,1, + 90,3,90,1274,8,90,1,90,3,90,1277,8,90,1,90,1,90,1,90,3,90,1282,8,90,5,90, + 1284,8,90,10,90,12,90,1287,9,90,1,91,1,91,3,91,1291,8,91,1,92,3,92,1294, + 8,92,1,92,1,92,3,92,1298,8,92,1,92,3,92,1301,8,92,1,92,3,92,1304,8,92,1, + 92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,5,92,1314,8,92,10,92,12,92,1317,9, + 92,1,92,1,92,1,92,1,92,3,92,1323,8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, + 1,92,1,92,3,92,1334,8,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1, + 95,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98, + 1,98,5,98,1361,8,98,10,98,12,98,1364,9,98,1,98,1,98,1,99,1,99,1,100,1,100, + 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, + 1,100,3,100,1385,8,100,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,5,103,1401,8,103,10,103,12,103,1404, + 9,103,1,103,1,103,3,103,1408,8,103,1,104,1,104,1,104,1,105,1,105,1,105, + 1,105,1,105,5,105,1418,8,105,10,105,12,105,1421,9,105,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,5,106,1431,8,106,10,106,12,106,1434,9,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,5,106,1443,8,106,10,106,12,106, + 1446,9,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,5,106,1455,8,106,10, + 106,12,106,1458,9,106,1,106,1,106,3,106,1462,8,106,1,107,1,107,1,107,1, + 108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,110,1,110,1,111,1, + 111,1,112,1,112,1,112,1,113,1,113,1,113,1,113,5,113,1487,8,113,10,113,12, + 113,1490,9,113,1,114,1,114,1,114,1,114,1,115,3,115,1497,8,115,1,115,1,115, + 3,115,1501,8,115,1,115,3,115,1504,8,115,1,115,3,115,1507,8,115,1,115,1, + 115,1,116,1,116,1,116,3,116,1514,8,116,1,116,3,116,1517,8,116,1,116,3,116, + 1520,8,116,1,116,3,116,1523,8,116,1,116,3,116,1526,8,116,1,116,3,116,1529, + 8,116,1,116,1,116,1,116,3,116,1534,8,116,1,116,3,116,1537,8,116,1,117,1, + 117,1,117,1,117,1,117,5,117,1544,8,117,10,117,12,117,1547,9,117,1,118,1, + 118,3,118,1551,8,118,1,118,1,118,3,118,1555,8,118,1,119,1,119,1,119,3,119, + 1560,8,119,1,120,1,120,1,120,1,120,1,120,5,120,1567,8,120,10,120,12,120, + 1570,9,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,3,121,1588,8,121,1,122,1,122,1,122, + 1,122,5,122,1594,8,122,10,122,12,122,1597,9,122,1,123,1,123,1,123,4,123, + 1602,8,123,11,123,12,123,1603,1,123,1,123,3,123,1608,8,123,1,124,1,124, + 3,124,1612,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125, + 1622,8,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,1,126,3,126,1648,8,126,1,127,1,127,1,127,1,127,5,127,1654,8,127,10, + 127,12,127,1657,9,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1, + 128,3,128,1668,8,128,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1, + 131,1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3, + 132,1690,8,132,3,132,1692,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,1703,8,132,1,132,5,132,1706,8,132,10,132,12,132,1709, + 9,132,1,133,3,133,1712,8,133,1,133,1,133,3,133,1716,8,133,1,133,1,133,1, + 133,1,133,1,133,3,133,1723,8,133,1,133,1,133,1,133,1,133,1,133,5,133,1730, + 8,133,10,133,12,133,1733,9,133,1,133,1,133,1,133,3,133,1738,8,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,1751, + 8,133,1,133,1,133,1,133,1,133,1,133,3,133,1758,8,133,1,133,1,133,1,133, + 3,133,1763,8,133,1,133,1,133,1,133,1,133,3,133,1769,8,133,1,133,1,133,1, + 133,1,133,1,133,3,133,1776,8,133,3,133,1778,8,133,1,134,3,134,1781,8,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,1791,8,134,10,134, + 12,134,1794,9,134,1,134,1,134,3,134,1798,8,134,1,134,3,134,1801,8,134,1, + 134,1,134,1,134,1,134,3,134,1807,8,134,3,134,1809,8,134,1,135,1,135,1,135, + 1,135,3,135,1815,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,1871,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 3,135,1880,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,1904,8,135,1,135,1,135,1,135,5,135,1909,8,135,10,135,12,135, - 1912,9,135,3,135,1914,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1, - 135,3,135,1924,8,135,1,135,1,135,1,135,1,135,1,135,5,135,1931,8,135,10, - 135,12,135,1934,9,135,1,136,1,136,1,136,3,136,1939,8,136,1,137,1,137,1, - 137,1,137,3,137,1945,8,137,1,138,1,138,1,139,1,139,1,140,1,140,3,140,1953, - 8,140,1,141,1,141,1,141,3,141,1958,8,141,1,142,1,142,3,142,1962,8,142,1, - 143,1,143,1,143,4,143,1967,8,143,11,143,12,143,1968,1,144,1,144,1,144,3, - 144,1974,8,144,1,145,1,145,1,145,1,145,1,145,1,146,3,146,1982,8,146,1,146, - 1,146,3,146,1986,8,146,1,147,3,147,1989,8,147,1,147,1,147,3,147,1993,8, - 147,1,148,3,148,1996,8,148,1,148,1,148,3,148,2000,8,148,1,149,1,149,1,149, - 1,150,1,150,4,150,2007,8,150,11,150,12,150,2008,1,150,3,150,2012,8,150, - 1,151,1,151,1,151,1,151,1,152,1,152,1,152,5,152,2021,8,152,10,152,12,152, - 2024,9,152,1,153,1,153,1,153,3,153,2029,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,2043,8,157,10,157,12, - 157,2046,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,2062,8,161,10,161,12,161,2065,9,161,1, - 161,1,161,1,162,1,162,3,162,2071,8,162,1,162,3,162,2074,8,162,1,163,1,163, - 1,163,3,163,2079,8,163,1,164,1,164,1,164,1,164,3,164,2085,8,164,1,165,1, - 165,1,165,1,165,1,165,1,165,3,165,2093,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,2109,8, - 166,1,167,1,167,1,167,1,167,1,167,1,167,1,167,3,167,2118,8,167,1,168,1, - 168,1,169,1,169,1,170,1,170,1,170,1,170,3,170,2128,8,170,1,170,1,170,1, - 170,1,170,1,170,3,170,2135,8,170,1,170,3,170,2138,8,170,1,171,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,178,1,178,1,179,1,179,1,180,1,180,1,181,1,181,1,181,1,2044,5,158,178, - 262,268,270,182,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38, - 40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86, - 88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126, - 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162, - 164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198, - 200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234, - 236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270, - 272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306, - 308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, - 344,346,348,350,352,354,356,358,360,362,0,47,2,0,30,30,234,234,3,0,16,16, - 38,38,68,68,4,0,13,13,26,26,65,65,167,167,2,0,12,12,25,25,2,0,252,252,263, - 263,2,0,166,166,344,344,2,0,4,4,118,118,1,0,108,112,3,0,195,195,225,225, - 299,299,11,0,10,10,146,146,152,152,191,192,204,204,226,226,268,269,335, - 335,347,347,349,349,364,365,2,0,369,369,371,371,4,0,228,229,236,236,250, - 250,300,300,2,0,184,184,293,293,2,0,41,41,264,264,3,0,21,21,96,96,178,178, - 3,0,41,41,94,94,264,264,3,0,53,53,90,90,170,170,3,0,66,66,107,107,126,126, - 2,0,11,11,123,123,2,0,93,93,272,272,3,0,243,243,270,270,354,354,4,0,253, - 253,265,265,279,279,323,323,3,0,23,23,57,57,156,156,5,0,24,24,139,140,145, - 145,151,151,302,302,2,0,221,221,326,326,3,0,57,57,136,136,156,156,2,0,8, - 8,30,30,2,0,45,45,73,73,4,0,249,249,299,299,352,352,356,356,2,0,186,186, - 340,340,2,0,178,178,182,182,2,0,377,377,397,398,4,0,32,32,395,395,399,399, - 402,402,2,0,397,398,400,400,1,0,397,398,1,0,406,407,2,0,406,406,409,409, - 4,0,32,32,395,395,397,399,401,402,3,0,298,298,376,377,397,398,2,0,249,249, - 352,352,2,0,178,178,235,235,10,0,78,78,80,80,114,114,171,171,227,227,261, - 261,289,289,292,292,329,329,372,372,16,0,14,14,27,28,36,36,58,58,78,81, - 85,86,114,114,130,130,171,172,175,175,227,227,261,261,289,289,292,292,329, - 329,372,372,6,0,178,178,196,196,235,235,278,278,351,351,395,395,28,0,59, - 59,77,77,114,114,171,171,177,177,184,184,188,188,202,203,209,209,211,211, - 218,218,225,225,258,258,261,261,275,275,279,279,289,289,292,292,310,310, - 316,317,320,320,323,323,329,329,338,339,347,348,353,353,358,358,372,372, - 5,0,177,241,243,316,318,339,341,350,352,372,3,0,4,35,37,171,173,176,2346, - 0,364,1,0,0,0,2,367,1,0,0,0,4,377,1,0,0,0,6,392,1,0,0,0,8,394,1,0,0,0,10, - 410,1,0,0,0,12,414,1,0,0,0,14,416,1,0,0,0,16,419,1,0,0,0,18,430,1,0,0,0, - 20,438,1,0,0,0,22,446,1,0,0,0,24,448,1,0,0,0,26,493,1,0,0,0,28,495,1,0, - 0,0,30,502,1,0,0,0,32,506,1,0,0,0,34,510,1,0,0,0,36,514,1,0,0,0,38,557, - 1,0,0,0,40,561,1,0,0,0,42,563,1,0,0,0,44,604,1,0,0,0,46,618,1,0,0,0,48, - 620,1,0,0,0,50,630,1,0,0,0,52,632,1,0,0,0,54,680,1,0,0,0,56,682,1,0,0,0, - 58,686,1,0,0,0,60,694,1,0,0,0,62,702,1,0,0,0,64,706,1,0,0,0,66,713,1,0, - 0,0,68,741,1,0,0,0,70,743,1,0,0,0,72,746,1,0,0,0,74,756,1,0,0,0,76,758, - 1,0,0,0,78,764,1,0,0,0,80,766,1,0,0,0,82,774,1,0,0,0,84,782,1,0,0,0,86, - 784,1,0,0,0,88,788,1,0,0,0,90,792,1,0,0,0,92,816,1,0,0,0,94,820,1,0,0,0, - 96,822,1,0,0,0,98,834,1,0,0,0,100,840,1,0,0,0,102,842,1,0,0,0,104,847,1, - 0,0,0,106,858,1,0,0,0,108,876,1,0,0,0,110,896,1,0,0,0,112,907,1,0,0,0,114, - 909,1,0,0,0,116,922,1,0,0,0,118,929,1,0,0,0,120,932,1,0,0,0,122,941,1,0, - 0,0,124,945,1,0,0,0,126,949,1,0,0,0,128,952,1,0,0,0,130,960,1,0,0,0,132, - 965,1,0,0,0,134,982,1,0,0,0,136,989,1,0,0,0,138,999,1,0,0,0,140,1008,1, - 0,0,0,142,1018,1,0,0,0,144,1037,1,0,0,0,146,1039,1,0,0,0,148,1052,1,0,0, - 0,150,1055,1,0,0,0,152,1064,1,0,0,0,154,1075,1,0,0,0,156,1088,1,0,0,0,158, - 1123,1,0,0,0,160,1142,1,0,0,0,162,1151,1,0,0,0,164,1160,1,0,0,0,166,1179, - 1,0,0,0,168,1199,1,0,0,0,170,1201,1,0,0,0,172,1224,1,0,0,0,174,1238,1,0, - 0,0,176,1240,1,0,0,0,178,1254,1,0,0,0,180,1280,1,0,0,0,182,1325,1,0,0,0, - 184,1327,1,0,0,0,186,1329,1,0,0,0,188,1335,1,0,0,0,190,1337,1,0,0,0,192, - 1342,1,0,0,0,194,1347,1,0,0,0,196,1359,1,0,0,0,198,1376,1,0,0,0,200,1378, - 1,0,0,0,202,1380,1,0,0,0,204,1399,1,0,0,0,206,1401,1,0,0,0,208,1404,1,0, - 0,0,210,1453,1,0,0,0,212,1455,1,0,0,0,214,1458,1,0,0,0,216,1460,1,0,0,0, - 218,1467,1,0,0,0,220,1469,1,0,0,0,222,1471,1,0,0,0,224,1474,1,0,0,0,226, - 1483,1,0,0,0,228,1488,1,0,0,0,230,1502,1,0,0,0,232,1530,1,0,0,0,234,1540, - 1,0,0,0,236,1548,1,0,0,0,238,1553,1,0,0,0,240,1579,1,0,0,0,242,1581,1,0, - 0,0,244,1590,1,0,0,0,246,1601,1,0,0,0,248,1613,1,0,0,0,250,1639,1,0,0,0, - 252,1641,1,0,0,0,254,1659,1,0,0,0,256,1661,1,0,0,0,258,1666,1,0,0,0,260, - 1669,1,0,0,0,262,1683,1,0,0,0,264,1769,1,0,0,0,266,1800,1,0,0,0,268,1806, - 1,0,0,0,270,1923,1,0,0,0,272,1938,1,0,0,0,274,1944,1,0,0,0,276,1946,1,0, - 0,0,278,1948,1,0,0,0,280,1952,1,0,0,0,282,1954,1,0,0,0,284,1959,1,0,0,0, - 286,1966,1,0,0,0,288,1970,1,0,0,0,290,1975,1,0,0,0,292,1985,1,0,0,0,294, - 1988,1,0,0,0,296,1995,1,0,0,0,298,2001,1,0,0,0,300,2011,1,0,0,0,302,2013, - 1,0,0,0,304,2017,1,0,0,0,306,2028,1,0,0,0,308,2030,1,0,0,0,310,2032,1,0, - 0,0,312,2034,1,0,0,0,314,2039,1,0,0,0,316,2047,1,0,0,0,318,2050,1,0,0,0, - 320,2054,1,0,0,0,322,2057,1,0,0,0,324,2068,1,0,0,0,326,2078,1,0,0,0,328, - 2084,1,0,0,0,330,2092,1,0,0,0,332,2108,1,0,0,0,334,2117,1,0,0,0,336,2119, - 1,0,0,0,338,2121,1,0,0,0,340,2137,1,0,0,0,342,2139,1,0,0,0,344,2142,1,0, - 0,0,346,2144,1,0,0,0,348,2146,1,0,0,0,350,2148,1,0,0,0,352,2150,1,0,0,0, - 354,2152,1,0,0,0,356,2154,1,0,0,0,358,2156,1,0,0,0,360,2158,1,0,0,0,362, - 2160,1,0,0,0,364,365,3,2,1,0,365,366,5,0,0,1,366,1,1,0,0,0,367,368,3,4, - 2,0,368,369,5,0,0,1,369,3,1,0,0,0,370,372,3,6,3,0,371,373,5,389,0,0,372, - 371,1,0,0,0,372,373,1,0,0,0,373,376,1,0,0,0,374,376,3,8,4,0,375,370,1,0, - 0,0,375,374,1,0,0,0,376,379,1,0,0,0,377,375,1,0,0,0,377,378,1,0,0,0,378, - 5,1,0,0,0,379,377,1,0,0,0,380,393,3,10,5,0,381,393,3,12,6,0,382,393,3,14, - 7,0,383,393,3,16,8,0,384,393,3,22,11,0,385,393,3,26,13,0,386,393,3,28,14, - 0,387,393,3,30,15,0,388,393,3,32,16,0,389,393,3,34,17,0,390,393,3,36,18, - 0,391,393,3,38,19,0,392,380,1,0,0,0,392,381,1,0,0,0,392,382,1,0,0,0,392, - 383,1,0,0,0,392,384,1,0,0,0,392,385,1,0,0,0,392,386,1,0,0,0,392,387,1,0, - 0,0,392,388,1,0,0,0,392,389,1,0,0,0,392,390,1,0,0,0,392,391,1,0,0,0,393, - 7,1,0,0,0,394,395,5,389,0,0,395,9,1,0,0,0,396,411,3,40,20,0,397,411,3,104, - 52,0,398,411,3,106,53,0,399,411,3,108,54,0,400,411,3,102,51,0,401,411,3, - 114,57,0,402,411,3,128,64,0,403,411,3,130,65,0,404,411,3,132,66,0,405,411, - 3,134,67,0,406,411,3,136,68,0,407,411,3,138,69,0,408,411,3,140,70,0,409, - 411,3,142,71,0,410,396,1,0,0,0,410,397,1,0,0,0,410,398,1,0,0,0,410,399, - 1,0,0,0,410,400,1,0,0,0,410,401,1,0,0,0,410,402,1,0,0,0,410,403,1,0,0,0, - 410,404,1,0,0,0,410,405,1,0,0,0,410,406,1,0,0,0,410,407,1,0,0,0,410,408, - 1,0,0,0,410,409,1,0,0,0,411,11,1,0,0,0,412,415,3,158,79,0,413,415,3,144, - 72,0,414,412,1,0,0,0,414,413,1,0,0,0,415,13,1,0,0,0,416,417,7,0,0,0,417, - 418,3,314,157,0,418,15,1,0,0,0,419,423,5,246,0,0,420,424,3,18,9,0,421,422, - 5,101,0,0,422,424,5,251,0,0,423,420,1,0,0,0,423,421,1,0,0,0,423,424,1,0, - 0,0,424,428,1,0,0,0,425,429,3,12,6,0,426,429,3,146,73,0,427,429,3,156,78, - 0,428,425,1,0,0,0,428,426,1,0,0,0,428,427,1,0,0,0,429,17,1,0,0,0,430,435, - 3,20,10,0,431,432,5,388,0,0,432,434,3,20,10,0,433,431,1,0,0,0,434,437,1, - 0,0,0,435,433,1,0,0,0,435,436,1,0,0,0,436,19,1,0,0,0,437,435,1,0,0,0,438, - 439,7,1,0,0,439,21,1,0,0,0,440,442,5,161,0,0,441,443,5,12,0,0,442,441,1, - 0,0,0,442,443,1,0,0,0,443,444,1,0,0,0,444,447,3,314,157,0,445,447,3,24, - 12,0,446,440,1,0,0,0,446,445,1,0,0,0,447,23,1,0,0,0,448,449,5,161,0,0,449, - 450,5,84,0,0,450,455,3,314,157,0,451,452,5,388,0,0,452,454,3,314,157,0, - 453,451,1,0,0,0,454,457,1,0,0,0,455,453,1,0,0,0,455,456,1,0,0,0,456,25, - 1,0,0,0,457,455,1,0,0,0,458,459,5,332,0,0,459,494,7,2,0,0,460,461,5,332, - 0,0,461,462,5,222,0,0,462,494,7,3,0,0,463,464,5,332,0,0,464,467,5,149,0, - 0,465,466,7,4,0,0,466,468,3,314,157,0,467,465,1,0,0,0,467,468,1,0,0,0,468, - 470,1,0,0,0,469,471,3,266,133,0,470,469,1,0,0,0,470,471,1,0,0,0,471,494, - 1,0,0,0,472,473,5,332,0,0,473,474,5,20,0,0,474,475,7,4,0,0,475,477,3,314, - 157,0,476,478,3,266,133,0,477,476,1,0,0,0,477,478,1,0,0,0,478,494,1,0,0, - 0,479,480,5,332,0,0,480,481,5,219,0,0,481,482,7,5,0,0,482,494,3,314,157, - 0,483,485,5,332,0,0,484,486,5,360,0,0,485,484,1,0,0,0,485,486,1,0,0,0,486, - 487,1,0,0,0,487,494,5,51,0,0,488,490,5,332,0,0,489,491,5,253,0,0,490,489, - 1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492,494,5,84,0,0,493,458,1,0,0, - 0,493,460,1,0,0,0,493,463,1,0,0,0,493,472,1,0,0,0,493,479,1,0,0,0,493,483, - 1,0,0,0,493,488,1,0,0,0,494,27,1,0,0,0,495,496,5,76,0,0,496,497,5,291,0, - 0,497,500,3,314,157,0,498,499,5,369,0,0,499,501,3,322,161,0,500,498,1,0, - 0,0,500,501,1,0,0,0,501,29,1,0,0,0,502,503,5,159,0,0,503,504,5,291,0,0, - 504,505,3,314,157,0,505,31,1,0,0,0,506,508,5,331,0,0,507,509,3,324,162, - 0,508,507,1,0,0,0,508,509,1,0,0,0,509,33,1,0,0,0,510,512,5,321,0,0,511, - 513,3,326,163,0,512,511,1,0,0,0,512,513,1,0,0,0,513,35,1,0,0,0,514,515, - 7,6,0,0,515,516,5,64,0,0,516,517,3,112,56,0,517,37,1,0,0,0,518,519,5,4, - 0,0,519,520,5,64,0,0,520,521,5,369,0,0,521,524,5,410,0,0,522,523,5,185, - 0,0,523,525,3,314,157,0,524,522,1,0,0,0,524,525,1,0,0,0,525,558,1,0,0,0, - 526,527,5,4,0,0,527,528,5,43,0,0,528,529,5,369,0,0,529,532,5,410,0,0,530, - 531,5,185,0,0,531,533,3,314,157,0,532,530,1,0,0,0,532,533,1,0,0,0,533,536, - 1,0,0,0,534,535,5,119,0,0,535,537,3,314,157,0,536,534,1,0,0,0,536,537,1, - 0,0,0,537,558,1,0,0,0,538,539,5,4,0,0,539,540,7,7,0,0,540,541,5,369,0,0, - 541,542,5,410,0,0,542,543,5,119,0,0,543,558,3,314,157,0,544,545,5,4,0,0, - 545,546,5,113,0,0,546,558,5,410,0,0,547,548,5,4,0,0,548,549,5,35,0,0,549, - 550,5,43,0,0,550,551,5,369,0,0,551,552,5,410,0,0,552,553,5,119,0,0,553, - 554,3,314,157,0,554,555,5,69,0,0,555,556,3,314,157,0,556,558,1,0,0,0,557, - 518,1,0,0,0,557,526,1,0,0,0,557,538,1,0,0,0,557,544,1,0,0,0,557,547,1,0, - 0,0,558,39,1,0,0,0,559,562,3,42,21,0,560,562,3,44,22,0,561,559,1,0,0,0, - 561,560,1,0,0,0,562,41,1,0,0,0,563,565,5,219,0,0,564,566,5,150,0,0,565, - 564,1,0,0,0,565,566,1,0,0,0,566,567,1,0,0,0,567,569,5,344,0,0,568,570,3, - 318,159,0,569,568,1,0,0,0,569,570,1,0,0,0,570,571,1,0,0,0,571,572,3,98, - 49,0,572,573,5,384,0,0,573,578,3,46,23,0,574,575,5,388,0,0,575,577,3,46, - 23,0,576,574,1,0,0,0,577,580,1,0,0,0,578,576,1,0,0,0,578,579,1,0,0,0,579, - 583,1,0,0,0,580,578,1,0,0,0,581,582,5,388,0,0,582,584,3,80,40,0,583,581, - 1,0,0,0,583,584,1,0,0,0,584,587,1,0,0,0,585,586,5,388,0,0,586,588,3,82, - 41,0,587,585,1,0,0,0,587,588,1,0,0,0,588,591,1,0,0,0,589,590,5,388,0,0, - 590,592,3,86,43,0,591,589,1,0,0,0,591,592,1,0,0,0,592,593,1,0,0,0,593,595, - 5,385,0,0,594,596,3,70,35,0,595,594,1,0,0,0,595,596,1,0,0,0,596,598,1,0, - 0,0,597,599,3,88,44,0,598,597,1,0,0,0,598,599,1,0,0,0,599,600,1,0,0,0,600, - 602,3,316,158,0,601,603,3,96,48,0,602,601,1,0,0,0,602,603,1,0,0,0,603,43, - 1,0,0,0,604,605,5,219,0,0,605,607,5,344,0,0,606,608,3,318,159,0,607,606, - 1,0,0,0,607,608,1,0,0,0,608,609,1,0,0,0,609,610,3,98,49,0,610,613,3,316, - 158,0,611,612,5,185,0,0,612,614,3,158,79,0,613,611,1,0,0,0,613,614,1,0, - 0,0,614,45,1,0,0,0,615,619,3,48,24,0,616,619,3,72,36,0,617,619,3,76,38, - 0,618,615,1,0,0,0,618,616,1,0,0,0,618,617,1,0,0,0,619,47,1,0,0,0,620,621, - 3,50,25,0,621,623,3,54,27,0,622,624,3,68,34,0,623,622,1,0,0,0,623,624,1, - 0,0,0,624,626,1,0,0,0,625,627,3,70,35,0,626,625,1,0,0,0,626,627,1,0,0,0, - 627,49,1,0,0,0,628,631,3,314,157,0,629,631,3,260,130,0,630,628,1,0,0,0, - 630,629,1,0,0,0,631,51,1,0,0,0,632,633,5,384,0,0,633,638,3,50,25,0,634, - 635,5,388,0,0,635,637,3,50,25,0,636,634,1,0,0,0,637,640,1,0,0,0,638,636, - 1,0,0,0,638,639,1,0,0,0,639,641,1,0,0,0,640,638,1,0,0,0,641,642,5,385,0, - 0,642,53,1,0,0,0,643,681,7,8,0,0,644,646,7,9,0,0,645,647,3,56,28,0,646, - 645,1,0,0,0,646,647,1,0,0,0,647,681,1,0,0,0,648,650,5,348,0,0,649,651,3, - 56,28,0,650,649,1,0,0,0,650,651,1,0,0,0,651,658,1,0,0,0,652,654,7,10,0, - 0,653,655,5,282,0,0,654,653,1,0,0,0,654,655,1,0,0,0,655,656,1,0,0,0,656, - 657,5,347,0,0,657,659,5,176,0,0,658,652,1,0,0,0,658,659,1,0,0,0,659,681, - 1,0,0,0,660,662,7,11,0,0,661,663,3,58,29,0,662,661,1,0,0,0,662,663,1,0, - 0,0,663,681,1,0,0,0,664,666,7,12,0,0,665,667,3,62,31,0,666,665,1,0,0,0, - 666,667,1,0,0,0,667,681,1,0,0,0,668,670,5,77,0,0,669,671,3,64,32,0,670, - 669,1,0,0,0,670,671,1,0,0,0,671,681,1,0,0,0,672,674,5,327,0,0,673,675,3, - 66,33,0,674,673,1,0,0,0,674,675,1,0,0,0,675,681,1,0,0,0,676,678,5,115,0, - 0,677,679,3,60,30,0,678,677,1,0,0,0,678,679,1,0,0,0,679,681,1,0,0,0,680, - 643,1,0,0,0,680,644,1,0,0,0,680,648,1,0,0,0,680,660,1,0,0,0,680,664,1,0, - 0,0,680,668,1,0,0,0,680,672,1,0,0,0,680,676,1,0,0,0,681,55,1,0,0,0,682, - 683,5,384,0,0,683,684,3,346,173,0,684,685,5,385,0,0,685,57,1,0,0,0,686, - 687,5,384,0,0,687,690,3,346,173,0,688,689,5,388,0,0,689,691,3,346,173,0, - 690,688,1,0,0,0,690,691,1,0,0,0,691,692,1,0,0,0,692,693,5,385,0,0,693,59, - 1,0,0,0,694,695,5,384,0,0,695,698,3,344,172,0,696,697,5,388,0,0,697,699, - 3,344,172,0,698,696,1,0,0,0,698,699,1,0,0,0,699,700,1,0,0,0,700,701,5,385, - 0,0,701,61,1,0,0,0,702,703,5,375,0,0,703,704,3,54,27,0,704,705,5,374,0, - 0,705,63,1,0,0,0,706,707,5,375,0,0,707,708,3,54,27,0,708,709,5,388,0,0, - 709,710,3,54,27,0,710,711,1,0,0,0,711,712,5,374,0,0,712,65,1,0,0,0,713, - 714,5,375,0,0,714,715,3,50,25,0,715,722,3,54,27,0,716,717,5,388,0,0,717, - 718,3,50,25,0,718,719,3,54,27,0,719,721,1,0,0,0,720,716,1,0,0,0,721,724, - 1,0,0,0,722,720,1,0,0,0,722,723,1,0,0,0,723,725,1,0,0,0,724,722,1,0,0,0, - 725,726,5,374,0,0,726,67,1,0,0,0,727,728,5,215,0,0,728,730,3,84,42,0,729, - 727,1,0,0,0,729,730,1,0,0,0,730,731,1,0,0,0,731,732,5,318,0,0,732,735,5, - 69,0,0,733,734,5,298,0,0,734,736,5,34,0,0,735,733,1,0,0,0,735,736,1,0,0, - 0,736,742,1,0,0,0,737,739,5,298,0,0,738,737,1,0,0,0,738,739,1,0,0,0,739, - 740,1,0,0,0,740,742,5,299,0,0,741,729,1,0,0,0,741,738,1,0,0,0,742,69,1, - 0,0,0,743,744,5,18,0,0,744,745,5,405,0,0,745,71,1,0,0,0,746,747,3,50,25, - 0,747,748,3,54,27,0,748,751,5,287,0,0,749,750,5,252,0,0,750,752,3,74,37, - 0,751,749,1,0,0,0,751,752,1,0,0,0,752,754,1,0,0,0,753,755,5,168,0,0,754, - 753,1,0,0,0,754,755,1,0,0,0,755,73,1,0,0,0,756,757,5,405,0,0,757,75,1,0, - 0,0,758,759,3,50,25,0,759,760,5,185,0,0,760,762,3,78,39,0,761,763,3,70, - 35,0,762,761,1,0,0,0,762,763,1,0,0,0,763,77,1,0,0,0,764,765,3,260,130,0, - 765,79,1,0,0,0,766,767,5,169,0,0,767,768,5,251,0,0,768,769,3,260,130,0, - 769,770,5,185,0,0,770,771,3,260,130,0,771,81,1,0,0,0,772,773,5,215,0,0, - 773,775,3,84,42,0,774,772,1,0,0,0,774,775,1,0,0,0,775,776,1,0,0,0,776,777, - 5,318,0,0,777,778,5,69,0,0,778,779,3,52,26,0,779,780,5,298,0,0,780,781, - 5,34,0,0,781,83,1,0,0,0,782,783,3,306,153,0,783,85,1,0,0,0,784,785,5,315, - 0,0,785,786,5,251,0,0,786,787,5,342,0,0,787,87,1,0,0,0,788,789,5,95,0,0, - 789,790,5,197,0,0,790,791,3,90,45,0,791,89,1,0,0,0,792,793,5,384,0,0,793, - 798,3,92,46,0,794,795,5,388,0,0,795,797,3,92,46,0,796,794,1,0,0,0,797,800, - 1,0,0,0,798,796,1,0,0,0,798,799,1,0,0,0,799,801,1,0,0,0,800,798,1,0,0,0, - 801,802,5,385,0,0,802,91,1,0,0,0,803,817,3,280,140,0,804,805,3,306,153, - 0,805,806,5,384,0,0,806,811,3,94,47,0,807,808,5,388,0,0,808,810,3,94,47, - 0,809,807,1,0,0,0,810,813,1,0,0,0,811,809,1,0,0,0,811,812,1,0,0,0,812,814, - 1,0,0,0,813,811,1,0,0,0,814,815,5,385,0,0,815,817,1,0,0,0,816,803,1,0,0, - 0,816,804,1,0,0,0,817,93,1,0,0,0,818,821,3,280,140,0,819,821,3,340,170, - 0,820,818,1,0,0,0,820,819,1,0,0,0,821,95,1,0,0,0,822,823,5,280,0,0,823, - 832,3,98,49,0,824,828,5,384,0,0,825,827,3,100,50,0,826,825,1,0,0,0,827, - 830,1,0,0,0,828,826,1,0,0,0,828,829,1,0,0,0,829,831,1,0,0,0,830,828,1,0, - 0,0,831,833,5,385,0,0,832,824,1,0,0,0,832,833,1,0,0,0,833,97,1,0,0,0,834, - 835,3,314,157,0,835,99,1,0,0,0,836,837,7,13,0,0,837,841,7,14,0,0,838,839, - 7,15,0,0,839,841,7,16,0,0,840,836,1,0,0,0,840,838,1,0,0,0,841,101,1,0,0, - 0,842,843,5,219,0,0,843,844,5,12,0,0,844,845,3,314,157,0,845,846,3,316, - 158,0,846,103,1,0,0,0,847,848,5,219,0,0,848,850,5,25,0,0,849,851,3,318, - 159,0,850,849,1,0,0,0,850,851,1,0,0,0,851,852,1,0,0,0,852,854,3,314,157, - 0,853,855,3,70,35,0,854,853,1,0,0,0,854,855,1,0,0,0,855,856,1,0,0,0,856, - 857,3,316,158,0,857,105,1,0,0,0,858,860,5,219,0,0,859,861,5,150,0,0,860, - 859,1,0,0,0,860,861,1,0,0,0,861,862,1,0,0,0,862,864,5,166,0,0,863,865,3, - 318,159,0,864,863,1,0,0,0,864,865,1,0,0,0,865,866,1,0,0,0,866,868,3,314, - 157,0,867,869,3,52,26,0,868,867,1,0,0,0,868,869,1,0,0,0,869,871,1,0,0,0, - 870,872,3,70,35,0,871,870,1,0,0,0,871,872,1,0,0,0,872,873,1,0,0,0,873,874, - 5,185,0,0,874,875,3,158,79,0,875,107,1,0,0,0,876,880,5,219,0,0,877,881, - 5,150,0,0,878,879,5,150,0,0,879,881,5,341,0,0,880,877,1,0,0,0,880,878,1, - 0,0,0,880,881,1,0,0,0,881,882,1,0,0,0,882,884,5,254,0,0,883,885,3,318,159, - 0,884,883,1,0,0,0,884,885,1,0,0,0,885,886,1,0,0,0,886,887,3,314,157,0,887, - 888,5,185,0,0,888,891,3,306,153,0,889,890,5,276,0,0,890,892,7,17,0,0,891, - 889,1,0,0,0,891,892,1,0,0,0,892,894,1,0,0,0,893,895,3,110,55,0,894,893, - 1,0,0,0,894,895,1,0,0,0,895,109,1,0,0,0,896,897,5,361,0,0,897,898,5,64, - 0,0,898,904,3,112,56,0,899,900,5,388,0,0,900,901,5,64,0,0,901,903,3,112, - 56,0,902,899,1,0,0,0,903,906,1,0,0,0,904,902,1,0,0,0,904,905,1,0,0,0,905, - 111,1,0,0,0,906,904,1,0,0,0,907,908,5,405,0,0,908,113,1,0,0,0,909,910,5, - 180,0,0,910,912,5,344,0,0,911,913,3,320,160,0,912,911,1,0,0,0,912,913,1, - 0,0,0,913,914,1,0,0,0,914,920,3,314,157,0,915,921,3,116,58,0,916,921,3, - 118,59,0,917,921,3,120,60,0,918,921,3,122,61,0,919,921,3,124,62,0,920,915, - 1,0,0,0,920,916,1,0,0,0,920,917,1,0,0,0,920,918,1,0,0,0,920,919,1,0,0,0, - 921,115,1,0,0,0,922,924,5,119,0,0,923,925,3,314,157,0,924,923,1,0,0,0,924, - 925,1,0,0,0,925,926,1,0,0,0,926,927,5,350,0,0,927,928,3,314,157,0,928,117, - 1,0,0,0,929,930,5,331,0,0,930,931,3,322,161,0,931,119,1,0,0,0,932,933,5, - 4,0,0,933,934,5,215,0,0,934,935,3,84,42,0,935,936,5,318,0,0,936,937,5,69, - 0,0,937,939,3,52,26,0,938,940,3,126,63,0,939,938,1,0,0,0,939,940,1,0,0, - 0,940,121,1,0,0,0,941,942,5,237,0,0,942,943,5,215,0,0,943,944,3,84,42,0, - 944,123,1,0,0,0,945,946,5,4,0,0,946,947,5,355,0,0,947,948,3,52,26,0,948, - 125,1,0,0,0,949,950,5,298,0,0,950,951,5,34,0,0,951,127,1,0,0,0,952,953, - 5,180,0,0,953,954,5,166,0,0,954,958,3,314,157,0,955,959,3,116,58,0,956, - 957,5,185,0,0,957,959,3,158,79,0,958,955,1,0,0,0,958,956,1,0,0,0,959,129, - 1,0,0,0,960,961,5,180,0,0,961,962,5,25,0,0,962,963,3,314,157,0,963,964, - 3,118,59,0,964,131,1,0,0,0,965,969,5,180,0,0,966,970,5,150,0,0,967,968, - 5,150,0,0,968,970,5,341,0,0,969,966,1,0,0,0,969,967,1,0,0,0,969,970,1,0, - 0,0,970,971,1,0,0,0,971,973,5,254,0,0,972,974,3,320,160,0,973,972,1,0,0, - 0,973,974,1,0,0,0,974,975,1,0,0,0,975,976,3,314,157,0,976,977,5,185,0,0, - 977,980,3,306,153,0,978,979,5,276,0,0,979,981,7,17,0,0,980,978,1,0,0,0, - 980,981,1,0,0,0,981,133,1,0,0,0,982,983,5,237,0,0,983,985,5,12,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,135,1,0,0,0,989,991,5,237,0,0,990,992,5,150,0,0,991,990, - 1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,995,5,344,0,0,994,996,3,320, - 160,0,995,994,1,0,0,0,995,996,1,0,0,0,996,997,1,0,0,0,997,998,3,314,157, - 0,998,137,1,0,0,0,999,1000,5,237,0,0,1000,1002,5,25,0,0,1001,1003,3,320, - 160,0,1002,1001,1,0,0,0,1002,1003,1,0,0,0,1003,1004,1,0,0,0,1004,1006,3, - 314,157,0,1005,1007,7,18,0,0,1006,1005,1,0,0,0,1006,1007,1,0,0,0,1007,139, - 1,0,0,0,1008,1010,5,237,0,0,1009,1011,5,150,0,0,1010,1009,1,0,0,0,1010, - 1011,1,0,0,0,1011,1012,1,0,0,0,1012,1014,5,166,0,0,1013,1015,3,320,160, - 0,1014,1013,1,0,0,0,1014,1015,1,0,0,0,1015,1016,1,0,0,0,1016,1017,3,314, - 157,0,1017,141,1,0,0,0,1018,1022,5,237,0,0,1019,1023,5,150,0,0,1020,1021, - 5,150,0,0,1021,1023,5,341,0,0,1022,1019,1,0,0,0,1022,1020,1,0,0,0,1022, - 1023,1,0,0,0,1023,1024,1,0,0,0,1024,1026,5,254,0,0,1025,1027,3,320,160, - 0,1026,1025,1,0,0,0,1026,1027,1,0,0,0,1027,1028,1,0,0,0,1028,1029,3,314, - 157,0,1029,143,1,0,0,0,1030,1032,5,244,0,0,1031,1030,1,0,0,0,1031,1032, - 1,0,0,0,1032,1033,1,0,0,0,1033,1038,3,146,73,0,1034,1038,3,154,77,0,1035, - 1036,5,244,0,0,1036,1038,3,156,78,0,1037,1031,1,0,0,0,1037,1034,1,0,0,0, - 1037,1035,1,0,0,0,1038,145,1,0,0,0,1039,1040,5,267,0,0,1040,1041,7,19,0, - 0,1041,1050,3,314,157,0,1042,1044,3,148,74,0,1043,1042,1,0,0,0,1043,1044, - 1,0,0,0,1044,1046,1,0,0,0,1045,1047,3,52,26,0,1046,1045,1,0,0,0,1046,1047, - 1,0,0,0,1047,1048,1,0,0,0,1048,1051,3,158,79,0,1049,1051,3,150,75,0,1050, - 1043,1,0,0,0,1050,1049,1,0,0,0,1051,147,1,0,0,0,1052,1053,5,311,0,0,1053, - 1054,3,322,161,0,1054,149,1,0,0,0,1055,1056,5,363,0,0,1056,1061,3,152,76, - 0,1057,1058,5,388,0,0,1058,1060,3,152,76,0,1059,1057,1,0,0,0,1060,1063, - 1,0,0,0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,151,1,0,0,0,1063,1061, - 1,0,0,0,1064,1065,5,384,0,0,1065,1070,3,340,170,0,1066,1067,5,388,0,0,1067, - 1069,3,340,170,0,1068,1066,1,0,0,0,1069,1072,1,0,0,0,1070,1068,1,0,0,0, - 1070,1071,1,0,0,0,1071,1073,1,0,0,0,1072,1070,1,0,0,0,1073,1074,5,385,0, - 0,1074,153,1,0,0,0,1075,1076,5,189,0,0,1076,1077,5,144,0,0,1077,1078,5, - 331,0,0,1078,1082,5,389,0,0,1079,1080,3,146,73,0,1080,1081,5,389,0,0,1081, - 1083,1,0,0,0,1082,1079,1,0,0,0,1083,1084,1,0,0,0,1084,1082,1,0,0,0,1084, - 1085,1,0,0,0,1085,1086,1,0,0,0,1086,1087,5,240,0,0,1087,155,1,0,0,0,1088, - 1089,5,144,0,0,1089,1090,5,331,0,0,1090,1094,5,189,0,0,1091,1092,3,146, - 73,0,1092,1093,5,389,0,0,1093,1095,1,0,0,0,1094,1091,1,0,0,0,1095,1096, - 1,0,0,0,1096,1094,1,0,0,0,1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098,1099, - 5,240,0,0,1099,157,1,0,0,0,1100,1101,6,79,-1,0,1101,1124,3,160,80,0,1102, - 1103,3,162,81,0,1103,1104,3,158,79,5,1104,1124,1,0,0,0,1105,1106,5,384, - 0,0,1106,1107,3,158,79,0,1107,1108,5,385,0,0,1108,1124,1,0,0,0,1109,1111, - 3,170,85,0,1110,1112,3,232,116,0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112, - 1114,1,0,0,0,1113,1115,3,236,118,0,1114,1113,1,0,0,0,1114,1115,1,0,0,0, - 1115,1124,1,0,0,0,1116,1118,3,168,84,0,1117,1119,3,232,116,0,1118,1117, - 1,0,0,0,1118,1119,1,0,0,0,1119,1121,1,0,0,0,1120,1122,3,236,118,0,1121, - 1120,1,0,0,0,1121,1122,1,0,0,0,1122,1124,1,0,0,0,1123,1100,1,0,0,0,1123, - 1102,1,0,0,0,1123,1105,1,0,0,0,1123,1109,1,0,0,0,1123,1116,1,0,0,0,1124, - 1139,1,0,0,0,1125,1126,10,3,0,0,1126,1128,7,20,0,0,1127,1129,5,178,0,0, - 1128,1127,1,0,0,0,1128,1129,1,0,0,0,1129,1130,1,0,0,0,1130,1132,3,158,79, - 0,1131,1133,3,232,116,0,1132,1131,1,0,0,0,1132,1133,1,0,0,0,1133,1135,1, - 0,0,0,1134,1136,3,236,118,0,1135,1134,1,0,0,0,1135,1136,1,0,0,0,1136,1138, - 1,0,0,0,1137,1125,1,0,0,0,1138,1141,1,0,0,0,1139,1137,1,0,0,0,1139,1140, - 1,0,0,0,1140,159,1,0,0,0,1141,1139,1,0,0,0,1142,1143,5,363,0,0,1143,1148, - 3,260,130,0,1144,1145,5,388,0,0,1145,1147,3,260,130,0,1146,1144,1,0,0,0, - 1147,1150,1,0,0,0,1148,1146,1,0,0,0,1148,1149,1,0,0,0,1149,161,1,0,0,0, - 1150,1148,1,0,0,0,1151,1152,5,369,0,0,1152,1157,3,164,82,0,1153,1154,5, - 388,0,0,1154,1156,3,164,82,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,163,1,0,0,0,1159,1157,1,0,0,0,1160,1172, - 3,166,83,0,1161,1162,5,384,0,0,1162,1167,3,50,25,0,1163,1164,5,388,0,0, - 1164,1166,3,50,25,0,1165,1163,1,0,0,0,1166,1169,1,0,0,0,1167,1165,1,0,0, - 0,1167,1168,1,0,0,0,1168,1170,1,0,0,0,1169,1167,1,0,0,0,1170,1171,5,385, - 0,0,1171,1173,1,0,0,0,1172,1161,1,0,0,0,1172,1173,1,0,0,0,1173,1174,1,0, - 0,0,1174,1175,5,185,0,0,1175,1176,5,384,0,0,1176,1177,3,158,79,0,1177,1178, - 5,385,0,0,1178,165,1,0,0,0,1179,1180,3,306,153,0,1180,167,1,0,0,0,1181, - 1182,3,170,85,0,1182,1184,3,176,88,0,1183,1185,3,206,103,0,1184,1183,1, - 0,0,0,1184,1185,1,0,0,0,1185,1187,1,0,0,0,1186,1188,3,208,104,0,1187,1186, - 1,0,0,0,1187,1188,1,0,0,0,1188,1190,1,0,0,0,1189,1191,3,222,111,0,1190, - 1189,1,0,0,0,1190,1191,1,0,0,0,1191,1193,1,0,0,0,1192,1194,3,224,112,0, - 1193,1192,1,0,0,0,1193,1194,1,0,0,0,1194,1200,1,0,0,0,1195,1196,3,170,85, - 0,1196,1197,3,176,88,0,1197,1198,3,230,115,0,1198,1200,1,0,0,0,1199,1181, - 1,0,0,0,1199,1195,1,0,0,0,1200,169,1,0,0,0,1201,1203,5,330,0,0,1202,1204, - 3,350,175,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0,1204,1214,1,0,0,0,1205, - 1215,5,395,0,0,1206,1211,3,172,86,0,1207,1208,5,388,0,0,1208,1210,3,172, - 86,0,1209,1207,1,0,0,0,1210,1213,1,0,0,0,1211,1209,1,0,0,0,1211,1212,1, - 0,0,0,1212,1215,1,0,0,0,1213,1211,1,0,0,0,1214,1205,1,0,0,0,1214,1206,1, - 0,0,0,1215,171,1,0,0,0,1216,1225,3,174,87,0,1217,1222,3,260,130,0,1218, - 1220,5,185,0,0,1219,1218,1,0,0,0,1219,1220,1,0,0,0,1220,1221,1,0,0,0,1221, - 1223,3,260,130,0,1222,1219,1,0,0,0,1222,1223,1,0,0,0,1223,1225,1,0,0,0, - 1224,1216,1,0,0,0,1224,1217,1,0,0,0,1225,173,1,0,0,0,1226,1227,3,270,135, - 0,1227,1228,5,309,0,0,1228,1229,3,228,114,0,1229,1230,5,185,0,0,1230,1231, - 3,306,153,0,1231,1239,1,0,0,0,1232,1233,3,270,135,0,1233,1234,5,309,0,0, - 1234,1235,3,298,149,0,1235,1236,5,185,0,0,1236,1237,3,306,153,0,1237,1239, - 1,0,0,0,1238,1226,1,0,0,0,1238,1232,1,0,0,0,1239,175,1,0,0,0,1240,1241, - 5,252,0,0,1241,1242,3,178,89,0,1242,177,1,0,0,0,1243,1244,6,89,-1,0,1244, - 1249,3,180,90,0,1245,1246,5,388,0,0,1246,1248,3,180,90,0,1247,1245,1,0, - 0,0,1248,1251,1,0,0,0,1249,1247,1,0,0,0,1249,1250,1,0,0,0,1250,1255,1,0, - 0,0,1251,1249,1,0,0,0,1252,1255,3,190,95,0,1253,1255,3,192,96,0,1254,1243, - 1,0,0,0,1254,1252,1,0,0,0,1254,1253,1,0,0,0,1255,1277,1,0,0,0,1256,1257, - 10,3,0,0,1257,1258,5,220,0,0,1258,1259,5,274,0,0,1259,1276,3,178,89,4,1260, - 1262,10,4,0,0,1261,1263,5,294,0,0,1262,1261,1,0,0,0,1262,1263,1,0,0,0,1263, - 1265,1,0,0,0,1264,1266,7,21,0,0,1265,1264,1,0,0,0,1265,1266,1,0,0,0,1266, - 1268,1,0,0,0,1267,1269,5,308,0,0,1268,1267,1,0,0,0,1268,1269,1,0,0,0,1269, - 1270,1,0,0,0,1270,1271,5,274,0,0,1271,1273,3,178,89,0,1272,1274,3,204,102, - 0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1256,1,0,0, - 0,1275,1260,1,0,0,0,1276,1279,1,0,0,0,1277,1275,1,0,0,0,1277,1278,1,0,0, - 0,1278,179,1,0,0,0,1279,1277,1,0,0,0,1280,1282,3,182,91,0,1281,1283,3,296, - 148,0,1282,1281,1,0,0,0,1282,1283,1,0,0,0,1283,181,1,0,0,0,1284,1286,5, - 344,0,0,1285,1284,1,0,0,0,1285,1286,1,0,0,0,1286,1287,1,0,0,0,1287,1289, - 3,184,92,0,1288,1290,3,186,93,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290, - 1295,1,0,0,0,1291,1293,5,185,0,0,1292,1291,1,0,0,0,1292,1293,1,0,0,0,1293, - 1294,1,0,0,0,1294,1296,3,278,139,0,1295,1292,1,0,0,0,1295,1296,1,0,0,0, - 1296,1326,1,0,0,0,1297,1298,5,277,0,0,1298,1299,5,344,0,0,1299,1300,5,384, - 0,0,1300,1301,3,272,136,0,1301,1302,5,384,0,0,1302,1307,3,274,137,0,1303, - 1304,5,388,0,0,1304,1306,3,274,137,0,1305,1303,1,0,0,0,1306,1309,1,0,0, - 0,1307,1305,1,0,0,0,1307,1308,1,0,0,0,1308,1310,1,0,0,0,1309,1307,1,0,0, - 0,1310,1311,5,385,0,0,1311,1312,5,385,0,0,1312,1326,1,0,0,0,1313,1315,5, - 277,0,0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316,1317, - 5,384,0,0,1317,1318,3,158,79,0,1318,1319,5,385,0,0,1319,1326,1,0,0,0,1320, - 1321,5,357,0,0,1321,1322,5,384,0,0,1322,1323,3,260,130,0,1323,1324,5,385, - 0,0,1324,1326,1,0,0,0,1325,1285,1,0,0,0,1325,1297,1,0,0,0,1325,1314,1,0, - 0,0,1325,1320,1,0,0,0,1326,183,1,0,0,0,1327,1328,3,314,157,0,1328,185,1, - 0,0,0,1329,1330,5,251,0,0,1330,1331,5,342,0,0,1331,1332,5,185,0,0,1332, - 1333,5,301,0,0,1333,1334,3,188,94,0,1334,187,1,0,0,0,1335,1336,3,260,130, - 0,1336,189,1,0,0,0,1337,1338,5,384,0,0,1338,1339,3,150,75,0,1339,1340,5, - 385,0,0,1340,1341,3,296,148,0,1341,191,1,0,0,0,1342,1343,5,344,0,0,1343, - 1344,5,384,0,0,1344,1345,3,194,97,0,1345,1346,5,385,0,0,1346,193,1,0,0, - 0,1347,1348,3,196,98,0,1348,1349,5,384,0,0,1349,1354,3,198,99,0,1350,1351, - 5,388,0,0,1351,1353,3,198,99,0,1352,1350,1,0,0,0,1353,1356,1,0,0,0,1354, - 1352,1,0,0,0,1354,1355,1,0,0,0,1355,1357,1,0,0,0,1356,1354,1,0,0,0,1357, - 1358,5,385,0,0,1358,195,1,0,0,0,1359,1360,7,22,0,0,1360,197,1,0,0,0,1361, - 1362,5,344,0,0,1362,1377,3,220,110,0,1363,1377,3,202,101,0,1364,1377,3, - 282,141,0,1365,1366,5,24,0,0,1366,1367,5,404,0,0,1367,1368,5,344,0,0,1368, - 1377,3,220,110,0,1369,1370,5,151,0,0,1370,1371,5,404,0,0,1371,1377,3,202, - 101,0,1372,1373,3,200,100,0,1373,1374,5,404,0,0,1374,1375,3,282,141,0,1375, - 1377,1,0,0,0,1376,1361,1,0,0,0,1376,1363,1,0,0,0,1376,1364,1,0,0,0,1376, - 1365,1,0,0,0,1376,1369,1,0,0,0,1376,1372,1,0,0,0,1377,199,1,0,0,0,1378, - 1379,7,23,0,0,1379,201,1,0,0,0,1380,1381,5,31,0,0,1381,1382,5,384,0,0,1382, - 1383,3,314,157,0,1383,1384,5,385,0,0,1384,203,1,0,0,0,1385,1386,5,303,0, - 0,1386,1400,3,262,131,0,1387,1388,5,361,0,0,1388,1389,5,384,0,0,1389,1394, - 3,314,157,0,1390,1391,5,388,0,0,1391,1393,3,314,157,0,1392,1390,1,0,0,0, - 1393,1396,1,0,0,0,1394,1392,1,0,0,0,1394,1395,1,0,0,0,1395,1397,1,0,0,0, - 1396,1394,1,0,0,0,1397,1398,5,385,0,0,1398,1400,1,0,0,0,1399,1385,1,0,0, - 0,1399,1387,1,0,0,0,1400,205,1,0,0,0,1401,1402,5,367,0,0,1402,1403,3,262, - 131,0,1403,207,1,0,0,0,1404,1405,5,257,0,0,1405,1406,5,197,0,0,1406,1411, - 3,210,105,0,1407,1408,5,388,0,0,1408,1410,3,210,105,0,1409,1407,1,0,0,0, - 1410,1413,1,0,0,0,1411,1409,1,0,0,0,1411,1412,1,0,0,0,1412,209,1,0,0,0, - 1413,1411,1,0,0,0,1414,1454,3,260,130,0,1415,1454,3,216,108,0,1416,1417, - 5,384,0,0,1417,1454,5,385,0,0,1418,1419,5,384,0,0,1419,1424,3,260,130,0, - 1420,1421,5,388,0,0,1421,1423,3,260,130,0,1422,1420,1,0,0,0,1423,1426,1, - 0,0,0,1424,1422,1,0,0,0,1424,1425,1,0,0,0,1425,1427,1,0,0,0,1426,1424,1, - 0,0,0,1427,1428,5,385,0,0,1428,1454,1,0,0,0,1429,1430,3,214,107,0,1430, - 1431,5,384,0,0,1431,1436,3,260,130,0,1432,1433,5,388,0,0,1433,1435,3,260, - 130,0,1434,1432,1,0,0,0,1435,1438,1,0,0,0,1436,1434,1,0,0,0,1436,1437,1, - 0,0,0,1437,1439,1,0,0,0,1438,1436,1,0,0,0,1439,1440,5,385,0,0,1440,1454, - 1,0,0,0,1441,1442,3,212,106,0,1442,1443,5,384,0,0,1443,1448,3,210,105,0, - 1444,1445,5,388,0,0,1445,1447,3,210,105,0,1446,1444,1,0,0,0,1447,1450,1, - 0,0,0,1448,1446,1,0,0,0,1448,1449,1,0,0,0,1449,1451,1,0,0,0,1450,1448,1, - 0,0,0,1451,1452,5,385,0,0,1452,1454,1,0,0,0,1453,1414,1,0,0,0,1453,1415, - 1,0,0,0,1453,1416,1,0,0,0,1453,1418,1,0,0,0,1453,1429,1,0,0,0,1453,1441, - 1,0,0,0,1454,211,1,0,0,0,1455,1456,5,258,0,0,1456,1457,5,137,0,0,1457,213, - 1,0,0,0,1458,1459,7,24,0,0,1459,215,1,0,0,0,1460,1461,3,218,109,0,1461, - 1462,5,384,0,0,1462,1463,3,220,110,0,1463,1464,5,388,0,0,1464,1465,3,282, - 141,0,1465,1466,5,385,0,0,1466,217,1,0,0,0,1467,1468,7,25,0,0,1468,219, - 1,0,0,0,1469,1470,3,314,157,0,1470,221,1,0,0,0,1471,1472,5,260,0,0,1472, - 1473,3,262,131,0,1473,223,1,0,0,0,1474,1475,5,368,0,0,1475,1480,3,226,113, - 0,1476,1477,5,388,0,0,1477,1479,3,226,113,0,1478,1476,1,0,0,0,1479,1482, - 1,0,0,0,1480,1478,1,0,0,0,1480,1481,1,0,0,0,1481,225,1,0,0,0,1482,1480, - 1,0,0,0,1483,1484,3,298,149,0,1484,1485,5,185,0,0,1485,1486,3,228,114,0, - 1486,227,1,0,0,0,1487,1489,3,298,149,0,1488,1487,1,0,0,0,1488,1489,1,0, - 0,0,1489,1490,1,0,0,0,1490,1492,5,384,0,0,1491,1493,3,238,119,0,1492,1491, - 1,0,0,0,1492,1493,1,0,0,0,1493,1495,1,0,0,0,1494,1496,3,232,116,0,1495, - 1494,1,0,0,0,1495,1496,1,0,0,0,1496,1498,1,0,0,0,1497,1499,3,254,127,0, - 1498,1497,1,0,0,0,1498,1499,1,0,0,0,1499,1500,1,0,0,0,1500,1501,5,385,0, - 0,1501,229,1,0,0,0,1502,1503,5,284,0,0,1503,1505,5,384,0,0,1504,1506,3, - 238,119,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1508,1,0,0,0,1507,1509, - 3,232,116,0,1508,1507,1,0,0,0,1508,1509,1,0,0,0,1509,1511,1,0,0,0,1510, - 1512,3,242,121,0,1511,1510,1,0,0,0,1511,1512,1,0,0,0,1512,1514,1,0,0,0, - 1513,1515,3,248,124,0,1514,1513,1,0,0,0,1514,1515,1,0,0,0,1515,1517,1,0, - 0,0,1516,1518,3,250,125,0,1517,1516,1,0,0,0,1517,1518,1,0,0,0,1518,1520, - 1,0,0,0,1519,1521,3,244,122,0,1520,1519,1,0,0,0,1520,1521,1,0,0,0,1521, - 1522,1,0,0,0,1522,1523,3,252,126,0,1523,1528,5,385,0,0,1524,1526,5,185, - 0,0,1525,1524,1,0,0,0,1525,1526,1,0,0,0,1526,1527,1,0,0,0,1527,1529,3,306, - 153,0,1528,1525,1,0,0,0,1528,1529,1,0,0,0,1529,231,1,0,0,0,1530,1531,5, - 306,0,0,1531,1532,5,197,0,0,1532,1537,3,234,117,0,1533,1534,5,388,0,0,1534, - 1536,3,234,117,0,1535,1533,1,0,0,0,1536,1539,1,0,0,0,1537,1535,1,0,0,0, - 1537,1538,1,0,0,0,1538,233,1,0,0,0,1539,1537,1,0,0,0,1540,1542,3,260,130, - 0,1541,1543,7,26,0,0,1542,1541,1,0,0,0,1542,1543,1,0,0,0,1543,1546,1,0, - 0,0,1544,1545,5,87,0,0,1545,1547,7,27,0,0,1546,1544,1,0,0,0,1546,1547,1, - 0,0,0,1547,235,1,0,0,0,1548,1551,5,281,0,0,1549,1552,5,178,0,0,1550,1552, - 3,260,130,0,1551,1549,1,0,0,0,1551,1550,1,0,0,0,1552,237,1,0,0,0,1553,1554, - 5,311,0,0,1554,1555,5,197,0,0,1555,1560,3,260,130,0,1556,1557,5,388,0,0, - 1557,1559,3,260,130,0,1558,1556,1,0,0,0,1559,1562,1,0,0,0,1560,1558,1,0, - 0,0,1560,1561,1,0,0,0,1561,239,1,0,0,0,1562,1560,1,0,0,0,1563,1580,5,395, - 0,0,1564,1580,5,398,0,0,1565,1580,5,403,0,0,1566,1567,5,386,0,0,1567,1568, - 5,406,0,0,1568,1569,5,388,0,0,1569,1570,5,406,0,0,1570,1580,5,387,0,0,1571, - 1572,5,386,0,0,1572,1573,5,406,0,0,1573,1574,5,388,0,0,1574,1580,5,387, - 0,0,1575,1576,5,386,0,0,1576,1577,5,388,0,0,1577,1578,5,406,0,0,1578,1580, - 5,387,0,0,1579,1563,1,0,0,0,1579,1564,1,0,0,0,1579,1565,1,0,0,0,1579,1566, - 1,0,0,0,1579,1571,1,0,0,0,1579,1575,1,0,0,0,1580,241,1,0,0,0,1581,1582, - 5,285,0,0,1582,1587,3,172,86,0,1583,1584,5,388,0,0,1584,1586,3,172,86,0, - 1585,1583,1,0,0,0,1586,1589,1,0,0,0,1587,1585,1,0,0,0,1587,1588,1,0,0,0, - 1588,243,1,0,0,0,1589,1587,1,0,0,0,1590,1591,5,312,0,0,1591,1593,5,384, - 0,0,1592,1594,3,246,123,0,1593,1592,1,0,0,0,1594,1595,1,0,0,0,1595,1593, - 1,0,0,0,1595,1596,1,0,0,0,1596,1597,1,0,0,0,1597,1599,5,385,0,0,1598,1600, - 3,258,129,0,1599,1598,1,0,0,0,1599,1600,1,0,0,0,1600,245,1,0,0,0,1601,1603, - 3,308,154,0,1602,1604,3,240,120,0,1603,1602,1,0,0,0,1603,1604,1,0,0,0,1604, - 247,1,0,0,0,1605,1606,5,178,0,0,1606,1607,5,328,0,0,1607,1608,5,313,0,0, - 1608,1614,5,283,0,0,1609,1610,5,304,0,0,1610,1611,5,327,0,0,1611,1612,5, - 313,0,0,1612,1614,5,283,0,0,1613,1605,1,0,0,0,1613,1609,1,0,0,0,1614,249, - 1,0,0,0,1615,1616,5,6,0,0,1616,1617,5,283,0,0,1617,1618,5,334,0,0,1618, - 1619,5,98,0,0,1619,1620,5,73,0,0,1620,1640,5,327,0,0,1621,1622,5,6,0,0, - 1622,1623,5,283,0,0,1623,1624,5,334,0,0,1624,1625,5,350,0,0,1625,1626,5, - 295,0,0,1626,1640,5,327,0,0,1627,1628,5,6,0,0,1628,1629,5,283,0,0,1629, - 1630,5,334,0,0,1630,1631,5,350,0,0,1631,1632,5,73,0,0,1632,1640,3,308,154, - 0,1633,1634,5,6,0,0,1634,1635,5,283,0,0,1635,1636,5,334,0,0,1636,1637,5, - 350,0,0,1637,1638,5,45,0,0,1638,1640,3,308,154,0,1639,1615,1,0,0,0,1639, - 1621,1,0,0,0,1639,1627,1,0,0,0,1639,1633,1,0,0,0,1640,251,1,0,0,0,1641, - 1642,5,232,0,0,1642,1647,3,172,86,0,1643,1644,5,388,0,0,1644,1646,3,172, - 86,0,1645,1643,1,0,0,0,1646,1649,1,0,0,0,1647,1645,1,0,0,0,1647,1648,1, - 0,0,0,1648,253,1,0,0,0,1649,1647,1,0,0,0,1650,1651,5,319,0,0,1651,1652, - 5,190,0,0,1652,1653,3,282,141,0,1653,1654,3,256,128,0,1654,1660,1,0,0,0, - 1655,1656,5,328,0,0,1656,1657,5,190,0,0,1657,1658,5,406,0,0,1658,1660,3, - 256,128,0,1659,1650,1,0,0,0,1659,1655,1,0,0,0,1660,255,1,0,0,0,1661,1662, - 5,102,0,0,1662,1663,5,181,0,0,1663,1664,5,222,0,0,1664,1665,5,327,0,0,1665, - 257,1,0,0,0,1666,1667,5,370,0,0,1667,1668,3,282,141,0,1668,259,1,0,0,0, - 1669,1670,3,262,131,0,1670,261,1,0,0,0,1671,1672,6,131,-1,0,1672,1673,5, - 298,0,0,1673,1684,3,262,131,6,1674,1675,5,245,0,0,1675,1676,5,384,0,0,1676, - 1677,3,158,79,0,1677,1678,5,385,0,0,1678,1684,1,0,0,0,1679,1681,3,268,134, - 0,1680,1682,3,264,132,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682,1684,1, - 0,0,0,1683,1671,1,0,0,0,1683,1674,1,0,0,0,1683,1679,1,0,0,0,1684,1699,1, - 0,0,0,1685,1686,10,3,0,0,1686,1687,5,181,0,0,1687,1698,3,262,131,4,1688, - 1689,10,2,0,0,1689,1690,5,305,0,0,1690,1698,3,262,131,3,1691,1692,10,1, - 0,0,1692,1694,5,273,0,0,1693,1695,5,298,0,0,1694,1693,1,0,0,0,1694,1695, - 1,0,0,0,1695,1696,1,0,0,0,1696,1698,7,28,0,0,1697,1685,1,0,0,0,1697,1688, - 1,0,0,0,1697,1691,1,0,0,0,1698,1701,1,0,0,0,1699,1697,1,0,0,0,1699,1700, - 1,0,0,0,1700,263,1,0,0,0,1701,1699,1,0,0,0,1702,1704,5,298,0,0,1703,1702, - 1,0,0,0,1703,1704,1,0,0,0,1704,1705,1,0,0,0,1705,1707,5,190,0,0,1706,1708, - 7,29,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,1709,1,0,0,0,1709,1710, - 3,268,134,0,1710,1711,5,181,0,0,1711,1712,3,268,134,0,1712,1770,1,0,0,0, - 1713,1715,5,298,0,0,1714,1713,1,0,0,0,1714,1715,1,0,0,0,1715,1716,1,0,0, - 0,1716,1717,5,263,0,0,1717,1718,5,384,0,0,1718,1723,3,260,130,0,1719,1720, - 5,388,0,0,1720,1722,3,260,130,0,1721,1719,1,0,0,0,1722,1725,1,0,0,0,1723, - 1721,1,0,0,0,1723,1724,1,0,0,0,1724,1726,1,0,0,0,1725,1723,1,0,0,0,1726, - 1727,5,385,0,0,1727,1770,1,0,0,0,1728,1730,5,298,0,0,1729,1728,1,0,0,0, - 1729,1730,1,0,0,0,1730,1731,1,0,0,0,1731,1732,5,263,0,0,1732,1733,5,384, - 0,0,1733,1734,3,158,79,0,1734,1735,5,385,0,0,1735,1770,1,0,0,0,1736,1737, - 5,245,0,0,1737,1738,5,384,0,0,1738,1739,3,158,79,0,1739,1740,5,385,0,0, - 1740,1770,1,0,0,0,1741,1743,5,298,0,0,1742,1741,1,0,0,0,1742,1743,1,0,0, - 0,1743,1744,1,0,0,0,1744,1745,5,324,0,0,1745,1770,3,268,134,0,1746,1770, - 3,266,133,0,1747,1749,5,273,0,0,1748,1750,5,298,0,0,1749,1748,1,0,0,0,1749, - 1750,1,0,0,0,1750,1751,1,0,0,0,1751,1770,7,28,0,0,1752,1754,5,273,0,0,1753, - 1755,5,298,0,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756, - 1757,5,235,0,0,1757,1758,5,252,0,0,1758,1770,3,268,134,0,1759,1761,5,298, - 0,0,1760,1759,1,0,0,0,1760,1761,1,0,0,0,1761,1762,1,0,0,0,1762,1763,5,333, - 0,0,1763,1764,5,350,0,0,1764,1767,3,268,134,0,1765,1766,5,242,0,0,1766, - 1768,3,344,172,0,1767,1765,1,0,0,0,1767,1768,1,0,0,0,1768,1770,1,0,0,0, - 1769,1703,1,0,0,0,1769,1714,1,0,0,0,1769,1729,1,0,0,0,1769,1736,1,0,0,0, - 1769,1742,1,0,0,0,1769,1746,1,0,0,0,1769,1747,1,0,0,0,1769,1752,1,0,0,0, - 1769,1760,1,0,0,0,1770,265,1,0,0,0,1771,1773,5,298,0,0,1772,1771,1,0,0, - 0,1772,1773,1,0,0,0,1773,1774,1,0,0,0,1774,1775,5,280,0,0,1775,1789,7,30, - 0,0,1776,1777,5,384,0,0,1777,1790,5,385,0,0,1778,1779,5,384,0,0,1779,1784, - 3,260,130,0,1780,1781,5,388,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,385,0,0,1788,1790,1,0,0,0,1789,1776,1,0,0, - 0,1789,1778,1,0,0,0,1790,1801,1,0,0,0,1791,1793,5,298,0,0,1792,1791,1,0, - 0,0,1792,1793,1,0,0,0,1793,1794,1,0,0,0,1794,1795,5,280,0,0,1795,1798,3, - 268,134,0,1796,1797,5,242,0,0,1797,1799,3,344,172,0,1798,1796,1,0,0,0,1798, - 1799,1,0,0,0,1799,1801,1,0,0,0,1800,1772,1,0,0,0,1800,1792,1,0,0,0,1801, - 267,1,0,0,0,1802,1803,6,134,-1,0,1803,1807,3,270,135,0,1804,1805,7,31,0, - 0,1805,1807,3,268,134,7,1806,1802,1,0,0,0,1806,1804,1,0,0,0,1807,1829,1, - 0,0,0,1808,1809,10,6,0,0,1809,1810,7,32,0,0,1810,1828,3,268,134,7,1811, - 1812,10,5,0,0,1812,1813,7,33,0,0,1813,1828,3,268,134,6,1814,1815,10,4,0, - 0,1815,1816,5,379,0,0,1816,1828,3,268,134,5,1817,1818,10,3,0,0,1818,1819, - 5,380,0,0,1819,1828,3,268,134,4,1820,1821,10,2,0,0,1821,1822,5,378,0,0, - 1822,1828,3,268,134,3,1823,1824,10,1,0,0,1824,1825,3,332,166,0,1825,1826, - 3,268,134,2,1826,1828,1,0,0,0,1827,1808,1,0,0,0,1827,1811,1,0,0,0,1827, - 1814,1,0,0,0,1827,1817,1,0,0,0,1827,1820,1,0,0,0,1827,1823,1,0,0,0,1828, - 1831,1,0,0,0,1829,1827,1,0,0,0,1829,1830,1,0,0,0,1830,269,1,0,0,0,1831, - 1829,1,0,0,0,1832,1833,6,135,-1,0,1833,1835,5,201,0,0,1834,1836,3,312,156, - 0,1835,1834,1,0,0,0,1836,1837,1,0,0,0,1837,1835,1,0,0,0,1837,1838,1,0,0, - 0,1838,1841,1,0,0,0,1839,1840,5,239,0,0,1840,1842,3,260,130,0,1841,1839, - 1,0,0,0,1841,1842,1,0,0,0,1842,1843,1,0,0,0,1843,1844,5,240,0,0,1844,1924, - 1,0,0,0,1845,1846,5,201,0,0,1846,1848,3,260,130,0,1847,1849,3,312,156,0, - 1848,1847,1,0,0,0,1849,1850,1,0,0,0,1850,1848,1,0,0,0,1850,1851,1,0,0,0, - 1851,1854,1,0,0,0,1852,1853,5,239,0,0,1853,1855,3,260,130,0,1854,1852,1, - 0,0,0,1854,1855,1,0,0,0,1855,1856,1,0,0,0,1856,1857,5,240,0,0,1857,1924, - 1,0,0,0,1858,1859,5,202,0,0,1859,1860,5,384,0,0,1860,1861,3,260,130,0,1861, - 1862,5,185,0,0,1862,1863,3,54,27,0,1863,1864,5,385,0,0,1864,1924,1,0,0, - 0,1865,1866,5,45,0,0,1866,1867,5,384,0,0,1867,1870,3,260,130,0,1868,1869, - 5,60,0,0,1869,1871,5,87,0,0,1870,1868,1,0,0,0,1870,1871,1,0,0,0,1871,1872, - 1,0,0,0,1872,1873,5,385,0,0,1873,1924,1,0,0,0,1874,1875,5,73,0,0,1875,1876, - 5,384,0,0,1876,1879,3,260,130,0,1877,1878,5,60,0,0,1878,1880,5,87,0,0,1879, - 1877,1,0,0,0,1879,1880,1,0,0,0,1880,1881,1,0,0,0,1881,1882,5,385,0,0,1882, - 1924,1,0,0,0,1883,1884,5,316,0,0,1884,1885,5,384,0,0,1885,1886,3,268,134, - 0,1886,1887,5,263,0,0,1887,1888,3,268,134,0,1888,1889,5,385,0,0,1889,1924, - 1,0,0,0,1890,1924,3,340,170,0,1891,1924,5,395,0,0,1892,1893,3,314,157,0, - 1893,1894,5,381,0,0,1894,1895,5,395,0,0,1895,1924,1,0,0,0,1896,1897,5,384, - 0,0,1897,1898,3,158,79,0,1898,1899,5,385,0,0,1899,1924,1,0,0,0,1900,1901, - 3,272,136,0,1901,1913,5,384,0,0,1902,1904,3,350,175,0,1903,1902,1,0,0,0, - 1903,1904,1,0,0,0,1904,1905,1,0,0,0,1905,1910,3,274,137,0,1906,1907,5,388, - 0,0,1907,1909,3,274,137,0,1908,1906,1,0,0,0,1909,1912,1,0,0,0,1910,1908, - 1,0,0,0,1910,1911,1,0,0,0,1911,1914,1,0,0,0,1912,1910,1,0,0,0,1913,1903, - 1,0,0,0,1913,1914,1,0,0,0,1914,1915,1,0,0,0,1915,1916,5,385,0,0,1916,1924, - 1,0,0,0,1917,1924,3,306,153,0,1918,1924,3,276,138,0,1919,1920,5,384,0,0, - 1920,1921,3,260,130,0,1921,1922,5,385,0,0,1922,1924,1,0,0,0,1923,1832,1, - 0,0,0,1923,1845,1,0,0,0,1923,1858,1,0,0,0,1923,1865,1,0,0,0,1923,1874,1, - 0,0,0,1923,1883,1,0,0,0,1923,1890,1,0,0,0,1923,1891,1,0,0,0,1923,1892,1, - 0,0,0,1923,1896,1,0,0,0,1923,1900,1,0,0,0,1923,1917,1,0,0,0,1923,1918,1, - 0,0,0,1923,1919,1,0,0,0,1924,1932,1,0,0,0,1925,1926,10,4,0,0,1926,1927, - 5,382,0,0,1927,1928,3,268,134,0,1928,1929,5,383,0,0,1929,1931,1,0,0,0,1930, - 1925,1,0,0,0,1931,1934,1,0,0,0,1932,1930,1,0,0,0,1932,1933,1,0,0,0,1933, - 271,1,0,0,0,1934,1932,1,0,0,0,1935,1939,3,358,179,0,1936,1939,3,362,181, - 0,1937,1939,3,314,157,0,1938,1935,1,0,0,0,1938,1936,1,0,0,0,1938,1937,1, - 0,0,0,1939,273,1,0,0,0,1940,1945,3,356,178,0,1941,1945,3,354,177,0,1942, - 1945,3,352,176,0,1943,1945,3,260,130,0,1944,1940,1,0,0,0,1944,1941,1,0, - 0,0,1944,1942,1,0,0,0,1944,1943,1,0,0,0,1945,275,1,0,0,0,1946,1947,3,314, - 157,0,1947,277,1,0,0,0,1948,1949,3,306,153,0,1949,279,1,0,0,0,1950,1953, - 3,306,153,0,1951,1953,3,276,138,0,1952,1950,1,0,0,0,1952,1951,1,0,0,0,1953, - 281,1,0,0,0,1954,1957,5,271,0,0,1955,1958,3,284,142,0,1956,1958,3,288,144, - 0,1957,1955,1,0,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958,283,1,0,0, - 0,1959,1961,3,286,143,0,1960,1962,3,290,145,0,1961,1960,1,0,0,0,1961,1962, - 1,0,0,0,1962,285,1,0,0,0,1963,1964,3,292,146,0,1964,1965,3,354,177,0,1965, - 1967,1,0,0,0,1966,1963,1,0,0,0,1967,1968,1,0,0,0,1968,1966,1,0,0,0,1968, - 1969,1,0,0,0,1969,287,1,0,0,0,1970,1973,3,290,145,0,1971,1974,3,286,143, - 0,1972,1974,3,290,145,0,1973,1971,1,0,0,0,1973,1972,1,0,0,0,1973,1974,1, - 0,0,0,1974,289,1,0,0,0,1975,1976,3,292,146,0,1976,1977,3,354,177,0,1977, - 1978,5,350,0,0,1978,1979,3,354,177,0,1979,291,1,0,0,0,1980,1982,7,34,0, - 0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982,1983,1,0,0,0,1983,1986,7,35, - 0,0,1984,1986,5,405,0,0,1985,1981,1,0,0,0,1985,1984,1,0,0,0,1986,293,1, - 0,0,0,1987,1989,5,185,0,0,1988,1987,1,0,0,0,1988,1989,1,0,0,0,1989,1990, - 1,0,0,0,1990,1992,3,306,153,0,1991,1993,3,302,151,0,1992,1991,1,0,0,0,1992, - 1993,1,0,0,0,1993,295,1,0,0,0,1994,1996,5,185,0,0,1995,1994,1,0,0,0,1995, - 1996,1,0,0,0,1996,1997,1,0,0,0,1997,1999,3,306,153,0,1998,2000,3,302,151, - 0,1999,1998,1,0,0,0,1999,2000,1,0,0,0,2000,297,1,0,0,0,2001,2002,3,306, - 153,0,2002,2003,3,300,150,0,2003,299,1,0,0,0,2004,2005,5,288,0,0,2005,2007, - 3,306,153,0,2006,2004,1,0,0,0,2007,2008,1,0,0,0,2008,2006,1,0,0,0,2008, - 2009,1,0,0,0,2009,2012,1,0,0,0,2010,2012,1,0,0,0,2011,2006,1,0,0,0,2011, - 2010,1,0,0,0,2012,301,1,0,0,0,2013,2014,5,384,0,0,2014,2015,3,304,152,0, - 2015,2016,5,385,0,0,2016,303,1,0,0,0,2017,2022,3,306,153,0,2018,2019,5, - 388,0,0,2019,2021,3,306,153,0,2020,2018,1,0,0,0,2021,2024,1,0,0,0,2022, - 2020,1,0,0,0,2022,2023,1,0,0,0,2023,305,1,0,0,0,2024,2022,1,0,0,0,2025, - 2029,3,308,154,0,2026,2029,3,310,155,0,2027,2029,3,362,181,0,2028,2025, - 1,0,0,0,2028,2026,1,0,0,0,2028,2027,1,0,0,0,2029,307,1,0,0,0,2030,2031, - 7,36,0,0,2031,309,1,0,0,0,2032,2033,5,405,0,0,2033,311,1,0,0,0,2034,2035, - 5,366,0,0,2035,2036,3,260,130,0,2036,2037,5,346,0,0,2037,2038,3,260,130, - 0,2038,313,1,0,0,0,2039,2044,3,306,153,0,2040,2041,5,381,0,0,2041,2043, - 3,306,153,0,2042,2040,1,0,0,0,2043,2046,1,0,0,0,2044,2045,1,0,0,0,2044, - 2042,1,0,0,0,2045,315,1,0,0,0,2046,2044,1,0,0,0,2047,2048,5,369,0,0,2048, - 2049,3,322,161,0,2049,317,1,0,0,0,2050,2051,5,59,0,0,2051,2052,5,298,0, - 0,2052,2053,5,245,0,0,2053,319,1,0,0,0,2054,2055,5,59,0,0,2055,2056,5,245, - 0,0,2056,321,1,0,0,0,2057,2058,5,384,0,0,2058,2063,3,324,162,0,2059,2060, - 5,388,0,0,2060,2062,3,324,162,0,2061,2059,1,0,0,0,2062,2065,1,0,0,0,2063, - 2061,1,0,0,0,2063,2064,1,0,0,0,2064,2066,1,0,0,0,2065,2063,1,0,0,0,2066, - 2067,5,385,0,0,2067,323,1,0,0,0,2068,2073,3,326,163,0,2069,2071,5,373,0, - 0,2070,2069,1,0,0,0,2070,2071,1,0,0,0,2071,2072,1,0,0,0,2072,2074,3,328, - 164,0,2073,2070,1,0,0,0,2073,2074,1,0,0,0,2074,325,1,0,0,0,2075,2079,3, - 306,153,0,2076,2079,3,276,138,0,2077,2079,5,405,0,0,2078,2075,1,0,0,0,2078, - 2076,1,0,0,0,2078,2077,1,0,0,0,2079,327,1,0,0,0,2080,2085,5,406,0,0,2081, - 2085,5,407,0,0,2082,2085,3,348,174,0,2083,2085,5,405,0,0,2084,2080,1,0, - 0,0,2084,2081,1,0,0,0,2084,2082,1,0,0,0,2084,2083,1,0,0,0,2085,329,1,0, - 0,0,2086,2093,5,181,0,0,2087,2088,5,379,0,0,2088,2093,5,379,0,0,2089,2093, - 5,305,0,0,2090,2091,5,378,0,0,2091,2093,5,378,0,0,2092,2086,1,0,0,0,2092, - 2087,1,0,0,0,2092,2089,1,0,0,0,2092,2090,1,0,0,0,2093,331,1,0,0,0,2094, - 2109,5,373,0,0,2095,2109,5,374,0,0,2096,2109,5,375,0,0,2097,2098,5,375, - 0,0,2098,2109,5,373,0,0,2099,2100,5,374,0,0,2100,2109,5,373,0,0,2101,2102, - 5,375,0,0,2102,2109,5,374,0,0,2103,2104,5,376,0,0,2104,2109,5,373,0,0,2105, - 2106,5,375,0,0,2106,2107,5,373,0,0,2107,2109,5,374,0,0,2108,2094,1,0,0, - 0,2108,2095,1,0,0,0,2108,2096,1,0,0,0,2108,2097,1,0,0,0,2108,2099,1,0,0, - 0,2108,2101,1,0,0,0,2108,2103,1,0,0,0,2108,2105,1,0,0,0,2109,333,1,0,0, - 0,2110,2111,5,375,0,0,2111,2118,5,375,0,0,2112,2113,5,374,0,0,2113,2118, - 5,374,0,0,2114,2118,5,379,0,0,2115,2118,5,380,0,0,2116,2118,5,378,0,0,2117, - 2110,1,0,0,0,2117,2112,1,0,0,0,2117,2114,1,0,0,0,2117,2115,1,0,0,0,2117, - 2116,1,0,0,0,2118,335,1,0,0,0,2119,2120,7,37,0,0,2120,337,1,0,0,0,2121, - 2122,7,38,0,0,2122,339,1,0,0,0,2123,2138,3,282,141,0,2124,2138,3,342,171, - 0,2125,2138,3,344,172,0,2126,2128,5,397,0,0,2127,2126,1,0,0,0,2127,2128, - 1,0,0,0,2128,2129,1,0,0,0,2129,2138,3,346,173,0,2130,2138,3,348,174,0,2131, - 2138,5,407,0,0,2132,2138,5,408,0,0,2133,2135,5,298,0,0,2134,2133,1,0,0, - 0,2134,2135,1,0,0,0,2135,2136,1,0,0,0,2136,2138,5,299,0,0,2137,2123,1,0, - 0,0,2137,2124,1,0,0,0,2137,2125,1,0,0,0,2137,2127,1,0,0,0,2137,2130,1,0, - 0,0,2137,2131,1,0,0,0,2137,2132,1,0,0,0,2137,2134,1,0,0,0,2138,341,1,0, - 0,0,2139,2140,3,352,176,0,2140,2141,3,344,172,0,2141,343,1,0,0,0,2142,2143, - 5,405,0,0,2143,345,1,0,0,0,2144,2145,5,406,0,0,2145,347,1,0,0,0,2146,2147, - 7,39,0,0,2147,349,1,0,0,0,2148,2149,7,40,0,0,2149,351,1,0,0,0,2150,2151, - 7,41,0,0,2151,353,1,0,0,0,2152,2153,7,42,0,0,2153,355,1,0,0,0,2154,2155, - 7,43,0,0,2155,357,1,0,0,0,2156,2157,7,44,0,0,2157,359,1,0,0,0,2158,2159, - 7,45,0,0,2159,361,1,0,0,0,2160,2161,7,46,0,0,2161,363,1,0,0,0,249,372,375, - 377,392,410,414,423,428,435,442,446,455,467,470,477,485,490,493,500,508, - 512,524,532,536,557,561,565,569,578,583,587,591,595,598,602,607,613,618, - 623,626,630,638,646,650,654,658,662,666,670,674,678,680,690,698,722,729, - 735,738,741,751,754,762,774,798,811,816,820,828,832,840,850,854,860,864, - 868,871,880,884,891,894,904,912,920,924,939,958,969,973,980,985,991,995, - 1002,1006,1010,1014,1022,1026,1031,1037,1043,1046,1050,1061,1070,1084,1096, - 1111,1114,1118,1121,1123,1128,1132,1135,1139,1148,1157,1167,1172,1184,1187, - 1190,1193,1199,1203,1211,1214,1219,1222,1224,1238,1249,1254,1262,1265,1268, - 1273,1275,1277,1282,1285,1289,1292,1295,1307,1314,1325,1354,1376,1394,1399, - 1411,1424,1436,1448,1453,1480,1488,1492,1495,1498,1505,1508,1511,1514,1517, - 1520,1525,1528,1537,1542,1546,1551,1560,1579,1587,1595,1599,1603,1613,1639, - 1647,1659,1681,1683,1694,1697,1699,1703,1707,1714,1723,1729,1742,1749,1754, - 1760,1767,1769,1772,1784,1789,1792,1798,1800,1806,1827,1829,1837,1841,1850, - 1854,1870,1879,1903,1910,1913,1923,1932,1938,1944,1952,1957,1961,1968,1973, - 1981,1985,1988,1992,1995,1999,2008,2011,2022,2028,2044,2063,2070,2073,2078, - 2084,2092,2108,2117,2127,2134,2137]; + 1,135,5,135,1838,8,135,10,135,12,135,1841,9,135,1,136,1,136,1,136,4,136, + 1846,8,136,11,136,12,136,1847,1,136,1,136,3,136,1852,8,136,1,136,1,136, + 1,136,1,136,1,136,4,136,1859,8,136,11,136,12,136,1860,1,136,1,136,3,136, + 1865,8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,3,136,1881,8,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,3,136,1890,8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,3,136,1914,8,136,1,136,1,136,1,136,5,136,1919,8,136,10, + 136,12,136,1922,9,136,3,136,1924,8,136,1,136,1,136,1,136,1,136,1,136,1, + 136,1,136,1,136,3,136,1934,8,136,1,136,1,136,1,136,1,136,1,136,5,136,1941, + 8,136,10,136,12,136,1944,9,136,1,137,1,137,1,137,3,137,1949,8,137,1,138, + 1,138,1,138,1,138,3,138,1955,8,138,1,139,1,139,1,140,1,140,1,141,1,141, + 3,141,1963,8,141,1,142,1,142,1,142,3,142,1968,8,142,1,143,1,143,3,143,1972, + 8,143,1,144,1,144,1,144,4,144,1977,8,144,11,144,12,144,1978,1,145,1,145, + 1,145,3,145,1984,8,145,1,146,1,146,1,146,1,146,1,146,1,147,3,147,1992,8, + 147,1,147,1,147,3,147,1996,8,147,1,148,3,148,1999,8,148,1,148,1,148,3,148, + 2003,8,148,1,149,3,149,2006,8,149,1,149,1,149,3,149,2010,8,149,1,150,1, + 150,1,150,1,151,1,151,4,151,2017,8,151,11,151,12,151,2018,1,151,3,151,2022, + 8,151,1,152,1,152,1,152,1,152,1,153,1,153,1,153,5,153,2031,8,153,10,153, + 12,153,2034,9,153,1,154,1,154,1,154,3,154,2039,8,154,1,155,1,155,1,156, + 1,156,1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,5,158,2053,8,158, + 10,158,12,158,2056,9,158,1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,161, + 1,161,1,161,1,162,1,162,1,162,1,162,5,162,2072,8,162,10,162,12,162,2075, + 9,162,1,162,1,162,1,163,1,163,3,163,2081,8,163,1,163,3,163,2084,8,163,1, + 164,1,164,1,164,3,164,2089,8,164,1,165,1,165,1,165,1,165,3,165,2095,8,165, + 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,1,167,1,167,1,167,1,167,1,167,1,167,1,167,3,167, + 2119,8,167,1,168,1,168,1,168,1,168,1,168,1,168,1,168,3,168,2128,8,168,1, + 169,1,169,1,170,1,170,1,171,1,171,1,171,1,171,3,171,2138,8,171,1,171,1, + 171,1,171,1,171,1,171,3,171,2145,8,171,1,171,3,171,2148,8,171,1,172,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,178, + 1,178,1,179,1,179,1,180,1,180,1,181,1,181,1,182,1,182,1,182,1,2054,5,160, + 180,264,270,272,183,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36, + 38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84, + 86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124, + 126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160, + 162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, + 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232, + 234,236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, + 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, + 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, + 342,344,346,348,350,352,354,356,358,360,362,364,0,47,2,0,30,30,234,234, + 3,0,16,16,38,38,68,68,4,0,13,13,26,26,65,65,167,167,2,0,12,12,25,25,2,0, + 252,252,263,263,2,0,166,166,344,344,2,0,4,4,118,118,1,0,108,112,3,0,195, + 195,225,225,299,299,11,0,10,10,146,146,152,152,191,192,204,204,226,226, + 268,269,335,335,347,347,349,349,364,365,2,0,369,369,371,371,4,0,228,229, + 236,236,250,250,300,300,2,0,184,184,293,293,2,0,41,41,264,264,3,0,21,21, + 96,96,178,178,3,0,41,41,94,94,264,264,3,0,53,53,90,90,170,170,3,0,66,66, + 107,107,126,126,2,0,11,11,123,123,2,0,93,93,272,272,3,0,243,243,270,270, + 354,354,4,0,253,253,265,265,279,279,323,323,3,0,23,23,57,57,156,156,5,0, + 24,24,139,140,145,145,151,151,302,302,2,0,221,221,326,326,3,0,57,57,136, + 136,156,156,2,0,8,8,30,30,2,0,45,45,73,73,4,0,249,249,299,299,352,352,356, + 356,2,0,186,186,340,340,2,0,178,178,182,182,2,0,377,377,397,398,4,0,32, + 32,395,395,399,399,402,402,2,0,397,398,400,400,1,0,397,398,1,0,406,407, + 2,0,406,406,409,409,4,0,32,32,395,395,397,399,401,402,3,0,298,298,376,377, + 397,398,2,0,249,249,352,352,2,0,178,178,235,235,10,0,78,78,80,80,114,114, + 171,171,227,227,261,261,289,289,292,292,329,329,372,372,16,0,14,14,27,28, + 36,36,58,58,78,81,85,86,114,114,130,130,171,172,175,175,227,227,261,261, + 289,289,292,292,329,329,372,372,6,0,178,178,196,196,235,235,278,278,351, + 351,395,395,28,0,59,59,77,77,114,114,171,171,177,177,184,184,188,188,202, + 203,209,209,211,211,218,218,225,225,258,258,261,261,275,275,279,279,289, + 289,292,292,310,310,316,317,320,320,323,323,329,329,338,339,347,348,353, + 353,358,358,372,372,5,0,177,241,243,316,318,339,341,350,352,372,3,0,4,35, + 37,171,173,176,2357,0,366,1,0,0,0,2,369,1,0,0,0,4,379,1,0,0,0,6,394,1,0, + 0,0,8,396,1,0,0,0,10,412,1,0,0,0,12,416,1,0,0,0,14,418,1,0,0,0,16,421,1, + 0,0,0,18,432,1,0,0,0,20,440,1,0,0,0,22,448,1,0,0,0,24,450,1,0,0,0,26,495, + 1,0,0,0,28,497,1,0,0,0,30,504,1,0,0,0,32,508,1,0,0,0,34,512,1,0,0,0,36, + 516,1,0,0,0,38,560,1,0,0,0,40,563,1,0,0,0,42,569,1,0,0,0,44,571,1,0,0,0, + 46,612,1,0,0,0,48,626,1,0,0,0,50,628,1,0,0,0,52,638,1,0,0,0,54,640,1,0, + 0,0,56,688,1,0,0,0,58,690,1,0,0,0,60,694,1,0,0,0,62,702,1,0,0,0,64,710, + 1,0,0,0,66,714,1,0,0,0,68,721,1,0,0,0,70,749,1,0,0,0,72,751,1,0,0,0,74, + 754,1,0,0,0,76,764,1,0,0,0,78,766,1,0,0,0,80,772,1,0,0,0,82,774,1,0,0,0, + 84,782,1,0,0,0,86,790,1,0,0,0,88,792,1,0,0,0,90,796,1,0,0,0,92,800,1,0, + 0,0,94,824,1,0,0,0,96,828,1,0,0,0,98,830,1,0,0,0,100,842,1,0,0,0,102,848, + 1,0,0,0,104,850,1,0,0,0,106,855,1,0,0,0,108,866,1,0,0,0,110,884,1,0,0,0, + 112,904,1,0,0,0,114,915,1,0,0,0,116,917,1,0,0,0,118,930,1,0,0,0,120,937, + 1,0,0,0,122,940,1,0,0,0,124,949,1,0,0,0,126,953,1,0,0,0,128,957,1,0,0,0, + 130,960,1,0,0,0,132,968,1,0,0,0,134,973,1,0,0,0,136,990,1,0,0,0,138,997, + 1,0,0,0,140,1007,1,0,0,0,142,1016,1,0,0,0,144,1026,1,0,0,0,146,1045,1,0, + 0,0,148,1047,1,0,0,0,150,1060,1,0,0,0,152,1063,1,0,0,0,154,1072,1,0,0,0, + 156,1083,1,0,0,0,158,1096,1,0,0,0,160,1131,1,0,0,0,162,1150,1,0,0,0,164, + 1159,1,0,0,0,166,1168,1,0,0,0,168,1187,1,0,0,0,170,1207,1,0,0,0,172,1209, + 1,0,0,0,174,1232,1,0,0,0,176,1246,1,0,0,0,178,1248,1,0,0,0,180,1262,1,0, + 0,0,182,1288,1,0,0,0,184,1333,1,0,0,0,186,1335,1,0,0,0,188,1337,1,0,0,0, + 190,1343,1,0,0,0,192,1345,1,0,0,0,194,1350,1,0,0,0,196,1355,1,0,0,0,198, + 1367,1,0,0,0,200,1384,1,0,0,0,202,1386,1,0,0,0,204,1388,1,0,0,0,206,1407, + 1,0,0,0,208,1409,1,0,0,0,210,1412,1,0,0,0,212,1461,1,0,0,0,214,1463,1,0, + 0,0,216,1466,1,0,0,0,218,1468,1,0,0,0,220,1475,1,0,0,0,222,1477,1,0,0,0, + 224,1479,1,0,0,0,226,1482,1,0,0,0,228,1491,1,0,0,0,230,1496,1,0,0,0,232, + 1510,1,0,0,0,234,1538,1,0,0,0,236,1548,1,0,0,0,238,1556,1,0,0,0,240,1561, + 1,0,0,0,242,1587,1,0,0,0,244,1589,1,0,0,0,246,1598,1,0,0,0,248,1609,1,0, + 0,0,250,1621,1,0,0,0,252,1647,1,0,0,0,254,1649,1,0,0,0,256,1667,1,0,0,0, + 258,1669,1,0,0,0,260,1674,1,0,0,0,262,1677,1,0,0,0,264,1691,1,0,0,0,266, + 1777,1,0,0,0,268,1808,1,0,0,0,270,1814,1,0,0,0,272,1933,1,0,0,0,274,1948, + 1,0,0,0,276,1954,1,0,0,0,278,1956,1,0,0,0,280,1958,1,0,0,0,282,1962,1,0, + 0,0,284,1964,1,0,0,0,286,1969,1,0,0,0,288,1976,1,0,0,0,290,1980,1,0,0,0, + 292,1985,1,0,0,0,294,1995,1,0,0,0,296,1998,1,0,0,0,298,2005,1,0,0,0,300, + 2011,1,0,0,0,302,2021,1,0,0,0,304,2023,1,0,0,0,306,2027,1,0,0,0,308,2038, + 1,0,0,0,310,2040,1,0,0,0,312,2042,1,0,0,0,314,2044,1,0,0,0,316,2049,1,0, + 0,0,318,2057,1,0,0,0,320,2060,1,0,0,0,322,2064,1,0,0,0,324,2067,1,0,0,0, + 326,2078,1,0,0,0,328,2088,1,0,0,0,330,2094,1,0,0,0,332,2102,1,0,0,0,334, + 2118,1,0,0,0,336,2127,1,0,0,0,338,2129,1,0,0,0,340,2131,1,0,0,0,342,2147, + 1,0,0,0,344,2149,1,0,0,0,346,2152,1,0,0,0,348,2154,1,0,0,0,350,2156,1,0, + 0,0,352,2158,1,0,0,0,354,2160,1,0,0,0,356,2162,1,0,0,0,358,2164,1,0,0,0, + 360,2166,1,0,0,0,362,2168,1,0,0,0,364,2170,1,0,0,0,366,367,3,2,1,0,367, + 368,5,0,0,1,368,1,1,0,0,0,369,370,3,4,2,0,370,371,5,0,0,1,371,3,1,0,0,0, + 372,374,3,6,3,0,373,375,5,389,0,0,374,373,1,0,0,0,374,375,1,0,0,0,375,378, + 1,0,0,0,376,378,3,8,4,0,377,372,1,0,0,0,377,376,1,0,0,0,378,381,1,0,0,0, + 379,377,1,0,0,0,379,380,1,0,0,0,380,5,1,0,0,0,381,379,1,0,0,0,382,395,3, + 10,5,0,383,395,3,12,6,0,384,395,3,14,7,0,385,395,3,16,8,0,386,395,3,22, + 11,0,387,395,3,26,13,0,388,395,3,28,14,0,389,395,3,30,15,0,390,395,3,32, + 16,0,391,395,3,34,17,0,392,395,3,36,18,0,393,395,3,38,19,0,394,382,1,0, + 0,0,394,383,1,0,0,0,394,384,1,0,0,0,394,385,1,0,0,0,394,386,1,0,0,0,394, + 387,1,0,0,0,394,388,1,0,0,0,394,389,1,0,0,0,394,390,1,0,0,0,394,391,1,0, + 0,0,394,392,1,0,0,0,394,393,1,0,0,0,395,7,1,0,0,0,396,397,5,389,0,0,397, + 9,1,0,0,0,398,413,3,42,21,0,399,413,3,106,53,0,400,413,3,108,54,0,401,413, + 3,110,55,0,402,413,3,104,52,0,403,413,3,116,58,0,404,413,3,130,65,0,405, + 413,3,132,66,0,406,413,3,134,67,0,407,413,3,136,68,0,408,413,3,138,69,0, + 409,413,3,140,70,0,410,413,3,142,71,0,411,413,3,144,72,0,412,398,1,0,0, + 0,412,399,1,0,0,0,412,400,1,0,0,0,412,401,1,0,0,0,412,402,1,0,0,0,412,403, + 1,0,0,0,412,404,1,0,0,0,412,405,1,0,0,0,412,406,1,0,0,0,412,407,1,0,0,0, + 412,408,1,0,0,0,412,409,1,0,0,0,412,410,1,0,0,0,412,411,1,0,0,0,413,11, + 1,0,0,0,414,417,3,160,80,0,415,417,3,146,73,0,416,414,1,0,0,0,416,415,1, + 0,0,0,417,13,1,0,0,0,418,419,7,0,0,0,419,420,3,316,158,0,420,15,1,0,0,0, + 421,425,5,246,0,0,422,426,3,18,9,0,423,424,5,101,0,0,424,426,5,251,0,0, + 425,422,1,0,0,0,425,423,1,0,0,0,425,426,1,0,0,0,426,430,1,0,0,0,427,431, + 3,12,6,0,428,431,3,148,74,0,429,431,3,158,79,0,430,427,1,0,0,0,430,428, + 1,0,0,0,430,429,1,0,0,0,431,17,1,0,0,0,432,437,3,20,10,0,433,434,5,388, + 0,0,434,436,3,20,10,0,435,433,1,0,0,0,436,439,1,0,0,0,437,435,1,0,0,0,437, + 438,1,0,0,0,438,19,1,0,0,0,439,437,1,0,0,0,440,441,7,1,0,0,441,21,1,0,0, + 0,442,444,5,161,0,0,443,445,5,12,0,0,444,443,1,0,0,0,444,445,1,0,0,0,445, + 446,1,0,0,0,446,449,3,316,158,0,447,449,3,24,12,0,448,442,1,0,0,0,448,447, + 1,0,0,0,449,23,1,0,0,0,450,451,5,161,0,0,451,452,5,84,0,0,452,457,3,316, + 158,0,453,454,5,388,0,0,454,456,3,316,158,0,455,453,1,0,0,0,456,459,1,0, + 0,0,457,455,1,0,0,0,457,458,1,0,0,0,458,25,1,0,0,0,459,457,1,0,0,0,460, + 461,5,332,0,0,461,496,7,2,0,0,462,463,5,332,0,0,463,464,5,222,0,0,464,496, + 7,3,0,0,465,466,5,332,0,0,466,469,5,149,0,0,467,468,7,4,0,0,468,470,3,316, + 158,0,469,467,1,0,0,0,469,470,1,0,0,0,470,472,1,0,0,0,471,473,3,268,134, + 0,472,471,1,0,0,0,472,473,1,0,0,0,473,496,1,0,0,0,474,475,5,332,0,0,475, + 476,5,20,0,0,476,477,7,4,0,0,477,479,3,316,158,0,478,480,3,268,134,0,479, + 478,1,0,0,0,479,480,1,0,0,0,480,496,1,0,0,0,481,482,5,332,0,0,482,483,5, + 219,0,0,483,484,7,5,0,0,484,496,3,316,158,0,485,487,5,332,0,0,486,488,5, + 360,0,0,487,486,1,0,0,0,487,488,1,0,0,0,488,489,1,0,0,0,489,496,5,51,0, + 0,490,492,5,332,0,0,491,493,5,253,0,0,492,491,1,0,0,0,492,493,1,0,0,0,493, + 494,1,0,0,0,494,496,5,84,0,0,495,460,1,0,0,0,495,462,1,0,0,0,495,465,1, + 0,0,0,495,474,1,0,0,0,495,481,1,0,0,0,495,485,1,0,0,0,495,490,1,0,0,0,496, + 27,1,0,0,0,497,498,5,76,0,0,498,499,5,291,0,0,499,502,3,316,158,0,500,501, + 5,369,0,0,501,503,3,324,162,0,502,500,1,0,0,0,502,503,1,0,0,0,503,29,1, + 0,0,0,504,505,5,159,0,0,505,506,5,291,0,0,506,507,3,316,158,0,507,31,1, + 0,0,0,508,510,5,331,0,0,509,511,3,326,163,0,510,509,1,0,0,0,510,511,1,0, + 0,0,511,33,1,0,0,0,512,514,5,321,0,0,513,515,3,328,164,0,514,513,1,0,0, + 0,514,515,1,0,0,0,515,35,1,0,0,0,516,517,7,6,0,0,517,518,5,64,0,0,518,519, + 3,114,57,0,519,37,1,0,0,0,520,521,5,4,0,0,521,522,5,64,0,0,522,523,5,369, + 0,0,523,526,3,40,20,0,524,525,5,185,0,0,525,527,3,316,158,0,526,524,1,0, + 0,0,526,527,1,0,0,0,527,561,1,0,0,0,528,529,5,4,0,0,529,530,5,43,0,0,530, + 531,5,369,0,0,531,534,3,40,20,0,532,533,5,185,0,0,533,535,3,316,158,0,534, + 532,1,0,0,0,534,535,1,0,0,0,535,538,1,0,0,0,536,537,5,119,0,0,537,539,3, + 316,158,0,538,536,1,0,0,0,538,539,1,0,0,0,539,561,1,0,0,0,540,541,5,4,0, + 0,541,542,7,7,0,0,542,543,5,369,0,0,543,544,3,40,20,0,544,545,5,119,0,0, + 545,546,3,316,158,0,546,561,1,0,0,0,547,548,5,4,0,0,548,549,5,113,0,0,549, + 561,3,40,20,0,550,551,5,4,0,0,551,552,5,35,0,0,552,553,5,43,0,0,553,554, + 5,369,0,0,554,555,3,40,20,0,555,556,5,119,0,0,556,557,3,316,158,0,557,558, + 5,69,0,0,558,559,3,316,158,0,559,561,1,0,0,0,560,520,1,0,0,0,560,528,1, + 0,0,0,560,540,1,0,0,0,560,547,1,0,0,0,560,550,1,0,0,0,561,39,1,0,0,0,562, + 564,5,410,0,0,563,562,1,0,0,0,564,565,1,0,0,0,565,563,1,0,0,0,565,566,1, + 0,0,0,566,41,1,0,0,0,567,570,3,44,22,0,568,570,3,46,23,0,569,567,1,0,0, + 0,569,568,1,0,0,0,570,43,1,0,0,0,571,573,5,219,0,0,572,574,5,150,0,0,573, + 572,1,0,0,0,573,574,1,0,0,0,574,575,1,0,0,0,575,577,5,344,0,0,576,578,3, + 320,160,0,577,576,1,0,0,0,577,578,1,0,0,0,578,579,1,0,0,0,579,580,3,100, + 50,0,580,581,5,384,0,0,581,586,3,48,24,0,582,583,5,388,0,0,583,585,3,48, + 24,0,584,582,1,0,0,0,585,588,1,0,0,0,586,584,1,0,0,0,586,587,1,0,0,0,587, + 591,1,0,0,0,588,586,1,0,0,0,589,590,5,388,0,0,590,592,3,82,41,0,591,589, + 1,0,0,0,591,592,1,0,0,0,592,595,1,0,0,0,593,594,5,388,0,0,594,596,3,84, + 42,0,595,593,1,0,0,0,595,596,1,0,0,0,596,599,1,0,0,0,597,598,5,388,0,0, + 598,600,3,88,44,0,599,597,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,603, + 5,385,0,0,602,604,3,72,36,0,603,602,1,0,0,0,603,604,1,0,0,0,604,606,1,0, + 0,0,605,607,3,90,45,0,606,605,1,0,0,0,606,607,1,0,0,0,607,608,1,0,0,0,608, + 610,3,318,159,0,609,611,3,98,49,0,610,609,1,0,0,0,610,611,1,0,0,0,611,45, + 1,0,0,0,612,613,5,219,0,0,613,615,5,344,0,0,614,616,3,320,160,0,615,614, + 1,0,0,0,615,616,1,0,0,0,616,617,1,0,0,0,617,618,3,100,50,0,618,621,3,318, + 159,0,619,620,5,185,0,0,620,622,3,160,80,0,621,619,1,0,0,0,621,622,1,0, + 0,0,622,47,1,0,0,0,623,627,3,50,25,0,624,627,3,74,37,0,625,627,3,78,39, + 0,626,623,1,0,0,0,626,624,1,0,0,0,626,625,1,0,0,0,627,49,1,0,0,0,628,629, + 3,52,26,0,629,631,3,56,28,0,630,632,3,70,35,0,631,630,1,0,0,0,631,632,1, + 0,0,0,632,634,1,0,0,0,633,635,3,72,36,0,634,633,1,0,0,0,634,635,1,0,0,0, + 635,51,1,0,0,0,636,639,3,316,158,0,637,639,3,262,131,0,638,636,1,0,0,0, + 638,637,1,0,0,0,639,53,1,0,0,0,640,641,5,384,0,0,641,646,3,52,26,0,642, + 643,5,388,0,0,643,645,3,52,26,0,644,642,1,0,0,0,645,648,1,0,0,0,646,644, + 1,0,0,0,646,647,1,0,0,0,647,649,1,0,0,0,648,646,1,0,0,0,649,650,5,385,0, + 0,650,55,1,0,0,0,651,689,7,8,0,0,652,654,7,9,0,0,653,655,3,58,29,0,654, + 653,1,0,0,0,654,655,1,0,0,0,655,689,1,0,0,0,656,658,5,348,0,0,657,659,3, + 58,29,0,658,657,1,0,0,0,658,659,1,0,0,0,659,666,1,0,0,0,660,662,7,10,0, + 0,661,663,5,282,0,0,662,661,1,0,0,0,662,663,1,0,0,0,663,664,1,0,0,0,664, + 665,5,347,0,0,665,667,5,176,0,0,666,660,1,0,0,0,666,667,1,0,0,0,667,689, + 1,0,0,0,668,670,7,11,0,0,669,671,3,60,30,0,670,669,1,0,0,0,670,671,1,0, + 0,0,671,689,1,0,0,0,672,674,7,12,0,0,673,675,3,64,32,0,674,673,1,0,0,0, + 674,675,1,0,0,0,675,689,1,0,0,0,676,678,5,77,0,0,677,679,3,66,33,0,678, + 677,1,0,0,0,678,679,1,0,0,0,679,689,1,0,0,0,680,682,5,327,0,0,681,683,3, + 68,34,0,682,681,1,0,0,0,682,683,1,0,0,0,683,689,1,0,0,0,684,686,5,115,0, + 0,685,687,3,62,31,0,686,685,1,0,0,0,686,687,1,0,0,0,687,689,1,0,0,0,688, + 651,1,0,0,0,688,652,1,0,0,0,688,656,1,0,0,0,688,668,1,0,0,0,688,672,1,0, + 0,0,688,676,1,0,0,0,688,680,1,0,0,0,688,684,1,0,0,0,689,57,1,0,0,0,690, + 691,5,384,0,0,691,692,3,348,174,0,692,693,5,385,0,0,693,59,1,0,0,0,694, + 695,5,384,0,0,695,698,3,348,174,0,696,697,5,388,0,0,697,699,3,348,174,0, + 698,696,1,0,0,0,698,699,1,0,0,0,699,700,1,0,0,0,700,701,5,385,0,0,701,61, + 1,0,0,0,702,703,5,384,0,0,703,706,3,346,173,0,704,705,5,388,0,0,705,707, + 3,346,173,0,706,704,1,0,0,0,706,707,1,0,0,0,707,708,1,0,0,0,708,709,5,385, + 0,0,709,63,1,0,0,0,710,711,5,375,0,0,711,712,3,56,28,0,712,713,5,374,0, + 0,713,65,1,0,0,0,714,715,5,375,0,0,715,716,3,56,28,0,716,717,5,388,0,0, + 717,718,3,56,28,0,718,719,1,0,0,0,719,720,5,374,0,0,720,67,1,0,0,0,721, + 722,5,375,0,0,722,723,3,52,26,0,723,730,3,56,28,0,724,725,5,388,0,0,725, + 726,3,52,26,0,726,727,3,56,28,0,727,729,1,0,0,0,728,724,1,0,0,0,729,732, + 1,0,0,0,730,728,1,0,0,0,730,731,1,0,0,0,731,733,1,0,0,0,732,730,1,0,0,0, + 733,734,5,374,0,0,734,69,1,0,0,0,735,736,5,215,0,0,736,738,3,86,43,0,737, + 735,1,0,0,0,737,738,1,0,0,0,738,739,1,0,0,0,739,740,5,318,0,0,740,743,5, + 69,0,0,741,742,5,298,0,0,742,744,5,34,0,0,743,741,1,0,0,0,743,744,1,0,0, + 0,744,750,1,0,0,0,745,747,5,298,0,0,746,745,1,0,0,0,746,747,1,0,0,0,747, + 748,1,0,0,0,748,750,5,299,0,0,749,737,1,0,0,0,749,746,1,0,0,0,750,71,1, + 0,0,0,751,752,5,18,0,0,752,753,5,405,0,0,753,73,1,0,0,0,754,755,3,52,26, + 0,755,756,3,56,28,0,756,759,5,287,0,0,757,758,5,252,0,0,758,760,3,76,38, + 0,759,757,1,0,0,0,759,760,1,0,0,0,760,762,1,0,0,0,761,763,5,168,0,0,762, + 761,1,0,0,0,762,763,1,0,0,0,763,75,1,0,0,0,764,765,5,405,0,0,765,77,1,0, + 0,0,766,767,3,52,26,0,767,768,5,185,0,0,768,770,3,80,40,0,769,771,3,72, + 36,0,770,769,1,0,0,0,770,771,1,0,0,0,771,79,1,0,0,0,772,773,3,262,131,0, + 773,81,1,0,0,0,774,775,5,169,0,0,775,776,5,251,0,0,776,777,3,262,131,0, + 777,778,5,185,0,0,778,779,3,262,131,0,779,83,1,0,0,0,780,781,5,215,0,0, + 781,783,3,86,43,0,782,780,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785, + 5,318,0,0,785,786,5,69,0,0,786,787,3,54,27,0,787,788,5,298,0,0,788,789, + 5,34,0,0,789,85,1,0,0,0,790,791,3,308,154,0,791,87,1,0,0,0,792,793,5,315, + 0,0,793,794,5,251,0,0,794,795,5,342,0,0,795,89,1,0,0,0,796,797,5,95,0,0, + 797,798,5,197,0,0,798,799,3,92,46,0,799,91,1,0,0,0,800,801,5,384,0,0,801, + 806,3,94,47,0,802,803,5,388,0,0,803,805,3,94,47,0,804,802,1,0,0,0,805,808, + 1,0,0,0,806,804,1,0,0,0,806,807,1,0,0,0,807,809,1,0,0,0,808,806,1,0,0,0, + 809,810,5,385,0,0,810,93,1,0,0,0,811,825,3,282,141,0,812,813,3,308,154, + 0,813,814,5,384,0,0,814,819,3,96,48,0,815,816,5,388,0,0,816,818,3,96,48, + 0,817,815,1,0,0,0,818,821,1,0,0,0,819,817,1,0,0,0,819,820,1,0,0,0,820,822, + 1,0,0,0,821,819,1,0,0,0,822,823,5,385,0,0,823,825,1,0,0,0,824,811,1,0,0, + 0,824,812,1,0,0,0,825,95,1,0,0,0,826,829,3,282,141,0,827,829,3,342,171, + 0,828,826,1,0,0,0,828,827,1,0,0,0,829,97,1,0,0,0,830,831,5,280,0,0,831, + 840,3,100,50,0,832,836,5,384,0,0,833,835,3,102,51,0,834,833,1,0,0,0,835, + 838,1,0,0,0,836,834,1,0,0,0,836,837,1,0,0,0,837,839,1,0,0,0,838,836,1,0, + 0,0,839,841,5,385,0,0,840,832,1,0,0,0,840,841,1,0,0,0,841,99,1,0,0,0,842, + 843,3,316,158,0,843,101,1,0,0,0,844,845,7,13,0,0,845,849,7,14,0,0,846,847, + 7,15,0,0,847,849,7,16,0,0,848,844,1,0,0,0,848,846,1,0,0,0,849,103,1,0,0, + 0,850,851,5,219,0,0,851,852,5,12,0,0,852,853,3,316,158,0,853,854,3,318, + 159,0,854,105,1,0,0,0,855,856,5,219,0,0,856,858,5,25,0,0,857,859,3,320, + 160,0,858,857,1,0,0,0,858,859,1,0,0,0,859,860,1,0,0,0,860,862,3,316,158, + 0,861,863,3,72,36,0,862,861,1,0,0,0,862,863,1,0,0,0,863,864,1,0,0,0,864, + 865,3,318,159,0,865,107,1,0,0,0,866,868,5,219,0,0,867,869,5,150,0,0,868, + 867,1,0,0,0,868,869,1,0,0,0,869,870,1,0,0,0,870,872,5,166,0,0,871,873,3, + 320,160,0,872,871,1,0,0,0,872,873,1,0,0,0,873,874,1,0,0,0,874,876,3,316, + 158,0,875,877,3,54,27,0,876,875,1,0,0,0,876,877,1,0,0,0,877,879,1,0,0,0, + 878,880,3,72,36,0,879,878,1,0,0,0,879,880,1,0,0,0,880,881,1,0,0,0,881,882, + 5,185,0,0,882,883,3,160,80,0,883,109,1,0,0,0,884,888,5,219,0,0,885,889, + 5,150,0,0,886,887,5,150,0,0,887,889,5,341,0,0,888,885,1,0,0,0,888,886,1, + 0,0,0,888,889,1,0,0,0,889,890,1,0,0,0,890,892,5,254,0,0,891,893,3,320,160, + 0,892,891,1,0,0,0,892,893,1,0,0,0,893,894,1,0,0,0,894,895,3,316,158,0,895, + 896,5,185,0,0,896,899,3,308,154,0,897,898,5,276,0,0,898,900,7,17,0,0,899, + 897,1,0,0,0,899,900,1,0,0,0,900,902,1,0,0,0,901,903,3,112,56,0,902,901, + 1,0,0,0,902,903,1,0,0,0,903,111,1,0,0,0,904,905,5,361,0,0,905,906,5,64, + 0,0,906,912,3,114,57,0,907,908,5,388,0,0,908,909,5,64,0,0,909,911,3,114, + 57,0,910,907,1,0,0,0,911,914,1,0,0,0,912,910,1,0,0,0,912,913,1,0,0,0,913, + 113,1,0,0,0,914,912,1,0,0,0,915,916,5,405,0,0,916,115,1,0,0,0,917,918,5, + 180,0,0,918,920,5,344,0,0,919,921,3,322,161,0,920,919,1,0,0,0,920,921,1, + 0,0,0,921,922,1,0,0,0,922,928,3,316,158,0,923,929,3,118,59,0,924,929,3, + 120,60,0,925,929,3,122,61,0,926,929,3,124,62,0,927,929,3,126,63,0,928,923, + 1,0,0,0,928,924,1,0,0,0,928,925,1,0,0,0,928,926,1,0,0,0,928,927,1,0,0,0, + 929,117,1,0,0,0,930,932,5,119,0,0,931,933,3,316,158,0,932,931,1,0,0,0,932, + 933,1,0,0,0,933,934,1,0,0,0,934,935,5,350,0,0,935,936,3,316,158,0,936,119, + 1,0,0,0,937,938,5,331,0,0,938,939,3,324,162,0,939,121,1,0,0,0,940,941,5, + 4,0,0,941,942,5,215,0,0,942,943,3,86,43,0,943,944,5,318,0,0,944,945,5,69, + 0,0,945,947,3,54,27,0,946,948,3,128,64,0,947,946,1,0,0,0,947,948,1,0,0, + 0,948,123,1,0,0,0,949,950,5,237,0,0,950,951,5,215,0,0,951,952,3,86,43,0, + 952,125,1,0,0,0,953,954,5,4,0,0,954,955,5,355,0,0,955,956,3,54,27,0,956, + 127,1,0,0,0,957,958,5,298,0,0,958,959,5,34,0,0,959,129,1,0,0,0,960,961, + 5,180,0,0,961,962,5,166,0,0,962,966,3,316,158,0,963,967,3,118,59,0,964, + 965,5,185,0,0,965,967,3,160,80,0,966,963,1,0,0,0,966,964,1,0,0,0,967,131, + 1,0,0,0,968,969,5,180,0,0,969,970,5,25,0,0,970,971,3,316,158,0,971,972, + 3,120,60,0,972,133,1,0,0,0,973,977,5,180,0,0,974,978,5,150,0,0,975,976, + 5,150,0,0,976,978,5,341,0,0,977,974,1,0,0,0,977,975,1,0,0,0,977,978,1,0, + 0,0,978,979,1,0,0,0,979,981,5,254,0,0,980,982,3,322,161,0,981,980,1,0,0, + 0,981,982,1,0,0,0,982,983,1,0,0,0,983,984,3,316,158,0,984,985,5,185,0,0, + 985,988,3,308,154,0,986,987,5,276,0,0,987,989,7,17,0,0,988,986,1,0,0,0, + 988,989,1,0,0,0,989,135,1,0,0,0,990,991,5,237,0,0,991,993,5,12,0,0,992, + 994,3,322,161,0,993,992,1,0,0,0,993,994,1,0,0,0,994,995,1,0,0,0,995,996, + 3,316,158,0,996,137,1,0,0,0,997,999,5,237,0,0,998,1000,5,150,0,0,999,998, + 1,0,0,0,999,1000,1,0,0,0,1000,1001,1,0,0,0,1001,1003,5,344,0,0,1002,1004, + 3,322,161,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005, + 1006,3,316,158,0,1006,139,1,0,0,0,1007,1008,5,237,0,0,1008,1010,5,25,0, + 0,1009,1011,3,322,161,0,1010,1009,1,0,0,0,1010,1011,1,0,0,0,1011,1012,1, + 0,0,0,1012,1014,3,316,158,0,1013,1015,7,18,0,0,1014,1013,1,0,0,0,1014,1015, + 1,0,0,0,1015,141,1,0,0,0,1016,1018,5,237,0,0,1017,1019,5,150,0,0,1018,1017, + 1,0,0,0,1018,1019,1,0,0,0,1019,1020,1,0,0,0,1020,1022,5,166,0,0,1021,1023, + 3,322,161,0,1022,1021,1,0,0,0,1022,1023,1,0,0,0,1023,1024,1,0,0,0,1024, + 1025,3,316,158,0,1025,143,1,0,0,0,1026,1030,5,237,0,0,1027,1031,5,150,0, + 0,1028,1029,5,150,0,0,1029,1031,5,341,0,0,1030,1027,1,0,0,0,1030,1028,1, + 0,0,0,1030,1031,1,0,0,0,1031,1032,1,0,0,0,1032,1034,5,254,0,0,1033,1035, + 3,322,161,0,1034,1033,1,0,0,0,1034,1035,1,0,0,0,1035,1036,1,0,0,0,1036, + 1037,3,316,158,0,1037,145,1,0,0,0,1038,1040,5,244,0,0,1039,1038,1,0,0,0, + 1039,1040,1,0,0,0,1040,1041,1,0,0,0,1041,1046,3,148,74,0,1042,1046,3,156, + 78,0,1043,1044,5,244,0,0,1044,1046,3,158,79,0,1045,1039,1,0,0,0,1045,1042, + 1,0,0,0,1045,1043,1,0,0,0,1046,147,1,0,0,0,1047,1048,5,267,0,0,1048,1049, + 7,19,0,0,1049,1058,3,316,158,0,1050,1052,3,150,75,0,1051,1050,1,0,0,0,1051, + 1052,1,0,0,0,1052,1054,1,0,0,0,1053,1055,3,54,27,0,1054,1053,1,0,0,0,1054, + 1055,1,0,0,0,1055,1056,1,0,0,0,1056,1059,3,160,80,0,1057,1059,3,152,76, + 0,1058,1051,1,0,0,0,1058,1057,1,0,0,0,1059,149,1,0,0,0,1060,1061,5,311, + 0,0,1061,1062,3,324,162,0,1062,151,1,0,0,0,1063,1064,5,363,0,0,1064,1069, + 3,154,77,0,1065,1066,5,388,0,0,1066,1068,3,154,77,0,1067,1065,1,0,0,0,1068, + 1071,1,0,0,0,1069,1067,1,0,0,0,1069,1070,1,0,0,0,1070,153,1,0,0,0,1071, + 1069,1,0,0,0,1072,1073,5,384,0,0,1073,1078,3,342,171,0,1074,1075,5,388, + 0,0,1075,1077,3,342,171,0,1076,1074,1,0,0,0,1077,1080,1,0,0,0,1078,1076, + 1,0,0,0,1078,1079,1,0,0,0,1079,1081,1,0,0,0,1080,1078,1,0,0,0,1081,1082, + 5,385,0,0,1082,155,1,0,0,0,1083,1084,5,189,0,0,1084,1085,5,144,0,0,1085, + 1086,5,331,0,0,1086,1090,5,389,0,0,1087,1088,3,148,74,0,1088,1089,5,389, + 0,0,1089,1091,1,0,0,0,1090,1087,1,0,0,0,1091,1092,1,0,0,0,1092,1090,1,0, + 0,0,1092,1093,1,0,0,0,1093,1094,1,0,0,0,1094,1095,5,240,0,0,1095,157,1, + 0,0,0,1096,1097,5,144,0,0,1097,1098,5,331,0,0,1098,1102,5,189,0,0,1099, + 1100,3,148,74,0,1100,1101,5,389,0,0,1101,1103,1,0,0,0,1102,1099,1,0,0,0, + 1103,1104,1,0,0,0,1104,1102,1,0,0,0,1104,1105,1,0,0,0,1105,1106,1,0,0,0, + 1106,1107,5,240,0,0,1107,159,1,0,0,0,1108,1109,6,80,-1,0,1109,1132,3,162, + 81,0,1110,1111,3,164,82,0,1111,1112,3,160,80,5,1112,1132,1,0,0,0,1113,1114, + 5,384,0,0,1114,1115,3,160,80,0,1115,1116,5,385,0,0,1116,1132,1,0,0,0,1117, + 1119,3,172,86,0,1118,1120,3,234,117,0,1119,1118,1,0,0,0,1119,1120,1,0,0, + 0,1120,1122,1,0,0,0,1121,1123,3,238,119,0,1122,1121,1,0,0,0,1122,1123,1, + 0,0,0,1123,1132,1,0,0,0,1124,1126,3,170,85,0,1125,1127,3,234,117,0,1126, + 1125,1,0,0,0,1126,1127,1,0,0,0,1127,1129,1,0,0,0,1128,1130,3,238,119,0, + 1129,1128,1,0,0,0,1129,1130,1,0,0,0,1130,1132,1,0,0,0,1131,1108,1,0,0,0, + 1131,1110,1,0,0,0,1131,1113,1,0,0,0,1131,1117,1,0,0,0,1131,1124,1,0,0,0, + 1132,1147,1,0,0,0,1133,1134,10,3,0,0,1134,1136,7,20,0,0,1135,1137,5,178, + 0,0,1136,1135,1,0,0,0,1136,1137,1,0,0,0,1137,1138,1,0,0,0,1138,1140,3,160, + 80,0,1139,1141,3,234,117,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0,1141,1143, + 1,0,0,0,1142,1144,3,238,119,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144, + 1146,1,0,0,0,1145,1133,1,0,0,0,1146,1149,1,0,0,0,1147,1145,1,0,0,0,1147, + 1148,1,0,0,0,1148,161,1,0,0,0,1149,1147,1,0,0,0,1150,1151,5,363,0,0,1151, + 1156,3,262,131,0,1152,1153,5,388,0,0,1153,1155,3,262,131,0,1154,1152,1, + 0,0,0,1155,1158,1,0,0,0,1156,1154,1,0,0,0,1156,1157,1,0,0,0,1157,163,1, + 0,0,0,1158,1156,1,0,0,0,1159,1160,5,369,0,0,1160,1165,3,166,83,0,1161,1162, + 5,388,0,0,1162,1164,3,166,83,0,1163,1161,1,0,0,0,1164,1167,1,0,0,0,1165, + 1163,1,0,0,0,1165,1166,1,0,0,0,1166,165,1,0,0,0,1167,1165,1,0,0,0,1168, + 1180,3,168,84,0,1169,1170,5,384,0,0,1170,1175,3,52,26,0,1171,1172,5,388, + 0,0,1172,1174,3,52,26,0,1173,1171,1,0,0,0,1174,1177,1,0,0,0,1175,1173,1, + 0,0,0,1175,1176,1,0,0,0,1176,1178,1,0,0,0,1177,1175,1,0,0,0,1178,1179,5, + 385,0,0,1179,1181,1,0,0,0,1180,1169,1,0,0,0,1180,1181,1,0,0,0,1181,1182, + 1,0,0,0,1182,1183,5,185,0,0,1183,1184,5,384,0,0,1184,1185,3,160,80,0,1185, + 1186,5,385,0,0,1186,167,1,0,0,0,1187,1188,3,308,154,0,1188,169,1,0,0,0, + 1189,1190,3,172,86,0,1190,1192,3,178,89,0,1191,1193,3,208,104,0,1192,1191, + 1,0,0,0,1192,1193,1,0,0,0,1193,1195,1,0,0,0,1194,1196,3,210,105,0,1195, + 1194,1,0,0,0,1195,1196,1,0,0,0,1196,1198,1,0,0,0,1197,1199,3,224,112,0, + 1198,1197,1,0,0,0,1198,1199,1,0,0,0,1199,1201,1,0,0,0,1200,1202,3,226,113, + 0,1201,1200,1,0,0,0,1201,1202,1,0,0,0,1202,1208,1,0,0,0,1203,1204,3,172, + 86,0,1204,1205,3,178,89,0,1205,1206,3,232,116,0,1206,1208,1,0,0,0,1207, + 1189,1,0,0,0,1207,1203,1,0,0,0,1208,171,1,0,0,0,1209,1211,5,330,0,0,1210, + 1212,3,352,176,0,1211,1210,1,0,0,0,1211,1212,1,0,0,0,1212,1222,1,0,0,0, + 1213,1223,5,395,0,0,1214,1219,3,174,87,0,1215,1216,5,388,0,0,1216,1218, + 3,174,87,0,1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, + 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1213,1,0,0,0,1222,1214, + 1,0,0,0,1223,173,1,0,0,0,1224,1233,3,176,88,0,1225,1230,3,262,131,0,1226, + 1228,5,185,0,0,1227,1226,1,0,0,0,1227,1228,1,0,0,0,1228,1229,1,0,0,0,1229, + 1231,3,262,131,0,1230,1227,1,0,0,0,1230,1231,1,0,0,0,1231,1233,1,0,0,0, + 1232,1224,1,0,0,0,1232,1225,1,0,0,0,1233,175,1,0,0,0,1234,1235,3,272,136, + 0,1235,1236,5,309,0,0,1236,1237,3,230,115,0,1237,1238,5,185,0,0,1238,1239, + 3,308,154,0,1239,1247,1,0,0,0,1240,1241,3,272,136,0,1241,1242,5,309,0,0, + 1242,1243,3,300,150,0,1243,1244,5,185,0,0,1244,1245,3,308,154,0,1245,1247, + 1,0,0,0,1246,1234,1,0,0,0,1246,1240,1,0,0,0,1247,177,1,0,0,0,1248,1249, + 5,252,0,0,1249,1250,3,180,90,0,1250,179,1,0,0,0,1251,1252,6,90,-1,0,1252, + 1257,3,182,91,0,1253,1254,5,388,0,0,1254,1256,3,182,91,0,1255,1253,1,0, + 0,0,1256,1259,1,0,0,0,1257,1255,1,0,0,0,1257,1258,1,0,0,0,1258,1263,1,0, + 0,0,1259,1257,1,0,0,0,1260,1263,3,192,96,0,1261,1263,3,194,97,0,1262,1251, + 1,0,0,0,1262,1260,1,0,0,0,1262,1261,1,0,0,0,1263,1285,1,0,0,0,1264,1265, + 10,3,0,0,1265,1266,5,220,0,0,1266,1267,5,274,0,0,1267,1284,3,180,90,4,1268, + 1270,10,4,0,0,1269,1271,5,294,0,0,1270,1269,1,0,0,0,1270,1271,1,0,0,0,1271, + 1273,1,0,0,0,1272,1274,7,21,0,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274, + 1276,1,0,0,0,1275,1277,5,308,0,0,1276,1275,1,0,0,0,1276,1277,1,0,0,0,1277, + 1278,1,0,0,0,1278,1279,5,274,0,0,1279,1281,3,180,90,0,1280,1282,3,206,103, + 0,1281,1280,1,0,0,0,1281,1282,1,0,0,0,1282,1284,1,0,0,0,1283,1264,1,0,0, + 0,1283,1268,1,0,0,0,1284,1287,1,0,0,0,1285,1283,1,0,0,0,1285,1286,1,0,0, + 0,1286,181,1,0,0,0,1287,1285,1,0,0,0,1288,1290,3,184,92,0,1289,1291,3,298, + 149,0,1290,1289,1,0,0,0,1290,1291,1,0,0,0,1291,183,1,0,0,0,1292,1294,5, + 344,0,0,1293,1292,1,0,0,0,1293,1294,1,0,0,0,1294,1295,1,0,0,0,1295,1297, + 3,186,93,0,1296,1298,3,188,94,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298, + 1303,1,0,0,0,1299,1301,5,185,0,0,1300,1299,1,0,0,0,1300,1301,1,0,0,0,1301, + 1302,1,0,0,0,1302,1304,3,280,140,0,1303,1300,1,0,0,0,1303,1304,1,0,0,0, + 1304,1334,1,0,0,0,1305,1306,5,277,0,0,1306,1307,5,344,0,0,1307,1308,5,384, + 0,0,1308,1309,3,274,137,0,1309,1310,5,384,0,0,1310,1315,3,276,138,0,1311, + 1312,5,388,0,0,1312,1314,3,276,138,0,1313,1311,1,0,0,0,1314,1317,1,0,0, + 0,1315,1313,1,0,0,0,1315,1316,1,0,0,0,1316,1318,1,0,0,0,1317,1315,1,0,0, + 0,1318,1319,5,385,0,0,1319,1320,5,385,0,0,1320,1334,1,0,0,0,1321,1323,5, + 277,0,0,1322,1321,1,0,0,0,1322,1323,1,0,0,0,1323,1324,1,0,0,0,1324,1325, + 5,384,0,0,1325,1326,3,160,80,0,1326,1327,5,385,0,0,1327,1334,1,0,0,0,1328, + 1329,5,357,0,0,1329,1330,5,384,0,0,1330,1331,3,262,131,0,1331,1332,5,385, + 0,0,1332,1334,1,0,0,0,1333,1293,1,0,0,0,1333,1305,1,0,0,0,1333,1322,1,0, + 0,0,1333,1328,1,0,0,0,1334,185,1,0,0,0,1335,1336,3,316,158,0,1336,187,1, + 0,0,0,1337,1338,5,251,0,0,1338,1339,5,342,0,0,1339,1340,5,185,0,0,1340, + 1341,5,301,0,0,1341,1342,3,190,95,0,1342,189,1,0,0,0,1343,1344,3,262,131, + 0,1344,191,1,0,0,0,1345,1346,5,384,0,0,1346,1347,3,152,76,0,1347,1348,5, + 385,0,0,1348,1349,3,298,149,0,1349,193,1,0,0,0,1350,1351,5,344,0,0,1351, + 1352,5,384,0,0,1352,1353,3,196,98,0,1353,1354,5,385,0,0,1354,195,1,0,0, + 0,1355,1356,3,198,99,0,1356,1357,5,384,0,0,1357,1362,3,200,100,0,1358,1359, + 5,388,0,0,1359,1361,3,200,100,0,1360,1358,1,0,0,0,1361,1364,1,0,0,0,1362, + 1360,1,0,0,0,1362,1363,1,0,0,0,1363,1365,1,0,0,0,1364,1362,1,0,0,0,1365, + 1366,5,385,0,0,1366,197,1,0,0,0,1367,1368,7,22,0,0,1368,199,1,0,0,0,1369, + 1370,5,344,0,0,1370,1385,3,222,111,0,1371,1385,3,204,102,0,1372,1385,3, + 284,142,0,1373,1374,5,24,0,0,1374,1375,5,404,0,0,1375,1376,5,344,0,0,1376, + 1385,3,222,111,0,1377,1378,5,151,0,0,1378,1379,5,404,0,0,1379,1385,3,204, + 102,0,1380,1381,3,202,101,0,1381,1382,5,404,0,0,1382,1383,3,284,142,0,1383, + 1385,1,0,0,0,1384,1369,1,0,0,0,1384,1371,1,0,0,0,1384,1372,1,0,0,0,1384, + 1373,1,0,0,0,1384,1377,1,0,0,0,1384,1380,1,0,0,0,1385,201,1,0,0,0,1386, + 1387,7,23,0,0,1387,203,1,0,0,0,1388,1389,5,31,0,0,1389,1390,5,384,0,0,1390, + 1391,3,316,158,0,1391,1392,5,385,0,0,1392,205,1,0,0,0,1393,1394,5,303,0, + 0,1394,1408,3,264,132,0,1395,1396,5,361,0,0,1396,1397,5,384,0,0,1397,1402, + 3,316,158,0,1398,1399,5,388,0,0,1399,1401,3,316,158,0,1400,1398,1,0,0,0, + 1401,1404,1,0,0,0,1402,1400,1,0,0,0,1402,1403,1,0,0,0,1403,1405,1,0,0,0, + 1404,1402,1,0,0,0,1405,1406,5,385,0,0,1406,1408,1,0,0,0,1407,1393,1,0,0, + 0,1407,1395,1,0,0,0,1408,207,1,0,0,0,1409,1410,5,367,0,0,1410,1411,3,264, + 132,0,1411,209,1,0,0,0,1412,1413,5,257,0,0,1413,1414,5,197,0,0,1414,1419, + 3,212,106,0,1415,1416,5,388,0,0,1416,1418,3,212,106,0,1417,1415,1,0,0,0, + 1418,1421,1,0,0,0,1419,1417,1,0,0,0,1419,1420,1,0,0,0,1420,211,1,0,0,0, + 1421,1419,1,0,0,0,1422,1462,3,262,131,0,1423,1462,3,218,109,0,1424,1425, + 5,384,0,0,1425,1462,5,385,0,0,1426,1427,5,384,0,0,1427,1432,3,262,131,0, + 1428,1429,5,388,0,0,1429,1431,3,262,131,0,1430,1428,1,0,0,0,1431,1434,1, + 0,0,0,1432,1430,1,0,0,0,1432,1433,1,0,0,0,1433,1435,1,0,0,0,1434,1432,1, + 0,0,0,1435,1436,5,385,0,0,1436,1462,1,0,0,0,1437,1438,3,216,108,0,1438, + 1439,5,384,0,0,1439,1444,3,262,131,0,1440,1441,5,388,0,0,1441,1443,3,262, + 131,0,1442,1440,1,0,0,0,1443,1446,1,0,0,0,1444,1442,1,0,0,0,1444,1445,1, + 0,0,0,1445,1447,1,0,0,0,1446,1444,1,0,0,0,1447,1448,5,385,0,0,1448,1462, + 1,0,0,0,1449,1450,3,214,107,0,1450,1451,5,384,0,0,1451,1456,3,212,106,0, + 1452,1453,5,388,0,0,1453,1455,3,212,106,0,1454,1452,1,0,0,0,1455,1458,1, + 0,0,0,1456,1454,1,0,0,0,1456,1457,1,0,0,0,1457,1459,1,0,0,0,1458,1456,1, + 0,0,0,1459,1460,5,385,0,0,1460,1462,1,0,0,0,1461,1422,1,0,0,0,1461,1423, + 1,0,0,0,1461,1424,1,0,0,0,1461,1426,1,0,0,0,1461,1437,1,0,0,0,1461,1449, + 1,0,0,0,1462,213,1,0,0,0,1463,1464,5,258,0,0,1464,1465,5,137,0,0,1465,215, + 1,0,0,0,1466,1467,7,24,0,0,1467,217,1,0,0,0,1468,1469,3,220,110,0,1469, + 1470,5,384,0,0,1470,1471,3,222,111,0,1471,1472,5,388,0,0,1472,1473,3,284, + 142,0,1473,1474,5,385,0,0,1474,219,1,0,0,0,1475,1476,7,25,0,0,1476,221, + 1,0,0,0,1477,1478,3,316,158,0,1478,223,1,0,0,0,1479,1480,5,260,0,0,1480, + 1481,3,264,132,0,1481,225,1,0,0,0,1482,1483,5,368,0,0,1483,1488,3,228,114, + 0,1484,1485,5,388,0,0,1485,1487,3,228,114,0,1486,1484,1,0,0,0,1487,1490, + 1,0,0,0,1488,1486,1,0,0,0,1488,1489,1,0,0,0,1489,227,1,0,0,0,1490,1488, + 1,0,0,0,1491,1492,3,300,150,0,1492,1493,5,185,0,0,1493,1494,3,230,115,0, + 1494,229,1,0,0,0,1495,1497,3,300,150,0,1496,1495,1,0,0,0,1496,1497,1,0, + 0,0,1497,1498,1,0,0,0,1498,1500,5,384,0,0,1499,1501,3,240,120,0,1500,1499, + 1,0,0,0,1500,1501,1,0,0,0,1501,1503,1,0,0,0,1502,1504,3,234,117,0,1503, + 1502,1,0,0,0,1503,1504,1,0,0,0,1504,1506,1,0,0,0,1505,1507,3,256,128,0, + 1506,1505,1,0,0,0,1506,1507,1,0,0,0,1507,1508,1,0,0,0,1508,1509,5,385,0, + 0,1509,231,1,0,0,0,1510,1511,5,284,0,0,1511,1513,5,384,0,0,1512,1514,3, + 240,120,0,1513,1512,1,0,0,0,1513,1514,1,0,0,0,1514,1516,1,0,0,0,1515,1517, + 3,234,117,0,1516,1515,1,0,0,0,1516,1517,1,0,0,0,1517,1519,1,0,0,0,1518, + 1520,3,244,122,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1522,1,0,0,0, + 1521,1523,3,250,125,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1525,1,0, + 0,0,1524,1526,3,252,126,0,1525,1524,1,0,0,0,1525,1526,1,0,0,0,1526,1528, + 1,0,0,0,1527,1529,3,246,123,0,1528,1527,1,0,0,0,1528,1529,1,0,0,0,1529, + 1530,1,0,0,0,1530,1531,3,254,127,0,1531,1536,5,385,0,0,1532,1534,5,185, + 0,0,1533,1532,1,0,0,0,1533,1534,1,0,0,0,1534,1535,1,0,0,0,1535,1537,3,308, + 154,0,1536,1533,1,0,0,0,1536,1537,1,0,0,0,1537,233,1,0,0,0,1538,1539,5, + 306,0,0,1539,1540,5,197,0,0,1540,1545,3,236,118,0,1541,1542,5,388,0,0,1542, + 1544,3,236,118,0,1543,1541,1,0,0,0,1544,1547,1,0,0,0,1545,1543,1,0,0,0, + 1545,1546,1,0,0,0,1546,235,1,0,0,0,1547,1545,1,0,0,0,1548,1550,3,262,131, + 0,1549,1551,7,26,0,0,1550,1549,1,0,0,0,1550,1551,1,0,0,0,1551,1554,1,0, + 0,0,1552,1553,5,87,0,0,1553,1555,7,27,0,0,1554,1552,1,0,0,0,1554,1555,1, + 0,0,0,1555,237,1,0,0,0,1556,1559,5,281,0,0,1557,1560,5,178,0,0,1558,1560, + 3,262,131,0,1559,1557,1,0,0,0,1559,1558,1,0,0,0,1560,239,1,0,0,0,1561,1562, + 5,311,0,0,1562,1563,5,197,0,0,1563,1568,3,262,131,0,1564,1565,5,388,0,0, + 1565,1567,3,262,131,0,1566,1564,1,0,0,0,1567,1570,1,0,0,0,1568,1566,1,0, + 0,0,1568,1569,1,0,0,0,1569,241,1,0,0,0,1570,1568,1,0,0,0,1571,1588,5,395, + 0,0,1572,1588,5,398,0,0,1573,1588,5,403,0,0,1574,1575,5,386,0,0,1575,1576, + 5,406,0,0,1576,1577,5,388,0,0,1577,1578,5,406,0,0,1578,1588,5,387,0,0,1579, + 1580,5,386,0,0,1580,1581,5,406,0,0,1581,1582,5,388,0,0,1582,1588,5,387, + 0,0,1583,1584,5,386,0,0,1584,1585,5,388,0,0,1585,1586,5,406,0,0,1586,1588, + 5,387,0,0,1587,1571,1,0,0,0,1587,1572,1,0,0,0,1587,1573,1,0,0,0,1587,1574, + 1,0,0,0,1587,1579,1,0,0,0,1587,1583,1,0,0,0,1588,243,1,0,0,0,1589,1590, + 5,285,0,0,1590,1595,3,174,87,0,1591,1592,5,388,0,0,1592,1594,3,174,87,0, + 1593,1591,1,0,0,0,1594,1597,1,0,0,0,1595,1593,1,0,0,0,1595,1596,1,0,0,0, + 1596,245,1,0,0,0,1597,1595,1,0,0,0,1598,1599,5,312,0,0,1599,1601,5,384, + 0,0,1600,1602,3,248,124,0,1601,1600,1,0,0,0,1602,1603,1,0,0,0,1603,1601, + 1,0,0,0,1603,1604,1,0,0,0,1604,1605,1,0,0,0,1605,1607,5,385,0,0,1606,1608, + 3,260,130,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,247,1,0,0,0,1609,1611, + 3,310,155,0,1610,1612,3,242,121,0,1611,1610,1,0,0,0,1611,1612,1,0,0,0,1612, + 249,1,0,0,0,1613,1614,5,178,0,0,1614,1615,5,328,0,0,1615,1616,5,313,0,0, + 1616,1622,5,283,0,0,1617,1618,5,304,0,0,1618,1619,5,327,0,0,1619,1620,5, + 313,0,0,1620,1622,5,283,0,0,1621,1613,1,0,0,0,1621,1617,1,0,0,0,1622,251, + 1,0,0,0,1623,1624,5,6,0,0,1624,1625,5,283,0,0,1625,1626,5,334,0,0,1626, + 1627,5,98,0,0,1627,1628,5,73,0,0,1628,1648,5,327,0,0,1629,1630,5,6,0,0, + 1630,1631,5,283,0,0,1631,1632,5,334,0,0,1632,1633,5,350,0,0,1633,1634,5, + 295,0,0,1634,1648,5,327,0,0,1635,1636,5,6,0,0,1636,1637,5,283,0,0,1637, + 1638,5,334,0,0,1638,1639,5,350,0,0,1639,1640,5,73,0,0,1640,1648,3,310,155, + 0,1641,1642,5,6,0,0,1642,1643,5,283,0,0,1643,1644,5,334,0,0,1644,1645,5, + 350,0,0,1645,1646,5,45,0,0,1646,1648,3,310,155,0,1647,1623,1,0,0,0,1647, + 1629,1,0,0,0,1647,1635,1,0,0,0,1647,1641,1,0,0,0,1648,253,1,0,0,0,1649, + 1650,5,232,0,0,1650,1655,3,174,87,0,1651,1652,5,388,0,0,1652,1654,3,174, + 87,0,1653,1651,1,0,0,0,1654,1657,1,0,0,0,1655,1653,1,0,0,0,1655,1656,1, + 0,0,0,1656,255,1,0,0,0,1657,1655,1,0,0,0,1658,1659,5,319,0,0,1659,1660, + 5,190,0,0,1660,1661,3,284,142,0,1661,1662,3,258,129,0,1662,1668,1,0,0,0, + 1663,1664,5,328,0,0,1664,1665,5,190,0,0,1665,1666,5,406,0,0,1666,1668,3, + 258,129,0,1667,1658,1,0,0,0,1667,1663,1,0,0,0,1668,257,1,0,0,0,1669,1670, + 5,102,0,0,1670,1671,5,181,0,0,1671,1672,5,222,0,0,1672,1673,5,327,0,0,1673, + 259,1,0,0,0,1674,1675,5,370,0,0,1675,1676,3,284,142,0,1676,261,1,0,0,0, + 1677,1678,3,264,132,0,1678,263,1,0,0,0,1679,1680,6,132,-1,0,1680,1681,5, + 298,0,0,1681,1692,3,264,132,6,1682,1683,5,245,0,0,1683,1684,5,384,0,0,1684, + 1685,3,160,80,0,1685,1686,5,385,0,0,1686,1692,1,0,0,0,1687,1689,3,270,135, + 0,1688,1690,3,266,133,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1692,1, + 0,0,0,1691,1679,1,0,0,0,1691,1682,1,0,0,0,1691,1687,1,0,0,0,1692,1707,1, + 0,0,0,1693,1694,10,3,0,0,1694,1695,5,181,0,0,1695,1706,3,264,132,4,1696, + 1697,10,2,0,0,1697,1698,5,305,0,0,1698,1706,3,264,132,3,1699,1700,10,1, + 0,0,1700,1702,5,273,0,0,1701,1703,5,298,0,0,1702,1701,1,0,0,0,1702,1703, + 1,0,0,0,1703,1704,1,0,0,0,1704,1706,7,28,0,0,1705,1693,1,0,0,0,1705,1696, + 1,0,0,0,1705,1699,1,0,0,0,1706,1709,1,0,0,0,1707,1705,1,0,0,0,1707,1708, + 1,0,0,0,1708,265,1,0,0,0,1709,1707,1,0,0,0,1710,1712,5,298,0,0,1711,1710, + 1,0,0,0,1711,1712,1,0,0,0,1712,1713,1,0,0,0,1713,1715,5,190,0,0,1714,1716, + 7,29,0,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1717,1,0,0,0,1717,1718, + 3,270,135,0,1718,1719,5,181,0,0,1719,1720,3,270,135,0,1720,1778,1,0,0,0, + 1721,1723,5,298,0,0,1722,1721,1,0,0,0,1722,1723,1,0,0,0,1723,1724,1,0,0, + 0,1724,1725,5,263,0,0,1725,1726,5,384,0,0,1726,1731,3,262,131,0,1727,1728, + 5,388,0,0,1728,1730,3,262,131,0,1729,1727,1,0,0,0,1730,1733,1,0,0,0,1731, + 1729,1,0,0,0,1731,1732,1,0,0,0,1732,1734,1,0,0,0,1733,1731,1,0,0,0,1734, + 1735,5,385,0,0,1735,1778,1,0,0,0,1736,1738,5,298,0,0,1737,1736,1,0,0,0, + 1737,1738,1,0,0,0,1738,1739,1,0,0,0,1739,1740,5,263,0,0,1740,1741,5,384, + 0,0,1741,1742,3,160,80,0,1742,1743,5,385,0,0,1743,1778,1,0,0,0,1744,1745, + 5,245,0,0,1745,1746,5,384,0,0,1746,1747,3,160,80,0,1747,1748,5,385,0,0, + 1748,1778,1,0,0,0,1749,1751,5,298,0,0,1750,1749,1,0,0,0,1750,1751,1,0,0, + 0,1751,1752,1,0,0,0,1752,1753,5,324,0,0,1753,1778,3,270,135,0,1754,1778, + 3,268,134,0,1755,1757,5,273,0,0,1756,1758,5,298,0,0,1757,1756,1,0,0,0,1757, + 1758,1,0,0,0,1758,1759,1,0,0,0,1759,1778,7,28,0,0,1760,1762,5,273,0,0,1761, + 1763,5,298,0,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763,1764,1,0,0,0,1764, + 1765,5,235,0,0,1765,1766,5,252,0,0,1766,1778,3,270,135,0,1767,1769,5,298, + 0,0,1768,1767,1,0,0,0,1768,1769,1,0,0,0,1769,1770,1,0,0,0,1770,1771,5,333, + 0,0,1771,1772,5,350,0,0,1772,1775,3,270,135,0,1773,1774,5,242,0,0,1774, + 1776,3,346,173,0,1775,1773,1,0,0,0,1775,1776,1,0,0,0,1776,1778,1,0,0,0, + 1777,1711,1,0,0,0,1777,1722,1,0,0,0,1777,1737,1,0,0,0,1777,1744,1,0,0,0, + 1777,1750,1,0,0,0,1777,1754,1,0,0,0,1777,1755,1,0,0,0,1777,1760,1,0,0,0, + 1777,1768,1,0,0,0,1778,267,1,0,0,0,1779,1781,5,298,0,0,1780,1779,1,0,0, + 0,1780,1781,1,0,0,0,1781,1782,1,0,0,0,1782,1783,5,280,0,0,1783,1797,7,30, + 0,0,1784,1785,5,384,0,0,1785,1798,5,385,0,0,1786,1787,5,384,0,0,1787,1792, + 3,262,131,0,1788,1789,5,388,0,0,1789,1791,3,262,131,0,1790,1788,1,0,0,0, + 1791,1794,1,0,0,0,1792,1790,1,0,0,0,1792,1793,1,0,0,0,1793,1795,1,0,0,0, + 1794,1792,1,0,0,0,1795,1796,5,385,0,0,1796,1798,1,0,0,0,1797,1784,1,0,0, + 0,1797,1786,1,0,0,0,1798,1809,1,0,0,0,1799,1801,5,298,0,0,1800,1799,1,0, + 0,0,1800,1801,1,0,0,0,1801,1802,1,0,0,0,1802,1803,5,280,0,0,1803,1806,3, + 270,135,0,1804,1805,5,242,0,0,1805,1807,3,346,173,0,1806,1804,1,0,0,0,1806, + 1807,1,0,0,0,1807,1809,1,0,0,0,1808,1780,1,0,0,0,1808,1800,1,0,0,0,1809, + 269,1,0,0,0,1810,1811,6,135,-1,0,1811,1815,3,272,136,0,1812,1813,7,31,0, + 0,1813,1815,3,270,135,8,1814,1810,1,0,0,0,1814,1812,1,0,0,0,1815,1839,1, + 0,0,0,1816,1817,10,7,0,0,1817,1818,7,32,0,0,1818,1838,3,270,135,8,1819, + 1820,10,6,0,0,1820,1821,7,33,0,0,1821,1838,3,270,135,7,1822,1823,10,5,0, + 0,1823,1824,5,379,0,0,1824,1838,3,270,135,6,1825,1826,10,4,0,0,1826,1827, + 5,380,0,0,1827,1838,3,270,135,5,1828,1829,10,3,0,0,1829,1830,5,378,0,0, + 1830,1838,3,270,135,4,1831,1832,10,2,0,0,1832,1833,3,334,167,0,1833,1834, + 3,270,135,3,1834,1838,1,0,0,0,1835,1836,10,1,0,0,1836,1838,5,410,0,0,1837, + 1816,1,0,0,0,1837,1819,1,0,0,0,1837,1822,1,0,0,0,1837,1825,1,0,0,0,1837, + 1828,1,0,0,0,1837,1831,1,0,0,0,1837,1835,1,0,0,0,1838,1841,1,0,0,0,1839, + 1837,1,0,0,0,1839,1840,1,0,0,0,1840,271,1,0,0,0,1841,1839,1,0,0,0,1842, + 1843,6,136,-1,0,1843,1845,5,201,0,0,1844,1846,3,314,157,0,1845,1844,1,0, + 0,0,1846,1847,1,0,0,0,1847,1845,1,0,0,0,1847,1848,1,0,0,0,1848,1851,1,0, + 0,0,1849,1850,5,239,0,0,1850,1852,3,262,131,0,1851,1849,1,0,0,0,1851,1852, + 1,0,0,0,1852,1853,1,0,0,0,1853,1854,5,240,0,0,1854,1934,1,0,0,0,1855,1856, + 5,201,0,0,1856,1858,3,262,131,0,1857,1859,3,314,157,0,1858,1857,1,0,0,0, + 1859,1860,1,0,0,0,1860,1858,1,0,0,0,1860,1861,1,0,0,0,1861,1864,1,0,0,0, + 1862,1863,5,239,0,0,1863,1865,3,262,131,0,1864,1862,1,0,0,0,1864,1865,1, + 0,0,0,1865,1866,1,0,0,0,1866,1867,5,240,0,0,1867,1934,1,0,0,0,1868,1869, + 5,202,0,0,1869,1870,5,384,0,0,1870,1871,3,262,131,0,1871,1872,5,185,0,0, + 1872,1873,3,56,28,0,1873,1874,5,385,0,0,1874,1934,1,0,0,0,1875,1876,5,45, + 0,0,1876,1877,5,384,0,0,1877,1880,3,262,131,0,1878,1879,5,60,0,0,1879,1881, + 5,87,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0,0,1881,1882,1,0,0,0,1882,1883, + 5,385,0,0,1883,1934,1,0,0,0,1884,1885,5,73,0,0,1885,1886,5,384,0,0,1886, + 1889,3,262,131,0,1887,1888,5,60,0,0,1888,1890,5,87,0,0,1889,1887,1,0,0, + 0,1889,1890,1,0,0,0,1890,1891,1,0,0,0,1891,1892,5,385,0,0,1892,1934,1,0, + 0,0,1893,1894,5,316,0,0,1894,1895,5,384,0,0,1895,1896,3,270,135,0,1896, + 1897,5,263,0,0,1897,1898,3,270,135,0,1898,1899,5,385,0,0,1899,1934,1,0, + 0,0,1900,1934,3,342,171,0,1901,1934,5,395,0,0,1902,1903,3,316,158,0,1903, + 1904,5,381,0,0,1904,1905,5,395,0,0,1905,1934,1,0,0,0,1906,1907,5,384,0, + 0,1907,1908,3,160,80,0,1908,1909,5,385,0,0,1909,1934,1,0,0,0,1910,1911, + 3,274,137,0,1911,1923,5,384,0,0,1912,1914,3,352,176,0,1913,1912,1,0,0,0, + 1913,1914,1,0,0,0,1914,1915,1,0,0,0,1915,1920,3,276,138,0,1916,1917,5,388, + 0,0,1917,1919,3,276,138,0,1918,1916,1,0,0,0,1919,1922,1,0,0,0,1920,1918, + 1,0,0,0,1920,1921,1,0,0,0,1921,1924,1,0,0,0,1922,1920,1,0,0,0,1923,1913, + 1,0,0,0,1923,1924,1,0,0,0,1924,1925,1,0,0,0,1925,1926,5,385,0,0,1926,1934, + 1,0,0,0,1927,1934,3,308,154,0,1928,1934,3,278,139,0,1929,1930,5,384,0,0, + 1930,1931,3,262,131,0,1931,1932,5,385,0,0,1932,1934,1,0,0,0,1933,1842,1, + 0,0,0,1933,1855,1,0,0,0,1933,1868,1,0,0,0,1933,1875,1,0,0,0,1933,1884,1, + 0,0,0,1933,1893,1,0,0,0,1933,1900,1,0,0,0,1933,1901,1,0,0,0,1933,1902,1, + 0,0,0,1933,1906,1,0,0,0,1933,1910,1,0,0,0,1933,1927,1,0,0,0,1933,1928,1, + 0,0,0,1933,1929,1,0,0,0,1934,1942,1,0,0,0,1935,1936,10,4,0,0,1936,1937, + 5,382,0,0,1937,1938,3,270,135,0,1938,1939,5,383,0,0,1939,1941,1,0,0,0,1940, + 1935,1,0,0,0,1941,1944,1,0,0,0,1942,1940,1,0,0,0,1942,1943,1,0,0,0,1943, + 273,1,0,0,0,1944,1942,1,0,0,0,1945,1949,3,360,180,0,1946,1949,3,364,182, + 0,1947,1949,3,316,158,0,1948,1945,1,0,0,0,1948,1946,1,0,0,0,1948,1947,1, + 0,0,0,1949,275,1,0,0,0,1950,1955,3,358,179,0,1951,1955,3,356,178,0,1952, + 1955,3,354,177,0,1953,1955,3,262,131,0,1954,1950,1,0,0,0,1954,1951,1,0, + 0,0,1954,1952,1,0,0,0,1954,1953,1,0,0,0,1955,277,1,0,0,0,1956,1957,3,316, + 158,0,1957,279,1,0,0,0,1958,1959,3,308,154,0,1959,281,1,0,0,0,1960,1963, + 3,308,154,0,1961,1963,3,278,139,0,1962,1960,1,0,0,0,1962,1961,1,0,0,0,1963, + 283,1,0,0,0,1964,1967,5,271,0,0,1965,1968,3,286,143,0,1966,1968,3,290,145, + 0,1967,1965,1,0,0,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968,285,1,0,0, + 0,1969,1971,3,288,144,0,1970,1972,3,292,146,0,1971,1970,1,0,0,0,1971,1972, + 1,0,0,0,1972,287,1,0,0,0,1973,1974,3,294,147,0,1974,1975,3,356,178,0,1975, + 1977,1,0,0,0,1976,1973,1,0,0,0,1977,1978,1,0,0,0,1978,1976,1,0,0,0,1978, + 1979,1,0,0,0,1979,289,1,0,0,0,1980,1983,3,292,146,0,1981,1984,3,288,144, + 0,1982,1984,3,292,146,0,1983,1981,1,0,0,0,1983,1982,1,0,0,0,1983,1984,1, + 0,0,0,1984,291,1,0,0,0,1985,1986,3,294,147,0,1986,1987,3,356,178,0,1987, + 1988,5,350,0,0,1988,1989,3,356,178,0,1989,293,1,0,0,0,1990,1992,7,34,0, + 0,1991,1990,1,0,0,0,1991,1992,1,0,0,0,1992,1993,1,0,0,0,1993,1996,7,35, + 0,0,1994,1996,5,405,0,0,1995,1991,1,0,0,0,1995,1994,1,0,0,0,1996,295,1, + 0,0,0,1997,1999,5,185,0,0,1998,1997,1,0,0,0,1998,1999,1,0,0,0,1999,2000, + 1,0,0,0,2000,2002,3,308,154,0,2001,2003,3,304,152,0,2002,2001,1,0,0,0,2002, + 2003,1,0,0,0,2003,297,1,0,0,0,2004,2006,5,185,0,0,2005,2004,1,0,0,0,2005, + 2006,1,0,0,0,2006,2007,1,0,0,0,2007,2009,3,308,154,0,2008,2010,3,304,152, + 0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010,299,1,0,0,0,2011,2012,3,308, + 154,0,2012,2013,3,302,151,0,2013,301,1,0,0,0,2014,2015,5,288,0,0,2015,2017, + 3,308,154,0,2016,2014,1,0,0,0,2017,2018,1,0,0,0,2018,2016,1,0,0,0,2018, + 2019,1,0,0,0,2019,2022,1,0,0,0,2020,2022,1,0,0,0,2021,2016,1,0,0,0,2021, + 2020,1,0,0,0,2022,303,1,0,0,0,2023,2024,5,384,0,0,2024,2025,3,306,153,0, + 2025,2026,5,385,0,0,2026,305,1,0,0,0,2027,2032,3,308,154,0,2028,2029,5, + 388,0,0,2029,2031,3,308,154,0,2030,2028,1,0,0,0,2031,2034,1,0,0,0,2032, + 2030,1,0,0,0,2032,2033,1,0,0,0,2033,307,1,0,0,0,2034,2032,1,0,0,0,2035, + 2039,3,310,155,0,2036,2039,3,312,156,0,2037,2039,3,364,182,0,2038,2035, + 1,0,0,0,2038,2036,1,0,0,0,2038,2037,1,0,0,0,2039,309,1,0,0,0,2040,2041, + 7,36,0,0,2041,311,1,0,0,0,2042,2043,5,405,0,0,2043,313,1,0,0,0,2044,2045, + 5,366,0,0,2045,2046,3,262,131,0,2046,2047,5,346,0,0,2047,2048,3,262,131, + 0,2048,315,1,0,0,0,2049,2054,3,308,154,0,2050,2051,5,381,0,0,2051,2053, + 3,308,154,0,2052,2050,1,0,0,0,2053,2056,1,0,0,0,2054,2055,1,0,0,0,2054, + 2052,1,0,0,0,2055,317,1,0,0,0,2056,2054,1,0,0,0,2057,2058,5,369,0,0,2058, + 2059,3,324,162,0,2059,319,1,0,0,0,2060,2061,5,59,0,0,2061,2062,5,298,0, + 0,2062,2063,5,245,0,0,2063,321,1,0,0,0,2064,2065,5,59,0,0,2065,2066,5,245, + 0,0,2066,323,1,0,0,0,2067,2068,5,384,0,0,2068,2073,3,326,163,0,2069,2070, + 5,388,0,0,2070,2072,3,326,163,0,2071,2069,1,0,0,0,2072,2075,1,0,0,0,2073, + 2071,1,0,0,0,2073,2074,1,0,0,0,2074,2076,1,0,0,0,2075,2073,1,0,0,0,2076, + 2077,5,385,0,0,2077,325,1,0,0,0,2078,2083,3,328,164,0,2079,2081,5,373,0, + 0,2080,2079,1,0,0,0,2080,2081,1,0,0,0,2081,2082,1,0,0,0,2082,2084,3,330, + 165,0,2083,2080,1,0,0,0,2083,2084,1,0,0,0,2084,327,1,0,0,0,2085,2089,3, + 308,154,0,2086,2089,3,278,139,0,2087,2089,5,405,0,0,2088,2085,1,0,0,0,2088, + 2086,1,0,0,0,2088,2087,1,0,0,0,2089,329,1,0,0,0,2090,2095,5,406,0,0,2091, + 2095,5,407,0,0,2092,2095,3,350,175,0,2093,2095,5,405,0,0,2094,2090,1,0, + 0,0,2094,2091,1,0,0,0,2094,2092,1,0,0,0,2094,2093,1,0,0,0,2095,331,1,0, + 0,0,2096,2103,5,181,0,0,2097,2098,5,379,0,0,2098,2103,5,379,0,0,2099,2103, + 5,305,0,0,2100,2101,5,378,0,0,2101,2103,5,378,0,0,2102,2096,1,0,0,0,2102, + 2097,1,0,0,0,2102,2099,1,0,0,0,2102,2100,1,0,0,0,2103,333,1,0,0,0,2104, + 2119,5,373,0,0,2105,2119,5,374,0,0,2106,2119,5,375,0,0,2107,2108,5,375, + 0,0,2108,2119,5,373,0,0,2109,2110,5,374,0,0,2110,2119,5,373,0,0,2111,2112, + 5,375,0,0,2112,2119,5,374,0,0,2113,2114,5,376,0,0,2114,2119,5,373,0,0,2115, + 2116,5,375,0,0,2116,2117,5,373,0,0,2117,2119,5,374,0,0,2118,2104,1,0,0, + 0,2118,2105,1,0,0,0,2118,2106,1,0,0,0,2118,2107,1,0,0,0,2118,2109,1,0,0, + 0,2118,2111,1,0,0,0,2118,2113,1,0,0,0,2118,2115,1,0,0,0,2119,335,1,0,0, + 0,2120,2121,5,375,0,0,2121,2128,5,375,0,0,2122,2123,5,374,0,0,2123,2128, + 5,374,0,0,2124,2128,5,379,0,0,2125,2128,5,380,0,0,2126,2128,5,378,0,0,2127, + 2120,1,0,0,0,2127,2122,1,0,0,0,2127,2124,1,0,0,0,2127,2125,1,0,0,0,2127, + 2126,1,0,0,0,2128,337,1,0,0,0,2129,2130,7,37,0,0,2130,339,1,0,0,0,2131, + 2132,7,38,0,0,2132,341,1,0,0,0,2133,2148,3,284,142,0,2134,2148,3,344,172, + 0,2135,2148,3,346,173,0,2136,2138,5,397,0,0,2137,2136,1,0,0,0,2137,2138, + 1,0,0,0,2138,2139,1,0,0,0,2139,2148,3,348,174,0,2140,2148,3,350,175,0,2141, + 2148,5,407,0,0,2142,2148,5,408,0,0,2143,2145,5,298,0,0,2144,2143,1,0,0, + 0,2144,2145,1,0,0,0,2145,2146,1,0,0,0,2146,2148,5,299,0,0,2147,2133,1,0, + 0,0,2147,2134,1,0,0,0,2147,2135,1,0,0,0,2147,2137,1,0,0,0,2147,2140,1,0, + 0,0,2147,2141,1,0,0,0,2147,2142,1,0,0,0,2147,2144,1,0,0,0,2148,343,1,0, + 0,0,2149,2150,3,354,177,0,2150,2151,3,346,173,0,2151,345,1,0,0,0,2152,2153, + 5,405,0,0,2153,347,1,0,0,0,2154,2155,5,406,0,0,2155,349,1,0,0,0,2156,2157, + 7,39,0,0,2157,351,1,0,0,0,2158,2159,7,40,0,0,2159,353,1,0,0,0,2160,2161, + 7,41,0,0,2161,355,1,0,0,0,2162,2163,7,42,0,0,2163,357,1,0,0,0,2164,2165, + 7,43,0,0,2165,359,1,0,0,0,2166,2167,7,44,0,0,2167,361,1,0,0,0,2168,2169, + 7,45,0,0,2169,363,1,0,0,0,2170,2171,7,46,0,0,2171,365,1,0,0,0,250,374,377, + 379,394,412,416,425,430,437,444,448,457,469,472,479,487,492,495,502,510, + 514,526,534,538,560,565,569,573,577,586,591,595,599,603,606,610,615,621, + 626,631,634,638,646,654,658,662,666,670,674,678,682,686,688,698,706,730, + 737,743,746,749,759,762,770,782,806,819,824,828,836,840,848,858,862,868, + 872,876,879,888,892,899,902,912,920,928,932,947,966,977,981,988,993,999, + 1003,1010,1014,1018,1022,1030,1034,1039,1045,1051,1054,1058,1069,1078,1092, + 1104,1119,1122,1126,1129,1131,1136,1140,1143,1147,1156,1165,1175,1180,1192, + 1195,1198,1201,1207,1211,1219,1222,1227,1230,1232,1246,1257,1262,1270,1273, + 1276,1281,1283,1285,1290,1293,1297,1300,1303,1315,1322,1333,1362,1384,1402, + 1407,1419,1432,1444,1456,1461,1488,1496,1500,1503,1506,1513,1516,1519,1522, + 1525,1528,1533,1536,1545,1550,1554,1559,1568,1587,1595,1603,1607,1611,1621, + 1647,1655,1667,1689,1691,1702,1705,1707,1711,1715,1722,1731,1737,1750,1757, + 1762,1768,1775,1777,1780,1792,1797,1800,1806,1808,1814,1837,1839,1847,1851, + 1860,1864,1880,1889,1913,1920,1923,1933,1942,1948,1954,1962,1967,1971,1978, + 1983,1991,1995,1998,2002,2005,2009,2018,2021,2032,2038,2054,2073,2080,2083, + 2088,2094,2102,2118,2127,2137,2144,2147]; private static __ATN: ATN; public static get _ATN(): ATN { @@ -13495,8 +13553,8 @@ export class DtAddStatementContext extends ParserRuleContext { public KW_WITH(): TerminalNode { return this.getToken(FlinkSqlParser.KW_WITH, 0); } - public FILE_PATH(): TerminalNode { - return this.getToken(FlinkSqlParser.FILE_PATH, 0); + public dtFilePath(): DtFilePathContext { + return this.getTypedRuleContext(DtFilePathContext, 0) as DtFilePathContext; } public KW_AS(): TerminalNode { return this.getToken(FlinkSqlParser.KW_AS, 0); @@ -13561,6 +13619,41 @@ export class DtAddStatementContext extends ParserRuleContext { } +export class DtFilePathContext extends ParserRuleContext { + constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { + super(parent, invokingState); + this.parser = parser; + } + public SLASH_TEXT_list(): TerminalNode[] { + return this.getTokens(FlinkSqlParser.SLASH_TEXT); + } + public SLASH_TEXT(i: number): TerminalNode { + return this.getToken(FlinkSqlParser.SLASH_TEXT, i); + } + public get ruleIndex(): number { + return FlinkSqlParser.RULE_dtFilePath; + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterDtFilePath) { + listener.enterDtFilePath(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitDtFilePath) { + listener.exitDtFilePath(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitDtFilePath) { + return visitor.visitDtFilePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class CreateTableContext extends ParserRuleContext { constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { super(parent, invokingState); @@ -19170,6 +19263,38 @@ export class ComparisonContext extends ValueExpressionContext { } } } +export class ArithmeticBinaryAlternateContext extends ValueExpressionContext { + public _left!: ValueExpressionContext; + public _right!: Token; + constructor(parser: FlinkSqlParser, ctx: ValueExpressionContext) { + super(parser, ctx.parentCtx, ctx.invokingState); + super.copyFrom(ctx); + } + public valueExpression(): ValueExpressionContext { + return this.getTypedRuleContext(ValueExpressionContext, 0) as ValueExpressionContext; + } + public SLASH_TEXT(): TerminalNode { + return this.getToken(FlinkSqlParser.SLASH_TEXT, 0); + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterArithmeticBinaryAlternate) { + listener.enterArithmeticBinaryAlternate(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitArithmeticBinaryAlternate) { + listener.exitArithmeticBinaryAlternate(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitArithmeticBinaryAlternate) { + return visitor.visitArithmeticBinaryAlternate(this); + } else { + return visitor.visitChildren(this); + } + } +} export class ArithmeticBinaryContext extends ValueExpressionContext { public _left!: ValueExpressionContext; public _operator!: Token; diff --git a/src/lib/flinksql/FlinkSqlParserListener.ts b/src/lib/flinksql/FlinkSqlParserListener.ts index 7dca660..5fd1e59 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.ts +++ b/src/lib/flinksql/FlinkSqlParserListener.ts @@ -23,6 +23,7 @@ import { SetStatememtContext } from "./FlinkSqlParser"; import { ResetStatememtContext } from "./FlinkSqlParser"; import { JarStatememtContext } from "./FlinkSqlParser"; import { DtAddStatementContext } from "./FlinkSqlParser"; +import { DtFilePathContext } from "./FlinkSqlParser"; import { CreateTableContext } from "./FlinkSqlParser"; import { SimpleCreateTableContext } from "./FlinkSqlParser"; import { CreateTableAsSelectContext } from "./FlinkSqlParser"; @@ -144,6 +145,7 @@ import { PredicateContext } from "./FlinkSqlParser"; import { LikePredicateContext } from "./FlinkSqlParser"; import { ValueExpressionDefaultContext } from "./FlinkSqlParser"; import { ComparisonContext } from "./FlinkSqlParser"; +import { ArithmeticBinaryAlternateContext } from "./FlinkSqlParser"; import { ArithmeticBinaryContext } from "./FlinkSqlParser"; import { ArithmeticUnaryContext } from "./FlinkSqlParser"; import { DereferenceContext } from "./FlinkSqlParser"; @@ -416,6 +418,16 @@ export default class FlinkSqlParserListener extends ParseTreeListener { * @param ctx the parse tree */ exitDtAddStatement?: (ctx: DtAddStatementContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.dtFilePath`. + * @param ctx the parse tree + */ + enterDtFilePath?: (ctx: DtFilePathContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.dtFilePath`. + * @param ctx the parse tree + */ + exitDtFilePath?: (ctx: DtFilePathContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.createTable`. * @param ctx the parse tree @@ -1644,6 +1656,18 @@ export default class FlinkSqlParserListener extends ParseTreeListener { * @param ctx the parse tree */ exitComparison?: (ctx: ComparisonContext) => void; + /** + * Enter a parse tree produced by the `arithmeticBinaryAlternate` + * labeled alternative in `FlinkSqlParser.valueExpression`. + * @param ctx the parse tree + */ + enterArithmeticBinaryAlternate?: (ctx: ArithmeticBinaryAlternateContext) => void; + /** + * Exit a parse tree produced by the `arithmeticBinaryAlternate` + * labeled alternative in `FlinkSqlParser.valueExpression`. + * @param ctx the parse tree + */ + exitArithmeticBinaryAlternate?: (ctx: ArithmeticBinaryAlternateContext) => void; /** * Enter a parse tree produced by the `arithmeticBinary` * labeled alternative in `FlinkSqlParser.valueExpression`. diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.ts b/src/lib/flinksql/FlinkSqlParserVisitor.ts index 198bbc5..af0d83f 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.ts +++ b/src/lib/flinksql/FlinkSqlParserVisitor.ts @@ -23,6 +23,7 @@ import { SetStatememtContext } from "./FlinkSqlParser"; import { ResetStatememtContext } from "./FlinkSqlParser"; import { JarStatememtContext } from "./FlinkSqlParser"; import { DtAddStatementContext } from "./FlinkSqlParser"; +import { DtFilePathContext } from "./FlinkSqlParser"; import { CreateTableContext } from "./FlinkSqlParser"; import { SimpleCreateTableContext } from "./FlinkSqlParser"; import { CreateTableAsSelectContext } from "./FlinkSqlParser"; @@ -144,6 +145,7 @@ import { PredicateContext } from "./FlinkSqlParser"; import { LikePredicateContext } from "./FlinkSqlParser"; import { ValueExpressionDefaultContext } from "./FlinkSqlParser"; import { ComparisonContext } from "./FlinkSqlParser"; +import { ArithmeticBinaryAlternateContext } from "./FlinkSqlParser"; import { ArithmeticBinaryContext } from "./FlinkSqlParser"; import { ArithmeticUnaryContext } from "./FlinkSqlParser"; import { DereferenceContext } from "./FlinkSqlParser"; @@ -339,6 +341,12 @@ export default class FlinkSqlParserVisitor extends ParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.dtFilePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDtFilePath?: (ctx: DtFilePathContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.createTable`. * @param ctx the parse tree @@ -1074,6 +1082,13 @@ export default class FlinkSqlParserVisitor extends ParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `arithmeticBinaryAlternate` + * labeled alternative in `FlinkSqlParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitArithmeticBinaryAlternate?: (ctx: ArithmeticBinaryAlternateContext) => Result; /** * Visit a parse tree produced by the `arithmeticBinary` * labeled alternative in `FlinkSqlParser.valueExpression`. diff --git a/test/parser/flinksql/syntax/fixtures/templates.sql b/test/parser/flinksql/syntax/fixtures/templates.sql index 8166153..c8915b6 100644 --- a/test/parser/flinksql/syntax/fixtures/templates.sql +++ b/test/parser/flinksql/syntax/fixtures/templates.sql @@ -431,14 +431,14 @@ BEGIN STATEMENT SET; INSERT INTO avg_request_size_1m SELECT window_start, window_end, - total_size / num_requests AS avg_size + total_size/num_requests AS avg_size FROM server_logs_window_1m; -- 写入结果到5min窗口粒度结果表 INSERT INTO avg_request_size_5m SELECT window_start, window_end, - total_size / num_requests AS avg_size + total_size/num_requests AS avg_size FROM server_logs_window_5m; END;