#define yy_create_buffer doctokenizerYY_create_buffer #define yy_delete_buffer doctokenizerYY_delete_buffer #define yy_scan_buffer doctokenizerYY_scan_buffer #define yy_scan_string doctokenizerYY_scan_string #define yy_scan_bytes doctokenizerYY_scan_bytes #define yy_flex_debug doctokenizerYY_flex_debug #define yy_init_buffer doctokenizerYY_init_buffer #define yy_flush_buffer doctokenizerYY_flush_buffer #define yy_load_buffer_state doctokenizerYY_load_buffer_state #define yy_switch_to_buffer doctokenizerYY_switch_to_buffer #define yyin doctokenizerYYin #define yyleng doctokenizerYYleng #define yylex doctokenizerYYlex #define yyout doctokenizerYYout #define yyrestart doctokenizerYYrestart #define yytext doctokenizerYYtext #define yylineno doctokenizerYYlineno /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /cvs/root/flex/flex/skel.c,v 1.2 2004/05/07 00:28:17 jkh Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define YY_USES_REJECT #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yytext_ptr = yy_bp; \ yyleng = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 152 #define YY_END_OF_BUFFER 153 static yyconst short int yy_acclist[1234] = { 0, 112, 112, 153, 151, 152, 149, 152, 150, 151, 152, 26, 151, 152, 29, 151, 152, 30, 149, 152, 1, 29, 151, 152, 26, 151, 152, 150, 151, 152, 150, 151, 152, 150, 151, 152, 150, 151, 152, 27, 151, 152, 26, 151, 152, 26, 151, 152, 27, 151, 152, 27, 151, 152, 150, 151, 152, 150, 151, 152, 21, 26, 151, 152,16403, 150, 151, 152, 21, 26, 151, 152,16403, 21, 26, 151, 152,16403, 21, 26, 151, 152,16403, 21, 26, 151, 152,16403, 26, 151, 152, 26, 151, 152, 26, 150, 151, 152, 29, 151, 152, 1, 29, 151, 152, 26, 151, 152, 26, 151, 152, 27, 151, 152, 26, 151, 152, 117, 118, 151, 152, 117, 118, 150, 151, 152, 118, 151, 152, 68, 151, 152, 67, 68, 151, 152, 69, 149, 152, 66, 68, 151, 152, 68, 150, 151, 152, 68, 150, 151, 152, 74, 151, 152, 76, 151, 152, 77, 149, 152, 74, 151, 152, 150, 151, 152, 150, 151, 152, 75, 151, 152, 150, 151, 152, 150, 151, 152, 74, 151, 152, 74, 150, 151, 152, 81, 151, 152, 83, 151, 152, 85, 149, 152, 84, 151, 152, 150, 151, 152, 150, 151, 152, 82, 151, 152, 150, 151, 152, 81, 150, 151, 152, 88, 151, 152, 88, 151, 152, 89, 149, 152, 88, 150, 151, 152, 88, 151, 152, 87, 88, 151, 152, 87, 88, 150, 151, 152, 35, 37, 151, 152, 35, 37, 151, 152, 36, 149, 152, 35, 37, 150, 151, 152, 37, 150, 151, 152, 37, 150, 151, 152, 35, 37, 151, 152, 36, 149, 152, 37, 150, 151, 152, 39, 41, 151, 152, 40, 149, 152, 39, 41, 150, 151, 152, 41, 150, 151, 152, 41, 150, 151, 152, 43, 45, 151, 152, 44, 149, 152, 43, 45, 150, 151, 152, 45, 150, 151, 152, 45, 150, 151, 152, 47, 49, 151, 152, 48, 149, 152, 47, 49, 150, 151, 152, 49, 150, 151, 152, 51, 53, 151, 152, 52, 149, 152, 51, 53, 150, 151, 152, 53, 150, 151, 152, 55, 57, 151, 152, 56, 149, 152, 55, 57, 150, 151, 152, 57, 150, 151, 152, 59, 61, 151, 152, 60, 149, 152, 59, 61, 150, 151, 152, 61, 150, 151, 152, 63, 65, 151, 152, 64, 149, 152, 63, 65, 150, 151, 152, 65, 150, 151, 152, 109, 151, 152, 111, 151, 152, 111, 149, 152, 109, 111, 151, 152, 109, 151, 152, 109, 150, 151, 152, 110, 151, 152, 105, 151, 152, 104, 151, 152, 151, 152, 151, 152, 112, 151, 152, 151, 152, 151, 152, 150, 151, 152, 114, 151, 152, 114, 150, 151, 152, 115, 151, 152, 115, 150, 151, 152, 94, 151, 152, 91, 94, 151, 152, 93, 149, 152, 94, 150, 151, 152, 94, 150, 151, 152, 94, 151, 152, 90, 94, 151, 152, 100, 151, 152, 102, 151, 152, 103, 149, 152, 103, 151, 152, 150, 151, 152, 150, 151, 152, 101, 151, 152, 150, 151, 152, 150, 151, 152, 100, 150, 151, 152, 151, 152, 95, 150, 151, 152, 95, 151, 152, 29, 151, 152, 30, 149, 152, 31, 150, 151, 152, 31, 150, 151, 152, 31, 150, 151, 152, 26, 151, 152, 26, 31, 150, 151, 152, 119, 151, 152, 120, 149, 152, 119, 150, 151, 152, 121, 141, 151, 152, 142, 149, 152, 121, 141, 150, 151, 152, 121, 141, 150, 151, 152, 141, 150, 151, 152, 141, 150, 151, 152, 148, 151, 152, 148, 150, 151, 152, 143, 148, 151, 152, 145, 148, 151, 152, 146, 148, 151, 152, 147, 149, 152, 146, 148, 150, 151, 152, 138, 139, 151, 152, 138, 140, 149, 152, 138, 139, 150, 151, 152, 139, 151, 152, 139, 151, 152, 139, 150, 151, 152, 26, 29, 30, 30, 32, 26, 21, 21, 26, 26, 26, 11, 10, 10, 10, 10, 21, 26,16403, 21, 10, 21, 26,16403, 21, 26,16403, 21, 26,16403, 21, 26,16403, 21, 26, 16403, 21, 26, 29, 26, 26, 2, 4, 26, 117, 67, 74, 76, 74, 73, 72, 72, 81, 83, 80, 79, 79, 86, 87, 35, 35, 35, 39, 43, 47, 51, 55, 59, 63, 109, 110, 109, 109, 110, 104, 106, 112, 112, 114, 115, 115, 115, 115, 92, 90, 90, 90, 100, 102, 99, 98, 98, 96, 95, 29, 30, 30, 26, 121, 121, 122, 143, 144, 145, 146, 147, 138, 136, 3, 5, 26, 21, 21, 21, 21, 18, 24, 26, 17, 10, 10, 10, 21, 21, 22, 21, 24, 21, 24, 21, 10, 21, 26,16403, 21, 26,16403, 21, 26,16403, 21, 26,16403, 21, 26, 16403, 21, 26, 116, 74, 70, 71, 72, 78, 79, 86, 108, 109, 108, 113, 112, 115, 115, 115, 115, 115, 115, 115, 90, 97, 98, 26, 121, 137, 136, 21, 21, 21, 21, 21, 16, 107, 10, 10, 10, 21, 21, 21, 21, 24, 21, 24, 21, 8211, 21, 10, 21, 26,16403, 21, 21, 26,16403, 21, 26, 16403, 21, 26,16403, 21, 72, 79, 115, 115, 115, 115, 115, 98, 26, 121, 135, 21, 21, 21, 21, 15, 24, 10, 10, 10, 21, 21, 21, 21, 21, 24, 21, 24, 21, 24, 8211, 20, 21, 10, 13, 13, 13, 21, 26,16403, 21, 26,16403, 72, 79, 115, 115, 115, 115, 98, 26, 129, 130, 21, 21, 21, 21, 20, 21, 21, 14, 10, 10, 21, 21, 21, 21, 24, 21, 24, 21, 24, 20, 10, 13, 21, 13, 21, 13, 13, 13, 13, 21, 21, 26, 16403, 6, 20, 21, 72, 79, 115, 115, 115, 115, 98, 26, 134, 21, 21, 21, 21, 9, 10, 21, 20, 21, 21, 21, 24, 21, 24, 10, 13, 13, 13, 21, 13, 21, 13, 21, 13, 21, 13, 13, 13, 13, 21, 26,16403, 72, 79, 34, 58, 62, 115, 115, 115, 115, 98, 26, 21, 20, 21, 21, 21, 10, 21, 21, 21, 24, 21, 24, 8, 10, 13, 21, 13, 21, 13, 22, 13, 13, 21, 13, 21, 13, 13, 22, 13, 21, 26,16403, 72, 79, 33, 115, 115, 115, 115, 98, 26, 123, 21, 21, 21, 10, 21, 21, 25, 22, 25, 21, 24, 21, 24, 13, 21, 13, 13, 21, 13, 13, 21, 13, 21, 13, 22, 13, 13, 13, 26, 26, 26, 26, 26, 26, 26, 26, 26, 72, 79, 115, 115, 90, 98, 124, 133, 21, 21, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 12, 10, 21, 21, 21, 24, 21, 24, 13, 21, 13, 21, 13, 13, 22, 26, 26, 72, 79, 98, 131, 128, 21, 21, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 22, 23, 23, 23, 23, 21, 21, 24, 13, 21, 13, 21, 13, 13, 23, 21, 28, 8211, 21, 28, 42, 50, 28, 132, 127, 21, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 21, 21, 24, 13, 21, 13, 21, 13, 13, 8211, 20, 21, 28, 38, 54, 125, 21, 23, 23, 23, 23, 23, 13, 21, 13, 21, 13, 13, 7, 46, 13, 21, 13, 13, 13, 13, 13, 13, 13, 13, 25, 22, 25, 13, 25, 25, 13, 13, 21, 13, 22, 13, 13, 13, 126, 23, 13, 23, 13, 13, 13, 13, 23, 23, 23, 13, 13, 23, 23, 23, 13, 13, 13, 13 } ; static yyconst short int yy_accept[1459] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 6, 8, 11, 14, 17, 20, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 65, 68, 73, 78, 83, 88, 91, 94, 98, 101, 105, 108, 111, 114, 117, 121, 126, 129, 132, 136, 139, 143, 147, 151, 154, 157, 160, 163, 166, 169, 172, 175, 178, 181, 185, 188, 191, 194, 197, 200, 203, 206, 209, 213, 216, 219, 222, 226, 229, 233, 238, 242, 246, 249, 254, 258, 262, 266, 269, 273, 277, 280, 285, 289, 293, 297, 300, 305, 309, 313, 317, 320, 325, 329, 333, 336, 341, 345, 349, 352, 357, 361, 365, 368, 373, 377, 381, 384, 389, 393, 396, 399, 402, 406, 409, 413, 416, 419, 422, 424, 426, 429, 431, 433, 436, 439, 443, 446, 450, 453, 457, 460, 464, 468, 471, 475, 478, 481, 484, 487, 490, 493, 496, 499, 502, 506, 508, 512, 515, 518, 521, 525, 529, 533, 536, 541, 544, 547, 551, 555, 558, 563, 568, 572, 576, 579, 583, 587, 591, 595, 598, 603, 607, 611, 616, 619, 622, 626, 627, 628, 629, 630, 631, 631, 631, 631, 631, 632, 632, 633, 634, 634, 634, 634, 634, 635, 635, 635, 636, 636, 637, 637, 637, 637, 637, 637, 638, 639, 640, 641, 642, 642, 642, 642, 645, 646, 646, 647, 650, 653, 656, 659, 662, 662, 662, 664, 665, 665, 665, 665, 665, 665, 666, 667, 668, 668, 668, 669, 670, 671, 671, 672, 673, 674, 675, 675, 675, 675, 675, 676, 677, 678, 679, 680, 680, 681, 682, 683, 683, 683, 683, 683, 684, 685, 686, 687, 687, 687, 687, 688, 688, 688, 688, 689, 689, 690, 690, 691, 691, 692, 692, 693, 693, 694, 694, 695, 695, 696, 696, 697, 698, 699, 699, 700, 701, 702, 702, 702, 703, 703, 703, 704, 704, 705, 706, 706, 707, 708, 709, 709, 710, 711, 711, 711, 711, 712, 713, 714, 715, 715, 716, 717, 718, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 728, 729, 730, 731, 732, 733, 733, 734, 734, 734, 735, 735, 735, 736, 736, 737, 737, 738, 739, 739, 740, 741, 741, 741, 741, 741, 742, 742, 743, 744, 744, 744, 744, 744, 744, 745, 746, 747, 748, 749, 750, 750, 751, 753, 755, 755, 755, 755, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 757, 760, 763, 766, 769, 772, 772, 772, 774, 774, 774, 774, 775, 776, 776, 777, 777, 777, 777, 778, 779, 779, 780, 781, 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, 784, 785, 786, 787, 787, 787, 787, 787, 788, 788, 788, 789, 790, 791, 792, 793, 794, 794, 795, 795, 796, 797, 798, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 800, 801, 801, 802, 803, 803, 804, 804, 805, 806, 807, 807, 807, 807, 807, 808, 808, 809, 810, 811, 811, 812, 813, 813, 814, 814, 814, 814, 814, 816, 818, 818, 818, 819, 819, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 822, 825, 826, 829, 832, 835, 835, 835, 835, 836, 836, 836, 837, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 839, 839, 839, 840, 841, 842, 843, 843, 843, 843, 844, 845, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 848, 849, 849, 850, 850, 850, 851, 852, 852, 853, 853, 853, 853, 854, 855, 856, 857, 858, 858, 859, 859, 860, 860, 860, 862, 864, 866, 866, 866, 866, 866, 866, 866, 866, 869, 869, 869, 869, 869, 869, 869, 870, 871, 872, 873, 876, 879, 879, 879, 879, 879, 879, 879, 880, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 882, 883, 884, 885, 885, 885, 886, 887, 887, 887, 888, 888, 888, 889, 889, 889, 889, 889, 889, 890, 891, 891, 892, 892, 893, 895, 896, 897, 897, 897, 897, 897, 897, 898, 899, 900, 900, 901, 901, 902, 902, 902, 904, 906, 908, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 910, 910, 912, 914, 915, 915, 916, 916, 917, 919, 922, 922, 923, 925, 925, 925, 925, 925, 926, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 928, 929, 930, 931, 931, 931, 932, 933, 933, 934, 934, 934, 934, 934, 934, 934, 934, 934, 935, 935, 936, 936, 937, 938, 938, 938, 938, 938, 939, 939, 939, 940, 941, 943, 944, 944, 944, 946, 948, 948, 948, 948, 948, 948, 948, 949, 949, 950, 951, 951, 953, 955, 957, 959, 960, 961, 962, 962, 962, 963, 966, 966, 966, 966, 966, 966, 967, 968, 968, 969, 969, 969, 969, 969, 969, 970, 971, 971, 971, 971, 971, 972, 973, 974, 975, 975, 975, 976, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 978, 980, 981, 982, 982, 982, 982, 983, 984, 985, 985, 985, 987, 989, 989, 989, 991, 993, 995, 995, 997, 998, 1000, 1002, 1002, 1003, 1005, 1006, 1009, 1009, 1010, 1011, 1012, 1012, 1012, 1012, 1012, 1012, 1013, 1013, 1013, 1013, 1014, 1015, 1016, 1016, 1016, 1017, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1020, 1021, 1022, 1022, 1022, 1023, 1024, 1025, 1026, 1028, 1028, 1030, 1032, 1034, 1035, 1037, 1038, 1040, 1042, 1043, 1044, 1044, 1045, 1046, 1047, 1047, 1048, 1048, 1048, 1048, 1049, 1050, 1050, 1051, 1052, 1052, 1053, 1053, 1053, 1054, 1055, 1056, 1056, 1057, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1059, 1059, 1060, 1061, 1061, 1062, 1062, 1062, 1062, 1062, 1062, 1063, 1063, 1063, 1063, 1064, 1065, 1066, 1066, 1067, 1068, 1069, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1077, 1078, 1079, 1079, 1079, 1080, 1080, 1081, 1082, 1083, 1083, 1083, 1083, 1083, 1085, 1087, 1089, 1091, 1092, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1094, 1095, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1097, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1099, 1099, 1100, 1100, 1100, 1100, 1100, 1101, 1102, 1103, 1103, 1103, 1104, 1105, 1106, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1113, 1114, 1114, 1114, 1115, 1116, 1116, 1118, 1119, 1120, 1121, 1121, 1121, 1121, 1121, 1122, 1122, 1122, 1122, 1122, 1124, 1124, 1124, 1126, 1128, 1129, 1130, 1130, 1130, 1130, 1131, 1133, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1137, 1137, 1138, 1138, 1139, 1140, 1141, 1141, 1141, 1142, 1143, 1143, 1143, 1143, 1143, 1144, 1145, 1146, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1153, 1154, 1154, 1154, 1155, 1156, 1156, 1157, 1158, 1159, 1159, 1159, 1159, 1160, 1160, 1160, 1160, 1161, 1161, 1161, 1161, 1163, 1163, 1165, 1167, 1168, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1174, 1174, 1175, 1176, 1176, 1177, 1177, 1178, 1179, 1180, 1180, 1181, 1181, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1184, 1186, 1187, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1189, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1192, 1193, 1194, 1195, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1203, 1205, 1206, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1209, 1209, 1211, 1211, 1212, 1213, 1214, 1214, 1214, 1214, 1214, 1214, 1215, 1215, 1215, 1215, 1215, 1216, 1216, 1216, 1216, 1216, 1218, 1219, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1221, 1222, 1222, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1224, 1225, 1225, 1226, 1227, 1227, 1228, 1228, 1229, 1229, 1230, 1230, 1231, 1232, 1232, 1232, 1233, 1234, 1234 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 38, 45, 46, 47, 48, 49, 38, 38, 38, 38, 50, 51, 52, 53, 54, 1, 55, 56, 57, 58, 59, 60, 61, 62, 63, 38, 64, 65, 66, 67, 68, 69, 38, 70, 71, 72, 73, 74, 75, 76, 77, 38, 78, 79, 80, 81, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst int yy_meta[82] = { 0, 1, 2, 3, 4, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 29, 30, 31, 32, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 33, 32, 34, 35 } ; static yyconst short int yy_base[1860] = { 0, 0, 9, 90, 25, 169, 180, 260, 340, 420, 500, 580, 660, 741, 0, 821, 901, 981, 1061, 1141, 1221, 191, 202, 213, 249, 271, 282, 293, 329, 351, 375, 385, 465, 545, 625, 1301, 1381, 1462, 0, 832, 856, 1543, 0, 865, 930, 1623, 1703, 1784, 0, 1864, 1944, 2025, 2106, 2186, 2266, 952, 1010, 1032, 1090, 2347, 0, 2428, 0, 1112, 1170, 2509, 0, 5539,20917,20917,20917, 0, 2, 44, 11, 2589, 1, 5525, 0, 0,20917, 1254, 2669, 5503, 5506, 16, 1146, 2750, 2824, 2905, 2, 7, 4, 50,20917, 2986, 477, 557, 230, 3067, 412, 5507, 0, 0, 5507,20917, 29,20917,20917,20917, 5518, 0, 36,20917, 3147, 0, 0,20917, 5503, 1289,20917, 0, 0, 37,20917,20917, 0, 0,20917, 1313, 0, 20917, 81,20917,20917, 171, 0, 0, 0, 455, 535, 0,20917, 5463, 310, 322, 5501, 0,20917, 0, 5507, 5460, 0,20917, 0,20917, 5459, 0,20917, 0, 5457, 0,20917, 0, 5456, 0,20917, 0, 5455, 0,20917, 0, 5454, 0,20917, 0, 5453, 0, 402, 447, 482, 51, 0, 367,20917, 0, 528, 0, 443, 187, 523, 590, 0, 0, 635, 641,20917, 563, 611, 0,20917, 5489, 677, 0, 70,20917,20917, 0, 0,20917, 5504, 1345, 0, 385, 0, 0, 617, 180,20917, 0, 0, 5440, 0,20917,20917,20917, 0,20917, 0, 5502, 661, 1346,20917,20917, 0, 242, 5504,20917, 5503, 0, 0, 0, 5487,20917, 0, 0, 698, 997, 1077, 834, 689, 892, 883, 5484, 3226, 5496, 709, 1140, 0, 0, 5480, 5478, 1638, 5472, 0, 3306, 902, 1663, 0, 3, 5481, 0, 945,20917, 0, 5430, 5442, 5437, 146, 5481, 1009, 3387, 265, 3467, 5434, 3544, 160, 15, 168, 127, 516, 191, 3625, 1184, 1235, 964, 940, 5473, 1049, 1266, 1100, 20917, 991, 1042,20917, 1273, 0, 5466, 318, 0, 326, 3705, 5484, 5467, 0, 1208,20917, 0, 5430, 0, 371, 5465,20917, 0, 5428, 596, 846, 1105, 1122, 676, 0, 0, 1214, 1291, 5427, 5418, 1341, 1355, 5464, 5426, 0, 5415, 0, 5414, 0, 5413, 0, 5412, 0, 5411, 0, 5410, 0, 5407, 0, 1071, 1129, 1345, 1231, 5462, 1180, 0,20917, 1372, 5456, 605, 285, 955, 1004, 1380, 0, 1663, 1376, 3784, 1682, 1905, 1432,20917, 1405, 0, 0, 5448, 1433, 10, 0, 395, 5432,20917, 0, 5393, 850, 20917, 0, 1254, 1156, 1203, 5392, 0, 5431,20917, 5381, 5379, 5378, 5373, 5389, 5372, 5386, 308, 5381, 5373, 0, 1239, 1285, 5433,20917, 0, 5409, 0, 1440, 1636,20917, 1454, 1657,20917, 1728,20917, 248, 1702, 512, 210, 1876, 37, 5417, 5404, 0, 5402,20917, 5403, 1674, 3864, 978, 5403, 1756, 5389, 1899,20917, 5340, 5339, 5337, 1744, 1909, 5391, 1919, 1984, 1991, 5342, 5371, 5361, 1756, 5353, 409, 412, 1943, 177, 443, 214, 382, 51, 427, 566, 1879, 2035, 489, 618, 5348, 509, 864, 1997, 292, 808, 591, 309, 532, 640, 844, 1388, 1683, 649, 435, 5318, 3945, 4026, 229, 601, 535, 5305, 5307, 4107, 603, 2068, 2120, 20917,20917, 5344,20917, 2140, 5338, 2144,20917, 5290, 5334, 20917, 5286, 1326, 5295, 5283, 5292, 5289, 5288, 5270, 5266, 5265, 5264, 0,20917,20917, 1677, 1860, 841, 5251, 5250, 4187, 1984, 5300, 4266, 2149, 4345, 4424, 2167, 2238, 5299, 2093, 5289,20917, 5237, 5235, 5286, 5243, 5239, 5223, 5227, 5212, 5224, 5208, 5220, 5220, 5203, 5202,20917, 0, 2213, 2066, 2203, 5235, 2155, 889, 2231, 700,20917, 5244, 5246, 0, 0,20917, 2294, 5187, 5194, 5191, 574, 2239, 712, 872, 2601, 2617, 5176, 5175, 2614, 2313, 2637, 5170, 5216, 1026, 5213, 2314, 695, 356, 515, 802, 694, 801, 148, 944, 836, 978, 896, 891, 5207, 882, 1058, 31, 1068, 451, 873, 250, 898, 909, 1616, 931, 1165, 5166, 4504, 4580, 4661, 5154, 1261, 5162, 5151, 5187, 1093, 1250, 2698, 5156, 5153, 5149, 5143, 5131, 5122, 5122, 5107, 5107, 5121, 5112, 5103, 5099, 2642, 1043, 1266, 4741, 4820, 2702, 2724, 2675, 5091, 5084, 5085, 5080, 0, 5068, 5066, 0, 5052, 5045, 0, 5046, 5026, 5020, 5028, 5015, 1109, 2630, 1115, 1310, 2649, 5049, 5042, 2722,20917, 5047, 5043, 2780, 2784, 2089, 4994, 412, 1023, 2723, 2789, 4953, 2799, 1325, 2806, 4908, 4907, 2838, 2872, 2918, 4940, 1220, 1402, 1026, 612, 1395, 1174, 2855, 938, 1103, 820, 1236, 1300, 1341, 1193, 1616, 4895, 4976, 5057, 5138, 4906, 4896, 4928, 2839, 2945, 2303, 4893, 4892, 4876, 4881, 4867, 4869, 4855, 4836, 4840, 4828, 4824, 4820, 4829, 1622, 1249, 5218, 5297, 2959, 2977, 4815, 4815, 4824, 4802, 4800, 0,20917, 4792, 4770,20917, 4784, 4779, 1357, 4785, 4770, 2873, 2954, 4810, 2961, 1611, 2986, 3005, 3006, 4816, 2707, 3033, 4823, 4811, 4799, 1932, 2688, 3033, 4796, 3072, 4791, 3080, 4745, 4758, 3093, 3106, 3164,20917, 1335, 1414, 1696, 1604, 1647, 1023, 1692, 1617, 1871, 1708, 2788, 1879, 5372, 5448, 5524, 5605, 5685, 5765, 5845, 5926, 6007, 4720,20917, 1749, 3191, 3198, 4777, 4765, 4695, 4694, 4705, 4722, 4678, 4674, 4667, 4673, 4667, 4655, 4668, 4646, 4637, 1885, 1925, 6087, 6166, 3134, 3210, 4637, 4648, 4619, 4620, 4608,20917, 4608, 4604, 4601, 4598, 4608, 4597, 4570, 4561, 3238, 4601, 3250, 4594, 3272, 3273, 3285, 4599, 3297, 4583, 4563, 2016, 2949, 4516, 3311, 3324, 3332, 4496, 4484, 3347, 3354, 1609, 1150, 1714, 1630, 1709, 1868, 4482, 1894,20917, 6241, 6321, 6397, 6473, 6549, 6625, 6706, 6786, 6866, 6946, 7027, 7107, 7188, 4480, 3416, 4534, 3425, 4506, 4432, 4422, 4424,20917, 4414, 4405, 4405, 4393, 4404, 20917,20917, 2012, 4388, 1871, 1892, 7268, 7347, 2865, 3420, 4369, 4364, 4371, 4362, 2041, 4366, 4360, 4366, 4345, 4326, 4313, 4303, 4280, 3557, 3424, 3567, 3574, 3202, 4281, 4257, 4260, 3431, 3451, 2171, 4261, 3592, 3640, 1870, 1914, 0, 7422, 7498, 7578, 3059, 7654, 7730, 7806, 7887, 7968, 8049, 8129, 8209, 4236, 4239, 4207,20917, 4201, 4199, 4176, 4168, 4178, 2244, 4167, 2622, 1709, 3544, 8289, 3617, 2255, 4158, 4152, 3103, 2282, 4132, 4138, 4111, 2338, 4107, 4093, 4071, 0, 3647, 3452, 8368, 3668, 4061, 2750, 3671, 3675,20917, 3185, 4046, 3722, 3745, 8444, 2041, 8520, 8596, 8672, 8748, 8829, 8910, 8990, 3766, 3800, 3812, 9069, 3805, 1752, 2115, 4084, 3848, 9150, 4076, 9231, 3887, 9311, 3906, 2194, 4024, 3923, 3970, 3334, 4027, 2822, 2835, 3989, 3988, 3975, 3975, 3945, 3947, 2905, 1936, 9387,20917, 3937, 2897, 3138, 0, 0, 3916, 3916, 2955, 3891, 3893, 0,20917, 3679, 3910, 9466, 2031, 2034, 2298, 3935, 2179, 2579, 3931, 2890, 2208, 2919, 2300, 2638, 3872, 2653, 2692, 3732, 3348,20917, 3770, 3174, 3823, 9546, 3933, 3852, 3836, 3833, 3963, 9626, 9702, 9778, 9859, 9939, 2673, 3873, 2700, 2984, 3119, 2836, 2858, 2978, 3007, 3822, 3816, 3196, 3846, 3995,10019,10100, 1153, 3375, 3029, 4056, 4070, 4095, 4124, 3792, 3969, 3989, 3988, 4023, 2687, 4054, 4121, 3418, 3066, 4125, 4147, 4150, 4172, 4176, 4190, 4211, 4252, 4242, 4253, 4102, 4275, 4263, 4321, 4272, 4330, 3035, 3769, 3569, 3602, 3763, 3734, 3734, 3722, 3733, 1711, 3689, 3631, 3716,20917, 0, 3721, 3672, 3649, 20917, 4319,10180, 3698,10260, 3037, 3064, 3207, 3682, 3116, 3213, 3290, 3231, 3258, 3285, 3436, 2068, 3336, 1928, 1952, 3621, 3673, 3668, 4329, 1917, 3366, 3371, 3937, 3607, 4390, 3893, 4392,10340, 4384, 3594, 3592, 4431, 3467, 3734,10416, 10492, 1606, 2034, 3587, 3538, 3589, 4413, 4450, 4458, 4215, 4444, 4331, 4493, 4474, 3050, 4456, 4502, 4505, 4514, 4530, 4531, 4540, 4577, 4578, 4581, 4582, 4603, 4600, 4535, 4604, 4623, 4650, 4660, 4664, 3542, 3511,20917, 3518,20917, 3511, 20917,20917, 3776, 3844, 3498, 4702, 4704, 3505, 3503, 3478, 10572, 3385, 3410, 3542, 3476, 3454, 3599, 3841, 3565, 3604, 3629, 3830, 2089, 3638, 2025, 2123, 3741, 3474, 3467, 3444, 2168, 3652, 1273, 343, 3442, 4731, 3359, 3984, 3347,10652, 3752, 3342, 3353,10732, 3778, 2106, 2232, 1919, 2750, 3330, 4718, 4754, 3315, 3306, 4717, 4739, 4742, 4753, 4763, 4762, 4819, 4767, 4815, 4819, 4818, 4829, 4887, 4060,20917, 3287, 20917, 4008, 3261,10812, 3300, 4852, 4868, 3692, 3279, 4884, 2139, 4933, 4888, 3173, 3154, 4143, 3144, 3141, 2210,10892, 10973, 2265, 3113, 4370, 3132, 3114, 3103, 4896, 4917, 3232, 4927, 5027, 5046, 5055, 5056, 5060, 5065, 4173,20917,20917, 3096, 5111, 3085, 3082, 5118, 3058, 3035, 2055, 5124, 4463, 2635, 3014, 3011, 4441, 0, 3003, 2175, 3838, 4012, 4105, 11053, 4247, 2087, 5093, 4289, 4326, 3045, 5129, 2988,11134, 2982, 2985, 2972, 2971, 5133, 5150, 5164, 5168, 5194, 5205, 4224, 2954, 2930, 2899, 2890, 2142, 2900, 2867, 2859, 2839, 11213,11293, 5246, 5252, 1706, 2161, 1811, 5266, 2817, 2815, 5240, 5295, 4452, 2802, 2817, 2765, 2762, 5281, 2744, 2723, 2721,11373, 5258, 2540, 2702, 4697, 2712, 4495, 2698, 2671, 2668, 2667, 2611, 5336, 4776, 2701, 4927, 2609, 2191, 2226, 2645,20917, 2572, 4951, 2565, 4966, 2261, 2252, 2269,20917, 2170, 2863, 2924, 2143,20917, 2072,20917, 2000, 2026, 1946, 5286, 2566, 1926, 1901, 1848, 2280,20917,11454,11489,11524, 11559,11594,11629,11664,11699,11734,11769,11804,11839,11874, 11909,11944,11979,12014,12049,12084,12119,12154,12189,12224, 12259,12294, 2987, 2606, 1720,12329,12364,12385, 3877,12407, 12442,12477,12512,12547,12582, 1672, 2582,12611,12646, 1620, 12675, 2792, 5335,12710,12745,12780,12815,12850,12885,12920, 12955,12990,13025,13060, 2771,13095,13116,13132,13162,13197, 1420,13226,13254, 1401,13283,13312,13340, 1382,13375, 4146, 5341,13410,13445, 1236,13480,13515,13544, 986, 960, 3564, 2825,13572,13593, 4185,13621,13642,13670, 4197, 3233, 873, 13704, 3139, 3406,13731,13745,13780, 4081,13815,13850,13885, 13920,13955,13990, 3799, 622,14024, 3227,14052, 4046, 3300, 3340, 5399,14087,14122,14157,14192,14227,14262,14297,14332, 14367,14402,14437,14472, 3574,14507,14528,14544,14560,14590, 14625,14660,14689, 536,14716,14744, 4360, 3647,14773,14801, 14836, 4222, 5400,14871,14906, 3661, 3519,14935, 4378,14962, 5120, 3893, 3934,14990, 4402, 4613,15011,15039,15058,15087, 15114, 3762,15136,15163,15185, 4063,15212,15240,15275,15309, 4531,15336,15363, 3772, 4632, 3857,15391,15412,15428,15458, 15493,15528,15562, 5127, 3881,15590,15625, 3894,15654,15681, 15703, 5149, 3964,15731, 4847, 3991,15765, 4075, 3898,15787, 5193,15814,15828,15857, 4123,15884,15912,15943,15977,16004, 4165, 4179,16032,16067,16102, 4226,16137,16172,16207,16242, 4229,16271,16298,16325,16347, 5316, 4293,16374,16401,16429, 4487,16458,16485,16507,16529,16551,16578,16602,16633,16668, 16702,16729,16756,16784, 4263, 4268,16819,16854,16889, 4300, 16924,16959,16988,17015,17037,17059, 5348,17087,17122,17157, 5404,17186,17213,17235,17257,17279,17306,17330,17361,17392, 17427,17462,17497,17532,17567,17602,17637, 4332, 4361,17672, 17707,17742, 4510,17777,17806,17833,17855,17877,17905,17940, 17975, 4553,18004,18026,18048,18070,18097,18121,18152,18186, 18217,18248,18279,18314,18349,18384,18419,18454,18489,18524, 4599, 4628,18559,18594,18629, 4667,18664,18693,18715,18737, 4685,18759,18781,18809,18838,18860,18887,18911,18945,18976, 19007,19038,19073,19108,19143,19178, 4733, 4742,19213,19248, 19283, 4763,19318,19353,19382,19404,19431,19460,19482,19504, 19526,19550,19581,19612,19643,19674,19709,19744,19778,19806, 19841,19876, 5409, 5410,19911,19946, 5414, 4784,19981,20016, 20045,20067,20095,20129,20151,20178,20207,20234,20265,20296, 20331,20365,20393,20428,20462,20490,20525,20560,20594,20621, 20638,20665,20692,20719,20747,20778,20812,20847,20881 } ; static yyconst short int yy_def[1860] = { 0, 1458, 1458, 1457, 3, 1459, 1459, 1460, 1460, 1461, 1461, 1462, 1462, 1457, 13, 1463, 1463, 1464, 1464, 1464, 1464, 1465, 1465, 1466, 1466, 1467, 1467, 1468, 1468, 1469, 1469, 1470, 1470, 1471, 1471, 1472, 1472, 1457, 37, 1458, 1458, 1457, 41, 1473, 1473, 1474, 1474, 1457, 47, 1475, 1475, 1476, 1476, 1477, 1477, 1478, 1478, 1479, 1479, 1457, 59, 1457, 61, 1480, 1480, 1457, 65, 1457, 1457, 1457, 1457, 1481, 1457, 1457, 1457, 1482, 1483, 1484, 1481, 1485, 1457, 1486, 1487, 1488, 1457, 1489, 1490, 1491, 1490, 1491, 89, 89, 89, 1457, 1457, 1492, 1457, 1457, 1481, 1487, 1488, 1481, 1493, 1493, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1494, 1457, 1457, 1495, 1494, 1496, 1457, 1497, 1498, 1457, 1494, 1499, 1457, 1457, 1457, 1499, 1500, 1457, 1501, 1499, 1457, 1502, 1457, 1457, 1503, 1504, 1504, 1505, 1505, 1457, 1505, 1457, 1457, 1505, 1457, 1457, 1506, 1457, 1506, 1457, 1457, 1507, 1457, 1507, 1457, 1457, 1508, 1457, 1508, 1457, 1509, 1457, 1509, 1457, 1510, 1457, 1510, 1457, 1511, 1457, 1511, 1457, 1512, 1457, 1512, 1457, 1513, 1457, 1457, 1513, 1514, 1513, 1457, 1457, 1515, 1457, 1516, 1517, 1518, 1517, 1517, 1519, 1519, 1520, 1520, 1457, 1457, 1457, 1521, 1457, 1457, 1522, 1523, 1457, 1457, 1457, 1523, 1524, 1457, 1457, 1525, 1523, 1457, 1526, 1526, 1457, 1457, 1457, 1527, 1528, 1527, 1527, 1457, 1457, 1457, 1529, 1457, 1529, 1529, 1457, 1457, 1457, 1457, 1530, 1531, 1532, 1457, 1532, 1533, 1533, 1533, 1457, 1457, 1534, 1527, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1535, 1536, 1537, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1457, 1550, 1551, 1457, 1552, 1552, 1552, 1552, 1553, 1554, 1555, 1556, 1557, 1457, 1552, 1556, 285, 285, 285, 285, 1457, 1457, 1558, 1457, 1457, 1457, 1457, 1457, 1457, 1559, 1559, 1457, 1457, 1457, 1457, 1559, 1560, 1457, 1457, 1561, 1457, 1562, 1563, 1564, 1565, 1566, 1457, 1567, 1567, 1568, 1457, 1569, 1457, 1570, 1570, 1571, 1572, 1457, 1572, 1457, 1573, 1574, 1574, 1457, 1457, 1457, 1574, 1457, 1457, 1457, 1575, 1457, 1576, 1457, 1577, 1457, 1578, 1457, 1579, 1457, 1580, 1457, 1581, 1457, 1582, 1457, 1457, 1582, 1583, 1584, 1457, 1585, 1457, 1457, 1586, 1587, 1588, 1587, 1589, 1589, 1590, 1591, 1457, 1592, 1591, 1591, 1457, 1457, 1593, 1594, 1594, 1595, 1593, 1457, 1596, 1457, 1597, 1457, 1598, 1598, 1457, 1457, 1599, 1457, 1457, 1457, 1600, 1601, 1601, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1602, 1457, 1603, 1604, 1457, 1605, 1457, 1606, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1607, 1608, 1609, 1610, 1608, 1611, 1612, 1613, 1614, 1615, 1457, 1616, 1617, 1618, 1619, 1457, 1620, 1457, 1621, 1457, 1622, 1622, 1622, 1623, 1623, 1624, 1457, 1625, 1625, 1457, 1626, 1627, 1457, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1622, 1628, 1628, 491, 491, 491, 1457, 1457, 1629, 1630, 1457, 1457, 1457, 1457, 1631, 1457, 1632, 1457, 1633, 1457, 1634, 1635, 1457, 1636, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1637, 1457, 1457, 1638, 1638, 1639, 1457, 1457, 1640, 1641, 1641, 1640, 1642, 1640, 1640, 1642, 1642, 1643, 1457, 1644, 1457, 1645, 1646, 1647, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1648, 1457, 1649, 1649, 1650, 1457, 1650, 1651, 1652, 1457, 1653, 1654, 1655, 1656, 1457, 1657, 1658, 1658, 1658, 1659, 1660, 1661, 1662, 1660, 1457, 1457, 1457, 1663, 1664, 1664, 1457, 1665, 1661, 1457, 1457, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1658, 1667, 1668, 1667, 622, 622, 1457, 1457, 1669, 1457, 1669, 1670, 1671, 1672, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1673, 1673, 1674, 1674, 1675, 1675, 1457, 1457, 1457, 1676, 1677, 1678, 1457, 1457, 1679, 1457, 1457, 1680, 1457, 1457, 1457, 1457, 1457, 1681, 1682, 1661, 1683, 1682, 1457, 1684, 1685, 1457, 1686, 1687, 1688, 1689, 1690, 1691, 1691, 1691, 1692, 1692, 1693, 1457, 1693, 1694, 1457, 1457, 1695, 1695, 1696, 1457, 1697, 1697, 1697, 1697, 1697, 1697, 1457, 1697, 1697, 1697, 1697, 1697, 1697, 1691, 1698, 1699, 1457, 1700, 1700, 1457, 1457, 1701, 1702, 1703, 1704, 1705, 1706, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1707, 1707, 1708, 1708, 1709, 1709, 1457, 1457, 1710, 1711, 1457, 1712, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1713, 1713, 1714, 1457, 1714, 1715, 1457, 1716, 1717, 1718, 1718, 1719, 1720, 1457, 1721, 1721, 1722, 1457, 1722, 1723, 1724, 1457, 1457, 1725, 1725, 1726, 1457, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1721, 1728, 1729, 1729, 1730, 1731, 1732, 1733, 1457, 1457, 1734, 1457, 1457, 1457, 1735, 1735, 1736, 1737, 1738, 1739, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1740, 1740, 1741, 1741, 1742, 1742, 1457, 1457, 1743, 1744, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1745, 1457, 1745, 1746, 1747, 1748, 1749, 1750, 1457, 1751, 1457, 1457, 1457, 1752, 1753, 1457, 1754, 1457, 1457, 1755, 1756, 1757, 1757, 1757, 1757, 1757, 1757, 1752, 1758, 1457, 1759, 1760, 1761, 1762, 1761, 1763, 1764, 1765, 1764, 1766, 1764, 1457, 1767, 1457, 1768, 1769, 1457, 1770, 1771, 1772, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1773, 1773, 1774, 1774, 1457, 1775, 1457, 1457, 1776, 1777, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1778, 1457, 1779, 1780, 1457, 1457, 1457, 1781, 1782, 1783, 1784, 1457, 1785, 1786, 1787, 1787, 1781, 1788, 1788, 1789, 1457, 1790, 1791, 1792, 1793, 1794, 1795, 1795, 1796, 1457, 1797, 1798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1799, 1799, 1799, 1800, 1801, 1457, 1457, 1802, 1803, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1804, 1805, 1806, 1807, 1457, 1457, 1781, 1808, 1809, 1457, 1457, 1457, 1810, 1811, 1812, 1813, 1812, 1814, 1815, 1816, 1817, 1818, 1818, 1003, 1003, 1003, 1457, 1803, 1457, 1457, 1819, 1803, 1820, 1457, 1821, 1822, 1457, 1803, 1457, 1457, 1803, 1803, 1803, 1457, 1823, 1824, 1457, 1457, 1457, 1457, 1457, 1457, 1825, 1825, 1826, 1457, 1457, 1827, 1457, 1828, 1829, 1457, 1457, 1457, 1457, 1457, 1830, 1457, 1831, 1832, 1833, 1457, 1457, 1457, 1819, 1457, 1457, 1457, 1457, 1457, 1834, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1835, 1836, 1457, 1457, 1457, 1457, 1837, 1838, 1839, 1840, 1841, 1841, 1457, 1457, 1457, 1457, 1457, 1457, 1828, 1457, 1457, 1457, 1457, 1457, 1842, 1457, 1843, 1844, 1457, 1845, 1457, 1845, 1845, 1845, 1845, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1825, 1457, 1457, 1828, 1457, 1846, 1457, 1457, 1457, 1457, 1831, 1832, 1847, 1848, 1847, 1847, 1847, 1457, 1847, 1847, 1847, 1847, 1457, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1849, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1835, 1457, 1850, 1457, 1457, 1837, 1851, 1851, 1839, 1840, 1083, 1083, 1457, 1457, 1842, 1457, 1457, 1457, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1831, 1852, 1847, 1853, 1847, 1848, 1847, 1847, 1847, 1853, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1854, 1847, 1847, 1847, 1847, 1847, 1849, 1457, 1457, 1457, 1457, 1835, 1457, 1457, 1457, 1837, 1851, 1190, 1191, 1083, 1083, 1457, 1457, 1457, 1457, 1457, 1106, 1106, 1106, 1106, 1106, 1106, 1457, 1106, 1106, 1106, 1106, 1106, 1106, 1457, 1457, 1457, 1457, 1457, 1457, 1831, 1853, 1457, 1457, 1847, 1854, 1457, 1847, 1847, 1457, 1457, 1457, 1457, 1457, 1457, 1190, 1191, 1083, 1083, 1457, 1457, 1457, 1457, 1457, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1847, 1847, 1457, 1847, 1457, 1457, 1457, 1855, 1457, 1190, 1856, 1856, 1856, 1857, 1856, 1856, 1856, 1856, 1856, 1083, 1083, 1083, 1858, 1083, 1457, 1457, 1457, 1106, 1106, 1106, 1106, 1106, 1106, 1457, 1457, 1457, 1457, 1457, 1847, 1457, 1457, 1457, 1457, 1190, 1859, 1457, 1083, 1083, 1083, 1083, 1457, 1457, 1457, 1106, 1106, 1457, 1457, 1457, 1457, 1457, 1847, 1457, 1457, 1457, 1859, 1457, 1083, 1083, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1847, 1457, 1847, 1457, 1457, 1083, 1083, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1847, 1457, 1457, 1083, 1083, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1321, 1083, 1457, 1457, 1083, 1083, 0, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457 } ; static yyconst short int yy_nxt[20999] = { 0, 1457, 1457, 69, 246, 247, 246, 246, 70, 70, 70, 70, 69, 246, 247, 246, 246, 70, 70, 70, 70, 1457, 270, 381, 70, 1457, 70, 96, 70, 97, 96, 308, 380, 70, 308, 70, 271, 70, 310, 320, 98, 310, 320, 99, 100, 101, 248, 249, 248, 248, 279, 70, 290, 359, 290, 290, 359, 458, 354, 250, 70, 498, 251, 252, 253, 281, 288, 281, 359, 257, 281, 257, 385, 289, 287, 385, 281, 458, 291, 281, 281, 70, 258, 325, 258, 325, 325, 492, 459, 706, 70, 71, 72, 73, 74, 72, 71, 75, 76, 77, 78, 79, 71, 80, 80, 71, 81, 80, 82, 83, 71, 82, 84, 80, 85, 71, 70, 80, 86, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 80, 88, 80, 71, 87, 87, 87, 87, 87, 87, 89, 87, 90, 87, 87, 87, 87, 91, 92, 87, 87, 87, 87, 87, 87, 87, 87, 87, 93, 71, 94, 95, 69, 327, 458, 327, 327, 103, 103, 103, 103, 459, 395, 69, 395, 395, 494, 104, 103, 103, 103, 103, 281, 103, 148, 103, 329, 103, 104, 149, 150, 149, 149, 458, 103, 148, 103, 369, 103, 369, 149, 150, 149, 149, 450, 149, 153, 149, 459, 151, 103, 154, 155, 154, 154, 281, 149, 258, 149, 491, 151, 103, 298, 281, 298, 298, 564, 154, 369, 154, 593, 156, 151, 493, 411, 299, 411, 411, 300, 296, 103, 282, 153, 151, 495, 598, 496, 154, 155, 154, 154, 103, 106, 107, 156, 106, 565, 108, 109, 109, 109, 109, 149, 154, 158, 154, 458, 156, 279, 159, 159, 159, 159, 149, 110, 158, 109, 278, 109, 455, 159, 159, 159, 159, 154, 159, 162, 159, 622, 160, 156, 163, 163, 163, 163, 527, 159, 527, 159, 474, 160, 109, 336, 337, 336, 336, 562, 163, 458, 163, 308, 164, 160, 308, 337, 337, 337, 337, 310, 258, 154, 310, 162, 160, 338, 458, 527, 163, 163, 163, 163, 109, 106, 107, 164, 106, 338, 108, 109, 109, 109, 109, 159, 163, 166, 163, 1239, 164, 474, 167, 167, 167, 167, 159, 110, 612, 109, 554, 109, 360, 360, 360, 360, 320, 163, 167, 320, 167, 166, 168, 164, 555, 458, 167, 167, 167, 167, 390, 170, 390, 390, 109, 391, 171, 171, 171, 171, 385, 698, 167, 385, 167, 168, 168, 355, 355, 355, 355, 458, 171, 163, 171, 599, 172, 303, 304, 303, 303, 1312, 356, 1457, 109, 112, 113, 68, 112, 168, 114, 70, 70, 115, 116, 167, 117, 117, 593, 172, 117, 458, 117, 264, 594, 117, 117, 118, 595, 70, 117, 119, 355, 355, 355, 355, 458, 459, 596, 167, 332, 333, 332, 332, 458, 366, 367, 356, 367, 171, 459, 170, 458, 117, 119, 117, 171, 171, 171, 171, 458, 770, 293, 247, 293, 293, 334, 355, 355, 357, 355, 459, 171, 618, 171, 294, 172, 367, 295, 296, 297, 120, 356, 120, 121, 112, 113, 68, 112, 334, 114, 70, 70, 115, 116, 474, 117, 117, 458, 172, 117, 290, 117, 290, 290, 117, 117, 118, 279, 70, 117, 119, 459, 362, 362, 362, 362, 426, 593, 455, 333, 333, 333, 333, 458, 1457, 367, 291, 367, 171, 699, 174, 363, 117, 119, 117, 175, 175, 175, 175, 282, 458, 293, 247, 293, 293, 334, 378, 376, 376, 376, 376, 175, 377, 175, 294, 176, 367, 295, 296, 297, 120, 606, 120, 121, 123, 124, 68, 123, 334, 125, 70, 70, 126, 127, 593, 128, 128, 474, 176, 128, 325, 128, 325, 325, 128, 128, 70, 624, 70, 128, 129, 1457, 367, 600, 367, 376, 376, 376, 376, 593, 377, 393, 394, 393, 393, 282, 366, 367, 175, 367, 174, 628, 128, 129, 128, 175, 175, 175, 175, 372, 458, 372, 372, 367, 686, 372, 458, 372, 372, 605, 373, 175, 315, 175, 785, 176, 373, 258, 367, 611, 68, 629, 68, 130, 123, 124, 68, 123, 458, 125, 70, 70, 126, 127, 623, 128, 128, 458, 176, 128, 513, 128, 513, 513, 128, 128, 70, 380, 70, 128, 129, 399, 381, 419, 374, 419, 419, 380, 380, 380, 374, 383, 246, 247, 246, 246, 250, 474, 175, 251, 252, 375, 128, 129, 128, 279, 474, 375, 400, 426, 401, 402, 458, 458, 279, 403, 498, 279, 404, 405, 426, 459, 406, 428, 407, 429, 578, 408, 455, 409, 68, 697, 68, 130, 131, 132, 133, 132, 132, 131, 131, 134, 134, 134, 134, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 134, 131, 134, 131, 134, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 131, 134, 131, 131, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 131, 131, 131, 134, 131, 133, 131, 131, 458, 458, 137, 137, 137, 137, 459, 458, 69, 418, 249, 418, 418, 70, 70, 70, 70, 459, 137, 458, 137, 327, 137, 327, 327, 390, 186, 390, 390, 70, 391, 70, 69, 70, 369, 458, 369, 70, 70, 70, 70, 69, 68, 593, 329, 137, 193, 193, 193, 193, 186, 474, 474, 70, 701, 70, 70, 70, 422, 423, 422, 422, 193, 458, 193, 369, 193, 420, 420, 420, 420, 688, 458, 421, 272, 137, 131, 133, 131, 131, 70, 458, 137, 137, 137, 137, 70, 613, 564, 193, 458, 263, 607, 263, 263, 458, 608, 458, 137, 702, 137, 689, 137, 264, 474, 609, 69, 68, 458, 459, 70, 193, 193, 193, 193, 303, 304, 303, 303, 193, 442, 442, 442, 442, 704, 137, 707, 193, 224, 193, 458, 193, 674, 225, 225, 225, 225, 458, 443, 301, 301, 301, 301, 458, 445, 302, 700, 1457, 367, 225, 367, 225, 708, 225, 193, 137, 139, 140, 139, 139, 709, 432, 141, 141, 141, 141, 301, 301, 301, 301, 572, 268, 248, 249, 248, 248, 225, 458, 142, 367, 141, 459, 143, 788, 193, 250, 224, 431, 251, 252, 253, 225, 225, 225, 225, 459, 528, 369, 263, 369, 263, 263, 268, 438, 1457, 143, 225, 225, 227, 225, 264, 225, 279, 228, 228, 228, 228, 303, 304, 303, 303, 1457, 458, 455, 298, 458, 298, 298, 369, 229, 644, 228, 459, 230, 225, 141, 139, 140, 139, 139, 295, 296, 141, 141, 141, 141, 355, 355, 355, 355, 454, 771, 248, 249, 248, 248, 231, 458, 142, 868, 141, 356, 143, 258, 225, 250, 227, 458, 251, 252, 253, 228, 228, 228, 228, 301, 301, 301, 301, 279, 327, 302, 327, 327, 735, 143, 228, 229, 237, 228, 455, 230, 1457, 238, 238, 238, 238, 327, 705, 327, 327, 279, 458, 329, 360, 360, 360, 360, 474, 238, 668, 238, 455, 238, 231, 141, 144, 145, 144, 144, 329, 426, 141, 141, 141, 141, 279, 273, 273, 273, 273, 395, 426, 395, 395, 428, 238, 429, 146, 1096, 141, 1014, 142, 273, 228, 273, 237, 273, 789, 458, 757, 238, 238, 238, 238, 360, 360, 360, 360, 293, 247, 293, 293, 258, 458, 142, 238, 238, 459, 238, 273, 238, 294, 458, 1457, 295, 296, 297, 395, 275, 395, 395, 430, 505, 505, 505, 505, 787, 276, 332, 333, 332, 332, 277, 238, 141, 144, 145, 144, 144, 273, 506, 141, 141, 141, 141, 359, 508, 474, 359, 298, 523, 298, 298, 411, 334, 411, 411, 146, 458, 141, 359, 142, 294, 238, 793, 295, 296, 245, 393, 394, 393, 393, 245, 245, 458, 644, 417, 334, 245, 783, 298, 245, 298, 298, 142, 263, 245, 500, 628, 500, 500, 245, 644, 299, 264, 282, 300, 296, 1239, 411, 299, 411, 411, 300, 296, 333, 333, 333, 333, 316, 316, 316, 316, 790, 141, 178, 179, 180, 178, 245, 181, 182, 182, 182, 182, 316, 825, 316, 715, 316, 183, 334, 718, 322, 322, 322, 322, 182, 458, 182, 513, 182, 513, 513, 281, 245, 736, 245, 759, 322, 1311, 322, 316, 322, 334, 336, 337, 336, 336, 355, 355, 357, 355, 688, 182, 387, 387, 387, 387, 337, 337, 337, 337, 458, 356, 318, 322, 338, 760, 458, 791, 387, 316, 387, 865, 387, 362, 362, 362, 362, 372, 338, 372, 372, 182, 178, 179, 180, 178, 324, 181, 182, 182, 182, 182, 363, 322, 775, 387, 399, 183, 1457, 369, 400, 369, 401, 402, 182, 792, 182, 403, 182, 261, 404, 405, 380, 458, 406, 840, 407, 381, 389, 408, 458, 409, 380, 380, 380, 387, 383, 458, 386, 841, 369, 182, 529, 376, 376, 376, 376, 786, 377, 458, 380, 418, 249, 418, 418, 381, 866, 378, 784, 530, 380, 380, 380, 614, 383, 420, 420, 420, 420, 615, 616, 182, 68, 68, 69, 68, 184, 68, 68, 70, 70, 70, 70, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 70, 68, 70, 68, 70, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 68, 70, 68, 68, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 68, 68, 68, 70, 68, 68, 69, 68, 68, 68, 187, 70, 70, 70, 70, 68, 68, 68, 68, 188, 68, 188, 189, 190, 188, 190, 68, 70, 68, 70, 68, 70, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 68, 191, 68, 68, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 68, 68, 68, 70, 68, 69, 68, 68, 794, 458, 195, 70, 195, 70, 458, 644, 759, 419, 245, 419, 419, 458, 458, 245, 245, 867, 70, 321, 195, 245, 70, 938, 245, 251, 252, 458, 263, 245, 422, 423, 422, 422, 245, 245, 372, 264, 372, 372, 245, 245, 880, 474, 458, 70, 245, 373, 1278, 245, 245, 459, 847, 474, 245, 372, 474, 372, 372, 245, 824, 263, 245, 263, 266, 794, 373, 366, 527, 939, 527, 313, 68, 264, 68, 195, 68, 69, 68, 68, 458, 426, 195, 70, 195, 70, 279, 245, 245, 458, 245, 374, 426, 458, 644, 428, 644, 429, 70, 527, 195, 560, 70, 560, 560, 458, 458, 459, 375, 617, 374, 458, 474, 245, 250, 245, 474, 251, 252, 261, 459, 538, 869, 578, 474, 70, 474, 375, 279, 442, 442, 442, 442, 279, 578, 278, 1096, 580, 474, 581, 279, 964, 880, 1034, 455, 1414, 278, 443, 1014, 592, 474, 455, 68, 445, 68, 195, 196, 197, 198, 197, 197, 196, 196, 199, 200, 200, 200, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 201, 196, 200, 196, 200, 196, 200, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 196, 200, 196, 196, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 196, 196, 196, 200, 204, 205, 68, 204, 1321, 206, 70, 70, 207, 208, 880, 209, 209, 1457, 527, 209, 527, 209, 426, 644, 209, 209, 210, 279, 70, 209, 211, 873, 458, 426, 458, 458, 428, 644, 429, 442, 442, 442, 442, 458, 644, 372, 873, 372, 372, 527, 459, 1456, 209, 211, 209, 578, 373, 443, 601, 583, 279, 583, 583, 445, 602, 603, 578, 474, 1173, 580, 1058, 581, 855, 566, 855, 855, 870, 644, 458, 1239, 68, 964, 68, 212, 204, 205, 68, 204, 644, 206, 70, 70, 207, 208, 905, 209, 209, 873, 1436, 209, 374, 209, 965, 1239, 209, 209, 210, 458, 70, 209, 211, 539, 873, 459, 584, 597, 582, 375, 906, 474, 856, 459, 880, 1434, 532, 1263, 532, 532, 459, 1321, 578, 585, 209, 211, 209, 279, 644, 578, 263, 1142, 263, 586, 279, 1427, 580, 263, 581, 263, 586, 1264, 264, 580, 962, 581, 962, 962, 855, 264, 855, 855, 68, 458, 68, 212, 68, 213, 69, 213, 213, 68, 68, 214, 70, 70, 70, 68, 1239, 1173, 68, 645, 68, 973, 1173, 973, 973, 1173, 68, 70, 68, 70, 68, 70, 794, 474, 1058, 610, 646, 1058, 588, 458, 474, 874, 604, 1454, 856, 459, 1239, 474, 500, 459, 500, 500, 668, 68, 70, 68, 68, 279, 459, 1239, 459, 294, 1263, 668, 295, 296, 670, 1279, 671, 766, 766, 766, 766, 651, 767, 651, 651, 880, 1392, 768, 1239, 68, 68, 68, 70, 68, 213, 69, 213, 213, 68, 68, 214, 70, 70, 70, 68, 794, 1260, 68, 500, 68, 500, 500, 1014, 1386, 1096, 68, 70, 68, 70, 68, 70, 294, 1239, 1453, 295, 296, 1014, 1260, 505, 505, 505, 505, 505, 505, 505, 505, 652, 372, 1239, 372, 372, 1239, 68, 70, 68, 68, 506, 995, 373, 426, 506, 794, 508, 653, 279, 372, 508, 372, 372, 991, 426, 991, 991, 673, 1319, 455, 373, 1259, 1264, 1260, 68, 68, 68, 70, 216, 217, 216, 216, 1173, 75, 218, 218, 219, 220, 1348, 80, 80, 1408, 1418, 80, 1058, 80, 374, 1096, 80, 80, 218, 668, 218, 80, 218, 560, 279, 560, 560, 1014, 1133, 1173, 668, 375, 374, 670, 880, 671, 250, 1415, 995, 251, 252, 1058, 649, 1450, 80, 218, 80, 426, 372, 375, 372, 372, 279, 1391, 962, 578, 962, 962, 426, 373, 279, 428, 221, 429, 880, 1036, 578, 1036, 1036, 580, 1442, 581, 94, 995, 94, 222, 216, 217, 216, 216, 672, 75, 218, 218, 219, 220, 1357, 80, 80, 1443, 1259, 80, 973, 80, 973, 973, 80, 80, 218, 880, 218, 80, 218, 374, 679, 679, 679, 679, 876, 675, 1320, 650, 1449, 808, 808, 808, 808, 1058, 809, 1173, 375, 1173, 443, 810, 80, 218, 80, 681, 445, 578, 278, 1058, 1448, 1058, 279, 279, 1371, 263, 880, 263, 586, 278, 221, 580, 592, 581, 455, 1451, 1044, 264, 1044, 1044, 94, 880, 94, 222, 232, 232, 69, 232, 232, 232, 232, 233, 233, 233, 233, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 233, 232, 233, 232, 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 232, 233, 232, 232, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 232, 232, 232, 233, 232, 232, 69, 232, 232, 232, 232, 233, 233, 233, 233, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 233, 232, 233, 232, 233, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 232, 233, 232, 232, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 232, 232, 232, 233, 239, 239, 240, 239, 239, 239, 239, 241, 241, 241, 241, 239, 239, 239, 239, 239, 239, 242, 239, 239, 243, 239, 239, 241, 239, 241, 239, 244, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 239, 244, 239, 239, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 239, 239, 239, 241, 255, 1173, 255, 255, 1058, 245, 255, 255, 255, 255, 315, 255, 255, 1058, 880, 255, 1429, 255, 578, 315, 255, 255, 255, 279, 255, 255, 255, 260, 583, 578, 583, 583, 580, 1033, 581, 1033, 1033, 1446, 1455, 263, 880, 263, 263, 260, 438, 644, 1444, 668, 255, 255, 255, 264, 279, 372, 578, 372, 372, 1239, 668, 279, 1173, 670, 263, 671, 263, 586, 668, 1096, 580, 690, 581, 279, 1058, 1177, 264, 1173, 255, 668, 255, 245, 670, 1441, 671, 584, 245, 245, 651, 1058, 651, 651, 245, 694, 1437, 245, 262, 1096, 1260, 266, 267, 1457, 585, 1457, 1457, 245, 258, 695, 264, 1014, 529, 719, 719, 719, 719, 372, 1173, 372, 372, 761, 442, 442, 442, 442, 1096, 1239, 373, 530, 1058, 506, 1101, 268, 1101, 245, 721, 508, 1014, 372, 850, 372, 372, 426, 578, 652, 445, 1101, 279, 279, 373, 1457, 1436, 1435, 426, 578, 1434, 428, 773, 429, 581, 245, 653, 245, 245, 1071, 1439, 1071, 1071, 245, 245, 278, 374, 857, 1433, 245, 279, 1431, 245, 262, 1430, 265, 280, 267, 1058, 282, 739, 283, 245, 375, 763, 264, 740, 1355, 374, 679, 679, 679, 679, 679, 679, 679, 679, 1457, 361, 1457, 1457, 326, 1428, 326, 578, 375, 361, 443, 268, 279, 245, 443, 681, 445, 578, 578, 681, 445, 773, 279, 581, 578, 880, 1427, 1423, 578, 279, 326, 773, 1322, 455, 1135, 578, 1135, 1135, 580, 245, 581, 245, 273, 273, 273, 273, 1422, 1136, 1457, 1136, 1136, 719, 719, 719, 719, 435, 578, 435, 273, 1096, 273, 279, 273, 435, 263, 871, 263, 586, 774, 506, 773, 1014, 581, 278, 721, 508, 264, 909, 279, 909, 909, 1096, 1421, 1420, 278, 273, 776, 592, 284, 455, 578, 668, 1102, 1014, 275, 279, 279, 1419, 263, 1418, 263, 586, 668, 276, 773, 845, 581, 671, 277, 1144, 264, 1144, 1144, 1173, 1411, 273, 245, 1033, 1058, 1033, 1033, 245, 245, 278, 1410, 1058, 1175, 245, 279, 644, 245, 262, 529, 265, 280, 267, 578, 282, 880, 283, 245, 279, 1173, 264, 263, 1451, 263, 586, 1409, 530, 580, 780, 581, 1176, 1058, 564, 264, 719, 719, 719, 719, 928, 1058, 928, 928, 1407, 268, 1044, 245, 1044, 1044, 372, 668, 372, 372, 506, 1406, 279, 285, 668, 721, 508, 373, 668, 279, 565, 845, 286, 671, 372, 668, 372, 372, 845, 245, 455, 245, 245, 781, 880, 373, 1096, 245, 245, 668, 1405, 1452, 1096, 245, 279, 1014, 245, 245, 1014, 245, 668, 245, 245, 670, 1014, 671, 245, 929, 426, 426, 256, 374, 930, 279, 279, 1096, 1404, 256, 846, 426, 426, 1400, 673, 428, 455, 429, 828, 1014, 375, 374, 766, 766, 766, 766, 245, 767, 578, 1096, 1399, 1398, 768, 279, 1397, 1096, 829, 1259, 375, 578, 880, 1014, 773, 848, 581, 798, 1457, 1014, 583, 1260, 583, 583, 245, 1390, 245, 245, 301, 301, 301, 301, 245, 245, 302, 1389, 1259, 849, 245, 578, 1388, 245, 262, 1101, 279, 266, 267, 578, 1260, 1101, 578, 245, 279, 773, 264, 581, 1101, 1101, 578, 1101, 578, 580, 1385, 581, 1039, 279, 1039, 1039, 263, 880, 263, 586, 1101, 578, 773, 584, 581, 268, 279, 245, 264, 263, 798, 263, 586, 1384, 1040, 773, 1259, 581, 858, 1096, 585, 264, 860, 909, 1014, 909, 909, 1039, 1260, 1039, 1039, 1014, 1100, 245, 373, 245, 312, 1383, 312, 312, 1382, 309, 312, 312, 312, 312, 274, 312, 312, 1040, 1381, 312, 863, 312, 274, 1374, 312, 312, 312, 578, 312, 312, 312, 1071, 279, 1071, 1071, 263, 1373, 263, 586, 1014, 1372, 580, 1074, 581, 1074, 1074, 374, 264, 505, 505, 505, 505, 312, 312, 312, 808, 808, 808, 808, 928, 809, 928, 928, 375, 1096, 810, 888, 372, 1356, 372, 372, 1355, 508, 1260, 864, 1259, 1014, 1353, 373, 1457, 312, 1259, 312, 255, 1260, 255, 255, 1260, 245, 255, 255, 255, 255, 1260, 255, 255, 1352, 1075, 255, 1259, 255, 668, 317, 255, 255, 255, 279, 255, 255, 255, 317, 1260, 668, 668, 1076, 845, 256, 671, 279, 1101, 929, 1101, 374, 256, 668, 930, 1173, 845, 910, 671, 1014, 255, 255, 255, 1101, 668, 426, 1176, 1058, 375, 279, 279, 442, 442, 442, 442, 668, 426, 1310, 670, 428, 671, 429, 1259, 442, 442, 442, 442, 1259, 255, 850, 255, 245, 1260, 924, 1260, 445, 245, 245, 1306, 1260, 1261, 443, 245, 578, 323, 245, 262, 445, 279, 266, 267, 926, 323, 1341, 578, 245, 578, 773, 264, 581, 1457, 279, 1457, 1457, 578, 927, 326, 578, 326, 279, 773, 1096, 455, 1259, 1178, 578, 1178, 1178, 580, 578, 581, 268, 1457, 245, 279, 1260, 578, 263, 1340, 263, 586, 279, 326, 773, 263, 581, 263, 586, 1327, 264, 580, 457, 581, 1173, 457, 932, 264, 1326, 1173, 245, 457, 245, 245, 1323, 457, 1058, 457, 245, 245, 278, 1058, 457, 1259, 245, 279, 1198, 245, 262, 933, 265, 280, 267, 1318, 282, 1260, 283, 245, 1317, 1316, 264, 1179, 936, 505, 505, 505, 505, 372, 1259, 372, 372, 937, 505, 505, 505, 505, 1316, 668, 373, 449, 1260, 888, 279, 268, 578, 245, 449, 508, 668, 279, 506, 845, 1210, 455, 1259, 578, 508, 1101, 773, 1103, 581, 1266, 1259, 1101, 578, 668, 1260, 1262, 1103, 279, 279, 245, 1259, 245, 457, 578, 668, 457, 580, 670, 581, 671, 374, 457, 1260, 1096, 1310, 457, 1275, 457, 968, 988, 1259, 457, 457, 1307, 1239, 1014, 458, 375, 264, 459, 460, 461, 462, 463, 457, 457, 464, 465, 457, 466, 467, 457, 457, 468, 469, 457, 470, 471, 472, 473, 1306, 1239, 989, 1050, 457, 474, 475, 476, 477, 478, 457, 457, 479, 480, 481, 482, 457, 457, 483, 484, 457, 485, 486, 487, 488, 457, 457, 457, 245, 966, 561, 966, 966, 245, 245, 278, 1260, 561, 1259, 245, 279, 644, 245, 262, 1303, 265, 280, 267, 668, 282, 1260, 283, 245, 279, 1135, 264, 1135, 1135, 668, 668, 1301, 1259, 845, 279, 671, 426, 1300, 433, 433, 668, 279, 1299, 670, 1260, 671, 433, 426, 361, 268, 428, 245, 429, 1298, 578, 645, 361, 1197, 1136, 279, 1136, 1136, 263, 490, 263, 586, 1259, 1281, 773, 1260, 581, 1259, 646, 372, 264, 372, 372, 245, 1260, 245, 245, 982, 1308, 1260, 373, 245, 245, 1144, 1259, 1144, 1144, 245, 279, 983, 245, 245, 1259, 245, 984, 245, 1260, 993, 578, 498, 245, 1259, 1280, 279, 1260, 668, 263, 1273, 263, 586, 279, 1272, 580, 1260, 581, 1259, 668, 388, 264, 845, 1067, 671, 1067, 1067, 374, 388, 828, 1260, 245, 578, 1267, 559, 1266, 578, 279, 1068, 1259, 668, 279, 559, 578, 375, 279, 773, 578, 581, 1058, 580, 668, 581, 1260, 845, 1049, 671, 245, 1259, 245, 312, 994, 312, 312, 1239, 309, 312, 312, 312, 312, 1260, 312, 312, 1069, 1235, 312, 1233, 312, 1233, 1233, 312, 312, 312, 578, 312, 312, 312, 1067, 279, 1067, 1067, 263, 1234, 263, 586, 1231, 1072, 773, 1073, 581, 1096, 969, 1068, 264, 1152, 1275, 578, 1259, 312, 312, 312, 279, 1014, 1100, 263, 264, 263, 586, 1096, 1260, 580, 798, 581, 798, 798, 1180, 264, 1180, 1180, 1102, 1014, 1233, 800, 1233, 1233, 274, 312, 1069, 312, 532, 1181, 532, 532, 274, 1096, 317, 533, 1078, 533, 1230, 534, 535, 1229, 317, 1228, 798, 1457, 798, 798, 264, 1457, 533, 1457, 1457, 1227, 533, 800, 798, 1079, 798, 798, 1096, 503, 1260, 503, 1069, 880, 1101, 800, 1101, 503, 1226, 1457, 1023, 578, 1101, 1103, 1082, 533, 279, 1225, 782, 1101, 880, 536, 578, 1259, 800, 773, 1302, 581, 1302, 1302, 1457, 1392, 1457, 1457, 1259, 1260, 1262, 880, 537, 1260, 1197, 1096, 533, 1363, 533, 245, 1260, 1261, 1083, 880, 245, 245, 1457, 1023, 880, 1195, 245, 323, 800, 245, 245, 1194, 272, 572, 267, 323, 880, 1014, 245, 245, 800, 1182, 934, 245, 245, 1268, 272, 1268, 1268, 245, 1096, 388, 245, 245, 1186, 272, 569, 245, 1457, 388, 1457, 1457, 1023, 569, 559, 268, 794, 245, 668, 1096, 1185, 569, 559, 279, 1058, 1457, 685, 1457, 1457, 668, 1457, 1023, 670, 685, 671, 1074, 1096, 1074, 1074, 1178, 245, 1178, 1178, 245, 1173, 245, 245, 1457, 1023, 1174, 1150, 245, 245, 278, 433, 433, 1269, 245, 279, 1149, 245, 262, 433, 265, 280, 267, 245, 282, 245, 283, 245, 578, 1457, 264, 1457, 1457, 279, 569, 1148, 263, 1153, 263, 586, 1096, 569, 773, 1268, 581, 1268, 1268, 1075, 264, 569, 1147, 1457, 1023, 268, 583, 245, 583, 583, 1101, 1143, 1101, 620, 1179, 903, 1076, 1096, 1101, 1302, 678, 1302, 1302, 1103, 1199, 1101, 1141, 1205, 678, 1101, 1101, 1101, 1101, 245, 1392, 245, 245, 1101, 1101, 1204, 1187, 245, 245, 278, 1101, 1101, 1363, 245, 279, 1140, 245, 262, 1139, 265, 280, 267, 1269, 621, 1023, 283, 245, 584, 1138, 264, 1101, 1137, 1101, 457, 1134, 1103, 457, 1338, 1101, 1338, 1338, 510, 457, 510, 585, 1101, 457, 457, 457, 510, 457, 1014, 268, 457, 245, 1199, 457, 1199, 590, 590, 457, 1101, 457, 1101, 1096, 794, 590, 457, 456, 1101, 274, 1199, 457, 1097, 1206, 457, 1101, 456, 274, 456, 245, 457, 245, 245, 456, 457, 1077, 457, 245, 245, 1103, 1363, 457, 1392, 245, 279, 1198, 245, 245, 1200, 245, 457, 245, 1201, 457, 1363, 498, 245, 1070, 1101, 457, 1101, 1047, 1202, 457, 1339, 457, 1101, 590, 590, 1354, 457, 1354, 1354, 1101, 1198, 590, 1046, 1101, 1211, 1101, 1103, 1101, 1203, 1101, 245, 1101, 1207, 410, 1103, 1101, 410, 1118, 1208, 1209, 1045, 1103, 1101, 1199, 410, 1338, 1199, 1338, 1338, 1101, 1043, 1101, 1101, 794, 1101, 317, 245, 1101, 245, 532, 1101, 532, 532, 317, 1101, 1069, 533, 1101, 533, 323, 534, 535, 437, 1042, 1101, 437, 1101, 323, 1101, 1041, 1101, 533, 1101, 437, 440, 533, 1101, 440, 1038, 1101, 1212, 1037, 1101, 1101, 1101, 440, 1403, 1213, 1403, 1403, 1101, 1214, 1032, 1031, 1118, 1030, 1216, 1101, 533, 410, 1215, 1118, 410, 1101, 536, 1101, 388, 1101, 1118, 1101, 410, 1101, 1029, 1339, 388, 1101, 1118, 756, 1101, 1285, 1392, 537, 1101, 1363, 756, 533, 1028, 533, 532, 1027, 532, 532, 1363, 1026, 1101, 533, 1101, 533, 1199, 534, 535, 1118, 1101, 317, 1101, 1101, 1101, 1101, 323, 1101, 533, 317, 1101, 1101, 533, 1101, 323, 1101, 1218, 1101, 1101, 1199, 1392, 1101, 1101, 1025, 1101, 1101, 1024, 1101, 1101, 678, 1101, 678, 1363, 1101, 1118, 533, 1217, 1101, 388, 678, 1101, 536, 992, 794, 987, 668, 388, 1220, 986, 583, 279, 583, 583, 1221, 1222, 1118, 668, 1392, 537, 845, 1173, 671, 533, 1219, 533, 532, 985, 532, 532, 1363, 317, 1101, 533, 1101, 533, 981, 534, 535, 317, 1101, 1101, 1287, 1101, 1101, 980, 794, 1101, 533, 1101, 1101, 1324, 533, 1324, 1324, 1223, 1101, 1101, 1118, 542, 323, 542, 1118, 979, 1224, 584, 1236, 542, 323, 456, 1118, 1180, 1118, 1180, 1180, 533, 1096, 978, 456, 578, 456, 536, 585, 794, 279, 456, 1181, 1102, 1014, 688, 578, 977, 647, 773, 1282, 581, 1282, 1282, 537, 1325, 976, 435, 533, 435, 533, 532, 975, 532, 532, 435, 974, 972, 533, 971, 533, 970, 534, 535, 578, 689, 969, 1069, 1354, 279, 1354, 1354, 263, 533, 263, 586, 963, 533, 773, 1403, 581, 1403, 1403, 278, 264, 961, 960, 1270, 279, 959, 1350, 278, 1350, 1350, 278, 1283, 279, 592, 958, 455, 533, 1101, 278, 1101, 957, 592, 536, 455, 956, 1101, 955, 1286, 1284, 1101, 1103, 1101, 1101, 648, 1069, 274, 954, 1101, 1432, 537, 1432, 1432, 1274, 533, 1101, 533, 245, 1101, 274, 1101, 1103, 245, 245, 278, 1387, 1101, 274, 245, 279, 890, 245, 262, 1101, 265, 280, 267, 1101, 621, 1101, 283, 245, 388, 1288, 264, 1101, 1101, 1103, 1101, 1101, 388, 1101, 1101, 890, 1101, 953, 1103, 1101, 1101, 940, 1101, 1101, 1289, 503, 1101, 503, 1101, 268, 935, 245, 1103, 503, 1290, 1101, 1101, 1101, 1101, 1101, 1291, 1101, 934, 1101, 1101, 1101, 1101, 274, 1101, 1101, 1103, 1101, 1101, 931, 1101, 274, 1101, 245, 854, 245, 711, 1101, 711, 711, 711, 711, 711, 279, 1118, 852, 711, 711, 711, 711, 711, 711, 712, 711, 455, 711, 852, 711, 711, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 317, 925, 1101, 1101, 668, 1101, 1101, 923, 317, 1101, 1101, 437, 437, 1101, 437, 1101, 1101, 1101, 1101, 1101, 1294, 1101, 437, 922, 1101, 1101, 1293, 1292, 1101, 323, 1118, 1101, 1101, 510, 921, 510, 1101, 323, 1101, 1118, 1295, 510, 711, 245, 1101, 1118, 920, 919, 245, 245, 278, 1101, 918, 917, 245, 279, 916, 245, 262, 915, 265, 280, 267, 1101, 621, 1101, 283, 245, 388, 914, 264, 1101, 913, 1101, 1296, 1101, 388, 1101, 1101, 1101, 1416, 1101, 1416, 1416, 912, 1101, 274, 1118, 1101, 911, 904, 668, 1101, 268, 274, 245, 279, 1297, 1173, 903, 1118, 1324, 668, 1324, 1324, 845, 902, 671, 901, 1176, 1058, 759, 1096, 714, 1313, 1118, 1313, 1313, 900, 899, 898, 245, 897, 245, 532, 896, 532, 532, 1417, 895, 1101, 533, 1101, 533, 317, 534, 535, 1282, 1101, 1282, 1282, 760, 317, 323, 894, 1328, 533, 893, 892, 1325, 533, 323, 1101, 1304, 1101, 1101, 1103, 1101, 890, 1425, 1101, 1425, 1425, 1101, 388, 890, 1101, 1329, 1101, 1314, 1101, 887, 388, 533, 1330, 1101, 1101, 1101, 1101, 536, 1101, 1101, 1101, 1332, 1101, 1145, 1315, 1331, 1101, 737, 1101, 1101, 1283, 1145, 862, 1101, 537, 861, 859, 578, 533, 854, 533, 532, 852, 532, 532, 1438, 278, 1284, 533, 852, 533, 279, 534, 535, 571, 759, 843, 278, 1333, 842, 592, 839, 455, 533, 838, 837, 1101, 533, 1101, 1101, 1101, 1101, 1101, 1342, 1101, 1342, 1342, 1101, 1101, 836, 1101, 1101, 1101, 677, 1101, 1101, 677, 834, 1101, 1342, 533, 1342, 1342, 833, 677, 1101, 536, 1118, 832, 831, 1173, 830, 1335, 823, 738, 1345, 1334, 1345, 1345, 1313, 822, 1313, 1313, 537, 821, 820, 1336, 533, 819, 533, 711, 818, 711, 711, 711, 711, 711, 794, 1343, 817, 711, 711, 711, 711, 711, 711, 711, 711, 1101, 711, 1101, 711, 711, 816, 1343, 1344, 1101, 1101, 1440, 1101, 1440, 1440, 1375, 1101, 1349, 1101, 1350, 1349, 815, 814, 1346, 1344, 1101, 813, 1314, 1259, 812, 811, 1101, 1376, 1101, 1337, 1445, 806, 1445, 1445, 1101, 1347, 1101, 805, 1101, 1315, 796, 1101, 804, 782, 1101, 1447, 1377, 1447, 1447, 778, 794, 1101, 777, 797, 798, 798, 688, 798, 798, 799, 1351, 799, 799, 799, 799, 799, 800, 798, 798, 799, 799, 799, 799, 799, 801, 802, 799, 798, 799, 769, 799, 799, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 798, 798, 798, 798, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 800, 798, 798, 799, 245, 1101, 1103, 1101, 572, 245, 245, 278, 571, 1101, 762, 245, 279, 426, 245, 262, 1101, 265, 280, 267, 1101, 621, 1101, 283, 245, 755, 754, 264, 1101, 1101, 1101, 1101, 1101, 753, 1101, 1101, 1101, 1101, 1101, 1101, 752, 1101, 1101, 751, 1101, 1101, 749, 1101, 1392, 1101, 268, 1378, 245, 1363, 1101, 1342, 1379, 1342, 1342, 748, 1363, 1100, 1345, 1118, 1345, 1345, 1118, 746, 1349, 1380, 1350, 1349, 745, 1394, 567, 1394, 1394, 744, 245, 1239, 245, 245, 567, 743, 798, 567, 245, 245, 278, 542, 567, 542, 245, 279, 742, 245, 262, 542, 265, 280, 267, 741, 282, 567, 283, 245, 734, 1101, 264, 1101, 1343, 567, 733, 794, 567, 1101, 1351, 1346, 1401, 567, 732, 731, 1101, 730, 1101, 729, 1101, 1344, 1395, 728, 727, 268, 1101, 245, 1347, 726, 880, 1103, 1101, 1101, 1101, 1103, 1101, 725, 1101, 1396, 1101, 456, 724, 798, 1101, 723, 803, 1101, 722, 628, 456, 1101, 456, 245, 717, 245, 532, 456, 532, 532, 716, 281, 1101, 533, 1101, 533, 710, 534, 535, 703, 1101, 278, 1402, 1101, 591, 1101, 696, 1101, 533, 692, 691, 1101, 533, 684, 583, 683, 583, 583, 1101, 682, 1394, 676, 1394, 1394, 568, 1096, 1282, 564, 1282, 1282, 1118, 798, 1118, 667, 1416, 533, 1416, 1416, 1101, 666, 1101, 536, 665, 664, 663, 1096, 1101, 662, 1103, 1424, 661, 1425, 1424, 1101, 1367, 826, 1367, 1367, 537, 660, 1259, 659, 533, 658, 533, 532, 657, 532, 532, 584, 656, 655, 533, 654, 533, 1395, 534, 535, 543, 541, 644, 1283, 1417, 880, 643, 642, 585, 533, 641, 640, 639, 533, 1396, 1101, 638, 1101, 798, 1426, 1284, 764, 764, 1101, 764, 328, 1424, 328, 1425, 1424, 1101, 412, 764, 412, 637, 636, 533, 1239, 635, 634, 827, 633, 536, 328, 632, 511, 412, 328, 631, 412, 1118, 328, 508, 764, 764, 504, 764, 412, 626, 537, 625, 619, 593, 533, 764, 533, 711, 593, 874, 711, 711, 711, 711, 875, 1426, 458, 711, 711, 711, 874, 711, 591, 877, 711, 581, 711, 589, 711, 711, 328, 412, 328, 412, 452, 274, 577, 274, 576, 575, 317, 323, 317, 323, 445, 388, 412, 388, 328, 412, 573, 571, 328, 274, 436, 434, 328, 412, 317, 323, 568, 274, 274, 388, 558, 414, 317, 323, 557, 556, 553, 388, 552, 551, 550, 549, 548, 547, 546, 794, 545, 544, 711, 711, 543, 874, 711, 711, 711, 711, 875, 541, 525, 711, 711, 711, 874, 711, 524, 877, 711, 581, 711, 522, 711, 711, 521, 520, 519, 518, 517, 516, 515, 339, 514, 335, 512, 511, 509, 504, 502, 501, 499, 489, 452, 448, 447, 446, 441, 264, 436, 434, 425, 424, 416, 414, 414, 398, 396, 270, 379, 353, 351, 349, 347, 345, 878, 343, 341, 259, 339, 335, 314, 270, 307, 794, 305, 269, 711, 711, 264, 711, 711, 711, 711, 711, 794, 259, 1457, 711, 711, 711, 711, 711, 711, 711, 711, 1457, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 882, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 882, 798, 798, 1457, 798, 798, 799, 1457, 799, 799, 799, 799, 799, 800, 798, 798, 799, 799, 799, 799, 799, 801, 802, 799, 798, 799, 1457, 799, 799, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 798, 798, 798, 798, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 800, 798, 798, 799, 798, 798, 1457, 798, 798, 799, 1457, 799, 799, 799, 799, 799, 883, 798, 798, 799, 799, 799, 799, 799, 799, 799, 799, 884, 799, 1457, 799, 799, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 798, 798, 798, 798, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 800, 798, 798, 799, 245, 1457, 1457, 1457, 1457, 245, 245, 278, 1457, 1457, 1457, 245, 279, 1457, 245, 262, 1457, 265, 280, 267, 1457, 282, 1457, 283, 245, 1457, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 268, 1457, 245, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 886, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 245, 532, 1457, 532, 532, 1457, 1457, 1457, 533, 1457, 533, 1457, 534, 535, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 536, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 907, 1457, 537, 1457, 1457, 1457, 533, 1457, 533, 532, 1457, 532, 532, 1457, 1457, 1457, 533, 1457, 533, 1457, 534, 535, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 536, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 908, 1457, 537, 1457, 1457, 1457, 533, 1457, 533, 711, 1457, 711, 711, 711, 711, 711, 794, 1457, 1457, 711, 711, 711, 711, 711, 711, 711, 711, 1457, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 942, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 797, 451, 1457, 1457, 451, 872, 1457, 872, 872, 872, 1457, 872, 1457, 944, 451, 872, 1457, 872, 872, 872, 1457, 1457, 872, 451, 872, 451, 872, 872, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 873, 872, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 877, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 711, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 711, 711, 711, 874, 711, 455, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 877, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 946, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 711, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 711, 711, 1457, 711, 711, 498, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 882, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 882, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 948, 1457, 798, 948, 881, 1457, 881, 881, 881, 1457, 881, 798, 950, 948, 881, 1457, 881, 881, 881, 1457, 1457, 881, 948, 881, 451, 881, 881, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 882, 881, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 951, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 798, 1457, 798, 798, 799, 1457, 799, 799, 799, 799, 799, 800, 798, 798, 799, 799, 799, 799, 799, 801, 802, 799, 798, 799, 1457, 799, 799, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 798, 798, 798, 798, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 800, 798, 798, 799, 245, 1457, 1457, 1457, 1457, 245, 245, 278, 1457, 1457, 1457, 245, 279, 1457, 245, 262, 1457, 265, 280, 267, 1457, 282, 1457, 283, 245, 1457, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 268, 1457, 245, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 952, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 245, 966, 1457, 966, 966, 1457, 1457, 1457, 533, 1457, 533, 1457, 534, 535, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 536, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 537, 1457, 1457, 1457, 533, 1457, 533, 532, 1457, 532, 532, 1457, 1457, 1457, 533, 1457, 533, 1457, 534, 535, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 536, 1457, 1457, 1457, 1457, 1457, 967, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 537, 1457, 1457, 1457, 533, 1457, 533, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 996, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 996, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 997, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 451, 1457, 1457, 451, 872, 1457, 872, 872, 872, 1457, 872, 1457, 944, 451, 872, 1457, 872, 872, 872, 1457, 1457, 872, 451, 872, 451, 872, 872, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 873, 872, 711, 1457, 711, 711, 711, 711, 711, 794, 1457, 1457, 711, 711, 711, 711, 711, 1457, 999, 711, 1457, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 877, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1000, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 711, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 711, 711, 1457, 711, 711, 498, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 798, 948, 1457, 798, 948, 880, 1457, 880, 880, 880, 1457, 880, 798, 1002, 948, 880, 1457, 880, 880, 880, 1457, 1457, 880, 948, 880, 451, 880, 880, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 880, 798, 948, 1457, 798, 948, 881, 1457, 881, 881, 881, 1457, 881, 800, 950, 948, 881, 1457, 881, 881, 881, 1457, 1457, 881, 948, 881, 451, 881, 881, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 882, 881, 798, 1003, 1457, 1003, 1003, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1004, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1005, 1457, 1457, 1457, 798, 798, 798, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1006, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 245, 1007, 1457, 1007, 1007, 1008, 245, 278, 1457, 1009, 1010, 245, 1011, 1457, 1012, 1013, 1014, 1015, 280, 1016, 1457, 282, 1457, 1017, 1018, 1019, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 268, 1457, 1021, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1022, 1457, 1023, 532, 1457, 532, 532, 1457, 1457, 1457, 533, 1457, 533, 1457, 534, 535, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 536, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1035, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 537, 1457, 1457, 1457, 533, 1457, 533, 1051, 1457, 1051, 1051, 1052, 1457, 426, 1457, 1053, 1054, 1457, 1055, 1457, 1056, 1057, 1058, 1059, 426, 1060, 1457, 428, 1457, 1061, 1062, 1063, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1064, 1457, 1457, 1065, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1066, 1457, 1058, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 996, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 996, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1080, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 711, 711, 711, 711, 711, 794, 1457, 1457, 711, 711, 711, 711, 711, 1457, 999, 711, 1457, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 711, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 711, 711, 711, 711, 711, 455, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 877, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1081, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 798, 948, 1457, 798, 948, 880, 1457, 880, 880, 880, 1457, 880, 800, 1002, 948, 880, 1457, 880, 880, 880, 1457, 1457, 880, 948, 880, 451, 880, 880, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 880, 798, 1003, 1457, 1003, 1003, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1004, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1005, 1457, 1457, 1457, 798, 798, 798, 798, 1003, 1457, 1003, 1003, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1004, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1005, 1457, 1457, 1457, 798, 798, 798, 1007, 1457, 1007, 1007, 1084, 1457, 1457, 1457, 1009, 1010, 1457, 1085, 1457, 1086, 1087, 1014, 1088, 1457, 1089, 1457, 1457, 1457, 1090, 1091, 1019, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1093, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1094, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1014, 245, 1457, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1096, 1457, 245, 1098, 1457, 1457, 263, 245, 1457, 1457, 1457, 1457, 1023, 1457, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1096, 1457, 245, 262, 1457, 1099, 266, 267, 1457, 1457, 1457, 1457, 1023, 1100, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 268, 1457, 245, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 245, 457, 1457, 1457, 457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1096, 1457, 457, 1457, 457, 1457, 1457, 1457, 1101, 457, 1457, 1102, 1014, 458, 1457, 1457, 1103, 1104, 1105, 1106, 1107, 1101, 1101, 1108, 1109, 1101, 1110, 1111, 1101, 1101, 1112, 1113, 1101, 1114, 1115, 1116, 1117, 1457, 1457, 1457, 1457, 1101, 1118, 1119, 1120, 1121, 1122, 1101, 1101, 1123, 1124, 1125, 1126, 1101, 1101, 1127, 1128, 1101, 1129, 1130, 1131, 1132, 1101, 1101, 1101, 532, 1457, 532, 532, 1457, 1457, 1457, 533, 1457, 533, 1457, 534, 535, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 533, 1457, 1457, 1457, 1457, 1457, 536, 1457, 907, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 537, 1457, 1457, 1457, 533, 1457, 533, 1155, 1457, 1051, 1155, 1156, 1457, 1457, 1457, 1157, 1158, 1457, 1159, 1457, 1160, 1161, 1058, 1162, 1457, 1163, 1457, 1457, 1457, 1164, 1165, 1166, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1167, 1457, 1457, 1168, 1457, 1457, 1457, 1457, 1169, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1170, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1171, 1457, 1172, 1183, 1457, 1183, 1183, 1084, 1457, 578, 1457, 1009, 1010, 1457, 1011, 1457, 1086, 1087, 1014, 1088, 578, 1089, 1457, 580, 1457, 1184, 1091, 1019, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1014, 1183, 1457, 1183, 1183, 1084, 1457, 578, 1457, 1009, 1010, 1457, 1011, 1457, 1086, 1188, 1014, 1189, 586, 1089, 1457, 580, 1457, 1184, 1091, 1019, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1014, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 996, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1190, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 877, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1191, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1192, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1193, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 800, 798, 798, 245, 1457, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1096, 1457, 245, 1457, 1457, 1457, 263, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1096, 1457, 245, 262, 1457, 1457, 266, 267, 1457, 1457, 1457, 1457, 245, 1457, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 268, 1457, 245, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 245, 1457, 245, 1051, 1457, 1051, 1051, 1052, 1457, 668, 1457, 1053, 1054, 1457, 1055, 1457, 1056, 1057, 1058, 1059, 668, 1060, 1457, 670, 1457, 1237, 1062, 1063, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1064, 1457, 1457, 1065, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1066, 1457, 1058, 1241, 1457, 1051, 1241, 1242, 1457, 1457, 1457, 1243, 1244, 1457, 1245, 1457, 1246, 1247, 1058, 1248, 1457, 1249, 1457, 1457, 1457, 1250, 1251, 1252, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1253, 1457, 1457, 1254, 1457, 1457, 1457, 1457, 1255, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1256, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1257, 1457, 1258, 1183, 1457, 1183, 1183, 1084, 1457, 1457, 1457, 1009, 1010, 1457, 1085, 1457, 1086, 1087, 1014, 1088, 1457, 1089, 1457, 1457, 1457, 1271, 1091, 1019, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1093, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1094, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1014, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 996, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1276, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 711, 1457, 874, 711, 711, 711, 711, 875, 1457, 1457, 711, 711, 711, 874, 711, 1457, 877, 711, 581, 711, 1457, 711, 711, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1277, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 794, 1457, 1457, 711, 1241, 1457, 1051, 1241, 1242, 1457, 1457, 1457, 1243, 1244, 1457, 1245, 1457, 1246, 1247, 1058, 1248, 1457, 1249, 1457, 1457, 1457, 1250, 1251, 1252, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1253, 1457, 1457, 1254, 1457, 1457, 1457, 1457, 1255, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1256, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1257, 1457, 1258, 1183, 1457, 1183, 1183, 1084, 1457, 578, 1457, 1009, 1010, 1457, 1011, 1457, 1086, 1087, 1014, 1088, 578, 1089, 1457, 773, 1457, 1184, 1091, 1019, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1014, 1183, 1457, 1183, 1183, 1084, 1457, 578, 1457, 1009, 1010, 1457, 1011, 1457, 1086, 1188, 1014, 1189, 586, 1089, 1457, 773, 1457, 1184, 1091, 1019, 1457, 264, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1014, 1051, 1457, 1051, 1051, 1052, 1457, 668, 1457, 1053, 1054, 1457, 1055, 1457, 1056, 1057, 1058, 1059, 668, 1060, 1457, 845, 1457, 1237, 1062, 1063, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1064, 1457, 1457, 1065, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1066, 1457, 1058, 1183, 1457, 1183, 1183, 1358, 1457, 1457, 1457, 1359, 1360, 1457, 1361, 1457, 1086, 1362, 1363, 1364, 1457, 1365, 1457, 1457, 1457, 1184, 1366, 1019, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 876, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1363, 1367, 1368, 990, 1368, 1368, 1369, 990, 1369, 1369, 1369, 1369, 1369, 1370, 1367, 1367, 1369, 1369, 1369, 1369, 1369, 1457, 1369, 1369, 1367, 1369, 990, 1369, 1369, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1367, 1367, 1367, 1367, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 880, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1370, 1367, 1367, 1369, 451, 1457, 1457, 451, 872, 1457, 872, 872, 872, 1457, 872, 1457, 1393, 451, 872, 1457, 872, 872, 872, 1457, 1457, 872, 451, 872, 451, 872, 872, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 873, 872, 798, 798, 1457, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 882, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 798, 798, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 798, 798, 882, 1183, 1457, 1183, 1183, 1358, 1457, 1457, 1457, 1359, 1360, 1457, 1361, 1457, 1086, 1362, 1363, 1364, 1457, 1365, 1457, 1457, 1457, 1184, 1366, 1019, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1020, 1457, 1457, 1092, 1457, 995, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1095, 1457, 1363, 1196, 1457, 1457, 1196, 872, 1457, 872, 872, 872, 1457, 872, 1457, 1413, 1196, 872, 1457, 872, 872, 872, 1457, 1457, 872, 1196, 872, 1196, 872, 872, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 873, 872, 1196, 1457, 1457, 1196, 872, 1457, 872, 872, 872, 1457, 872, 1457, 1413, 1196, 872, 1457, 872, 872, 872, 1457, 1457, 872, 1196, 872, 1196, 872, 872, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 873, 872, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 254, 254, 1457, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 262, 1457, 1457, 1457, 262, 262, 1457, 1457, 1457, 1457, 262, 1457, 1457, 262, 262, 1457, 262, 262, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 265, 1457, 1457, 1457, 265, 265, 1457, 1457, 1457, 1457, 265, 1457, 1457, 265, 265, 1457, 265, 265, 265, 265, 1457, 1457, 1457, 265, 1457, 1457, 265, 265, 1457, 265, 1457, 265, 1457, 1457, 265, 263, 1457, 263, 263, 1457, 263, 1457, 1457, 1457, 1457, 1457, 1457, 263, 263, 274, 274, 274, 274, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 274, 1457, 1457, 274, 1457, 274, 1457, 274, 274, 1457, 274, 1457, 1457, 1457, 1457, 274, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 292, 1457, 1457, 1457, 292, 292, 1457, 1457, 1457, 1457, 292, 1457, 1457, 292, 292, 1457, 292, 1457, 292, 292, 1457, 1457, 1457, 292, 1457, 1457, 1457, 292, 1457, 1457, 1457, 292, 1457, 1457, 292, 306, 306, 1457, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 1457, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 309, 1457, 1457, 1457, 309, 309, 1457, 1457, 1457, 1457, 309, 1457, 1457, 309, 309, 1457, 309, 1457, 309, 309, 1457, 1457, 1457, 309, 1457, 1457, 1457, 309, 1457, 1457, 1457, 309, 1457, 1457, 309, 311, 311, 1457, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 317, 317, 317, 317, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 317, 1457, 1457, 317, 1457, 317, 1457, 317, 317, 1457, 317, 1457, 1457, 1457, 1457, 317, 319, 1457, 1457, 1457, 319, 1457, 1457, 1457, 1457, 1457, 319, 1457, 1457, 319, 319, 1457, 319, 1457, 319, 319, 1457, 1457, 1457, 319, 1457, 1457, 1457, 319, 1457, 1457, 1457, 319, 1457, 1457, 319, 323, 323, 323, 323, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 323, 1457, 1457, 323, 1457, 323, 1457, 323, 323, 1457, 323, 1457, 1457, 1457, 1457, 323, 330, 1457, 1457, 1457, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 331, 331, 1457, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 1457, 331, 331, 331, 1457, 331, 331, 1457, 331, 331, 331, 331, 331, 340, 340, 1457, 340, 340, 340, 340, 1457, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 1457, 340, 340, 1457, 340, 340, 340, 340, 340, 342, 342, 1457, 342, 342, 342, 342, 1457, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 1457, 342, 342, 1457, 342, 342, 342, 342, 342, 344, 344, 1457, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 1457, 344, 344, 1457, 344, 344, 344, 344, 344, 346, 346, 1457, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 1457, 346, 346, 1457, 346, 346, 346, 346, 346, 348, 348, 1457, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 1457, 348, 348, 1457, 348, 348, 348, 348, 348, 350, 350, 1457, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 1457, 350, 350, 1457, 350, 350, 350, 350, 350, 352, 352, 1457, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 1457, 352, 352, 1457, 352, 352, 352, 352, 352, 354, 1457, 1457, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 1457, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 358, 358, 1457, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 364, 364, 1457, 364, 364, 1457, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 365, 1457, 365, 365, 365, 365, 365, 1457, 1457, 1457, 1457, 1457, 1457, 365, 1457, 365, 368, 1457, 368, 1457, 368, 368, 368, 1457, 1457, 1457, 1457, 1457, 1457, 368, 1457, 368, 370, 370, 1457, 1457, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 382, 1457, 1457, 1457, 1457, 382, 1457, 1457, 1457, 1457, 382, 382, 382, 382, 382, 1457, 1457, 1457, 1457, 1457, 1457, 382, 384, 1457, 1457, 1457, 384, 1457, 1457, 1457, 1457, 1457, 384, 1457, 1457, 384, 384, 1457, 384, 1457, 384, 384, 1457, 1457, 1457, 384, 1457, 1457, 1457, 384, 1457, 1457, 1457, 384, 1457, 1457, 384, 388, 388, 388, 388, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 388, 1457, 1457, 388, 1457, 388, 1457, 388, 388, 1457, 388, 1457, 1457, 1457, 1457, 388, 392, 1457, 1457, 1457, 1457, 392, 392, 1457, 392, 1457, 392, 392, 392, 392, 392, 1457, 1457, 1457, 1457, 1457, 1457, 392, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 397, 397, 1457, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 1457, 397, 397, 1457, 397, 397, 397, 397, 397, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 1457, 415, 415, 1457, 415, 415, 415, 415, 415, 415, 1457, 1457, 415, 1457, 415, 415, 415, 415, 415, 254, 254, 1457, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 255, 255, 1457, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 262, 1457, 1457, 1457, 262, 262, 1457, 1457, 1457, 1457, 262, 1457, 1457, 262, 262, 1457, 262, 262, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 263, 1457, 263, 263, 1457, 263, 1457, 1457, 1457, 1457, 1457, 1457, 263, 263, 265, 1457, 1457, 1457, 265, 265, 1457, 1457, 1457, 1457, 265, 1457, 1457, 265, 265, 1457, 265, 265, 265, 265, 1457, 1457, 1457, 265, 1457, 1457, 265, 265, 1457, 265, 1457, 265, 1457, 1457, 265, 438, 1457, 438, 438, 1457, 438, 1457, 1457, 1457, 1457, 1457, 1457, 438, 438, 439, 1457, 1457, 1457, 439, 439, 1457, 1457, 1457, 1457, 439, 1457, 1457, 439, 439, 1457, 439, 1457, 439, 439, 1457, 1457, 1457, 439, 1457, 1457, 1457, 439, 1457, 1457, 1457, 439, 1457, 1457, 439, 444, 444, 444, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 444, 444, 1457, 1457, 1457, 1457, 444, 1457, 1457, 444, 451, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 451, 1457, 1457, 451, 451, 1457, 451, 1457, 1457, 1457, 451, 451, 1457, 451, 1457, 451, 1457, 1457, 451, 453, 1457, 453, 453, 1457, 453, 1457, 1457, 1457, 1457, 1457, 1457, 453, 453, 1457, 1457, 1457, 1457, 1457, 1457, 453, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 497, 1457, 1457, 1457, 497, 497, 1457, 1457, 1457, 1457, 497, 497, 1457, 497, 497, 1457, 497, 1457, 497, 497, 1457, 1457, 497, 497, 1457, 1457, 1457, 497, 1457, 1457, 1457, 497, 1457, 1457, 497, 245, 245, 1457, 245, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 245, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 306, 306, 1457, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 1457, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 309, 1457, 1457, 1457, 309, 309, 1457, 1457, 1457, 1457, 309, 1457, 1457, 309, 309, 1457, 309, 1457, 309, 309, 1457, 1457, 1457, 309, 1457, 1457, 1457, 309, 1457, 1457, 1457, 309, 1457, 1457, 309, 311, 311, 1457, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 312, 312, 1457, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 507, 507, 507, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 507, 507, 1457, 1457, 1457, 1457, 507, 1457, 1457, 507, 319, 1457, 1457, 1457, 319, 1457, 1457, 1457, 1457, 1457, 319, 1457, 1457, 319, 319, 1457, 319, 1457, 319, 319, 1457, 1457, 1457, 319, 1457, 1457, 1457, 319, 1457, 1457, 1457, 319, 1457, 1457, 319, 330, 1457, 1457, 1457, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 331, 331, 1457, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 1457, 331, 331, 331, 1457, 331, 331, 1457, 331, 331, 331, 331, 331, 340, 340, 1457, 340, 340, 340, 340, 1457, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 1457, 340, 340, 1457, 340, 340, 340, 340, 340, 342, 342, 1457, 342, 342, 342, 342, 1457, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 1457, 342, 342, 1457, 342, 342, 342, 342, 342, 344, 344, 1457, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 1457, 344, 344, 1457, 344, 344, 344, 344, 344, 346, 346, 1457, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 1457, 346, 346, 1457, 346, 346, 346, 346, 346, 348, 348, 1457, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 1457, 348, 348, 1457, 348, 348, 348, 348, 348, 350, 350, 1457, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 1457, 350, 350, 1457, 350, 350, 350, 350, 350, 352, 352, 1457, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 1457, 352, 352, 1457, 352, 352, 352, 352, 352, 354, 1457, 1457, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 1457, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 358, 358, 1457, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 359, 359, 1457, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 364, 364, 1457, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 365, 1457, 365, 365, 365, 365, 365, 1457, 1457, 1457, 1457, 1457, 1457, 365, 1457, 365, 526, 1457, 526, 1457, 526, 526, 526, 1457, 1457, 1457, 1457, 1457, 1457, 526, 1457, 526, 368, 1457, 368, 368, 368, 368, 368, 1457, 1457, 1457, 1457, 1457, 1457, 368, 1457, 368, 370, 370, 1457, 1457, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 382, 1457, 1457, 1457, 1457, 382, 1457, 1457, 1457, 1457, 382, 382, 382, 382, 382, 1457, 1457, 1457, 1457, 1457, 1457, 382, 540, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 540, 1457, 1457, 540, 540, 1457, 540, 1457, 1457, 1457, 540, 540, 1457, 540, 1457, 540, 1457, 1457, 540, 384, 1457, 1457, 1457, 384, 1457, 1457, 1457, 1457, 1457, 384, 1457, 1457, 384, 384, 1457, 384, 1457, 384, 384, 1457, 1457, 1457, 384, 1457, 1457, 1457, 384, 1457, 1457, 1457, 384, 1457, 1457, 384, 392, 1457, 1457, 1457, 1457, 392, 392, 1457, 392, 1457, 392, 392, 392, 392, 392, 1457, 1457, 1457, 1457, 1457, 1457, 392, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 397, 397, 1457, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 1457, 397, 397, 1457, 397, 397, 397, 397, 397, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 1457, 415, 415, 1457, 415, 415, 415, 415, 415, 415, 1457, 1457, 415, 1457, 415, 415, 415, 415, 415, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 563, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 563, 1457, 1457, 1457, 563, 1457, 563, 1457, 1457, 1457, 563, 563, 1457, 1457, 1457, 563, 1457, 1457, 563, 570, 570, 1457, 570, 570, 570, 570, 1457, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 438, 1457, 438, 438, 1457, 438, 1457, 1457, 1457, 1457, 1457, 1457, 438, 438, 439, 1457, 1457, 1457, 439, 439, 1457, 1457, 1457, 1457, 439, 1457, 1457, 439, 439, 1457, 439, 439, 439, 439, 1457, 1457, 1457, 439, 1457, 1457, 1457, 439, 1457, 439, 1457, 439, 1457, 1457, 439, 440, 440, 440, 440, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 440, 1457, 440, 574, 574, 574, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 574, 1457, 1457, 1457, 1457, 1457, 574, 1457, 1457, 574, 444, 444, 444, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 444, 444, 1457, 1457, 1457, 1457, 444, 1457, 1457, 444, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 451, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 451, 1457, 1457, 451, 451, 1457, 451, 1457, 1457, 1457, 451, 451, 1457, 451, 1457, 451, 1457, 1457, 451, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1457, 1457, 457, 1457, 457, 1457, 1457, 1457, 457, 457, 1457, 1457, 1457, 457, 1457, 1457, 457, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 497, 1457, 1457, 1457, 497, 497, 1457, 1457, 1457, 1457, 497, 497, 1457, 497, 497, 1457, 497, 1457, 497, 497, 1457, 1457, 497, 497, 1457, 1457, 1457, 497, 1457, 1457, 1457, 497, 1457, 1457, 497, 627, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 627, 1457, 1457, 1457, 627, 1457, 627, 1457, 1457, 1457, 627, 627, 1457, 1457, 1457, 627, 1457, 1457, 627, 630, 630, 630, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 630, 1457, 1457, 1457, 1457, 1457, 630, 1457, 1457, 630, 507, 507, 507, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 507, 507, 1457, 1457, 1457, 1457, 507, 1457, 1457, 507, 354, 1457, 1457, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 1457, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 526, 1457, 526, 526, 526, 526, 526, 1457, 1457, 1457, 1457, 1457, 1457, 526, 1457, 526, 368, 1457, 368, 1457, 368, 368, 368, 1457, 1457, 1457, 1457, 1457, 1457, 368, 1457, 368, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 540, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 540, 1457, 1457, 540, 540, 1457, 540, 1457, 1457, 1457, 540, 540, 1457, 540, 1457, 540, 1457, 1457, 540, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 397, 397, 1457, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 1457, 397, 397, 1457, 397, 397, 397, 397, 397, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 563, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 563, 1457, 1457, 1457, 563, 1457, 563, 1457, 1457, 1457, 563, 563, 1457, 1457, 1457, 563, 1457, 1457, 563, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 570, 570, 1457, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 680, 680, 680, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 680, 680, 1457, 1457, 1457, 680, 680, 1457, 1457, 680, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 687, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 687, 1457, 1457, 1457, 687, 1457, 687, 1457, 1457, 1457, 687, 687, 1457, 1457, 1457, 687, 1457, 1457, 687, 693, 1457, 693, 693, 1457, 693, 1457, 1457, 1457, 1457, 1457, 1457, 693, 693, 1457, 1457, 1457, 1457, 1457, 1457, 693, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1457, 1457, 457, 1457, 457, 1457, 1457, 1457, 457, 457, 1457, 1457, 1457, 457, 1457, 1457, 457, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 713, 1457, 713, 713, 713, 713, 713, 713, 1457, 1457, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 1457, 713, 713, 713, 1457, 1457, 1457, 1457, 1457, 1457, 713, 627, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 627, 1457, 1457, 1457, 627, 1457, 627, 1457, 1457, 1457, 627, 627, 1457, 1457, 1457, 627, 1457, 1457, 627, 720, 720, 720, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 720, 720, 1457, 1457, 1457, 720, 720, 1457, 1457, 720, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 397, 397, 1457, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 1457, 397, 397, 1457, 397, 397, 397, 397, 397, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 1457, 747, 747, 747, 747, 747, 747, 747, 1457, 747, 747, 747, 747, 747, 747, 747, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 1457, 750, 750, 750, 750, 750, 750, 750, 1457, 750, 750, 750, 750, 750, 750, 750, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 758, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 758, 1457, 1457, 1457, 758, 1457, 758, 1457, 1457, 1457, 758, 758, 1457, 1457, 1457, 758, 1457, 1457, 758, 563, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 563, 1457, 1457, 1457, 563, 1457, 563, 1457, 1457, 1457, 563, 563, 1457, 1457, 1457, 563, 1457, 1457, 563, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 574, 574, 574, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 574, 1457, 1457, 1457, 1457, 574, 574, 1457, 1457, 574, 680, 680, 680, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 680, 680, 1457, 1457, 1457, 680, 680, 1457, 1457, 680, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 1457, 765, 1457, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 772, 1457, 1457, 1457, 1457, 772, 1457, 1457, 1457, 1457, 1457, 772, 1457, 772, 772, 1457, 772, 1457, 1457, 1457, 1457, 772, 687, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 687, 1457, 1457, 1457, 687, 1457, 687, 1457, 1457, 1457, 687, 687, 1457, 1457, 1457, 687, 1457, 1457, 687, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 779, 1457, 1457, 1457, 1457, 779, 1457, 1457, 779, 1457, 779, 779, 1457, 779, 779, 1457, 779, 1457, 1457, 1457, 779, 779, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1457, 1457, 457, 1457, 457, 1457, 1457, 1457, 457, 457, 1457, 1457, 1457, 457, 1457, 1457, 457, 711, 1457, 711, 711, 711, 711, 711, 711, 1457, 1457, 711, 711, 711, 711, 711, 711, 711, 711, 1457, 711, 1457, 711, 711, 711, 1457, 1457, 1457, 1457, 711, 1457, 711, 795, 1457, 795, 795, 795, 795, 795, 795, 1457, 1457, 795, 795, 795, 795, 795, 795, 795, 795, 1457, 795, 1457, 795, 795, 795, 1457, 1457, 1457, 1457, 795, 1457, 795, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 627, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 627, 1457, 1457, 1457, 627, 1457, 627, 1457, 1457, 1457, 627, 627, 1457, 1457, 1457, 627, 1457, 1457, 627, 630, 630, 630, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 630, 1457, 1457, 1457, 1457, 630, 630, 1457, 1457, 630, 720, 720, 720, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 720, 720, 1457, 1457, 1457, 720, 720, 1457, 1457, 720, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 1457, 807, 1457, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 1457, 835, 835, 835, 835, 835, 835, 835, 1457, 835, 835, 835, 835, 835, 835, 835, 844, 1457, 1457, 1457, 1457, 844, 1457, 1457, 1457, 1457, 1457, 844, 1457, 844, 844, 1457, 844, 1457, 1457, 1457, 1457, 844, 758, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 758, 1457, 1457, 1457, 758, 1457, 758, 1457, 1457, 1457, 758, 758, 1457, 1457, 1457, 758, 1457, 1457, 758, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 765, 765, 765, 765, 765, 1457, 765, 765, 765, 765, 1457, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 1457, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 772, 1457, 1457, 1457, 1457, 772, 1457, 1457, 1457, 1457, 1457, 772, 1457, 772, 772, 1457, 772, 1457, 1457, 1457, 1457, 772, 687, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 687, 1457, 1457, 1457, 687, 1457, 687, 1457, 1457, 1457, 687, 687, 1457, 1457, 1457, 687, 1457, 1457, 687, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 779, 1457, 1457, 1457, 1457, 779, 1457, 1457, 779, 1457, 779, 779, 1457, 779, 779, 1457, 779, 1457, 1457, 1457, 779, 779, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1457, 1457, 457, 1457, 457, 1457, 1457, 1457, 457, 457, 1457, 1457, 1457, 457, 1457, 1457, 457, 872, 1457, 872, 872, 872, 872, 872, 1457, 872, 1457, 872, 872, 872, 872, 872, 872, 872, 872, 1457, 872, 1457, 872, 872, 872, 1457, 1457, 1457, 1457, 1457, 872, 872, 876, 1457, 876, 876, 876, 876, 876, 876, 1457, 1457, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 1457, 876, 876, 876, 1457, 1457, 1457, 1457, 876, 1457, 876, 879, 1457, 879, 879, 879, 879, 879, 879, 1457, 1457, 879, 879, 879, 879, 879, 879, 879, 879, 1457, 879, 1457, 879, 879, 879, 1457, 1457, 1457, 1457, 879, 1457, 879, 880, 880, 1457, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 799, 799, 1457, 799, 799, 1457, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 1457, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 881, 881, 1457, 881, 881, 1457, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 1457, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 807, 807, 807, 807, 807, 1457, 807, 807, 807, 807, 1457, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 1457, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 844, 1457, 1457, 1457, 1457, 844, 1457, 1457, 1457, 1457, 1457, 844, 1457, 844, 844, 1457, 844, 1457, 1457, 1457, 1457, 844, 758, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 758, 1457, 1457, 1457, 758, 1457, 758, 1457, 1457, 1457, 758, 758, 1457, 1457, 1457, 758, 1457, 1457, 758, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 765, 765, 765, 765, 765, 1457, 765, 765, 765, 765, 1457, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 1457, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 772, 1457, 1457, 1457, 1457, 772, 1457, 1457, 1457, 1457, 1457, 772, 1457, 772, 772, 1457, 772, 1457, 1457, 1457, 1457, 772, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 779, 1457, 1457, 1457, 1457, 779, 1457, 1457, 779, 1457, 779, 779, 1457, 779, 779, 1457, 779, 1457, 1457, 1457, 779, 779, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1457, 1457, 457, 1457, 457, 1457, 1457, 1457, 457, 457, 1457, 1457, 1457, 457, 1457, 1457, 457, 872, 1457, 872, 872, 872, 872, 872, 1457, 872, 1457, 872, 872, 872, 872, 872, 872, 872, 872, 1457, 872, 1457, 872, 872, 872, 1457, 1457, 1457, 1457, 1457, 872, 872, 941, 1457, 941, 941, 941, 941, 941, 941, 1457, 1457, 941, 941, 941, 941, 941, 941, 941, 941, 1457, 941, 1457, 941, 941, 941, 1457, 1457, 1457, 1457, 941, 1457, 941, 943, 1457, 1457, 943, 1457, 943, 943, 943, 943, 943, 1457, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 1457, 1457, 1457, 1457, 1457, 943, 943, 876, 1457, 876, 876, 876, 876, 876, 876, 1457, 1457, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 1457, 876, 876, 876, 1457, 1457, 1457, 1457, 876, 1457, 876, 945, 1457, 945, 945, 945, 945, 945, 945, 1457, 1457, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 1457, 945, 945, 945, 1457, 1457, 1457, 1457, 945, 1457, 945, 947, 1457, 947, 947, 947, 947, 947, 947, 1457, 1457, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 1457, 947, 947, 947, 1457, 1457, 1457, 1457, 947, 1457, 947, 880, 880, 1457, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 881, 881, 1457, 881, 881, 1457, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 1457, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 949, 949, 1457, 949, 949, 1457, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 281, 1457, 1457, 1457, 281, 281, 281, 1457, 1457, 1457, 281, 281, 1457, 281, 281, 1457, 281, 281, 281, 281, 281, 1457, 281, 281, 1457, 1457, 281, 281, 1457, 281, 1457, 281, 1457, 1457, 281, 807, 807, 807, 807, 807, 1457, 807, 807, 807, 807, 1457, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 1457, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 245, 1457, 1457, 1457, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 844, 1457, 1457, 1457, 1457, 844, 1457, 1457, 1457, 1457, 1457, 844, 1457, 844, 844, 1457, 844, 1457, 1457, 1457, 1457, 844, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 427, 1457, 1457, 1457, 1457, 427, 1457, 1457, 1457, 1457, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 1457, 1457, 1457, 427, 772, 1457, 1457, 1457, 1457, 772, 1457, 1457, 1457, 1457, 1457, 772, 1457, 772, 772, 1457, 772, 1457, 1457, 1457, 1457, 772, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 1457, 990, 990, 990, 990, 990, 990, 990, 1457, 990, 990, 990, 990, 990, 990, 990, 779, 1457, 1457, 1457, 1457, 779, 1457, 1457, 779, 1457, 779, 779, 1457, 779, 779, 1457, 779, 1457, 1457, 1457, 779, 779, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 457, 1457, 1457, 1457, 457, 1457, 457, 1457, 1457, 1457, 457, 457, 1457, 1457, 1457, 457, 1457, 1457, 457, 995, 1457, 995, 995, 995, 995, 995, 995, 1457, 1457, 995, 995, 995, 995, 995, 995, 995, 995, 995, 995, 1457, 995, 995, 995, 1457, 1457, 1457, 1457, 995, 1457, 995, 943, 1457, 1457, 943, 1457, 943, 943, 943, 943, 943, 1457, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 1457, 1457, 1457, 1457, 1457, 943, 943, 998, 1457, 998, 998, 998, 998, 998, 998, 1457, 1457, 998, 998, 998, 998, 998, 998, 998, 998, 1457, 998, 1457, 998, 998, 998, 1457, 1457, 1457, 1457, 998, 1457, 998, 876, 1457, 876, 876, 876, 876, 876, 876, 1457, 1457, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 1457, 876, 876, 876, 1457, 1457, 1457, 1457, 876, 1457, 876, 947, 1457, 947, 947, 947, 947, 947, 947, 1457, 1457, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 1457, 947, 947, 947, 1457, 1457, 1457, 1457, 947, 1457, 947, 1001, 1001, 1457, 1001, 1001, 1457, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 949, 949, 1457, 949, 949, 1457, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 880, 880, 1457, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 281, 281, 1457, 281, 281, 281, 281, 1457, 281, 281, 281, 281, 1457, 281, 281, 281, 281, 281, 281, 281, 281, 1457, 281, 281, 281, 1457, 281, 281, 281, 281, 1457, 281, 1457, 1457, 281, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 371, 371, 1457, 371, 371, 371, 371, 1457, 371, 1457, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 1457, 371, 371, 371, 1457, 371, 371, 1457, 371, 371, 1457, 1457, 371, 245, 245, 1457, 245, 245, 245, 1457, 1457, 1457, 1457, 245, 1457, 1457, 245, 245, 1457, 245, 1457, 245, 245, 1457, 1457, 245, 245, 1457, 1457, 1457, 245, 1457, 1457, 1457, 245, 1457, 1457, 245, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1457, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1457, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 844, 1457, 1457, 1457, 1457, 844, 1457, 1457, 1457, 1457, 1457, 844, 1457, 844, 844, 1457, 844, 1457, 1457, 1457, 1457, 844, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 427, 1457, 427, 427, 1457, 427, 1457, 427, 427, 1457, 427, 1457, 427, 427, 427, 427, 427, 427, 427, 427, 1457, 427, 427, 427, 1457, 1457, 427, 427, 1457, 1457, 427, 1457, 1457, 427, 772, 1457, 1457, 1457, 1457, 772, 1457, 1457, 1457, 1457, 1457, 772, 1457, 772, 772, 1457, 772, 1457, 1457, 1457, 1457, 772, 579, 1457, 1457, 1457, 1457, 579, 1457, 1457, 1457, 1457, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 1457, 1457, 1457, 579, 779, 1457, 1457, 1457, 1457, 779, 1457, 1457, 779, 1457, 779, 779, 1457, 779, 779, 1457, 779, 1457, 1457, 1457, 779, 779, 587, 1457, 1457, 1457, 1457, 587, 1457, 1457, 587, 1457, 587, 587, 1457, 587, 587, 1457, 587, 1457, 1457, 1457, 587, 587, 995, 1457, 995, 995, 995, 995, 995, 995, 1457, 1457, 995, 995, 995, 995, 995, 995, 995, 995, 995, 995, 1457, 995, 995, 995, 1457, 1457, 1457, 1457, 995, 1457, 995, 711, 1457, 711, 711, 711, 711, 711, 711, 1457, 1457, 711, 711, 711, 711, 711, 711, 711, 711, 1457, 711, 1457, 711, 711, 711, 1457, 1457, 1457, 1457, 711, 1457, 711, 998, 1457, 998, 998, 998, 998, 998, 998, 1457, 1457, 998, 998, 998, 998, 998, 998, 998, 998, 1457, 998, 1457, 998, 998, 998, 1457, 1457, 1457, 1457, 998, 1457, 998, 945, 1457, 945, 945, 945, 945, 945, 945, 1457, 1457, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 1457, 945, 945, 945, 1457, 1457, 1457, 1457, 945, 1457, 945, 876, 1457, 876, 876, 876, 876, 876, 876, 1457, 1457, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 1457, 876, 876, 876, 1457, 1457, 1457, 1457, 876, 1457, 876, 1001, 1001, 1457, 1001, 1001, 1457, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 880, 880, 1457, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 451, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 451, 1457, 1457, 451, 451, 1457, 451, 1457, 1457, 1457, 451, 451, 1457, 451, 1457, 451, 1457, 1457, 451, 262, 1457, 1457, 1457, 262, 262, 1457, 1457, 1457, 1457, 262, 262, 1457, 262, 262, 1457, 262, 262, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 265, 1457, 1457, 1457, 265, 265, 1457, 1457, 1457, 1457, 265, 265, 1457, 265, 265, 1457, 265, 265, 265, 265, 1457, 1457, 1457, 265, 265, 1457, 265, 265, 1457, 265, 1457, 265, 1457, 1457, 265, 439, 1457, 1457, 1457, 439, 439, 1457, 1457, 1457, 1457, 439, 439, 1457, 439, 439, 1457, 439, 1457, 439, 439, 1457, 1457, 1457, 439, 1457, 1457, 1457, 439, 1457, 1457, 1457, 439, 1457, 1457, 439, 533, 533, 1457, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 531, 531, 1457, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1457, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1457, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1457, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1457, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 844, 1457, 1457, 1457, 1457, 844, 1457, 1457, 1457, 1457, 1457, 844, 1457, 844, 844, 1457, 844, 1457, 1457, 1457, 1457, 844, 669, 1457, 1457, 1457, 1457, 669, 1457, 1457, 1457, 1457, 1457, 669, 1457, 669, 669, 1457, 669, 1457, 1457, 1457, 1457, 669, 1154, 1154, 1457, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1457, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 563, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 563, 1457, 563, 1457, 563, 1457, 563, 1457, 1457, 1457, 563, 563, 1457, 563, 563, 563, 1457, 1457, 563, 772, 1457, 1457, 1457, 1457, 772, 1457, 1457, 1457, 1457, 1457, 772, 1457, 772, 772, 1457, 772, 1457, 1457, 1457, 1457, 772, 579, 1457, 579, 579, 1457, 579, 1457, 579, 579, 1457, 579, 1457, 579, 579, 579, 579, 579, 579, 579, 579, 1457, 579, 579, 579, 1457, 1457, 579, 579, 1457, 1457, 579, 1457, 1457, 579, 779, 1457, 1457, 1457, 1457, 779, 1457, 1457, 779, 1457, 779, 779, 1457, 779, 779, 1457, 779, 1457, 1457, 1457, 779, 779, 587, 1457, 587, 587, 1457, 587, 1457, 587, 587, 1457, 587, 1457, 587, 587, 587, 587, 587, 587, 587, 587, 1457, 587, 587, 587, 1457, 587, 587, 587, 1457, 1457, 587, 1457, 1457, 587, 995, 1457, 995, 995, 995, 995, 995, 995, 1457, 1457, 995, 995, 995, 995, 995, 995, 995, 995, 995, 995, 1457, 995, 995, 995, 1457, 1457, 1457, 1457, 995, 1457, 995, 876, 1457, 876, 876, 876, 876, 876, 876, 1457, 1457, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 1457, 876, 876, 876, 1457, 1457, 1457, 1457, 876, 1457, 876, 880, 880, 1457, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 1457, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 1196, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1196, 1457, 1457, 1196, 1196, 1457, 1196, 1457, 1457, 1457, 1196, 1196, 1457, 1196, 1457, 1196, 1457, 1457, 1196, 262, 1457, 1457, 1457, 262, 262, 1457, 1457, 1457, 1457, 262, 262, 1457, 262, 262, 1457, 262, 262, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 262, 1457, 1457, 1457, 262, 1457, 1457, 262, 265, 1457, 1457, 1457, 265, 265, 1457, 1457, 1457, 1457, 265, 265, 1457, 265, 265, 1457, 265, 265, 265, 265, 1457, 1457, 1457, 265, 1457, 1457, 265, 265, 1457, 265, 1457, 265, 1457, 1457, 265, 1101, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1101, 1457, 1457, 1457, 1101, 1457, 1101, 1457, 1457, 1457, 1101, 1101, 1457, 1457, 1457, 1101, 1457, 1457, 1101, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1457, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1457, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1238, 1238, 1457, 1457, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1457, 1238, 1457, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1240, 1240, 1457, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1457, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1265, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1265, 1457, 1457, 1265, 1265, 1457, 1265, 1457, 1457, 1457, 1265, 1265, 1457, 1265, 1457, 1265, 1457, 1457, 1265, 687, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 687, 1457, 687, 1457, 687, 1457, 687, 1457, 1457, 1457, 687, 687, 1457, 687, 687, 687, 1457, 1457, 687, 263, 1457, 1457, 263, 1457, 263, 263, 1457, 263, 1457, 1457, 1457, 263, 1457, 1457, 263, 263, 758, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 758, 1457, 758, 1457, 758, 1457, 758, 1457, 1457, 1457, 758, 758, 1457, 758, 758, 758, 1457, 1457, 758, 1305, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1305, 1457, 1457, 1305, 1305, 1457, 1305, 1457, 1457, 1457, 1305, 1305, 1457, 1305, 1457, 1305, 1457, 1457, 1305, 1309, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1309, 1457, 1457, 1309, 1309, 1457, 1309, 1457, 1457, 1457, 1309, 1309, 1457, 1309, 1457, 1309, 1457, 1457, 1309, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 1457, 990, 990, 990, 990, 990, 990, 990, 1457, 990, 990, 990, 990, 990, 990, 990, 711, 1457, 711, 711, 711, 711, 711, 711, 1457, 1457, 711, 711, 711, 711, 711, 711, 711, 711, 1457, 711, 1457, 711, 711, 711, 1457, 1457, 1457, 1457, 711, 1457, 711, 943, 1457, 1457, 943, 1457, 943, 943, 943, 943, 943, 1457, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 1457, 1457, 1457, 1457, 1457, 943, 943, 881, 881, 1457, 881, 881, 1457, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 1457, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 1412, 1457, 1457, 1412, 1457, 1412, 1412, 1412, 1412, 1412, 1457, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1457, 1457, 1457, 1457, 1457, 1412, 1412, 67, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457 } ; static yyconst short int yy_chk[20999] = { 0, 0, 0, 1, 72, 72, 72, 72, 1, 1, 1, 1, 2, 74, 74, 74, 74, 2, 2, 2, 2, 0, 85, 383, 1, 0, 1, 4, 1, 4, 4, 106, 383, 2, 106, 2, 85, 2, 112, 123, 4, 112, 123, 4, 4, 4, 73, 73, 73, 73, 431, 1, 93, 181, 93, 93, 181, 609, 181, 73, 2, 431, 73, 73, 73, 90, 91, 92, 181, 76, 91, 269, 204, 92, 90, 204, 92, 467, 93, 91, 287, 1, 76, 132, 269, 132, 132, 287, 467, 609, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 135, 600, 135, 135, 5, 5, 5, 5, 600, 217, 6, 217, 217, 289, 5, 6, 6, 6, 6, 289, 5, 21, 5, 135, 5, 6, 21, 21, 21, 21, 463, 6, 22, 6, 189, 6, 189, 22, 22, 22, 22, 278, 21, 23, 21, 463, 21, 5, 23, 23, 23, 23, 286, 22, 278, 22, 286, 22, 6, 98, 288, 98, 98, 429, 23, 189, 23, 465, 23, 21, 288, 235, 98, 235, 235, 98, 98, 5, 492, 24, 22, 291, 465, 291, 24, 24, 24, 24, 6, 7, 7, 23, 7, 429, 7, 7, 7, 7, 7, 21, 24, 25, 24, 613, 24, 282, 25, 25, 25, 25, 22, 7, 26, 7, 282, 7, 282, 26, 26, 26, 26, 23, 25, 27, 25, 492, 25, 24, 27, 27, 27, 27, 366, 26, 366, 26, 613, 26, 7, 144, 144, 144, 144, 426, 27, 478, 27, 308, 27, 25, 308, 145, 145, 145, 145, 310, 426, 24, 310, 28, 26, 144, 481, 366, 28, 28, 28, 28, 7, 8, 8, 27, 8, 145, 8, 8, 8, 8, 8, 25, 28, 29, 28, 1264, 28, 478, 29, 29, 29, 29, 26, 8, 481, 8, 407, 8, 183, 183, 183, 183, 320, 27, 29, 320, 29, 30, 29, 28, 407, 595, 30, 30, 30, 30, 213, 31, 213, 213, 8, 213, 31, 31, 31, 31, 385, 595, 30, 385, 30, 29, 30, 178, 178, 178, 178, 466, 31, 28, 31, 466, 31, 100, 100, 100, 100, 1264, 178, 683, 8, 9, 9, 9, 9, 30, 9, 9, 9, 9, 9, 29, 9, 9, 460, 31, 9, 461, 9, 100, 461, 9, 9, 9, 461, 9, 9, 9, 179, 179, 179, 179, 468, 460, 461, 30, 139, 139, 139, 139, 488, 188, 188, 179, 188, 31, 468, 32, 464, 9, 9, 9, 32, 32, 32, 32, 611, 683, 96, 96, 96, 96, 139, 180, 180, 180, 180, 464, 32, 488, 32, 96, 32, 188, 96, 96, 96, 9, 180, 9, 9, 10, 10, 10, 10, 139, 10, 10, 10, 10, 10, 611, 10, 10, 472, 32, 10, 290, 10, 290, 290, 10, 10, 10, 428, 10, 10, 10, 472, 186, 186, 186, 186, 428, 475, 428, 140, 140, 140, 140, 596, 190, 190, 290, 190, 32, 596, 33, 186, 10, 10, 10, 33, 33, 33, 33, 494, 482, 97, 97, 97, 97, 140, 1594, 197, 197, 197, 197, 33, 197, 33, 97, 33, 190, 97, 97, 97, 10, 475, 10, 10, 11, 11, 11, 11, 140, 11, 11, 11, 11, 11, 469, 11, 11, 482, 33, 11, 325, 11, 325, 325, 11, 11, 11, 494, 11, 11, 11, 191, 191, 469, 191, 198, 198, 198, 198, 480, 198, 216, 216, 216, 216, 493, 365, 365, 33, 365, 34, 498, 11, 11, 11, 34, 34, 34, 34, 194, 700, 194, 194, 191, 578, 195, 473, 195, 195, 473, 194, 34, 1565, 34, 700, 34, 195, 578, 365, 480, 11, 498, 11, 11, 12, 12, 12, 12, 483, 12, 12, 12, 12, 12, 493, 12, 12, 487, 34, 12, 329, 12, 329, 329, 12, 12, 12, 202, 12, 12, 12, 230, 202, 250, 194, 250, 250, 202, 202, 202, 195, 202, 246, 246, 246, 246, 250, 483, 34, 250, 250, 194, 12, 12, 12, 567, 487, 195, 230, 256, 230, 230, 598, 594, 256, 230, 567, 580, 230, 230, 256, 598, 230, 256, 230, 256, 580, 230, 580, 230, 12, 594, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 15, 15, 15, 15, 599, 597, 15, 15, 15, 15, 599, 479, 39, 249, 249, 249, 249, 39, 39, 39, 39, 597, 15, 706, 15, 326, 15, 326, 326, 390, 39, 390, 390, 39, 390, 39, 40, 39, 528, 602, 528, 40, 40, 40, 40, 43, 43, 484, 326, 15, 43, 43, 43, 43, 40, 479, 706, 40, 602, 40, 39, 40, 252, 252, 252, 252, 43, 476, 43, 528, 43, 251, 251, 251, 251, 581, 612, 251, 1550, 15, 16, 16, 16, 16, 40, 607, 16, 16, 16, 16, 39, 484, 565, 43, 605, 266, 476, 266, 266, 604, 476, 614, 16, 604, 16, 581, 16, 266, 612, 476, 44, 44, 615, 605, 40, 44, 44, 44, 44, 296, 296, 296, 296, 43, 272, 272, 272, 272, 607, 16, 614, 44, 55, 44, 617, 44, 565, 55, 55, 55, 55, 704, 272, 295, 295, 295, 295, 601, 272, 295, 601, 367, 367, 55, 367, 55, 615, 55, 44, 16, 17, 17, 17, 17, 617, 1539, 17, 17, 17, 17, 302, 302, 302, 302, 440, 440, 247, 247, 247, 247, 55, 603, 17, 367, 17, 603, 17, 704, 44, 247, 56, 1538, 247, 247, 247, 56, 56, 56, 56, 603, 368, 368, 280, 368, 280, 280, 440, 280, 684, 17, 55, 56, 57, 56, 280, 56, 591, 57, 57, 57, 57, 303, 303, 303, 303, 591, 788, 591, 298, 699, 298, 298, 368, 57, 645, 57, 699, 57, 56, 17, 18, 18, 18, 18, 298, 298, 18, 18, 18, 18, 355, 355, 355, 355, 280, 684, 248, 248, 248, 248, 57, 608, 18, 788, 18, 355, 18, 280, 56, 248, 58, 610, 248, 248, 248, 58, 58, 58, 58, 300, 300, 300, 300, 628, 327, 300, 327, 327, 645, 18, 57, 58, 63, 58, 628, 58, 300, 63, 63, 63, 63, 328, 608, 328, 328, 670, 705, 327, 356, 356, 356, 356, 610, 63, 670, 63, 670, 63, 58, 18, 19, 19, 19, 19, 328, 257, 19, 19, 19, 19, 257, 86, 86, 86, 86, 394, 257, 394, 394, 257, 63, 257, 19, 1100, 19, 1100, 19, 86, 58, 86, 64, 86, 705, 866, 668, 64, 64, 64, 64, 360, 360, 360, 360, 293, 293, 293, 293, 668, 618, 19, 63, 64, 866, 64, 86, 64, 293, 702, 710, 293, 293, 293, 395, 86, 395, 395, 257, 315, 315, 315, 315, 702, 86, 332, 332, 332, 332, 86, 64, 19, 20, 20, 20, 20, 86, 315, 20, 20, 20, 20, 358, 315, 618, 358, 294, 358, 294, 294, 411, 332, 411, 411, 20, 697, 20, 358, 20, 294, 64, 710, 294, 294, 81, 393, 393, 393, 393, 81, 81, 707, 736, 1534, 332, 81, 697, 299, 81, 299, 299, 20, 81, 81, 305, 629, 305, 305, 81, 646, 299, 81, 624, 299, 299, 1263, 412, 305, 412, 412, 305, 305, 333, 333, 333, 333, 119, 119, 119, 119, 707, 20, 35, 35, 35, 35, 81, 35, 35, 35, 35, 35, 119, 736, 119, 624, 119, 35, 333, 629, 129, 129, 129, 129, 35, 708, 35, 513, 35, 513, 513, 624, 81, 646, 81, 671, 129, 1263, 129, 119, 129, 333, 336, 336, 336, 336, 357, 357, 357, 357, 689, 35, 211, 211, 211, 211, 337, 337, 337, 337, 783, 357, 119, 129, 336, 671, 709, 708, 211, 119, 211, 783, 211, 363, 363, 363, 363, 372, 337, 372, 372, 35, 36, 36, 36, 36, 129, 36, 36, 36, 36, 36, 363, 129, 689, 211, 231, 36, 369, 369, 231, 369, 231, 231, 36, 709, 36, 231, 36, 1528, 231, 231, 378, 485, 231, 753, 231, 378, 211, 231, 701, 231, 378, 378, 378, 211, 378, 698, 1524, 753, 369, 36, 372, 376, 376, 376, 376, 701, 376, 784, 382, 418, 418, 418, 418, 382, 784, 1521, 698, 372, 382, 382, 382, 485, 382, 421, 421, 421, 421, 485, 485, 36, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 45, 45, 45, 45, 711, 786, 45, 45, 45, 45, 865, 735, 760, 419, 262, 419, 419, 616, 790, 262, 262, 786, 45, 1500, 45, 262, 45, 865, 262, 419, 419, 868, 262, 262, 422, 422, 422, 422, 262, 267, 371, 262, 371, 371, 267, 267, 1192, 616, 787, 45, 267, 371, 1192, 267, 267, 787, 760, 790, 267, 374, 616, 374, 374, 267, 735, 438, 262, 438, 438, 711, 374, 526, 526, 868, 526, 1496, 45, 438, 45, 45, 46, 46, 46, 46, 486, 427, 46, 46, 46, 46, 427, 267, 262, 789, 262, 371, 427, 785, 965, 427, 1142, 427, 46, 526, 46, 424, 46, 424, 424, 792, 869, 785, 371, 486, 374, 867, 486, 267, 424, 267, 486, 424, 424, 1485, 867, 374, 789, 449, 486, 46, 486, 374, 449, 442, 442, 442, 442, 806, 449, 458, 1009, 449, 792, 449, 458, 1142, 1395, 965, 806, 1395, 458, 442, 1009, 458, 869, 458, 46, 442, 46, 46, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 49, 49, 49, 49, 1397, 49, 49, 49, 49, 49, 1397, 49, 49, 527, 527, 49, 527, 49, 430, 905, 49, 49, 49, 430, 49, 49, 49, 794, 870, 430, 938, 791, 430, 824, 430, 444, 444, 444, 444, 470, 906, 375, 872, 375, 375, 527, 938, 1455, 49, 49, 49, 450, 375, 444, 470, 452, 450, 452, 452, 444, 470, 470, 450, 870, 1175, 450, 1175, 450, 770, 430, 770, 770, 791, 825, 939, 1169, 49, 905, 49, 49, 50, 50, 50, 50, 1034, 50, 50, 50, 50, 50, 824, 50, 50, 794, 1454, 50, 375, 50, 906, 1170, 50, 50, 50, 462, 50, 50, 50, 375, 872, 462, 452, 462, 450, 375, 825, 939, 770, 462, 1278, 1453, 532, 1169, 532, 532, 462, 1278, 453, 452, 50, 50, 50, 453, 532, 454, 453, 1034, 453, 453, 454, 1450, 453, 454, 453, 454, 454, 1170, 453, 454, 903, 454, 903, 903, 855, 454, 855, 855, 50, 477, 50, 50, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 1255, 1449, 51, 532, 51, 915, 1052, 915, 915, 1053, 51, 51, 51, 51, 51, 51, 996, 477, 1052, 477, 532, 1053, 454, 471, 477, 996, 471, 1448, 855, 471, 1348, 477, 499, 471, 499, 499, 561, 51, 51, 51, 51, 561, 471, 1167, 471, 499, 1255, 561, 499, 499, 561, 1193, 561, 681, 681, 681, 681, 541, 681, 541, 541, 1193, 1363, 681, 1253, 51, 51, 51, 51, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 996, 1167, 52, 500, 52, 500, 500, 1010, 1348, 1010, 52, 52, 52, 52, 52, 52, 500, 1256, 1446, 500, 500, 1010, 1253, 505, 505, 505, 505, 507, 507, 507, 507, 541, 535, 1311, 535, 535, 1386, 52, 52, 52, 52, 505, 1276, 535, 564, 507, 1363, 505, 541, 564, 538, 507, 538, 538, 934, 564, 934, 934, 564, 1276, 564, 538, 1261, 1256, 1261, 52, 52, 52, 52, 53, 53, 53, 53, 1056, 53, 53, 53, 53, 53, 1311, 53, 53, 1386, 1444, 53, 1056, 53, 535, 1019, 53, 53, 53, 562, 53, 53, 53, 560, 562, 560, 560, 1019, 1019, 1060, 562, 535, 538, 562, 1396, 562, 560, 1396, 1357, 560, 560, 1060, 538, 1441, 53, 53, 53, 566, 539, 538, 539, 539, 566, 1357, 962, 579, 962, 962, 566, 539, 579, 566, 53, 566, 1429, 969, 579, 969, 969, 579, 1429, 579, 53, 1319, 53, 53, 54, 54, 54, 54, 562, 54, 54, 54, 54, 54, 1319, 54, 54, 1430, 1439, 54, 973, 54, 973, 973, 54, 54, 54, 1430, 54, 54, 54, 539, 574, 574, 574, 574, 1277, 566, 1277, 539, 1438, 721, 721, 721, 721, 1054, 721, 1054, 539, 1062, 574, 721, 54, 54, 54, 574, 574, 587, 593, 1054, 1437, 1062, 587, 593, 1322, 587, 1322, 587, 587, 593, 54, 587, 593, 587, 593, 1456, 977, 587, 977, 977, 54, 1456, 54, 54, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 75, 1057, 75, 75, 1057, 75, 75, 75, 75, 75, 1497, 75, 75, 1057, 1414, 75, 1414, 75, 582, 1497, 75, 75, 75, 582, 75, 75, 75, 1484, 583, 582, 583, 583, 582, 964, 582, 964, 964, 1435, 1452, 586, 1452, 586, 586, 1484, 586, 964, 1433, 669, 75, 75, 75, 586, 669, 644, 588, 644, 644, 1351, 669, 588, 1063, 669, 588, 669, 588, 588, 672, 1431, 588, 582, 588, 672, 1063, 1063, 588, 1065, 75, 672, 75, 82, 672, 1428, 672, 583, 82, 82, 651, 1065, 651, 651, 82, 586, 1423, 82, 82, 1084, 1351, 82, 82, 771, 583, 771, 771, 82, 586, 588, 82, 1084, 644, 630, 630, 630, 630, 649, 1066, 649, 649, 672, 765, 765, 765, 765, 1086, 1426, 649, 644, 1066, 630, 1112, 82, 1112, 82, 630, 630, 1086, 650, 765, 650, 650, 675, 685, 651, 765, 1112, 675, 685, 650, 771, 1422, 1421, 675, 685, 1420, 675, 685, 675, 685, 82, 651, 82, 87, 987, 1426, 987, 987, 87, 87, 87, 649, 771, 1419, 87, 87, 1417, 87, 87, 1415, 87, 87, 87, 1066, 87, 649, 87, 87, 649, 675, 87, 650, 1411, 650, 679, 679, 679, 679, 680, 680, 680, 680, 793, 1515, 793, 793, 1502, 1410, 1502, 686, 650, 1515, 679, 87, 686, 87, 680, 679, 679, 688, 686, 680, 680, 686, 688, 686, 690, 1279, 1409, 1407, 688, 690, 1502, 688, 1279, 688, 1025, 690, 1025, 1025, 690, 87, 690, 87, 88, 88, 88, 88, 1406, 1026, 793, 1026, 1026, 719, 719, 719, 719, 1541, 693, 1541, 88, 1089, 88, 693, 88, 1541, 693, 793, 693, 693, 686, 719, 693, 1089, 693, 703, 719, 719, 693, 909, 703, 909, 909, 1090, 1405, 1404, 703, 88, 690, 703, 88, 703, 694, 756, 1090, 1090, 88, 694, 756, 1400, 694, 1399, 694, 694, 756, 88, 694, 756, 694, 756, 88, 1038, 694, 1038, 1038, 1059, 1390, 88, 89, 1033, 1059, 1033, 1033, 89, 89, 89, 1389, 1059, 1059, 89, 89, 1033, 89, 89, 909, 89, 89, 89, 695, 89, 1442, 89, 89, 695, 1061, 89, 695, 1442, 695, 695, 1388, 909, 695, 694, 695, 1061, 1061, 1061, 695, 720, 720, 720, 720, 856, 1387, 856, 856, 1385, 89, 1044, 89, 1044, 1044, 739, 757, 739, 739, 720, 1384, 757, 89, 759, 720, 720, 739, 757, 759, 1061, 757, 89, 757, 740, 759, 740, 740, 759, 89, 759, 89, 95, 695, 1443, 740, 1091, 95, 95, 761, 1383, 1443, 1087, 95, 761, 1087, 95, 95, 1091, 95, 761, 95, 95, 761, 1087, 761, 95, 856, 762, 763, 1483, 739, 856, 762, 763, 1092, 1382, 1483, 757, 762, 763, 1374, 762, 763, 762, 763, 739, 1092, 739, 740, 766, 766, 766, 766, 95, 766, 772, 1102, 1373, 1372, 766, 772, 1371, 1133, 740, 1156, 740, 772, 1369, 1102, 772, 761, 772, 1367, 766, 1133, 944, 1156, 944, 944, 95, 1356, 95, 99, 99, 99, 99, 99, 99, 99, 99, 1353, 1157, 763, 99, 774, 1352, 99, 99, 1205, 774, 99, 99, 776, 1157, 1205, 774, 99, 776, 774, 99, 774, 1205, 1116, 776, 1116, 779, 776, 1347, 776, 972, 779, 972, 972, 779, 1367, 779, 779, 1116, 780, 779, 944, 779, 99, 780, 99, 779, 780, 1367, 780, 780, 1346, 972, 780, 1160, 780, 774, 1088, 944, 780, 776, 828, 1088, 828, 828, 1039, 1160, 1039, 1039, 1088, 1088, 99, 828, 99, 114, 1344, 114, 114, 1343, 114, 114, 114, 114, 114, 1552, 114, 114, 1039, 1341, 114, 780, 114, 1552, 1327, 114, 114, 114, 781, 114, 114, 114, 1071, 781, 1071, 1071, 781, 1326, 781, 781, 1325, 1323, 781, 991, 781, 991, 991, 828, 781, 807, 807, 807, 807, 114, 114, 114, 808, 808, 808, 808, 928, 808, 928, 928, 828, 1095, 808, 807, 829, 1318, 829, 829, 1317, 807, 1158, 781, 1158, 1095, 1315, 829, 808, 114, 1161, 114, 254, 1161, 254, 254, 1158, 254, 254, 254, 254, 254, 1161, 254, 254, 1314, 991, 254, 1163, 254, 844, 1567, 254, 254, 254, 844, 254, 254, 254, 1567, 1163, 844, 846, 991, 844, 1549, 844, 846, 1330, 928, 1330, 829, 1549, 846, 928, 1164, 846, 829, 846, 1095, 254, 254, 254, 1330, 848, 849, 1164, 1164, 829, 848, 849, 850, 850, 850, 850, 848, 849, 1309, 848, 849, 848, 849, 1165, 852, 852, 852, 852, 1162, 254, 850, 254, 265, 1162, 846, 1165, 850, 265, 265, 1305, 1162, 1162, 852, 265, 858, 1570, 265, 265, 852, 858, 265, 265, 848, 1570, 1303, 858, 265, 859, 858, 265, 858, 1023, 859, 1023, 1023, 860, 849, 1571, 859, 1571, 860, 859, 1023, 859, 1168, 1068, 860, 1068, 1068, 860, 863, 860, 265, 1023, 265, 863, 1168, 864, 863, 1300, 863, 863, 864, 1571, 863, 864, 863, 864, 864, 1284, 863, 864, 1101, 864, 1176, 1101, 858, 864, 1283, 1177, 265, 1101, 265, 281, 1280, 1101, 1176, 1101, 281, 281, 281, 1177, 1101, 1242, 281, 281, 1101, 281, 281, 860, 281, 281, 281, 1273, 281, 1242, 281, 281, 1272, 1269, 281, 1068, 863, 888, 888, 888, 888, 910, 1243, 910, 910, 864, 890, 890, 890, 890, 1267, 925, 910, 1553, 1243, 888, 925, 281, 932, 281, 1553, 888, 925, 932, 890, 925, 1115, 925, 1166, 932, 890, 1115, 932, 1115, 932, 1265, 1260, 1115, 933, 983, 1166, 1166, 1115, 933, 983, 281, 1246, 281, 283, 933, 983, 283, 933, 983, 933, 983, 910, 283, 1246, 1188, 1259, 283, 1188, 283, 910, 932, 1258, 283, 283, 1245, 1240, 1188, 283, 910, 1188, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 1239, 1238, 933, 983, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 285, 966, 1607, 966, 966, 285, 285, 285, 1244, 1607, 1244, 285, 285, 966, 285, 285, 1235, 285, 285, 285, 924, 285, 1244, 285, 285, 924, 1135, 285, 1135, 1135, 926, 924, 1230, 1249, 924, 926, 924, 927, 1228, 1540, 1540, 926, 927, 1226, 926, 1249, 926, 1540, 927, 1585, 285, 927, 285, 927, 1225, 936, 966, 1585, 1196, 1136, 936, 1136, 1136, 936, 285, 936, 936, 1247, 1195, 936, 1247, 936, 1250, 966, 968, 936, 968, 968, 285, 1247, 285, 292, 924, 1250, 1250, 968, 292, 292, 1144, 1171, 1144, 1144, 292, 292, 926, 292, 292, 1251, 292, 927, 292, 1171, 936, 937, 292, 292, 1254, 1194, 937, 1251, 982, 937, 1186, 937, 937, 982, 1185, 937, 1254, 937, 1262, 982, 1598, 937, 982, 985, 982, 985, 985, 968, 1598, 968, 1262, 292, 988, 1179, 1606, 1173, 989, 988, 985, 1172, 1049, 989, 1606, 988, 968, 1049, 988, 989, 988, 1159, 989, 1049, 989, 1171, 1049, 982, 1049, 292, 1308, 292, 311, 937, 311, 311, 1154, 311, 311, 311, 311, 311, 1308, 311, 311, 985, 1150, 311, 1148, 311, 1148, 1148, 311, 311, 311, 993, 311, 311, 311, 1067, 993, 1067, 1067, 993, 1149, 993, 993, 1145, 988, 993, 989, 993, 1189, 1143, 1067, 993, 1049, 1189, 994, 1257, 311, 311, 311, 994, 1189, 1189, 994, 1189, 994, 994, 1271, 1257, 994, 1004, 994, 1004, 1004, 1070, 994, 1070, 1070, 1271, 1271, 1233, 1004, 1233, 1233, 1622, 311, 1067, 311, 373, 1070, 373, 373, 1622, 1275, 1634, 373, 993, 373, 1141, 373, 373, 1140, 1634, 1139, 1005, 1275, 1005, 1005, 1275, 1008, 373, 1008, 1008, 1138, 373, 1005, 1006, 994, 1006, 1006, 1008, 1564, 1257, 1564, 1070, 1004, 1107, 1006, 1107, 1564, 1137, 1008, 1008, 1072, 1107, 1107, 1004, 373, 1072, 1134, 1006, 1107, 1004, 373, 1072, 1252, 1004, 1072, 1234, 1072, 1234, 1234, 1012, 1358, 1012, 1012, 1248, 1252, 1252, 1005, 373, 1248, 1096, 1012, 373, 1358, 373, 439, 1248, 1248, 1005, 1006, 439, 439, 1012, 1012, 1005, 1094, 439, 1636, 1005, 439, 439, 1093, 1489, 439, 439, 1636, 1006, 1085, 1016, 439, 1006, 1072, 1077, 1016, 1016, 1181, 1489, 1181, 1181, 1016, 1016, 1645, 1016, 1016, 1076, 1489, 1612, 1016, 1018, 1645, 1018, 1018, 1016, 1612, 1648, 439, 1358, 439, 1050, 1018, 1075, 1612, 1648, 1050, 1064, 1021, 1659, 1021, 1021, 1050, 1018, 1018, 1050, 1659, 1050, 1074, 1021, 1074, 1074, 1178, 1016, 1178, 1178, 439, 1058, 439, 490, 1021, 1021, 1055, 1046, 490, 490, 490, 1613, 1613, 1181, 490, 490, 1045, 490, 490, 1613, 490, 490, 490, 1016, 490, 1016, 490, 490, 1078, 1022, 490, 1022, 1022, 1078, 1653, 1043, 1078, 1050, 1078, 1078, 1022, 1653, 1078, 1268, 1078, 1268, 1268, 1074, 1078, 1653, 1042, 1022, 1022, 490, 1097, 490, 1097, 1097, 1108, 1037, 1108, 490, 1178, 1032, 1074, 1097, 1108, 1302, 1656, 1302, 1302, 1108, 1109, 1108, 1031, 1110, 1656, 1110, 1109, 1110, 1109, 490, 1359, 490, 491, 1110, 1109, 1109, 1078, 491, 491, 491, 1110, 1109, 1359, 491, 491, 1030, 491, 491, 1029, 491, 491, 491, 1268, 491, 1022, 491, 491, 1097, 1028, 491, 1111, 1027, 1111, 1103, 1024, 1111, 1103, 1298, 1111, 1298, 1298, 1569, 1103, 1569, 1097, 1111, 1103, 1104, 1103, 1569, 1104, 1020, 491, 1103, 491, 1113, 1104, 1103, 1626, 1626, 1104, 1113, 1104, 1113, 1014, 1359, 1626, 1104, 1557, 1113, 1658, 1104, 1105, 1011, 1113, 1105, 1113, 1557, 1658, 1557, 491, 1105, 491, 497, 1557, 1105, 992, 1105, 497, 497, 1104, 1360, 1105, 1360, 497, 497, 1105, 497, 497, 1105, 497, 1106, 497, 1105, 1106, 1360, 497, 497, 986, 1127, 1106, 1127, 980, 1105, 1106, 1298, 1106, 1127, 1665, 1665, 1316, 1106, 1316, 1316, 1127, 1106, 1665, 979, 1114, 1117, 1114, 1106, 1117, 1106, 1117, 497, 1114, 1114, 1530, 1106, 1117, 1530, 1127, 1114, 1114, 978, 1106, 1117, 1118, 1530, 1338, 1119, 1338, 1338, 1118, 976, 1118, 1119, 1360, 1119, 1671, 497, 1118, 497, 531, 1119, 531, 531, 1671, 1118, 1316, 531, 1119, 531, 1672, 531, 531, 1544, 975, 1120, 1544, 1120, 1672, 1121, 974, 1121, 531, 1120, 1544, 1548, 531, 1121, 1548, 971, 1120, 1119, 970, 1122, 1121, 1122, 1548, 1381, 1120, 1381, 1381, 1122, 1120, 963, 961, 1121, 960, 1121, 1122, 531, 1602, 1120, 1121, 1602, 1123, 531, 1123, 1676, 1200, 1121, 1200, 1602, 1123, 959, 1338, 1676, 1200, 1122, 1681, 1123, 1200, 1362, 531, 1200, 1362, 1681, 531, 958, 531, 534, 957, 534, 534, 1362, 955, 1125, 534, 1125, 534, 1124, 534, 534, 1123, 1125, 1705, 1124, 1126, 1124, 1126, 1706, 1125, 534, 1705, 1124, 1126, 534, 1129, 1706, 1129, 1125, 1124, 1126, 1128, 1365, 1129, 1131, 954, 1131, 1128, 953, 1128, 1129, 1687, 1131, 1687, 1365, 1128, 1126, 534, 1124, 1131, 1710, 1687, 1128, 534, 935, 1362, 931, 1152, 1710, 1129, 930, 1174, 1152, 1174, 1174, 1129, 1129, 1131, 1152, 1366, 534, 1152, 1174, 1152, 534, 1128, 534, 536, 929, 536, 536, 1366, 1738, 1130, 536, 1130, 536, 923, 536, 536, 1738, 1130, 1132, 1202, 1132, 1202, 922, 1365, 1130, 536, 1132, 1202, 1324, 536, 1324, 1324, 1130, 1132, 1202, 1130, 1597, 1739, 1597, 1130, 921, 1132, 1174, 1152, 1597, 1739, 1609, 1130, 1180, 1130, 1180, 1180, 536, 1184, 920, 1609, 1182, 1609, 536, 1174, 1366, 1182, 1609, 1180, 1184, 1184, 1184, 1182, 919, 536, 1182, 1197, 1182, 1197, 1197, 536, 1324, 918, 1615, 536, 1615, 536, 537, 917, 537, 537, 1615, 916, 914, 537, 913, 537, 912, 537, 537, 1187, 1184, 911, 1180, 1354, 1187, 1354, 1354, 1187, 537, 1187, 1187, 904, 537, 1187, 1403, 1187, 1403, 1403, 1198, 1187, 900, 899, 1182, 1198, 898, 1350, 1199, 1350, 1350, 1198, 1197, 1199, 1198, 897, 1198, 537, 1201, 1199, 1201, 896, 1199, 537, 1199, 894, 1201, 893, 1201, 1197, 1206, 1206, 1206, 1201, 537, 1354, 1691, 892, 1206, 1418, 537, 1418, 1418, 1187, 537, 1206, 537, 620, 1204, 1691, 1204, 1204, 620, 620, 620, 1350, 1204, 1691, 620, 620, 891, 620, 620, 1204, 620, 620, 620, 1203, 620, 1203, 620, 620, 1743, 1207, 620, 1203, 1207, 1203, 1207, 1208, 1743, 1208, 1203, 889, 1207, 887, 1209, 1208, 1209, 871, 1209, 1207, 1208, 1631, 1208, 1631, 1209, 620, 862, 620, 1209, 1631, 1210, 1209, 1210, 1211, 1210, 1211, 1212, 1219, 861, 1219, 1210, 1211, 1212, 1752, 1212, 1219, 1211, 1210, 1211, 857, 1212, 1752, 1219, 620, 854, 620, 621, 1212, 621, 621, 621, 621, 621, 621, 1219, 853, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 851, 621, 621, 1213, 1214, 1213, 1214, 1215, 1216, 1215, 1216, 1213, 1214, 1771, 847, 1215, 1216, 845, 1213, 1214, 843, 1771, 1215, 1216, 1616, 1616, 1218, 1616, 1218, 1217, 1220, 1217, 1220, 1215, 1218, 1616, 842, 1217, 1220, 1214, 1213, 1218, 1772, 1216, 1217, 1220, 1635, 841, 1635, 1221, 1772, 1221, 1218, 1220, 1635, 621, 622, 1221, 1217, 840, 839, 622, 622, 622, 1221, 838, 837, 622, 622, 836, 622, 622, 834, 622, 622, 622, 1222, 622, 1222, 622, 622, 1776, 833, 622, 1222, 832, 1223, 1221, 1223, 1776, 1224, 1222, 1224, 1416, 1223, 1416, 1416, 831, 1224, 1781, 1222, 1223, 830, 823, 1236, 1224, 622, 1781, 622, 1236, 1223, 1237, 822, 1222, 1281, 1236, 1281, 1281, 1236, 821, 1236, 820, 1237, 1237, 1237, 1281, 622, 1266, 1224, 1266, 1266, 819, 818, 817, 622, 816, 622, 647, 815, 647, 647, 1416, 814, 1285, 647, 1285, 647, 1797, 647, 647, 1282, 1285, 1282, 1282, 1237, 1797, 1798, 813, 1285, 647, 812, 811, 1281, 647, 1798, 1286, 1236, 1286, 1287, 1287, 1287, 810, 1425, 1286, 1425, 1425, 1287, 1802, 809, 1288, 1286, 1288, 1266, 1287, 804, 1802, 647, 1288, 1290, 1289, 1290, 1289, 647, 1292, 1288, 1292, 1290, 1289, 1828, 1266, 1289, 1292, 647, 1290, 1289, 1282, 1828, 778, 1292, 647, 777, 775, 773, 647, 769, 647, 648, 768, 648, 648, 1425, 1291, 1282, 648, 767, 648, 1291, 648, 648, 764, 758, 755, 1291, 1292, 754, 1291, 752, 1291, 648, 751, 749, 1293, 648, 1293, 1295, 1294, 1295, 1294, 1306, 1293, 1306, 1306, 1295, 1294, 748, 1296, 1293, 1296, 1655, 1295, 1294, 1655, 745, 1296, 1307, 648, 1307, 1307, 744, 1655, 1296, 648, 1294, 743, 742, 1307, 741, 1295, 734, 648, 1310, 1293, 1310, 1310, 1313, 733, 1313, 1313, 648, 732, 731, 1296, 648, 730, 648, 712, 729, 712, 712, 712, 712, 712, 712, 1306, 728, 712, 712, 712, 712, 712, 712, 712, 712, 1297, 712, 1297, 712, 712, 727, 1307, 1306, 1297, 1328, 1427, 1328, 1427, 1427, 1328, 1297, 1312, 1328, 1312, 1312, 726, 725, 1310, 1307, 1328, 724, 1313, 1312, 723, 722, 1329, 1329, 1329, 1297, 1434, 718, 1434, 1434, 1329, 1310, 1331, 717, 1331, 1313, 712, 1329, 716, 696, 1331, 1436, 1331, 1436, 1436, 692, 712, 1331, 691, 712, 713, 713, 687, 713, 713, 713, 1312, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 682, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 714, 1332, 1332, 1332, 678, 714, 714, 714, 677, 1332, 674, 714, 714, 673, 714, 714, 1332, 714, 714, 714, 1333, 714, 1333, 714, 714, 667, 666, 714, 1333, 1334, 1335, 1334, 1335, 665, 1336, 1333, 1336, 1334, 1335, 1337, 664, 1337, 1336, 663, 1334, 1335, 661, 1337, 1364, 1336, 714, 1333, 714, 1364, 1337, 1342, 1334, 1342, 1342, 660, 1364, 1364, 1345, 1335, 1345, 1345, 1337, 658, 1349, 1336, 1349, 1349, 657, 1368, 1611, 1368, 1368, 655, 714, 1349, 714, 715, 1611, 654, 1368, 1611, 715, 715, 715, 1644, 1611, 1644, 715, 715, 653, 715, 715, 1644, 715, 715, 715, 652, 715, 1652, 715, 715, 643, 1375, 715, 1375, 1342, 1652, 642, 1364, 1652, 1375, 1349, 1345, 1375, 1652, 641, 640, 1375, 639, 1376, 638, 1376, 1342, 1368, 637, 636, 715, 1376, 715, 1345, 635, 1368, 1376, 1377, 1376, 1377, 1377, 1378, 634, 1378, 1368, 1377, 1661, 633, 1368, 1378, 632, 715, 1377, 631, 627, 1661, 1378, 1661, 715, 626, 715, 737, 1661, 737, 737, 625, 623, 1379, 737, 1379, 737, 619, 737, 737, 606, 1379, 592, 1378, 1380, 590, 1380, 589, 1379, 737, 585, 584, 1380, 737, 577, 1393, 576, 1393, 1393, 1380, 575, 1394, 570, 1394, 1394, 569, 1393, 1413, 563, 1413, 1413, 1379, 1394, 1380, 557, 1398, 737, 1398, 1398, 1401, 556, 1401, 737, 555, 554, 553, 1398, 1401, 552, 1401, 1408, 551, 1408, 1408, 1401, 1451, 737, 1451, 1451, 737, 550, 1408, 549, 737, 548, 737, 738, 547, 738, 738, 1393, 546, 545, 738, 544, 738, 1394, 738, 738, 542, 540, 533, 1413, 1398, 1394, 530, 529, 1393, 738, 522, 521, 520, 738, 1394, 1402, 519, 1402, 1394, 1408, 1413, 1686, 1686, 1402, 1686, 1503, 1424, 1503, 1424, 1424, 1402, 1531, 1686, 1531, 518, 517, 738, 1424, 516, 515, 738, 514, 738, 1503, 512, 510, 1531, 1503, 509, 1531, 1402, 1503, 506, 1717, 1717, 503, 1717, 1531, 496, 738, 495, 489, 474, 738, 1717, 738, 795, 459, 795, 795, 795, 795, 795, 795, 1424, 457, 795, 795, 795, 795, 795, 456, 795, 795, 795, 795, 455, 795, 795, 1572, 1603, 1572, 1603, 451, 1721, 448, 1721, 447, 446, 1823, 1824, 1823, 1824, 443, 1827, 1603, 1827, 1572, 1603, 441, 437, 1572, 1721, 435, 433, 1572, 1603, 1823, 1824, 432, 1721, 1721, 1827, 416, 413, 1823, 1824, 409, 408, 406, 1827, 405, 404, 403, 402, 401, 400, 398, 795, 396, 389, 795, 796, 386, 796, 796, 796, 796, 796, 796, 381, 364, 796, 796, 796, 796, 796, 359, 796, 796, 796, 796, 353, 796, 796, 351, 349, 347, 345, 343, 341, 339, 338, 335, 334, 324, 321, 318, 313, 312, 307, 297, 284, 279, 277, 276, 275, 270, 263, 261, 260, 255, 253, 242, 238, 236, 229, 221, 210, 201, 176, 172, 168, 164, 160, 796, 156, 151, 150, 146, 143, 118, 110, 104, 796, 101, 84, 796, 797, 83, 797, 797, 797, 797, 797, 797, 77, 67, 797, 797, 797, 797, 797, 797, 797, 797, 0, 797, 0, 797, 797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 797, 0, 0, 797, 798, 798, 0, 798, 798, 0, 0, 0, 0, 0, 0, 0, 798, 798, 798, 0, 0, 0, 0, 0, 0, 0, 0, 798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 798, 798, 798, 798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 798, 798, 798, 799, 799, 0, 799, 799, 0, 0, 0, 0, 0, 0, 0, 799, 799, 799, 0, 0, 0, 0, 0, 0, 0, 0, 799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 799, 799, 799, 799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 799, 799, 799, 800, 800, 0, 800, 800, 0, 0, 0, 0, 0, 0, 0, 800, 800, 800, 0, 0, 0, 0, 0, 0, 0, 0, 800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 800, 800, 800, 800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 800, 800, 800, 801, 801, 0, 801, 801, 801, 0, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 0, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 802, 802, 0, 802, 802, 802, 0, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 0, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 803, 0, 0, 0, 0, 803, 803, 803, 0, 0, 0, 803, 803, 0, 803, 803, 0, 803, 803, 803, 0, 803, 0, 803, 803, 0, 0, 803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803, 0, 803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803, 0, 803, 826, 0, 826, 826, 0, 0, 0, 826, 0, 826, 0, 826, 826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 826, 0, 0, 0, 826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 826, 0, 0, 0, 0, 0, 826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 826, 0, 826, 0, 0, 0, 826, 0, 826, 827, 0, 827, 827, 0, 0, 0, 827, 0, 827, 0, 827, 827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 827, 0, 0, 0, 827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 827, 0, 0, 0, 0, 0, 827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 827, 0, 827, 0, 0, 0, 827, 0, 827, 874, 0, 874, 874, 874, 874, 874, 874, 0, 0, 874, 874, 874, 874, 874, 874, 874, 874, 0, 874, 0, 874, 874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 874, 0, 0, 874, 875, 0, 0, 875, 875, 0, 875, 875, 875, 0, 875, 0, 875, 875, 875, 0, 875, 875, 875, 0, 0, 875, 875, 875, 875, 875, 875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 875, 875, 876, 0, 876, 876, 876, 876, 876, 876, 0, 0, 876, 876, 876, 876, 876, 0, 876, 876, 876, 876, 0, 876, 876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 876, 0, 0, 876, 877, 0, 877, 877, 877, 877, 877, 877, 0, 0, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 0, 877, 877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 877, 0, 0, 877, 878, 0, 878, 878, 878, 878, 878, 878, 0, 0, 878, 878, 878, 878, 878, 0, 878, 878, 878, 878, 0, 878, 878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 878, 0, 0, 878, 879, 0, 879, 879, 879, 879, 879, 879, 0, 0, 879, 879, 879, 879, 879, 0, 879, 879, 879, 879, 0, 879, 879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 879, 0, 0, 879, 880, 880, 0, 880, 880, 0, 0, 0, 0, 0, 0, 0, 880, 880, 880, 0, 0, 0, 0, 0, 0, 0, 0, 880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 880, 880, 880, 880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 880, 880, 880, 881, 881, 0, 881, 881, 0, 0, 0, 0, 0, 0, 0, 881, 881, 881, 0, 0, 0, 0, 0, 0, 0, 0, 881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 881, 881, 881, 881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 881, 881, 881, 882, 882, 0, 882, 882, 0, 0, 0, 0, 0, 0, 0, 882, 882, 882, 0, 0, 0, 0, 0, 0, 0, 0, 882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 882, 882, 882, 882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 882, 882, 882, 883, 883, 0, 883, 883, 883, 0, 883, 883, 883, 0, 883, 883, 883, 883, 883, 0, 883, 883, 883, 0, 0, 883, 883, 883, 883, 883, 883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 883, 883, 883, 883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 883, 883, 883, 883, 884, 884, 0, 884, 884, 0, 0, 0, 0, 0, 0, 0, 884, 884, 884, 0, 0, 0, 0, 0, 0, 0, 0, 884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 884, 884, 884, 884, 0, 0, 884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 884, 884, 884, 885, 885, 0, 885, 885, 885, 0, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 0, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 886, 0, 0, 0, 0, 886, 886, 886, 0, 0, 0, 886, 886, 0, 886, 886, 0, 886, 886, 886, 0, 886, 0, 886, 886, 0, 0, 886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 886, 0, 886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 886, 0, 0, 0, 0, 0, 0, 0, 0, 886, 0, 886, 907, 0, 907, 907, 0, 0, 0, 907, 0, 907, 0, 907, 907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 907, 0, 0, 0, 907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 907, 0, 0, 0, 0, 0, 907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 907, 0, 0, 0, 907, 0, 907, 908, 0, 908, 908, 0, 0, 0, 908, 0, 908, 0, 908, 908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 908, 0, 0, 0, 908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 908, 0, 0, 0, 0, 0, 908, 0, 0, 0, 0, 0, 908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 908, 0, 0, 0, 908, 0, 908, 941, 0, 941, 941, 941, 941, 941, 941, 0, 0, 941, 941, 941, 941, 941, 0, 941, 941, 941, 941, 0, 941, 941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 941, 0, 0, 941, 942, 0, 942, 942, 942, 942, 942, 942, 0, 0, 942, 942, 942, 942, 942, 0, 942, 942, 942, 942, 0, 942, 942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 942, 0, 0, 0, 0, 0, 0, 0, 0, 942, 0, 0, 942, 943, 0, 0, 943, 943, 0, 943, 943, 943, 0, 943, 0, 943, 943, 943, 0, 943, 943, 943, 0, 0, 943, 943, 943, 943, 943, 943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 943, 943, 945, 0, 945, 945, 945, 945, 945, 945, 0, 0, 945, 945, 945, 945, 945, 0, 945, 945, 0, 945, 0, 945, 945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 945, 0, 0, 945, 946, 0, 946, 946, 946, 946, 946, 946, 0, 0, 946, 946, 946, 946, 946, 0, 946, 946, 946, 946, 0, 946, 946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 946, 0, 0, 0, 0, 0, 0, 0, 946, 0, 0, 946, 947, 0, 947, 947, 947, 947, 947, 947, 0, 0, 947, 947, 947, 947, 947, 0, 947, 947, 947, 947, 0, 947, 947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 947, 0, 0, 947, 948, 948, 0, 948, 948, 948, 0, 948, 948, 948, 0, 948, 948, 948, 948, 948, 0, 948, 948, 948, 0, 0, 948, 948, 948, 948, 948, 948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 948, 948, 948, 948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 948, 948, 948, 948, 949, 949, 0, 949, 949, 949, 0, 949, 949, 949, 0, 949, 949, 949, 949, 949, 0, 949, 949, 949, 0, 0, 949, 949, 949, 949, 949, 949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 949, 949, 949, 949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 949, 949, 949, 949, 950, 950, 0, 950, 950, 0, 0, 0, 0, 0, 0, 0, 950, 950, 950, 0, 0, 0, 0, 0, 0, 0, 0, 950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 950, 950, 950, 950, 0, 0, 0, 950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 950, 0, 0, 0, 950, 950, 950, 951, 951, 0, 951, 951, 0, 0, 0, 0, 0, 0, 0, 951, 951, 951, 0, 0, 0, 0, 0, 0, 0, 0, 951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 951, 951, 951, 951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 951, 0, 0, 0, 0, 0, 0, 0, 951, 951, 951, 952, 952, 0, 952, 952, 952, 952, 952, 0, 952, 952, 952, 952, 0, 952, 952, 952, 952, 952, 952, 0, 952, 0, 952, 952, 952, 0, 952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 952, 952, 0, 952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 952, 0, 952, 967, 0, 967, 967, 0, 0, 0, 967, 0, 967, 0, 967, 967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 967, 0, 0, 0, 967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 967, 0, 0, 0, 0, 0, 967, 0, 0, 0, 0, 0, 0, 0, 967, 0, 0, 0, 0, 0, 0, 0, 0, 967, 0, 0, 0, 967, 0, 967, 984, 0, 984, 984, 984, 0, 984, 0, 984, 984, 0, 984, 0, 984, 984, 984, 984, 984, 984, 0, 984, 0, 984, 984, 984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 984, 0, 0, 984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 984, 0, 984, 995, 0, 995, 995, 995, 995, 995, 995, 0, 0, 995, 995, 995, 995, 995, 0, 995, 995, 995, 995, 0, 995, 995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 995, 0, 0, 995, 997, 0, 997, 997, 997, 997, 997, 997, 0, 0, 997, 997, 997, 997, 997, 0, 997, 997, 997, 997, 0, 997, 997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 997, 0, 0, 997, 998, 0, 998, 998, 998, 998, 998, 998, 0, 0, 998, 998, 998, 998, 998, 0, 998, 998, 0, 998, 0, 998, 998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 998, 0, 0, 998, 999, 0, 999, 999, 999, 999, 999, 999, 0, 0, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 0, 999, 999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 999, 0, 0, 999, 1000, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, 1000, 1001, 1001, 0, 1001, 1001, 1001, 0, 1001, 1001, 1001, 0, 1001, 1001, 1001, 1001, 1001, 0, 1001, 1001, 1001, 0, 0, 1001, 1001, 1001, 1001, 1001, 1001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1001, 1001, 1001, 1001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1001, 1001, 1001, 1001, 1002, 1002, 0, 1002, 1002, 0, 0, 0, 0, 0, 0, 0, 1002, 1002, 1002, 0, 0, 0, 0, 0, 0, 0, 0, 1002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1002, 1002, 1002, 1002, 0, 0, 0, 1002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1002, 0, 0, 0, 1002, 1002, 1002, 1003, 1003, 0, 1003, 1003, 0, 0, 0, 0, 0, 0, 0, 1003, 1003, 1003, 0, 0, 0, 0, 0, 0, 0, 0, 1003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1003, 1003, 1003, 1003, 0, 0, 0, 1003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1003, 0, 0, 0, 1003, 1003, 1003, 1007, 0, 1007, 1007, 1007, 0, 0, 0, 1007, 1007, 0, 1007, 0, 1007, 1007, 1007, 1007, 0, 1007, 0, 0, 0, 1007, 1007, 1007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1007, 0, 0, 1007, 0, 0, 0, 0, 1007, 0, 0, 0, 0, 0, 0, 0, 0, 1007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1007, 0, 1007, 1013, 0, 0, 0, 0, 1013, 1013, 0, 0, 0, 0, 1013, 1013, 0, 1013, 1013, 0, 0, 1013, 1013, 0, 0, 0, 0, 1013, 0, 0, 1013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1013, 0, 1013, 1015, 0, 0, 0, 0, 1015, 1015, 0, 0, 0, 0, 1015, 1015, 0, 1015, 1015, 0, 1015, 1015, 1015, 0, 0, 0, 0, 1015, 1015, 0, 1015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1015, 0, 1015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1015, 0, 1015, 1017, 0, 0, 1017, 0, 0, 0, 0, 0, 1017, 0, 1017, 0, 1017, 0, 1017, 0, 0, 0, 1017, 1017, 0, 1017, 1017, 1017, 0, 0, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 0, 0, 0, 0, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1035, 0, 1035, 1035, 0, 0, 0, 1035, 0, 1035, 0, 1035, 1035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1035, 0, 0, 0, 1035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1035, 0, 0, 0, 0, 0, 1035, 0, 1035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1035, 0, 0, 0, 1035, 0, 1035, 1051, 0, 1051, 1051, 1051, 0, 0, 0, 1051, 1051, 0, 1051, 0, 1051, 1051, 1051, 1051, 0, 1051, 0, 0, 0, 1051, 1051, 1051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1051, 0, 0, 1051, 0, 0, 0, 0, 1051, 0, 0, 0, 0, 0, 0, 0, 0, 1051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1051, 0, 1051, 1073, 0, 1073, 1073, 1073, 0, 1073, 0, 1073, 1073, 0, 1073, 0, 1073, 1073, 1073, 1073, 1073, 1073, 0, 1073, 0, 1073, 1073, 1073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1073, 0, 0, 1073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1073, 0, 1073, 1079, 0, 1079, 1079, 1079, 0, 1079, 0, 1079, 1079, 0, 1079, 0, 1079, 1079, 1079, 1079, 1079, 1079, 0, 1079, 0, 1079, 1079, 1079, 0, 1079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1079, 0, 0, 1079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1079, 0, 1079, 1080, 0, 1080, 1080, 1080, 1080, 1080, 1080, 0, 0, 1080, 1080, 1080, 1080, 1080, 0, 1080, 1080, 1080, 1080, 0, 1080, 1080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1080, 0, 0, 0, 0, 0, 0, 0, 1080, 0, 0, 1080, 1081, 0, 1081, 1081, 1081, 1081, 1081, 1081, 0, 0, 1081, 1081, 1081, 1081, 1081, 0, 1081, 1081, 1081, 1081, 0, 1081, 1081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1081, 0, 0, 0, 0, 0, 1081, 0, 0, 1081, 1082, 1082, 0, 1082, 1082, 0, 0, 0, 0, 0, 0, 0, 1082, 1082, 1082, 0, 0, 0, 0, 0, 0, 0, 0, 1082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1082, 1082, 1082, 1082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1082, 1082, 1082, 1083, 1083, 0, 1083, 1083, 0, 0, 0, 0, 0, 0, 0, 1083, 1083, 1083, 0, 0, 0, 0, 0, 0, 0, 0, 1083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1083, 1083, 1083, 1083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1083, 1083, 1083, 1098, 0, 0, 0, 0, 1098, 1098, 0, 0, 0, 0, 1098, 1098, 0, 1098, 0, 0, 0, 1098, 1098, 0, 0, 0, 0, 1098, 0, 0, 1098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 0, 1098, 1099, 0, 0, 0, 0, 1099, 1099, 0, 0, 0, 0, 1099, 1099, 0, 1099, 1099, 0, 0, 1099, 1099, 0, 0, 0, 0, 1099, 0, 0, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1099, 0, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1099, 0, 1099, 1153, 0, 1153, 1153, 1153, 0, 1153, 0, 1153, 1153, 0, 1153, 0, 1153, 1153, 1153, 1153, 1153, 1153, 0, 1153, 0, 1153, 1153, 1153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1153, 0, 0, 1153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1153, 0, 1153, 1155, 0, 1155, 1155, 1155, 0, 0, 0, 1155, 1155, 0, 1155, 0, 1155, 1155, 1155, 1155, 0, 1155, 0, 0, 0, 1155, 1155, 1155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1155, 0, 0, 1155, 0, 0, 0, 0, 1155, 0, 0, 0, 0, 0, 0, 0, 0, 1155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1155, 0, 1155, 1183, 0, 1183, 1183, 1183, 0, 0, 0, 1183, 1183, 0, 1183, 0, 1183, 1183, 1183, 1183, 0, 1183, 0, 0, 0, 1183, 1183, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1183, 0, 0, 1183, 0, 0, 0, 0, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1183, 0, 1183, 1190, 0, 1190, 1190, 1190, 1190, 1190, 1190, 0, 0, 1190, 1190, 1190, 1190, 1190, 0, 1190, 1190, 1190, 1190, 0, 1190, 1190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1190, 0, 0, 1190, 1191, 0, 1191, 1191, 1191, 1191, 1191, 1191, 0, 0, 1191, 1191, 1191, 1191, 1191, 0, 1191, 1191, 1191, 1191, 0, 1191, 1191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1191, 0, 0, 1191, 1241, 0, 1241, 1241, 1241, 0, 0, 0, 1241, 1241, 0, 1241, 0, 1241, 1241, 1241, 1241, 0, 1241, 0, 0, 0, 1241, 1241, 1241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1241, 0, 0, 1241, 0, 0, 0, 0, 1241, 0, 0, 0, 0, 0, 0, 0, 0, 1241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1241, 0, 1241, 1270, 0, 1270, 1270, 1270, 0, 1270, 0, 1270, 1270, 0, 1270, 0, 1270, 1270, 1270, 1270, 1270, 1270, 0, 1270, 0, 1270, 1270, 1270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1270, 0, 0, 1270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1270, 0, 1270, 1274, 0, 1274, 1274, 1274, 0, 1274, 0, 1274, 1274, 0, 1274, 0, 1274, 1274, 1274, 1274, 1274, 1274, 0, 1274, 0, 1274, 1274, 1274, 0, 1274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1274, 0, 0, 1274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1274, 0, 1274, 1304, 0, 1304, 1304, 1304, 0, 1304, 0, 1304, 1304, 0, 1304, 0, 1304, 1304, 1304, 1304, 1304, 1304, 0, 1304, 0, 1304, 1304, 1304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1304, 0, 0, 1304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1304, 0, 1304, 1320, 0, 1320, 1320, 1320, 0, 0, 0, 1320, 1320, 0, 1320, 0, 1320, 1320, 1320, 1320, 0, 1320, 0, 0, 0, 1320, 1320, 1320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1320, 0, 0, 1320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1320, 0, 1320, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 0, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1321, 1321, 1321, 1321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1321, 1321, 1321, 1321, 1361, 0, 0, 1361, 1361, 0, 1361, 1361, 1361, 0, 1361, 0, 1361, 1361, 1361, 0, 1361, 1361, 1361, 0, 0, 1361, 1361, 1361, 1361, 1361, 1361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1361, 1361, 1370, 1370, 0, 1370, 1370, 0, 0, 0, 0, 0, 0, 0, 1370, 1370, 1370, 0, 0, 0, 0, 0, 0, 0, 0, 1370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1370, 1370, 1370, 1370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1370, 1370, 1370, 1391, 0, 1391, 1391, 1391, 0, 0, 0, 1391, 1391, 0, 1391, 0, 1391, 1391, 1391, 1391, 0, 1391, 0, 0, 0, 1391, 1391, 1391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1391, 0, 0, 1391, 0, 1391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1391, 0, 1391, 1392, 0, 0, 1392, 1392, 0, 1392, 1392, 1392, 0, 1392, 0, 1392, 1392, 1392, 0, 1392, 1392, 1392, 0, 0, 1392, 1392, 1392, 1392, 1392, 1392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1392, 1392, 1412, 0, 0, 1412, 1412, 0, 1412, 1412, 1412, 0, 1412, 0, 1412, 1412, 1412, 0, 1412, 1412, 1412, 0, 0, 1412, 1412, 1412, 1412, 1412, 1412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1412, 1412, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1481, 0, 0, 0, 1481, 1481, 0, 0, 0, 0, 1481, 0, 0, 1481, 1481, 0, 1481, 0, 1481, 1481, 0, 0, 0, 1481, 0, 0, 0, 1481, 0, 0, 0, 1481, 0, 0, 1481, 1482, 1482, 0, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1486, 0, 0, 0, 1486, 1486, 0, 0, 0, 0, 1486, 0, 0, 1486, 1486, 0, 1486, 1486, 1486, 1486, 0, 0, 0, 1486, 0, 0, 1486, 1486, 0, 0, 0, 1486, 0, 0, 1486, 1487, 0, 0, 0, 1487, 1487, 0, 0, 0, 0, 1487, 0, 0, 1487, 1487, 0, 1487, 1487, 1487, 1487, 0, 0, 0, 1487, 0, 0, 1487, 1487, 0, 1487, 0, 1487, 0, 0, 1487, 1488, 0, 1488, 1488, 0, 1488, 0, 0, 0, 0, 0, 0, 1488, 1488, 1490, 1490, 1490, 1490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1490, 0, 0, 1490, 0, 1490, 0, 1490, 1490, 0, 1490, 0, 0, 0, 0, 1490, 1491, 0, 0, 0, 1491, 1491, 1491, 0, 0, 0, 1491, 1491, 0, 1491, 1491, 0, 1491, 1491, 1491, 1491, 1491, 0, 1491, 1491, 0, 0, 1491, 1491, 0, 1491, 0, 1491, 0, 0, 1491, 1492, 0, 0, 0, 1492, 1492, 0, 0, 0, 0, 1492, 0, 0, 1492, 1492, 0, 1492, 0, 1492, 1492, 0, 0, 0, 1492, 0, 0, 0, 1492, 0, 0, 0, 1492, 0, 0, 1492, 1493, 1493, 0, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 0, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1494, 0, 0, 0, 1494, 1494, 0, 0, 0, 0, 1494, 0, 0, 1494, 1494, 0, 1494, 0, 1494, 1494, 0, 0, 0, 1494, 0, 0, 0, 1494, 0, 0, 0, 1494, 0, 0, 1494, 1495, 1495, 0, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1498, 1498, 1498, 1498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1498, 0, 0, 1498, 0, 1498, 0, 1498, 1498, 0, 1498, 0, 0, 0, 0, 1498, 1499, 0, 0, 0, 1499, 0, 0, 0, 0, 0, 1499, 0, 0, 1499, 1499, 0, 1499, 0, 1499, 1499, 0, 0, 0, 1499, 0, 0, 0, 1499, 0, 0, 0, 1499, 0, 0, 1499, 1501, 1501, 1501, 1501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1501, 0, 0, 1501, 0, 1501, 0, 1501, 1501, 0, 1501, 0, 0, 0, 0, 1501, 1504, 0, 0, 0, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1505, 1505, 0, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 0, 1505, 1505, 1505, 0, 1505, 1505, 0, 1505, 1505, 1505, 1505, 1505, 1506, 1506, 0, 1506, 1506, 1506, 1506, 0, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 0, 1506, 1506, 0, 1506, 1506, 1506, 1506, 1506, 1507, 1507, 0, 1507, 1507, 1507, 1507, 0, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 0, 1507, 1507, 0, 1507, 1507, 1507, 1507, 1507, 1508, 1508, 0, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 0, 1508, 1508, 0, 1508, 1508, 1508, 1508, 1508, 1509, 1509, 0, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 0, 1509, 1509, 0, 1509, 1509, 1509, 1509, 1509, 1510, 1510, 0, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 0, 1510, 1510, 0, 1510, 1510, 1510, 1510, 1510, 1511, 1511, 0, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 0, 1511, 1511, 0, 1511, 1511, 1511, 1511, 1511, 1512, 1512, 0, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 0, 1512, 1512, 0, 1512, 1512, 1512, 1512, 1512, 1513, 0, 0, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 0, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1514, 1514, 0, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1516, 1516, 0, 1516, 1516, 0, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1517, 0, 1517, 1517, 1517, 1517, 1517, 0, 0, 0, 0, 0, 0, 1517, 0, 1517, 1518, 0, 1518, 0, 1518, 1518, 1518, 0, 0, 0, 0, 0, 0, 1518, 0, 1518, 1519, 1519, 0, 0, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1520, 1520, 0, 1520, 1520, 1520, 1520, 0, 1520, 0, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 0, 1520, 1520, 1520, 0, 1520, 1520, 0, 1520, 1520, 0, 0, 1520, 1522, 0, 0, 0, 0, 1522, 0, 0, 0, 0, 1522, 1522, 1522, 1522, 1522, 0, 0, 0, 0, 0, 0, 1522, 1523, 0, 0, 0, 1523, 0, 0, 0, 0, 0, 1523, 0, 0, 1523, 1523, 0, 1523, 0, 1523, 1523, 0, 0, 0, 1523, 0, 0, 0, 1523, 0, 0, 0, 1523, 0, 0, 1523, 1525, 1525, 1525, 1525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1525, 0, 0, 1525, 0, 1525, 0, 1525, 1525, 0, 1525, 0, 0, 0, 0, 1525, 1526, 0, 0, 0, 0, 1526, 1526, 0, 1526, 0, 1526, 1526, 1526, 1526, 1526, 0, 0, 0, 0, 0, 0, 1526, 1527, 0, 0, 0, 1527, 1527, 0, 0, 0, 0, 1527, 0, 0, 1527, 1527, 0, 1527, 0, 1527, 1527, 0, 0, 0, 1527, 0, 0, 0, 1527, 0, 0, 0, 1527, 0, 0, 1527, 1529, 1529, 0, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 0, 1529, 1529, 0, 1529, 1529, 1529, 1529, 1529, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 0, 1533, 1533, 0, 1533, 1533, 1533, 1533, 1533, 1533, 0, 0, 1533, 0, 1533, 1533, 1533, 1533, 1533, 1535, 1535, 0, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1536, 1536, 0, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1537, 0, 0, 0, 0, 1537, 0, 0, 0, 0, 0, 1537, 0, 1537, 1537, 0, 1537, 0, 0, 0, 0, 1537, 1542, 0, 0, 0, 1542, 1542, 0, 0, 0, 0, 1542, 0, 0, 1542, 1542, 0, 1542, 1542, 1542, 1542, 0, 0, 0, 1542, 0, 0, 1542, 1542, 0, 0, 0, 1542, 0, 0, 1542, 1543, 0, 1543, 1543, 0, 1543, 0, 0, 0, 0, 0, 0, 1543, 1543, 1545, 0, 0, 0, 1545, 1545, 0, 0, 0, 0, 1545, 0, 0, 1545, 1545, 0, 1545, 1545, 1545, 1545, 0, 0, 0, 1545, 0, 0, 1545, 1545, 0, 1545, 0, 1545, 0, 0, 1545, 1546, 0, 1546, 1546, 0, 1546, 0, 0, 0, 0, 0, 0, 1546, 1546, 1547, 0, 0, 0, 1547, 1547, 0, 0, 0, 0, 1547, 0, 0, 1547, 1547, 0, 1547, 0, 1547, 1547, 0, 0, 0, 1547, 0, 0, 0, 1547, 0, 0, 0, 1547, 0, 0, 1547, 1551, 1551, 1551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1551, 1551, 0, 0, 0, 0, 1551, 0, 0, 1551, 1554, 0, 0, 0, 0, 0, 0, 0, 1554, 0, 0, 1554, 1554, 0, 1554, 0, 0, 0, 1554, 1554, 0, 1554, 0, 1554, 0, 0, 1554, 1555, 0, 1555, 1555, 0, 1555, 0, 0, 0, 0, 0, 0, 1555, 1555, 0, 0, 0, 0, 0, 0, 1555, 1556, 0, 0, 0, 1556, 1556, 1556, 0, 0, 0, 1556, 1556, 0, 1556, 1556, 0, 1556, 1556, 1556, 1556, 1556, 0, 1556, 1556, 0, 0, 1556, 1556, 0, 1556, 0, 1556, 0, 0, 1556, 1558, 0, 0, 0, 1558, 1558, 0, 0, 0, 0, 1558, 1558, 0, 1558, 1558, 0, 1558, 0, 1558, 1558, 0, 0, 1558, 1558, 0, 0, 0, 1558, 0, 0, 0, 1558, 0, 0, 1558, 1559, 1559, 0, 1559, 1559, 1559, 0, 0, 0, 0, 1559, 0, 0, 1559, 1559, 0, 1559, 1559, 1559, 1559, 0, 0, 0, 1559, 0, 0, 0, 1559, 0, 0, 0, 1559, 0, 0, 1559, 1560, 1560, 0, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 0, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1561, 0, 0, 0, 1561, 1561, 0, 0, 0, 0, 1561, 0, 0, 1561, 1561, 0, 1561, 0, 1561, 1561, 0, 0, 0, 1561, 0, 0, 0, 1561, 0, 0, 0, 1561, 0, 0, 1561, 1562, 1562, 0, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1563, 1563, 0, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1566, 1566, 1566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1566, 1566, 0, 0, 0, 0, 1566, 0, 0, 1566, 1568, 0, 0, 0, 1568, 0, 0, 0, 0, 0, 1568, 0, 0, 1568, 1568, 0, 1568, 0, 1568, 1568, 0, 0, 0, 1568, 0, 0, 0, 1568, 0, 0, 0, 1568, 0, 0, 1568, 1573, 0, 0, 0, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1574, 1574, 0, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 0, 1574, 1574, 1574, 0, 1574, 1574, 0, 1574, 1574, 1574, 1574, 1574, 1575, 1575, 0, 1575, 1575, 1575, 1575, 0, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 0, 1575, 1575, 0, 1575, 1575, 1575, 1575, 1575, 1576, 1576, 0, 1576, 1576, 1576, 1576, 0, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 0, 1576, 1576, 0, 1576, 1576, 1576, 1576, 1576, 1577, 1577, 0, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 0, 1577, 1577, 0, 1577, 1577, 1577, 1577, 1577, 1578, 1578, 0, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 0, 1578, 1578, 0, 1578, 1578, 1578, 1578, 1578, 1579, 1579, 0, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 0, 1579, 1579, 0, 1579, 1579, 1579, 1579, 1579, 1580, 1580, 0, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 0, 1580, 1580, 0, 1580, 1580, 1580, 1580, 1580, 1581, 1581, 0, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 0, 1581, 1581, 0, 1581, 1581, 1581, 1581, 1581, 1582, 0, 0, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 0, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1583, 1583, 0, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1584, 1584, 0, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1586, 1586, 0, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1587, 0, 1587, 1587, 1587, 1587, 1587, 0, 0, 0, 0, 0, 0, 1587, 0, 1587, 1588, 0, 1588, 0, 1588, 1588, 1588, 0, 0, 0, 0, 0, 0, 1588, 0, 1588, 1589, 0, 1589, 1589, 1589, 1589, 1589, 0, 0, 0, 0, 0, 0, 1589, 0, 1589, 1590, 1590, 0, 0, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1591, 1591, 0, 1591, 1591, 1591, 1591, 0, 1591, 0, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 0, 1591, 1591, 1591, 0, 1591, 1591, 0, 1591, 1591, 0, 0, 1591, 1592, 1592, 0, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1593, 0, 0, 0, 0, 1593, 0, 0, 0, 0, 1593, 1593, 1593, 1593, 1593, 0, 0, 0, 0, 0, 0, 1593, 1595, 0, 0, 0, 0, 0, 0, 0, 1595, 0, 0, 1595, 1595, 0, 1595, 0, 0, 0, 1595, 1595, 0, 1595, 0, 1595, 0, 0, 1595, 1596, 0, 0, 0, 1596, 0, 0, 0, 0, 0, 1596, 0, 0, 1596, 1596, 0, 1596, 0, 1596, 1596, 0, 0, 0, 1596, 0, 0, 0, 1596, 0, 0, 0, 1596, 0, 0, 1596, 1599, 0, 0, 0, 0, 1599, 1599, 0, 1599, 0, 1599, 1599, 1599, 1599, 1599, 0, 0, 0, 0, 0, 0, 1599, 1600, 0, 0, 0, 1600, 1600, 0, 0, 0, 0, 1600, 0, 0, 1600, 1600, 0, 1600, 0, 1600, 1600, 0, 0, 0, 1600, 0, 0, 0, 1600, 0, 0, 0, 1600, 0, 0, 1600, 1601, 1601, 0, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 0, 1601, 1601, 0, 1601, 1601, 1601, 1601, 1601, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 0, 1605, 1605, 0, 1605, 1605, 1605, 1605, 1605, 1605, 0, 0, 1605, 0, 1605, 1605, 1605, 1605, 1605, 1608, 0, 0, 0, 0, 1608, 0, 0, 0, 0, 0, 1608, 0, 1608, 1608, 0, 1608, 0, 0, 0, 0, 1608, 1610, 0, 0, 0, 0, 0, 0, 0, 1610, 0, 0, 0, 1610, 0, 1610, 0, 0, 0, 1610, 1610, 0, 0, 0, 1610, 0, 0, 1610, 1614, 1614, 0, 1614, 1614, 1614, 1614, 0, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1617, 0, 1617, 1617, 0, 1617, 0, 0, 0, 0, 0, 0, 1617, 1617, 1618, 0, 0, 0, 1618, 1618, 0, 0, 0, 0, 1618, 0, 0, 1618, 1618, 0, 1618, 1618, 1618, 1618, 0, 0, 0, 1618, 0, 0, 0, 1618, 0, 1618, 0, 1618, 0, 0, 1618, 1619, 1619, 1619, 1619, 0, 0, 0, 0, 0, 0, 0, 1619, 0, 1619, 1620, 1620, 1620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1620, 0, 0, 0, 0, 0, 1620, 0, 0, 1620, 1621, 1621, 1621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1621, 1621, 0, 0, 0, 0, 1621, 0, 0, 1621, 1623, 0, 0, 0, 0, 1623, 0, 0, 0, 0, 0, 1623, 0, 1623, 1623, 0, 1623, 0, 0, 0, 0, 1623, 1624, 0, 0, 0, 0, 0, 0, 0, 1624, 0, 0, 1624, 1624, 0, 1624, 0, 0, 0, 1624, 1624, 0, 1624, 0, 1624, 0, 0, 1624, 1625, 0, 0, 0, 0, 1625, 0, 0, 1625, 0, 1625, 1625, 0, 1625, 1625, 0, 1625, 0, 0, 0, 1625, 1625, 1627, 0, 0, 0, 0, 0, 0, 0, 1627, 0, 0, 0, 1627, 0, 1627, 0, 0, 0, 1627, 1627, 0, 0, 0, 1627, 0, 0, 1627, 1628, 0, 0, 0, 1628, 1628, 1628, 0, 0, 0, 1628, 1628, 0, 1628, 1628, 0, 1628, 1628, 1628, 1628, 1628, 0, 1628, 1628, 0, 0, 1628, 1628, 0, 1628, 0, 1628, 0, 0, 1628, 1629, 0, 0, 0, 1629, 1629, 0, 0, 0, 0, 1629, 1629, 0, 1629, 1629, 0, 1629, 0, 1629, 1629, 0, 0, 1629, 1629, 0, 0, 0, 1629, 0, 0, 0, 1629, 0, 0, 1629, 1630, 0, 0, 0, 0, 0, 0, 0, 1630, 0, 0, 0, 1630, 0, 1630, 0, 0, 0, 1630, 1630, 0, 0, 0, 1630, 0, 0, 1630, 1632, 1632, 1632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1632, 0, 0, 0, 0, 0, 1632, 0, 0, 1632, 1633, 1633, 1633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1633, 1633, 0, 0, 0, 0, 1633, 0, 0, 1633, 1637, 0, 0, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 0, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1638, 0, 1638, 1638, 1638, 1638, 1638, 0, 0, 0, 0, 0, 0, 1638, 0, 1638, 1639, 0, 1639, 0, 1639, 1639, 1639, 0, 0, 0, 0, 0, 0, 1639, 0, 1639, 1640, 1640, 0, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1641, 1641, 0, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1642, 1642, 0, 1642, 1642, 1642, 1642, 0, 1642, 0, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 0, 1642, 1642, 1642, 0, 1642, 1642, 0, 1642, 1642, 0, 0, 1642, 1643, 0, 0, 0, 0, 0, 0, 0, 1643, 0, 0, 1643, 1643, 0, 1643, 0, 0, 0, 1643, 1643, 0, 1643, 0, 1643, 0, 0, 1643, 1646, 0, 0, 0, 1646, 1646, 0, 0, 0, 0, 1646, 0, 0, 1646, 1646, 0, 1646, 0, 1646, 1646, 0, 0, 0, 1646, 0, 0, 0, 1646, 0, 0, 0, 1646, 0, 0, 1646, 1647, 1647, 0, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 0, 1647, 1647, 0, 1647, 1647, 1647, 1647, 1647, 1649, 0, 0, 0, 0, 1649, 0, 0, 0, 0, 0, 1649, 0, 1649, 1649, 0, 1649, 0, 0, 0, 0, 1649, 1650, 0, 0, 0, 0, 0, 0, 0, 1650, 0, 0, 0, 1650, 0, 1650, 0, 0, 0, 1650, 1650, 0, 0, 0, 1650, 0, 0, 1650, 1651, 0, 0, 0, 0, 1651, 0, 0, 0, 0, 0, 1651, 0, 1651, 1651, 0, 1651, 0, 0, 0, 0, 1651, 1654, 1654, 0, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1657, 1657, 1657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1657, 1657, 0, 0, 0, 1657, 1657, 0, 0, 1657, 1660, 0, 0, 0, 0, 1660, 0, 0, 0, 0, 0, 1660, 0, 1660, 1660, 0, 1660, 0, 0, 0, 0, 1660, 1662, 0, 0, 0, 0, 0, 0, 0, 1662, 0, 0, 0, 1662, 0, 1662, 0, 0, 0, 1662, 1662, 0, 0, 0, 1662, 0, 0, 1662, 1663, 0, 1663, 1663, 0, 1663, 0, 0, 0, 0, 0, 0, 1663, 1663, 0, 0, 0, 0, 0, 0, 1663, 1664, 0, 0, 0, 0, 1664, 0, 0, 1664, 0, 1664, 1664, 0, 1664, 1664, 0, 1664, 0, 0, 0, 1664, 1664, 1666, 0, 0, 0, 0, 0, 0, 0, 1666, 0, 0, 0, 1666, 0, 1666, 0, 0, 0, 1666, 1666, 0, 0, 0, 1666, 0, 0, 1666, 1667, 0, 0, 0, 1667, 1667, 1667, 0, 0, 0, 1667, 1667, 0, 1667, 1667, 0, 1667, 1667, 1667, 1667, 1667, 0, 1667, 1667, 0, 0, 1667, 1667, 0, 1667, 0, 1667, 0, 0, 1667, 1668, 0, 1668, 1668, 1668, 1668, 1668, 1668, 0, 0, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 0, 1668, 1668, 1668, 0, 0, 0, 0, 0, 0, 1668, 1669, 0, 0, 0, 0, 0, 0, 0, 1669, 0, 0, 0, 1669, 0, 1669, 0, 0, 0, 1669, 1669, 0, 0, 0, 1669, 0, 0, 1669, 1670, 1670, 1670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1670, 1670, 0, 0, 0, 1670, 1670, 0, 0, 1670, 1673, 1673, 0, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1674, 1674, 0, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1675, 1675, 0, 1675, 1675, 1675, 1675, 0, 1675, 0, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 0, 1675, 1675, 1675, 0, 1675, 1675, 0, 1675, 1675, 0, 0, 1675, 1677, 0, 0, 0, 1677, 1677, 0, 0, 0, 0, 1677, 0, 0, 1677, 1677, 0, 1677, 0, 1677, 1677, 0, 0, 0, 1677, 0, 0, 0, 1677, 0, 0, 0, 1677, 0, 0, 1677, 1678, 1678, 0, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 0, 1678, 1678, 0, 1678, 1678, 1678, 1678, 1678, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 0, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 0, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 0, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 0, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1682, 0, 0, 0, 0, 1682, 0, 0, 0, 0, 0, 1682, 0, 1682, 1682, 0, 1682, 0, 0, 0, 0, 1682, 1683, 0, 0, 0, 0, 0, 0, 0, 1683, 0, 0, 0, 1683, 0, 1683, 0, 0, 0, 1683, 1683, 0, 0, 0, 1683, 0, 0, 1683, 1684, 0, 0, 0, 0, 0, 0, 0, 1684, 0, 0, 0, 1684, 0, 1684, 0, 0, 0, 1684, 1684, 0, 0, 0, 1684, 0, 0, 1684, 1685, 0, 0, 0, 0, 1685, 0, 0, 0, 0, 0, 1685, 0, 1685, 1685, 0, 1685, 0, 0, 0, 0, 1685, 1688, 1688, 1688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1688, 0, 0, 0, 0, 1688, 1688, 0, 0, 1688, 1689, 1689, 1689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1689, 1689, 0, 0, 0, 1689, 1689, 0, 0, 1689, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 0, 1690, 0, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1692, 0, 0, 0, 0, 1692, 0, 0, 0, 0, 0, 1692, 0, 1692, 1692, 0, 1692, 0, 0, 0, 0, 1692, 1693, 0, 0, 0, 0, 0, 0, 0, 1693, 0, 0, 0, 1693, 0, 1693, 0, 0, 0, 1693, 1693, 0, 0, 0, 1693, 0, 0, 1693, 1694, 0, 0, 0, 0, 1694, 0, 0, 0, 0, 0, 1694, 0, 1694, 1694, 0, 1694, 0, 0, 0, 0, 1694, 1695, 0, 0, 0, 0, 1695, 0, 0, 1695, 0, 1695, 1695, 0, 1695, 1695, 0, 1695, 0, 0, 0, 1695, 1695, 1696, 0, 0, 0, 0, 1696, 0, 0, 1696, 0, 1696, 1696, 0, 1696, 1696, 0, 1696, 0, 0, 0, 1696, 1696, 1697, 0, 0, 0, 0, 0, 0, 0, 1697, 0, 0, 0, 1697, 0, 1697, 0, 0, 0, 1697, 1697, 0, 0, 0, 1697, 0, 0, 1697, 1698, 0, 1698, 1698, 1698, 1698, 1698, 1698, 0, 0, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 0, 1698, 0, 1698, 1698, 1698, 0, 0, 0, 0, 1698, 0, 1698, 1699, 0, 1699, 1699, 1699, 1699, 1699, 1699, 0, 0, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 0, 1699, 0, 1699, 1699, 1699, 0, 0, 0, 0, 1699, 0, 1699, 1700, 0, 0, 0, 1700, 1700, 1700, 0, 0, 0, 1700, 1700, 0, 1700, 1700, 0, 1700, 1700, 1700, 1700, 1700, 0, 1700, 1700, 0, 0, 1700, 1700, 0, 1700, 0, 1700, 0, 0, 1700, 1701, 0, 0, 0, 0, 0, 0, 0, 1701, 0, 0, 0, 1701, 0, 1701, 0, 0, 0, 1701, 1701, 0, 0, 0, 1701, 0, 0, 1701, 1702, 1702, 1702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1702, 0, 0, 0, 0, 1702, 1702, 0, 0, 1702, 1703, 1703, 1703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1703, 1703, 0, 0, 0, 1703, 1703, 0, 0, 1703, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 0, 1704, 0, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1707, 1707, 0, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1708, 1708, 0, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 0, 1709, 1709, 1709, 1709, 0, 1709, 0, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 0, 1709, 1709, 1709, 0, 1709, 1709, 0, 1709, 1709, 0, 0, 1709, 1711, 0, 0, 0, 1711, 1711, 0, 0, 0, 0, 1711, 0, 0, 1711, 1711, 0, 1711, 0, 1711, 1711, 0, 0, 0, 1711, 0, 0, 0, 1711, 0, 0, 0, 1711, 0, 0, 1711, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 0, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 0, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1713, 0, 0, 0, 0, 1713, 0, 0, 0, 0, 0, 1713, 0, 1713, 1713, 0, 1713, 0, 0, 0, 0, 1713, 1714, 0, 0, 0, 0, 0, 0, 0, 1714, 0, 0, 0, 1714, 0, 1714, 0, 0, 0, 1714, 1714, 0, 0, 0, 1714, 0, 0, 1714, 1715, 0, 0, 0, 0, 1715, 0, 0, 0, 0, 0, 1715, 0, 1715, 1715, 0, 1715, 0, 0, 0, 0, 1715, 1716, 0, 0, 0, 0, 1716, 0, 0, 0, 0, 0, 1716, 0, 1716, 1716, 0, 1716, 0, 0, 0, 0, 1716, 1718, 1718, 1718, 1718, 1718, 0, 1718, 1718, 1718, 1718, 0, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 0, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1722, 0, 0, 0, 0, 1722, 0, 0, 0, 0, 0, 1722, 0, 1722, 1722, 0, 1722, 0, 0, 0, 0, 1722, 1723, 0, 0, 0, 0, 0, 0, 0, 1723, 0, 0, 0, 1723, 0, 1723, 0, 0, 0, 1723, 1723, 0, 0, 0, 1723, 0, 0, 1723, 1724, 0, 0, 0, 0, 1724, 0, 0, 0, 0, 0, 1724, 0, 1724, 1724, 0, 1724, 0, 0, 0, 0, 1724, 1725, 0, 0, 0, 0, 1725, 0, 0, 1725, 0, 1725, 1725, 0, 1725, 1725, 0, 1725, 0, 0, 0, 1725, 1725, 1726, 0, 0, 0, 0, 1726, 0, 0, 1726, 0, 1726, 1726, 0, 1726, 1726, 0, 1726, 0, 0, 0, 1726, 1726, 1727, 0, 0, 0, 0, 0, 0, 0, 1727, 0, 0, 0, 1727, 0, 1727, 0, 0, 0, 1727, 1727, 0, 0, 0, 1727, 0, 0, 1727, 1728, 0, 1728, 1728, 1728, 1728, 1728, 0, 1728, 0, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 0, 1728, 0, 1728, 1728, 1728, 0, 0, 0, 0, 0, 1728, 1728, 1729, 0, 1729, 1729, 1729, 1729, 1729, 1729, 0, 0, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 0, 1729, 1729, 1729, 0, 0, 0, 0, 1729, 0, 1729, 1730, 0, 1730, 1730, 1730, 1730, 1730, 1730, 0, 0, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 0, 1730, 0, 1730, 1730, 1730, 0, 0, 0, 0, 1730, 0, 1730, 1731, 1731, 0, 1731, 1731, 0, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 0, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1732, 1732, 0, 1732, 1732, 0, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 0, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1733, 1733, 0, 1733, 1733, 0, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 0, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1734, 0, 0, 0, 1734, 1734, 1734, 0, 0, 0, 1734, 1734, 0, 1734, 1734, 0, 1734, 1734, 1734, 1734, 1734, 0, 1734, 1734, 0, 0, 1734, 1734, 0, 1734, 0, 1734, 0, 0, 1734, 1735, 1735, 1735, 1735, 1735, 0, 1735, 1735, 1735, 1735, 0, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 0, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1740, 1740, 0, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1741, 1741, 0, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1742, 1742, 0, 1742, 1742, 1742, 1742, 0, 1742, 0, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 0, 1742, 1742, 1742, 0, 1742, 1742, 0, 1742, 1742, 0, 0, 1742, 1744, 0, 0, 0, 1744, 1744, 0, 0, 0, 0, 1744, 0, 0, 1744, 1744, 0, 1744, 0, 1744, 1744, 0, 0, 0, 1744, 0, 0, 0, 1744, 0, 0, 0, 1744, 0, 0, 1744, 1745, 0, 0, 0, 0, 1745, 0, 0, 0, 0, 0, 1745, 0, 1745, 1745, 0, 1745, 0, 0, 0, 0, 1745, 1746, 0, 0, 0, 0, 0, 0, 0, 1746, 0, 0, 0, 1746, 0, 1746, 0, 0, 0, 1746, 1746, 0, 0, 0, 1746, 0, 0, 1746, 1747, 0, 0, 0, 0, 1747, 0, 0, 0, 0, 0, 1747, 0, 1747, 1747, 0, 1747, 0, 0, 0, 0, 1747, 1748, 0, 0, 0, 0, 1748, 0, 0, 0, 0, 0, 1748, 0, 1748, 1748, 0, 1748, 0, 0, 0, 0, 1748, 1749, 1749, 1749, 1749, 1749, 0, 1749, 1749, 1749, 1749, 0, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 0, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1753, 0, 0, 0, 0, 1753, 0, 0, 0, 0, 0, 1753, 0, 1753, 1753, 0, 1753, 0, 0, 0, 0, 1753, 1754, 0, 0, 0, 0, 1754, 0, 0, 0, 0, 0, 1754, 0, 1754, 1754, 0, 1754, 0, 0, 0, 0, 1754, 1755, 0, 0, 0, 0, 1755, 0, 0, 1755, 0, 1755, 1755, 0, 1755, 1755, 0, 1755, 0, 0, 0, 1755, 1755, 1756, 0, 0, 0, 0, 1756, 0, 0, 1756, 0, 1756, 1756, 0, 1756, 1756, 0, 1756, 0, 0, 0, 1756, 1756, 1757, 0, 0, 0, 0, 0, 0, 0, 1757, 0, 0, 0, 1757, 0, 1757, 0, 0, 0, 1757, 1757, 0, 0, 0, 1757, 0, 0, 1757, 1758, 0, 1758, 1758, 1758, 1758, 1758, 0, 1758, 0, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 0, 1758, 0, 1758, 1758, 1758, 0, 0, 0, 0, 0, 1758, 1758, 1759, 0, 1759, 1759, 1759, 1759, 1759, 1759, 0, 0, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 0, 1759, 0, 1759, 1759, 1759, 0, 0, 0, 0, 1759, 0, 1759, 1760, 0, 0, 1760, 0, 1760, 1760, 1760, 1760, 1760, 0, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 0, 0, 0, 0, 0, 1760, 1760, 1761, 0, 1761, 1761, 1761, 1761, 1761, 1761, 0, 0, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 0, 1761, 1761, 1761, 0, 0, 0, 0, 1761, 0, 1761, 1762, 0, 1762, 1762, 1762, 1762, 1762, 1762, 0, 0, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 0, 1762, 1762, 1762, 0, 0, 0, 0, 1762, 0, 1762, 1763, 0, 1763, 1763, 1763, 1763, 1763, 1763, 0, 0, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 0, 1763, 1763, 1763, 0, 0, 0, 0, 1763, 0, 1763, 1764, 1764, 0, 1764, 1764, 0, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 0, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1765, 1765, 0, 1765, 1765, 0, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 0, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1766, 1766, 0, 1766, 1766, 0, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1767, 0, 0, 0, 1767, 1767, 1767, 0, 0, 0, 1767, 1767, 0, 1767, 1767, 0, 1767, 1767, 1767, 1767, 1767, 0, 1767, 1767, 0, 0, 1767, 1767, 0, 1767, 0, 1767, 0, 0, 1767, 1768, 1768, 1768, 1768, 1768, 0, 1768, 1768, 1768, 1768, 0, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 0, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1773, 1773, 0, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1774, 1774, 0, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1775, 1775, 0, 1775, 1775, 1775, 1775, 0, 1775, 0, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 0, 1775, 1775, 1775, 0, 1775, 1775, 0, 1775, 1775, 0, 0, 1775, 1777, 0, 0, 0, 1777, 1777, 0, 0, 0, 0, 1777, 0, 0, 1777, 1777, 0, 1777, 0, 1777, 1777, 0, 0, 0, 1777, 0, 0, 0, 1777, 0, 0, 0, 1777, 0, 0, 1777, 1778, 0, 0, 0, 0, 1778, 0, 0, 0, 0, 0, 1778, 0, 1778, 1778, 0, 1778, 0, 0, 0, 0, 1778, 1779, 0, 0, 0, 0, 1779, 0, 0, 0, 0, 0, 1779, 0, 1779, 1779, 0, 1779, 0, 0, 0, 0, 1779, 1780, 0, 0, 0, 0, 1780, 0, 0, 0, 0, 0, 1780, 0, 1780, 1780, 0, 1780, 0, 0, 0, 0, 1780, 1782, 0, 0, 0, 0, 1782, 0, 0, 0, 0, 0, 1782, 0, 1782, 1782, 0, 1782, 0, 0, 0, 0, 1782, 1783, 0, 0, 0, 0, 1783, 0, 0, 0, 0, 0, 1783, 0, 1783, 1783, 0, 1783, 0, 0, 0, 0, 1783, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 0, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 0, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1785, 0, 0, 0, 0, 1785, 0, 0, 1785, 0, 1785, 1785, 0, 1785, 1785, 0, 1785, 0, 0, 0, 1785, 1785, 1786, 0, 0, 0, 0, 1786, 0, 0, 1786, 0, 1786, 1786, 0, 1786, 1786, 0, 1786, 0, 0, 0, 1786, 1786, 1787, 0, 0, 0, 0, 0, 0, 0, 1787, 0, 0, 0, 1787, 0, 1787, 0, 0, 0, 1787, 1787, 0, 0, 0, 1787, 0, 0, 1787, 1788, 0, 1788, 1788, 1788, 1788, 1788, 1788, 0, 0, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 0, 1788, 1788, 1788, 0, 0, 0, 0, 1788, 0, 1788, 1789, 0, 0, 1789, 0, 1789, 1789, 1789, 1789, 1789, 0, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 0, 0, 0, 0, 0, 1789, 1789, 1790, 0, 1790, 1790, 1790, 1790, 1790, 1790, 0, 0, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 0, 1790, 0, 1790, 1790, 1790, 0, 0, 0, 0, 1790, 0, 1790, 1791, 0, 1791, 1791, 1791, 1791, 1791, 1791, 0, 0, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 0, 1791, 1791, 1791, 0, 0, 0, 0, 1791, 0, 1791, 1792, 0, 1792, 1792, 1792, 1792, 1792, 1792, 0, 0, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 0, 1792, 1792, 1792, 0, 0, 0, 0, 1792, 0, 1792, 1793, 1793, 0, 1793, 1793, 0, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1794, 1794, 0, 1794, 1794, 0, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1795, 1795, 0, 1795, 1795, 0, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 0, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1796, 1796, 0, 1796, 1796, 1796, 1796, 0, 1796, 1796, 1796, 1796, 0, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 0, 1796, 1796, 1796, 0, 1796, 1796, 1796, 1796, 0, 1796, 0, 0, 1796, 1799, 1799, 0, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1800, 1800, 0, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1801, 1801, 0, 1801, 1801, 1801, 1801, 0, 1801, 0, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 0, 1801, 1801, 1801, 0, 1801, 1801, 0, 1801, 1801, 0, 0, 1801, 1803, 1803, 0, 1803, 1803, 1803, 0, 0, 0, 0, 1803, 0, 0, 1803, 1803, 0, 1803, 0, 1803, 1803, 0, 0, 1803, 1803, 0, 0, 0, 1803, 0, 0, 0, 1803, 0, 0, 1803, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 0, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 0, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1805, 0, 0, 0, 0, 1805, 0, 0, 0, 0, 0, 1805, 0, 1805, 1805, 0, 1805, 0, 0, 0, 0, 1805, 1806, 0, 0, 0, 0, 1806, 0, 0, 0, 0, 0, 1806, 0, 1806, 1806, 0, 1806, 0, 0, 0, 0, 1806, 1807, 0, 1807, 1807, 0, 1807, 0, 1807, 1807, 0, 1807, 0, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 0, 1807, 1807, 1807, 0, 0, 1807, 1807, 0, 0, 1807, 0, 0, 1807, 1808, 0, 0, 0, 0, 1808, 0, 0, 0, 0, 0, 1808, 0, 1808, 1808, 0, 1808, 0, 0, 0, 0, 1808, 1809, 0, 0, 0, 0, 1809, 0, 0, 0, 0, 0, 1809, 0, 1809, 1809, 0, 1809, 0, 0, 0, 0, 1809, 1810, 0, 0, 0, 0, 1810, 0, 0, 1810, 0, 1810, 1810, 0, 1810, 1810, 0, 1810, 0, 0, 0, 1810, 1810, 1811, 0, 0, 0, 0, 1811, 0, 0, 1811, 0, 1811, 1811, 0, 1811, 1811, 0, 1811, 0, 0, 0, 1811, 1811, 1812, 0, 1812, 1812, 1812, 1812, 1812, 1812, 0, 0, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 0, 1812, 1812, 1812, 0, 0, 0, 0, 1812, 0, 1812, 1813, 0, 1813, 1813, 1813, 1813, 1813, 1813, 0, 0, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 0, 1813, 0, 1813, 1813, 1813, 0, 0, 0, 0, 1813, 0, 1813, 1814, 0, 1814, 1814, 1814, 1814, 1814, 1814, 0, 0, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 0, 1814, 0, 1814, 1814, 1814, 0, 0, 0, 0, 1814, 0, 1814, 1815, 0, 1815, 1815, 1815, 1815, 1815, 1815, 0, 0, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 0, 1815, 1815, 1815, 0, 0, 0, 0, 1815, 0, 1815, 1816, 0, 1816, 1816, 1816, 1816, 1816, 1816, 0, 0, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 0, 1816, 1816, 1816, 0, 0, 0, 0, 1816, 0, 1816, 1817, 1817, 0, 1817, 1817, 0, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1818, 1818, 0, 1818, 1818, 0, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 0, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1819, 0, 0, 0, 0, 0, 0, 0, 1819, 0, 0, 1819, 1819, 0, 1819, 0, 0, 0, 1819, 1819, 0, 1819, 0, 1819, 0, 0, 1819, 1820, 0, 0, 0, 1820, 1820, 0, 0, 0, 0, 1820, 1820, 0, 1820, 1820, 0, 1820, 1820, 1820, 1820, 0, 0, 0, 1820, 0, 0, 1820, 1820, 0, 0, 0, 1820, 0, 0, 1820, 1821, 0, 0, 0, 1821, 1821, 0, 0, 0, 0, 1821, 1821, 0, 1821, 1821, 0, 1821, 1821, 1821, 1821, 0, 0, 0, 1821, 1821, 0, 1821, 1821, 0, 1821, 0, 1821, 0, 0, 1821, 1822, 0, 0, 0, 1822, 1822, 0, 0, 0, 0, 1822, 1822, 0, 1822, 1822, 0, 1822, 0, 1822, 1822, 0, 0, 0, 1822, 0, 0, 0, 1822, 0, 0, 0, 1822, 0, 0, 1822, 1825, 1825, 0, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1826, 1826, 0, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 0, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 0, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 0, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 0, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1831, 0, 0, 0, 0, 1831, 0, 0, 0, 0, 0, 1831, 0, 1831, 1831, 0, 1831, 0, 0, 0, 0, 1831, 1832, 0, 0, 0, 0, 1832, 0, 0, 0, 0, 0, 1832, 0, 1832, 1832, 0, 1832, 0, 0, 0, 0, 1832, 1833, 1833, 0, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 0, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1834, 0, 0, 0, 0, 0, 0, 0, 1834, 0, 1834, 0, 1834, 0, 1834, 0, 0, 0, 1834, 1834, 0, 1834, 1834, 1834, 0, 0, 1834, 1835, 0, 0, 0, 0, 1835, 0, 0, 0, 0, 0, 1835, 0, 1835, 1835, 0, 1835, 0, 0, 0, 0, 1835, 1836, 0, 1836, 1836, 0, 1836, 0, 1836, 1836, 0, 1836, 0, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 0, 1836, 1836, 1836, 0, 0, 1836, 1836, 0, 0, 1836, 0, 0, 1836, 1837, 0, 0, 0, 0, 1837, 0, 0, 1837, 0, 1837, 1837, 0, 1837, 1837, 0, 1837, 0, 0, 0, 1837, 1837, 1838, 0, 1838, 1838, 0, 1838, 0, 1838, 1838, 0, 1838, 0, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 0, 1838, 1838, 1838, 0, 1838, 1838, 1838, 0, 0, 1838, 0, 0, 1838, 1839, 0, 1839, 1839, 1839, 1839, 1839, 1839, 0, 0, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 0, 1839, 1839, 1839, 0, 0, 0, 0, 1839, 0, 1839, 1840, 0, 1840, 1840, 1840, 1840, 1840, 1840, 0, 0, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 0, 1840, 1840, 1840, 0, 0, 0, 0, 1840, 0, 1840, 1841, 1841, 0, 1841, 1841, 0, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 0, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1842, 0, 0, 0, 0, 0, 0, 0, 1842, 0, 0, 1842, 1842, 0, 1842, 0, 0, 0, 1842, 1842, 0, 1842, 0, 1842, 0, 0, 1842, 1843, 0, 0, 0, 1843, 1843, 0, 0, 0, 0, 1843, 1843, 0, 1843, 1843, 0, 1843, 1843, 1843, 1843, 0, 0, 0, 1843, 0, 0, 1843, 1843, 0, 0, 0, 1843, 0, 0, 1843, 1844, 0, 0, 0, 1844, 1844, 0, 0, 0, 0, 1844, 1844, 0, 1844, 1844, 0, 1844, 1844, 1844, 1844, 0, 0, 0, 1844, 0, 0, 1844, 1844, 0, 1844, 0, 1844, 0, 0, 1844, 1845, 0, 0, 0, 0, 0, 0, 0, 1845, 0, 0, 0, 1845, 0, 1845, 0, 0, 0, 1845, 1845, 0, 0, 0, 1845, 0, 0, 1845, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 0, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 0, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1847, 1847, 0, 0, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 0, 1847, 0, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1848, 1848, 0, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 0, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1849, 0, 0, 0, 0, 0, 0, 0, 1849, 0, 0, 1849, 1849, 0, 1849, 0, 0, 0, 1849, 1849, 0, 1849, 0, 1849, 0, 0, 1849, 1850, 0, 0, 0, 0, 0, 0, 0, 1850, 0, 1850, 0, 1850, 0, 1850, 0, 0, 0, 1850, 1850, 0, 1850, 1850, 1850, 0, 0, 1850, 1851, 0, 0, 1851, 0, 1851, 1851, 0, 1851, 0, 0, 0, 1851, 0, 0, 1851, 1851, 1852, 0, 0, 0, 0, 0, 0, 0, 1852, 0, 1852, 0, 1852, 0, 1852, 0, 0, 0, 1852, 1852, 0, 1852, 1852, 1852, 0, 0, 1852, 1853, 0, 0, 0, 0, 0, 0, 0, 1853, 0, 0, 1853, 1853, 0, 1853, 0, 0, 0, 1853, 1853, 0, 1853, 0, 1853, 0, 0, 1853, 1854, 0, 0, 0, 0, 0, 0, 0, 1854, 0, 0, 1854, 1854, 0, 1854, 0, 0, 0, 1854, 1854, 0, 1854, 0, 1854, 0, 0, 1854, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 0, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 0, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1856, 0, 1856, 1856, 1856, 1856, 1856, 1856, 0, 0, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 0, 1856, 0, 1856, 1856, 1856, 0, 0, 0, 0, 1856, 0, 1856, 1857, 0, 0, 1857, 0, 1857, 1857, 1857, 1857, 1857, 0, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 0, 0, 0, 0, 0, 1857, 1857, 1858, 1858, 0, 1858, 1858, 0, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 0, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1859, 0, 0, 1859, 0, 1859, 1859, 1859, 1859, 1859, 0, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 0, 0, 0, 0, 0, 1859, 1859, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457 } ; static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; static char *yy_full_match; static int yy_lp; static int yy_looking_for_trail_begin = 0; static int yy_full_lp; static int *yy_full_state; #define YY_TRAILING_MASK 0x2000 #define YY_TRAILING_HEAD_MASK 0x4000 #define REJECT \ { \ *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ yy_cp = yy_full_match; /* restore poss. backed-over text */ \ yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \ yy_state_ptr = yy_full_state; /* restore orig. state */ \ yy_current_state = *yy_state_ptr; /* restore curr. state */ \ ++yy_lp; \ goto find_rule; \ } #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "doctokenizer.l" #define INITIAL 0 /****************************************************************************** * * $Id: $ * * * Copyright (C) 1997-2007 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * */ #line 20 "doctokenizer.l" #include #include #include #include #include "doctokenizer.h" #include "cmdmapper.h" #include "config.h" #include "message.h" #include "section.h" #include "membergroup.h" #include "definition.h" #include "doxygen.h" #include "portable.h" #define YY_NEVER_INTERACTIVE 1 //-------------------------------------------------------------------------- // context for tokenizer phase static int g_commentState; TokenInfo *g_token = 0; static int g_inputPos = 0; static const char *g_inputString; static QString g_fileName; static bool g_insidePre; // context for section finding phase static Definition *g_definition; static MemberGroup *g_memberGroup; static QCString g_secLabel; static QCString g_secTitle; static SectionInfo::SectionType g_secType; static QCString g_endMarker; struct DocLexerContext { TokenInfo *token; int rule; int inputPos; const char *inputString; YY_BUFFER_STATE state; }; static QStack g_lexerStack; //-------------------------------------------------------------------------- void doctokenizerYYpushContext() { DocLexerContext *ctx = new DocLexerContext; ctx->rule = YY_START; ctx->token = g_token; ctx->inputPos = g_inputPos; ctx->inputString = g_inputString; ctx->state = YY_CURRENT_BUFFER; g_lexerStack.push(ctx); yy_switch_to_buffer(yy_create_buffer(doctokenizerYYin, YY_BUF_SIZE)); } bool doctokenizerYYpopContext() { if (g_lexerStack.isEmpty()) return FALSE; DocLexerContext *ctx = g_lexerStack.pop(); g_inputPos = ctx->inputPos; g_inputString = ctx->inputString; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(ctx->state); BEGIN(ctx->rule); delete ctx; return TRUE; } //-------------------------------------------------------------------------- const char *tokToString(int token) { switch (token) { case 0: return "TK_EOF"; case TK_WORD: return "TK_WORD"; case TK_LNKWORD: return "TK_LNKWORD"; case TK_WHITESPACE: return "TK_WHITESPACE"; case TK_LISTITEM: return "TK_LISTITEM"; case TK_ENDLIST: return "TK_ENDLIST"; case TK_COMMAND: return "TK_COMMAND"; case TK_HTMLTAG: return "TK_HTMLTAG"; case TK_SYMBOL: return "TK_SYMBOL"; case TK_NEWPARA: return "TK_NEWPARA"; case TK_RCSTAG: return "TK_RCSTAG"; case TK_URL: return "TK_URL"; } return "ERROR"; } static int computeIndent(const char *str,int length) { int i; int indent=0; int tabSize=Config_getInt("TAB_SIZE"); for (i=0;iparent()->getOutputFileBase(); } else if (g_definition) { file = g_definition->getOutputFileBase(); } else { warn(g_fileName,yylineno,"Found section/anchor %s without context\n",g_secLabel.data()); } SectionInfo *si=0; if ((si=Doxygen::sectionDict.find(g_secLabel))) { si->fileName = file; //si = new SectionInfo(file,g_secLabel,g_secTitle,g_secType); //Doxygen::sectionDict.insert(g_secLabel,si); } } static void handleHtmlTag() { QCString tagText=yytext; g_token->attribs.clear(); g_token->endTag = FALSE; g_token->emptyTag = FALSE; // Check for end tag int startNamePos=1; if (tagText.at(1)=='/') { g_token->endTag = TRUE; startNamePos++; } // Parse the name portion int i = startNamePos; for (i=startNamePos; i < yyleng; i++) { // Check for valid HTML/XML name chars (including namespaces) char c = tagText.at(i); if (!(isalnum(c) || c=='-' || c=='_' || c==':')) break; } g_token->name = tagText.mid(startNamePos,i-startNamePos); // Parse the attributes. Each attribute is a name, value pair // The result is stored in g_token->attribs. int startName,endName,startAttrib,endAttrib; while (i') break; // Check for XML style "empty" tag. if (c == '/') { g_token->emptyTag = TRUE; break; } startName=i; // search for end of name while (i Adding option name=<%s> value=<%s>\n", // opt.name.data(),opt.value.data()); g_token->attribs.append(&opt); } } static QString stripEmptyLines(const char *s) { int result=0,p=0; for (;;) { int c; while ((c=s[p]) && isspace(c)) p++; if (s[p]=='\n') result=++p; else break; } return &s[result]; } //-------------------------------------------------------------------------- #undef YY_INPUT #define YY_INPUT(buf,result,max_size) result=yyread(buf,max_size); static int yyread(char *buf,int max_size) { int c=0; const char *src=g_inputString+g_inputPos; while ( c < max_size && *src ) *buf++ = *src++, c++; g_inputPos+=c; return c; } //-------------------------------------------------------------------------- #define St_Para 1 #define St_Comment 2 #define St_Title 3 #define St_TitleN 4 #define St_TitleQ 5 #define St_TitleA 6 #define St_TitleV 7 #define St_Code 8 #define St_XmlCode 9 #define St_HtmlOnly 10 #define St_ManOnly 11 #define St_LatexOnly 12 #define St_XmlOnly 13 #define St_Verbatim 14 #define St_Dot 15 #define St_Msc 16 #define St_Param 17 #define St_XRefItem 18 #define St_XRefItem2 19 #define St_File 20 #define St_Pattern 21 #define St_Link 22 #define St_Ref 23 #define St_Ref2 24 #define St_IntRef 25 #define St_Text 26 #define St_SkipTitle 27 #define St_Sections 28 #define St_SecLabel1 29 #define St_SecLabel2 30 #define St_SecTitle 31 #define St_SecSkip 32 /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( yy_current_buffer->yy_is_interactive ) \ { \ int c = '*', n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ yy_current_buffer->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 381 "doctokenizer.l" if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_load_buffer_state(); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = yy_c_buf_p; /* Support of yytext. */ *yy_cp = yy_hold_char; /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1458 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; ++yy_cp; } while ( yy_base[yy_current_state] != 20917 ); yy_find_action: yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[yy_lp]; if ( yy_act & YY_TRAILING_HEAD_MASK || yy_looking_for_trail_begin ) { if ( yy_act == yy_looking_for_trail_begin ) { yy_looking_for_trail_begin = 0; yy_act &= ~YY_TRAILING_HEAD_MASK; break; } } else if ( yy_act & YY_TRAILING_MASK ) { yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK; yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK; yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; } else { yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; break; } ++yy_lp; goto find_rule; } --yy_cp; yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; if ( yy_act != YY_END_OF_BUFFER ) { int yyl; for ( yyl = 0; yyl < yyleng; ++yyl ) if ( yytext[yyl] == '\n' ) ++yylineno; } do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP #line 382 "doctokenizer.l" /* skip carriage return */ YY_BREAK case 2: YY_RULE_SETUP #line 383 "doctokenizer.l" { /* list item */ QString text=yytext; int dashPos = text.findRev('-'); g_token->isEnumList = text.at(dashPos+1)=='#'; g_token->indent = computeIndent(yytext,dashPos); return TK_LISTITEM; } YY_BREAK case 3: YY_RULE_SETUP #line 390 "doctokenizer.l" { /* list item on next line */ QString text=yytext; text=text.right(text.length()-text.find('\n')-1); int dashPos = text.findRev('-'); g_token->isEnumList = text.at(dashPos+1)=='#'; g_token->indent = computeIndent(text,dashPos); return TK_LISTITEM; } YY_BREAK case 4: YY_RULE_SETUP #line 398 "doctokenizer.l" { /* end list */ int dotPos = QString(yytext).findRev('.'); g_token->indent = computeIndent(yytext,dotPos); return TK_ENDLIST; } YY_BREAK case 5: YY_RULE_SETUP #line 403 "doctokenizer.l" { /* end list on next line */ QString text=yytext; text=text.right(text.length()-text.find('\n')-1); int dotPos = text.findRev('.'); g_token->indent = computeIndent(text,dotPos); return TK_ENDLIST; } YY_BREAK case 6: YY_RULE_SETUP #line 410 "doctokenizer.l" { g_token->name = "javalink"; return TK_COMMAND; } YY_BREAK case 7: YY_RULE_SETUP #line 414 "doctokenizer.l" { g_token->name = "inheritdoc"; return TK_COMMAND; } YY_BREAK case 8: YY_RULE_SETUP #line 418 "doctokenizer.l" { // artificial new line yylineno++; } YY_BREAK case 9: YY_RULE_SETUP #line 421 "doctokenizer.l" { g_token->name = "form"; bool ok; g_token->id = QString(yytext).right(yyleng-6).toInt(&ok); ASSERT(ok); return TK_COMMAND; } YY_BREAK case 10: #line 429 "doctokenizer.l" case 11: YY_RULE_SETUP #line 429 "doctokenizer.l" { /* special command */ g_token->name = yytext+1; g_token->name = g_token->name.stripWhiteSpace(); g_token->paramDir=TokenInfo::Unspecified; return TK_COMMAND; } YY_BREAK case 12: YY_RULE_SETUP #line 435 "doctokenizer.l" { /* param [in,out] command */ g_token->name = "param"; QString s(yytext); bool isIn = s.find("in")!=-1; bool isOut = s.find("out")!=-1; if (isIn) { if (isOut) { g_token->paramDir=TokenInfo::InOut; } else { g_token->paramDir=TokenInfo::In; } } else if (isOut) { g_token->paramDir=TokenInfo::Out; } else { g_token->paramDir=TokenInfo::Unspecified; } return TK_COMMAND; } YY_BREAK case 13: YY_RULE_SETUP #line 461 "doctokenizer.l" { // URL g_token->name=yytext; g_token->isEMailAddr=FALSE; return TK_URL; } YY_BREAK case 14: YY_RULE_SETUP #line 466 "doctokenizer.l" { // Mail address g_token->name=yytext; g_token->isEMailAddr=TRUE; return TK_URL; } YY_BREAK case 15: YY_RULE_SETUP #line 471 "doctokenizer.l" { /* RCS tag */ QString tagName(yytext+1); int index=tagName.find(':'); g_token->name = tagName.left(index); g_token->text = tagName.mid(index+1,tagName.length()-index-2); return TK_RCSTAG; } YY_BREAK case 16: YY_RULE_SETUP #line 478 "doctokenizer.l" { /* environment variable */ QCString name = &yytext[2]; name = name.left(name.length()-1); QCString value = portable_getenv(name); for (int i=value.length()-1;i>=0;i--) unput(value.at(i)); } YY_BREAK case 17: YY_RULE_SETUP #line 484 "doctokenizer.l" { /* html tag */ handleHtmlTag(); return TK_HTMLTAG; } YY_BREAK case 18: YY_RULE_SETUP #line 488 "doctokenizer.l" { /* special symbol */ g_token->name = yytext; return TK_SYMBOL; } YY_BREAK /********* patterns for linkable words ******************/ case 19: YY_RULE_SETUP #line 495 "doctokenizer.l" { /* this rule is to prevent opening html * tag to be recognized as a templated classes */ g_token->name = yytext; return TK_LNKWORD; } YY_BREAK case 20: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 4; YY_DO_BEFORE_ACTION; /* set up yytext again */ #line 502 "doctokenizer.l" case 21: #line 503 "doctokenizer.l" case 22: #line 504 "doctokenizer.l" case 23: #line 505 "doctokenizer.l" case 24: YY_RULE_SETUP #line 505 "doctokenizer.l" { g_token->name = yytext; return TK_LNKWORD; } YY_BREAK case 25: YY_RULE_SETUP #line 509 "doctokenizer.l" { g_token->name = yytext; g_token->name = g_token->name.left(g_token->name.length()-1); unput(yytext[yyleng-1]); return TK_LNKWORD; } YY_BREAK /********* patterns for normal words ******************/ case 26: #line 518 "doctokenizer.l" case 27: YY_RULE_SETUP #line 518 "doctokenizer.l" { /* function call */ if (yytext[0]=='%') // strip % if present g_token->name = &yytext[1]; else g_token->name = yytext; return TK_WORD; /* the following is dummy code to please the * compiler, removing this results in a warning * on my machine */ goto find_rule; } YY_BREAK case 28: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 531 "doctokenizer.l" { // Special case: word "operator" followed by a HTML command // avoid interpretation as "operator <" g_token->name = yytext; return TK_WORD; } YY_BREAK /*******************************************************/ case 29: #line 540 "doctokenizer.l" case 30: YY_RULE_SETUP #line 540 "doctokenizer.l" { /* white space */ g_token->chars=yytext; return TK_WHITESPACE; } YY_BREAK case 31: YY_RULE_SETUP #line 544 "doctokenizer.l" { g_token->name = yytext; return TK_COMMAND; } YY_BREAK case 32: YY_RULE_SETUP #line 548 "doctokenizer.l" { if (g_insidePre) { /* Inside a
..
blank lines are treated * as whitespace. */ g_token->chars=yytext; return TK_WHITESPACE; } else { /* start of a new paragraph */ return TK_NEWPARA; } } YY_BREAK case 33: YY_RULE_SETUP #line 563 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 34: YY_RULE_SETUP #line 566 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 35: #line 570 "doctokenizer.l" case 36: #line 571 "doctokenizer.l" case 37: YY_RULE_SETUP #line 571 "doctokenizer.l" { g_token->verb+=yytext; } YY_BREAK case 38: YY_RULE_SETUP #line 574 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 39: #line 578 "doctokenizer.l" case 40: #line 579 "doctokenizer.l" case 41: YY_RULE_SETUP #line 579 "doctokenizer.l" { g_token->verb+=yytext; } YY_BREAK case 42: YY_RULE_SETUP #line 582 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 43: #line 586 "doctokenizer.l" case 44: #line 587 "doctokenizer.l" case 45: YY_RULE_SETUP #line 587 "doctokenizer.l" { g_token->verb+=yytext; } YY_BREAK case 46: YY_RULE_SETUP #line 590 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 47: #line 594 "doctokenizer.l" case 48: #line 595 "doctokenizer.l" case 49: YY_RULE_SETUP #line 595 "doctokenizer.l" { g_token->verb+=yytext; } YY_BREAK case 50: YY_RULE_SETUP #line 598 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 51: #line 602 "doctokenizer.l" case 52: #line 603 "doctokenizer.l" case 53: YY_RULE_SETUP #line 603 "doctokenizer.l" { g_token->verb+=yytext; } YY_BREAK case 54: YY_RULE_SETUP #line 606 "doctokenizer.l" { g_token->verb=stripEmptyLines(g_token->verb); return RetVal_OK; } YY_BREAK case 55: #line 611 "doctokenizer.l" case 56: #line 612 "doctokenizer.l" case 57: YY_RULE_SETUP #line 612 "doctokenizer.l" { /* Verbatim text */ g_token->verb+=yytext; } YY_BREAK case 58: YY_RULE_SETUP #line 615 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 59: #line 619 "doctokenizer.l" case 60: #line 620 "doctokenizer.l" case 61: YY_RULE_SETUP #line 620 "doctokenizer.l" { /* dot text */ g_token->verb+=yytext; } YY_BREAK case 62: YY_RULE_SETUP #line 623 "doctokenizer.l" { return RetVal_OK; } YY_BREAK case 63: #line 627 "doctokenizer.l" case 64: #line 628 "doctokenizer.l" case 65: YY_RULE_SETUP #line 628 "doctokenizer.l" { /* msc text */ g_token->verb+=yytext; } YY_BREAK case 66: YY_RULE_SETUP #line 631 "doctokenizer.l" { // quoted title BEGIN(St_TitleQ); } YY_BREAK case 67: YY_RULE_SETUP #line 634 "doctokenizer.l" { g_token->chars=yytext; return TK_WHITESPACE; } YY_BREAK case 68: YY_RULE_SETUP #line 638 "doctokenizer.l" { // non-quoted title unput(*yytext); BEGIN(St_TitleN); } YY_BREAK case 69: YY_RULE_SETUP #line 642 "doctokenizer.l" { unput(*yytext); return 0; } YY_BREAK case 70: YY_RULE_SETUP #line 646 "doctokenizer.l" { /* symbol */ g_token->name = yytext; return TK_SYMBOL; } YY_BREAK case 71: YY_RULE_SETUP #line 650 "doctokenizer.l" { } YY_BREAK case 72: #line 653 "doctokenizer.l" case 73: YY_RULE_SETUP #line 653 "doctokenizer.l" { /* special command */ g_token->name = yytext+1; g_token->paramDir=TokenInfo::Unspecified; return TK_COMMAND; } YY_BREAK case 74: #line 659 "doctokenizer.l" case 75: YY_RULE_SETUP #line 659 "doctokenizer.l" { /* word */ if (yytext[0]=='%') // strip % if present g_token->name = &yytext[1]; else g_token->name = yytext; return TK_WORD; } YY_BREAK case 76: YY_RULE_SETUP #line 666 "doctokenizer.l" { g_token->chars=yytext; return TK_WHITESPACE; } YY_BREAK case 77: YY_RULE_SETUP #line 670 "doctokenizer.l" { /* new line => end of title */ unput(*yytext); return 0; } YY_BREAK case 78: YY_RULE_SETUP #line 674 "doctokenizer.l" { /* symbol */ g_token->name = yytext; return TK_SYMBOL; } YY_BREAK case 79: #line 679 "doctokenizer.l" case 80: YY_RULE_SETUP #line 679 "doctokenizer.l" { /* special command */ g_token->name = yytext+1; g_token->paramDir=TokenInfo::Unspecified; return TK_COMMAND; } YY_BREAK case 81: #line 685 "doctokenizer.l" case 82: YY_RULE_SETUP #line 685 "doctokenizer.l" { /* word */ g_token->name = yytext; return TK_WORD; } YY_BREAK case 83: YY_RULE_SETUP #line 689 "doctokenizer.l" { g_token->chars=yytext; return TK_WHITESPACE; } YY_BREAK case 84: YY_RULE_SETUP #line 693 "doctokenizer.l" { /* closing quote => end of title */ BEGIN(St_TitleA); return 0; } YY_BREAK case 85: YY_RULE_SETUP #line 697 "doctokenizer.l" { /* new line => end of title */ unput(*yytext); return 0; } YY_BREAK case 86: YY_RULE_SETUP #line 701 "doctokenizer.l" { // title attribute g_token->name = yytext; g_token->name = g_token->name.left( g_token->name.find('=')).stripWhiteSpace(); BEGIN(St_TitleV); } YY_BREAK case 87: YY_RULE_SETUP #line 707 "doctokenizer.l" { // attribute value g_token->chars = yytext; BEGIN(St_TitleN); return TK_WORD; } YY_BREAK case 88: YY_RULE_SETUP #line 712 "doctokenizer.l" { unput(*yytext); return 0; } YY_BREAK case 89: YY_RULE_SETUP #line 716 "doctokenizer.l" { return 0; } YY_BREAK case 90: YY_RULE_SETUP #line 720 "doctokenizer.l" { // label to refer to g_token->name=yytext; return TK_WORD; } YY_BREAK case 91: YY_RULE_SETUP #line 724 "doctokenizer.l" { // white space unput(' '); return 0; } YY_BREAK case 92: YY_RULE_SETUP #line 728 "doctokenizer.l" { // white space following by quoted string BEGIN(St_Ref2); } YY_BREAK case 93: YY_RULE_SETUP #line 731 "doctokenizer.l" { // new line unput(*yytext); return 0; } YY_BREAK case 94: YY_RULE_SETUP #line 735 "doctokenizer.l" { // any other character unput(*yytext); return 0; } YY_BREAK case 95: YY_RULE_SETUP #line 739 "doctokenizer.l" { g_token->name = yytext; return TK_WORD; } YY_BREAK case 96: YY_RULE_SETUP #line 743 "doctokenizer.l" { BEGIN(St_Ref2); } YY_BREAK case 97: YY_RULE_SETUP #line 746 "doctokenizer.l" { /* symbol */ g_token->name = yytext; return TK_SYMBOL; } YY_BREAK case 98: #line 751 "doctokenizer.l" case 99: YY_RULE_SETUP #line 751 "doctokenizer.l" { /* special command */ g_token->name = yytext+1; g_token->paramDir=TokenInfo::Unspecified; return TK_COMMAND; } YY_BREAK case 100: #line 757 "doctokenizer.l" case 101: YY_RULE_SETUP #line 757 "doctokenizer.l" { /* word */ g_token->name = yytext; return TK_WORD; } YY_BREAK case 102: YY_RULE_SETUP #line 762 "doctokenizer.l" { g_token->chars=yytext; return TK_WHITESPACE; } YY_BREAK case 103: YY_RULE_SETUP #line 766 "doctokenizer.l" { /* " or \n => end of title */ return 0; } YY_BREAK case 104: YY_RULE_SETUP #line 769 "doctokenizer.l" { g_token->name=yytext; } YY_BREAK case 105: YY_RULE_SETUP #line 772 "doctokenizer.l" { BEGIN(St_XRefItem2); } YY_BREAK case 106: YY_RULE_SETUP #line 775 "doctokenizer.l" { QString numStr=yytext; numStr=numStr.left(yyleng-1); g_token->id=numStr.toInt(); return RetVal_OK; } YY_BREAK case 107: YY_RULE_SETUP #line 781 "doctokenizer.l" { /* html style comment block */ g_commentState = YY_START; BEGIN(St_Comment); } YY_BREAK case 108: YY_RULE_SETUP #line 785 "doctokenizer.l" { g_token->name = yytext+1; g_token->name = g_token->name.left(yyleng-2); return TK_WORD; } YY_BREAK case 109: YY_RULE_SETUP #line 790 "doctokenizer.l" { g_token->name = yytext; return TK_WORD; } YY_BREAK case 110: YY_RULE_SETUP #line 794 "doctokenizer.l" /* param separator */ YY_BREAK case 111: YY_RULE_SETUP #line 795 "doctokenizer.l" { g_token->chars=yytext; return TK_WHITESPACE; } YY_BREAK case 112: YY_RULE_SETUP #line 799 "doctokenizer.l" { g_token->name = yytext; return TK_WORD; } YY_BREAK case 113: YY_RULE_SETUP #line 803 "doctokenizer.l" { QString text=yytext; g_token->name = text.mid(1,text.length()-2); return TK_WORD; } YY_BREAK case 114: YY_RULE_SETUP #line 808 "doctokenizer.l" { g_token->name = yytext; g_token->name = g_token->name.stripWhiteSpace(); return TK_WORD; } YY_BREAK case 115: YY_RULE_SETUP #line 813 "doctokenizer.l" { g_token->name = yytext; return TK_WORD; } YY_BREAK case 116: YY_RULE_SETUP #line 817 "doctokenizer.l" { /* end of html comment */ BEGIN(g_commentState); } YY_BREAK case 117: YY_RULE_SETUP #line 820 "doctokenizer.l" /* inside html comment */ YY_BREAK case 118: YY_RULE_SETUP #line 821 "doctokenizer.l" /* inside html comment */ YY_BREAK /* State for skipping title (all chars until the end of the line) */ case 119: YY_RULE_SETUP #line 825 "doctokenizer.l" YY_BREAK case 120: YY_RULE_SETUP #line 826 "doctokenizer.l" { return 0; } YY_BREAK /* State for the pass used to find the anchors and sections */ case 121: YY_RULE_SETUP #line 830 "doctokenizer.l" YY_BREAK case 122: YY_RULE_SETUP #line 831 "doctokenizer.l" YY_BREAK case 123: YY_RULE_SETUP #line 832 "doctokenizer.l" { g_secType = SectionInfo::Anchor; BEGIN(St_SecLabel1); } YY_BREAK case 124: YY_RULE_SETUP #line 836 "doctokenizer.l" { g_secType = SectionInfo::Section; BEGIN(St_SecLabel2); } YY_BREAK case 125: YY_RULE_SETUP #line 840 "doctokenizer.l" { g_secType = SectionInfo::Subsection; BEGIN(St_SecLabel2); } YY_BREAK case 126: YY_RULE_SETUP #line 844 "doctokenizer.l" { g_secType = SectionInfo::Subsubsection; BEGIN(St_SecLabel2); } YY_BREAK case 127: YY_RULE_SETUP #line 848 "doctokenizer.l" { g_secType = SectionInfo::Paragraph; BEGIN(St_SecLabel2); } YY_BREAK case 128: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 852 "doctokenizer.l" { g_endMarker="endverbatim"; BEGIN(St_SecSkip); } YY_BREAK case 129: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 856 "doctokenizer.l" { g_endMarker="enddot"; BEGIN(St_SecSkip); } YY_BREAK case 130: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 860 "doctokenizer.l" { g_endMarker="endmsc"; BEGIN(St_SecSkip); } YY_BREAK case 131: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 864 "doctokenizer.l" { g_endMarker="endhtmlonly"; BEGIN(St_SecSkip); } YY_BREAK case 132: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 868 "doctokenizer.l" { g_endMarker="endlatexonly"; BEGIN(St_SecSkip); } YY_BREAK case 133: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 872 "doctokenizer.l" { g_endMarker="endxmlonly"; BEGIN(St_SecSkip); } YY_BREAK case 134: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 876 "doctokenizer.l" { g_endMarker="endcode"; BEGIN(St_SecSkip); } YY_BREAK case 135: YY_RULE_SETUP #line 880 "doctokenizer.l" { g_endMarker="-->"; BEGIN(St_SecSkip); } YY_BREAK case 136: YY_RULE_SETUP #line 884 "doctokenizer.l" { if (strcmp(yytext+1,g_endMarker)==0) { BEGIN(St_Sections); } } YY_BREAK case 137: YY_RULE_SETUP #line 890 "doctokenizer.l" { if (strcmp(yytext,g_endMarker)==0) { BEGIN(St_Sections); } } YY_BREAK case 138: YY_RULE_SETUP #line 896 "doctokenizer.l" YY_BREAK case 139: YY_RULE_SETUP #line 897 "doctokenizer.l" YY_BREAK case 140: YY_RULE_SETUP #line 898 "doctokenizer.l" YY_BREAK case 141: YY_RULE_SETUP #line 899 "doctokenizer.l" YY_BREAK case 142: YY_RULE_SETUP #line 900 "doctokenizer.l" YY_BREAK case 143: YY_RULE_SETUP #line 901 "doctokenizer.l" { g_secLabel = yytext; processSection(); BEGIN(St_Sections); } YY_BREAK case 144: #line 907 "doctokenizer.l" case 145: YY_RULE_SETUP #line 907 "doctokenizer.l" { g_secLabel = yytext; g_secLabel = g_secLabel.stripWhiteSpace(); BEGIN(St_SecTitle); } YY_BREAK case 146: #line 913 "doctokenizer.l" case 147: YY_RULE_SETUP #line 913 "doctokenizer.l" { g_secTitle = yytext; g_secTitle = g_secTitle.stripWhiteSpace(); processSection(); BEGIN(St_Sections); } YY_BREAK case 148: YY_RULE_SETUP #line 919 "doctokenizer.l" { warn(g_fileName,yylineno,"Error: Unexpected character `%s' while looking for section label or title",yytext); } YY_BREAK /* Generic rules that work for all states */ case 149: YY_RULE_SETUP #line 924 "doctokenizer.l" { warn(g_fileName,yylineno,"Error: Unexpected new line character"); } YY_BREAK case 150: YY_RULE_SETUP #line 927 "doctokenizer.l" { /* unescaped special character */ //warn(g_fileName,yylineno,"Warning: Unexpected character `%s', assuming command \\%s was meant.",yytext,yytext); g_token->name = yytext; return TK_COMMAND; } YY_BREAK case 151: YY_RULE_SETUP #line 932 "doctokenizer.l" { warn(g_fileName,yylineno,"Error: Unexpected character `%s'",yytext); } YY_BREAK case 152: YY_RULE_SETUP #line 935 "doctokenizer.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(St_Para): case YY_STATE_EOF(St_Comment): case YY_STATE_EOF(St_Title): case YY_STATE_EOF(St_TitleN): case YY_STATE_EOF(St_TitleQ): case YY_STATE_EOF(St_TitleA): case YY_STATE_EOF(St_TitleV): case YY_STATE_EOF(St_Code): case YY_STATE_EOF(St_XmlCode): case YY_STATE_EOF(St_HtmlOnly): case YY_STATE_EOF(St_ManOnly): case YY_STATE_EOF(St_LatexOnly): case YY_STATE_EOF(St_XmlOnly): case YY_STATE_EOF(St_Verbatim): case YY_STATE_EOF(St_Dot): case YY_STATE_EOF(St_Msc): case YY_STATE_EOF(St_Param): case YY_STATE_EOF(St_XRefItem): case YY_STATE_EOF(St_XRefItem2): case YY_STATE_EOF(St_File): case YY_STATE_EOF(St_Pattern): case YY_STATE_EOF(St_Link): case YY_STATE_EOF(St_Ref): case YY_STATE_EOF(St_Ref2): case YY_STATE_EOF(St_IntRef): case YY_STATE_EOF(St_Text): case YY_STATE_EOF(St_SkipTitle): case YY_STATE_EOF(St_Sections): case YY_STATE_EOF(St_SecLabel1): case YY_STATE_EOF(St_SecLabel2): case YY_STATE_EOF(St_SecTitle): case YY_STATE_EOF(St_SecSkip): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between yy_current_buffer and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ yy_n_chars = yy_current_buffer->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = yy_c_buf_p; goto yy_find_action; } } else switch ( yy_get_next_buffer() ) { case EOB_ACT_END_OF_FILE: { yy_did_buffer_switch_on_eof = 0; if ( yywrap() ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yy_c_buf_p = &yy_current_buffer->yy_ch_buf[yy_n_chars]; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer() { register char *dest = yy_current_buffer->yy_ch_buf; register char *source = yytext_ptr; register int number_to_move, i; int ret_val; if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ yy_current_buffer->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = yy_current_buffer; int yy_c_buf_p_offset = (int) (yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yy_flex_realloc( (void *) b->yy_ch_buf, b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->yy_n_chars = yy_n_chars; } if ( yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; yy_current_buffer->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state() { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1458 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { register int yy_is_jam; register YY_CHAR yy_c = 1; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1458 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 1457); if ( ! yy_is_jam ) *yy_state_ptr++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; if ( c == '\n' ) --yylineno; yytext_ptr = yy_bp; yy_hold_char = *yy_cp; yy_c_buf_p = yy_cp; } #endif /* ifndef YY_NO_UNPUT */ #ifdef __cplusplus static int yyinput() #else static int input() #endif { int c; *yy_c_buf_p = yy_hold_char; if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) /* This was really a NUL. */ *yy_c_buf_p = '\0'; else { /* need more input */ int offset = yy_c_buf_p - yytext_ptr; ++yy_c_buf_p; switch ( yy_get_next_buffer() ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /* fall through */ case EOB_ACT_END_OF_FILE: { if ( yywrap() ) return EOF; if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + offset; break; } } } c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ *yy_c_buf_p = '\0'; /* preserve yytext */ yy_hold_char = *++yy_c_buf_p; yy_current_buffer->yy_at_bol = (c == '\n'); if ( yy_current_buffer->yy_at_bol ) ++yylineno; return c; } #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { if ( yy_current_buffer == new_buffer ) return; if ( yy_current_buffer ) { /* Flush out information for old buffer. */ *yy_c_buf_p = yy_hold_char; yy_current_buffer->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = new_buffer; yy_load_buffer_state(); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ yy_did_buffer_switch_on_eof = 1; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer( b, file ); return b; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifndef YY_ALWAYS_INTERACTIVE #ifndef YY_NEVER_INTERACTIVE extern int isatty YY_PROTO(( int )); #endif #endif #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == yy_current_buffer ) yy_load_buffer_state(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yy_flex_alloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { if ( yy_start_stack_ptr >= yy_start_stack_depth ) { yy_size_t new_size; yy_start_stack_depth += YY_START_STACK_INCR; new_size = yy_start_stack_depth * sizeof( int ); if ( ! yy_start_stack ) yy_start_stack = (int *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (void *) yy_start_stack, new_size ); if ( ! yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yy_start_stack[yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 935 "doctokenizer.l" //-------------------------------------------------------------------------- void doctokenizerYYFindSections(const char *input,Definition *d, MemberGroup *mg,const char *fileName) { if (input==0) return; g_inputString = input; //printf("parsing --->`%s'<---\n",input); g_inputPos = 0; g_definition = d; g_memberGroup = mg; g_fileName = fileName; BEGIN(St_Sections); doctokenizerYYlineno = 1; doctokenizerYYlex(); } void doctokenizerYYinit(const char *input,const char *fileName) { g_inputString = input; g_inputPos = 0; g_fileName = fileName; g_insidePre = FALSE; BEGIN(St_Para); } void doctokenizerYYsetStatePara() { BEGIN(St_Para); } void doctokenizerYYsetStateTitle() { BEGIN(St_Title); } void doctokenizerYYsetStateTitleAttrValue() { BEGIN(St_TitleV); } void doctokenizerYYsetStateCode() { g_token->verb=""; BEGIN(St_Code); } void doctokenizerYYsetStateXmlCode() { g_token->verb=""; BEGIN(St_XmlCode); } void doctokenizerYYsetStateHtmlOnly() { g_token->verb=""; BEGIN(St_HtmlOnly); } void doctokenizerYYsetStateManOnly() { g_token->verb=""; BEGIN(St_ManOnly); } void doctokenizerYYsetStateXmlOnly() { g_token->verb=""; BEGIN(St_XmlOnly); } void doctokenizerYYsetStateLatexOnly() { g_token->verb=""; BEGIN(St_LatexOnly); } void doctokenizerYYsetStateVerbatim() { g_token->verb=""; BEGIN(St_Verbatim); } void doctokenizerYYsetStateDot() { g_token->verb=""; BEGIN(St_Dot); } void doctokenizerYYsetStateMsc() { g_token->verb=""; BEGIN(St_Msc); } void doctokenizerYYsetStateParam() { BEGIN(St_Param); } void doctokenizerYYsetStateXRefItem() { BEGIN(St_XRefItem); } void doctokenizerYYsetStateFile() { BEGIN(St_File); } void doctokenizerYYsetStatePattern() { BEGIN(St_Pattern); } void doctokenizerYYsetStateLink() { BEGIN(St_Link); } void doctokenizerYYsetStateRef() { BEGIN(St_Ref); } void doctokenizerYYsetStateInternalRef() { BEGIN(St_IntRef); } void doctokenizerYYsetStateText() { BEGIN(St_Text); } void doctokenizerYYsetStateSkipTitle() { BEGIN(St_SkipTitle); } void doctokenizerYYcleanup() { yy_delete_buffer( YY_CURRENT_BUFFER ); } void doctokenizerYYsetInsidePre(bool b) { g_insidePre = b; } void doctokenizerYYpushBackHtmlTag(const char *tag) { QCString tagName = tag; int i,l = tagName.length(); unput('>'); for (i=l-1;i>=0;i--) { unput(tag[i]); } unput('<'); } #if !defined(YY_FLEX_SUBMINOR_VERSION) extern "C" { // some bogus code to keep the compiler happy void doctokenizerYYdummy() { yy_flex_realloc(0,0); } } #endif