#define yy_create_buffer scanYY_create_buffer #define yy_delete_buffer scanYY_delete_buffer #define yy_scan_buffer scanYY_scan_buffer #define yy_scan_string scanYY_scan_string #define yy_scan_bytes scanYY_scan_bytes #define yy_flex_debug scanYY_flex_debug #define yy_init_buffer scanYY_init_buffer #define yy_flush_buffer scanYY_flush_buffer #define yy_load_buffer_state scanYY_load_buffer_state #define yy_switch_to_buffer scanYY_switch_to_buffer #define yyin scanYYin #define yyleng scanYYleng #define yylex scanYYlex #define yyout scanYYout #define yyrestart scanYYrestart #define yytext scanYYtext /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header$ */ #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 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 595 #define YY_END_OF_BUFFER 596 static yyconst short int yy_acclist[3417] = { 0, 294, 294,16918,16919,16920, 464, 464, 491, 491, 205, 205, 185, 185, 334, 334, 334, 334, 596, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 270, 589, 595, 269, 589, 595, 269, 589, 595, 2, 269, 589, 595, 268, 269, 589, 595, 269, 589, 595, 274, 589, 595, 274, 589, 595, 274, 589, 595, 271, 590, 595, 2, 274, 589, 595, 273, 274, 589, 595, 274, 589, 595, 274, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 391, 589, 595, 392, 589, 595, 397, 589, 595, 589, 595, 589, 595, 396, 589, 595, 394, 589, 595, 395, 589, 595, 405, 589, 595, 393, 589, 595, 589, 595, 590, 595, 2, 589, 595, 415, 589, 595, 589, 595, 406, 589, 595, 404, 589, 595, 416, 589, 595, 403, 589, 595, 403, 589, 595, 402, 403, 589, 595, 402, 590, 595, 2, 402, 403, 589, 595, 403, 589, 595, 403, 589, 595, 403, 589, 595, 222, 589, 595, 589, 595, 214, 589, 595, 223, 589, 595, 223, 589, 595, 213, 589, 595, 231, 589, 595, 231, 590, 595, 2, 231, 589, 595, 262, 589, 595, 275, 589, 595, 330, 589, 595, 280, 589, 595, 589, 595, 280, 589, 595, 280, 589, 595, 285, 589, 595, 279, 589, 595, 261, 589, 595, 281, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 261, 589, 595, 428, 589, 595, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 261, 589, 595, 589, 595, 589, 595, 590, 595, 2, 589, 595, 292, 589, 595, 589, 595, 291, 589, 595, 290, 589, 595, 293, 589, 595, 589, 595, 366, 589, 595, 365, 589, 595, 367, 589, 595, 367, 589, 595, 359, 589, 595, 359, 589, 595, 358, 359, 589, 595, 358, 590, 595, 2, 358, 359, 589, 595, 351, 359, 589, 595, 352, 359, 589, 595, 357, 359, 589, 595, 359, 589, 595, 364, 589, 595, 364, 589, 595, 2, 364, 589, 595, 362, 364, 589, 595, 363, 364, 589, 595, 364, 589, 595, 358, 359, 589, 595, 358, 590, 595, 2, 358, 359, 589, 595, 359, 589, 595, 353, 359, 589, 595, 359, 589, 595, 359, 589, 595, 359, 589, 595, 359, 589, 595, 359, 589, 595, 245, 589, 595, 245, 589, 595, 245, 590, 595, 2, 245, 589, 595, 247, 589, 595, 245, 589, 595, 245, 589, 595, 284, 589, 595, 284, 589, 595, 2, 284, 589, 595, 284, 589, 595, 283, 284, 589, 595, 282, 284, 589, 595, 294, 312, 589, 595, 294, 312, 589, 595, 294, 311, 312, 589, 595, 311, 590, 595, 2, 311, 312, 589, 595, 312, 589, 595, 312, 589, 595, 312, 589, 595, 302, 312, 589, 595, 303, 312, 589, 595, 251, 589, 595, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 252, 589, 595, 589, 595, 589, 595, 459, 590, 595, 2, 589, 595, 589, 595, 458, 589, 595, 589, 595, 379, 385, 589, 595, 379, 385, 589, 595, 378, 590, 595, 2, 379, 385, 589, 595, 376, 379, 385, 589, 595, 379, 385, 589, 595, 379, 385, 589, 595, 379, 385, 589, 595, 369, 379, 385, 589, 595, 370, 379, 385, 589, 595, 379, 385, 589, 595, 377, 379, 385, 589, 595, 380, 590, 595, 379, 385, 589, 595, 379, 385, 589, 595, 372, 589, 595, 390, 589, 595, 390, 589, 595, 389, 590, 595, 2, 390, 589, 595, 387, 390, 589, 595, 390, 589, 595, 390, 589, 595, 390, 589, 595, 385, 589, 595, 385, 589, 595, 2, 385, 589, 595, 385, 589, 595, 385, 589, 595, 368, 385, 589, 595, 264, 589, 595, 264, 589, 595, 266, 590, 595, 2, 264, 589, 595, 264, 589, 595, 264, 589, 595, 588, 589, 595, 588, 589, 595, 588, 589, 595, 2, 588, 589, 595, 589, 595, 588, 589, 595, 589, 595, 589, 595, 587, 590, 595, 2, 589, 595, 589, 595, 217, 589, 595, 218, 589, 595, 215, 589, 595, 216, 589, 595, 501, 503, 589, 595, 501, 503, 589, 595, 503, 589, 595, 502, 590, 595, 2, 501, 503, 589, 595, 503, 589, 595, 503, 589, 595, 501, 503, 589, 595, 501, 503, 589, 595, 503, 589, 595, 503, 589, 595, 499, 503, 589, 595, 503, 589, 595, 289, 589, 595, 289, 589, 595, 288, 289, 589, 595, 288, 590, 595, 2, 288, 289, 589, 595, 289, 589, 595, 287, 289, 589, 595, 286, 289, 589, 595, 411, 589, 595, 412, 589, 595, 413, 589, 595, 414, 589, 595, 304, 589, 595, 420, 422, 589, 595, 420, 422, 589, 595, 417, 420, 422, 589, 595, 417, 590, 595, 2, 417, 420, 422, 589, 595, 422, 589, 595, 420, 422, 589, 595, 558, 589, 595, 558, 589, 595, 558, 589, 595, 560, 590, 595, 2, 558, 589, 595, 558, 589, 595, 558, 589, 595, 557, 558, 589, 595, 558, 589, 595, 558, 589, 595, 558, 589, 595, 558, 589, 595, 558, 589, 595, 558, 589, 595, 434, 589, 595, 434, 589, 595, 434, 589, 595, 435, 590, 595, 2, 434, 589, 595, 434, 589, 595, 434, 589, 595, 434, 589, 595, 434, 589, 595, 432, 434, 589, 595, 434, 589, 595, 434, 589, 595, 431, 435, 590, 595, 2, 434, 589, 595, 434, 589, 595, 434, 589, 595, 510, 589, 595, 510, 589, 595, 509, 510, 589, 595, 508, 590, 595, 2, 510, 589, 595, 510, 589, 595, 510, 589, 595, 509, 510, 589, 595, 510, 589, 595, 510, 589, 595, 510, 589, 595, 509, 510, 589, 595, 510, 589, 595, 510, 589, 595, 559, 589, 595, 559, 589, 595, 559, 589, 595, 562, 590, 595, 2, 559, 589, 595, 559, 589, 595, 559, 589, 595, 559, 589, 595, 559, 589, 595, 559, 589, 595, 563, 590, 595, 2, 559, 589, 595, 559, 589, 595, 589, 595, 461, 590, 595, 2, 589, 595, 589, 595, 589, 595, 460, 589, 595, 589, 595, 589, 595, 467, 590, 595, 2, 589, 595, 589, 595, 466, 589, 595, 466, 589, 595, 589, 595, 469, 590, 595, 2, 589, 595, 589, 595, 468, 589, 595, 468, 589, 595, 555, 589, 595, 555, 589, 595, 542, 590, 595, 2, 555, 589, 595, 544, 555, 589, 595, 555, 589, 595, 555, 589, 595, 555, 589, 595, 589, 595, 590, 595, 2, 589, 595, 547, 589, 595, 589, 595, 546, 589, 595, 589, 595, 555, 589, 595, 556, 590, 595, 555, 589, 595, 555, 589, 595, 555, 589, 595, 555, 589, 595, 548, 555, 589, 595, 554, 589, 595, 554, 589, 595, 2, 554, 589, 595, 553, 554, 589, 595, 554, 589, 595, 539, 589, 595, 457, 589, 595, 537, 589, 595, 537, 589, 595, 537, 589, 595, 532, 590, 595, 2, 537, 589, 595, 537, 589, 595, 537, 589, 595, 537, 589, 595, 537, 589, 595, 537, 589, 595,16918, 16919,16920, 531, 532, 590, 595, 2, 537, 589, 595, 537, 589, 595,16918,16919,16920, 537, 589, 595, 537, 589, 595, 537, 589, 595, 443, 589, 595, 443, 589, 595, 443, 589, 595, 441, 590, 595, 2, 443, 589, 595, 443, 589, 595, 443, 589, 595, 541, 589, 595, 541, 589, 595, 2, 541, 589, 595, 540, 541, 589, 595, 541, 589, 595, 541, 589, 595, 463, 590, 595, 462, 589, 595, 464, 589, 595, 464, 589, 595, 465, 590, 595, 2, 464, 589, 595, 464, 589, 595, 526, 590, 595, 525, 589, 595, 589, 595, 589, 595, 482, 590, 595, 2, 589, 595, 589, 595, 580, 589, 595, 580, 589, 595, 579, 590, 595, 2, 580, 589, 595, 580, 589, 595, 580, 589, 595, 580, 589, 595, 580, 589, 595, 580, 589, 595, 570, 589, 595, 570, 589, 595, 569, 590, 595, 2, 570, 589, 595, 570, 589, 595, 570, 589, 595, 570, 589, 595, 570, 589, 595, 570, 589, 595, 570, 589, 595,16955, 566, 589, 595, 566, 589, 595, 565, 590, 595, 2, 566, 589, 595, 566, 589, 595, 566, 589, 595, 509, 510, 589, 595, 510, 589, 595, 510, 589, 595, 510, 589, 595, 510, 589, 595, 509, 510, 589, 595, 510, 589, 595, 522, 589, 595, 522, 589, 595, 521, 590, 595, 2, 522, 589, 595, 522, 589, 595, 589, 595, 473, 590, 595, 589, 595, 472, 589, 595, 472, 589, 595, 589, 595, 589, 595, 474, 590, 595, 2, 589, 595, 589, 595, 471, 590, 595, 589, 595, 470, 589, 595, 470, 589, 595, 510, 589, 595, 589, 595, 455, 589, 595, 455, 589, 595, 476, 590, 595, 475, 589, 595, 315, 589, 595, 315, 589, 595, 315, 589, 595, 590, 595, 2, 315, 589, 595, 315, 589, 595, 315, 589, 595, 314, 315, 589, 595, 315, 589, 595, 318, 589, 595, 319, 589, 595, 320, 359, 589, 595, 321, 359, 589, 595, 324, 589, 595, 324, 589, 595, 2, 324, 589, 595, 324, 589, 595, 324, 589, 595, 329, 589, 595, 329, 589, 595, 328, 329, 589, 595, 328, 590, 595, 2, 328, 329, 589, 595, 325, 329, 589, 595, 326, 329, 589, 595, 327, 329, 589, 595, 329, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 306, 589, 595, 306, 589, 595, 307, 589, 595, 305, 589, 595, 309, 589, 595, 310, 589, 595, 308, 589, 595, 491, 495, 589, 595, 491, 495, 589, 595, 495, 589, 595, 494, 590, 595, 2, 491, 495, 589, 595, 495, 589, 595, 491, 495, 589, 595, 495, 589, 595, 495, 589, 595, 212, 589, 595, 212, 589, 595, 2, 212, 589, 595, 212, 589, 595, 212, 589, 595, 211, 212, 589, 595, 211, 590, 595, 2, 211, 212, 589, 595, 212, 589, 595, 212, 589, 595, 212, 589, 595, 212, 589, 595, 212, 589, 595, 212, 589, 595, 212, 589, 595, 212, 589, 595, 87, 212, 589, 595, 212, 589, 595, 87, 212, 589, 595, 212, 589, 595, 589, 595, 62, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 63, 589, 595, 589, 595, 18, 589, 595, 18, 589, 595, 2, 18, 589, 595, 18, 589, 595, 18, 589, 595, 18, 589, 595, 18, 589, 595, 18, 589, 595, 197, 212, 589, 595, 197, 212, 589, 595, 209, 590, 595, 197, 212, 589, 595, 198, 212, 589, 595, 198, 212, 589, 595, 198, 212, 589, 595, 199, 212, 589, 595, 199, 212, 589, 595, 199, 212, 589, 595, 205, 206, 589, 595, 205, 206, 589, 595, 205, 206, 589, 595, 204, 590, 595, 2, 205, 206, 589, 595, 206, 589, 595, 206, 589, 595, 205, 206, 589, 595, 206, 589, 595, 38, 589, 595, 38, 589, 595, 589, 595, 39, 589, 595, 39, 589, 595, 40, 590, 595, 2, 39, 589, 595, 39, 589, 595, 39, 589, 595, 37, 589, 595, 589, 595, 200, 589, 595, 200, 589, 595, 589, 595, 201, 589, 595, 201, 589, 595, 187, 589, 595, 589, 595, 589, 595, 181, 589, 595, 181, 589, 595, 183, 589, 595, 183, 589, 595, 184, 589, 595, 185, 589, 595, 185, 589, 595, 185, 590, 595, 2, 185, 589, 595, 185, 589, 595, 186, 589, 595, 530, 590, 595, 529, 589, 595, 106, 589, 595, 106, 589, 595, 106, 589, 595, 104, 589, 595, 104, 589, 595, 104, 589, 595, 105, 589, 595, 105, 589, 595, 105, 589, 595, 107, 589, 595, 107, 589, 595, 107, 589, 595, 112, 589, 595, 112, 589, 595, 111, 590, 595, 2, 112, 589, 595, 112, 589, 595, 112, 589, 595, 589, 595, 589, 595, 50, 589, 595, 50, 590, 595, 2, 50, 589, 595, 589, 595, 68, 589, 595, 16453, 33, 589, 595, 33, 589, 595, 31, 32, 590, 595, 2, 33, 589, 595, 33, 589, 595, 33, 589, 595, 33, 589, 595, 33, 589, 595, 589, 595, 28, 589, 595, 28, 589, 595, 47, 589, 595, 47, 589, 595, 2, 47, 589, 595, 47, 589, 595, 589, 595, 590, 595, 2, 589, 595, 589, 595, 43, 589, 595, 589, 595, 589, 595, 589, 595, 2, 589, 595, 589, 595, 70, 589, 595, 72, 589, 595, 589, 595, 589, 595, 73, 590, 595, 2, 589, 595, 589, 595, 83, 590, 595, 82, 589, 595, 82, 589, 595, 82, 589, 595, 589, 595, 77, 589, 595, 77, 589, 595, 77, 589, 595, 77, 589, 595, 589, 595, 78, 589, 595, 78, 589, 595, 79, 590, 595, 589, 595, 589, 595, 505, 589, 595, 589, 595, 589, 595, 506, 590, 595, 2, 589, 595, 507, 589, 595, 589, 595, 260, 589, 595, 260, 589, 595, 2, 260, 589, 595, 260, 589, 595, 256, 260, 589, 595, 257, 260, 589, 595, 332, 350, 589, 595, 332, 350, 589, 595, 349, 590, 595, 2, 332, 350, 589, 595, 345, 350, 589, 595, 350, 589, 595, 332, 350, 589, 595, 350, 589, 595, 333, 350, 589, 595, 333, 350, 589, 595, 2, 333, 350, 589, 595, 335, 350, 589, 595, 350, 589, 595, 340, 350, 589, 595, 341, 350, 589, 595, 350, 589, 595, 350, 589, 595, 2, 350, 589, 595, 342, 350, 589, 595, 343, 350, 589, 595, 331, 350, 589, 595, 331, 350, 589, 595, 334, 350, 589, 595, 334, 349, 590, 595, 2, 334, 350, 589, 595, 336, 350, 589, 595, 337, 350, 589, 595, 338, 350, 589, 595, 339, 350, 589, 595, 410, 589, 595, 410, 589, 595, 409, 410, 589, 595, 409, 590, 595, 2, 409, 410, 589, 595, 410, 589, 595, 407, 410, 589, 595, 408, 410, 589, 595, 5, 589, 595, 5, 589, 595, 2, 5, 589, 595, 5, 589, 595, 5, 589, 595, 518, 589, 595, 518, 589, 595, 2, 518, 589, 595, 518, 589, 595, 518, 589, 595, 518, 589, 595, 518, 589, 595, 518, 589, 595, 518, 589, 595, 504, 589, 595, 1, 592, 594, 267, 270, 592, 594, 272, 397, 392, 397, 392, 393, 404, 416, 404, 416, 231, 231, 262, 275, 313, 592, 594, 261, 254, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 255, 261, 592, 594, 290, 358, 357, 357, 358, 356, 246, 294, 294, 1, 294, 294, 311, 311, 296, 297, 592, 295, 594, 252, 252, 458, 458, 383, 382, 592, 384, 594, 377, 382, 592, 384, 594, 381, 388, 388, 592, 388, 594, 386, 266, 266, 265, 588, 588, 1, 588, 588, 593, 591, 592, 588, 591, 594, 587, 1, 587, 592, 594, 501, 501, 1, 501, 519, 500, 594, 501, 499, 499, 498, 500, 594, 288, 304, 420, 420, 1, 420, 417, 420, 417, 421, 418, 592, 419, 420, 594, 583, 586, 592, 512, 594, 557, 585, 585, 511, 512, 594, 584, 436, 431, 433, 585, 433, 585, 431, 433, 585, 433, 585, 509, 509, 509, 511, 512, 594, 582, 460, 460, 467, 466, 466, 594, 469, 468, 468, 594, 545, 546, 546, 551, 538, 539, 457,16918, 16919,16920, 531,16918,16919,16920, 585,16918,16919,16920, 531, 585, 585, 585,16918,16919,16920, 585, 585, 594, 16918,16919,16920, 441, 442, 462, 464, 464, 1, 464, 464, 592, 464, 594, 525, 482, 1, 482, 592, 594, 581, 577, 592, 577, 594, 578, 578, 572, 573, 567, 592, 567, 594,16955, 568, 568, 564, 592, 564, 594, 509, 509, 472, 472, 594, 474, 1, 474, 592, 594, 470, 470, 594, 455, 455, 594, 475, 475, 314, 314, 317, 316, 322, 323, 328, 327, 327, 305, 305, 491, 491, 1, 491, 493, 592, 493, 594, 491, 492, 493, 594, 211, 211, 211, 211, 210, 211, 87, 196, 208, 592, 207, 594, 169, 87, 87, 194, 193, 195, 192, 190, 191, 189, 188, 87, 62, 62, 63, 63, 17, 17, 592, 17, 594, 197, 197, 1, 197, 197, 208, 592, 197, 207, 594, 198, 198, 1, 198, 198, 208, 592, 198, 207, 594, 199, 199, 1, 199, 199, 208, 592, 199, 207, 594, 205, 205, 1, 205, 205, 205, 203, 592, 202, 594, 205, 38, 38, 594, 37, 200, 200, 594, 201, 201, 594, 181, 181, 594, 183, 183, 594, 185, 185, 1, 185, 185, 592, 185, 594, 529, 106, 106, 1, 106, 106, 592, 106, 594, 104, 104, 1, 104, 104, 592, 104, 594, 105, 105, 1, 105, 105, 592, 105, 594, 107, 107, 1, 107, 107, 592, 107, 594, 50, 50, 1, 50, 50, 592, 594, 68, 16453, 31, 1, 31, 32, 32, 592, 32, 594, 28, 28, 594, 47, 47, 1, 47, 47, 592, 47, 594, 43, 43, 71, 1, 71, 592, 594, 72, 73, 1, 73, 592, 594, 82, 82, 82, 77, 77, 77, 77, 594, 78, 78, 594, 505, 506, 1, 506, 594, 258, 332, 332, 1, 332, 332, 592, 332, 594, 344, 333, 333, 1, 333, 331, 331, 1, 331, 334, 409, 594, 504, 392, 392, 221, 221, 313, 423, 425, 261, 253, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 423, 425, 356, 244, 301, 301, 297, 298, 295, 252, 252, 458, 458, 375, 375, 384, 384, 384, 381, 265, 501, 498, 1, 421, 438, 514, 515, 511, 437, 511, 460, 460, 466, 468, 546, 546, 551,16918,16919, 16920,16918,16919,16920,16918,16919,16920,16918,16919,16920, 8727, 8763, 568, 568, 568, 472, 470, 455, 475, 475, 475, 314, 314, 305, 491, 210, 211, 210, 211, 87, 87, 90, 87, 170, 166, 172, 94, 95, 96, 93, 97, 87, 87, 63, 63, 205, 200, 201, 8261, 28, 43, 43, 82, 82, 77, 78, 259, 348, 348, 4, 516, 517, 278, 220, 219, 220, 424, 426, 426, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 278, 424, 278, 426, 300, 299, 300, 374, 373, 374, 384, 501, 438, 513, 437, 561, 533, 8727, 475, 475, 491, 210, 211, 13, 87, 87, 3, 168, 171, 167, 173, 165, 163, 159, 161, 156, 174, 176, 178, 158, 152, 148, 146, 144, 154, 150, 86, 87, 66, 57, 87, 205, 75, 82, 82, 347, 346, 347, 219, 277, 276, 261, 243, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 354, 299, 373, 384, 423, 384, 371, 501, 489, 439, 444, 453, 451, 549, 475, 475, 491, 87, 164, 160, 162, 157, 175, 177, 179, 153, 149, 147, 145, 155, 151, 133, 137, 138, 140, 142, 135, 48, 52, 84, 49, 42, 87, 61, 84, 87, 205, 182, 180, 76, 82, 346, 399, 243, 240, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, 242, 249, 261, 354, 360, 384, 424, 497, 501, 447, 488, 444, 453, 451, 527, 448, 549, 552, 462, 576, 491, 8, 6, 7, 87, 134, 139, 141, 143, 136, 129, 131, 125, 127, 124, 84, 84, 54, 102, 36, 100, 87, 61, 61, 61, 87, 92, 205, 182, 182, 180, 180, 108, 401, 398, 240, 242, 263, 233, 235, 261, 238, 261, 261, 261, 228, 261, 261, 232, 241, 261, 261, 261, 261, 361, 501, 447, 449, 448, 487, 437, 429, 430, 8727, 8728, 520, 491, 11, 87, 130, 132, 126, 128, 121, 122, 119, 74, 58, 103, 87, 61, 90, 61, 46, 35, 87, 205, 109, 80, 233, 235, 238, 228, 232, 241, 261, 261, 230, 261, 261, 228, 261, 224, 261, 261, 234, 355, 496, 501, 496, 483, 454, 480, 456, 449, 437, 550, 8726, 8727, 523, 491, 9, 10, 12, 87, 123, 120, 117, 115, 55, 56, 59, 87, 26, 25, 67, 87, 205, 41, 81, 80, 400, 230, 224, 234, 261, 261, 230, 261, 261, 261, 224, 8440, 254, 16632, 236, 355, 445, 454, 524, 575, 452, 440, 456, 528, 574, 550, 478, 477, 491, 87, 118, 116, 85, 44, 98, 53, 51, 87, 85, 85, 44, 44, 87, 87, 91, 205, 91, 81, 80, 236, 427, 239, 237, 261, 229, 261, 261, 8440, 253, 250, 445, 450, 452, 446, 440, 485, 543, 491, 87, 113, 45, 14, 34, 101, 29, 87, 65, 14, 14, 29, 29, 87, 87, 89, 110, 81, 239, 237, 229, 427, 427, 261, 229, 261, 261, 481, 450, 446, 484, 486, 486, 491, 87, 114, 60, 16, 87, 16, 16, 64, 89, 87, 87, 86, 89, 87, 89, 87, 87, 261, 261, 225, 479, 491, 87, 87, 87, 20, 88, 87, 225, 227, 261, 225, 490, 491, 490, 99, 27, 87, 87, 15, 30, 30, 31, 30, 227, 227, 261, 87, 87, 19, 226, 21, 87, 87, 226, 226, 22, 24, 87, 87, 87, 87, 87, 87, 87, 23, 87 } ; static yyconst short int yy_accept[3762] = { 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, 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, 6, 6, 6, 6, 6, 6, 6, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 16, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 21, 23, 25, 28, 30, 33, 36, 39, 43, 47, 50, 53, 56, 59, 62, 66, 70, 73, 76, 78, 80, 83, 85, 88, 91, 94, 96, 98, 101, 104, 107, 110, 113, 115, 117, 120, 123, 125, 128, 131, 134, 137, 140, 144, 147, 152, 155, 158, 161, 164, 166, 169, 172, 175, 178, 181, 184, 188, 191, 194, 197, 200, 202, 205, 208, 211, 214, 217, 220, 223, 226, 229, 232, 235, 238, 241, 244, 247, 250, 253, 255, 257, 259, 262, 264, 267, 269, 271, 273, 276, 279, 281, 284, 287, 290, 292, 295, 298, 301, 304, 307, 310, 314, 317, 322, 326, 330, 334, 337, 340, 343, 347, 351, 355, 358, 362, 365, 370, 373, 377, 380, 383, 386, 389, 392, 395, 398, 401, 405, 408, 411, 414, 417, 420, 424, 427, 431, 435, 439, 443, 448, 451, 456, 459, 462, 465, 469, 473, 476, 478, 480, 482, 485, 487, 490, 492, 494, 497, 500, 502, 505, 507, 511, 515, 518, 523, 528, 532, 536, 540, 545, 550, 554, 559, 562, 566, 570, 573, 576, 579, 582, 586, 590, 593, 596, 599, 602, 605, 609, 612, 615, 619, 622, 625, 628, 632, 635, 638, 641, 644, 647, 651, 653, 656, 658, 660, 663, 666, 668, 671, 674, 677, 680, 684, 688, 691, 694, 699, 702, 705, 709, 713, 716, 719, 723, 726, 729, 732, 736, 739, 744, 747, 751, 755, 758, 761, 764, 767, 770, 774, 778, 783, 786, 792, 795, 799, 802, 805, 808, 811, 815, 818, 821, 825, 828, 831, 834, 837, 840, 843, 846, 849, 852, 855, 859, 862, 865, 868, 871, 875, 878, 881, 885, 889, 892, 895, 898, 901, 905, 908, 912, 915, 918, 922, 925, 928, 931, 935, 938, 941, 944, 947, 950, 953, 957, 960, 963, 966, 969, 972, 975, 979, 982, 984, 987, 990, 992, 994, 997, 999, 1001, 1004, 1007, 1009, 1012, 1015, 1017, 1020, 1023, 1025, 1028, 1031, 1034, 1037, 1040, 1044, 1048, 1051, 1054, 1057, 1059, 1061, 1064, 1067, 1069, 1072, 1074, 1077, 1080, 1083, 1086, 1089, 1092, 1096, 1099, 1102, 1106, 1110, 1113, 1116, 1119, 1122, 1125, 1128, 1131, 1135, 1138, 1141, 1144, 1147, 1153, 1157, 1161, 1167, 1170, 1173, 1176, 1179, 1182, 1185, 1188, 1192, 1195, 1198, 1201, 1204, 1208, 1212, 1215, 1218, 1221, 1224, 1227, 1230, 1233, 1237, 1240, 1243, 1246, 1248, 1250, 1253, 1256, 1258, 1261, 1264, 1267, 1271, 1274, 1277, 1280, 1283, 1286, 1289, 1292, 1295, 1299, 1302, 1305, 1308, 1311, 1314, 1318, 1321, 1324, 1327, 1331, 1334, 1337, 1341, 1344, 1347, 1350, 1353, 1357, 1360, 1363, 1366, 1369, 1373, 1376, 1378, 1381, 1383, 1386, 1389, 1391, 1393, 1396, 1399, 1401, 1404, 1406, 1409, 1412, 1415, 1417, 1420, 1423, 1426, 1429, 1432, 1435, 1438, 1440, 1444, 1447, 1450, 1454, 1457, 1460, 1463, 1467, 1471, 1474, 1477, 1481, 1484, 1487, 1490, 1493, 1497, 1500, 1505, 1509, 1513, 1517, 1520, 1522, 1524, 1527, 1529, 1532, 1535, 1538, 1541, 1544, 1547, 1550, 1554, 1558, 1561, 1564, 1569, 1572, 1576, 1579, 1582, 1585, 1588, 1592, 1595, 1598, 1602, 1605, 1610, 1613, 1616, 1619, 1622, 1625, 1628, 1631, 1634, 1638, 1641, 1645, 1648, 1650, 1653, 1655, 1657, 1660, 1662, 1665, 1667, 1670, 1673, 1677, 1680, 1683, 1686, 1689, 1692, 1696, 1700, 1703, 1707, 1711, 1715, 1719, 1723, 1727, 1731, 1735, 1739, 1743, 1746, 1751, 1754, 1757, 1761, 1764, 1767, 1770, 1772, 1775, 1778, 1781, 1785, 1788, 1791, 1794, 1796, 1799, 1802, 1804, 1807, 1810, 1813, 1815, 1817, 1820, 1823, 1826, 1829, 1832, 1835, 1838, 1841, 1845, 1848, 1851, 1854, 1857, 1860, 1863, 1866, 1869, 1872, 1875, 1878, 1881, 1884, 1887, 1890, 1893, 1896, 1899, 1902, 1906, 1909, 1912, 1914, 1916, 1919, 1922, 1926, 1928, 1932, 1935, 1938, 1942, 1946, 1949, 1952, 1955, 1958, 1960, 1963, 1966, 1969, 1972, 1976, 1979, 1981, 1983, 1986, 1988, 1991, 1993, 1995, 1997, 2000, 2002, 2005, 2008, 2010, 2012, 2015, 2018, 2020, 2023, 2026, 2029, 2032, 2034, 2037, 2040, 2043, 2046, 2048, 2051, 2054, 2057, 2059, 2061, 2064, 2066, 2068, 2071, 2074, 2077, 2079, 2082, 2085, 2089, 2092, 2096, 2100, 2104, 2108, 2111, 2116, 2120, 2123, 2127, 2130, 2134, 2138, 2143, 2147, 2150, 2154, 2158, 2161, 2164, 2168, 2172, 2176, 2180, 2184, 2188, 2192, 2197, 2201, 2205, 2209, 2213, 2216, 2219, 2223, 2226, 2231, 2234, 2238, 2242, 2245, 2248, 2252, 2255, 2258, 2261, 2264, 2268, 2271, 2274, 2277, 2280, 2283, 2286, 2289, 2289, 2290, 2291, 2292, 2293, 2294, 2294, 2294, 2295, 2296, 2297, 2297, 2297, 2297, 2298, 2298, 2299, 2300, 2300, 2301, 2301, 2302, 2302, 2302, 2303, 2304, 2304, 2304, 2305, 2305, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2307, 2308, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2310, 2311, 2311, 2312, 2313, 2313, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2330, 2331, 2331, 2331, 2331, 2331, 2332, 2333, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2343, 2344, 2345, 2347, 2349, 2350, 2350, 2351, 2351, 2351, 2353, 2355, 2355, 2355, 2355, 2355, 2356, 2356, 2357, 2357, 2357, 2357, 2358, 2358, 2359, 2359, 2359, 2360, 2362, 2364, 2364, 2364, 2364, 2365, 2367, 2369, 2370, 2370, 2371, 2373, 2375, 2376, 2377, 2378, 2378, 2379, 2379, 2380, 2381, 2383, 2384, 2384, 2385, 2387, 2390, 2390, 2391, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2399, 2399, 2399, 2400, 2402, 2402, 2403, 2403, 2403, 2404, 2405, 2408, 2409, 2410, 2411, 2411, 2412, 2414, 2414, 2416, 2417, 2417, 2418, 2420, 2423, 2423, 2423, 2423, 2424, 2426, 2428, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2430, 2431, 2434, 2434, 2434, 2435, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2437, 2437, 2437, 2439, 2441, 2444, 2446, 2447, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2452, 2452, 2452, 2453, 2453, 2454, 2454, 2455, 2455, 2456, 2456, 2457, 2459, 2459, 2460, 2460, 2461, 2463, 2463, 2464, 2464, 2464, 2464, 2464, 2465, 2465, 2466, 2466, 2466, 2466, 2466, 2466, 2467, 2467, 2467, 2467, 2468, 2469, 2470, 2470, 2473, 2474, 2474, 2477, 2477, 2477, 2477, 2481, 2483, 2484, 2488, 2489, 2490, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2495, 2495, 2496, 2496, 2497, 2498, 2499, 2501, 2503, 2505, 2506, 2506, 2507, 2507, 2508, 2509, 2510, 2511, 2512, 2514, 2516, 2516, 2516, 2516, 2516, 2517, 2518, 2519, 2520, 2522, 2524, 2524, 2525, 2526, 2527, 2529, 2531, 2532, 2532, 2532, 2532, 2533, 2533, 2533, 2534, 2536, 2536, 2537, 2537, 2538, 2539, 2540, 2541, 2541, 2542, 2544, 2544, 2545, 2547, 2547, 2548, 2548, 2549, 2549, 2549, 2549, 2550, 2550, 2551, 2551, 2552, 2553, 2553, 2554, 2555, 2556, 2557, 2558, 2558, 2558, 2559, 2560, 2560, 2561, 2562, 2564, 2566, 2568, 2569, 2569, 2572, 2572, 2572, 2572, 2572, 2572, 2572, 2573, 2574, 2575, 2576, 2578, 2579, 2579, 2579, 2580, 2580, 2580, 2582, 2584, 2584, 2584, 2584, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2586, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2596, 2596, 2597, 2598, 2598, 2598, 2598, 2599, 2599, 2600, 2601, 2603, 2605, 2605, 2605, 2606, 2607, 2609, 2612, 2615, 2616, 2617, 2619, 2622, 2625, 2626, 2627, 2629, 2632, 2635, 2636, 2637, 2639, 2640, 2640, 2641, 2641, 2643, 2645, 2645, 2646, 2646, 2647, 2649, 2649, 2650, 2650, 2651, 2653, 2653, 2654, 2656, 2656, 2656, 2657, 2659, 2660, 2662, 2663, 2664, 2666, 2668, 2670, 2671, 2672, 2673, 2675, 2677, 2679, 2680, 2681, 2683, 2685, 2687, 2688, 2689, 2691, 2693, 2695, 2696, 2697, 2699, 2701, 2703, 2703, 2703, 2703, 2703, 2704, 2705, 2705, 2706, 2707, 2708, 2709, 2710, 2710, 2712, 2712, 2713, 2713, 2714, 2715, 2716, 2718, 2720, 2720, 2720, 2720, 2721, 2723, 2724, 2725, 2727, 2729, 2731, 2731, 2731, 2731, 2732, 2732, 2733, 2733, 2734, 2734, 2735, 2736, 2737, 2738, 2739, 2739, 2740, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2747, 2748, 2749, 2750, 2752, 2752, 2753, 2755, 2755, 2755, 2756, 2756, 2757, 2757, 2758, 2759, 2760, 2760, 2761, 2761, 2762, 2763, 2765, 2767, 2769, 2770, 2771, 2772, 2774, 2774, 2774, 2775, 2776, 2778, 2779, 2780, 2780, 2780, 2780, 2780, 2781, 2781, 2782, 2782, 2782, 2782, 2782, 2783, 2783, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 2785, 2785, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2787, 2787, 2787, 2787, 2788, 2788, 2788, 2789, 2789, 2789, 2790, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2809, 2810, 2810, 2811, 2811, 2811, 2812, 2813, 2813, 2814, 2814, 2815, 2815, 2815, 2815, 2815, 2815, 2816, 2817, 2817, 2818, 2818, 2819, 2820, 2820, 2821, 2821, 2821, 2822, 2822, 2823, 2823, 2824, 2824, 2825, 2826, 2826, 2827, 2827, 2828, 2829, 2830, 2830, 2830, 2831, 2832, 2832, 2833, 2833, 2833, 2834, 2834, 2835, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2836, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2837, 2838, 2839, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2842, 2842, 2843, 2843, 2844, 2845, 2846, 2846, 2846, 2847, 2847, 2848, 2849, 2849, 2849, 2849, 2849, 2852, 2855, 2858, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2863, 2864, 2865, 2866, 2866, 2866, 2866, 2866, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2872, 2873, 2873, 2874, 2874, 2875, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2878, 2880, 2881, 2881, 2882, 2882, 2883, 2883, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2888, 2888, 2888, 2888, 2889, 2889, 2890, 2890, 2890, 2890, 2891, 2891, 2891, 2891, 2891, 2891, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2894, 2894, 2895, 2895, 2896, 2896, 2896, 2896, 2897, 2897, 2897, 2898, 2899, 2899, 2899, 2899, 2899, 2899, 2900, 2900, 2900, 2901, 2901, 2902, 2902, 2903, 2904, 2905, 2906, 2907, 2907, 2907, 2908, 2909, 2909, 2910, 2910, 2910, 2911, 2912, 2912, 2913, 2914, 2914, 2914, 2914, 2914, 2914, 2915, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2918, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2940, 2942, 2942, 2942, 2942, 2942, 2943, 2945, 2945, 2945, 2946, 2948, 2948, 2949, 2949, 2949, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2950, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2953, 2953, 2953, 2953, 2953, 2953, 2953, 2953, 2954, 2954, 2954, 2954, 2954, 2954, 2954, 2955, 2955, 2955, 2955, 2955, 2955, 2955, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2957, 2958, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2961, 2961, 2962, 2963, 2964, 2965, 2965, 2966, 2966, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2968, 2968, 2968, 2968, 2968, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2970, 2970, 2970, 2970, 2971, 2971, 2971, 2972, 2972, 2973, 2973, 2974, 2974, 2974, 2975, 2975, 2976, 2976, 2977, 2977, 2977, 2978, 2978, 2978, 2978, 2978, 2978, 2979, 2979, 2979, 2979, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2981, 2981, 2982, 2982, 2983, 2983, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2985, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2987, 2987, 2987, 2987, 2988, 2988, 2988, 2988, 2988, 2988, 2989, 2989, 2989, 2989, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2992, 2993, 2993, 2993, 2994, 2996, 2996, 2996, 2996, 2996, 2996, 2997, 2997, 2998, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3019, 3019, 3019, 3020, 3020, 3020, 3021, 3021, 3023, 3024, 3025, 3025, 3026, 3026, 3026, 3026, 3027, 3027, 3027, 3027, 3028, 3028, 3028, 3029, 3029, 3030, 3030, 3030, 3030, 3030, 3030, 3030, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3033, 3034, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3037, 3037, 3037, 3038, 3038, 3039, 3039, 3040, 3040, 3040, 3041, 3041, 3042, 3042, 3043, 3043, 3043, 3043, 3043, 3044, 3044, 3044, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3046, 3046, 3047, 3047, 3048, 3048, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3052, 3052, 3052, 3052, 3053, 3053, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3055, 3055, 3056, 3056, 3057, 3057, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3059, 3059, 3060, 3060, 3060, 3060, 3060, 3060, 3060, 3060, 3060, 3061, 3061, 3061, 3061, 3061, 3061, 3062, 3062, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3064, 3064, 3064, 3064, 3065, 3065, 3065, 3065, 3066, 3066, 3067, 3067, 3067, 3067, 3067, 3067, 3069, 3069, 3069, 3070, 3070, 3070, 3070, 3071, 3071, 3071, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3091, 3091, 3092, 3092, 3092, 3094, 3094, 3095, 3096, 3096, 3096, 3096, 3096, 3096, 3097, 3098, 3098, 3098, 3099, 3099, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 3101, 3101, 3102, 3102, 3102, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3104, 3104, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3106, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3108, 3108, 3108, 3108, 3108, 3108, 3109, 3110, 3111, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3114, 3114, 3114, 3114, 3115, 3115, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3117, 3117, 3118, 3118, 3118, 3119, 3119, 3119, 3119, 3120, 3120, 3121, 3121, 3121, 3121, 3121, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3123, 3124, 3124, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3126, 3127, 3127, 3127, 3127, 3127, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3129, 3129, 3129, 3129, 3129, 3130, 3131, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3133, 3133, 3133, 3133, 3134, 3135, 3135, 3135, 3136, 3137, 3138, 3139, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3141, 3141, 3142, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3144, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3161, 3162, 3162, 3162, 3162, 3162, 3163, 3163, 3163, 3163, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3165, 3165, 3166, 3166, 3167, 3167, 3167, 3167, 3167, 3168, 3169, 3169, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3171, 3172, 3172, 3172, 3173, 3173, 3173, 3173, 3173, 3174, 3174, 3174, 3175, 3175, 3175, 3176, 3176, 3177, 3177, 3177, 3178, 3178, 3178, 3178, 3179, 3179, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3181, 3181, 3181, 3181, 3181, 3182, 3182, 3182, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3184, 3184, 3184, 3184, 3185, 3185, 3185, 3185, 3185, 3186, 3186, 3186, 3186, 3186, 3187, 3187, 3187, 3187, 3187, 3189, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3193, 3193, 3193, 3193, 3193, 3194, 3194, 3194, 3194, 3195, 3195, 3195, 3195, 3195, 3195, 3196, 3196, 3197, 3198, 3198, 3199, 3199, 3199, 3199, 3199, 3200, 3200, 3200, 3201, 3202, 3202, 3202, 3202, 3202, 3203, 3204, 3204, 3205, 3206, 3207, 3208, 3209, 3209, 3210, 3211, 3211, 3212, 3213, 3214, 3214, 3216, 3217, 3218, 3218, 3218, 3219, 3219, 3219, 3219, 3219, 3220, 3220, 3220, 3221, 3222, 3222, 3222, 3222, 3222, 3222, 3223, 3223, 3223, 3223, 3224, 3224, 3225, 3225, 3226, 3226, 3226, 3226, 3227, 3228, 3228, 3229, 3230, 3231, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3233, 3233, 3233, 3234, 3234, 3235, 3235, 3235, 3235, 3235, 3235, 3235, 3236, 3236, 3236, 3236, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3238, 3239, 3239, 3239, 3239, 3239, 3239, 3240, 3240, 3240, 3240, 3240, 3241, 3241, 3241, 3241, 3241, 3241, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3244, 3244, 3244, 3245, 3245, 3246, 3246, 3246, 3246, 3246, 3247, 3247, 3248, 3249, 3249, 3249, 3249, 3250, 3250, 3250, 3250, 3250, 3251, 3251, 3251, 3252, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3259, 3262, 3262, 3262, 3263, 3264, 3264, 3265, 3265, 3266, 3267, 3267, 3268, 3269, 3269, 3270, 3271, 3271, 3271, 3271, 3271, 3272, 3273, 3273, 3273, 3274, 3274, 3275, 3275, 3275, 3276, 3277, 3277, 3278, 3278, 3279, 3279, 3279, 3279, 3279, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3281, 3282, 3282, 3282, 3283, 3283, 3283, 3283, 3283, 3283, 3284, 3285, 3286, 3286, 3286, 3286, 3286, 3286, 3287, 3288, 3289, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3292, 3292, 3292, 3292, 3294, 3295, 3295, 3295, 3295, 3295, 3296, 3297, 3297, 3297, 3297, 3297, 3297, 3298, 3299, 3299, 3300, 3301, 3302, 3302, 3303, 3304, 3305, 3307, 3307, 3308, 3309, 3309, 3310, 3311, 3312, 3313, 3314, 3314, 3314, 3314, 3315, 3315, 3316, 3316, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3318, 3319, 3319, 3319, 3320, 3321, 3321, 3322, 3323, 3323, 3324, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3326, 3327, 3327, 3327, 3327, 3328, 3329, 3329, 3329, 3330, 3330, 3332, 3332, 3332, 3332, 3332, 3333, 3333, 3333, 3334, 3335, 3336, 3336, 3336, 3337, 3337, 3337, 3338, 3339, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3349, 3350, 3350, 3351, 3351, 3352, 3352, 3352, 3352, 3353, 3354, 3354, 3355, 3355, 3355, 3355, 3355, 3355, 3356, 3357, 3357, 3358, 3358, 3358, 3358, 3359, 3360, 3360, 3361, 3363, 3363, 3365, 3366, 3367, 3367, 3367, 3367, 3367, 3367, 3367, 3367, 3368, 3369, 3369, 3370, 3371, 3372, 3372, 3373, 3373, 3373, 3373, 3373, 3374, 3375, 3375, 3375, 3375, 3375, 3375, 3376, 3376, 3376, 3376, 3377, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3379, 3379, 3380, 3381, 3382, 3384, 3385, 3386, 3387, 3387, 3387, 3387, 3387, 3388, 3389, 3390, 3390, 3391, 3393, 3394, 3394, 3395, 3395, 3396, 3397, 3397, 3397, 3397, 3397, 3398, 3399, 3400, 3400, 3400, 3401, 3401, 3401, 3402, 3402, 3403, 3404, 3404, 3405, 3406, 3406, 3407, 3408, 3409, 3410, 3410, 3411, 3412, 3412, 3413, 3414, 3414, 3415, 3416, 3417, 3417 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 2, 1, 1, 3, 4, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 25, 25, 25, 26, 27, 27, 28, 29, 30, 31, 32, 1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 43, 44, 45, 46, 47, 48, 43, 49, 50, 51, 52, 53, 43, 54, 55, 43, 56, 57, 58, 1, 43, 1, 59, 60, 61, 62, 63, 64, 65, 66, 67, 43, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 43, 83, 1, 84, 85, 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[86] = { 0, 1, 1, 2, 3, 4, 2, 1, 5, 6, 1, 1, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 18, 1, 19, 1, 20, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 24, 25, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 26, 27, 28 } ; static yyconst short int yy_base[4473] = { 0, 0, 4, 25, 0, 109, 113, 117, 137, 127, 131, 194, 0, 279, 0, 364, 0, 448, 453, 458, 476, 559, 0, 644, 0, 729, 0, 151, 157, 813, 819, 162, 496, 504, 529, 901, 983, 841, 847, 491, 833, 861, 907, 854, 895, 1066, 0, 1151, 0, 933, 1235, 874, 948, 938, 953, 992, 1245, 1253, 1260, 977, 997, 518, 533, 1022, 1280, 1027, 1031, 1266, 1273, 1293, 1301, 1307, 1342, 1349, 1363, 1357, 1381, 1386, 1401, 1422, 0, 1506, 1512, 1533, 1618, 1553, 1638, 1703, 1788, 1723, 1808, 1566, 1573, 1873, 0, 1958, 2043, 2128, 2213, 1591, 1665, 2298, 0, 2001, 2006, 1577, 1651, 1678, 1736, 2383, 0, 2468, 0, 2088, 2148, 1760, 1821, 1834, 1978, 2553, 0, 1748, 1826, 2638, 0, 1830, 1996, 2175, 2233, 2722, 2728, 2735, 2748, 2805, 461, 2066, 2077, 2890, 2975, 2019, 2098, 3060, 3145, 2161, 2166, 114, 2770, 3230, 3315, 2171, 2246, 3400, 0, 3485, 0, 2258, 2272, 2826, 2850, 2762, 2855, 2910, 2935, 3570, 0, 2940, 2996, 3080, 3105, 2846, 2905, 3655, 0, 3740, 3825, 3910, 0, 3163, 3190, 3248, 3275, 2930, 3007, 3016, 3036, 3093, 3100, 3335, 3760, 2254, 2950, 3995, 4079, 3845, 4010, 4163, 4248, 4333, 4418, 4503, 4588, 3022, 3030, 4028, 4112, 4673, 4758, 4843, 4927, 3167, 3178, 5011, 0, 3268, 3348, 3355, 3375, 3773, 3780, 3800, 3858, 4015, 4099, 3865, 3870, 5096, 0, 4183, 4206, 5181, 5266, 3115, 3120, 5351, 0, 3205, 3290, 3362, 3787, 5436, 0, 3200, 3263, 5521, 0, 5606, 5691, 5776, 5861, 4120, 4125, 5946, 0, 3370, 3883, 4033, 4037, 4213, 4266, 4295, 4380, 4042, 4280, 4365, 4450, 4307, 4464, 4535, 4549, 4608, 4620, 4138, 4270, 4351, 4355, 4436, 4440, 6031, 0,19208,28860, 19205,28860,28860, 1,19192,28860,19199,28860,28860, 2, 28860,19196, 1036, 1321, 2754,28860, 3,19193, 967, 1742, 2119,19168,28860, 3049, 4, 8, 462,28860,28860,28860, 28860, 0, 882, 1326, 1520,28860,19166,28860, 4522, 143, 28860,19191,28860,28860,28860, 163, 95,19125,28860,19134, 28860, 4220, 4627,28860, 6114, 4541, 4579, 467, 4,19174, 4692, 165,19160, 4704,28860,28860, 4631,28860, 4711, 4662, 4747, 4791, 4778, 4806, 4799, 4883, 4890, 4718,28860, 184, 4795, 4864, 4874,19159, 4919, 552, 4900, 4947, 4966, 4970, 467,28860, 0,28860, 470,28860,28860,28860, 4974,28860, 19184, 826, 1286, 1596,28860,28860, 1414, 530,28860,19183, 28860,28860,28860, 532, 5225, 5230, 5254, 804,28860, 4732, 19112,19124,19116,19109,28860,19165,28860,28860, 1685, 877, 19107,28860,19040,28860, 898,28860,28860, 0, 5242, 1526, 1768, 1779,19006,18922, 902,28860,28860,28860,18912, 5212, 5217, 5221,18938, 5307, 1853, 5313, 5625, 5637,18930, 5641, 1857,28860,18955,28860,28860,28860,18769,18797, 905,28860, 5645, 930,28860,28860, 935, 122,28860,28860,18788,28860, 28860,28860,18741, 947, 0,28860,18756,28860,18736, 994, 28860,28860,18754,18748, 146, 1030, 187, 0, 526, 854, 0,18731, 1040,18747, 511,28860,18746, 1043,28860,28860, 28860,28860, 0, 5654, 878,28860, 0,18728, 1238,18727, 18684,18683, 1003, 1251, 1272,28860,18743, 1863, 2025, 2030, 1317,28860,28860,28860,28860,28860,28860, 0,18728, 1378, 2194, 2107, 2278, 1318, 1355,28860,18741, 2200,28860,28860, 18721, 1376, 0, 64, 6135, 4339, 5287, 1551, 1564,28860, 18735, 2959,28860,28860,18715, 2111, 1576, 844, 6156, 4424, 5710,28860, 2784, 5724, 1588,28860,18733, 4090,28860,28860, 18713, 1590, 459, 919, 4927, 5693, 5795, 1592, 1636,28860, 18731, 3221, 5730, 5809, 1644, 1594, 1620, 4636, 1657,28860, 28860, 1733, 5680, 5814, 5818,18710,18702, 5850, 2790, 2869, 28860, 2874, 0, 0, 1827, 2878,28860, 3041, 0, 0, 1965,28860,18727,28860,28860, 1257,18706, 1976,18653, 5880, 5892, 5896,28860,18697, 5900, 3124, 4374,28860, 1736,18652, 18657,18650,28860,28860,18719,28860,28860, 1997,18706, 0, 28860,18717, 2249,28860,28860,18697, 1999, 985, 762, 6122, 28860, 3128, 6129, 2044, 5863, 6094,28860,18715, 2768,28860, 28860,18695, 2146,28860,18713,28860,28860,18689, 2167,28860, 18689, 0, 973,28860, 0, 2169,28860, 0,18704, 1019, 28860,18701, 2264,28860,18702,28860,28860,18682, 2173, 813, 2954, 2186,28860,18700,28860,28860,18680, 3211, 2188,18633, 3284, 2720,28860,18697,28860,28860, 2730,18631, 6143, 2749, 4025, 4584, 6180, 6242, 2781,28860,18695,28860,28860, 2783, 18675,28860, 0, 0, 2943,18691, 1051,28860,18690, 3119, 28860, 0, 0, 2947, 844, 0, 0, 2951,28860, 6261, 28860,18687, 5906, 6160, 6248, 2978,18660, 6265, 3298,28860, 6276,28860,28860,28860,18685,28860, 6292, 2981,28860,18684, 3889, 4226, 5201,28860,28860, 3384, 3165, 3806, 5832, 6297, 6311, 5910, 6325,28860,18629,28860,28860,28860, 0, 6316, 28860,28860, 0, 3169,18620,18619, 3177,28860,18679,28860, 6342, 3291, 3810, 4145, 4232,18594,18664, 0,18657, 3832, 165, 6418, 6439, 6511, 6588, 6660,18591,18667, 0, 6329, 6335, 6339,18646, 6344, 4320,28860,18671,28860,18658,18650, 3868,18607,18606, 0, 4569,28860, 3880, 0, 5334, 3882, 0, 5674, 3884, 0, 6349, 6470, 6518, 6537, 3988,18647, 18604,18575, 0, 4002,18547,28860,18581,28860,28860, 4013, 18519, 0, 0, 0, 4024, 0, 0, 4043,28860, 885, 1301, 0, 4045, 0, 4049,28860, 0, 522, 0, 0, 4097,28860,28860, 0, 0, 6356, 4105, 0, 6424, 4118, 0, 6429, 4139, 0, 6438, 4181,28860,18548,28860,28860, 4182, 1699, 4486, 6443, 4827, 4904, 4911, 6541, 501,18545, 3253,28860,18535, 832, 4185, 944,18468, 0, 0, 4191, 0, 1061, 0, 4193, 6387, 6549, 6555,18500, 6560, 4995, 532, 1406, 1238, 4371,28860, 0,18523, 1394,28860,18522, 4286,28860, 0, 2018, 1696, 0, 0, 5708, 6365, 0, 0, 0, 4212,28860,18459,18454, 0,18515, 2104,28860, 18513,18495, 4386,28860,18513,28860, 4298,28860, 6575, 0, 6582,28860, 0,28860,28860, 4388, 0, 0, 6602, 0, 28860,18457,28860,28860, 4390,18511,28860,28860,28860, 0, 6622, 5248, 5342, 5668,28860,28860,28860,28860,28860,18510, 6568, 6608, 6628, 4443,28860,28860,28860,18509,28860,18491, 4444,28860,18507,28860, 4478,18444, 4819,18491, 4635,18442, 0,18499,28860,28860,28860,28860,18486, 6686, 4637, 1405, 940,28860, 6667, 6693,18468, 1314, 6697, 6706, 1371, 6710, 0, 3136, 0, 6723, 6732, 6736, 1691, 6743, 6748, 6752, 18467, 1972, 4660,18434,18418,18479, 6761, 6756, 4724, 6786, 4726, 6824, 6790, 4602,18463,18421, 912,18418,18416,18428, 1988, 1787,18404,18414,18413, 5620,18416, 1572, 6762, 6794, 2070, 4986, 6807, 6833, 6837,18446, 6845, 6841, 6850, 6854, 6902, 6906, 6910, 6938, 6942, 6950, 6956, 6984, 6988, 6999, 7016, 6798, 7028, 6946,18449, 7032, 7037, 7044,28860, 7048, 7058, 2081, 5752, 0, 7065, 7072, 7076, 7081, 7089,18404, 18415,18407,18400, 7093, 7097,18399,18402,18393,18398, 7101, 7115,28860, 0, 6916, 0, 7119, 7127,18458,28860,18452, 7113, 7140, 0,18394, 7144,18435, 7148, 7158, 7162, 0, 7174,18434, 7178, 7184, 7188, 0,18448, 7185,28860, 2254, 4961, 7210, 4728, 2286,28860,28860, 0,18455, 1275,28860, 28860,28860,28860,18454,18453, 1295,18448, 1515, 0, 4103, 0, 3379,18431,28860,28860, 0,18446,28860, 1660,18444, 18445,18442,18441, 0, 6362, 0, 3874,18423,28860,28860, 1767,18372,18371, 4270, 4844,18425, 5823, 7214, 0,18424, 4869, 4471,18423, 5829, 7218, 7222,18422,18421, 4939,18416, 6138, 7203, 1500,28860,28860,28860, 0, 2099,18360, 2219, 18364, 1914, 2658,18355, 1937,18366,18345,18364,18359, 773, 18339,18349, 2719, 5779, 2683,18344, 6652,18341, 6379,18401, 18395,28860,18395, 6288, 6404,18334,28860,28860, 1174,18331, 2780, 2159, 1708,18349,18344, 6183, 2783,18346, 3204, 2723, 4501, 7235,28860, 7239, 7243,28860, 7249,28860, 7280, 7255, 5273, 1777, 4595,18332,18332,18330,18335,18333,18335, 2145, 18326, 7284, 4988, 7266,18324, 6118, 7298,18374,18323,18329, 7288,18371,28860, 7310,18363,28860, 7321, 7325, 7329, 0, 7351,28860,18382, 0, 0, 7355,28860,18381, 0, 0, 6405, 6510,18321, 7359,18355, 7363, 7367, 7371, 0, 7376, 2863,18310,18307, 5915, 2924,18307,18302,18307,28860,18361, 0, 2954, 7393,28860, 7380, 7397,18353, 7360, 7384, 7462, 28860, 7466, 7470, 7418, 7442, 7507,18295,18294,18312,18289, 1955,18310,18305, 3159,18276,18276, 3037, 2786, 6873,28860, 18313,28860,18267,18310, 0, 1694, 0, 0, 0, 0, 18325,28860, 2191,18324,18325,18322,18321,28860,28860,28860, 18249,18252, 6818,18306,28860,18305,28860,28860,28860,28860, 6880,18304, 7484, 7525,28860,28860, 6919, 2211, 2684,18256, 7007, 2979,18306, 0, 0,18309,28860, 3046,18308,18308, 18305,18304,18299, 0, 0,18298, 0, 0, 7529, 7543, 18277, 7550, 7533,18276, 7576, 7580, 7539, 0, 7584,28860, 28860, 7588,28860,28860, 7606, 7615, 7622, 7626, 7631,18246, 18244,18241, 0, 7593, 0,28860,28860,18224,18216,28860, 6581, 6803,18197, 1960,18195,18187, 7648, 7652, 7659, 7663, 7669, 7667, 0, 0, 0,18244, 4698,28860,18232, 7736, 18232, 7788,28860, 7638, 5699, 7660, 2873, 3117, 7702, 7674, 3145, 6933, 3265, 6198, 7664, 7732, 3730, 4118, 7727, 7697, 7743, 2977, 7782,18173, 2816, 7813,18190,18167, 5135,18103, 18105,18108,18081,18148, 7872, 1493, 7949,28860,28860,28860, 28860,28860,28860,28860,18142, 7839, 7792, 7919, 7369, 7870, 3277, 4068, 3323, 7900, 3748, 3236, 6938, 2085, 4466, 3760, 18098,18152,18125, 0, 7879,18062, 7927, 7932, 7767, 0, 28860,28860,28860,18013,18012, 0, 7940, 0, 0, 0, 0, 7977, 0, 0, 0, 0, 7990, 0, 0, 0, 0, 7780, 0, 7981, 7994,18019,18016,28860,28860, 4244, 18006,17978, 0, 0,17943, 0,17990, 0, 0,17987, 0, 0, 4457, 4453, 0, 0, 0, 0, 0, 2733, 0, 0, 0, 0, 0, 7999, 0, 0, 0, 0, 8005, 0, 0, 0, 0, 8013, 0, 0, 0, 0, 8018, 0, 0, 0,17926,17849,17834, 7944, 8025, 8036, 8041, 8049, 8054, 8059, 8063, 8067, 5235, 4065,17899,28860, 5630,17898,17899,17891,17866,17864, 4006,17793,17854, 0, 0, 0, 4325, 0, 0, 0, 8071,17833, 8075, 8079, 8083, 0, 4406,28860, 5319, 4572,17858, 4809, 4816, 0, 17846,28860, 4379,17839,17835,17831,17823, 0, 4874, 4077, 17813, 0, 7650, 0, 7651,17812, 0, 0,17747,17750, 0,17807,28860, 5925,17779,17779,17661, 8087,28860,17636, 0, 7335, 0, 0, 0,28860, 0, 8096, 0,17647, 8099, 0, 8124, 0, 8091, 8130, 5712,17649, 7905,17633, 7292,17595, 0, 3890, 3073,17621, 8137, 8143, 8147, 0, 17564, 8151,17509,17509,17516,17507,28860,17565,17540, 8150, 4515, 3844, 4561, 4713,17492,17438,17307, 4489,17321,17312, 5216,17268,17262, 4653,17253,17205,17196,17206, 8163, 8177, 8181,17188,28860, 0, 6219,28860,17199, 8185, 8189, 8193, 28860, 8197, 8225, 8229, 8233, 8238, 8244, 8274, 8278, 8282, 8293, 8310, 8314, 8321, 8325, 8330, 8342, 8360, 8372, 8379, 8391, 8400, 8407, 8412, 8420, 8435,17184,17145,17125, 4762, 8439,17078,17077,17080,17092, 8448,28860,28860,17135,17134, 8433, 8463,28860, 8467, 0,17078, 8471, 8475, 8483, 0, 8487, 8491, 8501, 0,28860,17126,17125, 8487, 0, 6271, 17120, 4855, 4786,17127,17126, 4319,17059,17049, 7304,17070, 6308,17068, 6589,17011, 3212,17007,17018,17017, 5701,17009, 16986,16976,16966, 4820,16970,16953, 5002, 3023,16954,16934, 16935,16900,16885,16826,16822,16818,16766,16771,16762,16706, 16705, 5793,16706,16671,16662,28860,28860, 7405, 7409,16648, 16656,16636, 4767,16653, 3723, 5167, 4814,28860,16643,16631, 16627,16621,16595,16583,16575,16563, 3297, 4831,16544,28860, 8517, 8521, 8525, 0,28860,28860,16533, 8529, 8533, 8537, 0, 5649,16531,16523,16534, 5763, 8547, 8561, 8565, 8570, 16510,16519,16497,16511,16512, 4253,16489,16462,28860,16474, 16461,16456,16455,16462,16446,16431,16419, 8579,28860,28860, 8584,16420, 4323,16373,16373,16368, 5758,28860,28860,28860, 8602, 8620, 8628, 8607, 8633, 8654, 0,16368,16345,16337, 16309,16166,16152,16143,16150,16145,16133,16124, 8659, 8663, 8661,16143, 8681,16154, 6528, 6581, 8758,16146, 6177, 8668, 6420, 8673, 5757, 5860, 8183, 6672, 6080, 4884, 6134, 7450, 8671, 8677, 6267, 6318, 7167,28860, 6334, 7168, 6418, 6449, 7198, 6458, 7711, 7958, 8099, 5584, 8208, 8220, 8259, 6533, 8261, 8416,28860, 6542, 6571, 8589, 5719, 6649, 8670, 8688, 28860, 6667, 6672, 6501, 7369, 6709, 8693, 8695, 8715, 8726, 6645, 8674,16101,16097,16084, 8756,16090, 8765,16068,16036, 16025, 8784,16033,16026,16016,15941, 5780, 8788,15867,15838, 15813, 4551,15824,15717,15699,15673,15613,15672,28860, 8827, 441, 6111, 5868, 3229, 6242, 4002, 5189, 3322, 4877, 5661, 2101, 5272, 4001, 852, 4629, 5242, 5648, 6109, 6702, 5722, 4892, 1747, 5634, 7385, 8792, 4222, 6241, 6201, 1964, 5860, 8904, 8796, 8800, 8804, 0,15624,15617, 6739,15588,15561, 15560,28860,28860, 6835, 6945,15519,15522,15502,28860, 1681, 15505,28860, 8813, 8817, 8826, 0, 7045, 7071,28860,28860, 15486,15457,28860,28860,15520,15512, 8812,15464,28860,28860, 7600,28860,28860, 8853,15433,15417,15400,15388,28860,28860, 8847,15426,15425,15377,15382,15378,15373,15367,13077,13090, 13063,13057,13048,13032,13003,12895,12897,12857,12833,12749, 8858,28860,12787,28860, 6649, 8862, 8872, 8905, 8911, 8939, 8943, 8947, 8960, 8953, 8981, 8990, 8994, 8998, 9002, 9030, 9034, 9038, 9047,28860,28860,12725,12668,12638,12640,28860, 28860, 8881, 40,28860,28860, 9056, 6765, 152, 7194, 424, 755, 925, 953, 8808, 1255, 1265, 1310, 6504, 1334, 1545, 1575, 1770, 6134, 1795, 1914, 2170, 2175, 2201, 2653, 2717, 2870, 2872, 2888, 2932, 2943, 3027, 3108,28860, 3116, 3209, 3272, 3331, 3704, 3724, 3794, 4052, 4079, 5122, 4086, 6076, 4119, 4150, 4196, 4287,28860, 4350, 4403, 4419, 4450, 4465, 8890,28860, 4550, 4636, 4648, 4774, 4906, 4933, 5149, 5264, 5219, 5238, 5257, 5269, 5555, 5598, 5604, 7191, 5611, 5656, 5671, 6754, 9080, 9090, 5682, 5725, 5732, 5772, 5822, 5818, 5820, 5858, 6053, 8882, 6284,28860, 9117, 9194,28860, 9067, 28860, 9101,28860, 7200, 7247, 7260, 9103, 7265, 9116, 9117, 9118, 6823, 9124, 9126, 9148, 7424, 9149,28860, 9154, 7482, 9156, 9158,28860, 7577, 7589, 6890, 7719, 7661, 9160, 9162, 9164, 9166, 6920, 6116, 9172, 6688, 9173,28860, 6979, 7660, 9194,28860, 9203, 9204,28860, 9221,28860, 9222,28860, 7729, 9226,28860, 9227,28860, 9228,28860, 7741, 9234,28860, 6128, 9235, 9236, 7107, 9240,28860, 7772, 7118, 9241,28860, 6157, 9242, 9246, 7802, 7815, 9258, 9259, 7833, 9274,28860, 9278, 28860, 9279,28860, 9280,28860, 9286, 6157, 9051, 6172, 9179, 6194, 6209, 6248, 6663, 6263, 6285, 6290, 6318, 6336, 6339, 6355, 7375, 6813, 6326, 6730, 9084, 6344, 6371, 6433, 6380, 28860, 9310, 6609, 6800, 6753, 9293, 6897, 9297, 6755, 6850, 6870, 6961, 6908, 7120, 7858, 7327, 6947, 7135, 6953, 7039, 7025, 7324, 7331, 7368, 7969, 8877, 7269, 7090, 7480, 7332, 8099, 9317, 7486, 7487, 7108, 8144, 7425, 9387, 6406, 6518, 7850, 6561, 6580, 6584, 9337, 9341, 6597, 6744, 6756, 7480, 6809, 0, 7196, 6827, 6891,28860,28860, 9326, 6902, 6978, 7012, 7054,28860, 7114,28860,28860, 7065, 9350, 7128, 7134, 7154, 7167, 7230, 7281, 7279, 7283, 7321, 7349, 7363, 7617, 7367, 7401, 7421, 9354, 7797, 9358, 9372, 9388, 9417, 9421, 9425, 9430, 9434, 9462, 9470, 9478, 9490, 9509, 9522, 9529, 9537, 9550, 9557, 9565, 9376, 7432, 9569, 7447,28860, 7503, 7447,28860, 7511, 0, 8352,28860, 9498, 7480, 7486, 7499, 9504,28860, 7528, 7525, 0, 7643, 7530, 7542, 7805, 7549, 7906, 7561, 7564, 7572, 7600, 7606, 7617, 7912, 7628, 7635, 7657, 7666, 7667, 7680, 7687, 7708, 7705, 7716, 7718, 7727, 7751, 7745, 7758, 7759, 7797, 7791, 7802, 7812, 7852, 7853, 7859, 7863, 7950, 8156, 7885, 7922, 9513, 7890, 7892, 7950, 7953, 7951, 7963, 7960, 7977, 7971, 7982, 7983, 8042, 8039, 8049, 8039, 8213, 8049, 8055, 8043, 8225, 9585, 9594, 8081, 8095, 8084, 8149, 8133, 8153, 8187, 8189, 8195, 9614, 8213, 9573, 8222, 9598, 8250, 8290, 8316, 9600,28860, 9623, 9628, 28860, 9640,28860, 9641,28860, 8316, 9642,28860, 9646,28860, 9647,28860, 8370, 8224, 9648, 9653,28860, 8292, 9658,28860, 8226, 9659, 9660, 8364, 8389, 9664, 9665, 8439, 9678,28860, 9680,28860, 9692,28860, 9697,28860, 9698, 9699, 8228, 9703, 8516, 9705, 8239, 9710, 9711,28860, 8243, 9712, 8257, 9716, 8258, 9717, 9722, 8271, 9730, 8275, 9735, 8277, 9744, 9749, 8279, 9750, 9754,28860, 8350, 8307, 9755, 9760, 8549, 8318, 9762, 9766,28860, 8571, 8626, 9767,28860, 9768,28860, 8675, 8320, 9772, 8339, 9774, 8342, 9782, 8348, 9787, 9799,28860, 8316, 9804, 8317, 9812, 9817, 9821, 9829, 8325, 8348, 8362, 8357, 8362, 8384, 8382, 8388, 8383, 9833, 9837, 8495, 8412, 8511, 8415, 8427, 8457, 9841, 8449, 8488, 8477, 8479, 9902, 8528, 8557, 8540, 8577, 9845, 9987, 8737, 9849, 9853, 8538, 8822, 8621, 8948, 8608, 8710, 8542, 8711, 8662, 8713, 8813, 8807, 8539, 9857, 9875, 8900, 8997, 8899, 8753, 8952, 8859, 8881, 8958, 9879, 9007, 9249, 9080, 9126,10064, 8501, 8534, 9861, 8524, 8528, 8534, 9883, 9897, 9903, 9932, 9938, 8674, 8675, 8891, 8682, 0, 8674, 9368,28860, 8740, 8692, 8679, 28860, 8694, 9946, 9950, 8693, 8702, 8775, 8874, 8882, 8883, 8901, 8913, 8922, 8931, 8933, 8950, 8970, 9957, 8972, 8982, 9976, 9980,10008,10018,10022,10036,10052,10094,10098,10102, 10106,10114,10134,10142,10147,10151,10155,10162, 9963,10183, 10190,28860, 8977, 8988, 0, 9865,28860, 9003, 9005, 8997, 9042, 9888, 9016, 9301,28860, 9025, 9023, 9322, 9033, 9363, 9032, 9186, 9052, 9055, 9080, 9099, 9381, 9110,28860, 9100, 9124, 9451, 9112, 0, 9132, 9133, 9124, 9124, 9192, 9141, 9154, 9483, 9198, 9200, 9496, 9208, 9205, 9215, 9518,10048, 28860, 9219, 9218, 9217, 9217, 9234, 9238, 9245, 9967, 9243, 9255,28860,28860, 9294, 9353, 9317, 9329, 9334, 9379, 9323, 9328, 9342, 9390, 9369, 9378,28860,28860,28860,10196,10027, 9414,10028, 9411,10029,10062,28860, 9416,10170, 9418,10195, 9424,10197,10206, 9429,10210, 9431,10222, 9437,10229,10230, 9438,10231, 9455, 9439,10237,10238,28860, 9533, 9587,10242, 28860,10243,28860, 9619, 9446,10244, 9447,10250, 9455,10252, 9459,10254,10261,28860,10262,28860, 9489,10274,28860, 9473, 10282,10284,28860,10286,28860, 9477,10292,10293,10294,28860, 9633, 9485,10298,10299, 9667, 9497,10304, 9512,10305,10306, 9514,10314, 9486, 9474, 9971,10329,10336,10344, 9487, 9504, 9511, 9507, 9523, 9869, 9552, 9544, 9553,10348,28860,10352, 9550, 9564, 9606,10356, 9609,10360, 9600, 9617, 9617, 9622, 10358, 9739, 9714, 9720, 9791, 0,10443,10528, 9725, 9701, 9726, 9808, 9876, 9706,10365, 9809, 9870, 9893, 9912, 9884, 9938, 9731,10390, 9854,10033,10394, 9707, 9958,10024, 9919, 10047,10398, 9719,10054,10055,10109,10605, 9725, 9735,10402, 28860, 9751, 9768, 9821,10365,28860,10416,28860,10422, 9831, 10426,10109, 9837,10406,10410,10459,28860, 9868,28860,10463, 10484,10488, 9874,10492, 9898, 9952, 9960,10504, 9971,10499, 10508, 9985, 9993,10512,10000,28860,10517,10547,10559,10563, 10593,10612,10631,10640,10567,10644,10652,10661,10680,10692, 10696,10700,10728,10732,28860,10013,10018,10084,10432,10060, 10068,10069,10316,10433,10057,10071,10100,10096,10123,10132, 10134,10474,10148,10149,10190,10573,10150,10575,10148,28860, 10149,10167,10172,10192,10195,10597,10201,10208,10598,10201, 10220,10208,10228,10236,10240,10256,10245,10602,10252,10262, 28860,10257,10252,10273,10312,10285,10314,10347,28860,10377, 10378,10743,10675,28860,10534,10708,28860,10379,10709,10715, 28860,10742,28860,10381,10391,10747,10748,10598,10408,10756, 10415,10758,10769,10428,10770,10438,10775,10779,10439,10780, 10446,10781,10468,10788,10789,28860,10474,10790,10604,10794, 28860,10800,10802,28860,10456,10811,10463,10491,10487,10507, 10513,10736,10525,10531,10521,10832,10836,10840,10844,10523, 10848,10535,10549,10568,10576,10908,10697,10667,10632,10852, 10993,11078,10757,10856,10769,10803,10651,10807,10855,10655, 10880,10729,10805,10633,10673,10811,10659,28860,10884,10888, 10892,10843,10844,10851,10845,10849,10881,11155,10591,10606, 10691,10907,10662,10680,10731,10733,10937,10815,10749,10918, 10948,10956,11009,10748,10952,10981,10768,10985,10772,11036, 10804,11040,11013,10804,11054,11049,11066,11097,10836,11114, 10866,11121,11125,11137,11142,11186,11190,11153,11194,11198, 11203,11229,11233,11239,11243,11271,10840, 0,28860,10920, 10832,10829,10942,10944,10848,10842,10856,10957,10876,10876, 10963,11024,10882,10886,10880,10905,10923,28860,11059,10928, 11060,11165,10938,28860,10951,28860,11247,10961,11033,28860, 10979,10988,28860,28860,28860,11256,11016,11282,11284,11024, 11286,11029,11292,11035,11294,11050,11296,28860,11298,11300, 28860,11302,28860,11041,11304,11069,11043,11314,11316,28860, 11063,11332,11023,11339,11036, 0, 0,11042,11033,11346, 11052,11054,11350,11354,11069,11063,11068,11362,11366,11364, 11124, 0,11166,11191,28860,11146,11449,11534,11153,11197, 28860,11266,11190,11390,11244,11271,11165,11119,11317,11199, 11292,11305,11394,11398,11619,11078,11071,11704, 0,28860, 11091,11317,11101,11402,11410,11374, 0,28860,11124,11158, 11480,11439,11154,11179,11179,11468,11484,11496,11488,11506, 11398,11565,11572,11510,11723,11735,11739,11514,11576,11224, 11187,11183,11580,11518,11522,11376,11220,11406,11414,11264, 28860,11492,11266,11555,11591, 0,11261,11593,11268,11595, 28860,11609,11743,11608,11276,11610,11289,11359,28860,11298, 11330,11750,11749,28860,11379,11379,11751,11765,28860,11387, 11776,11399,11787,11788,11406,11793,11797,11361,28860,28860, 11369, 0,11801,11809,11364,11818, 0,11369,11825,11833, 11831,11857,11471,11511,11710,11509,11456,11789,11477,11813, 11727,11540,11568,11916,11861,11736,11806, 0,11869,12001, 11764,11489,12086,11856,12171,12256,12341, 0,11419,11459, 11517, 0,28860,11887,11766,11526,11841, 0, 0,11891, 11895,11533,11947,11532,11901,11905,11607,11935,11951,11963, 12359,11955,12021,12372,28860,11656,11909,11873, 0,11877, 11879,11974,11979,28860, 0,11981,11983,28860,11677,11683, 11699,12381,11748,12032,12033,11754,12038,12039,28860,28860, 11730,11991,28860,28860, 0,12049,28860,11770,12458,28860, 11845,11882,12008,12017,12057,11972,12028,11848,12168,12543, 11867,11874,11866,12177,12155,11947,12628,12041,11950,12053, 12713,11901,11900,12069,12172,11909, 0,12189,12203,11901, 12388,12207,11921,11970,12376,28860,12039,12414,12215,12424, 12408,28860,12077,12220,28860, 0,12225,12227,11980,11996, 12494,12229,28860,12044,12242,12015,12237,28860,12019,12798, 12346,12326,12325,12348,12363,12084,12194,12489,28860,12102, 12376,12175,28860, 0,12210, 0,28860,12184,28860,12202, 12370,12154,12168,12363,12174,12170,12175,12495,12501,12507, 12562,12577,12246,12883, 0,12236,12221,12428,12452,12465, 12246,12344,12339,12401,12521,12402,12420,28860,12582,12968, 12345,28860,12475, 0,12303,13053, 0,12590,12309,12604, 12608,12618,12902,13072,12914, 0,28860,12918,28860,12421, 12425,12453,12426,12350,12514,28860, 0,12433,28860,28860, 12922,12928,12371,12932,12958,12454,12516,12939,12520,12386, 12518,28860,13084,13088,13092,12522,12952,28860,13101,12375, 12437,13119,12943,12948,12550,28860,28860,12402,13085,12889, 12386,13065,13081,12404, 0,13123,12413,28860,12525,28860, 13158,13186,13214,13242,13270,13298,13326,13354,13382,13410, 13438,13466,13494,13522,13550,13578,13606,13634,13662,13690, 13718,13746,13774,13802,13830,13858,13886,13914,13942,13970, 13998,14026,14054,14082,14110,14138,14166,14194,14222,14250, 14278,14306,14334,14362,14390,14418,14446,14474,14502,14530, 14558,14586,14614,14642,14670,14698,14726,14754,14782,14810, 14838,14866,14894,14922,14950,14978,15006,15034,15062,15090, 15118,15146,15174,15202,15230,15258,15286,15314,15342,15370, 15398,13122,15425,13111,12598,15446,15471,15493,13097,15520, 15429,15541,15432,13113,15563,15591,15619,15647,15674,15435, 15695,15442,15717,15745,15773,15801,15829,15857,15885,15913, 13124,15941,15969,15997,13128,16025,16053,16080,16103,15456, 16125,16142,16166,16183,16206,15459,15460,13132,15468,16228, 16256,13134,16284,16312,16340,16368,16396,16413,16437,16465, 16493,16510,16534,16551,16574,16595,15524,16616,15448,16638, 16666,12597,15462,16683,16702,16730,15469,16757,15527,16779, 16807,16835,16863,16891,16919,16947,16975,16998,17018,17040, 17057,17081,17098,17111,17128,17156,17184,15518,17212,17240, 17268,17296,17324,17352,17380,17408,17436,17464,15530,17492, 17520,17548,17565,17589,17617,17644,15678,17666,17694,15519, 17722,17750,15539,17778,17801,17824,17841,17865,17882,15533, 17906,17934,17962,17990,18018,18046,18074,18102,18130,18158, 18186,18214,15540,15684,18241,18268,15681,15549,15672,18289, 18314,18336,18363,18384,18411,16081,18432,18453,18480,16086, 18501,15673,18523,18551,18579,18607,18635,18662,18689,16090, 15685,18710,18737,16096,15687,18759,18787,18815,18843,18871, 18899,18927,18955,18983,15688,19011,19039,19067,19095,15694, 19123,19151,19178,19201,19228,16200,15698,19250,19267,19291, 19308,19331,19358,16209,15879,16100,16093,16199,19380,19408, 16094,19436,19464,19492,19520,19548,19576,16568,19604,19621, 19645,19673,19701,19718,19742,19759,19782,19803,19824,19851, 16578,16097,19872,16203,16584,19894,19922,19945,12556,12581, 16572,19962,19975,19988,20015,20032,20060,16106,20087,20114, 16600,16566,20136,20164,20192,20220,20248,20276,20304,20332, 20355,20375,20397,20414,20438,20455,20468,20485,20513,20541, 16588,20569,20597,20625,20653,20681,20709,20737,20765,20793, 20821,20849,16609,20877,20905,20933,20950,20974,21002,21029, 21056,16612,16607,21078,21106,16608,21134,21162,16618,21190, 21213,21236,21253,21277,21294,16619,21318,21346,21374,21402, 21430,21458,21486,21514,21542,16687,21569,21596,16760,16693, 17015,21617,21639,21667,21694,21721,17021,21742,21763,21790, 17115,21811,21833,21860,21887,17806,16705,21908,21935,17822, 16706,21957,21985,22013,22041,22068,22095,17829,16748,22116, 22143,18244,16749,22165,22193,22220,22241,22262,22289,18251, 16750,16751,22311,22334,12594,22351,22370,22398,22426,22454, 22481,22492,22509,22528,22555,22582,18254,16761,22604,22632, 22659,22686,18258,16949,17017,18275,22707,22728,22750,22778, 22806,22833,22854,22876,15686,22899,22927,22955,22983,23011, 23039,23067,23095,23123,23151,23179,23207,23235,23263,23291, 23319,23347,23375,23403,23431,23459,23487,23515,23532,23551, 23579,23607,17635,23634,23655,23677,23705,23733,23761,23789, 23817,23844,23866,23889,23917,23945,23973,24001,24029,24057, 24085,24113,24141,24169,24197,24225,24253,24281,24309,24337, 24365,24393,24421,24449,24477,24505,24533,24561,24589,24617, 24645,24673,24701,24729,24757,24785,24813,24841,24869,24897, 24925,24953,24976,24993,25017,25040,25068,25096,17641,25123, 25145,25173,25201,25229,25257,25285,25308,25336,25364,25392, 25420,25448,25476,25504,25532,25560,25588,25616,25644,25672, 25700,25728,25756,25784,25812,25840,25868,25896,25924,25952, 25980,26008,26036,26064,26092,26120,26143,26160,26184,26212, 26240,26263,26291,26319,26347,26374,26396,26424,26452,26475, 26503,26531,26559,26587,26615,26643,26671,26699,26727,26755, 26783,26811,26839,26867,26895,26923,26951,26974,26991,27015, 27038,27066,27094,27122,17832,27149,27171,27199,27227,27250, 27278,27306,27334,27362,27390,27418,27446,27474,27502,27530, 27558,27586,27614,27637,27654,12584,27678,27706,27734,18266, 13130,16989,27761,27783,27811,27839,27862,27890,27918,27946, 27974,28002,28030,28058,28086,28109,18272,28126,12611,28150, 28177,28199,28227,28255,15546,17107,17113,28282,28304,28332, 28360,28388,28411,28439,28467,28495,28523,28546,18279,28563, 28576,18281,28599,28620,28642,28670,28698,28725,28747,28775, 28803,28831 } ; static yyconst short int yy_def[4473] = { 0, 3761, 3761, 3760, 3, 3762, 3762, 3763, 3763, 3761, 3761, 3760, 11, 3760, 13, 3760, 15, 3764, 3764, 3761, 3761, 3760, 21, 3760, 23, 3760, 25, 3761, 3761, 3761, 3761, 3765, 3765, 3766, 3766, 3765, 3765, 3767, 3767, 3768, 3768, 3769, 3769, 3761, 3761, 3760, 45, 3760, 47, 3770, 3770, 3770, 3770, 3761, 3761, 3771, 3771, 3772, 3772, 3773, 3773, 3761, 3761, 3774, 3774, 3775, 3775, 3761, 3761, 3761, 3761, 3776, 3776, 3777, 3777, 3761, 3761, 3761, 3761, 3760, 79, 3778, 3778, 3779, 3779, 3780, 3780, 3781, 3781, 3782, 3782, 3782, 3782, 3760, 93, 3783, 3783, 3784, 3784, 3785, 3785, 3760, 101, 3785, 3785, 3761, 3761, 3786, 3786, 3760, 109, 3760, 111, 3787, 3787, 3788, 3788, 3789, 3789, 3760, 119, 3790, 3790, 3760, 123, 3791, 3791, 3792, 3792, 3793, 3793, 3794, 3794, 3781, 133, 3795, 3795, 3796, 3796, 3797, 3797, 3798, 3798, 3761, 3761, 133, 133, 3799, 3799, 3761, 3761, 3760, 151, 3760, 153, 3761, 3761, 3800, 3800, 3801, 3801, 3802, 3802, 3760, 163, 3761, 3761, 3803, 3803, 3804, 3804, 3760, 171, 3805, 3805, 3760, 175, 3806, 3806, 3806, 3806, 3807, 3807, 3808, 3808, 3809, 3809, 3810, 3810, 3761, 3761, 3811, 3811, 3812, 3812, 3813, 3813, 3814, 3814, 3815, 3815, 3761, 3761, 3761, 3761, 3816, 3816, 3817, 3817, 3818, 3818, 3760, 211, 3819, 3819, 3820, 3820, 3821, 3821, 3822, 3822, 3823, 3823, 3824, 3824, 3760, 225, 3825, 3825, 3826, 3826, 3827, 3827, 3760, 233, 3828, 3828, 3761, 3761, 3760, 239, 3829, 3829, 3760, 243, 3830, 3830, 3831, 3831, 3761, 3761, 3760, 251, 3832, 3832, 3761, 3761, 3833, 3833, 3834, 3834, 3835, 3835, 3836, 3836, 3837, 3837, 3836, 3836, 3838, 3838, 3839, 3839, 3840, 3840, 3840, 3840, 3760, 277, 3760, 3760, 3841, 3760, 3760, 3760, 3842, 3760, 3841, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3843, 3760, 3844, 3760, 3760, 3760, 3760, 3760, 3845, 3846, 3846, 3846, 3760, 3760, 3760, 3847, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3848, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3849, 3760, 3760, 3760, 3760, 3760, 3760, 3850, 3760, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3760, 3851, 3760, 3760, 3760, 3760, 3852, 3853, 3760, 3760, 3760, 3760, 3760, 3760, 3854, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3855, 3856, 3855, 3760, 3760, 3857, 3858, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3859, 3860, 3760, 3760, 3760, 3760, 3861, 3862, 3760, 3841, 3760, 3760, 3760, 3863, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3864, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3865, 3866, 3865, 3865, 3760, 3865, 3867, 3868, 3760, 3867, 3867, 3760, 3760, 3760, 3760, 3869, 3870, 3760, 3760, 3869, 3760, 3760, 3869, 3869, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3871, 3872, 3873, 3872, 3760, 3872, 3874, 3872, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3875, 3760, 3760, 535, 3760, 3876, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 549, 3760, 3760, 3760, 3877, 3760, 3760, 3841, 3878, 3760, 3760, 3760, 3760, 3878, 3760, 3760, 3760, 3878, 3876, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3879, 3880, 3760, 3760, 3760, 3881, 3882, 3882, 3760, 3760, 3760, 3883, 3884, 3884, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3885, 3886, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3887, 3888, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3876, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3889, 3890, 3891, 3760, 3890, 3890, 3760, 3892, 3893, 3894, 3760, 3893, 3893, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3895, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3896, 3760, 3841, 3760, 3760, 3760, 3760, 3878, 3760, 3760, 3760, 3760, 3878, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3897, 3898, 3898, 3899, 3900, 3760, 3899, 3899, 3760, 3901, 3902, 3902, 3760, 3903, 3904, 3904, 3760, 3905, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3906, 3907, 3760, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3908, 3908, 3908, 3908, 3760, 3760, 3760, 3909, 3760, 3760, 3760, 3910, 3911, 3760, 3760, 3910, 3760, 3910, 3760, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3912, 3760, 3913, 3914, 3914, 3914, 3760, 3760, 3915, 3914, 3915, 3912, 3916, 3917, 3760, 3760, 3760, 3760, 3918, 3919, 3760, 3841, 3760, 3760, 3760, 3760, 3760, 3760, 3920, 3921, 3760, 3920, 3922, 3923, 3922, 3924, 3925, 3924, 3926, 3927, 3926, 3760, 3926, 3760, 3760, 3926, 3760, 3928, 3928, 3760, 3760, 3841, 3760, 3760, 3760, 3760, 3929, 3930, 3931, 3931, 3932, 3933, 3933, 3760, 3760, 3760, 3934, 3934, 3935, 3935, 3760, 3936, 3937, 3936, 3936, 3936, 3760, 3760, 3938, 3939, 3940, 3939, 3941, 3942, 3941, 3943, 3944, 3943, 3945, 3946, 3945, 3760, 3841, 3760, 3760, 3760, 3760, 3947, 3948, 3947, 3760, 3947, 3947, 3949, 3950, 3951, 3760, 3950, 3950, 3950, 3950, 3760, 3952, 3953, 3953, 3954, 3955, 3954, 3954, 3760, 3760, 3760, 3760, 3956, 3957, 3958, 3959, 3958, 3958, 3760, 3960, 3961, 3962, 3760, 3961, 3961, 3760, 3963, 3963, 3963, 3964, 3965, 3966, 3966, 3967, 3968, 3969, 3969, 3760, 3760, 3760, 3970, 3971, 3972, 3760, 3971, 3760, 3971, 3760, 3973, 3760, 3760, 3760, 3760, 3974, 3975, 3760, 3974, 3760, 3760, 3974, 3976, 3977, 3978, 3977, 3760, 3979, 3760, 3760, 3760, 3973, 3760, 3760, 3760, 3980, 3981, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3973, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3973, 3760, 3760, 3760, 3760, 3973, 3760, 3760, 3760, 3760, 3982, 3760, 3760, 3983, 3973, 3760, 3760, 3760, 3760, 3984, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3985, 3986, 3760, 3987, 3988, 3760, 3989, 3990, 3990, 3991, 3760, 3990, 3760, 3991, 3760, 3760, 3760, 3760, 3760, 3760, 3992, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3993, 3760, 3760, 3994, 3760, 3995, 3760, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3996, 3997, 3760, 3760, 3998, 3760, 3999, 3760, 4000, 4001, 3760, 3760, 4002, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4003, 4004, 4003, 4003, 3760, 4005, 3760, 3760, 4006, 3760, 4007, 3760, 3760, 3760, 4008, 4009, 4010, 4011, 3760, 3760, 4012, 4013, 4014, 4015, 3760, 4016, 3760, 3760, 4017, 3760, 3760, 3760, 3760, 3760, 4017, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4018, 4019, 4018, 4018, 3760, 3760, 3760, 4018, 4020, 3760, 4021, 4020, 4022, 4020, 4020, 4023, 4024, 4023, 3760, 3760, 3760, 3760, 3760, 4023, 3760, 3760, 3760, 3760, 3760, 3760, 4025, 4026, 4027, 4028, 4026, 4029, 4026, 3760, 4027, 4027, 4027, 4026, 3760, 3760, 1202, 3760, 3760, 3760, 4030, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4031, 3760, 3760, 4031, 3760, 3760, 1202, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4032, 3760, 3760, 3760, 4032, 4033, 4033, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4033, 4031, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4034, 4035, 4036, 4037, 3760, 3760, 4038, 4039, 4039, 3760, 3760, 4040, 4041, 4041, 3760, 3760, 3760, 3760, 3760, 4042, 4043, 4044, 4045, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4046, 4047, 3760, 3760, 3760, 3760, 4031, 3760, 3760, 3760, 3760, 3760, 3760, 4031, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4048, 4049, 4050, 4049, 4049, 4049, 4051, 4052, 3760, 4053, 4052, 4054, 4052, 4052, 3760, 3760, 3760, 3760, 3760, 3760, 4055, 3760, 4055, 3760, 3760, 3760, 3760, 3760, 4056, 3760, 4057, 3760, 3760, 4058, 3760, 3760, 3760, 4058, 3760, 4059, 4060, 4060, 4061, 3760, 4062, 4061, 4054, 4061, 4061, 4063, 4064, 4064, 4065, 4066, 4066, 3760, 4067, 3760, 4068, 3760, 3760, 4069, 4070, 4071, 4072, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4073, 4073, 4074, 4074, 4075, 4076, 4077, 4076, 3760, 3760, 4076, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4078, 4079, 4080, 4081, 4082, 4083, 3760, 4082, 4084, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4079, 4085, 4086, 4082, 4086, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 1497, 4087, 4087, 4088, 3760, 3760, 4089, 4090, 4091, 4092, 3760, 3760, 3760, 3760, 3760, 4093, 4094, 4093, 4093, 4093, 4095, 4096, 4095, 4095, 4095, 4097, 4098, 4097, 4097, 4097, 4099, 4100, 4099, 4099, 3760, 4099, 3760, 3760, 3760, 3760, 4099, 3760, 4101, 4101, 3760, 4102, 4103, 4104, 4104, 4105, 4106, 4106, 3760, 3760, 4107, 4107, 4108, 4108, 4109, 4110, 4109, 4109, 4109, 4111, 4112, 4113, 4112, 4112, 4112, 4114, 4115, 4114, 4114, 4114, 4116, 4117, 4116, 4116, 4116, 4118, 4119, 4118, 4118, 4118, 3760, 3760, 3760, 4120, 4120, 3760, 4121, 4120, 4121, 4122, 4120, 4120, 3760, 4123, 4124, 3760, 4125, 4124, 4122, 4124, 4124, 4124, 4124, 3760, 4126, 4127, 4127, 4128, 4129, 4128, 4128, 4128, 3760, 3760, 4130, 4131, 4132, 4133, 4134, 3760, 4135, 4134, 4122, 4134, 4134, 4136, 4137, 3760, 4138, 4137, 4122, 4137, 4137, 4139, 4139, 4139, 4140, 4141, 4142, 4143, 4142, 4144, 4145, 4145, 3760, 3760, 4146, 4147, 3760, 4148, 4147, 4122, 4147, 3760, 3760, 3760, 4149, 4150, 4149, 4149, 4149, 3760, 4151, 4152, 4151, 3760, 4153, 4154, 4155, 4154, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4156, 3760, 3760, 3760, 4157, 4158, 4159, 4160, 3760, 4161, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4162, 3760, 3760, 4163, 3760, 3760, 4164, 4165, 4166, 4167, 3760, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 3760, 4168, 4169, 4170, 4171, 3760, 4172, 3760, 4163, 3760, 4164, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4173, 3760, 4174, 4175, 4176, 4177, 4178, 4179, 4180, 4181, 3760, 3760, 3760, 3760, 4182, 4182, 4182, 3760, 3760, 3760, 3760, 3760, 4183, 3760, 3760, 3760, 4184, 4185, 4184, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4186, 4187, 4188, 4189, 3760, 3760, 3760, 4190, 4191, 4192, 4193, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4194, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4195, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4196, 4197, 4197, 4198, 4199, 4200, 4201, 4202, 3760, 4203, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4204, 3760, 4204, 4205, 4206, 4206, 4207, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4208, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4209, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4210, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4211, 3760, 4212, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4214, 4215, 4216, 4217, 4218, 3760, 3760, 3760, 4219, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4220, 3760, 3760, 4221, 4222, 4223, 4224, 4225, 4225, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4226, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4227, 3760, 3760, 3760, 3760, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4229, 3760, 3760, 4230, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4231, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4232, 4233, 4234, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4235, 3760, 4236, 4236, 3760, 4237, 3760, 4238, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4239, 3760, 3760, 3760, 3760, 4240, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4241, 4241, 3760, 4242, 3760, 3760, 3760, 4243, 3760, 3760, 4244, 3760, 4245, 3760, 4246, 3760, 3760, 4247, 3760, 4248, 3760, 4249, 3760, 3760, 4250, 3760, 4251, 4251, 3760, 3760, 4252, 3760, 3760, 3760, 4253, 3760, 4254, 4254, 3760, 3760, 3760, 3760, 3760, 3760, 4255, 3760, 4256, 3760, 4257, 3760, 4258, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4236, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 3760, 4259, 4259, 4259, 4259, 4259, 4260, 3760, 3760, 3760, 4261, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4262, 3760, 4263, 4263, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4264, 3760, 4265, 3760, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4266, 4267, 3760, 3760, 4268, 3760, 3760, 4269, 3760, 3760, 3760, 4270, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4271, 4271, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4272, 4272, 4273, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4274, 4275, 4275, 4276, 4276, 3760, 3760, 3760, 4277, 3760, 3760, 4278, 3760, 4279, 3760, 4280, 3760, 3760, 4281, 3760, 4282, 3760, 4283, 3760, 3760, 4284, 4284, 4285, 3760, 3760, 4286, 3760, 4287, 4287, 3760, 3760, 3760, 3760, 3760, 3760, 4288, 3760, 4289, 3760, 4290, 3760, 4291, 3760, 3760, 3760, 4292, 4292, 3760, 3760, 4293, 4293, 4294, 3760, 4295, 4295, 4296, 4296, 4297, 4297, 3760, 4298, 4298, 4299, 4299, 4300, 4300, 3760, 4301, 4301, 4302, 3760, 3760, 4303, 4303, 3760, 3760, 4304, 4304, 4305, 3760, 3760, 3760, 4306, 3760, 4307, 3760, 3760, 4308, 4308, 4309, 4309, 4310, 4310, 4311, 4311, 4312, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4313, 4314, 4314, 4314, 4314, 4314, 4315, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4316, 3760, 3760, 3760, 4317, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4318, 3760, 4319, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 3760, 3760, 4320, 3760, 3760, 3760, 3760, 3760, 3760, 4321, 4322, 3760, 4323, 3760, 3760, 4324, 4324, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4325, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4326, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4327, 3760, 3760, 3760, 4328, 4328, 4329, 3760, 4330, 4330, 4331, 4331, 4332, 4332, 3760, 4333, 4333, 4334, 4334, 4335, 4335, 3760, 4336, 4336, 3760, 4337, 4337, 4338, 3760, 3760, 3760, 4339, 3760, 4340, 3760, 3760, 4341, 4341, 4342, 4342, 4343, 4343, 4344, 4344, 4345, 3760, 4346, 3760, 3760, 4347, 3760, 4348, 4348, 4349, 3760, 4350, 3760, 4351, 4351, 3760, 4352, 3760, 3760, 4353, 4353, 3760, 3760, 4354, 4354, 4355, 4355, 3760, 4356, 4356, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4357, 4358, 4358, 4358, 4358, 4359, 4360, 4361, 4358, 4358, 4358, 4358, 4358, 4358, 3760, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4362, 3760, 3760, 4363, 3760, 4364, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4365, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4366, 3760, 4366, 4366, 4366, 3760, 3760, 4366, 4366, 3760, 3760, 4366, 4366, 4366, 4366, 3760, 3760, 3760, 3760, 4367, 4367, 4368, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4369, 3760, 3760, 3760, 3760, 3760, 4370, 4371, 3760, 3760, 4372, 3760, 4373, 4373, 4374, 3760, 4375, 3760, 3760, 4376, 4376, 3760, 3760, 4377, 4377, 4378, 4378, 3760, 4379, 4379, 4380, 4380, 3760, 4381, 4381, 4382, 4382, 4383, 4383, 4384, 3760, 4385, 4385, 3760, 4386, 3760, 3760, 4387, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4388, 4389, 4389, 4389, 4389, 4390, 4390, 4389, 4389, 4389, 4389, 4389, 4389, 3760, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 3760, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4391, 3760, 3760, 4392, 4392, 4393, 3760, 3760, 3760, 3760, 4394, 3760, 3760, 3760, 3760, 4395, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4396, 4396, 3760, 3760, 4396, 4396, 3760, 4396, 3760, 3760, 4396, 3760, 4396, 3760, 3760, 3760, 4397, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4398, 3760, 4399, 3760, 3760, 3760, 3760, 4400, 4401, 4401, 3760, 4402, 4402, 4403, 4403, 4404, 4404, 3760, 4405, 3760, 3760, 4406, 3760, 4407, 3760, 4408, 4408, 3760, 4409, 4409, 4410, 3760, 4411, 4411, 3760, 3760, 3760, 4412, 4413, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4414, 4415, 4416, 4415, 4415, 3760, 4415, 4415, 4415, 4415, 4415, 3760, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 3760, 3760, 3760, 4417, 4418, 3760, 3760, 4419, 3760, 3760, 4420, 4421, 4422, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4423, 4423, 3760, 4423, 4423, 4423, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4424, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4425, 3760, 4426, 3760, 4427, 4428, 3760, 3760, 4429, 4429, 4430, 3760, 4431, 4431, 4432, 4432, 3760, 4433, 4433, 3760, 3760, 3760, 3760, 3760, 4434, 3760, 3760, 3760, 3760, 4435, 3760, 3760, 3760, 4436, 4415, 4437, 4415, 4415, 4415, 4415, 4438, 4415, 4438, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4439, 4415, 4415, 4415, 4440, 3760, 4441, 4442, 3760, 4442, 3516, 3513, 3760, 3760, 4443, 3760, 3760, 4444, 3760, 4445, 4446, 4447, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4448, 3760, 3760, 4448, 4448, 3760, 3760, 3760, 3760, 4449, 3760, 3760, 3760, 3760, 3760, 4450, 4451, 3760, 3760, 3760, 4452, 3760, 4453, 4454, 4454, 3760, 4455, 4455, 4456, 3760, 3760, 3760, 3760, 3760, 3760, 4457, 3760, 3760, 3760, 4458, 3760, 4459, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4461, 4460, 4460, 4462, 4460, 4461, 4460, 4463, 3760, 4464, 3760, 4464, 3760, 3760, 3760, 3760, 4465, 3760, 4446, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 4448, 3760, 4448, 4448, 3760, 3760, 3760, 3760, 4451, 4451, 3760, 4452, 3760, 4453, 4466, 3760, 4456, 4456, 3760, 3760, 3760, 3760, 3760, 4460, 4460, 4460, 4460, 4460, 4460, 4461, 4460, 3760, 4462, 4460, 4463, 3760, 3597, 4467, 3597, 3760, 4468, 3760, 3640, 3640, 3760, 3760, 4465, 3760, 3760, 3760, 3760, 4448, 4448, 3760, 3760, 3760, 4452, 4469, 3597, 4466, 4466, 3760, 3760, 3640, 3640, 4460, 4460, 4460, 4460, 4460, 3760, 4460, 3760, 4468, 3760, 3640, 4470, 3760, 4465, 4471, 3760, 3760, 3760, 3760, 3760, 3760, 4448, 3760, 4452, 3760, 3760, 3760, 4460, 4460, 4460, 4460, 3597, 3640, 3760, 4472, 4465, 3760, 3760, 3760, 3760, 3760, 3760, 4448, 4460, 4460, 4460, 4460, 3597, 3640, 3760, 3760, 3760, 3760, 4460, 4460, 3760, 4460, 3597, 3640, 3760, 3760, 3760, 4460, 3760, 3760, 3597, 3640, 4460, 3597, 3640, 4460, 3597, 3640, 4460, 3597, 3760, 3597, 0, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760 } ; static yyconst short int yy_nxt[28946] = { 0, 3760, 281, 3760, 282, 283, 281, 1019, 282, 283, 1019, 1020, 1020, 1020, 1020, 3760, 1058, 1004, 1004, 1010, 1058, 284, 1005, 1005, 1011, 284, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 280, 280, 280, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 280, 280, 280, 287, 1208, 282, 288, 287, 2491, 282, 288, 292, 293, 294, 295, 293, 289, 296, 1148, 1149, 289, 281, 290, 282, 283, 281, 290, 282, 283, 1208, 297, 292, 293, 294, 295, 293, 556, 296, 1032, 556, 284, 1032, 1155, 1156, 284, 281, 367, 368, 369, 367, 297, 281, 367, 368, 369, 367, 381, 382, 383, 384, 382, 374, 1033, 725, 375, 1034, 298, 374, 385, 386, 375, 1004, 387, 1061, 2496, 388, 1005, 1457, 1062, 1082, 1082, 1082, 1082, 1157, 1158, 1460, 298, 280, 281, 299, 300, 301, 299, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 302, 303, 280, 280, 280, 280, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 280, 280, 280, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 305, 280, 306, 280, 281, 307, 282, 283, 307, 280, 280, 280, 280, 280, 308, 280, 309, 280, 308, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 310, 308, 311, 308, 280, 280, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 309, 280, 280, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 305, 280, 280, 280, 281, 313, 314, 315, 313, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 316, 280, 280, 284, 280, 280, 280, 280, 280, 280, 317, 303, 318, 280, 280, 280, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 280, 280, 280, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 320, 280, 280, 322, 323, 324, 325, 323, 322, 323, 324, 325, 323, 281, 1457, 282, 283, 704, 1022, 329, 704, 1022, 326, 1056, 330, 331, 1056, 326, 3760, 332, 568, 281, 284, 282, 283, 705, 1092, 329, 2498, 1010, 333, 1093, 330, 331, 1011, 3760, 413, 332, 282, 414, 284, 381, 382, 383, 384, 382, 2383, 1617, 333, 390, 1617, 282, 391, 385, 386, 415, 1170, 387, 1171, 3760, 388, 392, 393, 281, 327, 282, 283, 1581, 394, 327, 328, 1161, 1057, 1002, 390, 328, 282, 391, 281, 1644, 282, 283, 284, 1644, 334, 1002, 392, 393, 1016, 1004, 416, 1004, 417, 394, 1005, 1002, 1005, 284, 1090, 1090, 1090, 1090, 334, 280, 281, 335, 336, 337, 335, 280, 280, 338, 280, 280, 339, 280, 340, 280, 339, 280, 341, 280, 280, 342, 280, 280, 280, 280, 280, 280, 343, 344, 345, 346, 280, 280, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 348, 280, 280, 347, 347, 349, 347, 350, 347, 347, 347, 351, 347, 347, 352, 353, 347, 354, 347, 347, 355, 356, 357, 358, 347, 347, 347, 359, 280, 360, 280, 281, 361, 362, 363, 361, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 364, 280, 280, 280, 280, 280, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 280, 280, 280, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 280, 280, 366, 280, 281, 367, 368, 369, 367, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 370, 280, 280, 371, 280, 280, 280, 280, 280, 280, 280, 280, 280, 372, 280, 280, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 280, 280, 280, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 280, 280, 280, 281, 2499, 282, 283, 1280, 1061, 281, 376, 282, 283, 1062, 1270, 377, 376, 1095, 1095, 1095, 1095, 377, 284, 413, 1620, 282, 414, 1845, 284, 378, 379, 406, 1096, 407, 408, 378, 379, 406, 1846, 407, 408, 1624, 415, 409, 281, 1162, 282, 283, 1162, 409, 410, 419, 420, 421, 422, 420, 410, 423, 1163, 411, 1457, 1371, 424, 284, 443, 411, 454, 445, 1372, 1177, 425, 428, 1177, 1024, 1025, 1025, 1024, 416, 448, 417, 1208, 1061, 1178, 455, 378, 281, 1062, 282, 283, 1280, 378, 381, 395, 396, 397, 395, 1270, 419, 420, 421, 422, 420, 1004, 423, 284, 1208, 1122, 1005, 424, 1140, 398, 1123, 428, 429, 1141, 2397, 425, 399, 399, 456, 400, 1144, 1573, 443, 1144, 444, 445, 1145, 281, 446, 282, 283, 426, 427, 447, 1706, 1620, 448, 443, 1146, 454, 445, 449, 281, 1147, 282, 283, 284, 1573, 1706, 401, 1151, 448, 1027, 429, 1208, 1152, 455, 1013, 1014, 1014, 1013, 284, 1357, 402, 1002, 403, 473, 404, 474, 475, 1726, 399, 381, 395, 396, 397, 395, 426, 427, 1208, 1727, 459, 1015, 460, 461, 476, 473, 462, 474, 475, 2190, 398, 456, 1184, 1627, 463, 1184, 1146, 399, 399, 464, 400, 1147, 450, 451, 476, 1185, 1322, 1364, 457, 1365, 479, 480, 282, 481, 480, 485, 2500, 486, 487, 485, 477, 486, 487, 457, 482, 1008, 1008, 1008, 1008, 483, 401, 1322, 1004, 1168, 488, 465, 1016, 1005, 488, 1399, 477, 1400, 1165, 1009, 402, 1172, 403, 1166, 404, 1634, 1173, 1002, 399, 280, 281, 430, 431, 432, 430, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 433, 280, 280, 280, 280, 280, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 280, 280, 280, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 280, 280, 435, 280, 281, 436, 437, 438, 436, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 439, 280, 280, 280, 280, 280, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 280, 280, 280, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 280, 280, 441, 443, 452, 444, 445, 452, 1644, 446, 453, 1830, 1644, 459, 447, 460, 461, 448, 1860, 462, 1004, 467, 449, 444, 468, 1180, 1301, 463, 467, 1301, 444, 468, 464, 1186, 281, 469, 282, 283, 1179, 1302, 470, 281, 469, 282, 283, 1148, 1149, 470, 479, 480, 282, 481, 480, 284, 1004, 1095, 1095, 1095, 1095, 1187, 284, 281, 482, 282, 283, 1155, 1156, 483, 465, 281, 1096, 282, 283, 491, 492, 494, 495, 496, 497, 495, 284, 491, 492, 1019, 450, 451, 1019, 2503, 284, 498, 1008, 1008, 1008, 1008, 499, 1025, 1025, 1025, 1025, 1004, 1191, 1574, 471, 500, 1005, 1198, 501, 2504, 1009, 471, 494, 503, 496, 497, 503, 489, 490, 507, 508, 509, 510, 508, 489, 490, 504, 281, 1574, 282, 283, 505, 502, 507, 508, 509, 510, 508, 511, 1199, 500, 2505, 1019, 501, 1200, 1019, 284, 512, 1193, 513, 1002, 281, 511, 282, 283, 514, 281, 515, 282, 283, 1205, 512, 1194, 513, 1654, 1206, 1655, 502, 516, 517, 284, 281, 2508, 282, 283, 284, 1646, 3760, 1647, 514, 1706, 515, 1647, 516, 517, 1097, 1097, 1097, 1097, 1706, 284, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 280, 280, 280, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 280, 280, 280, 520, 521, 522, 523, 521, 1457, 520, 521, 522, 523, 521, 1157, 1158, 2040, 524, 1025, 1025, 1025, 1025, 525, 524, 1116, 1117, 1117, 1116, 525, 526, 527, 528, 529, 530, 528, 526, 526, 526, 526, 526, 526, 526, 526, 526, 531, 526, 526, 526, 526, 532, 541, 542, 543, 544, 542, 1226, 526, 526, 534, 526, 526, 535, 1233, 571, 545, 580, 581, 1204, 546, 547, 571, 1228, 580, 581, 281, 1205, 618, 283, 548, 1058, 1234, 549, 582, 1058, 526, 536, 526, 1004, 603, 582, 604, 605, 1206, 284, 1095, 1095, 1095, 1095, 3760, 1004, 606, 1205, 607, 1233, 1234, 550, 1206, 608, 1179, 1096, 2509, 526, 526, 526, 526, 527, 537, 529, 530, 537, 526, 526, 526, 526, 526, 526, 526, 526, 526, 538, 526, 526, 526, 526, 539, 541, 551, 552, 553, 551, 2510, 526, 526, 534, 526, 526, 535, 1205, 281, 554, 618, 283, 1234, 546, 555, 1205, 1279, 1170, 609, 1171, 1206, 1217, 603, 548, 604, 605, 549, 284, 1205, 526, 536, 526, 1280, 1283, 606, 625, 607, 282, 626, 1270, 1620, 608, 1279, 1110, 1110, 1110, 1110, 1217, 627, 1032, 550, 1357, 1032, 1002, 628, 1111, 526, 526, 526, 556, 557, 558, 559, 560, 558, 556, 556, 556, 556, 556, 556, 556, 556, 556, 561, 556, 556, 556, 556, 562, 571, 572, 573, 574, 572, 1660, 556, 556, 564, 556, 556, 565, 609, 625, 1314, 282, 626, 1314, 2430, 575, 1014, 1014, 1014, 1014, 1205, 663, 627, 664, 665, 1005, 1660, 576, 628, 1315, 556, 566, 556, 648, 649, 650, 651, 649, 1457, 1605, 666, 1015, 1117, 1117, 1117, 1117, 1606, 652, 1607, 1864, 1865, 577, 653, 1117, 1117, 1117, 1117, 556, 556, 556, 556, 557, 567, 559, 560, 567, 556, 556, 556, 556, 556, 556, 556, 556, 556, 568, 556, 556, 556, 556, 569, 571, 578, 573, 574, 578, 1816, 556, 556, 564, 556, 556, 565, 2406, 648, 649, 650, 651, 649, 663, 579, 664, 665, 670, 2511, 671, 672, 655, 652, 282, 656, 1816, 576, 653, 1004, 556, 566, 556, 666, 1295, 657, 658, 673, 1219, 1268, 1733, 659, 1129, 1129, 1129, 1129, 1135, 1135, 1135, 1135, 1734, 577, 1188, 1188, 1188, 1188, 2512, 556, 556, 556, 280, 281, 583, 584, 585, 583, 280, 280, 280, 280, 280, 280, 280, 280, 280, 586, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 587, 280, 280, 280, 280, 280, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 280, 280, 280, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 280, 280, 589, 280, 281, 590, 591, 592, 590, 280, 593, 280, 280, 280, 280, 280, 280, 280, 280, 1032, 280, 2513, 1032, 595, 655, 1004, 282, 656, 1457, 1834, 1300, 280, 280, 280, 280, 280, 1004, 657, 658, 1835, 1839, 1005, 670, 659, 671, 672, 1840, 603, 617, 618, 605, 617, 603, 617, 618, 605, 617, 1004, 280, 1004, 280, 673, 1005, 1942, 1005, 717, 608, 718, 719, 1905, 1906, 608, 1188, 1188, 1188, 1188, 619, 1188, 1188, 1188, 1188, 619, 1946, 2416, 720, 280, 280, 280, 280, 281, 590, 591, 592, 590, 280, 593, 280, 280, 280, 280, 280, 280, 280, 280, 1004, 280, 620, 1731, 595, 1336, 1732, 620, 707, 1659, 708, 709, 280, 280, 280, 280, 280, 1743, 621, 707, 622, 708, 709, 621, 623, 622, 1744, 710, 1777, 623, 632, 633, 634, 635, 633, 1659, 711, 1778, 710, 280, 717, 280, 718, 719, 636, 1457, 1675, 711, 1676, 637, 1196, 1196, 1196, 1196, 1238, 1238, 1238, 1238, 638, 720, 1002, 1457, 1014, 1014, 1014, 1014, 280, 280, 280, 280, 281, 596, 597, 598, 596, 280, 599, 280, 280, 280, 280, 280, 280, 280, 280, 639, 280, 1015, 1829, 601, 632, 640, 641, 642, 640, 1856, 2068, 280, 280, 280, 280, 280, 1004, 281, 643, 282, 283, 1005, 281, 644, 282, 283, 2394, 281, 1829, 282, 283, 675, 638, 676, 677, 645, 284, 1004, 280, 1358, 280, 284, 1005, 1369, 1359, 678, 284, 1364, 1370, 1365, 679, 1195, 1196, 1195, 1195, 1857, 1376, 1201, 1379, 646, 1201, 1368, 680, 1380, 1191, 280, 280, 280, 280, 281, 596, 597, 598, 596, 280, 599, 280, 280, 280, 280, 280, 280, 280, 280, 1834, 280, 680, 1202, 601, 675, 681, 676, 677, 681, 1863, 2514, 280, 280, 280, 280, 280, 2515, 281, 682, 282, 283, 1177, 1923, 679, 1177, 281, 1203, 282, 283, 281, 1743, 282, 283, 2516, 1178, 680, 284, 1362, 280, 1744, 280, 740, 741, 281, 284, 282, 283, 1923, 284, 1366, 1195, 1196, 1195, 1195, 1367, 740, 741, 1831, 1144, 680, 1832, 1144, 284, 1191, 1145, 280, 280, 280, 280, 281, 610, 611, 612, 610, 280, 280, 280, 280, 280, 280, 280, 280, 613, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 614, 280, 280, 280, 280, 280, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 280, 280, 280, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 280, 280, 616, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 586, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 280, 280, 280, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 586, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 280, 280, 280, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 280, 280, 280, 280, 281, 280, 660, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 586, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 280, 280, 280, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 280, 280, 280, 280, 281, 280, 667, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 586, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 280, 280, 280, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 280, 280, 280, 684, 1836, 685, 686, 2517, 1837, 684, 691, 685, 686, 691, 1581, 1384, 694, 687, 695, 696, 1377, 688, 689, 692, 1854, 1385, 1924, 688, 689, 694, 1386, 695, 696, 1830, 690, 697, 1008, 1008, 1008, 1008, 690, 1925, 1002, 745, 1004, 282, 746, 698, 697, 1206, 1349, 1350, 704, 1349, 1009, 704, 747, 1849, 690, 2518, 698, 1850, 748, 1351, 690, 568, 1254, 1253, 1254, 1254, 705, 698, 1289, 1289, 1289, 1289, 1004, 1873, 1004, 556, 1861, 1234, 556, 1005, 698, 556, 557, 699, 559, 560, 699, 556, 556, 556, 556, 556, 556, 556, 556, 556, 561, 556, 556, 556, 556, 700, 725, 381, 382, 383, 384, 382, 556, 556, 701, 556, 556, 702, 1862, 742, 743, 1849, 1833, 387, 1909, 1871, 388, 779, 1910, 282, 780, 381, 382, 383, 384, 382, 745, 781, 282, 746, 556, 703, 556, 742, 743, 1314, 782, 387, 1314, 747, 388, 1291, 1292, 1291, 1291, 748, 1291, 1292, 1291, 1291, 1296, 1297, 1296, 1296, 1315, 2026, 2027, 556, 556, 556, 280, 281, 280, 712, 283, 280, 280, 713, 280, 280, 280, 280, 280, 280, 280, 586, 779, 280, 282, 780, 715, 750, 751, 752, 753, 751, 781, 1985, 280, 280, 280, 280, 280, 754, 755, 782, 1892, 756, 2519, 1892, 757, 815, 778, 816, 780, 778, 750, 751, 752, 753, 751, 281, 1985, 282, 283, 280, 2520, 280, 754, 755, 817, 281, 756, 282, 283, 757, 1373, 766, 1004, 1373, 284, 1235, 1004, 1395, 1235, 2521, 1004, 1405, 767, 1374, 284, 1408, 280, 280, 280, 280, 281, 280, 712, 283, 280, 280, 713, 280, 280, 280, 280, 280, 280, 280, 586, 1236, 280, 1004, 2522, 715, 1004, 281, 1005, 282, 283, 1005, 1896, 280, 280, 280, 280, 280, 815, 778, 816, 780, 778, 766, 2523, 1236, 284, 819, 778, 816, 780, 778, 768, 281, 767, 282, 283, 817, 1896, 1927, 280, 281, 280, 282, 283, 2020, 820, 819, 778, 816, 780, 778, 284, 1296, 1297, 1296, 1296, 1399, 2021, 1400, 284, 1014, 1014, 1014, 1014, 1927, 820, 280, 280, 280, 280, 281, 280, 721, 283, 280, 280, 722, 280, 280, 280, 280, 280, 280, 280, 586, 1015, 280, 768, 1706, 724, 770, 771, 772, 773, 771, 2524, 2194, 280, 280, 280, 280, 280, 1706, 822, 778, 816, 780, 778, 2195, 774, 822, 778, 816, 780, 778, 770, 771, 772, 773, 771, 1914, 775, 823, 1902, 280, 902, 280, 282, 903, 823, 902, 1397, 282, 903, 777, 1308, 1308, 1308, 1308, 1325, 1324, 1325, 1325, 1401, 904, 776, 775, 1022, 1402, 904, 1022, 280, 280, 280, 280, 281, 280, 721, 283, 280, 280, 722, 280, 280, 280, 280, 280, 280, 280, 586, 776, 280, 1986, 807, 724, 282, 808, 858, 2525, 859, 860, 809, 280, 280, 280, 280, 280, 810, 858, 1004, 859, 860, 811, 1436, 1005, 1996, 861, 1986, 1437, 2526, 807, 1436, 282, 808, 812, 862, 1440, 861, 809, 280, 918, 280, 919, 920, 810, 912, 862, 282, 913, 811, 1996, 280, 1378, 1378, 1378, 1378, 1909, 1016, 812, 921, 1910, 812, 1274, 1911, 914, 1274, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 726, 280, 280, 280, 280, 280, 280, 280, 586, 812, 280, 1457, 807, 728, 282, 808, 1275, 1622, 1457, 1623, 809, 280, 280, 280, 280, 280, 810, 918, 1854, 919, 920, 811, 866, 280, 282, 283, 280, 1830, 2527, 807, 1275, 282, 808, 813, 1860, 2182, 921, 809, 280, 1381, 280, 867, 1381, 810, 912, 1835, 282, 913, 811, 1457, 280, 2064, 1382, 1417, 1417, 1417, 1417, 813, 2387, 1004, 813, 1999, 1002, 914, 1005, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 726, 280, 280, 280, 280, 280, 280, 280, 586, 813, 280, 1999, 2528, 728, 825, 826, 827, 828, 826, 1457, 1457, 280, 280, 280, 280, 280, 2054, 866, 280, 282, 283, 280, 2055, 829, 869, 280, 282, 283, 280, 2194, 2224, 281, 830, 282, 283, 831, 867, 915, 280, 939, 280, 940, 941, 870, 869, 280, 282, 283, 280, 1162, 284, 2391, 1162, 942, 1427, 1427, 1427, 1427, 943, 832, 2058, 2059, 1163, 870, 2529, 280, 280, 280, 280, 281, 280, 729, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 586, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 280, 280, 280, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 280, 280, 280, 731, 732, 733, 734, 735, 733, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 736, 731, 731, 731, 731, 731, 731, 737, 731, 731, 731, 731, 731, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 731, 731, 731, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 731, 731, 739, 280, 281, 758, 759, 760, 758, 280, 280, 280, 280, 280, 761, 280, 280, 280, 761, 280, 762, 280, 280, 342, 280, 280, 280, 280, 280, 280, 280, 763, 280, 764, 280, 280, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 280, 280, 280, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 280, 280, 280, 778, 779, 783, 784, 785, 783, 778, 778, 786, 787, 788, 781, 778, 778, 778, 778, 789, 778, 789, 789, 790, 789, 789, 789, 789, 789, 789, 791, 778, 792, 778, 778, 793, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 778, 795, 778, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 796, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 778, 778, 797, 280, 281, 280, 282, 283, 280, 280, 798, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 825, 826, 827, 828, 826, 1868, 1457, 280, 280, 280, 280, 280, 2010, 872, 280, 282, 283, 280, 1457, 829, 872, 280, 282, 283, 280, 2530, 2194, 281, 830, 282, 283, 831, 873, 915, 280, 280, 280, 2010, 2216, 873, 875, 280, 282, 283, 280, 2062, 284, 1428, 1428, 1428, 1428, 1447, 1448, 1449, 1447, 832, 1429, 2070, 2063, 876, 1429, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 798, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 837, 1458, 838, 839, 2122, 1457, 1459, 280, 280, 280, 280, 280, 2531, 875, 280, 282, 283, 280, 2122, 840, 884, 885, 886, 887, 885, 884, 885, 886, 887, 885, 1177, 841, 876, 1177, 280, 280, 280, 1532, 939, 888, 940, 941, 1533, 1178, 888, 1425, 1425, 1425, 1425, 1539, 1706, 1544, 942, 1549, 1540, 841, 1545, 943, 1550, 1706, 1426, 280, 280, 280, 280, 281, 800, 801, 802, 800, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 803, 280, 280, 280, 280, 280, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 280, 280, 280, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 280, 280, 805, 280, 281, 280, 282, 283, 280, 280, 280, 1558, 280, 280, 280, 280, 1559, 1620, 280, 837, 280, 838, 839, 834, 878, 1004, 879, 880, 1457, 1457, 1564, 280, 280, 280, 280, 835, 1004, 281, 840, 282, 283, 1005, 281, 881, 282, 283, 281, 1004, 282, 283, 841, 959, 1569, 952, 960, 882, 284, 961, 280, 835, 280, 284, 962, 963, 964, 284, 1004, 849, 1004, 2396, 965, 1572, 1004, 1576, 841, 1617, 850, 1578, 1617, 882, 1208, 851, 2389, 1388, 2090, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 1457, 280, 280, 280, 280, 1260, 850, 280, 1260, 280, 1208, 851, 834, 878, 1388, 879, 880, 1161, 1178, 1002, 280, 280, 280, 280, 835, 1582, 281, 2532, 282, 283, 1583, 1002, 881, 1588, 281, 1262, 934, 283, 1589, 281, 2098, 934, 283, 2056, 882, 284, 1593, 280, 835, 280, 2533, 1594, 988, 284, 282, 989, 849, 2057, 284, 1263, 1450, 1451, 1449, 1450, 2011, 850, 2098, 1598, 882, 990, 851, 991, 1599, 2536, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 2011, 850, 280, 280, 280, 280, 851, 284, 891, 935, 892, 893, 1620, 2538, 935, 280, 280, 280, 280, 280, 1603, 1004, 894, 936, 1625, 1604, 1005, 895, 936, 1626, 1004, 891, 1635, 892, 893, 1631, 2539, 1636, 945, 896, 282, 946, 280, 280, 280, 894, 1038, 1038, 1038, 1038, 895, 1004, 1425, 1425, 1425, 1425, 1668, 947, 1449, 1449, 1449, 1449, 896, 897, 1039, 1457, 948, 1426, 949, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 2224, 897, 280, 280, 280, 280, 945, 284, 282, 946, 988, 1184, 282, 989, 1184, 280, 280, 280, 280, 280, 959, 2413, 952, 960, 1185, 947, 961, 990, 1652, 991, 2078, 962, 963, 964, 948, 951, 949, 952, 953, 965, 1656, 954, 280, 280, 280, 1657, 955, 971, 972, 973, 974, 972, 1004, 961, 956, 2078, 2237, 1005, 962, 975, 976, 1529, 1529, 1529, 1529, 1634, 965, 1002, 2238, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 843, 280, 280, 280, 280, 280, 280, 280, 280, 2540, 280, 957, 993, 845, 282, 994, 993, 997, 282, 994, 997, 280, 280, 280, 280, 280, 966, 2179, 952, 967, 998, 995, 961, 2248, 1644, 999, 1310, 962, 1644, 1310, 1654, 951, 1655, 952, 953, 965, 1648, 954, 280, 1673, 280, 1649, 955, 2179, 968, 1224, 969, 1225, 1226, 2248, 956, 1004, 1227, 1684, 1311, 1004, 1677, 996, 1685, 1644, 1005, 996, 2541, 1644, 1228, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 843, 280, 280, 280, 280, 280, 280, 280, 280, 1312, 280, 957, 993, 845, 282, 994, 993, 997, 282, 994, 997, 280, 280, 280, 280, 280, 966, 1313, 952, 967, 998, 995, 961, 1004, 1004, 999, 2542, 962, 1005, 1005, 971, 972, 973, 974, 972, 965, 961, 1193, 280, 1002, 280, 962, 975, 976, 968, 1224, 969, 1249, 1250, 965, 1457, 1194, 1227, 1609, 1610, 1609, 1609, 1000, 1004, 2084, 2543, 1000, 2085, 1005, 1251, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 846, 280, 280, 280, 280, 280, 280, 280, 280, 2084, 280, 2122, 2085, 848, 1029, 1029, 1029, 1029, 2069, 2544, 2122, 280, 280, 280, 280, 280, 966, 972, 973, 974, 972, 2545, 961, 1043, 1043, 1043, 1043, 962, 975, 1031, 966, 972, 973, 974, 972, 965, 961, 2127, 280, 1868, 280, 962, 975, 1869, 977, 2128, 978, 2123, 1045, 965, 1538, 1002, 1002, 1002, 1002, 1644, 2123, 1846, 977, 1644, 978, 1043, 1043, 1043, 1043, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 846, 280, 280, 280, 280, 280, 280, 280, 280, 1056, 280, 1045, 1056, 848, 980, 981, 982, 983, 981, 2373, 2548, 280, 280, 280, 280, 280, 980, 981, 982, 983, 981, 2374, 2375, 984, 1040, 1040, 1040, 1040, 1064, 1064, 1064, 1064, 985, 1281, 986, 984, 1281, 1209, 280, 1264, 280, 1265, 1041, 1457, 985, 1004, 986, 1704, 1267, 1226, 1701, 1282, 1705, 1045, 1389, 1066, 1874, 1269, 1057, 1064, 1064, 1064, 1064, 1275, 1219, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 1045, 280, 1066, 1275, 853, 1038, 1038, 1038, 1038, 1909, 2398, 280, 280, 280, 280, 849, 280, 1040, 1040, 1040, 1040, 2549, 2135, 1039, 1064, 1064, 1064, 1064, 1956, 1456, 2123, 1064, 1064, 1064, 1064, 1041, 1456, 1713, 2136, 280, 280, 280, 1714, 1068, 2123, 1104, 1104, 1104, 1104, 1045, 1721, 1066, 1723, 1069, 1812, 1722, 1045, 1724, 1066, 1813, 1064, 1064, 1064, 1064, 1105, 1456, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 1045, 280, 1066, 2145, 853, 1067, 1064, 1064, 1064, 1064, 1081, 280, 280, 280, 280, 849, 280, 2165, 2178, 1064, 1064, 1064, 1064, 1084, 1084, 1084, 1084, 1064, 1064, 1064, 1064, 1045, 2178, 1066, 1064, 1064, 1064, 1064, 1644, 280, 280, 280, 1644, 1070, 1045, 1644, 1066, 1699, 1085, 1644, 1699, 2191, 1045, 2214, 1066, 1609, 1610, 1609, 1609, 1045, 1230, 1066, 1072, 2225, 2550, 1700, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 2225, 280, 280, 280, 280, 280, 280, 280, 1186, 280, 2178, 1071, 855, 1179, 1075, 1084, 1084, 1084, 1084, 2178, 280, 280, 280, 856, 1076, 1084, 1084, 1084, 1084, 1073, 2189, 2201, 1074, 1191, 1064, 1064, 1064, 1064, 1198, 2218, 1085, 1064, 1064, 1064, 1064, 1457, 2190, 280, 280, 280, 1085, 1008, 1008, 1008, 1008, 1610, 1610, 1610, 1610, 1045, 1457, 1066, 1609, 1610, 1609, 1609, 1045, 2097, 1066, 1009, 1087, 1087, 1087, 1087, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 2290, 280, 280, 280, 280, 280, 280, 280, 2097, 280, 1077, 1085, 855, 1089, 1008, 1008, 1008, 1008, 2392, 1191, 280, 280, 280, 856, 1198, 1079, 2290, 2405, 1810, 1078, 1080, 1810, 1009, 1008, 1008, 1008, 1008, 1038, 1038, 1038, 1038, 1040, 1040, 1040, 1040, 2551, 1811, 280, 280, 280, 1209, 1009, 1264, 1745, 1265, 1039, 1745, 1746, 1266, 1041, 2552, 1267, 1641, 1641, 1641, 1641, 1219, 1268, 1233, 2193, 1269, 1747, 2193, 1179, 280, 280, 280, 281, 280, 863, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 280, 280, 280, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 280, 280, 280, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 898, 280, 280, 280, 280, 280, 280, 280, 280, 2033, 280, 2534, 2535, 900, 2034, 1425, 1425, 1425, 1425, 2553, 1457, 280, 280, 280, 280, 280, 1125, 1125, 1125, 1125, 1426, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1098, 1098, 1098, 1098, 2200, 1098, 1098, 1098, 1098, 280, 1617, 280, 1126, 1617, 2217, 2089, 1115, 1126, 1002, 1002, 2390, 1126, 1002, 1695, 1695, 1695, 1695, 1002, 1099, 1098, 1098, 1098, 1098, 1099, 1457, 1002, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 898, 280, 280, 280, 280, 280, 280, 280, 280, 2131, 280, 1099, 1100, 900, 2132, 3760, 1229, 1100, 1457, 1229, 2556, 280, 280, 280, 280, 280, 1101, 2399, 1102, 1230, 1103, 1101, 3760, 1102, 1231, 1103, 1125, 1125, 1125, 1125, 2557, 1100, 1131, 1131, 1131, 1131, 1202, 1646, 280, 1647, 280, 1002, 1002, 1647, 2558, 1101, 3760, 1102, 2559, 1103, 2395, 1126, 1543, 1002, 1002, 1002, 1002, 1132, 2554, 2555, 1203, 1695, 1695, 1695, 1695, 280, 280, 280, 280, 281, 905, 906, 907, 905, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 908, 280, 280, 280, 280, 280, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 280, 280, 280, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 280, 280, 910, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 280, 280, 280, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 280, 280, 280, 280, 281, 280, 922, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 923, 923, 284, 923, 923, 923, 923, 923, 923, 280, 280, 280, 280, 280, 280, 923, 923, 923, 923, 923, 923, 923, 924, 923, 923, 925, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 280, 280, 280, 923, 923, 923, 923, 923, 923, 923, 924, 923, 923, 925, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 280, 280, 280, 280, 281, 280, 922, 283, 280, 280, 926, 927, 280, 280, 280, 280, 280, 280, 280, 1056, 280, 2560, 1056, 929, 1131, 1131, 1131, 1131, 1622, 2320, 1623, 280, 280, 280, 280, 927, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1142, 1142, 1142, 1142, 1892, 1132, 1457, 1892, 1176, 1002, 1002, 2320, 1002, 2561, 280, 930, 280, 1132, 1143, 2562, 1457, 1132, 1002, 1695, 1695, 1695, 1695, 1002, 1548, 1002, 1002, 1002, 1002, 1457, 1057, 1284, 1284, 1284, 1284, 1002, 2564, 280, 280, 927, 280, 281, 280, 922, 283, 280, 280, 926, 927, 280, 280, 280, 280, 280, 280, 280, 1285, 280, 2407, 1002, 929, 1252, 1253, 1254, 1252, 1662, 2400, 2108, 280, 280, 280, 280, 927, 2393, 1255, 1257, 1258, 1257, 1257, 1231, 2565, 1276, 1277, 1277, 1276, 1979, 2566, 2184, 1259, 1662, 1457, 1236, 2109, 1237, 1980, 280, 930, 280, 1224, 1278, 1225, 1226, 1264, 1745, 1265, 1270, 1745, 1779, 1271, 2570, 1979, 1267, 2184, 1664, 2231, 1236, 1219, 2231, 2336, 1980, 1269, 1780, 280, 280, 927, 280, 281, 280, 922, 283, 280, 280, 931, 280, 280, 280, 280, 280, 280, 280, 280, 1662, 280, 2232, 2336, 933, 1272, 2404, 2252, 1272, 2281, 2208, 2571, 280, 280, 280, 280, 280, 2572, 1273, 1276, 1277, 1277, 1276, 1231, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 2252, 1819, 2281, 1262, 1819, 1278, 1822, 280, 1002, 280, 1428, 1428, 1428, 1428, 1820, 1851, 2368, 1285, 1852, 1429, 1194, 1285, 2573, 1429, 2208, 1823, 2208, 1263, 1284, 1284, 1284, 1284, 2369, 1853, 280, 280, 280, 280, 281, 280, 922, 283, 280, 280, 931, 280, 280, 280, 280, 280, 280, 280, 280, 1285, 280, 1457, 2574, 933, 1304, 1304, 1304, 1304, 2575, 1457, 2576, 280, 280, 280, 280, 280, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 2282, 1305, 1413, 1413, 1413, 1413, 1038, 1038, 1038, 1038, 280, 1314, 280, 1305, 1314, 1337, 1338, 1305, 1339, 1340, 1675, 1305, 1676, 1341, 1039, 2282, 2386, 1414, 2417, 1342, 1315, 1343, 1344, 2577, 1002, 1345, 1346, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 280, 280, 280, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 280, 280, 280, 280, 281, 280, 282, 283, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 284, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 280, 280, 280, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 280, 280, 280, 1042, 1043, 1043, 1042, 1276, 2289, 1044, 1276, 1323, 1324, 1325, 1323, 1457, 2578, 1457, 1330, 1331, 1332, 1330, 2524, 2193, 1326, 1278, 2193, 1201, 1045, 1327, 1201, 1333, 1387, 2289, 1976, 1387, 1179, 1280, 2537, 1337, 1347, 1328, 1339, 1340, 1270, 1178, 1993, 1341, 1334, 1413, 1413, 1413, 1413, 1342, 2401, 1343, 1348, 1202, 2384, 1345, 1346, 1046, 3760, 1047, 2291, 1329, 2270, 1048, 2385, 2270, 1049, 1050, 1335, 1051, 1414, 2001, 1052, 1053, 1054, 1055, 1209, 1203, 1210, 1211, 1212, 1213, 3760, 2000, 1214, 2291, 2000, 1215, 1216, 1217, 1218, 2271, 1219, 1220, 1221, 1222, 1223, 1239, 1240, 1210, 1241, 1242, 1213, 1457, 1745, 1243, 2681, 1745, 1215, 1216, 1217, 1244, 2001, 1245, 1246, 1221, 1222, 1247, 1248, 1224, 2683, 1225, 2143, 1264, 1868, 1265, 1270, 1391, 1869, 2002, 1391, 1870, 1267, 1413, 1413, 1413, 1413, 1390, 1389, 2686, 1273, 1269, 1846, 1457, 1457, 1231, 1409, 1409, 1409, 1409, 1413, 1413, 1413, 1413, 2687, 2002, 1810, 3760, 1414, 1810, 2415, 1419, 1419, 1419, 1419, 1410, 1410, 1410, 1410, 1410, 1410, 1411, 1420, 1859, 1811, 1414, 1859, 1422, 1422, 1422, 1422, 3760, 1428, 1428, 1428, 1428, 1230, 1421, 1423, 2388, 2414, 1429, 1822, 2302, 1002, 1429, 1428, 1428, 1428, 1428, 1435, 1002, 1002, 1424, 1002, 1429, 1194, 2688, 2691, 1429, 1040, 1040, 1040, 1040, 1525, 1525, 1525, 1525, 2302, 1002, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1041, 1525, 1525, 1525, 1525, 1553, 2303, 1002, 2692, 2693, 2579, 1526, 1587, 1002, 1002, 1002, 1002, 1526, 1176, 1002, 1002, 1526, 1002, 1453, 1002, 2306, 1526, 1002, 1662, 1424, 1441, 2303, 1002, 1002, 1442, 1004, 1229, 1002, 1442, 1229, 1665, 2694, 1443, 1441, 1637, 1637, 1637, 1637, 1442, 1230, 2306, 1444, 1662, 2695, 1231, 1441, 2696, 1445, 2702, 1442, 1002, 1235, 1301, 1442, 1235, 1301, 1202, 1443, 1441, 1638, 1446, 2705, 2697, 1002, 1442, 1302, 1664, 2698, 1444, 1461, 1592, 1002, 1002, 1002, 1002, 1597, 1002, 1002, 1002, 1002, 1203, 1236, 2706, 1462, 1602, 1002, 1002, 1002, 1002, 1612, 1613, 1614, 1613, 1613, 1662, 2709, 1463, 1464, 1465, 1466, 1467, 1468, 2275, 1469, 1470, 1236, 1471, 1472, 2309, 1473, 1474, 2276, 1475, 1476, 1477, 1478, 2749, 1554, 1555, 1554, 1554, 1463, 1464, 1465, 1466, 1467, 1468, 2275, 1469, 1470, 2310, 1471, 1472, 2309, 1473, 1474, 2276, 2707, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1556, 2313, 1484, 1485, 2506, 1486, 2708, 2506, 2310, 1487, 1301, 1488, 1489, 1301, 1490, 1491, 1492, 1493, 1555, 1555, 1555, 1555, 1494, 1302, 1557, 1456, 2313, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1554, 1555, 1554, 1554, 1609, 1610, 1609, 1609, 1956, 1456, 2344, 1557, 1637, 1637, 1637, 1637, 1456, 1615, 1637, 1637, 1637, 1637, 1616, 1637, 1637, 1637, 1637, 2327, 1456, 2507, 1556, 1696, 1696, 1696, 1696, 1557, 2344, 1638, 1678, 1678, 1678, 1678, 2332, 1638, 1683, 1456, 1002, 2750, 1638, 1679, 1002, 1822, 2327, 1002, 1557, 1002, 1453, 1498, 1499, 1500, 1501, 1956, 1456, 1680, 1689, 1194, 1002, 2332, 1457, 1456, 1002, 1696, 1696, 1696, 1696, 1002, 1002, 1002, 1502, 2333, 1503, 1504, 2752, 1002, 1694, 1002, 1002, 1002, 1002, 1457, 1002, 1696, 1696, 1696, 1696, 1002, 1002, 1002, 1456, 1002, 1942, 2753, 1943, 1002, 2333, 1505, 1944, 1506, 1507, 1508, 1509, 1510, 1511, 2754, 1512, 1513, 1743, 1514, 1945, 1946, 2759, 1515, 1856, 1516, 1517, 1744, 1518, 1519, 1520, 1493, 1013, 1014, 1014, 1013, 1494, 2287, 2711, 1456, 2287, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1008, 1008, 1008, 1008, 2337, 2356, 1015, 1014, 1014, 1014, 1014, 1707, 1707, 1707, 1707, 2288, 2342, 2343, 1009, 1857, 1014, 1014, 1014, 1014, 1020, 1020, 1020, 1020, 1456, 2337, 1836, 2356, 1015, 1457, 1837, 2689, 1015, 1024, 1025, 1025, 1024, 2342, 2343, 2690, 1521, 1015, 1025, 1025, 1025, 1025, 1029, 1029, 1029, 1029, 2628, 2347, 1453, 1025, 1025, 1025, 1025, 1016, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1038, 1038, 1038, 1038, 2402, 1031, 1739, 1739, 1739, 1739, 2347, 2628, 1711, 2494, 1457, 1719, 1457, 1031, 1039, 1059, 2403, 1031, 2495, 1709, 1720, 1720, 1720, 1720, 1720, 2421, 1040, 1040, 1040, 1040, 1043, 1043, 1043, 1043, 1740, 1740, 1740, 1740, 1082, 1082, 1082, 1082, 2567, 1027, 1041, 2703, 2704, 1748, 1748, 1748, 1748, 2421, 3760, 2701, 2760, 1045, 2701, 1457, 1373, 1742, 2761, 1373, 2713, 3760, 1042, 1043, 1043, 1042, 2567, 2716, 1044, 1374, 1045, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1045, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1045, 1942, 1066, 1943, 1045, 2712, 1066, 1944, 1045, 1457, 1066, 2596, 1045, 2425, 1066, 1349, 1350, 1045, 1349, 1066, 1946, 1045, 1381, 1066, 1046, 1381, 1047, 2763, 1351, 1457, 1048, 1750, 2765, 1049, 1050, 1382, 1051, 2596, 2425, 1052, 1053, 1054, 1055, 1752, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1457, 1115, 1753, 1002, 1002, 1387, 1755, 1002, 1387, 2717, 1754, 1457, 1002, 1045, 1756, 1066, 2718, 1045, 1178, 1066, 1002, 1045, 2615, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1084, 1084, 1084, 1084, 1064, 1064, 1064, 1064, 2766, 1457, 1064, 1064, 1064, 1064, 2714, 1757, 2615, 1045, 1457, 1066, 2627, 1045, 1997, 1066, 1457, 1085, 2720, 1758, 1759, 1045, 2769, 1066, 1457, 1760, 2426, 1045, 1998, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2627, 1997, 2065, 1761, 1002, 1002, 2066, 1064, 1064, 1064, 1064, 2067, 1762, 2426, 1763, 1391, 1998, 1045, 1391, 1066, 2727, 1045, 2725, 1066, 1064, 1064, 1064, 1064, 1273, 2719, 1764, 1765, 1045, 1231, 1066, 2631, 1770, 1770, 1770, 1770, 1772, 1772, 1772, 1772, 2770, 1087, 1087, 1087, 1087, 1045, 1457, 1066, 1087, 1087, 1087, 1087, 1090, 1090, 1090, 1090, 1767, 2631, 1766, 1066, 1457, 1085, 1775, 1775, 1775, 1775, 1085, 1768, 1089, 1095, 1095, 1095, 1095, 1085, 2771, 1089, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1096, 1098, 1098, 1098, 1098, 1089, 2432, 2729, 1769, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1781, 1781, 1781, 1781, 1110, 1110, 1110, 1110, 2728, 2433, 1457, 1105, 1099, 2772, 2432, 1105, 1111, 1774, 1786, 1786, 1786, 1786, 1116, 1117, 1117, 1116, 1790, 2443, 1457, 1787, 1117, 1117, 1117, 1117, 2433, 1791, 1791, 1791, 1791, 1791, 1457, 2773, 1100, 1792, 1793, 1794, 1792, 1125, 1125, 1125, 1125, 1797, 1797, 1797, 1797, 1457, 1101, 2737, 1102, 2655, 1103, 1125, 1125, 1125, 1125, 1129, 1129, 1129, 1129, 2659, 2305, 2307, 1126, 2305, 2307, 2744, 1126, 1131, 1131, 1131, 1131, 1801, 1801, 1801, 1801, 2655, 1126, 1131, 1131, 1131, 1131, 1135, 1135, 1135, 1135, 2659, 2726, 2721, 1807, 1976, 2308, 2311, 1132, 2775, 2311, 2776, 1132, 1808, 1808, 1808, 1808, 1808, 1132, 1142, 1142, 1142, 1142, 1188, 1188, 1188, 1188, 1195, 1196, 1195, 1195, 1196, 1196, 1196, 1196, 2777, 2312, 1143, 2497, 1799, 1191, 2563, 2778, 2584, 1252, 1253, 1254, 1252, 1254, 1253, 1254, 1254, 1257, 1258, 1257, 1257, 2764, 1255, 1254, 1253, 1254, 1254, 1231, 2497, 1260, 1259, 2563, 1260, 2584, 1803, 1824, 1211, 1825, 1213, 1236, 1274, 1826, 1178, 1274, 1827, 1216, 1217, 1218, 2764, 1219, 1220, 1221, 1222, 1828, 1257, 1258, 1257, 1257, 1272, 1262, 1457, 1272, 1281, 1236, 2585, 1281, 1859, 1259, 2586, 1859, 1275, 1273, 1276, 1277, 1277, 1276, 1231, 2779, 1819, 1230, 1282, 1819, 2589, 1263, 1284, 1284, 1284, 1284, 1262, 2585, 1278, 1820, 1275, 2586, 1275, 1881, 1881, 1881, 1881, 1284, 1284, 1284, 1284, 1289, 1289, 1289, 1289, 2589, 1683, 1285, 1002, 2780, 1263, 2781, 1002, 1457, 1275, 2736, 1457, 1002, 1285, 2782, 1457, 1457, 1285, 1291, 1292, 1291, 1291, 1296, 1297, 1296, 1296, 1304, 1304, 1304, 1304, 1888, 1888, 1888, 1888, 1304, 1304, 1304, 1304, 1308, 1308, 1308, 1308, 2699, 1310, 2783, 2699, 1310, 1325, 1324, 1325, 1325, 1305, 1457, 1457, 2724, 1305, 1002, 2730, 2731, 1305, 1323, 1324, 1325, 1323, 1330, 1331, 1332, 1330, 2345, 1457, 1883, 1311, 1859, 1326, 2739, 1859, 1859, 1333, 1327, 1859, 2784, 2346, 1179, 1337, 1338, 1230, 1339, 1340, 2785, 1230, 1328, 1341, 2049, 2345, 1334, 2732, 2050, 1342, 2700, 1343, 1344, 1312, 2788, 1345, 1346, 2051, 2346, 1337, 1347, 1457, 1339, 1340, 1890, 2408, 1329, 1341, 2409, 2292, 1335, 1313, 2292, 1342, 2603, 1343, 1348, 2410, 2411, 1345, 1346, 1898, 1324, 1325, 1898, 1325, 1324, 1325, 1325, 1330, 1331, 1332, 1330, 1337, 1338, 2789, 1339, 1340, 2293, 2603, 1620, 1341, 1333, 1918, 1919, 1918, 1918, 1342, 2790, 1343, 1344, 1328, 2747, 1345, 1346, 2294, 1457, 1337, 1347, 1334, 1339, 1340, 1457, 1457, 2810, 1341, 1899, 1324, 1325, 1899, 2813, 1342, 2489, 1343, 1348, 1329, 2814, 1345, 1346, 1900, 2492, 2294, 2608, 1335, 1921, 1919, 1921, 1921, 1409, 1409, 1409, 1409, 1413, 1413, 1413, 1413, 1328, 1922, 1417, 1417, 1417, 1417, 1409, 1409, 1409, 1409, 2738, 2608, 2818, 1409, 1409, 1409, 1409, 1411, 2819, 2762, 2743, 1414, 2820, 2742, 1329, 1410, 1410, 1410, 1410, 1410, 1410, 1411, 1932, 1932, 1932, 1932, 1932, 1932, 1411, 1934, 1934, 1934, 1934, 1413, 1413, 1413, 1413, 1419, 1419, 1419, 1419, 1422, 1422, 1422, 1422, 1435, 1002, 1002, 1420, 1002, 2823, 2824, 1423, 1859, 1414, 2826, 1859, 2827, 1414, 1425, 1425, 1425, 1425, 1421, 1002, 2613, 1230, 1424, 1427, 1427, 1427, 1427, 2829, 2614, 1426, 1427, 1427, 1427, 1427, 1428, 1428, 1428, 1428, 2831, 1428, 1428, 1428, 1428, 1429, 2832, 2613, 1975, 1429, 1429, 1975, 2833, 2506, 1429, 2614, 2506, 1002, 1447, 1448, 1449, 1447, 1450, 1451, 1449, 1450, 1662, 1662, 1936, 1449, 1449, 1449, 1449, 1450, 1451, 1449, 1450, 1976, 1424, 1949, 1950, 1449, 1949, 1493, 1992, 2834, 2786, 1992, 1494, 2835, 1662, 1662, 1977, 2836, 1978, 2787, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 2618, 1981, 2632, 1982, 2016, 2016, 2016, 2016, 1983, 2838, 1993, 1664, 1664, 2003, 1977, 1984, 2839, 1978, 2314, 2004, 2005, 2314, 2840, 1994, 1995, 2618, 1981, 2632, 1982, 1987, 1988, 1989, 2841, 1983, 2012, 2012, 2012, 2012, 2003, 1662, 1662, 1984, 2842, 2843, 1990, 2004, 2005, 2315, 1994, 1995, 2018, 2018, 2018, 2018, 2844, 1991, 1453, 1456, 2616, 1456, 1457, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1990, 2006, 2617, 2845, 2007, 1529, 1529, 1529, 1529, 2643, 2017, 2846, 1991, 2650, 2616, 2839, 2008, 1553, 2009, 1002, 2022, 2022, 2022, 2022, 2013, 2847, 2006, 2617, 1456, 2007, 2016, 2016, 2016, 2016, 2643, 2848, 1002, 2014, 2650, 1743, 2015, 2658, 2008, 2828, 2009, 1002, 2828, 1457, 1744, 1868, 2019, 2028, 2028, 2028, 2028, 2849, 1453, 1959, 1960, 1961, 1962, 1963, 1964, 1868, 1965, 1966, 2658, 1967, 1968, 2850, 1969, 1970, 1002, 1971, 1972, 1973, 1974, 2012, 2012, 2012, 2012, 2664, 1959, 1960, 1961, 1962, 1963, 1964, 2023, 1965, 1966, 2851, 1967, 1968, 1457, 1969, 1970, 2665, 2024, 1971, 1972, 1973, 1974, 2852, 2853, 2045, 2664, 2029, 2022, 2022, 2022, 2022, 2670, 1457, 2854, 2030, 1493, 1525, 1525, 1525, 1525, 1494, 2665, 2751, 1456, 1457, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 2041, 2670, 2028, 2028, 2028, 2028, 1526, 1699, 2830, 2042, 1699, 2830, 2751, 2043, 2837, 2855, 2044, 2837, 2722, 1457, 1230, 2018, 2018, 2018, 2018, 1700, 2723, 2856, 1456, 2072, 2072, 2072, 2072, 2857, 1525, 1525, 1525, 1525, 1457, 2858, 2052, 1538, 1002, 1002, 1002, 1002, 1609, 1610, 1609, 1609, 2053, 2862, 2859, 2232, 1526, 2859, 1453, 1493, 2060, 1526, 2316, 2863, 1494, 2316, 2864, 1456, 2061, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 2046, 1543, 1002, 1002, 1002, 1002, 1554, 1555, 1554, 1554, 2047, 1457, 2317, 2048, 1548, 1002, 1002, 1002, 1002, 1555, 1555, 1555, 1555, 1587, 1002, 1002, 1002, 1002, 1456, 1592, 1002, 1002, 1002, 1002, 2074, 1909, 1556, 1597, 1002, 1002, 1002, 1002, 1602, 1002, 1002, 1002, 1002, 2865, 2866, 1557, 1609, 1610, 1609, 1609, 2733, 1909, 1453, 2867, 2868, 2734, 1557, 1610, 1610, 1610, 1610, 1612, 1613, 1614, 1613, 1613, 2869, 2870, 2871, 1557, 1609, 1610, 1609, 1609, 1612, 1613, 1614, 1613, 1613, 1003, 1614, 1614, 1614, 1614, 1609, 1610, 1609, 1609, 1609, 1610, 1609, 1609, 1637, 1637, 1637, 1637, 2093, 2093, 2093, 2093, 1637, 1637, 1637, 1637, 1641, 1641, 1641, 1641, 1678, 1678, 1678, 1678, 1695, 1695, 1695, 1695, 1689, 1638, 1002, 1679, 2318, 1638, 1002, 2318, 2869, 1638, 2872, 1002, 1002, 1002, 2106, 2873, 2874, 1680, 2876, 1002, 2877, 1457, 2878, 2107, 2107, 2107, 2107, 2107, 1694, 1002, 1002, 1002, 1002, 2319, 1002, 1696, 1696, 1696, 1696, 1002, 1002, 1002, 1707, 1707, 1707, 1707, 2880, 1002, 1014, 1014, 1014, 1014, 1020, 1020, 1020, 1020, 2114, 2114, 2114, 2114, 2881, 2860, 2095, 2882, 2860, 2120, 1457, 1015, 1739, 1739, 1739, 1739, 2861, 1015, 2121, 2121, 2121, 2121, 2121, 2740, 2741, 1059, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1748, 1748, 1748, 1748, 1064, 1064, 1064, 1064, 1082, 1082, 1082, 1082, 1064, 1064, 1064, 1064, 2745, 1742, 2283, 2284, 2285, 1742, 2883, 2321, 2884, 1045, 2321, 2885, 2886, 1045, 2887, 1066, 2746, 2286, 1709, 2323, 2888, 1045, 2323, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2322, 1064, 1064, 1064, 1064, 2271, 2286, 1064, 1064, 1064, 1064, 2875, 2324, 1045, 2273, 1066, 2288, 1045, 2293, 1066, 2308, 1045, 2325, 1066, 2328, 2325, 1045, 2328, 1066, 2879, 1750, 2312, 1045, 2146, 1066, 2315, 2875, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2317, 2319, 2326, 2148, 2329, 2879, 2147, 1064, 1064, 1064, 1064, 2149, 2150, 1045, 2322, 1066, 2890, 1045, 2324, 1066, 2326, 1045, 2329, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1045, 2151, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2890, 1064, 1064, 1064, 1064, 2152, 1045, 2335, 1066, 2891, 1045, 2913, 1066, 1064, 1064, 1064, 1064, 1045, 2339, 1066, 2349, 1045, 2892, 1066, 2142, 2153, 1045, 2154, 1066, 2903, 2155, 1064, 1064, 1064, 1064, 2891, 1809, 2913, 1045, 2351, 1066, 1809, 2353, 1064, 1064, 1064, 1064, 2892, 2355, 2156, 1770, 1770, 1770, 1770, 2903, 2963, 1045, 2964, 1066, 2157, 2969, 2160, 1770, 1770, 1770, 1770, 2159, 2158, 1045, 2948, 1066, 1772, 1772, 1772, 1772, 2910, 2918, 1066, 1087, 1087, 1087, 1087, 2161, 1090, 1090, 1090, 1090, 2331, 2970, 1066, 2331, 1775, 1775, 1775, 1775, 2948, 1085, 2971, 2972, 2162, 2910, 2918, 2973, 1085, 2919, 1089, 1775, 1775, 1775, 1775, 1781, 1781, 1781, 1781, 2171, 2974, 1993, 2163, 1089, 1786, 1786, 1786, 1786, 2172, 2172, 2172, 2172, 2172, 2975, 2919, 1787, 2976, 2977, 1089, 1792, 1793, 1794, 1792, 1794, 1793, 1794, 1794, 1797, 1797, 1797, 1797, 1125, 1125, 1125, 1125, 2980, 2924, 2981, 1774, 1129, 1129, 1129, 1129, 1801, 1801, 1801, 1801, 1131, 1131, 1131, 1131, 2699, 1126, 2175, 2699, 2982, 1126, 1135, 1135, 1135, 1135, 2924, 2176, 2176, 2176, 2176, 2176, 2701, 1132, 2983, 2701, 2986, 1132, 1881, 1881, 1881, 1881, 1284, 1284, 1284, 1284, 1289, 1289, 1289, 1289, 1888, 1888, 1888, 1888, 1304, 1304, 1304, 1304, 1308, 1308, 1308, 1308, 2989, 1285, 2990, 2987, 1457, 1285, 1899, 1324, 1325, 1899, 2937, 2988, 1799, 1305, 1457, 1457, 1457, 1305, 1457, 1900, 1898, 1324, 1325, 1898, 1899, 1324, 1325, 1899, 1803, 1330, 1331, 1332, 1330, 1457, 3028, 2937, 1328, 1900, 1918, 1919, 1918, 1918, 1333, 1918, 1919, 1918, 1918, 2951, 2334, 3029, 1328, 2334, 3032, 1457, 1328, 2992, 3033, 3034, 1883, 1334, 1329, 2253, 2253, 2253, 2253, 3000, 1934, 1934, 1934, 1934, 1890, 2954, 2951, 2994, 1329, 3006, 3012, 2335, 1329, 1409, 1409, 1409, 1409, 1335, 1457, 2993, 1411, 1409, 1409, 1409, 1409, 1414, 1413, 1413, 1413, 1413, 2954, 1457, 1932, 1932, 1932, 1932, 1932, 1932, 1411, 2995, 1932, 1932, 1932, 1932, 1932, 1932, 1411, 1417, 1417, 1417, 1417, 1414, 1949, 1950, 1449, 1949, 2264, 1950, 1449, 2264, 1493, 2272, 2955, 2338, 2272, 1494, 2338, 2012, 2012, 2012, 2012, 3004, 1457, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 1493, 2341, 1936, 3002, 2341, 1494, 2348, 2955, 2350, 2348, 2273, 2350, 2339, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 2277, 2298, 2278, 2960, 2299, 2274, 2295, 2279, 2352, 3005, 2001, 2352, 2296, 2297, 2280, 2349, 2300, 2351, 2301, 2354, 1457, 1457, 2354, 1457, 3008, 2277, 2298, 2278, 2960, 2299, 2274, 2295, 2279, 3040, 3041, 3043, 1453, 2353, 2296, 2297, 2280, 3044, 2300, 2767, 2301, 3047, 3048, 1457, 2355, 2016, 2016, 2016, 2016, 3049, 3051, 3052, 1453, 1493, 2018, 2018, 2018, 2018, 1494, 1457, 3007, 1456, 3009, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 2022, 2022, 2022, 2022, 2028, 2028, 2028, 2028, 2412, 2412, 2412, 2412, 2072, 2072, 2072, 2072, 1525, 1525, 1525, 1525, 1529, 1529, 1529, 1529, 2501, 1457, 2999, 2501, 1456, 2093, 2093, 2093, 2093, 1637, 1637, 1637, 1637, 1526, 2437, 3016, 1457, 1526, 1641, 1641, 1641, 1641, 1457, 2438, 2438, 2438, 2438, 2438, 3053, 2502, 1638, 1457, 1453, 1456, 1638, 1456, 1457, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 2114, 2114, 2114, 2114, 2443, 2464, 2464, 2464, 2464, 1064, 1064, 1064, 1064, 2444, 2444, 2444, 2444, 2444, 1059, 2467, 2467, 2467, 2467, 1457, 2699, 2074, 3011, 2699, 1456, 2264, 1950, 1449, 2264, 3001, 1045, 3010, 1066, 2547, 2489, 1620, 2547, 1457, 2095, 2382, 1045, 1457, 1066, 2490, 2490, 2490, 2490, 2490, 1064, 1064, 1064, 1064, 1453, 1493, 1064, 1064, 1064, 1064, 1494, 1457, 1457, 1456, 2232, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1045, 3018, 1066, 2735, 3054, 2466, 1045, 3019, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 3042, 3055, 1064, 1064, 1064, 1064, 3056, 1456, 3057, 1064, 1064, 1064, 1064, 1045, 1457, 1066, 3013, 1045, 1457, 1066, 3058, 1045, 3015, 1066, 1457, 2418, 2468, 1045, 2469, 1066, 1064, 1064, 1064, 1064, 1045, 1453, 1066, 3059, 3060, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1045, 3061, 1066, 2471, 3062, 2470, 3003, 2474, 1457, 1045, 2473, 1066, 3017, 1045, 2472, 1066, 3020, 1045, 1457, 1066, 3063, 1045, 3065, 1066, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 3066, 3086, 3087, 2475, 2476, 1064, 1064, 1064, 1064, 2682, 2682, 2682, 2682, 1045, 2478, 1066, 2477, 1045, 3014, 1066, 3090, 1045, 3091, 1066, 2492, 2581, 2479, 3092, 2581, 2502, 1045, 3022, 1066, 2493, 2493, 2493, 2493, 2493, 2253, 2253, 2253, 2253, 2412, 2412, 2412, 2412, 3093, 2480, 1409, 1409, 1409, 1409, 3095, 3096, 2271, 1457, 2481, 3097, 2483, 2583, 2482, 2587, 2583, 1411, 2587, 3098, 3101, 2568, 2568, 2568, 2568, 2568, 2568, 1411, 2590, 2592, 2594, 2590, 2592, 2594, 2484, 1493, 2597, 3102, 2599, 2597, 1494, 2599, 2273, 1456, 2588, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 1457, 3025, 2591, 2593, 2595, 2601, 2605, 3103, 2601, 2605, 2598, 2606, 2600, 2609, 2606, 2612, 2609, 2619, 2612, 2621, 2619, 2623, 2621, 2625, 2623, 3104, 2625, 3105, 1456, 2305, 2630, 3106, 2305, 2630, 2602, 2288, 2684, 2684, 2684, 2684, 2607, 3107, 2610, 3109, 2293, 3111, 2620, 3026, 2622, 3112, 2624, 2634, 2626, 1868, 2634, 3113, 1453, 1493, 1976, 2308, 2635, 2638, 1494, 2635, 2638, 1456, 3115, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 1868, 2640, 2642, 2312, 2640, 2642, 2645, 2647, 2649, 2645, 2647, 2649, 2636, 2315, 2652, 2331, 2653, 2652, 2331, 2653, 2657, 2661, 2341, 2657, 2661, 2341, 2662, 3099, 1456, 2662, 2317, 2319, 2685, 3099, 3100, 2322, 2324, 2326, 2666, 2668, 3114, 2666, 2668, 2329, 1993, 2654, 1457, 3117, 3118, 2335, 2339, 2001, 3120, 3121, 2672, 2663, 1453, 2672, 2674, 2676, 2678, 2674, 2676, 2678, 3122, 3123, 2679, 2667, 2669, 2679, 1909, 3124, 3125, 2682, 2682, 2682, 2682, 2684, 2684, 2684, 2684, 3094, 3126, 2349, 3094, 3023, 3127, 2351, 2353, 2355, 1457, 1909, 3129, 3024, 1457, 2680, 1493, 2412, 2412, 2412, 2412, 1494, 2828, 3130, 1456, 2828, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 2767, 2755, 2755, 2755, 2755, 2757, 2757, 2757, 2757, 2768, 2768, 2768, 2768, 2768, 2774, 2774, 2774, 2774, 2464, 2464, 2464, 2464, 2791, 2791, 2791, 2791, 3100, 2830, 1456, 2756, 2830, 1059, 3045, 2758, 2715, 3045, 2467, 2467, 2467, 2467, 2809, 2809, 2809, 2809, 2710, 2837, 3131, 1045, 2837, 1066, 3132, 3133, 1064, 1064, 1064, 1064, 1453, 1493, 3134, 3136, 3046, 1045, 1494, 1066, 3137, 1456, 3138, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1045, 3135, 1066, 3139, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 3140, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 3141, 3135, 2588, 1456, 1045, 2748, 1066, 2591, 1045, 2593, 1066, 3145, 1045, 3108, 1066, 2595, 3108, 1045, 2792, 1066, 2598, 1045, 2600, 1066, 1064, 1064, 1064, 1064, 2602, 2607, 2610, 1453, 1064, 1064, 1064, 1064, 3145, 2620, 2622, 2793, 1064, 1064, 1064, 1064, 2794, 3116, 2624, 2795, 3116, 1045, 2626, 1066, 1064, 1064, 1064, 1064, 3154, 1045, 3119, 1066, 2816, 3119, 2796, 2816, 2636, 1045, 2822, 1066, 2654, 2822, 2797, 1064, 1064, 1064, 1064, 2547, 2663, 1045, 2547, 1066, 2859, 3154, 2798, 2859, 1064, 1064, 1064, 1064, 2667, 2817, 2799, 1064, 1064, 1064, 1064, 2502, 1045, 3168, 1066, 1064, 1064, 1064, 1064, 2669, 2232, 2680, 2800, 3185, 3186, 1045, 2801, 1066, 2806, 2806, 2806, 2806, 1045, 3187, 1066, 2807, 2807, 2807, 2807, 3168, 1045, 3188, 1066, 1064, 1064, 1064, 1064, 2811, 2811, 2811, 2811, 2581, 3157, 1045, 2581, 1066, 2803, 3189, 2812, 3190, 1045, 2802, 1066, 1409, 1409, 1409, 1409, 2804, 1045, 3191, 1066, 2805, 1409, 1409, 1409, 1409, 2583, 3157, 2894, 2583, 2271, 2894, 2568, 2568, 2568, 2568, 2568, 2568, 1411, 3193, 3194, 2568, 2568, 2568, 2568, 2568, 2568, 1411, 1493, 2808, 3195, 2895, 3197, 1494, 2895, 2273, 2898, 2588, 3158, 2898, 3198, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 2900, 2902, 2905, 2900, 2902, 2905, 2907, 2909, 2605, 2907, 2909, 2605, 2896, 2912, 3163, 3158, 2912, 2591, 2915, 2612, 2916, 2915, 2612, 2916, 2920, 2922, 3179, 2920, 2922, 2593, 2595, 2598, 3199, 3200, 3202, 2600, 2602, 2288, 2926, 3163, 2928, 2926, 2607, 2928, 2889, 3203, 3204, 2610, 2293, 2917, 3205, 3179, 2930, 2921, 2923, 2930, 1453, 2932, 2933, 2935, 2932, 2933, 2935, 2630, 3182, 2938, 2630, 2620, 2938, 2622, 2634, 2941, 2638, 2634, 2941, 2638, 2640, 2642, 1457, 2640, 2642, 2624, 2942, 1457, 1457, 2942, 2626, 2934, 2936, 3182, 2645, 1457, 2308, 2645, 2939, 2647, 1457, 1457, 2647, 2312, 2636, 2315, 1457, 1457, 2649, 2317, 2319, 2649, 1457, 2944, 2652, 2943, 2944, 2652, 2947, 2657, 1457, 2947, 2657, 2322, 2949, 3214, 2661, 2949, 2324, 2661, 2953, 2957, 2959, 2953, 2957, 2959, 2672, 2326, 2674, 2672, 3209, 2674, 2945, 2329, 3218, 3229, 2676, 2654, 2335, 2676, 3208, 2678, 3213, 2950, 2678, 2339, 3239, 3234, 3215, 2663, 2667, 2669, 3207, 2962, 3225, 2349, 2962, 2351, 2682, 2682, 2682, 2682, 1457, 3240, 3243, 2353, 2684, 2684, 2684, 2684, 2355, 2684, 2684, 2684, 2684, 2965, 2966, 2967, 2965, 1457, 1457, 3244, 2680, 2968, 2968, 2968, 2968, 2978, 2978, 2978, 2978, 2979, 2979, 2979, 2979, 2984, 2984, 2984, 2984, 2684, 2684, 2684, 2684, 2965, 2966, 2967, 2965, 2968, 2968, 2968, 2968, 2978, 2978, 2978, 2978, 3030, 1457, 3210, 3030, 3089, 1457, 3216, 3089, 3192, 1457, 1457, 3192, 3220, 1457, 2979, 2979, 2979, 2979, 2984, 2984, 2984, 2984, 2755, 2755, 2755, 2755, 1457, 2822, 3245, 3031, 2822, 1457, 1457, 2817, 3246, 1457, 3035, 3035, 3035, 3035, 1457, 3036, 2757, 2757, 2757, 2757, 2985, 1493, 3249, 1457, 2756, 3192, 1494, 3226, 3192, 1456, 2502, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 3254, 1457, 3257, 2758, 3037, 3037, 3037, 3037, 1457, 3038, 3039, 3039, 3039, 3039, 3221, 3223, 3217, 3021, 3050, 3050, 3050, 3050, 2774, 2774, 2774, 2774, 3259, 1457, 1456, 3064, 3064, 3064, 3064, 3222, 2991, 2809, 2809, 2809, 2809, 3128, 3128, 3128, 3128, 2965, 2966, 2967, 2965, 1457, 2791, 2791, 2791, 2791, 3067, 3067, 3067, 3067, 1453, 2996, 2996, 2996, 3232, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 1045, 2996, 1066, 2998, 1045, 3224, 1066, 3068, 3068, 3068, 3068, 3260, 2996, 2996, 2996, 2996, 2996, 1064, 1064, 1064, 1064, 3070, 3070, 3070, 3070, 3230, 3143, 3146, 2894, 3143, 3146, 2894, 1045, 3261, 1066, 1064, 1064, 1064, 1064, 2996, 1457, 2996, 1045, 3265, 1066, 3268, 1045, 2860, 1066, 1457, 2860, 1064, 1064, 1064, 1064, 3144, 3147, 2588, 2861, 3269, 1045, 3149, 1066, 1457, 3149, 3270, 2996, 2996, 2996, 1493, 1457, 1457, 3286, 3069, 1494, 3287, 1045, 1456, 1066, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 3231, 2896, 3071, 3227, 1064, 1064, 1064, 1064, 3074, 3074, 3074, 3074, 1064, 1064, 1064, 1064, 3078, 3078, 3078, 3078, 1620, 3233, 3072, 2817, 3079, 3079, 3079, 3079, 1456, 1045, 3288, 1066, 3235, 3075, 3236, 1066, 1457, 1045, 3289, 1066, 3099, 1045, 3291, 1066, 1064, 1064, 1064, 1064, 3027, 1045, 3292, 1066, 1064, 1064, 1064, 1064, 1453, 1064, 1064, 1064, 1064, 2806, 2806, 2806, 2806, 2807, 2807, 2807, 2807, 1045, 3293, 1066, 1064, 1064, 1064, 1064, 3294, 1045, 3073, 1066, 2898, 3076, 1045, 2898, 1066, 3077, 1045, 3237, 1066, 3295, 1045, 3248, 1066, 3084, 3084, 3084, 3084, 1045, 3296, 1066, 2811, 2811, 2811, 2811, 3085, 2900, 3297, 2902, 2900, 2591, 2902, 2812, 1493, 3081, 3299, 3300, 3150, 1494, 3080, 3150, 2905, 1837, 3303, 2905, 3082, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 2907, 3304, 2593, 2907, 2595, 3305, 3083, 2909, 3152, 2912, 2909, 3152, 2912, 3151, 3306, 2915, 3156, 2598, 2915, 3156, 3160, 3162, 2926, 3160, 3162, 2926, 3307, 3301, 2928, 2600, 2930, 2928, 2932, 2930, 3142, 2932, 2602, 3153, 2607, 3165, 3167, 3301, 3165, 3167, 2610, 2917, 3308, 1868, 1868, 2921, 2923, 2620, 3170, 3309, 3310, 3170, 1453, 2622, 3311, 2624, 2941, 2626, 3172, 2941, 3174, 3172, 3312, 3174, 2934, 2936, 2947, 3175, 3178, 2947, 3175, 3178, 2953, 3180, 3313, 2953, 3180, 2939, 2957, 2959, 3183, 2957, 2959, 3183, 3314, 2636, 3315, 2943, 2962, 2945, 3290, 2962, 3316, 3290, 1909, 2654, 3176, 2950, 1909, 3317, 3318, 2663, 3181, 2967, 2966, 2967, 2967, 2667, 2669, 3184, 2967, 2966, 2967, 2967, 3319, 3320, 3321, 2680, 2968, 2968, 2968, 2968, 2978, 2978, 2978, 2978, 3196, 3196, 3196, 3196, 2984, 2984, 2984, 2984, 3201, 3201, 3201, 3201, 1493, 3035, 3035, 3035, 3035, 1494, 3036, 3322, 1456, 3323, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 3219, 3219, 3219, 3219, 3219, 3219, 3196, 3196, 3196, 3196, 3228, 3228, 3228, 3228, 3201, 3201, 3201, 3201, 3242, 3324, 3325, 3242, 3250, 1457, 2896, 3250, 3045, 1457, 1456, 3045, 3336, 1457, 3037, 3037, 3037, 3037, 2917, 3038, 3039, 3039, 3039, 3039, 3247, 3247, 3247, 3247, 3206, 3031, 3089, 3094, 3251, 3089, 3094, 2921, 3046, 3336, 1453, 2996, 2996, 2996, 2923, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2934, 2996, 3252, 2998, 2817, 3252, 3050, 3050, 3050, 3050, 2936, 2939, 2996, 2996, 2996, 2996, 2996, 3298, 2943, 3253, 3298, 3253, 3253, 3253, 3253, 3253, 3253, 3255, 3255, 3255, 3255, 3256, 3256, 3256, 3256, 3258, 3258, 3258, 3258, 2996, 2945, 2996, 3266, 3266, 3266, 3266, 2950, 3262, 3262, 3262, 3262, 3267, 3267, 3267, 3267, 3064, 3064, 3064, 3064, 3353, 3067, 3067, 3067, 3067, 3355, 3271, 2996, 2996, 2996, 2996, 2996, 2996, 3263, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 1045, 2996, 1066, 3212, 2997, 3068, 3068, 3068, 3068, 3356, 3357, 2997, 2996, 2996, 2996, 2996, 2996, 1064, 1064, 1064, 1064, 3070, 3070, 3070, 3070, 3278, 3278, 3278, 3278, 3358, 1045, 3302, 1066, 3108, 3302, 3264, 3108, 3359, 3329, 2996, 2997, 2996, 1045, 3360, 1066, 3361, 1045, 3362, 1066, 3365, 1063, 1064, 1064, 1064, 1064, 3116, 3119, 3366, 3116, 3119, 3128, 3128, 3128, 3128, 3329, 3367, 2996, 2996, 2996, 1493, 3274, 3274, 3274, 3274, 1494, 3272, 1045, 1456, 1066, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1064, 1064, 1064, 1064, 3339, 3368, 3275, 3369, 1066, 3074, 3074, 3074, 3074, 1064, 1064, 1064, 1064, 3346, 1457, 1457, 3273, 3280, 3280, 3280, 3280, 1045, 3396, 1066, 1456, 3339, 3078, 3078, 3078, 3078, 3075, 3397, 1066, 1457, 1045, 3372, 1066, 1457, 3346, 3238, 3328, 1457, 3281, 3328, 1066, 3079, 3079, 3079, 3079, 1457, 3276, 1045, 1453, 1066, 3385, 1457, 3277, 1064, 1064, 1064, 1064, 3283, 3283, 3283, 3283, 1064, 1064, 1064, 1064, 3144, 1045, 3373, 1066, 3331, 3149, 3279, 3331, 3149, 3264, 1457, 3333, 3378, 1045, 3333, 1066, 3031, 1045, 3398, 1066, 3380, 1045, 3388, 1066, 3285, 3285, 3285, 3285, 3084, 3084, 3084, 3084, 3192, 3147, 2896, 3192, 3399, 3386, 3335, 3085, 3151, 3335, 1457, 3156, 3337, 1493, 3156, 3337, 3282, 1045, 1494, 1066, 3160, 3371, 3162, 3160, 3284, 3162, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 3340, 3165, 3153, 3340, 3165, 1457, 3167, 2917, 3338, 3167, 3342, 3170, 3172, 3342, 3170, 3172, 2921, 1457, 2923, 3174, 3345, 3178, 3174, 3345, 3178, 3348, 3383, 3400, 3348, 3341, 2934, 3349, 3401, 3352, 3349, 2936, 3352, 3403, 3408, 3343, 2939, 2943, 3354, 3354, 3354, 3354, 3326, 1620, 2945, 3176, 2950, 1457, 3374, 1457, 3181, 1457, 1453, 3409, 3376, 1457, 3350, 3410, 3184, 3196, 3196, 3196, 3196, 3363, 3363, 3363, 3363, 3363, 3363, 3363, 3363, 3364, 3364, 3364, 3364, 3201, 3201, 3201, 3201, 3354, 3354, 3354, 3354, 3375, 3375, 3375, 3375, 1457, 1457, 1457, 3377, 3414, 3384, 1457, 3387, 1457, 1457, 3415, 3379, 3402, 1457, 3219, 3219, 3219, 3219, 3219, 3219, 3381, 3381, 3381, 3381, 3363, 3363, 3363, 3363, 3363, 3363, 3363, 3363, 3364, 3364, 3364, 3364, 3419, 1457, 1457, 3421, 3435, 1457, 3436, 3392, 3437, 1457, 3440, 3242, 3441, 1457, 3242, 3389, 3390, 3197, 1493, 3391, 3442, 3393, 3250, 1494, 3290, 3250, 1456, 3290, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 3443, 3444, 3031, 3247, 3247, 3247, 3247, 3382, 3438, 3394, 3439, 3438, 3251, 3439, 3404, 3446, 3447, 3404, 3255, 3255, 3255, 3255, 3252, 3298, 3448, 3252, 3298, 3229, 1456, 3445, 3370, 3405, 3445, 3405, 3405, 3405, 3405, 3405, 3405, 3253, 3449, 3253, 3253, 3253, 3253, 3253, 3253, 3256, 3256, 3256, 3256, 3258, 3258, 3258, 3258, 1868, 1453, 2996, 2996, 2996, 3451, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 3455, 2996, 3406, 3212, 2997, 3406, 3278, 3278, 3278, 3278, 1909, 2997, 2996, 2996, 2996, 2996, 2996, 3302, 3457, 3253, 3302, 3253, 3253, 3253, 3253, 3253, 3253, 3459, 3460, 3411, 3411, 3411, 3411, 3262, 3262, 3262, 3262, 3461, 3144, 2996, 2997, 2996, 3266, 3266, 3266, 3266, 3147, 3416, 3416, 3416, 3416, 3151, 3450, 3452, 3412, 3450, 3452, 3153, 3263, 3267, 3267, 3267, 3267, 3176, 3453, 3181, 2996, 2996, 2996, 2996, 2996, 2996, 3417, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 3184, 2996, 3465, 3212, 2997, 3418, 3418, 3418, 3418, 3477, 3478, 2997, 2996, 2996, 2996, 2996, 2996, 3413, 3474, 3481, 3482, 3264, 3420, 3420, 3420, 3420, 3484, 3465, 3485, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 3486, 3487, 2996, 2997, 2996, 3488, 3474, 1457, 3274, 3274, 3274, 3274, 1457, 3424, 3424, 3424, 3424, 1045, 3520, 1066, 3521, 1045, 3524, 1066, 3278, 3278, 3278, 3278, 3526, 2996, 2996, 2996, 1493, 3275, 1457, 1066, 3454, 1494, 1063, 3454, 1456, 1457, 1456, 1457, 1456, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 3422, 1457, 1457, 3530, 3423, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 3280, 3280, 3280, 3280, 3492, 3428, 3428, 3428, 3428, 1457, 1457, 1456, 3413, 1045, 3496, 1066, 1457, 1045, 1457, 1066, 3531, 1045, 3532, 1066, 3501, 3281, 3507, 1066, 3494, 3395, 1063, 3429, 3429, 3429, 3429, 3283, 3283, 3283, 3283, 1453, 3533, 3433, 3433, 3433, 3433, 3285, 3285, 3285, 3285, 3456, 3534, 3426, 3456, 3495, 3425, 3545, 1045, 1726, 3430, 3546, 1045, 3509, 1066, 1457, 1493, 3427, 1045, 3502, 1066, 1494, 1045, 3504, 1066, 3434, 3434, 3434, 3434, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 3328, 1457, 3463, 3328, 3331, 3463, 1457, 3331, 3549, 1046, 3333, 3431, 3335, 3333, 3467, 3335, 3468, 3467, 3471, 3468, 3473, 3471, 3345, 3473, 3432, 3345, 1054, 1457, 3505, 3144, 3462, 3464, 3348, 3147, 3476, 3348, 1620, 3476, 3508, 3151, 1457, 3153, 3550, 3338, 3552, 3469, 3555, 3341, 3503, 3343, 3352, 3176, 1457, 3352, 1868, 3506, 1453, 3354, 3354, 3354, 3354, 3181, 1909, 3350, 3483, 3483, 3483, 3483, 3363, 3363, 3363, 3363, 3364, 3364, 3364, 3364, 3559, 3510, 3459, 3184, 3489, 3489, 3489, 3489, 3490, 3490, 3490, 3490, 1493, 3511, 3560, 3525, 3406, 1494, 3548, 3406, 1456, 3548, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 3483, 3483, 3483, 3483, 3489, 3489, 3489, 3489, 3490, 3490, 3490, 3490, 3404, 3536, 3561, 3404, 3438, 1457, 3338, 3438, 3527, 1457, 3537, 3527, 3439, 1457, 3341, 3439, 1456, 3405, 3565, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3343, 3405, 3405, 3405, 3405, 3405, 3405, 3350, 3571, 3572, 3491, 3424, 3424, 3424, 3424, 3575, 3578, 3565, 1453, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3497, 3479, 3497, 3498, 3497, 3416, 3416, 3416, 3416, 3580, 1457, 3497, 3479, 3479, 3479, 3479, 3479, 3411, 3411, 3411, 3411, 3428, 3428, 3428, 3428, 3535, 3535, 3535, 3535, 3551, 3417, 1457, 3551, 3418, 3418, 3418, 3418, 3596, 3512, 3479, 3497, 3479, 3412, 3420, 3420, 3420, 3420, 3424, 3424, 3424, 3424, 3428, 3428, 3428, 3428, 3434, 3434, 3434, 3434, 3547, 3547, 3547, 3547, 1457, 3602, 1457, 3479, 3479, 3479, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3499, 3480, 3499, 3500, 3499, 3413, 1046, 3553, 3431, 1457, 3553, 3499, 3480, 3480, 3480, 3480, 3480, 3538, 3538, 3538, 3538, 3432, 3582, 1054, 3539, 3539, 3539, 3539, 3429, 3429, 3429, 3429, 3433, 3433, 3433, 3433, 3584, 1457, 3603, 3480, 3499, 3480, 1045, 3445, 1066, 3556, 3445, 3450, 3556, 1045, 3450, 1066, 3606, 1045, 3610, 3430, 3586, 1045, 3614, 1066, 3454, 3452, 3456, 3454, 3452, 3456, 3480, 3480, 3480, 3512, 3512, 3512, 3453, 3617, 3512, 3512, 3512, 3513, 3512, 3512, 3512, 3512, 3514, 3512, 3512, 3515, 3587, 3515, 1457, 3515, 3516, 3516, 3516, 3516, 3516, 3516, 3517, 3512, 3512, 3512, 3512, 3512, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3512, 3515, 3512, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3512, 3512, 3519, 3522, 3522, 3522, 3523, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3523, 1064, 1064, 1064, 1064, 1457, 2136, 3522, 3522, 3523, 3522, 3522, 3522, 3541, 3541, 3541, 3541, 1064, 1064, 1064, 1064, 3557, 1457, 3628, 3557, 3629, 1045, 3564, 1066, 3467, 3564, 1457, 3467, 3558, 1493, 3522, 3523, 3522, 3542, 1494, 1066, 3630, 1045, 3567, 1066, 1620, 3567, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 3471, 3464, 3464, 3471, 3338, 1457, 3583, 3469, 3522, 3522, 3522, 3473, 3568, 3636, 3473, 3568, 3540, 3476, 3469, 3585, 3476, 3570, 3570, 3570, 3570, 3483, 3483, 3483, 3483, 3341, 1956, 1456, 3543, 3574, 3574, 3574, 3574, 3544, 1456, 3590, 3343, 3569, 3576, 3576, 3576, 3576, 3350, 1457, 3562, 3489, 3489, 3489, 3489, 3639, 1956, 1456, 1453, 3490, 3490, 3490, 3490, 1493, 1456, 3595, 3605, 3527, 1494, 1456, 3527, 1456, 3580, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 3570, 3570, 3570, 3570, 3574, 3574, 3574, 3574, 1457, 3591, 1456, 3599, 3576, 3576, 3576, 3576, 3548, 1457, 3649, 3548, 3623, 1457, 3551, 3623, 2038, 3551, 1457, 1457, 1456, 1457, 3604, 3604, 3604, 3604, 3608, 3608, 3608, 3608, 3609, 3609, 3609, 3609, 1457, 3579, 3535, 3535, 3535, 3535, 3615, 3615, 3615, 3615, 3547, 3547, 3547, 3547, 1453, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3588, 3573, 3588, 3589, 3588, 3538, 3538, 3538, 3538, 3648, 3641, 3588, 3573, 3573, 3573, 3573, 3573, 3611, 3611, 3611, 3611, 3539, 3539, 3539, 3539, 3619, 3619, 3619, 3619, 3653, 1045, 3658, 1066, 1064, 1064, 1064, 1064, 3662, 3663, 3573, 3588, 3573, 3612, 3665, 3624, 3666, 1045, 3624, 1066, 3553, 1063, 3627, 3553, 3557, 3627, 3616, 3557, 3667, 1045, 1457, 1066, 3637, 3637, 3637, 3637, 3558, 3573, 3573, 3573, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3593, 3577, 3593, 3594, 3593, 3613, 1064, 1064, 1064, 1064, 1457, 3593, 3577, 3577, 3577, 3577, 3577, 3564, 3632, 1457, 3564, 3632, 3618, 3567, 3635, 3644, 3567, 3635, 3668, 3536, 1457, 1045, 3674, 1066, 3576, 3576, 3576, 3576, 3657, 3577, 3593, 3577, 3637, 3637, 3637, 3637, 3464, 3633, 3675, 3642, 3659, 2038, 3469, 3569, 3604, 3604, 3604, 3604, 3569, 1457, 3679, 3643, 3623, 2038, 3680, 3623, 3577, 3577, 3577, 3512, 3512, 3512, 3620, 3645, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3596, 3512, 3512, 3512, 1457, 3512, 3649, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3512, 3512, 3512, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3512, 3512, 3519, 3512, 3512, 3512, 1457, 1620, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3596, 3512, 3512, 1956, 1456, 3653, 1457, 3608, 3608, 3608, 3608, 1456, 1956, 1456, 3692, 3512, 3512, 3512, 3512, 3512, 1456, 3609, 3609, 3609, 3609, 3619, 3619, 3619, 3619, 1956, 1456, 3600, 3651, 3619, 3619, 3619, 3619, 1456, 3624, 3596, 1456, 3624, 3512, 3627, 3512, 3673, 3627, 3678, 3673, 1456, 3678, 3694, 3695, 3690, 3664, 3637, 3637, 3637, 3637, 3697, 3635, 3698, 3699, 3635, 3673, 3514, 1456, 3673, 3633, 3512, 3512, 3512, 3512, 3512, 3512, 3600, 3633, 3512, 3512, 3512, 3513, 3512, 3512, 3512, 3512, 3600, 3512, 3512, 3515, 3569, 3515, 1457, 3515, 3516, 3516, 3516, 3516, 3516, 3516, 3517, 3512, 3512, 3512, 3512, 3512, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3512, 3515, 3512, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3512, 3512, 3519, 3512, 3512, 3512, 1457, 1457, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3596, 3512, 3512, 3600, 1457, 3692, 1457, 3541, 3541, 3541, 3541, 1457, 1620, 1457, 3601, 3512, 3512, 3512, 3512, 3512, 1064, 1064, 1064, 1064, 3615, 3615, 3615, 3615, 1457, 3600, 3717, 3723, 3542, 3685, 1066, 1493, 3611, 3611, 3611, 3611, 1494, 1457, 3512, 3710, 3512, 1045, 3684, 1066, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 3686, 3671, 3671, 3671, 3671, 3683, 3612, 1064, 1064, 1064, 1064, 1457, 1457, 3730, 3512, 3512, 3512, 1064, 1064, 1064, 1064, 3678, 3687, 3696, 3678, 3613, 3672, 1620, 1066, 3689, 1457, 1457, 1045, 3693, 1066, 1457, 1457, 3733, 3621, 3740, 3748, 3600, 1045, 3631, 1066, 3708, 3708, 3708, 3708, 3616, 3633, 3751, 3711, 3754, 3613, 3712, 1453, 1493, 3709, 3709, 3709, 3709, 1494, 1457, 1457, 1456, 3757, 1456, 1457, 1456, 2267, 2267, 2267, 2267, 2267, 2267, 1496, 3713, 3759, 3600, 3669, 3727, 3688, 3688, 3688, 3688, 3670, 3726, 3700, 3700, 3700, 3700, 3729, 1493, 3702, 3702, 3702, 3702, 1494, 1457, 1064, 1064, 1064, 1064, 3749, 1456, 1951, 1951, 1951, 1951, 1951, 1951, 1952, 3701, 3708, 3708, 3708, 3708, 3600, 3703, 3736, 1066, 3600, 3640, 3728, 1045, 1457, 1066, 3715, 3514, 1457, 1457, 1457, 1453, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3646, 3638, 3646, 3647, 3646, 3671, 3671, 3671, 3671, 3676, 1457, 3646, 3638, 3638, 3638, 3638, 3638, 3741, 1452, 1453, 3705, 3705, 3705, 3705, 3704, 3709, 3709, 3709, 3709, 3731, 3672, 3745, 1066, 3721, 3721, 3721, 3721, 3739, 3737, 3638, 3646, 3638, 1457, 1954, 1954, 1063, 3493, 3700, 3700, 3700, 3700, 3705, 3705, 3705, 3705, 1023, 1954, 3750, 3722, 1452, 1023, 3702, 3702, 3702, 3702, 1452, 3638, 3638, 3638, 3512, 3512, 3512, 3701, 3592, 3512, 3512, 3512, 3513, 3512, 3512, 3512, 3512, 3600, 3512, 3512, 3512, 3703, 3512, 1066, 3512, 3654, 3654, 3654, 3654, 3654, 3654, 3655, 3512, 3512, 3512, 3512, 3512, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3512, 3512, 3512, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3512, 3512, 3519, 3512, 3512, 3512, 2488, 2487, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3596, 3512, 3512, 3515, 2486, 3515, 1457, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3512, 3512, 3512, 3512, 3512, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3512, 3515, 3512, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3661, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3512, 3512, 3519, 3512, 3512, 3512, 2485, 2465, 3512, 3512, 3512, 3513, 3512, 3512, 3512, 3512, 3514, 3512, 3512, 3515, 2463, 3515, 1457, 3515, 3681, 3681, 3681, 3681, 3681, 3681, 3517, 3512, 3512, 3512, 3512, 3512, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3512, 3515, 3512, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3512, 3512, 3519, 3706, 3706, 3707, 3707, 3706, 3707, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3707, 3724, 3724, 3724, 3724, 1457, 2462, 3706, 3706, 3706, 3706, 3706, 3706, 3705, 3705, 3705, 3705, 3708, 3708, 3708, 3708, 3721, 3721, 3721, 3721, 2461, 1063, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3706, 3707, 3706, 3738, 3738, 3738, 3738, 3744, 3744, 3744, 3744, 3722, 3744, 3744, 3744, 3744, 3746, 3746, 3746, 3746, 1457, 2460, 3734, 3734, 3734, 3734, 3753, 3706, 3706, 3706, 3512, 3512, 3512, 1457, 2459, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3596, 3512, 3512, 3512, 3735, 3512, 1066, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3512, 3512, 3512, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3714, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3512, 3512, 3519, 3718, 3718, 3718, 3719, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 1064, 1064, 1064, 1064, 3600, 2458, 3718, 3718, 3718, 3718, 3718, 3718, 3742, 3742, 3742, 3742, 3734, 3734, 3734, 3734, 3744, 3744, 3744, 3744, 3600, 1045, 1457, 1066, 2457, 3747, 3747, 3747, 3747, 1060, 3718, 3720, 3718, 3743, 1021, 1021, 1021, 3735, 2456, 1066, 1060, 1063, 1457, 3742, 3742, 3742, 3742, 3758, 3758, 3758, 3758, 1094, 1007, 3407, 1021, 2455, 1094, 3718, 3718, 3718, 1007, 3755, 1189, 2454, 1457, 1007, 1207, 1189, 3743, 3725, 1321, 1207, 1360, 3407, 2453, 1321, 2452, 1360, 3752, 3756, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 472, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 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, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 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, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 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, 821, 821, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1018, 1018, 1018, 2451, 1083, 1083, 1083, 1091, 1091, 1091, 1130, 1130, 1130, 2450, 2449, 1018, 1018, 1136, 1136, 1136, 1018, 1026, 1026, 1026, 1083, 2448, 2447, 1091, 2446, 2445, 1130, 1290, 1290, 1290, 1309, 1309, 1309, 1136, 1431, 2442, 2441, 1026, 1320, 1431, 1431, 1026, 1030, 1030, 1030, 1455, 1320, 1290, 1455, 2440, 1309, 1320, 1354, 1455, 1354, 1524, 1524, 1030, 1030, 1354, 1524, 2439, 1030, 1036, 1036, 2109, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1065, 1065, 1065, 2436, 1418, 1418, 1418, 1530, 1530, 1530, 1618, 2436, 2435, 1584, 1650, 1065, 1065, 1065, 1584, 1650, 1065, 1088, 1088, 1088, 1418, 1618, 3528, 1530, 1671, 2434, 1618, 1658, 1658, 1671, 1658, 1703, 1088, 1088, 1088, 1658, 1703, 1088, 1113, 1113, 1710, 2431, 3528, 1113, 1113, 1710, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 2429, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 2428, 2427, 1113, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1118, 1118, 2424, 2423, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1120, 1120, 2422, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1128, 1128, 1128, 2420, 1642, 1642, 1642, 1021, 1021, 1021, 2419, 2381, 2380, 1023, 1094, 1128, 1128, 1007, 1023, 1094, 1128, 1134, 1134, 1134, 1642, 1007, 1800, 1021, 1804, 1189, 1007, 1800, 1452, 1804, 1189, 1207, 1134, 1134, 1452, 1884, 1207, 1134, 1137, 1137, 1884, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1153, 1153, 2379, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1159, 1159, 2378, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 2377, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1174, 2376, 2372, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1891, 1174, 1174, 1174, 1174, 1891, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 2371, 1174, 1174, 1174, 1174, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1190, 1190, 2370, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1197, 1197, 2367, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1261, 1083, 1083, 1083, 2366, 2365, 1091, 1091, 1091, 1261, 1130, 1130, 1130, 2364, 2363, 1261, 1136, 1136, 1136, 1261, 1261, 1083, 1261, 1288, 1288, 1288, 1091, 1320, 1321, 1360, 1130, 2362, 1937, 1321, 1360, 1320, 1136, 1937, 1288, 1288, 1320, 1524, 1524, 1288, 1293, 1293, 1524, 1293, 2361, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1294, 2360, 1294, 1294, 1294, 1294, 1294, 2359, 2358, 2357, 1294, 2269, 1294, 1298, 1298, 2266, 1298, 2265, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1299, 2263, 1299, 1299, 1299, 1299, 1299, 1290, 1290, 1290, 1299, 2262, 1299, 1307, 1307, 1307, 1309, 1309, 1309, 1354, 2261, 1354, 2260, 2259, 2258, 1431, 1354, 1290, 1307, 1307, 1431, 1431, 2257, 1307, 1355, 1355, 1309, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1383, 1383, 2256, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1393, 1393, 2255, 1393, 1432, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1394, 1939, 1394, 1394, 1394, 1394, 1394, 2251, 2250, 2249, 1394, 1922, 1394, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1403, 1403, 2247, 1403, 2246, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1404, 2245, 1404, 1404, 1404, 1404, 1404, 2244, 2243, 2242, 1404, 2241, 1404, 1406, 1406, 1909, 1406, 2240, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1407, 2239, 1407, 1407, 1407, 1407, 1407, 1261, 2236, 2235, 1407, 2234, 1407, 1412, 1412, 1412, 1261, 1418, 1418, 1418, 2075, 1909, 1261, 1455, 2233, 2075, 1455, 1261, 1412, 1412, 2230, 1455, 2229, 1412, 1416, 1416, 1416, 1418, 1938, 1530, 1530, 1530, 1584, 1938, 2228, 2227, 1938, 1584, 1618, 1416, 1416, 1642, 1642, 1642, 1416, 1430, 1430, 1430, 2226, 1530, 1430, 2096, 1650, 1618, 1430, 2194, 2096, 1650, 1618, 1658, 1658, 1642, 1658, 1671, 2189, 1430, 1433, 1658, 1671, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 2223, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 2222, 1433, 1433, 1433, 1433, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1456, 2221, 1456, 1456, 1456, 1456, 1456, 2220, 2219, 1703, 1456, 1868, 1456, 1497, 1703, 1710, 1497, 2215, 2213, 1497, 1710, 1497, 1497, 1497, 1497, 1497, 1868, 1800, 1804, 1497, 2212, 1497, 1800, 1804, 2211, 1497, 1522, 1522, 2210, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1528, 1528, 1528, 1021, 1021, 1021, 1884, 1891, 1937, 1938, 2209, 1884, 1891, 1937, 1938, 1528, 1528, 1938, 2207, 2075, 1528, 1536, 2206, 1021, 2075, 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, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1541, 1837, 2205, 2204, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1546, 2203, 2202, 2201, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1551, 1551, 2200, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 2199, 1551, 1551, 2096, 1551, 1551, 1551, 1551, 2096, 1551, 1551, 1551, 1551, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1563, 2198, 3529, 1563, 1563, 2197, 1563, 3529, 1563, 1563, 1563, 1563, 1563, 1026, 1026, 1026, 1563, 2196, 2192, 1083, 1083, 1083, 1563, 1566, 1566, 2191, 2188, 1658, 1658, 1566, 1658, 1566, 1566, 1026, 2187, 1658, 1566, 1567, 1567, 1083, 1567, 2186, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1568, 2185, 1568, 1568, 1568, 1568, 1568, 1849, 1839, 2183, 1568, 1831, 1568, 1570, 1570, 1191, 1570, 1820, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1571, 2181, 1571, 1571, 1571, 1571, 1571, 1091, 1091, 1091, 1571, 2180, 1571, 1575, 3607, 1575, 1575, 1575, 1575, 3607, 3529, 1815, 1814, 1575, 1577, 3529, 2177, 1091, 2174, 2174, 1577, 2173, 1577, 1577, 1577, 1577, 1577, 2170, 2170, 1577, 1577, 2169, 2168, 2167, 2166, 2113, 1577, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 2164, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1585, 2113, 2145, 2141, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 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, 1590, 2140, 2139, 2138, 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, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1595, 2137, 2134, 2133, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1600, 2130, 2129, 2126, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 2125, 1619, 1619, 1619, 1619, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1629, 1629, 2124, 1629, 2119, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630, 2119, 1630, 1630, 1630, 1630, 1630, 2118, 2117, 2116, 1630, 2115, 1630, 1632, 1632, 1028, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1640, 1640, 1640, 1658, 1658, 2113, 1658, 2112, 2111, 1658, 1658, 1658, 1658, 2110, 2104, 1640, 1640, 1658, 2103, 1673, 1640, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1661, 1661, 1003, 1661, 1673, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1662, 1130, 1130, 1130, 1673, 2102, 1662, 2101, 1662, 1662, 1662, 1662, 1662, 2100, 2099, 1662, 1662, 1136, 1136, 1136, 1652, 1130, 1662, 1663, 1290, 1290, 1290, 3407, 1652, 1663, 1003, 1663, 1663, 1663, 1663, 1663, 1652, 1136, 1663, 1663, 3407, 1663, 3407, 1652, 1290, 1663, 1664, 3407, 1664, 1664, 1664, 1664, 1664, 1003, 1639, 2092, 1664, 2091, 1664, 1666, 1666, 1620, 1666, 1620, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1667, 1620, 1667, 1667, 1667, 1667, 1667, 1003, 1620, 1620, 1667, 2088, 1667, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 2087, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 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, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1681, 1681, 2086, 1681, 2083, 1681, 1681, 2082, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 2081, 1681, 1681, 1681, 1681, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1686, 1686, 2080, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1687, 1687, 2079, 1687, 1562, 1687, 1687, 1561, 2077, 2076, 1687, 1687, 1687, 1687, 1687, 1527, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1690, 1690, 1523, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1692, 1523, 2071, 1457, 2039, 1692, 1692, 1453, 2037, 2036, 1692, 1692, 1692, 1692, 1692, 2035, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 2032, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1708, 1708, 1708, 1309, 1309, 1309, 2031, 2025, 1958, 1457, 1418, 1418, 1418, 1530, 1530, 1530, 1708, 1642, 1642, 1642, 1708, 1457, 1948, 1309, 1947, 3528, 1708, 1018, 1018, 1018, 1418, 1945, 3581, 1530, 1026, 1026, 1026, 1642, 3528, 3581, 3528, 3650, 1018, 1018, 1941, 3528, 3581, 1018, 1026, 1026, 1026, 3581, 1940, 3581, 1026, 3650, 1939, 1432, 3581, 1432, 3650, 1415, 1931, 1930, 1929, 1397, 1397, 1003, 1026, 1397, 1397, 1928, 1026, 1030, 1030, 1030, 1926, 1384, 1376, 1376, 1917, 1916, 1362, 1362, 1003, 1362, 1362, 1353, 1030, 1030, 1915, 1352, 1913, 1030, 1718, 1718, 1912, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1741, 1741, 1741, 1908, 1907, 1904, 1903, 1902, 1901, 1897, 1319, 1895, 1894, 1893, 1318, 1741, 1741, 1316, 1306, 1887, 1741, 1749, 1749, 1749, 1886, 1885, 1287, 1880, 1852, 1879, 1878, 1217, 1877, 1850, 1845, 1840, 1876, 1749, 1875, 1832, 1872, 1749, 1867, 1866, 1861, 1228, 1233, 1749, 1065, 1065, 1065, 1858, 1233, 1846, 1855, 1848, 1847, 1844, 1843, 1842, 1841, 1838, 1833, 1065, 1065, 1065, 1830, 1191, 1065, 1771, 1771, 1771, 1191, 1191, 1191, 1191, 1186, 1818, 1817, 1179, 1168, 1168, 1003, 1168, 1771, 1168, 1771, 1164, 1815, 1771, 1773, 1773, 1773, 1154, 1154, 1814, 1805, 1133, 1127, 1796, 1788, 1119, 1785, 1784, 1783, 1782, 1773, 1109, 1108, 1107, 1773, 1106, 1086, 1751, 1738, 1737, 1773, 1088, 1088, 1088, 1736, 1735, 1730, 1729, 1728, 1725, 1063, 1717, 1716, 1715, 1712, 1017, 1088, 1088, 1088, 1006, 1003, 1088, 1776, 1776, 1776, 1702, 1233, 1698, 1003, 1697, 1003, 1003, 1003, 1691, 1003, 1286, 1673, 1776, 1673, 1776, 1670, 1669, 1776, 1113, 1113, 1652, 1652, 1639, 1113, 1113, 1628, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1620, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1620, 1003, 1113, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1118, 1118, 1565, 1003, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1789, 1789, 1565, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1795, 1795, 1562, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1798, 1798, 1798, 1561, 1560, 1535, 1534, 1531, 1454, 1003, 1527, 1523, 3760, 1457, 1454, 1453, 1798, 1003, 1439, 1438, 1798, 1432, 1003, 1003, 1415, 1003, 1798, 1128, 1128, 1128, 1397, 1397, 1392, 1003, 1279, 1003, 1279, 1377, 1003, 1368, 1003, 1362, 1128, 1128, 1362, 1353, 1286, 1128, 1802, 1802, 1802, 1003, 1352, 1003, 1179, 1003, 1319, 1003, 1318, 1317, 1316, 1306, 1303, 1286, 1802, 1003, 1287, 1286, 1802, 1003, 1179, 1003, 1237, 1003, 1802, 1134, 1134, 1134, 1204, 1003, 1191, 1003, 1183, 1182, 1181, 1179, 1168, 1168, 1164, 1154, 1134, 1134, 1003, 1139, 1003, 1134, 1806, 1806, 1150, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1809, 1809, 1003, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1159, 1159, 1139, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1138, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1174, 1003, 1133, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1127, 1174, 1174, 1174, 1174, 1124, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1121, 1174, 1174, 1174, 1174, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1190, 1190, 1119, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1197, 1197, 1003, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1112, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1003, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1261, 1109, 1108, 1107, 1106, 1003, 1003, 1086, 1063, 1261, 1059, 1037, 1035, 1003, 1028, 1261, 1017, 1012, 1003, 1261, 1261, 1003, 1261, 1882, 1882, 1882, 1006, 1003, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1882, 3760, 3760, 3760, 1882, 3760, 3760, 3760, 3760, 3760, 1882, 1288, 1288, 1288, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1288, 1288, 3760, 3760, 3760, 1288, 1293, 1293, 3760, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1294, 3760, 1294, 1294, 1294, 1294, 1294, 3760, 3760, 3760, 1294, 3760, 1294, 1298, 1298, 3760, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1299, 3760, 1299, 1299, 1299, 1299, 1299, 3760, 3760, 3760, 1299, 3760, 1299, 1889, 1889, 1889, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1889, 3760, 3760, 3760, 1889, 3760, 3760, 3760, 3760, 3760, 1889, 1307, 1307, 1307, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1307, 1307, 3760, 3760, 3760, 1307, 1355, 1355, 3760, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 3760, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1383, 1383, 3760, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 3760, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 3760, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1393, 1393, 3760, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1394, 3760, 1394, 1394, 1394, 1394, 1394, 3760, 3760, 3760, 1394, 3760, 1394, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1403, 1403, 3760, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1404, 3760, 1404, 1404, 1404, 1404, 1404, 3760, 3760, 3760, 1404, 3760, 1404, 1406, 1406, 3760, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1407, 3760, 1407, 1407, 1407, 1407, 1407, 3760, 3760, 3760, 1407, 3760, 1407, 1412, 1412, 1412, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1412, 1412, 3760, 3760, 3760, 1412, 1933, 1933, 1933, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1933, 1933, 3760, 3760, 3760, 1933, 1935, 1935, 1935, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1935, 3760, 3760, 3760, 1935, 3760, 3760, 3760, 3760, 3760, 1935, 1416, 1416, 1416, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1416, 1416, 3760, 3760, 3760, 1416, 1430, 1430, 1430, 3760, 3760, 1430, 3760, 3760, 3760, 1430, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1430, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 1955, 3760, 1955, 1955, 1955, 1955, 1955, 3760, 3760, 3760, 1955, 3760, 1955, 1957, 3760, 1957, 1957, 1957, 1957, 1957, 3760, 3760, 3760, 1957, 3760, 1957, 3760, 3760, 3760, 1957, 2038, 3760, 3760, 3760, 3760, 2038, 3760, 3760, 2038, 2038, 3760, 2038, 3760, 3760, 3760, 3760, 2038, 2038, 2038, 3760, 2038, 1497, 3760, 3760, 1497, 3760, 3760, 1497, 3760, 1497, 1497, 1497, 1497, 1497, 3760, 3760, 3760, 1497, 3760, 1497, 3760, 3760, 3760, 1497, 1522, 1522, 3760, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 2073, 2073, 2073, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2073, 3760, 3760, 3760, 2073, 3760, 3760, 3760, 3760, 3760, 2073, 1528, 1528, 1528, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1528, 1528, 3760, 3760, 3760, 1528, 1536, 3760, 3760, 3760, 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, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1541, 3760, 3760, 3760, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1546, 3760, 3760, 3760, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1563, 3760, 3760, 1563, 1563, 3760, 1563, 3760, 1563, 1563, 1563, 1563, 1563, 3760, 3760, 3760, 1563, 3760, 3760, 3760, 3760, 3760, 1563, 1566, 1566, 3760, 3760, 3760, 3760, 1566, 3760, 1566, 1566, 3760, 3760, 3760, 1566, 1567, 1567, 3760, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1568, 3760, 1568, 1568, 1568, 1568, 1568, 3760, 3760, 3760, 1568, 3760, 1568, 1570, 1570, 3760, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1571, 3760, 1571, 1571, 1571, 1571, 1571, 3760, 3760, 3760, 1571, 3760, 1571, 1575, 3760, 1575, 1575, 1575, 1575, 3760, 3760, 3760, 3760, 1575, 1577, 3760, 3760, 3760, 3760, 3760, 1577, 3760, 1577, 1577, 1577, 1577, 1577, 3760, 3760, 1577, 1577, 3760, 3760, 3760, 3760, 3760, 1577, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 3760, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1585, 3760, 3760, 3760, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 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, 1590, 3760, 3760, 3760, 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, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1595, 3760, 3760, 3760, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1600, 3760, 3760, 3760, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1629, 1629, 3760, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630, 3760, 1630, 1630, 1630, 1630, 1630, 3760, 3760, 3760, 1630, 3760, 1630, 1632, 1632, 3760, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 2094, 2094, 2094, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2094, 3760, 3760, 3760, 2094, 3760, 3760, 3760, 3760, 3760, 2094, 1640, 1640, 1640, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1640, 1640, 3760, 3760, 3760, 1640, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1661, 1661, 3760, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1662, 3760, 3760, 3760, 3760, 3760, 1662, 3760, 1662, 1662, 1662, 1662, 1662, 3760, 3760, 1662, 1662, 3760, 3760, 3760, 3760, 3760, 1662, 1663, 3760, 3760, 3760, 3760, 3760, 1663, 3760, 1663, 1663, 1663, 1663, 1663, 3760, 3760, 1663, 1663, 3760, 1663, 3760, 3760, 3760, 1663, 1664, 3760, 1664, 1664, 1664, 1664, 1664, 3760, 3760, 3760, 1664, 3760, 1664, 1666, 1666, 3760, 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, 1667, 3760, 1667, 1667, 1667, 1667, 1667, 3760, 3760, 3760, 1667, 3760, 1667, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 3760, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 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, 1681, 1681, 3760, 1681, 3760, 1681, 1681, 3760, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 3760, 1681, 1681, 1681, 1681, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1687, 1687, 3760, 1687, 3760, 1687, 1687, 3760, 3760, 3760, 1687, 1687, 1687, 1687, 1687, 3760, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 2105, 2105, 3760, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 1692, 3760, 3760, 3760, 3760, 1692, 1692, 3760, 3760, 3760, 1692, 1692, 1692, 1692, 1692, 3760, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1708, 1708, 1708, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1708, 3760, 3760, 3760, 1708, 3760, 3760, 3760, 3760, 3760, 1708, 1018, 1018, 1018, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1018, 1018, 3760, 3760, 3760, 1018, 1741, 1741, 1741, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1741, 1741, 3760, 3760, 3760, 1741, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 3760, 2142, 2142, 2142, 2142, 3760, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 3760, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 1749, 1749, 1749, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1749, 3760, 3760, 3760, 1749, 3760, 3760, 3760, 3760, 3760, 1749, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 1771, 1771, 1771, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1771, 3760, 1771, 3760, 3760, 1771, 1773, 1773, 1773, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1773, 3760, 3760, 3760, 1773, 3760, 3760, 3760, 3760, 3760, 1773, 1088, 1088, 1088, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1088, 1088, 1088, 3760, 3760, 1088, 1776, 1776, 1776, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1776, 3760, 1776, 3760, 3760, 1776, 1795, 1795, 3760, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1798, 1798, 1798, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1798, 3760, 3760, 3760, 1798, 3760, 3760, 3760, 3760, 3760, 1798, 1128, 1128, 1128, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1128, 1128, 3760, 3760, 3760, 1128, 1802, 1802, 1802, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1802, 3760, 3760, 3760, 1802, 3760, 3760, 3760, 3760, 3760, 1802, 1134, 1134, 1134, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1134, 1134, 3760, 3760, 3760, 1134, 1809, 1809, 3760, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1174, 3760, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1197, 1197, 3760, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1882, 1882, 1882, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1882, 3760, 3760, 3760, 1882, 3760, 3760, 3760, 3760, 3760, 1882, 1288, 1288, 1288, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1288, 1288, 3760, 3760, 3760, 1288, 1889, 1889, 1889, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1889, 3760, 3760, 3760, 1889, 3760, 3760, 3760, 3760, 3760, 1889, 1307, 1307, 1307, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1307, 1307, 3760, 3760, 3760, 1307, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 3760, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1920, 1920, 3760, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 3760, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 2254, 2254, 2254, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2254, 3760, 3760, 3760, 2254, 1933, 1933, 1933, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1933, 1933, 3760, 3760, 3760, 1933, 1935, 1935, 1935, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1935, 3760, 3760, 3760, 1935, 3760, 3760, 3760, 3760, 3760, 1935, 1416, 1416, 1416, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1416, 1416, 3760, 3760, 3760, 1416, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 1955, 3760, 1955, 1955, 1955, 1955, 1955, 3760, 3760, 3760, 1955, 3760, 1955, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 2304, 2304, 3760, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2330, 2330, 3760, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2340, 2340, 3760, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2038, 3760, 3760, 3760, 3760, 2038, 3760, 3760, 2038, 2038, 3760, 2038, 3760, 3760, 3760, 3760, 2038, 2038, 2038, 3760, 2038, 1957, 3760, 1957, 1957, 1957, 1957, 1957, 3760, 3760, 3760, 1957, 3760, 1957, 3760, 3760, 3760, 1957, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 1497, 3760, 3760, 1497, 3760, 3760, 1497, 3760, 1497, 1497, 1497, 1497, 1497, 3760, 3760, 3760, 1497, 3760, 1497, 3760, 3760, 3760, 1497, 2073, 2073, 2073, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2073, 3760, 3760, 3760, 2073, 3760, 3760, 3760, 3760, 3760, 2073, 1528, 1528, 1528, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1528, 1528, 3760, 3760, 3760, 1528, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 2094, 2094, 2094, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2094, 3760, 3760, 3760, 2094, 3760, 3760, 3760, 3760, 3760, 2094, 1640, 1640, 1640, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1640, 1640, 3760, 3760, 3760, 1640, 1060, 1060, 1060, 3760, 3760, 3760, 3760, 3760, 3760, 1060, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1060, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 1809, 1809, 3760, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1174, 3760, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 2546, 2546, 3760, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2254, 2254, 2254, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2254, 3760, 3760, 3760, 2254, 2569, 2569, 2569, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2569, 2569, 3760, 3760, 3760, 2569, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 2580, 2580, 3760, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2582, 2582, 3760, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2604, 2604, 3760, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2611, 2611, 3760, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2304, 2304, 3760, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2629, 2629, 3760, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2633, 2633, 3760, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2637, 2637, 3760, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2639, 2639, 3760, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2641, 2641, 3760, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2644, 2644, 3760, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2646, 2646, 3760, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2648, 2648, 3760, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2651, 2651, 3760, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2330, 2330, 3760, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2656, 2656, 3760, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2660, 2660, 3760, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2340, 2340, 3760, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2671, 2671, 3760, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2673, 2673, 3760, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2675, 2675, 3760, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2677, 2677, 3760, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 1497, 3760, 3760, 1497, 3760, 3760, 1497, 3760, 1497, 1497, 1497, 1497, 1497, 3760, 3760, 3760, 1497, 3760, 1497, 3760, 3760, 3760, 1497, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1060, 1060, 1060, 3760, 3760, 3760, 3760, 3760, 3760, 1060, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1060, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 1809, 1809, 3760, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 1174, 3760, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 2821, 2821, 3760, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 3760, 2825, 2825, 2825, 2825, 3760, 2825, 2825, 2825, 2825, 2825, 2825, 2546, 2546, 3760, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2569, 2569, 2569, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 2569, 2569, 3760, 3760, 3760, 2569, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 2580, 2580, 3760, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2582, 2582, 3760, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2582, 2893, 2893, 3760, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2897, 2897, 3760, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2899, 2899, 3760, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2901, 2901, 3760, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2904, 2904, 3760, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2906, 2906, 3760, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2908, 2908, 3760, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2604, 2604, 3760, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2911, 2911, 3760, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2914, 2914, 3760, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2611, 2611, 3760, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2611, 2925, 2925, 3760, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2927, 2927, 3760, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2929, 2929, 3760, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2931, 2931, 3760, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2629, 2629, 3760, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2629, 2633, 2633, 3760, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2940, 2940, 3760, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2637, 2637, 3760, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2639, 2639, 3760, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2641, 2641, 3760, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2644, 2644, 3760, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2646, 2646, 3760, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2646, 2648, 2648, 3760, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2651, 2651, 3760, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2946, 2946, 3760, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2656, 2656, 3760, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2656, 2660, 2660, 3760, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 2952, 2952, 3760, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2956, 2956, 3760, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2958, 2958, 3760, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2671, 2671, 3760, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2673, 2673, 3760, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2675, 2675, 3760, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2677, 2677, 3760, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2961, 2961, 3760, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 2997, 2997, 3760, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 1497, 3760, 3760, 1497, 3760, 3760, 1497, 3760, 1497, 1497, 1497, 1497, 1497, 3760, 3760, 3760, 1497, 3760, 1497, 3760, 3760, 3760, 1497, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 1809, 1809, 3760, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 3088, 3088, 3760, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 1174, 3760, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 2821, 2821, 3760, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3760, 3110, 3110, 3110, 3110, 3760, 3110, 3110, 3110, 3110, 3110, 3110, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 2893, 2893, 3760, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 3148, 3148, 3760, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 2897, 2897, 3760, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2897, 2899, 2899, 3760, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2901, 2901, 3760, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2904, 2904, 3760, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2906, 2906, 3760, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2906, 2908, 2908, 3760, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2911, 2911, 3760, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2914, 2914, 3760, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 3155, 3155, 3760, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3159, 3159, 3760, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3161, 3161, 3760, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 2925, 2925, 3760, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2927, 2927, 3760, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2929, 2929, 3760, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2931, 2931, 3760, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 3164, 3164, 3760, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3166, 3166, 3760, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3169, 3169, 3760, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 2940, 2940, 3760, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 3171, 3171, 3760, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3173, 3173, 3760, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 2946, 2946, 3760, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 2946, 3177, 3177, 3760, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 2952, 2952, 3760, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2956, 2956, 3760, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2958, 2958, 3760, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2961, 2961, 3760, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 2996, 2996, 3760, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2997, 2997, 3760, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 3211, 3211, 3760, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 1497, 3760, 3760, 1497, 3760, 3760, 1497, 3760, 1497, 1497, 1497, 1497, 1497, 3760, 3760, 3760, 1497, 3760, 1497, 3760, 3760, 3760, 1497, 3241, 3241, 3760, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 3088, 3088, 3760, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 1174, 3760, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 3327, 3327, 3760, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3330, 3330, 3760, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3148, 3148, 3760, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3332, 3332, 3760, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3334, 3334, 3760, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3155, 3155, 3760, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3159, 3159, 3760, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3161, 3161, 3760, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3164, 3164, 3760, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3166, 3166, 3760, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3169, 3169, 3760, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3171, 3171, 3760, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3173, 3173, 3760, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3344, 3344, 3760, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3177, 3177, 3760, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3347, 3347, 3760, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3351, 3351, 3760, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 3211, 3211, 3760, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 1497, 3760, 3760, 1497, 3760, 3760, 1497, 3760, 1497, 1497, 1497, 1497, 1497, 3760, 3760, 3760, 1497, 3760, 1497, 3760, 3760, 3760, 1497, 3241, 3241, 3760, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 1174, 3760, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3760, 1174, 1174, 1174, 1174, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 3327, 3327, 3760, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3327, 3330, 3330, 3760, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3332, 3332, 3760, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3334, 3334, 3760, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3466, 3466, 3760, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3470, 3470, 3760, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3472, 3472, 3760, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3344, 3344, 3760, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3347, 3347, 3760, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3475, 3475, 3760, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3351, 3351, 3760, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3351, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3760, 3479, 3479, 3479, 3479, 3760, 3479, 3479, 3479, 3479, 3479, 3479, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3760, 3480, 3480, 3480, 3480, 3760, 3480, 3480, 3480, 3480, 3480, 3480, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3760, 3523, 3523, 3523, 3523, 3760, 3523, 3523, 3523, 3523, 3523, 3523, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3760, 3554, 3554, 3554, 3554, 3760, 3554, 3554, 3554, 3554, 3554, 3554, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 3563, 3563, 3760, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3466, 3466, 3760, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3566, 3566, 3760, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3470, 3470, 3760, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3472, 3472, 3760, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3472, 3475, 3475, 3760, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3760, 3573, 3573, 3573, 3573, 3760, 3573, 3573, 3573, 3573, 3573, 3573, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3760, 3577, 3577, 3577, 3577, 3760, 3577, 3577, 3577, 3577, 3577, 3577, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 1955, 3760, 1955, 1955, 1955, 1955, 1955, 3760, 3760, 3760, 1955, 3760, 1955, 3512, 3512, 3760, 3760, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3760, 3512, 3760, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3598, 3760, 3760, 3760, 3760, 3598, 3760, 3760, 3598, 3598, 3760, 3598, 3760, 3760, 3760, 3760, 3598, 3598, 3598, 3760, 3598, 3515, 3515, 3760, 3760, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3760, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 3760, 1551, 1551, 1551, 1551, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 1065, 1065, 1065, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1065, 1065, 1065, 3760, 3760, 1065, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3760, 3622, 3622, 3622, 3622, 3760, 3622, 3622, 3622, 3622, 3622, 3622, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3760, 3625, 3625, 3625, 3625, 3760, 3625, 3625, 3625, 3625, 3625, 3625, 3626, 3626, 3760, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 1433, 3760, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 3760, 1433, 1433, 1433, 1433, 1953, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 1953, 1953, 3760, 3760, 3760, 1953, 3760, 3760, 3760, 3760, 3760, 1953, 3563, 3563, 3760, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3566, 3566, 3760, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3634, 3634, 3760, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3638, 3760, 3638, 3638, 3638, 3638, 3760, 3638, 3638, 3638, 3638, 3638, 3638, 2268, 3760, 3760, 2268, 3760, 3760, 2268, 3760, 2268, 2268, 2268, 2268, 2268, 3760, 3760, 3760, 2268, 3760, 2268, 3760, 3760, 3760, 2268, 1456, 3760, 1456, 1456, 1456, 1456, 1456, 3760, 3760, 3760, 1456, 3760, 1456, 1955, 3760, 1955, 1955, 1955, 1955, 1955, 3760, 3760, 3760, 1955, 3760, 1955, 3652, 3760, 3760, 3760, 3760, 3652, 3760, 3760, 3652, 3652, 3760, 3652, 3760, 3760, 3760, 3760, 3760, 3652, 3652, 3760, 3652, 3598, 3760, 3760, 3760, 3760, 3598, 3760, 3760, 3598, 3598, 3760, 3598, 3760, 3760, 3760, 3760, 3598, 3598, 3598, 3760, 3598, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 3760, 1619, 1619, 1619, 1619, 3677, 3677, 3760, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3677, 3512, 3512, 3760, 3760, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3760, 3512, 3760, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3691, 3760, 3760, 3760, 3760, 3691, 3760, 3760, 3691, 3691, 3760, 3691, 3760, 3760, 3760, 3760, 3760, 3691, 3691, 3760, 3691, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3760, 3707, 3707, 3707, 3707, 3760, 3707, 3707, 3707, 3707, 3707, 3707, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3760, 3716, 3716, 3716, 3716, 3760, 3716, 3716, 3716, 3716, 3716, 3716, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3760, 3720, 3720, 3720, 3720, 3760, 3720, 3720, 3720, 3720, 3720, 3720, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3760, 3732, 3732, 3732, 3732, 3760, 3732, 3732, 3732, 3732, 3732, 3732, 279, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760 } ; static yyconst short int yy_chk[28946] = { 0, 0, 1, 0, 1, 1, 2, 305, 2, 2, 305, 306, 306, 306, 306, 0, 339, 284, 290, 297, 339, 1, 284, 290, 297, 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, 3, 3, 3, 3, 5, 534, 5, 5, 6, 2173, 6, 6, 7, 7, 7, 7, 7, 5, 7, 456, 456, 6, 9, 5, 9, 9, 10, 6, 10, 10, 534, 7, 8, 8, 8, 8, 8, 145, 8, 320, 145, 9, 320, 475, 475, 10, 27, 27, 27, 27, 27, 8, 28, 28, 28, 28, 28, 31, 31, 31, 31, 31, 27, 327, 145, 27, 327, 7, 28, 31, 31, 28, 326, 31, 342, 2178, 31, 326, 791, 342, 360, 360, 360, 360, 477, 477, 791, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 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, 13, 13, 13, 13, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 19, 2041, 19, 19, 134, 307, 19, 134, 307, 17, 338, 19, 19, 338, 18, 563, 19, 134, 20, 19, 20, 20, 134, 371, 20, 2180, 375, 19, 371, 20, 20, 375, 563, 39, 20, 39, 39, 20, 32, 32, 32, 32, 32, 2041, 889, 20, 33, 889, 33, 33, 32, 32, 39, 485, 32, 485, 563, 32, 33, 33, 61, 17, 61, 61, 858, 33, 18, 17, 479, 338, 479, 34, 18, 34, 34, 62, 911, 62, 62, 61, 911, 19, 479, 34, 34, 307, 388, 39, 394, 39, 34, 388, 858, 394, 62, 366, 366, 366, 366, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 29, 2181, 29, 29, 639, 398, 30, 29, 30, 30, 398, 639, 29, 30, 382, 382, 382, 382, 30, 29, 40, 894, 40, 40, 1220, 30, 29, 29, 37, 382, 37, 37, 30, 30, 38, 1220, 38, 38, 894, 40, 37, 43, 480, 43, 43, 480, 38, 37, 41, 41, 41, 41, 41, 38, 41, 480, 37, 2054, 680, 41, 43, 51, 38, 51, 51, 680, 495, 41, 43, 495, 313, 313, 313, 313, 40, 51, 40, 548, 410, 495, 51, 29, 44, 410, 44, 44, 725, 30, 35, 35, 35, 35, 35, 725, 42, 42, 42, 42, 42, 415, 42, 44, 548, 425, 415, 42, 449, 35, 425, 44, 43, 449, 2054, 42, 35, 35, 51, 35, 452, 850, 49, 452, 49, 49, 452, 53, 49, 53, 53, 41, 41, 49, 1011, 896, 49, 52, 455, 52, 52, 49, 54, 455, 54, 54, 53, 850, 1011, 35, 464, 52, 313, 44, 564, 464, 52, 299, 299, 299, 299, 54, 663, 35, 663, 35, 59, 35, 59, 59, 1047, 35, 36, 36, 36, 36, 36, 42, 42, 564, 1047, 55, 299, 55, 55, 59, 60, 55, 60, 60, 2182, 36, 52, 503, 896, 55, 503, 470, 36, 36, 55, 36, 470, 49, 49, 60, 503, 638, 670, 53, 670, 63, 63, 63, 63, 63, 65, 2183, 65, 65, 66, 59, 66, 66, 54, 63, 293, 293, 293, 293, 63, 36, 638, 476, 488, 65, 55, 299, 476, 66, 717, 60, 717, 483, 293, 36, 488, 36, 483, 36, 902, 488, 902, 36, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 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, 47, 47, 47, 47, 50, 50, 50, 50, 50, 913, 50, 50, 1239, 913, 56, 50, 56, 56, 50, 1239, 56, 499, 57, 50, 57, 57, 499, 606, 56, 58, 606, 58, 58, 56, 504, 67, 57, 67, 67, 504, 606, 57, 68, 58, 68, 68, 1149, 1149, 58, 64, 64, 64, 64, 64, 67, 505, 383, 383, 383, 383, 505, 68, 69, 64, 69, 69, 1156, 1156, 64, 56, 70, 383, 70, 70, 69, 69, 71, 71, 71, 71, 71, 69, 70, 70, 1016, 50, 50, 1016, 2185, 70, 71, 294, 294, 294, 294, 71, 314, 314, 314, 314, 511, 524, 851, 57, 71, 511, 524, 71, 2186, 294, 58, 72, 72, 72, 72, 72, 67, 67, 73, 73, 73, 73, 73, 68, 68, 72, 75, 851, 75, 75, 72, 71, 74, 74, 74, 74, 74, 73, 525, 72, 2187, 1019, 72, 525, 1019, 75, 73, 520, 73, 520, 76, 74, 76, 76, 75, 77, 75, 77, 77, 532, 74, 520, 74, 918, 532, 918, 72, 77, 77, 76, 78, 2189, 78, 78, 77, 912, 314, 912, 76, 1010, 76, 912, 78, 78, 387, 387, 387, 387, 1010, 78, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 81, 81, 81, 81, 81, 1496, 82, 82, 82, 82, 82, 1158, 1158, 1496, 81, 315, 315, 315, 315, 81, 82, 420, 420, 420, 420, 82, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 85, 85, 85, 85, 85, 1203, 83, 83, 83, 83, 83, 83, 538, 91, 85, 91, 91, 538, 85, 85, 92, 1203, 92, 92, 105, 539, 105, 105, 85, 1058, 539, 85, 91, 1058, 83, 83, 83, 547, 99, 92, 99, 99, 547, 105, 384, 384, 384, 384, 315, 555, 99, 562, 99, 568, 555, 85, 562, 99, 568, 384, 2190, 83, 83, 83, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 86, 86, 86, 86, 86, 2191, 84, 84, 84, 84, 84, 84, 569, 106, 86, 106, 106, 569, 86, 86, 575, 576, 1169, 99, 1169, 575, 576, 100, 86, 100, 100, 86, 106, 579, 84, 84, 84, 577, 579, 100, 107, 100, 107, 107, 577, 2090, 100, 577, 409, 409, 409, 409, 577, 107, 1027, 86, 1356, 1027, 1356, 107, 409, 84, 84, 84, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 89, 89, 89, 89, 89, 925, 87, 87, 87, 87, 87, 87, 100, 108, 619, 108, 108, 619, 2090, 89, 300, 300, 300, 300, 582, 121, 108, 121, 121, 582, 925, 89, 108, 619, 87, 87, 87, 115, 115, 115, 115, 115, 2062, 882, 121, 300, 421, 421, 421, 421, 882, 115, 882, 1243, 1243, 89, 115, 422, 422, 422, 422, 87, 87, 87, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 90, 90, 90, 90, 90, 1181, 88, 88, 88, 88, 88, 88, 2062, 116, 116, 116, 116, 116, 122, 90, 122, 122, 125, 2192, 125, 125, 117, 116, 117, 117, 1181, 90, 116, 595, 88, 88, 88, 122, 595, 117, 117, 125, 1262, 1262, 1052, 117, 435, 435, 435, 435, 441, 441, 441, 441, 1052, 90, 508, 508, 508, 508, 2194, 88, 88, 88, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 1032, 95, 2195, 1032, 95, 118, 601, 118, 118, 2069, 1212, 601, 95, 95, 95, 95, 95, 608, 118, 118, 1212, 1215, 608, 126, 118, 126, 126, 1215, 103, 103, 103, 103, 103, 104, 104, 104, 104, 104, 628, 95, 637, 95, 126, 628, 1444, 637, 139, 103, 139, 139, 1341, 1341, 104, 509, 509, 509, 509, 103, 510, 510, 510, 510, 104, 1444, 2069, 139, 95, 95, 95, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 644, 96, 103, 1051, 96, 644, 1051, 104, 135, 924, 135, 135, 96, 96, 96, 96, 96, 1061, 103, 136, 103, 136, 136, 104, 103, 104, 1061, 135, 1092, 104, 113, 113, 113, 113, 113, 924, 135, 1092, 136, 96, 140, 96, 140, 140, 113, 1518, 939, 136, 939, 113, 522, 522, 522, 522, 546, 546, 546, 546, 113, 140, 939, 2051, 301, 301, 301, 301, 96, 96, 96, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 113, 97, 301, 1208, 97, 114, 114, 114, 114, 114, 1270, 1518, 97, 97, 97, 97, 97, 653, 143, 114, 143, 143, 653, 144, 114, 144, 144, 2051, 149, 1208, 149, 149, 127, 114, 127, 127, 114, 143, 659, 97, 666, 97, 144, 659, 679, 666, 127, 149, 1363, 679, 1363, 127, 521, 521, 521, 521, 1270, 682, 528, 689, 114, 528, 682, 127, 689, 521, 97, 97, 97, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 1242, 98, 127, 528, 98, 128, 128, 128, 128, 128, 1242, 2196, 98, 98, 98, 98, 98, 2197, 150, 128, 150, 150, 633, 1388, 128, 633, 189, 528, 189, 189, 155, 1140, 155, 155, 2198, 633, 128, 150, 673, 98, 1140, 98, 155, 155, 156, 189, 156, 156, 1388, 155, 673, 523, 523, 523, 523, 673, 156, 156, 1210, 1144, 128, 1210, 1144, 156, 523, 1144, 98, 98, 98, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 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, 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, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 129, 1213, 129, 129, 2199, 1213, 130, 130, 130, 130, 130, 1580, 692, 131, 129, 131, 131, 692, 129, 129, 130, 1225, 697, 1389, 130, 130, 132, 697, 132, 132, 1225, 129, 131, 295, 295, 295, 295, 130, 1389, 1580, 159, 700, 159, 159, 131, 132, 700, 649, 649, 146, 649, 295, 146, 159, 1223, 129, 2200, 132, 1223, 159, 649, 130, 146, 553, 553, 553, 553, 146, 131, 589, 589, 589, 589, 705, 1250, 710, 146, 1250, 705, 146, 710, 132, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 146, 157, 157, 157, 157, 157, 133, 133, 133, 133, 133, 133, 1241, 157, 157, 1247, 1241, 157, 1348, 1247, 157, 169, 1348, 169, 169, 158, 158, 158, 158, 158, 160, 169, 160, 160, 133, 133, 133, 158, 158, 1311, 169, 158, 1311, 160, 158, 590, 590, 590, 590, 160, 592, 592, 592, 592, 596, 596, 596, 596, 1311, 1485, 1485, 133, 133, 133, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 170, 137, 170, 170, 137, 161, 161, 161, 161, 161, 170, 1467, 137, 137, 137, 137, 137, 161, 161, 170, 1315, 161, 2201, 1315, 161, 181, 181, 181, 181, 181, 162, 162, 162, 162, 162, 165, 1467, 165, 165, 137, 2202, 137, 162, 162, 181, 190, 162, 190, 190, 162, 681, 165, 715, 681, 165, 542, 724, 715, 542, 2203, 728, 724, 165, 681, 190, 728, 137, 137, 137, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 542, 138, 736, 2204, 138, 748, 166, 736, 166, 166, 748, 1322, 138, 138, 138, 138, 138, 182, 182, 182, 182, 182, 166, 2205, 542, 166, 183, 183, 183, 183, 183, 165, 201, 166, 201, 201, 182, 1322, 1392, 138, 202, 138, 202, 202, 1482, 183, 184, 184, 184, 184, 184, 201, 598, 598, 598, 598, 1398, 1482, 1398, 202, 304, 304, 304, 304, 1392, 184, 138, 138, 138, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 304, 141, 166, 1705, 141, 167, 167, 167, 167, 167, 2206, 1838, 141, 141, 141, 141, 141, 1705, 185, 185, 185, 185, 185, 1838, 167, 186, 186, 186, 186, 186, 168, 168, 168, 168, 168, 1347, 167, 185, 1347, 141, 231, 141, 231, 231, 186, 232, 720, 232, 232, 168, 616, 616, 616, 616, 642, 642, 642, 642, 720, 231, 167, 168, 1022, 720, 232, 1022, 141, 141, 141, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 168, 142, 1468, 177, 142, 177, 177, 209, 2207, 209, 209, 177, 142, 142, 142, 142, 142, 177, 210, 757, 210, 210, 177, 774, 757, 1471, 209, 1468, 774, 2209, 178, 777, 178, 178, 177, 209, 777, 210, 178, 142, 241, 142, 241, 241, 178, 235, 210, 235, 235, 178, 1471, 235, 688, 688, 688, 688, 1344, 1022, 177, 241, 1344, 178, 572, 1344, 235, 572, 142, 142, 142, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 178, 147, 2044, 179, 147, 179, 179, 572, 891, 1516, 891, 179, 147, 147, 147, 147, 147, 179, 242, 1249, 242, 242, 179, 213, 213, 213, 213, 213, 1249, 2210, 180, 572, 180, 180, 179, 1249, 1825, 242, 180, 147, 691, 147, 213, 691, 180, 236, 1825, 236, 236, 180, 1511, 236, 1516, 691, 739, 739, 739, 739, 179, 2044, 782, 180, 1473, 891, 236, 782, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 180, 148, 1473, 2211, 148, 187, 187, 187, 187, 187, 2048, 1513, 148, 148, 148, 148, 148, 1511, 214, 214, 214, 214, 214, 1511, 187, 215, 215, 215, 215, 215, 1877, 1877, 237, 187, 237, 237, 187, 214, 237, 148, 253, 148, 253, 253, 215, 216, 216, 216, 216, 216, 1162, 237, 2048, 1162, 253, 756, 756, 756, 756, 253, 187, 1513, 1513, 1162, 216, 2212, 148, 148, 148, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 188, 188, 188, 188, 188, 2213, 1515, 173, 173, 173, 173, 173, 1477, 217, 217, 217, 217, 217, 1520, 188, 218, 218, 218, 218, 218, 2214, 1865, 238, 188, 238, 238, 188, 217, 238, 173, 173, 173, 1477, 1865, 218, 219, 219, 219, 219, 219, 1515, 238, 758, 758, 758, 758, 783, 783, 783, 783, 188, 758, 1520, 1515, 219, 758, 173, 173, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 193, 790, 193, 193, 1722, 790, 790, 174, 174, 174, 174, 174, 2215, 220, 220, 220, 220, 220, 1722, 193, 223, 223, 223, 223, 223, 224, 224, 224, 224, 224, 1177, 193, 220, 1177, 174, 174, 174, 811, 254, 223, 254, 254, 811, 1177, 224, 751, 751, 751, 751, 817, 1704, 820, 254, 823, 817, 193, 820, 254, 823, 1704, 751, 174, 174, 174, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 191, 191, 191, 191, 191, 191, 191, 191, 829, 191, 191, 191, 191, 829, 1627, 191, 194, 191, 194, 194, 191, 221, 834, 221, 221, 2053, 2046, 834, 191, 191, 191, 191, 191, 840, 203, 194, 203, 203, 840, 255, 221, 255, 255, 256, 845, 256, 256, 194, 261, 845, 261, 261, 221, 203, 261, 191, 191, 191, 255, 261, 261, 261, 256, 848, 203, 853, 2053, 261, 848, 855, 853, 194, 1618, 203, 855, 1618, 221, 701, 203, 2046, 701, 1627, 191, 191, 192, 192, 192, 192, 192, 192, 192, 192, 1512, 192, 192, 192, 192, 558, 203, 192, 558, 192, 701, 203, 192, 222, 701, 222, 222, 1160, 558, 1160, 192, 192, 192, 192, 192, 861, 204, 2216, 204, 204, 861, 1160, 222, 867, 249, 558, 249, 249, 867, 250, 1660, 250, 250, 1512, 222, 204, 870, 192, 192, 192, 2217, 870, 271, 249, 271, 271, 204, 1512, 250, 558, 784, 784, 784, 784, 1478, 204, 1660, 873, 222, 271, 204, 271, 873, 2219, 192, 192, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 1478, 204, 195, 195, 195, 195, 204, 195, 227, 249, 227, 227, 895, 2221, 250, 195, 195, 195, 195, 195, 876, 881, 227, 249, 895, 876, 881, 227, 250, 895, 900, 228, 904, 228, 228, 900, 2222, 904, 257, 227, 257, 257, 195, 195, 195, 228, 332, 332, 332, 332, 228, 933, 752, 752, 752, 752, 933, 257, 785, 785, 785, 785, 228, 227, 332, 2066, 257, 752, 257, 195, 195, 195, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 2223, 228, 196, 196, 196, 196, 258, 196, 258, 258, 272, 1184, 272, 272, 1184, 196, 196, 196, 196, 196, 262, 2066, 262, 262, 1184, 258, 262, 272, 921, 272, 1560, 262, 262, 262, 258, 259, 258, 259, 259, 262, 921, 259, 196, 196, 196, 921, 259, 265, 265, 265, 265, 265, 947, 265, 259, 1560, 1906, 947, 265, 265, 265, 805, 805, 805, 805, 1633, 265, 1633, 1906, 196, 196, 196, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 2224, 197, 259, 273, 197, 273, 273, 274, 274, 274, 274, 274, 197, 197, 197, 197, 197, 263, 1816, 263, 263, 274, 273, 263, 1923, 914, 274, 617, 263, 914, 617, 1653, 260, 1653, 260, 260, 263, 914, 260, 197, 943, 197, 914, 260, 1816, 263, 536, 263, 536, 536, 1923, 260, 943, 536, 956, 617, 965, 943, 273, 956, 1643, 965, 274, 2226, 1643, 536, 197, 197, 197, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 617, 198, 260, 275, 198, 275, 275, 276, 276, 276, 276, 276, 198, 198, 198, 198, 198, 264, 617, 264, 264, 276, 275, 264, 984, 991, 276, 2227, 264, 984, 991, 266, 266, 266, 266, 266, 264, 266, 1192, 198, 1192, 198, 266, 266, 266, 264, 550, 264, 550, 550, 266, 1519, 1192, 550, 883, 883, 883, 883, 275, 995, 1573, 2228, 276, 1574, 995, 550, 198, 198, 198, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 1573, 199, 1721, 1574, 199, 319, 319, 319, 319, 1519, 2229, 1721, 199, 199, 199, 199, 199, 267, 267, 267, 267, 267, 2230, 267, 336, 336, 336, 336, 267, 267, 319, 268, 268, 268, 268, 268, 267, 268, 1728, 199, 1251, 199, 268, 268, 1251, 267, 1728, 267, 1723, 336, 268, 815, 815, 815, 815, 815, 1646, 1723, 1251, 268, 1646, 268, 337, 337, 337, 337, 199, 199, 199, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 1044, 200, 337, 1044, 200, 269, 269, 269, 269, 269, 2032, 2233, 200, 200, 200, 200, 200, 270, 270, 270, 270, 270, 2032, 2032, 269, 333, 333, 333, 333, 347, 347, 347, 347, 269, 578, 269, 270, 578, 702, 200, 702, 200, 702, 333, 2055, 270, 999, 270, 1009, 702, 1263, 999, 578, 1009, 347, 702, 347, 1263, 702, 1044, 350, 350, 350, 350, 578, 1263, 200, 200, 200, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 350, 205, 350, 578, 205, 341, 341, 341, 341, 2234, 2055, 205, 205, 205, 205, 205, 205, 344, 344, 344, 344, 2235, 1734, 341, 349, 349, 349, 349, 1457, 1457, 1724, 358, 358, 358, 358, 344, 1457, 1033, 1734, 205, 205, 205, 1033, 350, 1724, 400, 400, 400, 400, 349, 1039, 349, 1041, 350, 1143, 1039, 358, 1041, 358, 1143, 351, 351, 351, 351, 400, 1457, 205, 205, 205, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 351, 206, 351, 1780, 206, 349, 353, 353, 353, 353, 358, 206, 206, 206, 206, 206, 206, 1780, 1813, 352, 352, 352, 352, 361, 361, 361, 361, 355, 355, 355, 355, 353, 1813, 353, 354, 354, 354, 354, 1648, 206, 206, 206, 1648, 351, 352, 1649, 352, 997, 361, 1649, 997, 1863, 355, 1863, 355, 885, 885, 885, 885, 354, 997, 354, 353, 1878, 2236, 997, 206, 206, 206, 207, 207, 207, 207, 207, 207, 207, 207, 1878, 207, 207, 207, 207, 207, 207, 207, 1185, 207, 1812, 352, 207, 1185, 355, 362, 362, 362, 362, 1812, 207, 207, 207, 207, 355, 363, 363, 363, 363, 354, 1834, 1867, 354, 1191, 356, 356, 356, 356, 1191, 1867, 362, 357, 357, 357, 357, 2049, 1834, 207, 207, 207, 363, 367, 367, 367, 367, 886, 886, 886, 886, 356, 2061, 356, 887, 887, 887, 887, 357, 1659, 357, 367, 365, 365, 365, 365, 207, 207, 208, 208, 208, 208, 208, 208, 208, 208, 1968, 208, 208, 208, 208, 208, 208, 208, 1659, 208, 356, 365, 208, 365, 368, 368, 368, 368, 2049, 1199, 208, 208, 208, 208, 1199, 357, 1968, 2061, 1141, 356, 357, 1141, 368, 369, 369, 369, 369, 370, 370, 370, 370, 379, 379, 379, 379, 2237, 1141, 208, 208, 208, 565, 369, 565, 1062, 565, 370, 1062, 1062, 565, 379, 2238, 565, 910, 910, 910, 910, 565, 565, 1273, 1837, 565, 1062, 1837, 1273, 208, 208, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 1489, 229, 2218, 2218, 229, 1489, 753, 753, 753, 753, 2239, 2047, 229, 229, 229, 229, 229, 430, 430, 430, 430, 753, 431, 431, 431, 431, 432, 432, 432, 432, 395, 395, 395, 395, 1866, 396, 396, 396, 396, 229, 1617, 229, 430, 1617, 1866, 1617, 419, 431, 419, 419, 2047, 432, 419, 972, 972, 972, 972, 419, 395, 397, 397, 397, 397, 396, 2056, 419, 229, 229, 229, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 1731, 230, 397, 395, 230, 1731, 1261, 537, 396, 2052, 537, 2241, 230, 230, 230, 230, 230, 395, 2056, 395, 537, 395, 396, 1261, 396, 537, 396, 434, 434, 434, 434, 2242, 397, 436, 436, 436, 436, 537, 1645, 230, 1645, 230, 419, 419, 1645, 2243, 397, 1261, 397, 2244, 397, 2052, 434, 819, 819, 819, 819, 819, 436, 2240, 2240, 537, 973, 973, 973, 973, 230, 230, 230, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 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, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 1056, 245, 2245, 1056, 245, 437, 437, 437, 437, 1621, 1986, 1621, 245, 245, 245, 245, 245, 438, 438, 438, 438, 440, 440, 440, 440, 451, 451, 451, 451, 1892, 437, 2063, 1892, 494, 494, 494, 1986, 494, 2246, 245, 245, 245, 438, 451, 2247, 2057, 440, 494, 974, 974, 974, 974, 494, 822, 822, 822, 822, 822, 2050, 1056, 583, 583, 583, 583, 1621, 2249, 245, 245, 245, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 583, 246, 2063, 494, 246, 551, 551, 551, 551, 928, 2057, 1697, 246, 246, 246, 246, 246, 2050, 551, 554, 554, 554, 554, 551, 2250, 573, 573, 573, 573, 1465, 2251, 1829, 554, 928, 2060, 551, 1697, 554, 1465, 246, 246, 246, 566, 573, 566, 566, 566, 1093, 566, 566, 1093, 1093, 566, 2255, 1465, 566, 1829, 928, 1896, 551, 566, 1896, 1997, 1465, 566, 1093, 246, 246, 246, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 928, 247, 1896, 1997, 247, 567, 2060, 1927, 567, 1963, 1852, 2256, 247, 247, 247, 247, 247, 2257, 567, 574, 574, 574, 574, 567, 584, 584, 584, 584, 585, 585, 585, 585, 1927, 1187, 1963, 567, 1187, 574, 1194, 247, 1194, 247, 759, 759, 759, 759, 1187, 1224, 2027, 584, 1224, 759, 1194, 585, 2258, 759, 1852, 1194, 1852, 567, 588, 588, 588, 588, 2027, 1224, 247, 247, 247, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 588, 248, 2070, 2259, 248, 610, 610, 610, 610, 2260, 2043, 2261, 248, 248, 248, 248, 248, 611, 611, 611, 611, 612, 612, 612, 612, 615, 615, 615, 615, 1964, 610, 733, 733, 733, 733, 762, 762, 762, 762, 248, 1314, 248, 611, 1314, 645, 645, 612, 645, 645, 1674, 615, 1674, 645, 762, 1964, 2043, 733, 2070, 645, 1314, 645, 645, 2262, 1674, 645, 645, 248, 248, 248, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 335, 335, 335, 335, 1276, 1967, 335, 1276, 640, 640, 640, 640, 2058, 2263, 2042, 643, 643, 643, 643, 2220, 2193, 640, 1276, 2193, 1201, 335, 640, 1201, 643, 699, 1967, 2304, 699, 643, 646, 2220, 646, 646, 640, 646, 646, 646, 699, 2330, 646, 643, 734, 734, 734, 734, 646, 2058, 646, 646, 1201, 2042, 646, 646, 335, 699, 335, 1969, 640, 1959, 335, 2042, 1959, 335, 335, 643, 335, 734, 2340, 335, 335, 335, 335, 535, 1201, 535, 535, 535, 535, 699, 1474, 535, 1969, 1474, 535, 535, 535, 535, 1959, 535, 535, 535, 535, 535, 549, 549, 549, 549, 549, 549, 2068, 1745, 549, 2357, 1745, 549, 549, 549, 549, 1474, 549, 549, 549, 549, 549, 549, 703, 2359, 703, 1745, 703, 1246, 703, 703, 704, 1246, 1474, 704, 1246, 703, 735, 735, 735, 735, 703, 703, 2361, 704, 703, 1246, 2067, 2045, 704, 730, 730, 730, 730, 738, 738, 738, 738, 2362, 1474, 1810, 704, 735, 1810, 2068, 741, 741, 741, 741, 730, 730, 730, 730, 730, 730, 730, 741, 1234, 1810, 738, 1234, 747, 747, 747, 747, 704, 760, 760, 760, 760, 1234, 741, 747, 2045, 2067, 760, 1821, 1973, 1821, 760, 761, 761, 761, 761, 770, 770, 770, 747, 770, 761, 1821, 2363, 2365, 761, 763, 763, 763, 763, 800, 800, 800, 800, 1973, 770, 801, 801, 801, 801, 802, 802, 802, 802, 763, 804, 804, 804, 804, 825, 1974, 825, 2366, 2367, 2265, 800, 866, 866, 866, 866, 866, 801, 1175, 1175, 1175, 802, 1175, 2265, 825, 1977, 804, 770, 929, 747, 781, 1974, 1175, 825, 781, 929, 1229, 1175, 781, 1229, 929, 2368, 781, 781, 905, 905, 905, 905, 781, 1229, 1977, 781, 929, 2369, 1229, 781, 2370, 781, 2374, 781, 825, 1235, 1301, 781, 1235, 1301, 1229, 781, 781, 905, 781, 2377, 2371, 1175, 781, 1301, 929, 2371, 781, 792, 869, 869, 869, 869, 869, 872, 872, 872, 872, 872, 1229, 1235, 2378, 792, 875, 875, 875, 875, 875, 884, 884, 884, 884, 884, 929, 2380, 792, 792, 792, 792, 792, 792, 1961, 792, 792, 1235, 792, 792, 1979, 792, 792, 1961, 792, 792, 792, 792, 2419, 826, 826, 826, 826, 792, 792, 792, 792, 792, 792, 1961, 792, 792, 1980, 792, 792, 1979, 792, 792, 1961, 2379, 792, 792, 792, 792, 793, 793, 793, 793, 793, 826, 1982, 793, 793, 2188, 793, 2379, 2188, 1980, 793, 1302, 793, 793, 1302, 793, 793, 793, 794, 827, 827, 827, 827, 794, 1302, 826, 794, 1982, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 828, 828, 828, 828, 888, 888, 888, 888, 1955, 1955, 2004, 827, 906, 906, 906, 906, 1955, 888, 907, 907, 907, 907, 888, 909, 909, 909, 909, 1990, 794, 2188, 828, 981, 981, 981, 981, 827, 2004, 906, 949, 949, 949, 949, 1994, 907, 951, 1955, 951, 2420, 909, 949, 951, 1823, 1990, 1823, 828, 951, 794, 795, 795, 795, 795, 1956, 1956, 949, 959, 1823, 959, 1994, 795, 1956, 959, 982, 982, 982, 982, 959, 959, 959, 795, 1995, 795, 795, 2422, 959, 971, 971, 971, 971, 971, 2383, 971, 983, 983, 983, 983, 971, 971, 971, 1956, 951, 1441, 2423, 1441, 971, 1995, 795, 1441, 795, 795, 795, 795, 795, 795, 2424, 795, 795, 2145, 795, 1441, 1441, 2427, 795, 1227, 795, 795, 2145, 795, 795, 795, 796, 1013, 1013, 1013, 1013, 796, 1966, 2383, 796, 1966, 796, 796, 796, 796, 796, 796, 796, 796, 796, 796, 1008, 1008, 1008, 1008, 1998, 2011, 1013, 1014, 1014, 1014, 1014, 1017, 1017, 1017, 1017, 1966, 2002, 2003, 1008, 1227, 1018, 1018, 1018, 1018, 1020, 1020, 1020, 1020, 796, 1998, 1227, 2011, 1014, 2059, 1227, 2364, 1017, 1024, 1024, 1024, 1024, 2002, 2003, 2364, 796, 1018, 1025, 1025, 1025, 1025, 1026, 1026, 1026, 1026, 2306, 2006, 796, 1028, 1028, 1028, 1028, 1013, 1029, 1029, 1029, 1029, 1030, 1030, 1030, 1030, 1038, 1038, 1038, 1038, 2059, 1026, 1059, 1059, 1059, 1059, 2006, 2306, 1028, 2177, 2385, 1037, 2389, 1029, 1038, 1059, 2059, 1030, 2177, 1017, 1037, 1037, 1037, 1037, 1037, 2078, 1040, 1040, 1040, 1040, 1043, 1043, 1043, 1043, 1060, 1060, 1060, 1060, 1082, 1082, 1082, 1082, 2252, 1024, 1040, 2375, 2375, 1063, 1063, 1063, 1063, 2078, 1025, 2373, 2428, 1043, 2373, 2384, 1373, 1060, 2429, 1373, 2385, 1028, 1042, 1042, 1042, 1042, 2252, 2389, 1042, 1373, 1063, 1064, 1064, 1064, 1064, 1065, 1065, 1065, 1065, 1068, 1068, 1068, 1068, 1067, 1067, 1067, 1067, 1042, 1069, 1069, 1069, 1069, 1070, 1070, 1070, 1070, 1064, 1442, 1064, 1442, 1065, 2384, 1065, 1442, 1068, 2390, 1068, 2282, 1067, 2084, 1067, 1349, 1349, 1069, 1349, 1069, 1442, 1070, 1381, 1070, 1042, 1381, 1042, 2431, 1349, 2391, 1042, 1063, 2434, 1042, 1042, 1381, 1042, 2282, 2084, 1042, 1042, 1042, 1042, 1067, 1071, 1071, 1071, 1071, 1072, 1072, 1072, 1072, 1073, 1073, 1073, 1073, 2387, 1114, 1068, 1114, 1114, 1387, 1070, 1114, 1387, 2390, 1069, 2393, 1114, 1071, 1070, 1071, 2391, 1072, 1387, 1072, 1114, 1073, 2296, 1073, 1074, 1074, 1074, 1074, 1075, 1075, 1075, 1075, 1084, 1084, 1084, 1084, 1076, 1076, 1076, 1076, 2435, 1517, 1077, 1077, 1077, 1077, 2387, 1071, 2296, 1074, 2397, 1074, 2303, 1075, 1472, 1075, 2399, 1084, 2393, 1072, 1073, 1076, 2439, 1076, 2392, 1073, 2085, 1077, 1472, 1077, 1078, 1078, 1078, 1078, 1079, 1079, 1079, 1079, 2303, 1472, 1517, 1074, 1114, 1114, 1517, 1080, 1080, 1080, 1080, 1517, 1075, 2085, 1076, 1391, 1472, 1078, 1391, 1078, 2399, 1079, 2397, 1079, 1081, 1081, 1081, 1081, 1391, 2392, 1076, 1077, 1080, 1391, 1080, 2309, 1083, 1083, 1083, 1083, 1086, 1086, 1086, 1086, 2440, 1087, 1087, 1087, 1087, 1081, 2401, 1081, 1088, 1088, 1088, 1088, 1090, 1090, 1090, 1090, 1079, 2309, 1078, 1083, 2400, 1086, 1091, 1091, 1091, 1091, 1087, 1080, 1087, 1095, 1095, 1095, 1095, 1088, 2441, 1088, 1096, 1096, 1096, 1096, 1097, 1097, 1097, 1097, 1095, 1098, 1098, 1098, 1098, 1091, 2097, 2401, 1081, 1099, 1099, 1099, 1099, 1104, 1104, 1104, 1104, 1105, 1105, 1105, 1105, 1110, 1110, 1110, 1110, 2400, 2098, 2408, 1099, 1098, 2442, 2097, 1104, 1110, 1086, 1111, 1111, 1111, 1111, 1116, 1116, 1116, 1116, 1121, 2444, 2415, 1111, 1117, 1117, 1117, 1117, 2098, 1121, 1121, 1121, 1121, 1121, 2394, 2447, 1098, 1122, 1122, 1122, 1122, 1125, 1125, 1125, 1125, 1127, 1127, 1127, 1127, 2398, 1098, 2408, 1098, 2333, 1098, 1128, 1128, 1128, 1128, 1129, 1129, 1129, 1129, 2337, 1975, 1978, 1125, 1975, 1978, 2415, 1127, 1131, 1131, 1131, 1131, 1133, 1133, 1133, 1133, 2333, 1128, 1134, 1134, 1134, 1134, 1135, 1135, 1135, 1135, 2337, 2398, 2394, 1138, 1975, 1978, 1981, 1131, 2449, 1981, 2450, 1133, 1138, 1138, 1138, 1138, 1138, 1134, 1142, 1142, 1142, 1142, 1188, 1188, 1188, 1188, 1195, 1195, 1195, 1195, 1196, 1196, 1196, 1196, 2451, 1981, 1142, 2179, 1127, 1195, 2248, 2452, 2274, 1252, 1252, 1252, 1252, 1254, 1254, 1254, 1254, 1255, 1255, 1255, 1255, 2433, 1252, 1257, 1257, 1257, 1257, 1252, 2179, 1260, 1255, 2248, 1260, 2274, 1133, 1202, 1202, 1202, 1202, 1252, 1274, 1202, 1260, 1274, 1202, 1202, 1202, 1202, 2433, 1202, 1202, 1202, 1202, 1202, 1259, 1259, 1259, 1259, 1272, 1260, 2407, 1272, 1281, 1252, 2275, 1281, 1701, 1259, 2276, 1701, 1274, 1272, 1277, 1277, 1277, 1277, 1272, 2453, 1819, 1701, 1281, 1819, 2278, 1260, 1284, 1284, 1284, 1284, 1272, 2275, 1277, 1819, 1281, 2276, 1274, 1287, 1287, 1287, 1287, 1288, 1288, 1288, 1288, 1289, 1289, 1289, 1289, 2278, 1682, 1284, 1682, 2454, 1272, 2455, 1682, 2402, 1281, 2407, 2396, 1682, 1287, 2456, 2403, 2410, 1288, 1291, 1291, 1291, 1291, 1296, 1296, 1296, 1296, 1304, 1304, 1304, 1304, 1306, 1306, 1306, 1306, 1307, 1307, 1307, 1307, 1308, 1308, 1308, 1308, 2372, 1310, 2457, 2372, 1310, 1325, 1325, 1325, 1325, 1304, 2404, 1509, 2396, 1306, 1682, 2402, 2403, 1307, 1323, 1323, 1323, 1323, 1326, 1326, 1326, 1326, 2005, 2064, 1287, 1310, 1858, 1323, 2410, 1858, 1859, 1326, 1323, 1859, 2458, 2005, 1326, 1328, 1328, 1858, 1328, 1328, 2459, 1859, 1323, 1328, 1509, 2005, 1326, 2404, 1509, 1328, 2372, 1328, 1328, 1310, 2461, 1328, 1328, 1509, 2005, 1329, 1329, 2417, 1329, 1329, 1306, 2064, 1323, 1329, 2064, 1970, 1326, 1310, 1970, 1329, 2286, 1329, 1329, 2064, 2064, 1329, 1329, 1330, 1330, 1330, 1330, 1332, 1332, 1332, 1332, 1333, 1333, 1333, 1333, 1334, 1334, 2462, 1334, 1334, 1970, 2286, 2430, 1334, 1333, 1383, 1383, 1383, 1383, 1334, 2463, 1334, 1334, 1330, 2417, 1334, 1334, 1970, 2409, 1335, 1335, 1333, 1335, 1335, 2413, 2414, 2486, 1335, 1336, 1336, 1336, 1336, 2488, 1335, 2490, 1335, 1335, 1330, 2491, 1335, 1335, 1336, 2493, 1970, 2290, 1333, 1384, 1384, 1384, 1384, 1409, 1409, 1409, 1409, 1413, 1413, 1413, 1413, 1336, 1384, 1417, 1417, 1417, 1417, 1410, 1410, 1410, 1410, 2409, 2290, 2498, 1412, 1412, 1412, 1412, 1409, 2499, 2430, 2414, 1413, 2500, 2413, 1336, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1415, 1415, 1415, 1415, 1416, 1416, 1416, 1416, 1419, 1419, 1419, 1419, 1422, 1422, 1422, 1422, 1434, 1434, 1434, 1419, 1434, 2503, 2504, 1422, 2111, 1415, 2507, 2111, 2508, 1416, 1425, 1425, 1425, 1425, 1419, 1434, 2294, 2111, 1422, 1426, 1426, 1426, 1426, 2510, 2295, 1425, 1427, 1427, 1427, 1427, 1428, 1428, 1428, 1428, 2512, 1429, 1429, 1429, 1429, 1428, 2513, 2294, 1464, 1428, 1429, 1464, 2514, 2506, 1429, 2295, 2506, 1434, 1447, 1447, 1447, 1447, 1448, 1448, 1448, 1448, 1663, 1665, 1415, 1449, 1449, 1449, 1449, 1450, 1450, 1450, 1450, 1464, 1422, 1451, 1451, 1451, 1451, 1452, 1470, 2515, 2460, 1470, 1452, 2516, 1663, 1665, 1464, 2517, 1464, 2460, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 2298, 1466, 2310, 1466, 1480, 1480, 1480, 1480, 1466, 2519, 1470, 1663, 1665, 1475, 1464, 1466, 2520, 1464, 1983, 1475, 1475, 1983, 2521, 1470, 1470, 2298, 1466, 2310, 1466, 1469, 1469, 1469, 2522, 1466, 1479, 1479, 1479, 1479, 1475, 1663, 1665, 1466, 2523, 2524, 1469, 1475, 1475, 1983, 1470, 1470, 1481, 1481, 1481, 1481, 2525, 1469, 1452, 1460, 2297, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1469, 1476, 2297, 2526, 1476, 1529, 1529, 1529, 1529, 2320, 1480, 2527, 1469, 2327, 2297, 2528, 1476, 1552, 1476, 1552, 1483, 1483, 1483, 1483, 1479, 2529, 1476, 2297, 1460, 1476, 1507, 1507, 1507, 1507, 2320, 2530, 1552, 1479, 2327, 2465, 1479, 2336, 1476, 2509, 1476, 1552, 2509, 1507, 2465, 2531, 1481, 1486, 1486, 1486, 1486, 2532, 1460, 1462, 1462, 1462, 1462, 1462, 1462, 2533, 1462, 1462, 2336, 1462, 1462, 2534, 1462, 1462, 1552, 1462, 1462, 1462, 1462, 1506, 1506, 1506, 1506, 2343, 1462, 1462, 1462, 1462, 1462, 1462, 1483, 1462, 1462, 2535, 1462, 1462, 1506, 1462, 1462, 2344, 1483, 1462, 1462, 1462, 1462, 2536, 2537, 1507, 2343, 1486, 1510, 1510, 1510, 1510, 2347, 2395, 2538, 1486, 1495, 1525, 1525, 1525, 1525, 1495, 2344, 2421, 1495, 1510, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1506, 2347, 1514, 1514, 1514, 1514, 1525, 1699, 2511, 1506, 1699, 2511, 2421, 1506, 2518, 2539, 1506, 2518, 2395, 1514, 1699, 1508, 1508, 1508, 1508, 1699, 2395, 2540, 1495, 1527, 1527, 1527, 1527, 2541, 1528, 1528, 1528, 1528, 1508, 2542, 1510, 1537, 1537, 1537, 1537, 1537, 1608, 1608, 1608, 1608, 1510, 2545, 2543, 2546, 1527, 2543, 1495, 1497, 1514, 1528, 1984, 2548, 1497, 1984, 2549, 1497, 1514, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1508, 1542, 1542, 1542, 1542, 1542, 1554, 1554, 1554, 1554, 1508, 2405, 1984, 1508, 1547, 1547, 1547, 1547, 1547, 1555, 1555, 1555, 1555, 1586, 1586, 1586, 1586, 1586, 1497, 1591, 1591, 1591, 1591, 1591, 1527, 2550, 1554, 1596, 1596, 1596, 1596, 1596, 1601, 1601, 1601, 1601, 1601, 2551, 2552, 1555, 1609, 1609, 1609, 1609, 2405, 2553, 1497, 2554, 2555, 2405, 1554, 1610, 1610, 1610, 1610, 1611, 1611, 1611, 1611, 1611, 2556, 2557, 2558, 1555, 1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1614, 1614, 1614, 1614, 1614, 1615, 1615, 1615, 1615, 1616, 1616, 1616, 1616, 1637, 1637, 1637, 1637, 1639, 1639, 1639, 1639, 1640, 1640, 1640, 1640, 1641, 1641, 1641, 1641, 1678, 1678, 1678, 1678, 1695, 1695, 1695, 1695, 1688, 1637, 1688, 1678, 1985, 1639, 1688, 1985, 2559, 1640, 2560, 1688, 1688, 1688, 1691, 2561, 2562, 1678, 2564, 1688, 2565, 2411, 2566, 1691, 1691, 1691, 1691, 1691, 1693, 1693, 1693, 1693, 1693, 1985, 1693, 1696, 1696, 1696, 1696, 1693, 1693, 1693, 1707, 1707, 1707, 1707, 2570, 1693, 1708, 1708, 1708, 1708, 1709, 1709, 1709, 1709, 1712, 1712, 1712, 1712, 2571, 2544, 1639, 2572, 2544, 1720, 2416, 1707, 1739, 1739, 1739, 1739, 2544, 1708, 1720, 1720, 1720, 1720, 1720, 2411, 2411, 1739, 1740, 1740, 1740, 1740, 1741, 1741, 1741, 1741, 1748, 1748, 1748, 1748, 1749, 1749, 1749, 1749, 1750, 1750, 1750, 1750, 1752, 1752, 1752, 1752, 2416, 1740, 1965, 1965, 1965, 1741, 2573, 1987, 2574, 1748, 1987, 2575, 2576, 1749, 2577, 1749, 2416, 1965, 1707, 1988, 2578, 1752, 1988, 1752, 1753, 1753, 1753, 1753, 1754, 1754, 1754, 1754, 1755, 1755, 1755, 1755, 1987, 1756, 1756, 1756, 1756, 2580, 1965, 1757, 1757, 1757, 1757, 2563, 1988, 1753, 2582, 1753, 2604, 1754, 2611, 1754, 2629, 1755, 1989, 1755, 1991, 1989, 1756, 1991, 1756, 2567, 1748, 2633, 1757, 1752, 1757, 2637, 2563, 1758, 1758, 1758, 1758, 1759, 1759, 1759, 1759, 1760, 1760, 1760, 1760, 2639, 2641, 1989, 1754, 1991, 2567, 1753, 1761, 1761, 1761, 1761, 1755, 1756, 1758, 2644, 1758, 2584, 1759, 2646, 1759, 2648, 1760, 2651, 1760, 1762, 1762, 1762, 1762, 1763, 1763, 1763, 1763, 1761, 1757, 1761, 1764, 1764, 1764, 1764, 1765, 1765, 1765, 1765, 2584, 1766, 1766, 1766, 1766, 1758, 1762, 2656, 1762, 2585, 1763, 2608, 1763, 1767, 1767, 1767, 1767, 1764, 2660, 1764, 2671, 1765, 2586, 1765, 2495, 1759, 1766, 1760, 1766, 2596, 1761, 1768, 1768, 1768, 1768, 2585, 2495, 2608, 1767, 2673, 1767, 2495, 2675, 1769, 1769, 1769, 1769, 2586, 2677, 1762, 1770, 1770, 1770, 1770, 2596, 2681, 1768, 2683, 1768, 1763, 2688, 1766, 1771, 1771, 1771, 1771, 1765, 1764, 1769, 2655, 1769, 1772, 1772, 1772, 1772, 2603, 2614, 1770, 1773, 1773, 1773, 1773, 1767, 1774, 1774, 1774, 1774, 1992, 2689, 1771, 1992, 1775, 1775, 1775, 1775, 2655, 1772, 2690, 2691, 1768, 2603, 2614, 2692, 1773, 2615, 1773, 1776, 1776, 1776, 1776, 1781, 1781, 1781, 1781, 1791, 2693, 1992, 1769, 1775, 1786, 1786, 1786, 1786, 1791, 1791, 1791, 1791, 1791, 2694, 2615, 1786, 2695, 2696, 1776, 1792, 1792, 1792, 1792, 1794, 1794, 1794, 1794, 1797, 1797, 1797, 1797, 1798, 1798, 1798, 1798, 2700, 2618, 2702, 1772, 1799, 1799, 1799, 1799, 1801, 1801, 1801, 1801, 1802, 1802, 1802, 1802, 2699, 1797, 1808, 2699, 2703, 1798, 1803, 1803, 1803, 1803, 2618, 1808, 1808, 1808, 1808, 1808, 2701, 1801, 2704, 2701, 2706, 1802, 1881, 1881, 1881, 1881, 1882, 1882, 1882, 1882, 1883, 1883, 1883, 1883, 1888, 1888, 1888, 1888, 1889, 1889, 1889, 1889, 1890, 1890, 1890, 1890, 2708, 1881, 2709, 2707, 2711, 1882, 1897, 1897, 1897, 1897, 2631, 2707, 1797, 1888, 2720, 2732, 2713, 1889, 2726, 1897, 1898, 1898, 1898, 1898, 1899, 1899, 1899, 1899, 1801, 1900, 1900, 1900, 1900, 2712, 2749, 2631, 1897, 1899, 1918, 1918, 1918, 1918, 1900, 1921, 1921, 1921, 1921, 2659, 1996, 2750, 1898, 1996, 2752, 2714, 1899, 2711, 2753, 2754, 1881, 1900, 1897, 1931, 1931, 1931, 1931, 2720, 1934, 1934, 1934, 1934, 1888, 2664, 2659, 2713, 1898, 2726, 2732, 1996, 1899, 1932, 1932, 1932, 1932, 1900, 2724, 2712, 1931, 1933, 1933, 1933, 1933, 1934, 1935, 1935, 1935, 1935, 2664, 2722, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 2714, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1936, 1936, 1936, 1936, 1935, 1949, 1949, 1949, 1949, 1950, 1950, 1950, 1950, 1951, 1960, 2665, 1999, 1960, 1951, 1999, 2012, 2012, 2012, 2012, 2724, 2728, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1953, 2000, 1934, 2722, 2000, 1953, 2007, 2665, 2008, 2007, 1960, 2008, 1999, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1962, 1972, 1962, 2670, 1972, 1960, 1971, 1962, 2009, 2725, 2000, 2009, 1971, 1971, 1962, 2007, 1972, 2008, 1972, 2010, 2725, 2727, 2010, 2729, 2728, 1962, 1972, 1962, 2670, 1972, 1960, 1971, 1962, 2760, 2761, 2763, 1951, 2009, 1971, 1971, 1962, 2765, 1972, 2768, 1972, 2769, 2770, 2717, 2010, 2016, 2016, 2016, 2016, 2772, 2775, 2776, 1953, 1957, 2018, 2018, 2018, 2018, 1957, 2738, 2727, 1957, 2729, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 2022, 2022, 2022, 2022, 2028, 2028, 2028, 2028, 2065, 2065, 2065, 2065, 2072, 2072, 2072, 2072, 2073, 2073, 2073, 2073, 2074, 2074, 2074, 2074, 2184, 2065, 2717, 2184, 1957, 2093, 2093, 2093, 2093, 2094, 2094, 2094, 2094, 2072, 2107, 2738, 2731, 2073, 2095, 2095, 2095, 2095, 2730, 2107, 2107, 2107, 2107, 2107, 2777, 2184, 2093, 2721, 1957, 2040, 2094, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2114, 2114, 2114, 2114, 2121, 2141, 2141, 2141, 2141, 2146, 2146, 2146, 2146, 2121, 2121, 2121, 2121, 2121, 2141, 2147, 2147, 2147, 2147, 2740, 2406, 2072, 2731, 2406, 2040, 2264, 2264, 2264, 2264, 2721, 2146, 2730, 2146, 2231, 2172, 2762, 2231, 2406, 2093, 2040, 2147, 2741, 2147, 2172, 2172, 2172, 2172, 2172, 2148, 2148, 2148, 2148, 2040, 2071, 2149, 2149, 2149, 2149, 2071, 2737, 2735, 2071, 2231, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2148, 2740, 2148, 2406, 2778, 2146, 2149, 2741, 2149, 2150, 2150, 2150, 2150, 2151, 2151, 2151, 2151, 2152, 2152, 2152, 2152, 2762, 2779, 2154, 2154, 2154, 2154, 2780, 2071, 2781, 2153, 2153, 2153, 2153, 2150, 2723, 2150, 2735, 2151, 2739, 2151, 2782, 2152, 2737, 2152, 2742, 2071, 2148, 2154, 2149, 2154, 2155, 2155, 2155, 2155, 2153, 2071, 2153, 2783, 2784, 2156, 2156, 2156, 2156, 2157, 2157, 2157, 2157, 2158, 2158, 2158, 2158, 2159, 2159, 2159, 2159, 2155, 2785, 2155, 2151, 2786, 2150, 2723, 2154, 2736, 2156, 2153, 2156, 2739, 2157, 2152, 2157, 2742, 2158, 2744, 2158, 2787, 2159, 2789, 2159, 2160, 2160, 2160, 2160, 2161, 2161, 2161, 2161, 2162, 2162, 2162, 2162, 2790, 2813, 2814, 2155, 2156, 2163, 2163, 2163, 2163, 2358, 2358, 2358, 2358, 2160, 2158, 2160, 2157, 2161, 2736, 2161, 2818, 2162, 2819, 2162, 2176, 2270, 2159, 2820, 2270, 2821, 2163, 2744, 2163, 2176, 2176, 2176, 2176, 2176, 2253, 2253, 2253, 2253, 2376, 2376, 2376, 2376, 2823, 2160, 2254, 2254, 2254, 2254, 2826, 2827, 2270, 2746, 2160, 2829, 2162, 2272, 2161, 2277, 2272, 2253, 2277, 2831, 2833, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2279, 2280, 2281, 2279, 2280, 2281, 2163, 2267, 2283, 2834, 2284, 2283, 2267, 2284, 2272, 2267, 2277, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2747, 2746, 2279, 2280, 2281, 2285, 2287, 2835, 2285, 2287, 2283, 2289, 2284, 2291, 2289, 2292, 2291, 2299, 2292, 2300, 2299, 2301, 2300, 2302, 2301, 2836, 2302, 2838, 2267, 2305, 2307, 2840, 2305, 2307, 2285, 2287, 2360, 2360, 2360, 2360, 2289, 2841, 2291, 2843, 2292, 2845, 2299, 2747, 2300, 2846, 2301, 2311, 2302, 2847, 2311, 2848, 2267, 2268, 2305, 2307, 2313, 2314, 2268, 2313, 2314, 2268, 2850, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2851, 2316, 2318, 2311, 2316, 2318, 2321, 2323, 2325, 2321, 2323, 2325, 2313, 2314, 2328, 2331, 2332, 2328, 2331, 2332, 2334, 2338, 2341, 2334, 2338, 2341, 2342, 2832, 2268, 2342, 2316, 2318, 2360, 2849, 2832, 2321, 2323, 2325, 2345, 2346, 2849, 2345, 2346, 2328, 2331, 2332, 2745, 2853, 2854, 2334, 2338, 2341, 2856, 2857, 2348, 2342, 2268, 2348, 2350, 2352, 2354, 2350, 2352, 2354, 2858, 2862, 2356, 2345, 2346, 2356, 2863, 2864, 2865, 2386, 2386, 2386, 2386, 2388, 2388, 2388, 2388, 2824, 2866, 2348, 2824, 2745, 2867, 2350, 2352, 2354, 2386, 2868, 2870, 2745, 2388, 2356, 2382, 2412, 2412, 2412, 2412, 2382, 2828, 2871, 2382, 2828, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2438, 2425, 2425, 2425, 2425, 2426, 2426, 2426, 2426, 2438, 2438, 2438, 2438, 2438, 2448, 2448, 2448, 2448, 2464, 2464, 2464, 2464, 2466, 2466, 2466, 2466, 2874, 2830, 2382, 2425, 2830, 2464, 2766, 2426, 2388, 2766, 2467, 2467, 2467, 2467, 2485, 2485, 2485, 2485, 2382, 2837, 2875, 2466, 2837, 2466, 2876, 2877, 2468, 2468, 2468, 2468, 2382, 2418, 2878, 2880, 2766, 2467, 2418, 2467, 2881, 2418, 2882, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2468, 2879, 2468, 2883, 2469, 2469, 2469, 2469, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2884, 2472, 2472, 2472, 2472, 2473, 2473, 2473, 2473, 2885, 2879, 2893, 2418, 2469, 2418, 2469, 2897, 2470, 2899, 2470, 2891, 2471, 2842, 2471, 2901, 2842, 2472, 2468, 2472, 2904, 2473, 2906, 2473, 2474, 2474, 2474, 2474, 2908, 2911, 2914, 2418, 2475, 2475, 2475, 2475, 2891, 2925, 2927, 2469, 2476, 2476, 2476, 2476, 2470, 2852, 2929, 2471, 2852, 2474, 2931, 2474, 2477, 2477, 2477, 2477, 2913, 2475, 2855, 2475, 2497, 2855, 2472, 2497, 2940, 2476, 2501, 2476, 2946, 2501, 2473, 2478, 2478, 2478, 2478, 2547, 2952, 2477, 2547, 2477, 2859, 2913, 2474, 2859, 2479, 2479, 2479, 2479, 2956, 2497, 2475, 2480, 2480, 2480, 2480, 2501, 2478, 2937, 2478, 2481, 2481, 2481, 2481, 2958, 2547, 2961, 2476, 2963, 2964, 2479, 2477, 2479, 2482, 2482, 2482, 2482, 2480, 2969, 2480, 2483, 2483, 2483, 2483, 2937, 2481, 2970, 2481, 2484, 2484, 2484, 2484, 2487, 2487, 2487, 2487, 2581, 2918, 2482, 2581, 2482, 2479, 2971, 2487, 2972, 2483, 2478, 2483, 2568, 2568, 2568, 2568, 2480, 2484, 2973, 2484, 2481, 2569, 2569, 2569, 2569, 2583, 2918, 2587, 2583, 2581, 2587, 2568, 2568, 2568, 2568, 2568, 2568, 2568, 2975, 2976, 2569, 2569, 2569, 2569, 2569, 2569, 2569, 2579, 2484, 2977, 2589, 2981, 2579, 2589, 2583, 2590, 2587, 2919, 2590, 2982, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2592, 2594, 2597, 2592, 2594, 2597, 2599, 2601, 2605, 2599, 2601, 2605, 2589, 2606, 2924, 2919, 2606, 2590, 2609, 2612, 2613, 2609, 2612, 2613, 2616, 2617, 2951, 2616, 2617, 2592, 2594, 2597, 2983, 2985, 2987, 2599, 2601, 2605, 2619, 2924, 2621, 2619, 2606, 2621, 2579, 2988, 2989, 2609, 2612, 2613, 2990, 2951, 2623, 2616, 2617, 2623, 2579, 2625, 2627, 2628, 2625, 2627, 2628, 2630, 2955, 2632, 2630, 2619, 2632, 2621, 2634, 2635, 2638, 2634, 2635, 2638, 2640, 2642, 3000, 2640, 2642, 2623, 2643, 3004, 3017, 2643, 2625, 2627, 2628, 2955, 2645, 2993, 2630, 2645, 2632, 2647, 3023, 2994, 2647, 2634, 2635, 2638, 2999, 3001, 2649, 2640, 2642, 2649, 3012, 2650, 2652, 2643, 2650, 2652, 2653, 2657, 2992, 2653, 2657, 2645, 2658, 3000, 2661, 2658, 2647, 2661, 2662, 2666, 2668, 2662, 2666, 2668, 2672, 2649, 2674, 2672, 2994, 2674, 2650, 2652, 3004, 3017, 2676, 2653, 2657, 2676, 2993, 2678, 2999, 2658, 2678, 2661, 3028, 3023, 3001, 2662, 2666, 2668, 2992, 2679, 3012, 2672, 2679, 2674, 2682, 2682, 2682, 2682, 2995, 3029, 3032, 2676, 2684, 2684, 2684, 2684, 2678, 2685, 2685, 2685, 2685, 2686, 2686, 2686, 2686, 3002, 3006, 3033, 2679, 2687, 2687, 2687, 2687, 2697, 2697, 2697, 2697, 2698, 2698, 2698, 2698, 2705, 2705, 2705, 2705, 2715, 2715, 2715, 2715, 2718, 2718, 2718, 2718, 2719, 2719, 2719, 2719, 2733, 2733, 2733, 2733, 2751, 2715, 2995, 2751, 2816, 2718, 3002, 2816, 2974, 2719, 3014, 2974, 3006, 2733, 2734, 2734, 2734, 2734, 2743, 2743, 2743, 2743, 2755, 2755, 2755, 2755, 3007, 2822, 3034, 2751, 2822, 2734, 3003, 2816, 3040, 2743, 2756, 2756, 2756, 2756, 3010, 2756, 2757, 2757, 2757, 2757, 2705, 2710, 3043, 3008, 2755, 3009, 2710, 3014, 3009, 2710, 2822, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 3048, 3009, 3053, 2757, 2758, 2758, 2758, 2758, 3020, 2758, 2759, 2759, 2759, 2759, 3007, 3010, 3003, 2743, 2773, 2773, 2773, 2773, 2774, 2774, 2774, 2774, 3055, 3011, 2710, 2788, 2788, 2788, 2788, 3008, 2710, 2809, 2809, 2809, 2809, 2869, 2869, 2869, 2869, 2965, 2965, 2965, 2965, 3018, 2791, 2791, 2791, 2791, 2792, 2792, 2792, 2792, 2710, 2716, 2716, 2716, 3020, 2716, 2716, 2716, 2716, 2716, 2716, 2716, 2716, 2716, 2716, 2716, 2716, 2791, 2716, 2791, 2716, 2792, 3011, 2792, 2793, 2793, 2793, 2793, 3056, 2716, 2716, 2716, 2716, 2716, 2794, 2794, 2794, 2794, 2795, 2795, 2795, 2795, 3018, 2890, 2892, 2894, 2890, 2892, 2894, 2793, 3057, 2793, 2796, 2796, 2796, 2796, 2716, 3019, 2716, 2794, 3059, 2794, 3062, 2795, 2860, 2795, 3015, 2860, 2797, 2797, 2797, 2797, 2890, 2892, 2894, 2860, 3063, 2796, 2895, 2796, 3021, 2895, 3065, 2716, 2716, 2716, 2748, 3024, 3025, 3086, 2794, 2748, 3087, 2797, 2748, 2797, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 3019, 2895, 2796, 3015, 2798, 2798, 2798, 2798, 2799, 2799, 2799, 2799, 2800, 2800, 2800, 2800, 2801, 2801, 2801, 2801, 3042, 3021, 2797, 3088, 2802, 2802, 2802, 2802, 2748, 2798, 3090, 2798, 3024, 2799, 3025, 2799, 3026, 2800, 3091, 2800, 3092, 2801, 3095, 2801, 2803, 2803, 2803, 2803, 2748, 2802, 3096, 2802, 2804, 2804, 2804, 2804, 2748, 2805, 2805, 2805, 2805, 2806, 2806, 2806, 2806, 2807, 2807, 2807, 2807, 2803, 3097, 2803, 2808, 2808, 2808, 2808, 3098, 2804, 2798, 2804, 2898, 2799, 2805, 2898, 2805, 2800, 2806, 3026, 2806, 3099, 2807, 3042, 2807, 2810, 2810, 2810, 2810, 2808, 3100, 2808, 2811, 2811, 2811, 2811, 2810, 2900, 3101, 2902, 2900, 2898, 2902, 2811, 2889, 2804, 3103, 3104, 2903, 2889, 2803, 2903, 2905, 3107, 3109, 2905, 2805, 2889, 2889, 2889, 2889, 2889, 2889, 2889, 2907, 3111, 2900, 2907, 2902, 3112, 2808, 2909, 2910, 2912, 2909, 2910, 2912, 2903, 3113, 2915, 2916, 2905, 2915, 2916, 2920, 2922, 2926, 2920, 2922, 2926, 3114, 3105, 2928, 2907, 2930, 2928, 2932, 2930, 2889, 2932, 2909, 2910, 2912, 2933, 2935, 3105, 2933, 2935, 2915, 2916, 3115, 3117, 3118, 2920, 2922, 2926, 2938, 3120, 3121, 2938, 2889, 2928, 3122, 2930, 2941, 2932, 2942, 2941, 2944, 2942, 3123, 2944, 2933, 2935, 2947, 2948, 2949, 2947, 2948, 2949, 2953, 2954, 3124, 2953, 2954, 2938, 2957, 2959, 2960, 2957, 2959, 2960, 3125, 2941, 3126, 2942, 2962, 2944, 3093, 2962, 3127, 3093, 3129, 2947, 2948, 2949, 3130, 3132, 3133, 2953, 2954, 2966, 2966, 2966, 2966, 2957, 2959, 2960, 2967, 2967, 2967, 2967, 3134, 3135, 3136, 2962, 2968, 2968, 2968, 2968, 2978, 2978, 2978, 2978, 2980, 2980, 2980, 2980, 2984, 2984, 2984, 2984, 2986, 2986, 2986, 2986, 2991, 3035, 3035, 3035, 3035, 2991, 3035, 3137, 2991, 3138, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 3005, 3005, 3005, 3005, 3005, 3005, 3013, 3013, 3013, 3013, 3016, 3016, 3016, 3016, 3022, 3022, 3022, 3022, 3030, 3140, 3141, 3030, 3044, 3013, 3148, 3044, 3045, 3016, 2991, 3045, 3154, 3022, 3037, 3037, 3037, 3037, 3155, 3037, 3039, 3039, 3039, 3039, 3041, 3041, 3041, 3041, 2991, 3030, 3089, 3094, 3044, 3089, 3094, 3159, 3045, 3154, 2991, 2997, 2997, 2997, 3161, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 3164, 2997, 3046, 2997, 3089, 3046, 3050, 3050, 3050, 3050, 3166, 3169, 2997, 2997, 2997, 2997, 2997, 3102, 3171, 3046, 3102, 3046, 3046, 3046, 3046, 3046, 3046, 3051, 3051, 3051, 3051, 3052, 3052, 3052, 3052, 3054, 3054, 3054, 3054, 2997, 3173, 2997, 3060, 3060, 3060, 3060, 3177, 3058, 3058, 3058, 3058, 3061, 3061, 3061, 3061, 3064, 3064, 3064, 3064, 3185, 3067, 3067, 3067, 3067, 3187, 3067, 2997, 2997, 2997, 2998, 2998, 2998, 3058, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 3067, 2998, 3067, 2998, 2998, 3068, 3068, 3068, 3068, 3188, 3189, 2998, 2998, 2998, 2998, 2998, 2998, 3069, 3069, 3069, 3069, 3070, 3070, 3070, 3070, 3075, 3075, 3075, 3075, 3190, 3068, 3106, 3068, 3108, 3106, 3058, 3108, 3191, 3145, 2998, 2998, 2998, 3069, 3193, 3069, 3194, 3070, 3195, 3070, 3200, 3075, 3071, 3071, 3071, 3071, 3116, 3119, 3202, 3116, 3119, 3128, 3128, 3128, 3128, 3145, 3203, 2998, 2998, 2998, 3027, 3072, 3072, 3072, 3072, 3027, 3069, 3071, 3027, 3071, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3073, 3073, 3073, 3073, 3158, 3204, 3072, 3205, 3072, 3074, 3074, 3074, 3074, 3076, 3076, 3076, 3076, 3179, 3209, 3224, 3071, 3077, 3077, 3077, 3077, 3073, 3239, 3073, 3027, 3158, 3078, 3078, 3078, 3078, 3074, 3240, 3074, 3217, 3076, 3208, 3076, 3220, 3179, 3027, 3143, 3227, 3077, 3143, 3077, 3079, 3079, 3079, 3079, 3208, 3072, 3078, 3027, 3078, 3224, 3225, 3073, 3080, 3080, 3080, 3080, 3081, 3081, 3081, 3081, 3082, 3082, 3082, 3082, 3143, 3079, 3209, 3079, 3146, 3149, 3076, 3146, 3149, 3074, 3207, 3150, 3217, 3080, 3150, 3080, 3241, 3081, 3243, 3081, 3220, 3082, 3227, 3082, 3083, 3083, 3083, 3083, 3084, 3084, 3084, 3084, 3192, 3146, 3149, 3192, 3244, 3225, 3152, 3084, 3150, 3152, 3222, 3156, 3157, 3142, 3156, 3157, 3080, 3083, 3142, 3083, 3160, 3207, 3162, 3160, 3082, 3162, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3163, 3165, 3152, 3163, 3165, 3213, 3167, 3156, 3157, 3167, 3168, 3170, 3172, 3168, 3170, 3172, 3160, 3215, 3162, 3174, 3175, 3178, 3174, 3175, 3178, 3180, 3222, 3245, 3180, 3163, 3165, 3182, 3246, 3183, 3182, 3167, 3183, 3249, 3254, 3168, 3170, 3172, 3186, 3186, 3186, 3186, 3142, 3248, 3174, 3175, 3178, 3216, 3213, 3223, 3180, 3218, 3142, 3257, 3215, 3226, 3182, 3259, 3183, 3196, 3196, 3196, 3196, 3197, 3197, 3197, 3197, 3198, 3198, 3198, 3198, 3199, 3199, 3199, 3199, 3201, 3201, 3201, 3201, 3210, 3210, 3210, 3210, 3214, 3214, 3214, 3214, 3232, 3233, 3235, 3216, 3261, 3223, 3236, 3226, 3234, 3210, 3264, 3218, 3248, 3214, 3219, 3219, 3219, 3219, 3219, 3219, 3221, 3221, 3221, 3221, 3229, 3229, 3229, 3229, 3230, 3230, 3230, 3230, 3231, 3231, 3231, 3231, 3269, 3221, 3237, 3271, 3287, 3229, 3291, 3235, 3292, 3230, 3295, 3242, 3296, 3231, 3242, 3232, 3233, 3198, 3206, 3234, 3297, 3236, 3250, 3206, 3290, 3250, 3206, 3290, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3299, 3300, 3242, 3247, 3247, 3247, 3247, 3221, 3293, 3237, 3294, 3293, 3250, 3294, 3251, 3303, 3304, 3251, 3255, 3255, 3255, 3255, 3252, 3298, 3305, 3252, 3298, 3230, 3206, 3301, 3206, 3251, 3301, 3251, 3251, 3251, 3251, 3251, 3251, 3252, 3306, 3252, 3252, 3252, 3252, 3252, 3252, 3256, 3256, 3256, 3256, 3258, 3258, 3258, 3258, 3307, 3206, 3211, 3211, 3211, 3310, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3313, 3211, 3253, 3211, 3211, 3253, 3263, 3263, 3263, 3263, 3315, 3211, 3211, 3211, 3211, 3211, 3211, 3302, 3318, 3253, 3302, 3253, 3253, 3253, 3253, 3253, 3253, 3319, 3321, 3260, 3260, 3260, 3260, 3262, 3262, 3262, 3262, 3322, 3327, 3211, 3211, 3211, 3266, 3266, 3266, 3266, 3330, 3265, 3265, 3265, 3265, 3332, 3309, 3311, 3260, 3309, 3311, 3334, 3262, 3267, 3267, 3267, 3267, 3344, 3311, 3347, 3211, 3211, 3211, 3212, 3212, 3212, 3265, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3351, 3212, 3336, 3212, 3212, 3268, 3268, 3268, 3268, 3353, 3355, 3212, 3212, 3212, 3212, 3212, 3212, 3260, 3346, 3358, 3359, 3262, 3270, 3270, 3270, 3270, 3361, 3336, 3362, 3272, 3272, 3272, 3272, 3273, 3273, 3273, 3273, 3365, 3366, 3212, 3212, 3212, 3367, 3346, 3388, 3274, 3274, 3274, 3274, 3371, 3275, 3275, 3275, 3275, 3272, 3396, 3272, 3397, 3273, 3401, 3273, 3278, 3278, 3278, 3278, 3403, 3212, 3212, 3212, 3238, 3274, 3376, 3274, 3312, 3238, 3275, 3312, 3238, 3379, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3272, 3387, 3373, 3409, 3273, 3276, 3276, 3276, 3276, 3277, 3277, 3277, 3277, 3279, 3279, 3279, 3279, 3280, 3280, 3280, 3280, 3371, 3281, 3281, 3281, 3281, 3383, 3374, 3238, 3274, 3276, 3376, 3276, 3380, 3277, 3390, 3277, 3410, 3279, 3413, 3279, 3379, 3280, 3387, 3280, 3373, 3238, 3281, 3282, 3282, 3282, 3282, 3283, 3283, 3283, 3283, 3238, 3414, 3284, 3284, 3284, 3284, 3285, 3285, 3285, 3285, 3317, 3415, 3277, 3317, 3374, 3276, 3430, 3282, 3431, 3282, 3432, 3283, 3390, 3283, 3385, 3326, 3279, 3284, 3380, 3284, 3326, 3285, 3383, 3285, 3286, 3286, 3286, 3286, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3328, 3382, 3329, 3328, 3331, 3329, 3386, 3331, 3437, 3283, 3333, 3283, 3335, 3333, 3337, 3335, 3339, 3337, 3340, 3339, 3342, 3340, 3345, 3342, 3283, 3345, 3283, 3391, 3385, 3328, 3326, 3329, 3348, 3331, 3349, 3348, 3402, 3349, 3389, 3333, 3392, 3335, 3440, 3337, 3443, 3339, 3447, 3340, 3382, 3342, 3352, 3345, 3389, 3352, 3449, 3386, 3326, 3354, 3354, 3354, 3354, 3348, 3455, 3349, 3360, 3360, 3360, 3360, 3363, 3363, 3363, 3363, 3364, 3364, 3364, 3364, 3457, 3391, 3458, 3352, 3368, 3368, 3368, 3368, 3369, 3369, 3369, 3369, 3370, 3392, 3460, 3402, 3406, 3370, 3436, 3406, 3370, 3436, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3384, 3384, 3384, 3384, 3393, 3393, 3393, 3393, 3394, 3394, 3394, 3394, 3404, 3421, 3461, 3404, 3438, 3384, 3466, 3438, 3405, 3393, 3421, 3405, 3439, 3394, 3470, 3439, 3370, 3404, 3465, 3404, 3404, 3404, 3404, 3404, 3404, 3405, 3472, 3405, 3405, 3405, 3405, 3405, 3405, 3475, 3478, 3481, 3370, 3412, 3412, 3412, 3412, 3485, 3488, 3465, 3370, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3416, 3416, 3416, 3416, 3493, 3497, 3377, 3377, 3377, 3377, 3377, 3377, 3411, 3411, 3411, 3411, 3417, 3417, 3417, 3417, 3419, 3419, 3419, 3419, 3442, 3416, 3499, 3442, 3418, 3418, 3418, 3418, 3512, 3519, 3377, 3377, 3377, 3411, 3420, 3420, 3420, 3420, 3424, 3424, 3424, 3424, 3428, 3428, 3428, 3428, 3434, 3434, 3434, 3434, 3435, 3435, 3435, 3435, 3496, 3520, 3494, 3377, 3377, 3377, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3411, 3418, 3444, 3418, 3502, 3444, 3378, 3378, 3378, 3378, 3378, 3378, 3422, 3422, 3422, 3422, 3418, 3494, 3418, 3423, 3423, 3423, 3423, 3429, 3429, 3429, 3429, 3433, 3433, 3433, 3433, 3496, 3503, 3521, 3378, 3378, 3378, 3422, 3445, 3422, 3448, 3445, 3450, 3448, 3423, 3450, 3423, 3526, 3429, 3532, 3429, 3502, 3433, 3534, 3433, 3454, 3452, 3456, 3454, 3452, 3456, 3378, 3378, 3378, 3395, 3395, 3395, 3452, 3537, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3503, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3425, 3425, 3425, 3425, 3495, 3546, 3398, 3398, 3398, 3398, 3398, 3398, 3426, 3426, 3426, 3426, 3427, 3427, 3427, 3427, 3453, 3501, 3559, 3453, 3560, 3425, 3463, 3425, 3467, 3463, 3506, 3467, 3453, 3462, 3398, 3398, 3398, 3426, 3462, 3426, 3561, 3427, 3468, 3427, 3525, 3468, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3471, 3563, 3463, 3471, 3467, 3511, 3495, 3566, 3398, 3398, 3398, 3473, 3474, 3571, 3473, 3474, 3425, 3476, 3468, 3501, 3476, 3477, 3477, 3477, 3477, 3483, 3483, 3483, 3483, 3471, 3498, 3498, 3426, 3484, 3484, 3484, 3484, 3427, 3498, 3506, 3473, 3474, 3486, 3486, 3486, 3486, 3476, 3507, 3462, 3489, 3489, 3489, 3489, 3578, 3500, 3500, 3462, 3490, 3490, 3490, 3490, 3491, 3500, 3511, 3525, 3527, 3491, 3498, 3527, 3491, 3581, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3492, 3492, 3492, 3492, 3505, 3505, 3505, 3505, 3588, 3507, 3500, 3514, 3509, 3509, 3509, 3509, 3548, 3492, 3592, 3548, 3550, 3505, 3551, 3550, 3514, 3551, 3593, 3591, 3491, 3509, 3524, 3524, 3524, 3524, 3530, 3530, 3530, 3530, 3531, 3531, 3531, 3531, 3582, 3491, 3535, 3535, 3535, 3535, 3536, 3536, 3536, 3536, 3547, 3547, 3547, 3547, 3491, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3538, 3538, 3538, 3538, 3591, 3582, 3504, 3504, 3504, 3504, 3504, 3504, 3533, 3533, 3533, 3533, 3539, 3539, 3539, 3539, 3542, 3542, 3542, 3542, 3596, 3538, 3599, 3538, 3540, 3540, 3540, 3540, 3602, 3603, 3504, 3504, 3504, 3533, 3606, 3552, 3610, 3539, 3552, 3539, 3553, 3542, 3556, 3553, 3557, 3556, 3536, 3557, 3613, 3540, 3586, 3540, 3572, 3572, 3572, 3572, 3557, 3504, 3504, 3504, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3533, 3543, 3543, 3543, 3543, 3583, 3510, 3510, 3510, 3510, 3510, 3510, 3564, 3565, 3584, 3564, 3565, 3540, 3567, 3568, 3586, 3567, 3568, 3614, 3617, 3587, 3543, 3629, 3543, 3576, 3576, 3576, 3576, 3598, 3510, 3510, 3510, 3585, 3585, 3585, 3585, 3564, 3565, 3630, 3583, 3600, 3598, 3567, 3568, 3604, 3604, 3604, 3604, 3634, 3585, 3636, 3584, 3623, 3600, 3639, 3623, 3510, 3510, 3510, 3513, 3513, 3513, 3543, 3587, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3646, 3513, 3650, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3515, 3515, 3515, 3595, 3605, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3589, 3589, 3652, 3515, 3608, 3608, 3608, 3608, 3589, 3594, 3594, 3658, 3515, 3515, 3515, 3515, 3515, 3594, 3609, 3609, 3609, 3609, 3612, 3612, 3612, 3612, 3647, 3647, 3660, 3595, 3619, 3619, 3619, 3619, 3647, 3624, 3655, 3589, 3624, 3515, 3627, 3515, 3628, 3627, 3632, 3628, 3594, 3632, 3662, 3663, 3655, 3605, 3637, 3637, 3637, 3637, 3665, 3635, 3666, 3667, 3635, 3673, 3676, 3647, 3673, 3677, 3515, 3515, 3515, 3516, 3516, 3516, 3681, 3632, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3635, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3517, 3517, 3517, 3643, 3642, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3682, 3683, 3691, 3517, 3541, 3541, 3541, 3541, 3641, 3664, 3644, 3517, 3517, 3517, 3517, 3517, 3517, 3544, 3544, 3544, 3544, 3615, 3615, 3615, 3615, 3645, 3661, 3695, 3699, 3541, 3643, 3541, 3562, 3611, 3611, 3611, 3611, 3562, 3651, 3517, 3683, 3517, 3544, 3642, 3544, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3644, 3621, 3621, 3621, 3621, 3641, 3611, 3618, 3618, 3618, 3618, 3684, 3686, 3714, 3517, 3517, 3517, 3620, 3620, 3620, 3620, 3678, 3645, 3664, 3678, 3541, 3621, 3718, 3621, 3651, 3687, 3710, 3618, 3661, 3618, 3711, 3713, 3723, 3544, 3730, 3740, 3741, 3620, 3562, 3620, 3679, 3679, 3679, 3679, 3615, 3678, 3748, 3684, 3751, 3611, 3686, 3562, 3579, 3680, 3680, 3680, 3680, 3579, 3712, 3726, 3579, 3754, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3687, 3757, 3693, 3618, 3711, 3648, 3648, 3648, 3648, 3620, 3710, 3668, 3668, 3668, 3668, 3713, 3631, 3669, 3669, 3669, 3669, 3631, 3648, 3670, 3670, 3670, 3670, 3741, 3579, 3631, 3631, 3631, 3631, 3631, 3631, 3631, 3668, 3685, 3685, 3685, 3685, 3715, 3669, 3726, 3669, 3731, 3579, 3712, 3670, 3727, 3670, 3693, 3759, 3729, 3685, 3736, 3579, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3671, 3671, 3671, 3671, 3631, 3745, 3590, 3590, 3590, 3590, 3590, 3590, 3731, 4079, 3631, 3672, 3672, 3672, 3672, 3670, 3689, 3689, 3689, 3689, 3715, 3671, 3736, 3671, 3698, 3698, 3698, 3698, 3729, 3727, 3590, 3590, 3590, 3689, 4080, 4205, 3672, 4416, 3700, 3700, 3700, 3700, 3701, 3701, 3701, 3701, 3845, 4205, 3745, 3698, 3912, 3845, 3702, 3702, 3702, 3702, 3912, 3590, 3590, 3590, 3597, 3597, 3597, 3700, 4439, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3702, 3597, 3702, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3597, 3601, 3601, 3601, 2169, 2168, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 2167, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3640, 3640, 3640, 2166, 2143, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 2140, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3674, 3703, 3703, 3703, 3703, 3750, 2139, 3674, 3674, 3674, 3674, 3674, 3674, 3705, 3705, 3705, 3705, 3708, 3708, 3708, 3708, 3721, 3721, 3721, 3721, 2138, 3703, 3722, 3722, 3722, 3722, 3724, 3724, 3724, 3724, 3674, 3674, 3674, 3728, 3728, 3728, 3728, 3743, 3743, 3743, 3743, 3721, 3744, 3744, 3744, 3744, 3737, 3737, 3737, 3737, 3728, 2137, 3725, 3725, 3725, 3725, 3750, 3674, 3674, 3674, 3690, 3690, 3690, 3737, 2136, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3725, 3690, 3725, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3704, 3704, 3704, 3704, 3752, 2135, 3696, 3696, 3696, 3696, 3696, 3696, 3733, 3733, 3733, 3733, 3734, 3734, 3734, 3734, 3735, 3735, 3735, 3735, 3749, 3704, 3753, 3704, 2134, 3739, 3739, 3739, 3739, 3849, 3696, 3696, 3696, 3733, 3844, 3844, 3844, 3734, 2133, 3734, 3849, 3735, 3739, 3742, 3742, 3742, 3742, 3756, 3756, 3756, 3756, 3854, 3842, 4421, 3844, 2132, 3854, 3696, 3696, 3696, 3842, 3752, 3871, 2131, 3756, 3842, 3875, 3871, 3742, 3704, 3888, 3875, 3892, 4421, 2130, 3888, 2129, 3892, 3749, 3753, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3767, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3772, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3773, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3774, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3780, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3781, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3783, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3786, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3787, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3788, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3790, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3798, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3819, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3827, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3841, 3843, 3843, 3843, 2128, 3851, 3851, 3851, 3853, 3853, 3853, 3860, 3860, 3860, 2127, 2126, 3843, 3843, 3862, 3862, 3862, 3843, 3846, 3846, 3846, 3851, 2125, 2124, 3853, 2123, 2122, 3860, 3880, 3880, 3880, 3886, 3886, 3886, 3862, 3909, 2118, 2117, 3846, 3887, 3909, 3909, 3846, 3847, 3847, 3847, 3913, 3887, 3880, 3913, 2116, 3886, 3887, 3889, 3913, 3889, 3917, 3917, 3847, 3847, 3889, 3917, 2115, 3847, 3848, 3848, 2108, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3850, 3850, 3850, 2106, 3907, 3907, 3907, 3919, 3919, 3919, 3949, 2105, 2102, 3938, 3960, 3850, 3850, 3850, 3938, 3960, 3850, 3852, 3852, 3852, 3907, 3949, 4445, 3919, 3970, 2101, 3949, 3963, 3963, 3970, 3963, 3983, 3852, 3852, 3852, 3963, 3983, 3852, 3855, 3855, 3988, 2091, 4445, 3855, 3855, 3988, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 2088, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 2087, 2086, 3855, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3857, 3857, 2081, 2080, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3858, 3858, 2079, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3859, 3859, 3859, 2077, 3957, 3957, 3957, 3987, 3987, 3987, 2076, 2038, 2037, 3989, 4002, 3859, 3859, 3984, 3989, 4002, 3859, 3861, 3861, 3861, 3957, 3984, 4011, 3987, 4015, 4025, 3984, 4011, 4235, 4015, 4025, 4030, 3861, 3861, 4235, 4037, 4030, 3861, 3863, 3863, 4037, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3864, 3864, 2036, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3865, 3865, 2035, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 2034, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3867, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3869, 2033, 2031, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 4045, 3869, 3869, 3869, 3869, 4045, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 2030, 3869, 3869, 3869, 3869, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3872, 3872, 2029, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3874, 3874, 2026, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3874, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3878, 3996, 3996, 3996, 2025, 2024, 4000, 4000, 4000, 3878, 4010, 4010, 4010, 2023, 2021, 3878, 4014, 4014, 4014, 3878, 3878, 3996, 3878, 3879, 3879, 3879, 4000, 4046, 4047, 4051, 4010, 2020, 4072, 4047, 4051, 4046, 4014, 4072, 3879, 3879, 4046, 4088, 4088, 3879, 3881, 3881, 4088, 3881, 2019, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3882, 2017, 3882, 3882, 3882, 3882, 3882, 2015, 2014, 2013, 3882, 1958, 3882, 3883, 3883, 1954, 3883, 1952, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3884, 1948, 3884, 3884, 3884, 3884, 3884, 4036, 4036, 4036, 3884, 1947, 3884, 3885, 3885, 3885, 4044, 4044, 4044, 4048, 1946, 4048, 1945, 1944, 1943, 4074, 4048, 4036, 3885, 3885, 4074, 4074, 1942, 3885, 3890, 3890, 4044, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3896, 3896, 1941, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3897, 3897, 1940, 3897, 1939, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3898, 1938, 3898, 3898, 3898, 3898, 3898, 1926, 1925, 1924, 3898, 1922, 3898, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3901, 3901, 1917, 3901, 1916, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3902, 1915, 3902, 3902, 3902, 3902, 3902, 1914, 1913, 1912, 3902, 1911, 3902, 3903, 3903, 1910, 3903, 1908, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3903, 3904, 1907, 3904, 3904, 3904, 3904, 3904, 4058, 1905, 1904, 3904, 1903, 3904, 3905, 3905, 3905, 4058, 4071, 4071, 4071, 4092, 1902, 4058, 4081, 1901, 4092, 4081, 4058, 3905, 3905, 1895, 4081, 1894, 3905, 3906, 3906, 3906, 4071, 4075, 4091, 4091, 4091, 4111, 4075, 1893, 1887, 4075, 4111, 4123, 3906, 3906, 4132, 4132, 4132, 3906, 3908, 3908, 3908, 1879, 4091, 3908, 4133, 4136, 4123, 3908, 1876, 4133, 4136, 4123, 4139, 4139, 4132, 4139, 4146, 1875, 3908, 3910, 4139, 4146, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 1874, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 1873, 3910, 3910, 3910, 3910, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3914, 1872, 3914, 3914, 3914, 3914, 3914, 1871, 1870, 4156, 3914, 1869, 3914, 3915, 4156, 4160, 3915, 1864, 1862, 3915, 4160, 3915, 3915, 3915, 3915, 3915, 1861, 4177, 4181, 3915, 1860, 3915, 4177, 4181, 1855, 3915, 3916, 3916, 1854, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3918, 3918, 3918, 4159, 4159, 4159, 4189, 4193, 4201, 4202, 1853, 4189, 4193, 4201, 4202, 3918, 3918, 4202, 1851, 4218, 3918, 3920, 1850, 4159, 4218, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3922, 1849, 1848, 1847, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3924, 1846, 1845, 1844, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3926, 3926, 1843, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 1842, 3926, 3926, 4224, 3926, 3926, 3926, 3926, 4224, 3926, 3926, 3926, 3926, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3928, 1841, 4422, 3928, 3928, 1840, 3928, 4422, 3928, 3928, 3928, 3928, 3928, 4161, 4161, 4161, 3928, 1839, 1836, 4167, 4167, 4167, 3928, 3929, 3929, 1835, 1833, 4225, 4225, 3929, 4225, 3929, 3929, 4161, 1832, 4225, 3929, 3930, 3930, 4167, 3930, 1831, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3931, 1830, 3931, 3931, 3931, 3931, 3931, 1828, 1827, 1826, 3931, 1824, 3931, 3932, 3932, 1822, 3932, 1820, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3933, 1818, 3933, 3933, 3933, 3933, 3933, 4171, 4171, 4171, 3933, 1817, 3933, 3934, 4446, 3934, 3934, 3934, 3934, 4446, 4447, 1815, 1814, 3934, 3935, 4447, 1811, 4171, 1807, 1806, 3935, 1796, 3935, 3935, 3935, 3935, 3935, 1790, 1789, 3935, 3935, 1785, 1784, 1783, 1782, 1779, 3935, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 1778, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3939, 1777, 1747, 1742, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3941, 1738, 1737, 1736, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3943, 1735, 1733, 1732, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3945, 1730, 1729, 1727, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 1726, 3950, 3950, 3950, 3950, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3952, 3952, 1725, 3952, 1719, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3953, 1718, 3953, 3953, 3953, 3953, 3953, 1716, 1715, 1714, 3953, 1713, 3953, 3954, 3954, 1711, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3956, 3956, 3956, 4263, 4263, 1706, 4263, 1702, 1700, 4319, 4319, 4263, 4319, 1698, 1690, 3956, 3956, 4319, 1680, 1677, 3956, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3964, 3964, 1676, 3964, 1675, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3965, 4176, 4176, 4176, 1672, 1670, 3965, 1669, 3965, 3965, 3965, 3965, 3965, 1666, 1661, 3965, 3965, 4180, 4180, 4180, 1657, 4176, 3965, 3966, 4188, 4188, 4188, 4395, 1656, 3966, 1655, 3966, 3966, 3966, 3966, 3966, 1654, 4180, 3966, 3966, 4395, 3966, 4395, 1651, 4188, 3966, 3967, 4395, 3967, 3967, 3967, 3967, 3967, 1647, 1638, 1629, 3967, 1628, 3967, 3968, 3968, 1626, 3968, 1625, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3969, 1624, 3969, 3969, 3969, 3969, 3969, 1623, 1622, 1619, 3969, 1607, 3969, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 1606, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3974, 3974, 1605, 3974, 1570, 3974, 3974, 1567, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 1565, 3974, 3974, 3974, 3974, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3976, 3976, 1562, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3977, 3977, 1561, 3977, 1557, 3977, 3977, 1556, 1535, 1534, 3977, 3977, 3977, 3977, 3977, 1526, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3979, 3979, 1523, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3980, 1522, 1521, 1505, 1494, 3980, 3980, 1493, 1492, 1491, 3980, 3980, 3980, 3980, 3980, 1490, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 1488, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3985, 3985, 3985, 4192, 4192, 4192, 1487, 1484, 1461, 1459, 4200, 4200, 4200, 4217, 4217, 4217, 3985, 4223, 4223, 4223, 3985, 1456, 1446, 4192, 1445, 4420, 3985, 3986, 3986, 3986, 4200, 1443, 4437, 4217, 4226, 4226, 4226, 4223, 4420, 4459, 4420, 4462, 3986, 3986, 1439, 4420, 4437, 3986, 3990, 3990, 3990, 4437, 1438, 4459, 4226, 4462, 1432, 1431, 4459, 1430, 4462, 1414, 1411, 1406, 1403, 1402, 1401, 1400, 3990, 1399, 1396, 1393, 3990, 3991, 3991, 3991, 1390, 1382, 1376, 1374, 1372, 1371, 1367, 1366, 1365, 1364, 1361, 1354, 3991, 3991, 1353, 1351, 1346, 3991, 3992, 3992, 1345, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3993, 3993, 3993, 1343, 1342, 1340, 1339, 1338, 1337, 1327, 1320, 1318, 1317, 1316, 1313, 3993, 3993, 1312, 1305, 1303, 3993, 3994, 3994, 3994, 1298, 1293, 1285, 1282, 1280, 1279, 1278, 1275, 1271, 1269, 1268, 1267, 1266, 3994, 1265, 1264, 1248, 3994, 1245, 1244, 1240, 1236, 1233, 3994, 3995, 3995, 3995, 1231, 1230, 1228, 1226, 1222, 1221, 1219, 1218, 1217, 1216, 1214, 1211, 3995, 3995, 3995, 1209, 1200, 3995, 3997, 3997, 3997, 1198, 1197, 1193, 1190, 1186, 1183, 1182, 1178, 1173, 1172, 1171, 1170, 3997, 1167, 3997, 1163, 1157, 3997, 3998, 3998, 3998, 1155, 1154, 1148, 1137, 1132, 1126, 1124, 1120, 1118, 1109, 1108, 1107, 1106, 3998, 1103, 1102, 1101, 3998, 1100, 1085, 1066, 1057, 1055, 3998, 3999, 3999, 3999, 1054, 1053, 1050, 1049, 1048, 1046, 1045, 1036, 1035, 1034, 1031, 1015, 3999, 3999, 3999, 1007, 1002, 3999, 4001, 4001, 4001, 1000, 998, 996, 993, 990, 988, 980, 966, 962, 945, 942, 941, 4001, 938, 4001, 936, 935, 4001, 4003, 4003, 920, 917, 908, 4003, 4003, 897, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 893, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 890, 878, 4003, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 4005, 4005, 841, 837, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4006, 4006, 835, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4007, 4007, 832, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4008, 4008, 4008, 831, 830, 813, 812, 810, 809, 807, 803, 798, 797, 789, 787, 786, 4008, 779, 776, 775, 4008, 765, 750, 745, 737, 732, 4008, 4009, 4009, 4009, 719, 716, 711, 707, 698, 694, 690, 687, 684, 678, 675, 672, 4009, 4009, 669, 661, 658, 4009, 4012, 4012, 4012, 655, 652, 648, 636, 632, 629, 625, 622, 621, 620, 614, 609, 607, 4012, 603, 587, 586, 4012, 571, 561, 557, 545, 541, 4012, 4013, 4013, 4013, 531, 527, 519, 507, 502, 501, 500, 498, 487, 484, 482, 474, 4013, 4013, 473, 469, 467, 4013, 4016, 4016, 463, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4017, 4017, 459, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4018, 4018, 448, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 447, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4023, 443, 439, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 433, 4023, 4023, 4023, 4023, 429, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 424, 4023, 4023, 4023, 4023, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4026, 4026, 423, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4027, 4027, 413, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 411, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 406, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4033, 404, 403, 402, 401, 390, 381, 364, 343, 4033, 340, 330, 328, 322, 317, 4033, 302, 298, 292, 4033, 4033, 287, 4033, 4034, 4034, 4034, 285, 281, 279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4034, 0, 0, 0, 4034, 0, 0, 0, 0, 0, 4034, 4035, 4035, 4035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4035, 4035, 0, 0, 0, 4035, 4038, 4038, 0, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4039, 0, 4039, 4039, 4039, 4039, 4039, 0, 0, 0, 4039, 0, 4039, 4040, 4040, 0, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4041, 0, 4041, 4041, 4041, 4041, 4041, 0, 0, 0, 4041, 0, 4041, 4042, 4042, 4042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4042, 0, 0, 0, 4042, 0, 0, 0, 0, 0, 4042, 4043, 4043, 4043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4043, 4043, 0, 0, 0, 4043, 4049, 4049, 0, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 0, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4056, 4056, 0, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 0, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 0, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4059, 4059, 0, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4060, 0, 4060, 4060, 4060, 4060, 4060, 0, 0, 0, 4060, 0, 4060, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4063, 4063, 0, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4064, 0, 4064, 4064, 4064, 4064, 4064, 0, 0, 0, 4064, 0, 4064, 4065, 4065, 0, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4066, 0, 4066, 4066, 4066, 4066, 4066, 0, 0, 0, 4066, 0, 4066, 4067, 4067, 4067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4067, 4067, 0, 0, 0, 4067, 4068, 4068, 4068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4068, 4068, 0, 0, 0, 4068, 4069, 4069, 4069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4069, 0, 0, 0, 4069, 0, 0, 0, 0, 0, 4069, 4070, 4070, 4070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4070, 4070, 0, 0, 0, 4070, 4073, 4073, 4073, 0, 0, 4073, 0, 0, 0, 4073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4073, 4076, 0, 0, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 0, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 0, 4076, 4076, 4076, 4076, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4078, 0, 0, 4078, 0, 0, 0, 0, 0, 0, 0, 4078, 4078, 0, 0, 0, 4078, 0, 0, 0, 0, 0, 4078, 4082, 0, 4082, 4082, 4082, 4082, 4082, 0, 0, 0, 4082, 0, 4082, 4083, 0, 4083, 4083, 4083, 4083, 4083, 0, 0, 0, 4083, 0, 4083, 4084, 0, 4084, 4084, 4084, 4084, 4084, 0, 0, 0, 4084, 0, 4084, 0, 0, 0, 4084, 4085, 0, 0, 0, 0, 4085, 0, 0, 4085, 4085, 0, 4085, 0, 0, 0, 0, 4085, 4085, 4085, 0, 4085, 4086, 0, 0, 4086, 0, 0, 4086, 0, 4086, 4086, 4086, 4086, 4086, 0, 0, 0, 4086, 0, 4086, 0, 0, 0, 4086, 4087, 4087, 0, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4089, 4089, 4089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4089, 0, 0, 0, 4089, 0, 0, 0, 0, 0, 4089, 4090, 4090, 4090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4090, 4090, 0, 0, 0, 4090, 4093, 0, 0, 0, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4094, 4095, 0, 0, 0, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4097, 0, 0, 0, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4099, 4099, 0, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 0, 4099, 4099, 0, 4099, 4099, 4099, 4099, 0, 4099, 4099, 4099, 4099, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4101, 0, 0, 4101, 4101, 0, 4101, 0, 4101, 4101, 4101, 4101, 4101, 0, 0, 0, 4101, 0, 0, 0, 0, 0, 4101, 4102, 4102, 0, 0, 0, 0, 4102, 0, 4102, 4102, 0, 0, 0, 4102, 4103, 4103, 0, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4104, 0, 4104, 4104, 4104, 4104, 4104, 0, 0, 0, 4104, 0, 4104, 4105, 4105, 0, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4106, 0, 4106, 4106, 4106, 4106, 4106, 0, 0, 0, 4106, 0, 4106, 4107, 0, 4107, 4107, 4107, 4107, 0, 0, 0, 0, 4107, 4108, 0, 0, 0, 0, 0, 4108, 0, 4108, 4108, 4108, 4108, 4108, 0, 0, 4108, 4108, 0, 0, 0, 0, 0, 4108, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 0, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4112, 0, 0, 0, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4114, 0, 0, 0, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4116, 0, 0, 0, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4118, 0, 0, 0, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 0, 4124, 4124, 4124, 4124, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4126, 4126, 0, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4127, 0, 4127, 4127, 4127, 4127, 4127, 0, 0, 0, 4127, 0, 4127, 4128, 4128, 0, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4130, 4130, 4130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4130, 0, 0, 0, 4130, 0, 0, 0, 0, 0, 4130, 4131, 4131, 4131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4131, 4131, 0, 0, 0, 4131, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4140, 4140, 0, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4141, 0, 0, 0, 0, 0, 4141, 0, 4141, 4141, 4141, 4141, 4141, 0, 0, 4141, 4141, 0, 0, 0, 0, 0, 4141, 4142, 0, 0, 0, 0, 0, 4142, 0, 4142, 4142, 4142, 4142, 4142, 0, 0, 4142, 4142, 0, 4142, 0, 0, 0, 4142, 4143, 0, 4143, 4143, 4143, 4143, 4143, 0, 0, 0, 4143, 0, 4143, 4144, 4144, 0, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4145, 0, 4145, 4145, 4145, 4145, 4145, 0, 0, 0, 4145, 0, 4145, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 0, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4149, 4149, 0, 4149, 0, 4149, 4149, 0, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 0, 4149, 4149, 4149, 4149, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4151, 4151, 0, 4151, 0, 4151, 4151, 0, 0, 0, 4151, 4151, 4151, 4151, 4151, 0, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4153, 4153, 0, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4154, 0, 0, 0, 0, 4154, 4154, 0, 0, 0, 4154, 4154, 4154, 4154, 4154, 0, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4157, 4157, 4157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4157, 0, 0, 0, 4157, 0, 0, 0, 0, 0, 4157, 4158, 4158, 4158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4158, 4158, 0, 0, 0, 4158, 4162, 4162, 4162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4162, 4162, 0, 0, 0, 4162, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 0, 4163, 4163, 4163, 4163, 0, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 0, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4165, 4165, 4165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4165, 0, 0, 0, 4165, 0, 0, 0, 0, 0, 4165, 4166, 4166, 4166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4166, 4166, 4166, 0, 0, 4166, 4168, 4168, 4168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4168, 0, 4168, 0, 0, 4168, 4169, 4169, 4169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4169, 0, 0, 0, 4169, 0, 0, 0, 0, 0, 4169, 4170, 4170, 4170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4170, 4170, 4170, 0, 0, 4170, 4172, 4172, 4172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4172, 0, 4172, 0, 0, 4172, 4173, 4173, 0, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4174, 4174, 4174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4174, 0, 0, 0, 4174, 0, 0, 0, 0, 0, 4174, 4175, 4175, 4175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4175, 4175, 0, 0, 0, 4175, 4178, 4178, 4178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4178, 0, 0, 0, 4178, 0, 0, 0, 0, 0, 4178, 4179, 4179, 4179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4179, 4179, 0, 0, 0, 4179, 4182, 4182, 0, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4183, 0, 0, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 0, 4183, 4183, 4183, 4183, 0, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 0, 4183, 4183, 4183, 4183, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4185, 4185, 0, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4186, 4186, 4186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4186, 0, 0, 0, 4186, 0, 0, 0, 0, 0, 4186, 4187, 4187, 4187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4187, 4187, 0, 0, 0, 4187, 4190, 4190, 4190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4190, 0, 0, 0, 4190, 0, 0, 0, 0, 0, 4190, 4191, 4191, 4191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4191, 4191, 0, 0, 0, 4191, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 0, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4195, 4195, 0, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 0, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4196, 4196, 4196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4196, 0, 0, 0, 4196, 4197, 4197, 4197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4197, 4197, 0, 0, 0, 4197, 4198, 4198, 4198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4198, 0, 0, 0, 4198, 0, 0, 0, 0, 0, 4198, 4199, 4199, 4199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4199, 4199, 0, 0, 0, 4199, 4203, 0, 0, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 0, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 0, 4203, 4203, 4203, 4203, 4204, 0, 0, 4204, 0, 0, 0, 0, 0, 0, 0, 4204, 4204, 0, 0, 0, 4204, 0, 0, 0, 0, 0, 4204, 4206, 0, 4206, 4206, 4206, 4206, 4206, 0, 0, 0, 4206, 0, 4206, 4207, 0, 0, 4207, 0, 0, 4207, 0, 4207, 4207, 4207, 4207, 4207, 0, 0, 0, 4207, 0, 4207, 0, 0, 0, 4207, 4208, 4208, 0, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4209, 4209, 0, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4210, 4210, 0, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4211, 0, 0, 0, 0, 4211, 0, 0, 4211, 4211, 0, 4211, 0, 0, 0, 0, 4211, 4211, 4211, 0, 4211, 4212, 0, 4212, 4212, 4212, 4212, 4212, 0, 0, 0, 4212, 0, 4212, 0, 0, 0, 4212, 4213, 0, 4213, 4213, 4213, 4213, 4213, 0, 0, 0, 4213, 0, 4213, 4214, 0, 0, 4214, 0, 0, 4214, 0, 4214, 4214, 4214, 4214, 4214, 0, 0, 0, 4214, 0, 4214, 0, 0, 0, 4214, 4215, 4215, 4215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4215, 0, 0, 0, 4215, 0, 0, 0, 0, 0, 4215, 4216, 4216, 4216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4216, 4216, 0, 0, 0, 4216, 4219, 4219, 0, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 0, 4219, 4219, 0, 4219, 4219, 4219, 4219, 0, 4219, 4219, 4219, 4219, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 0, 4220, 4220, 4220, 4220, 4221, 4221, 4221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4221, 0, 0, 0, 4221, 0, 0, 0, 0, 0, 4221, 4222, 4222, 4222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4222, 4222, 0, 0, 0, 4222, 4227, 4227, 4227, 0, 0, 0, 0, 0, 0, 4227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4227, 4228, 4228, 4228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4228, 4228, 4228, 0, 0, 4228, 4229, 4229, 0, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4230, 0, 0, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 0, 4230, 4230, 4230, 4230, 0, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 0, 4230, 4230, 4230, 4230, 4231, 4231, 0, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4232, 4232, 4232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4232, 0, 0, 0, 4232, 4233, 4233, 4233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4233, 4233, 0, 0, 0, 4233, 4234, 0, 0, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 0, 4234, 4234, 4234, 4234, 4234, 4234, 4234, 0, 4234, 4234, 4234, 4234, 4236, 0, 0, 4236, 0, 0, 4236, 0, 4236, 4236, 4236, 4236, 4236, 0, 0, 0, 4236, 0, 4236, 0, 0, 0, 4236, 4237, 4237, 0, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4238, 4238, 0, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4239, 4239, 0, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4240, 4240, 0, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4240, 4241, 4241, 0, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4242, 4242, 0, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4243, 4243, 0, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4244, 4244, 0, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4245, 4245, 0, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4246, 4246, 0, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4247, 4247, 0, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4248, 4248, 0, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4249, 4249, 0, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4250, 4250, 0, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4250, 4251, 4251, 0, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4252, 4252, 0, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4252, 4253, 4253, 0, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4253, 4254, 4254, 0, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4254, 4255, 4255, 0, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4255, 4256, 4256, 0, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4257, 4257, 0, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4257, 4258, 4258, 0, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4259, 0, 4259, 4259, 4259, 4259, 4259, 0, 0, 0, 4259, 0, 4259, 4260, 0, 0, 4260, 0, 0, 4260, 0, 4260, 4260, 4260, 4260, 4260, 0, 0, 0, 4260, 0, 4260, 0, 0, 0, 4260, 4261, 4261, 0, 4261, 4261, 4261, 4261, 4261, 4261, 4261, 4261, 4261, 4261, 4261, 4261, 0, 4261, 4261, 0, 4261, 4261, 4261, 4261, 0, 4261, 4261, 4261, 4261, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 0, 4262, 4262, 4262, 4262, 4264, 4264, 4264, 0, 0, 0, 0, 0, 0, 4264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4264, 4265, 4265, 4265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4265, 4265, 4265, 0, 0, 4265, 4266, 4266, 0, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4268, 0, 0, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 0, 4268, 4268, 4268, 4268, 0, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 0, 4268, 4268, 4268, 4268, 4269, 4269, 0, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 0, 4270, 4270, 4270, 4270, 0, 4270, 4270, 4270, 4270, 4270, 4270, 4271, 4271, 0, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4271, 4272, 4272, 4272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4272, 4272, 0, 0, 0, 4272, 4273, 0, 0, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 0, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 0, 4273, 4273, 4273, 4273, 4274, 0, 0, 4274, 0, 0, 0, 0, 0, 0, 0, 4274, 4274, 0, 0, 0, 4274, 0, 0, 0, 0, 0, 4274, 4275, 4275, 0, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4276, 4276, 0, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4276, 4277, 4277, 0, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4278, 4278, 0, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4279, 4279, 0, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4280, 4280, 0, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4281, 4281, 0, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4282, 4282, 0, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4283, 4283, 0, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4284, 4284, 0, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4285, 4285, 0, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4286, 4286, 0, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4287, 4287, 0, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4288, 4288, 0, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4289, 4289, 0, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4290, 4290, 0, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4291, 4291, 0, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4292, 4292, 0, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4293, 4293, 0, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4294, 4294, 0, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4295, 4295, 0, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4296, 4296, 0, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4297, 4297, 0, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4298, 4298, 0, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4299, 4299, 0, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4300, 4300, 0, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4301, 4301, 0, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4302, 4302, 0, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4303, 4303, 0, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4304, 4304, 0, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4305, 4305, 0, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4306, 4306, 0, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4307, 4307, 0, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4308, 4308, 0, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4309, 4309, 0, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4310, 4310, 0, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4311, 4311, 0, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4312, 4312, 0, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4313, 0, 0, 4313, 0, 0, 4313, 0, 4313, 4313, 4313, 4313, 4313, 0, 0, 0, 4313, 0, 4313, 0, 0, 0, 4313, 4314, 0, 4314, 4314, 4314, 4314, 4314, 0, 0, 0, 4314, 0, 4314, 4315, 4315, 0, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4316, 0, 0, 4316, 0, 0, 4316, 0, 4316, 4316, 4316, 4316, 4316, 0, 0, 0, 4316, 0, 4316, 0, 0, 0, 4316, 4317, 4317, 0, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 0, 4317, 4317, 0, 4317, 4317, 4317, 4317, 0, 4317, 4317, 4317, 4317, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 0, 4318, 4318, 4318, 4318, 4320, 4320, 4320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4320, 4320, 4320, 0, 0, 4320, 4321, 4321, 0, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4322, 4322, 0, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4323, 0, 0, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 0, 4323, 4323, 4323, 4323, 0, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 0, 4323, 4323, 4323, 4323, 4324, 4324, 0, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 0, 4325, 4325, 4325, 4325, 0, 4325, 4325, 4325, 4325, 4325, 4325, 4326, 0, 0, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 0, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 0, 4326, 4326, 4326, 4326, 4327, 0, 0, 4327, 0, 0, 0, 0, 0, 0, 0, 4327, 4327, 0, 0, 0, 4327, 0, 0, 0, 0, 0, 4327, 4328, 4328, 0, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4329, 4329, 0, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4330, 4330, 0, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4331, 4331, 0, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4332, 4332, 0, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4333, 4333, 0, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4334, 4334, 0, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4334, 4335, 4335, 0, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4336, 4336, 0, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4337, 4337, 0, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4338, 4338, 0, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4339, 4339, 0, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4340, 4340, 0, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4341, 4341, 0, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4342, 4342, 0, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4343, 4343, 0, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4344, 4344, 0, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4345, 4345, 0, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4346, 4346, 0, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4347, 4347, 0, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4348, 4348, 0, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4349, 4349, 0, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4350, 4350, 0, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4350, 4351, 4351, 0, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4352, 4352, 0, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4353, 4353, 0, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4354, 4354, 0, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4355, 4355, 0, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4356, 4356, 0, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4357, 0, 0, 4357, 0, 0, 4357, 0, 4357, 4357, 4357, 4357, 4357, 0, 0, 0, 4357, 0, 4357, 0, 0, 0, 4357, 4358, 0, 4358, 4358, 4358, 4358, 4358, 0, 0, 0, 4358, 0, 4358, 4359, 4359, 0, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4360, 4360, 0, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4360, 4361, 4361, 0, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4362, 0, 0, 4362, 0, 0, 4362, 0, 4362, 4362, 4362, 4362, 4362, 0, 0, 0, 4362, 0, 4362, 0, 0, 0, 4362, 4363, 4363, 0, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4363, 4364, 4364, 0, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 0, 4364, 4364, 0, 4364, 4364, 4364, 4364, 0, 4364, 4364, 4364, 4364, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 0, 4365, 4365, 4365, 4365, 4366, 4366, 4366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4366, 4366, 4366, 0, 0, 4366, 4367, 4367, 0, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4368, 0, 0, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 0, 4368, 4368, 4368, 4368, 0, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 0, 4368, 4368, 4368, 4368, 4369, 0, 0, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 0, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 0, 4369, 4369, 4369, 4369, 4370, 0, 0, 4370, 0, 0, 0, 0, 0, 0, 0, 4370, 4370, 0, 0, 0, 4370, 0, 0, 0, 0, 0, 4370, 4371, 4371, 0, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4372, 4372, 0, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4373, 4373, 0, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4373, 4374, 4374, 0, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4374, 4375, 4375, 0, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4376, 4376, 0, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4377, 4377, 0, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4377, 4378, 4378, 0, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4379, 4379, 0, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4380, 4380, 0, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4381, 4381, 0, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4382, 4382, 0, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4383, 4383, 0, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4384, 4384, 0, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4385, 4385, 0, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4386, 4386, 0, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4387, 4387, 0, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4388, 0, 0, 4388, 0, 0, 4388, 0, 4388, 4388, 4388, 4388, 4388, 0, 0, 0, 4388, 0, 4388, 0, 0, 0, 4388, 4389, 0, 4389, 4389, 4389, 4389, 4389, 0, 0, 0, 4389, 0, 4389, 4390, 4390, 0, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4391, 0, 0, 4391, 0, 0, 4391, 0, 4391, 4391, 4391, 4391, 4391, 0, 0, 0, 4391, 0, 4391, 0, 0, 0, 4391, 4392, 4392, 0, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4393, 4393, 0, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 0, 4393, 4393, 0, 4393, 4393, 4393, 4393, 0, 4393, 4393, 4393, 4393, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 0, 4394, 4394, 4394, 4394, 4396, 4396, 4396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4396, 4396, 4396, 0, 0, 4396, 4397, 0, 0, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 0, 4397, 4397, 4397, 4397, 0, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 0, 4397, 4397, 4397, 4397, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4399, 0, 0, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 0, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 0, 4399, 4399, 4399, 4399, 4400, 0, 0, 4400, 0, 0, 0, 0, 0, 0, 0, 4400, 4400, 0, 0, 0, 4400, 0, 0, 0, 0, 0, 4400, 4401, 4401, 0, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4401, 4402, 4402, 0, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4402, 4403, 4403, 0, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4404, 4404, 0, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4405, 4405, 0, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4406, 4406, 0, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 4407, 4407, 0, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4408, 4408, 0, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4409, 4409, 0, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4410, 4410, 0, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4411, 4411, 0, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4411, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 0, 4412, 4412, 4412, 4412, 0, 4412, 4412, 4412, 4412, 4412, 4412, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 0, 4413, 4413, 4413, 4413, 0, 4413, 4413, 4413, 4413, 4413, 4413, 4414, 0, 0, 4414, 0, 0, 4414, 0, 4414, 4414, 4414, 4414, 4414, 0, 0, 0, 4414, 0, 4414, 0, 0, 0, 4414, 4415, 0, 4415, 4415, 4415, 4415, 4415, 0, 0, 0, 4415, 0, 4415, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 0, 4418, 4418, 4418, 4418, 0, 4418, 4418, 4418, 4418, 4418, 4418, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 0, 4419, 4419, 4419, 4419, 4423, 4423, 4423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4423, 4423, 4423, 0, 0, 4423, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 0, 4424, 4424, 4424, 4424, 0, 4424, 4424, 4424, 4424, 4424, 4424, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4426, 0, 0, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 0, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 0, 4426, 4426, 4426, 4426, 4427, 0, 0, 4427, 0, 0, 0, 0, 0, 0, 0, 4427, 4427, 0, 0, 0, 4427, 0, 0, 0, 0, 0, 4427, 4428, 4428, 0, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4429, 4429, 0, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4430, 4430, 0, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4431, 4431, 0, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4432, 4432, 0, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4433, 4433, 0, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 0, 4434, 4434, 4434, 4434, 0, 4434, 4434, 4434, 4434, 4434, 4434, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 4435, 0, 4435, 4435, 4435, 4435, 0, 4435, 4435, 4435, 4435, 4435, 4435, 4436, 0, 0, 4436, 0, 0, 4436, 0, 4436, 4436, 4436, 4436, 4436, 0, 0, 0, 4436, 0, 4436, 0, 0, 0, 4436, 4438, 0, 4438, 4438, 4438, 4438, 4438, 0, 0, 0, 4438, 0, 4438, 4440, 4440, 0, 0, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 0, 4440, 0, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4441, 0, 0, 0, 0, 4441, 0, 0, 4441, 4441, 0, 4441, 0, 0, 0, 0, 4441, 4441, 4441, 0, 4441, 4442, 4442, 0, 0, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 0, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4443, 4443, 0, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 0, 4443, 4443, 0, 4443, 4443, 4443, 4443, 0, 4443, 4443, 4443, 4443, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 0, 4444, 4444, 4444, 4444, 4448, 4448, 4448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4448, 4448, 4448, 0, 0, 4448, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 0, 4449, 4449, 4449, 4449, 0, 4449, 4449, 4449, 4449, 4449, 4449, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 0, 4450, 4450, 4450, 4450, 0, 4450, 4450, 4450, 4450, 4450, 4450, 4451, 4451, 0, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4452, 0, 0, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 0, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 0, 4452, 4452, 4452, 4452, 4453, 0, 0, 4453, 0, 0, 0, 0, 0, 0, 0, 4453, 4453, 0, 0, 0, 4453, 0, 0, 0, 0, 0, 4453, 4454, 4454, 0, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4455, 4455, 0, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4456, 4456, 0, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 0, 4457, 4457, 4457, 4457, 0, 4457, 4457, 4457, 4457, 4457, 4457, 4458, 0, 0, 4458, 0, 0, 4458, 0, 4458, 4458, 4458, 4458, 4458, 0, 0, 0, 4458, 0, 4458, 0, 0, 0, 4458, 4460, 0, 4460, 4460, 4460, 4460, 4460, 0, 0, 0, 4460, 0, 4460, 4461, 0, 4461, 4461, 4461, 4461, 4461, 0, 0, 0, 4461, 0, 4461, 4463, 0, 0, 0, 0, 4463, 0, 0, 4463, 4463, 0, 4463, 0, 0, 0, 0, 0, 4463, 4463, 0, 4463, 4464, 0, 0, 0, 0, 4464, 0, 0, 4464, 4464, 0, 4464, 0, 0, 0, 0, 4464, 4464, 4464, 0, 4464, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 0, 4465, 4465, 4465, 4465, 4466, 4466, 0, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4467, 4467, 0, 0, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 0, 4467, 0, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4468, 0, 0, 0, 0, 4468, 0, 0, 4468, 4468, 0, 4468, 0, 0, 0, 0, 0, 4468, 4468, 0, 4468, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 0, 4469, 4469, 4469, 4469, 0, 4469, 4469, 4469, 4469, 4469, 4469, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 0, 4470, 4470, 4470, 4470, 0, 4470, 4470, 4470, 4470, 4470, 4470, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 0, 4471, 4471, 4471, 4471, 0, 4471, 4471, 4471, 4471, 4471, 4471, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 0, 4472, 4472, 4472, 4472, 0, 4472, 4472, 4472, 4472, 4472, 4472, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760, 3760 } ; 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 "scanner.l" #define INITIAL 0 /****************************************************************************** * * $Id$ * * Copyright (C) 1997-1999 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. * * All output generated with Doxygen is not covered by this license. * */ #line 18 "scanner.l" /* * includes */ #include #include #include #include #include #include "qtbc.h" #include #include #include #include "scanner.h" #include "entry.h" #include "doxygen.h" #include "message.h" #include "config.h" #include "util.h" #include "index.h" #include "defargs.h" #include "language.h" #include "outputlist.h" #ifndef WIN32 #include #endif #define YY_NEVER_INTERACTIVE 1 MemberGroupDict memberGroupDict(1009); // dictionary of the member groups heading /* ----------------------------------------------------------------- * * statics */ static bool insideArgumentList; static QCString className; static QCString memberName; static QCString refName; static OutputList * outDoc; static QCString code; static QCString linkRef; static QCString linkText; static QCString codeBlock; static const char * inputString; static int inputPosition; static int lastContext; static int lastCContext; static int lastDocContext; static int lastDocRelContext; static int lastCPPContext; static int lastSkipSharpContext; static int lastSkipRoundContext; static int lastBriefContext; static int lastVerbState; static int lastStringContext; static int lastCurlyContext; static int lastCodeState; static int lastAfterDocContext; static int lastGroupContext; static int lastMemberGroupContext; static int lastFormulaContext; static int lastAnchorContext; static int nextDefContext; static int overloadContext; static Protection protection; static Protection baseProt; static int bracketCount = 0 ; static int sharpCount = 0 ; static int roundCount = 0 ; static int ifCount = 0 ; static Entry* current_root = 0 ; static Entry* global_root = 0 ; static Entry* current = 0 ; static Entry* previous = 0 ; static Entry* tempEntry = 0 ; static int yyLineNr = 0 ; static int anonCount = 0 ; static char yyFileName[2048] ; static int lastMemberGroupLine; static bool sig; static bool slot; static bool gstat; static bool removeSlashes; static Specifier virt; static Specifier baseVirt; static bool exampleDoc; static QCString exampleName; static QCString htmlUrl,htmlText; static QCString currentIncludeFile; static QCString msType,msName,msArgs; static int memberGroupId = -1; static int includeFileOffset = 0; static int includeFileLength = 0; static bool firstLine; static bool isTypedef; static bool inParamBlock; static bool inRetValBlock; static bool inExceptionBlock; static bool inSeeBlock; static bool inReturnBlock; static bool inAuthorBlock; static bool inVersionBlock; static bool inDateBlock; static bool inBugBlock; static bool inWarningBlock; static bool inParBlock; static bool firstSeeArg; static char afterDocTerminator; static int tmpDocType; static QCString sectionLabel; static QCString sectionTitle; static SectionInfo::SectionType sectionType; static QCString funcPtrType; static QCString templateStr; static QCString baseName; static QCString *specName; static QCString formulaText; static QCString sectionRef; // state variable for reading the argument list of a function static int argRoundCount; static int argSharpCount; static int currentArgumentContext; static int lastCopyArgStringContext; static int lastCopyArgContext; static QCString *copyArgString; static ArgumentList *currentArgumentList; static QCString *currentTemplateSpec; static QCString curImageName; //----------------------------------------------------------------------------- static void initParser() { insideArgumentList=FALSE; className.resize(0); memberName.resize(0); refName.resize(0); code.resize(0); linkRef.resize(0); linkText.resize(0); codeBlock.resize(0); htmlUrl.resize(0); htmlText.resize(0); currentIncludeFile.resize(0); sectionLabel.resize(0); sectionTitle.resize(0); baseName.resize(0); formulaText.resize(0); protection = Public; baseProt = Public; bracketCount = 0; sharpCount = 0; roundCount = 0; ifCount = 0; memberGroupId = -1; sig = FALSE; slot = FALSE; gstat = FALSE; virt = Normal; baseVirt = Normal; includeFileOffset = 0; includeFileLength = 0; firstLine = TRUE; isTypedef = FALSE; inParamBlock = FALSE; inRetValBlock = FALSE; inExceptionBlock = FALSE; inSeeBlock = FALSE; inReturnBlock = FALSE; inAuthorBlock = FALSE; inVersionBlock = FALSE; inDateBlock = FALSE; inBugBlock = FALSE; inWarningBlock = FALSE; inParBlock = FALSE; firstSeeArg = FALSE; } //----------------------------------------------------------------------------- void scanString(const char *s); //----------------------------------------------------------------------------- class TableElem { public: TableElem(int r,int c); ~TableElem(); int getRow() { return row; } int getCol() { return col; } OutputList *outputList() { return ol; } private: OutputList *ol; int row; int col; }; TableElem::TableElem(int r,int c) { //printf("TableElem::TableElem(%d,%d)\n",r,c); ol=new OutputList(outDoc); outDoc=ol; row=r; col=c; } TableElem::~TableElem() { //printf("TableElem::~TableElem(%d,%d)\n",row,col); delete ol; } class Table { public: Table(); ~Table(); void newRow(); void newElem(); private: OutputList *parentDoc; QList *elemList; int curRow; int curCol; int rows; int cols; }; Table::Table() { parentDoc=outDoc; elemList=new QList; elemList->setAutoDelete(TRUE); curRow=curCol=rows=cols=0; } Table::~Table() { //printf("Table::~Table()\n"); // use elemList & cols & rows if (cols>0 && rows>0) { parentDoc->startTable(cols); TableElem *e=elemList->first(); while (e) { if (e->getRow()>0) { if (e->getCol()==0) { if (e->getRow()>1) parentDoc->endTableRow(); parentDoc->nextTableRow(); } else { parentDoc->nextTableColumn(); } *parentDoc+=*e->outputList(); parentDoc->endTableColumn(); } e=elemList->next(); } parentDoc->endTable(); } delete elemList; outDoc=parentDoc; } void Table::newRow() { //printf("Table::newRow()\n"); curRow++; if (curRow>rows) rows=curRow; curCol=0; } void Table::newElem() { //printf("Table::newElem(%d,%d)\n",curRow,curCol); TableElem *te = new TableElem(curRow,curCol); elemList->append(te); curCol++; if (curCol>cols) cols=curCol; } static QStack tableStack; static Table *curTable; static void startTable() { //printf("startTable()\n"); curTable=new Table; tableStack.push(curTable); } static void endTable() { //printf("endTable()\n"); delete tableStack.pop(); // the destructor adds the table to the stream! curTable=tableStack.top(); } //----------------------------------------------------------------------------- static void lineCount() { for( const char* c = yytext ; *c ; ++c ) yyLineNr += (*c == '\n') ; } static void endArgumentList() { if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } } static void addType( Entry* current ) { if( current->type.length() ) current->type += ' ' ; current->type += current->name ; current->name.resize(0) ; if( current->type.length() ) current->type += ' ' ; current->type += current->args ; current->args.resize(0) ; current->argList->clear(); } static void includeFile(OutputList &ol,const char *fileName,bool quiet) { //FileInfo *f; bool ambig; FileDef *fd; if ((fd=findFileDef(&exampleNameDict,fileName,ambig))) { currentIncludeFile=fileToString(fd->absFilePath()); includeFileOffset=0; includeFileLength=currentIncludeFile.length(); OutputList codeFrag(&ol); parseCode(codeFrag,0,currentIncludeFile,exampleDoc,exampleName); if (!quiet) { ol.startCodeFragment(); ol+=codeFrag; ol.endCodeFragment(); } } else if (ambig) { warn("Include file name %s is ambigious.\n",fileName); warn("Possible candidates:\n"); //includeFileList.writeMatches(fileName); showFileDefMatches(&exampleNameDict,fileName); } else { warn("Warning: example file %s is not found. ",fileName); warn("Check your EXAMPLE_PATH\n"); } } static void verbIncludeFile(OutputList &ol,const char *name) { //FileInfo *f; bool ambig; FileDef *fd; if ((fd=findFileDef(&exampleNameDict,name,ambig))) { ol.startCodeFragment(); ol.codify(fileToString(fd->absFilePath())); ol.endCodeFragment(); } else if (ambig) { warn("Include file name %s is ambigious.\n",name); warn("Possible candidates:\n"); showFileDefMatches(&exampleNameDict,name); } else { warn("Warning: example file %s is not found. ",name); warn("Check your EXAMPLE_PATH\n"); } } static QCString stripQuotes(const char *s) { QCString name; if (s==0 || *s==0) return name; name=s; if (name.at(0)=='"' && name.at(name.length()-1)=='"') { name=name.mid(1,name.length()-2); } return name; } static QCString stripKnownExtensions(const char *text) { QCString result=text; if (result.right(4)==".tex") result=result.left(result.length()-4); else if (result.right(5)==".html") result=result.left(result.length()-5); //printf("%s stripKnowExtensions(%s)\n",result.data(),text); return result; } static void skipLine(OutputList &ol,const char *key) { bool found=FALSE; while (!found) { QCString s; char c; while ( includeFileOffset0 || includeFileOffset==includeFileLength) found=TRUE; } if (s.find(key)!=-1) { ol.writeString(" "); parseCode(ol,className,s,exampleDoc,exampleName); ol.writeString("\n"); } } static void showUntil(OutputList &ol,const char *key) { bool found=FALSE; while (!found) { QCString s; char c; while ( includeFileOffset0) { ol.writeString(" "); parseCode(ol,className,s,exampleDoc,exampleName); ol.writeString("\n"); if (s.find(key)!=-1) found=TRUE; } if (includeFileOffset==includeFileLength) found=TRUE; } } static int newMemberGroupId() { static int curGroupId=0; return curGroupId++; } static void newDocState(); //----------------------------------------------------------------- static bool inBlock() { return inParamBlock || inRetValBlock || inSeeBlock || inReturnBlock || inAuthorBlock || inVersionBlock || inDateBlock || inWarningBlock || inBugBlock || inParBlock || inExceptionBlock; } static void endBlock() { if (inParamBlock || inRetValBlock) { outDoc->endDescTableData(); outDoc->endDescTable(); } outDoc->endDescList(); inParamBlock=inRetValBlock=inSeeBlock=inReturnBlock=inAuthorBlock= inVersionBlock=inDateBlock=inBugBlock=inWarningBlock= inParBlock=inExceptionBlock=FALSE; } static void addSection() { //printf("New section pageName=%s label=%s title=%s\n", // current->name.data(),sectionLabel.data(),sectionTitle.data()); if (sectionLabel.isEmpty()) return; if (sectionDict[sectionLabel]==0) { SectionInfo *si=new SectionInfo(sectionLabel,sectionTitle,sectionType); //printf("Adding section addr=%p label=`%s' sectionTitle=`%s' fileName=%s\n",si,sectionLabel.data(),sectionTitle.data(),si->fileName.data()); sectionDict.insert(sectionLabel,si); current->anchors->append(new QCString(sectionLabel)); } else { warn("Warning: Duplicate label %s found!\n",sectionLabel.data()); } } // Adds a formula text to the list/dictionary of formulas if it was // not already added. Returns the label of the formula. static QCString addFormula() { QCString formLabel; QCString fText=formulaText.simplifyWhiteSpace(); Formula *f=0; if ((f=formulaDict[fText])==0) { f = new Formula(fText); formulaList.append(f); formulaDict.insert(fText,f); formLabel.sprintf("\\form#%d",f->getId()); formulaNameDict.insert(formLabel,f); } else { formLabel.sprintf("\\form#%d",f->getId()); } return formLabel; } static bool nameIsOperator(QCString &name) { return name.right(8)=="operator" && (name.length()==8 || !isId(name.at(name.length()-9))); } static void checkDocs() { if ((current->brief.length()>2 && current->brief.at(0)=='<' && current->brief.at(1)==' ') || (current->doc.length()>2 && current->doc.at(0)=='<' && current->doc.at(1)==' ') ) { warn("Warning: Found lonely '<' symbol at the start of the documentation " "at line %d of %s\n",yyLineNr,yyFileName); } } static bool curLatexState; static bool curManState; static bool curHtmlState; static void storeOutputListState() { curLatexState = outDoc->isEnabled(OutputGenerator::Latex); curHtmlState = outDoc->isEnabled(OutputGenerator::Html); curManState = outDoc->isEnabled(OutputGenerator::Man); } static void restoreOutputListState() { if (curLatexState) outDoc->enable(OutputGenerator::Latex); else outDoc->disable(OutputGenerator::Latex); if (curHtmlState) outDoc->enable(OutputGenerator::Html); else outDoc->disable(OutputGenerator::Html); if (curManState) outDoc->enable(OutputGenerator::Man); else outDoc->disable(OutputGenerator::Man); } enum ImageTypes { IT_Html, IT_Latex }; // search for an image in the imageNameDict and if found // copies the image to the output directory (which is the // html directory if type==0 or the latex directory if type==1) static QCString findAndCopyImage(const char *fileName,ImageTypes type) { QCString result; bool ambig; FileDef *fd; if ((fd=findFileDef(&imageNameDict,fileName,ambig))) { QFile inImage(fd->absFilePath()); if (inImage.open(IO_ReadOnly)) { result = fileName; int i; if ((i=result.findRev('/'))!=-1 || (i=result.findRev('\\'))!=-1) { result.right(result.length()-i-1); } QCString outputDir; switch(type) { case IT_Html: outputDir = Config::htmlOutputDir; break; case IT_Latex: outputDir = Config::latexOutputDir; break; } QCString outputFile = outputDir+"/"+result; QFile outImage(outputFile); if (outImage.open(IO_WriteOnly)) // copy the image { char *buffer = new char[inImage.size()]; inImage.readBlock(buffer,inImage.size()); outImage.writeBlock(buffer,inImage.size()); outImage.flush(); delete buffer; } else { warn("Warning: could not write output image %s\n",outputFile.data()); } } else { warn("Warning: could not open image %s\n",fileName); } } else if (ambig) { warn("Warning: image file name %s is ambigious.\n",fileName); warn("Possible candidates:\n"); //includeFileList.writeMatches(fileName); showFileDefMatches(&imageNameDict,fileName); } else { result=fileName; if (result.left(5)!="http:") { warn("Warning: image file %s is not found in IMAGE_PATH: " "assuming external image. ",fileName); } } return result; } /* ----------------------------------------------------------------- */ //static void addToBody(const char *text); //static void addToBodyCond(const char *text); /* ----------------------------------------------------------------- */ #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; while( c < max_size && inputString[inputPosition] ) { *buf = inputString[inputPosition++] ; //printf("%d (%c)\n",*buf,*buf); c++; buf++; } return c; } //ATTR ((({BN}+[^\>]+)/">")?) #define Define 1 #define DefineArg 2 #define DefineEnd 3 #define Include 4 #define ClassName 5 #define ClassVar 6 #define Bases 7 #define BasesProt 8 #define NextSemi 9 #define FindMembers 10 #define FindMemberName 11 #define FindFields 12 #define FindFieldArg 13 #define Function 14 #define FuncRound 15 #define ExcpRound 16 #define FuncQual 17 #define Operator 18 #define Array 19 #define Curly 20 #define Using 21 #define UsingDirective 22 #define NameSpaceDocArg1 23 #define SkipCurly 24 #define SkipCurlyCpp 25 #define SkipCurlyEndDoc 26 #define SkipString 27 #define SkipInits 28 #define SkipCPP 29 #define SkipCPPBlock 30 #define SkipComment 31 #define SkipCxxComment 32 #define SkipCurlyBlock 33 #define SkipRoundBlock 34 #define SkipCode 35 #define Sharp 36 #define SkipSharp 37 #define SkipRound 38 #define TypedefName 39 #define Comment 40 #define Doc 41 #define JavaDoc 42 #define ClassDoc 43 #define LineDoc 44 #define DefLineDoc 45 #define ClassDocArg1 46 #define ClassDocArg2 47 #define ClassDocArg3 48 #define ClassDocFunc 49 #define ClassDocFuncPtr 50 #define ClassDocFuncQual 51 #define ClassDocFuncSkipLine 52 #define ClassDocFuncExc 53 #define ClassDocDefine 54 #define ClassDocRelates 55 #define ClassDocBrief 56 #define ClassDocOverload 57 #define ClassDefineArgs 58 #define GroupDocArg1 59 #define GroupDocArg2 60 #define GroupName 61 #define GroupHeader 62 #define AfterDoc 63 #define AfterDocBrief 64 #define AfterDocLine 65 #define PageDoc 66 #define PageDocTitle 67 #define PageDocArg1 68 #define PageDocArg2 69 #define FileDocArg1 70 #define FileDocArg2 71 #define ExampleDoc 72 #define ExampleDocArg1 73 #define EnumDoc 74 #define EnumDocArg1 75 #define FuncPtr 76 #define EndFuncPtr 77 #define FuncFunc 78 #define FuncFuncEnd 79 #define FuncFuncType 80 #define MemberSpec 81 #define MemberSpecSkip 82 #define SkipVerbatim 83 #define Text 84 #define DocScan 85 #define DocParam 86 #define DocException 87 #define DocHtmlScan 88 #define DocLatexScan 89 #define DocEmphasis 90 #define DocBold 91 #define DocCode 92 #define DocCodeBlock 93 #define DocInternal 94 #define DocLink 95 #define DocLinkText 96 #define DocSkipWord 97 #define DocInclude 98 #define DocDontInclude 99 #define DocDescItem 100 #define DocHtmlLink 101 #define DocHtmlAnchor 102 #define DocHtmlHref1 103 #define DocHtmlHref2 104 #define DocBaseClass 105 #define DocSkiplineKey 106 #define DocSkipKey 107 #define DocLineKey 108 #define DocUntilKey 109 #define DocKeyEnd 110 #define DocPar 111 #define DocRefName 112 #define DocVerbatim 113 #define DocVerbInc 114 #define DocIndexWord 115 #define DocRef 116 #define DocRefArg 117 #define DocRefArgStart 118 #define DocRefItem 119 #define DocRefItemName 120 #define DocImage 121 #define DocHtmlImageName 122 #define DocLatexImageName 123 #define DocLatexImageWidth 124 #define SectionLabel 125 #define SectionTitle 126 #define SkipTemplate 127 #define EndTemplate 128 #define CopyArgString 129 #define CopyArgRound 130 #define CopyArgSharp 131 #define ReadFuncArgType 132 #define ReadTempArgs 133 #define Specialization 134 #define DocSkipHtmlComment 135 #define ReadFormulaShort 136 #define ReadFormulaLong 137 #define AnchorLabel 138 /* 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 935 "scanner.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 >= 3761 ) 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] != 28860 ); 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; } 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; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP #line 937 "scanner.l" { // new file if (memberGroupId!=-1) { warn("Warning: Missing \\endmgroup in file %s\n",yyFileName); memberGroupId=-1; } yyLineNr= 0 ; // there is always an extra newline at the start of the file int i; for( i = 0 ; yytext[i+1] != 6 ; i++ ) yyFileName[i] = yytext[i+1] ; yyFileName[i] = 0 ; msg("Parsing file %s...\n",yyFileName); current_root = global_root ; initParser(); current->reset(); int sec=guessSection(yyFileName); if (sec) { current->name = yyFileName; current->name = current->name; current->section = sec; current_root->addSubEntry(current); current = new Entry; } BEGIN( FindMembers ); } YY_BREAK case 2: YY_RULE_SETUP #line 963 "scanner.l" YY_BREAK /* ^{BL} { if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } else { outDoc->newParagraph(); } if (inBlock()) endBlock(); } */ case 3: YY_RULE_SETUP #line 978 "scanner.l" { BEGIN(DocSkipHtmlComment); } YY_BREAK case 4: YY_RULE_SETUP #line 979 "scanner.l" { BEGIN(DocScan); } YY_BREAK case 5: YY_RULE_SETUP #line 980 "scanner.l" YY_BREAK case 6: YY_RULE_SETUP #line 981 "scanner.l" { outDoc->writeCopyright(); } YY_BREAK case 7: YY_RULE_SETUP #line 982 "scanner.l" { outDoc->writeQuote(); } YY_BREAK case 8: YY_RULE_SETUP #line 983 "scanner.l" { outDoc->writeUmlaut(yytext[1]); } YY_BREAK case 9: YY_RULE_SETUP #line 984 "scanner.l" { outDoc->writeAcute(yytext[1]); } YY_BREAK case 10: YY_RULE_SETUP #line 985 "scanner.l" { outDoc->writeGrave(yytext[1]); } YY_BREAK case 11: YY_RULE_SETUP #line 986 "scanner.l" { outDoc->writeCirc(yytext[1]); } YY_BREAK case 12: YY_RULE_SETUP #line 987 "scanner.l" { outDoc->writeTilde(yytext[1]); } YY_BREAK case 13: YY_RULE_SETUP #line 988 "scanner.l" { QCString envvar=&yytext[2]; envvar=envvar.left(envvar.length()-1); outDoc->docify(getenv(envvar)); } YY_BREAK case 14: *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 993 "scanner.l" { outDoc->disableAllBut(OutputGenerator::Html); BEGIN(DocHtmlScan); } YY_BREAK case 15: *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 997 "scanner.l" { outDoc->enableAll(); BEGIN(DocScan); } YY_BREAK case 16: *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 1001 "scanner.l" { outDoc->disableAllBut(OutputGenerator::Latex); BEGIN(DocLatexScan); } YY_BREAK case 17: YY_RULE_SETUP #line 1005 "scanner.l" { outDoc->writeString(yytext); } YY_BREAK case 18: YY_RULE_SETUP #line 1008 "scanner.l" { char c[2]; c[0]=*yytext;c[1]='\0'; outDoc->writeString(c); } YY_BREAK case 19: *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 1013 "scanner.l" { outDoc->enableAll(); BEGIN(DocScan); } YY_BREAK case 20: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 11; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1017 "scanner.l" YY_BREAK case 21: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 14; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1018 "scanner.l" { writeMemberList(*outDoc); } YY_BREAK case 22: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 15; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1019 "scanner.l" { writeClassHierarchy(*outDoc); } YY_BREAK case 23: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 19; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1020 "scanner.l" { writeAnnotatedClassList(*outDoc); } YY_BREAK case 24: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 15; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1021 "scanner.l" { /*TODO: fix this writeHeaderFileList(*outDoc); */ } YY_BREAK case 25: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1022 "scanner.l" { BEGIN( DocSkipWord ); } YY_BREAK case 26: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1023 "scanner.l" { BEGIN( DocSkipWord ); } YY_BREAK case 27: *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 1024 "scanner.l" { BEGIN( DocVerbInc ); } YY_BREAK case 28: YY_RULE_SETUP #line 1025 "scanner.l" { verbIncludeFile(*outDoc,stripQuotes(yytext)); BEGIN( DocScan ); } YY_BREAK case 29: *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 1029 "scanner.l" { outDoc->startCodeFragment(); BEGIN(DocVerbatim); } YY_BREAK case 30: *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 1033 "scanner.l" { outDoc->endCodeFragment(); BEGIN(DocScan); } YY_BREAK case 31: YY_RULE_SETUP #line 1037 "scanner.l" { //printf("docifying: %s\n",yytext); outDoc->codify(yytext); } YY_BREAK case 32: YY_RULE_SETUP #line 1041 "scanner.l" { outDoc->codify(yytext); } YY_BREAK case 33: YY_RULE_SETUP #line 1044 "scanner.l" { //printf("char %c\n",*yytext); char c[2];c[0]=*yytext;c[1]='\0'; outDoc->codify(c); } YY_BREAK case 34: *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 1049 "scanner.l" { if (!Config::internalDocsFlag) { outDoc->newParagraph(); scanString(theTranslator->trForInternalUseOnly()+"\n"); //outDoc->writeString("For internal use only.\n"); BEGIN( DocInternal ); } } YY_BREAK case 35: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1058 "scanner.l" { outDoc->newParagraph(); scanString(theTranslator->trReimplementedForInternalReasons()+"\n"); } YY_BREAK case 36: *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 1062 "scanner.l" { BEGIN( DocLink ); } YY_BREAK case 37: YY_RULE_SETUP #line 1063 "scanner.l" { BEGIN( DocScan ); } YY_BREAK case 38: YY_RULE_SETUP #line 1064 "scanner.l" { linkRef = stripKnownExtensions(yytext); linkText = ""; BEGIN( DocLinkText ); } YY_BREAK case 39: YY_RULE_SETUP #line 1069 "scanner.l" { linkText += *yytext; } YY_BREAK case 40: YY_RULE_SETUP #line 1070 "scanner.l" { linkText += " "; } YY_BREAK case 41: YY_RULE_SETUP #line 1071 "scanner.l" { // <- needed for things like \endlink. //printf("GenerateLink className=`%s' linkRef=`%s' linkText=`%s'\n", // className.data(),linkRef.data(),linkText.data()); generateLink(*outDoc,className,linkRef,inSeeBlock,linkText); BEGIN( DocScan ); } YY_BREAK case 42: YY_RULE_SETUP #line 1077 "scanner.l" { BEGIN(DocRef); } YY_BREAK case 43: YY_RULE_SETUP #line 1080 "scanner.l" { generateLink(*outDoc,className,yytext,TRUE,0); BEGIN( DocScan ); } YY_BREAK case 44: *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 1084 "scanner.l" { warn("Warning: \\endlink without \\link " "in documentation of %s\n", refName.data()); } YY_BREAK case 45: *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 1087 "scanner.l" { BEGIN(DocIndexWord); } YY_BREAK case 46: YY_RULE_SETUP #line 1090 "scanner.l" { Formula *formula=formulaNameDict[yytext]; if (formula) { QCString formName; formName.sprintf("form-%d.gif",formula->getId()); outDoc->writeFormula(formName,formula->getFormulaText()); } } YY_BREAK case 47: YY_RULE_SETUP #line 1099 "scanner.l" { //printf("Adding %s to index\n",yytext); outDoc->addToIndex(yytext,0); BEGIN(DocScan); } YY_BREAK case 48: YY_RULE_SETUP #line 1104 "scanner.l" { if (insideArgumentList) { outDoc->writeListItem(); } else { outDoc->startItemList(); outDoc->writeListItem(); insideArgumentList=TRUE; } } YY_BREAK case 49: YY_RULE_SETUP #line 1116 "scanner.l" { BEGIN(DocPar); } YY_BREAK case 50: YY_RULE_SETUP #line 1119 "scanner.l" { endArgumentList(); if (inBlock()) endBlock(); inParBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); outDoc->docify(((QCString)yytext).stripWhiteSpace()); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); BEGIN(DocScan); } YY_BREAK case 51: YY_RULE_SETUP #line 1131 "scanner.l" { endArgumentList(); if (!inWarningBlock) { if (inBlock()) endBlock(); inWarningBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Warning: "); outDoc->startBold(); scanString(theTranslator->trWarning()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 52: YY_RULE_SETUP #line 1150 "scanner.l" { endArgumentList(); if (!inBugBlock) { if (inBlock()) endBlock(); inBugBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Bugs and limitations: "); outDoc->startBold(); scanString(theTranslator->trBugsAndLimitations()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 53: YY_RULE_SETUP #line 1169 "scanner.l" { endArgumentList(); if (!inVersionBlock) { if (inBlock()) endBlock(); inVersionBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Version: "); outDoc->startBold(); scanString(theTranslator->trVersion()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 54: YY_RULE_SETUP #line 1188 "scanner.l" { endArgumentList(); if (!inDateBlock) { if (inBlock()) endBlock(); inDateBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Date: "); outDoc->startBold(); scanString(theTranslator->trDate()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 55: YY_RULE_SETUP #line 1207 "scanner.l" { endArgumentList(); if (!inAuthorBlock) { if (inBlock()) endBlock(); inAuthorBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Author(s): "); outDoc->startBold(); scanString(theTranslator->trAuthors()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->docify(", "); } } YY_BREAK case 56: YY_RULE_SETUP #line 1226 "scanner.l" { endArgumentList(); if (!inReturnBlock) { if (inBlock()) endBlock(); inReturnBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Returns: "); outDoc->startBold(); scanString(theTranslator->trReturns()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } } YY_BREAK case 57: YY_RULE_SETUP #line 1241 "scanner.l" { endArgumentList(); if (!inSeeBlock) { if (inBlock()) endBlock(); inSeeBlock=TRUE; //firstSeeArg=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("See also: "); outDoc->startBold(); scanString(theTranslator->trSeeAlso()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->docify(", "); } } YY_BREAK case 58: YY_RULE_SETUP #line 1261 "scanner.l" { endArgumentList(); if (!inParamBlock) { if (inBlock()) endBlock(); inParamBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trParameters()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); outDoc->startDescTable(); } else { outDoc->endDescTableData(); } BEGIN(DocParam); } YY_BREAK case 59: YY_RULE_SETUP #line 1281 "scanner.l" { endArgumentList(); if (!inRetValBlock) { if (inBlock()) endBlock(); inRetValBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trReturnValues()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); outDoc->startDescTable(); } else { outDoc->endDescTableData(); } BEGIN(DocParam); } YY_BREAK case 60: YY_RULE_SETUP #line 1301 "scanner.l" { endArgumentList(); if (!inExceptionBlock) { if (inBlock()) endBlock(); inExceptionBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Exceptions: "); outDoc->startBold(); scanString(theTranslator->trExceptions()+": "); outDoc->endBold(); outDoc->endDescTitle(); } BEGIN(DocException); } YY_BREAK case 61: YY_RULE_SETUP #line 1316 "scanner.l" YY_BREAK case 62: YY_RULE_SETUP #line 1317 "scanner.l" { outDoc->startDescTableTitle(); outDoc->startEmphasis(); outDoc->docify(yytext); outDoc->endEmphasis(); outDoc->endDescTableTitle(); outDoc->startDescTableData(); BEGIN(DocScan); } YY_BREAK case 63: YY_RULE_SETUP #line 1326 "scanner.l" { outDoc->writeDescItem(); outDoc->startEmphasis(); outDoc->docify(yytext); outDoc->endEmphasis(); outDoc->docify(" - "); BEGIN(DocScan); } YY_BREAK case 64: YY_RULE_SETUP #line 1334 "scanner.l" { QCString secName=&yytext[9]; // skip "\section " secName=secName.left(secName.length()-1); // remove \n //printf("SectionName %s found\n",secName.data()); SectionInfo *sec; if ((sec=sectionDict[secName])) { //printf("Title %s\n",sec->title.data()); outDoc->writeSection(sec->label,sec->title, sec->type==SectionInfo::Subsection); } } YY_BREAK case 65: YY_RULE_SETUP #line 1346 "scanner.l" { QCString secName=&yytext[8]; secName=secName.left(secName.length()-1); SectionInfo *sec; if ((sec=sectionDict[secName])) { outDoc->writeAnchor(sec->label); } } YY_BREAK case 66: YY_RULE_SETUP #line 1355 "scanner.l" { BEGIN(DocRefName); } YY_BREAK case 67: YY_RULE_SETUP #line 1358 "scanner.l" { BEGIN(DocRefItem); } YY_BREAK case 68: YY_RULE_SETUP #line 1361 "scanner.l" { QCString ref=yytext; SectionInfo *sec; if ((sec=sectionDict[ref])) { QCString text; if (sec->title.isEmpty()) text=sec->label; else text=sec->title; if (sec->type==SectionInfo::Anchor) { outDoc->writeSectionRefAnchor(sec->fileName,sec->label,text); } else { //printf(" ref sec=%p sec->fileName=%s\n",sec,sec->fileName.data()); outDoc->writeSectionRef(sec->fileName,sec->label,text); } } else { warn("Warning: reference to unknown section %s!\n",yytext); outDoc->writeBoldString("unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 69: YY_RULE_SETUP #line 1388 "scanner.l" { sectionRef=yytext; BEGIN(DocRefArgStart); } YY_BREAK case 70: YY_RULE_SETUP #line 1392 "scanner.l" { BEGIN(DocRefArg); } YY_BREAK case 71: YY_RULE_SETUP #line 1395 "scanner.l" { yytext[yyleng-1]='\0'; QCString text=substitute(yytext,"\\\\","\\"); SectionInfo *sec; if ((sec=sectionDict[sectionRef])) { if (sec->type==SectionInfo::Anchor) { outDoc->writeSectionRefAnchor(sec->fileName,sec->label,text); } else { outDoc->writeSectionRef(sec->fileName,sec->label,text); } } else { warn("Warning: reference to unknown section %s!\n",sectionRef.data()); outDoc->writeBoldString("unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 72: YY_RULE_SETUP #line 1417 "scanner.l" { sectionRef=yytext; BEGIN(DocRefItemName); } YY_BREAK case 73: *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 1421 "scanner.l" { SectionInfo *sec; if ((sec=sectionDict[sectionRef])) { outDoc->writeSectionRefItem(sec->fileName,sec->label,yytext); } else { warn("Warning: reference to unknown section %s!\n",sectionRef.data()); outDoc->writeBoldString("unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 74: YY_RULE_SETUP #line 1434 "scanner.l" { BEGIN(DocImage); } YY_BREAK case 75: YY_RULE_SETUP #line 1437 "scanner.l" { BEGIN(DocHtmlImageName); } YY_BREAK case 76: YY_RULE_SETUP #line 1440 "scanner.l" { BEGIN(DocLatexImageName); } YY_BREAK case 77: YY_RULE_SETUP #line 1443 "scanner.l" { curImageName = findAndCopyImage(stripQuotes(yytext),IT_Html); if (!curImageName.isEmpty()) { storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Html); outDoc->writeImage(curImageName,0,0); restoreOutputListState(); } BEGIN(DocScan); } YY_BREAK case 78: YY_RULE_SETUP #line 1454 "scanner.l" { curImageName = findAndCopyImage(stripQuotes(yytext),IT_Latex); if (curImageName.isEmpty()) BEGIN(DocScan); else BEGIN(DocLatexImageWidth); } YY_BREAK case 79: YY_RULE_SETUP #line 1461 "scanner.l" { // no width specified storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,0,0); restoreOutputListState(); BEGIN(DocScan); } YY_BREAK case 80: YY_RULE_SETUP #line 1468 "scanner.l" { storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,yytext,0); restoreOutputListState(); BEGIN(DocScan); } YY_BREAK case 81: YY_RULE_SETUP #line 1475 "scanner.l" { storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,0,yytext); restoreOutputListState(); BEGIN(DocScan); } YY_BREAK case 82: YY_RULE_SETUP #line 1482 "scanner.l" { warn("Warning: %s is an unsupported output format for \\image\n",yytext); } YY_BREAK case 83: YY_RULE_SETUP #line 1485 "scanner.l" { warn("Warning: invalid \\image command found!\n"); outDoc->enableAll(); BEGIN(DocScan); } YY_BREAK case 84: YY_RULE_SETUP #line 1490 "scanner.l" { outDoc->startCodeFragment(); codeBlock.resize(0); BEGIN( DocCodeBlock ); } YY_BREAK case 85: *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 1495 "scanner.l" { warn("Warning: \\endcode without
 or \\code "
    					       "in the documentation of %s\n",refName.data()); 
					}
	YY_BREAK
case 86:
YY_RULE_SETUP
#line 1499 "scanner.l"
{
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
  					}
	YY_BREAK
case 87:
YY_RULE_SETUP
#line 1502 "scanner.l"
{ 
					  generateRef(*outDoc,className,yytext,inSeeBlock);
					} 
	YY_BREAK
case 88:
YY_RULE_SETUP
#line 1505 "scanner.l"
{ 
				          QCString oName=yytext;
					  generateRef(*outDoc,className,
					              removeRedundantWhiteSpace(oName),inSeeBlock);
					}
	YY_BREAK
case 89:
YY_RULE_SETUP
#line 1510 "scanner.l"
{ 
    					  QCString oName=yytext;
					  generateRef(*outDoc,className,
					              removeRedundantWhiteSpace(oName),inSeeBlock);
					}
	YY_BREAK
case 90:
YY_RULE_SETUP
#line 1515 "scanner.l"
{
					  generateFileRef(*outDoc,yytext);
					}
	YY_BREAK
case 91:
*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 1518 "scanner.l"
{ // needed to match things like \endcode. (note the dot)
				          parseCode(*outDoc,className,codeBlock,exampleDoc,exampleName);
					  //printf("Code block\n-------------\n%s\n--------------\n",codeBlock.data());
					  outDoc->endCodeFragment();
					  BEGIN( DocScan ); 
					}
	YY_BREAK
case 92:
YY_RULE_SETUP
#line 1524 "scanner.l"
{ 
				          parseCode(*outDoc,className,codeBlock,exampleDoc,exampleName);
					  //printf("Code block\n-------------\n%s\n--------------\n",codeBlock.data());
					  outDoc->endCodeFragment();
					  BEGIN( DocScan ); 
					}
	YY_BREAK
case 93:
YY_RULE_SETUP
#line 1530 "scanner.l"
{ BEGIN( DocEmphasis ); }
	YY_BREAK
case 94:
YY_RULE_SETUP
#line 1531 "scanner.l"
{ BEGIN( DocEmphasis ); }
	YY_BREAK
case 95:
YY_RULE_SETUP
#line 1532 "scanner.l"
{ BEGIN( DocBold ); }
	YY_BREAK
case 96:
YY_RULE_SETUP
#line 1533 "scanner.l"
{ BEGIN( DocCode ); }
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 1534 "scanner.l"

	YY_BREAK
case 98:
YY_RULE_SETUP
#line 1535 "scanner.l"
{ BEGIN( DocInclude ); }
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 1536 "scanner.l"
{ BEGIN( DocDontInclude ); }
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 1537 "scanner.l"
{ BEGIN( DocSkipKey ); }	
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 1538 "scanner.l"
{ BEGIN( DocSkiplineKey ); firstLine=TRUE; }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 1539 "scanner.l"
{ BEGIN( DocLineKey ); firstLine=TRUE; }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 1540 "scanner.l"
{ BEGIN( DocUntilKey ); firstLine=TRUE; }
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 1541 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					    skipUntil(yytext); 
  					  BEGIN( DocScan );
					}
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 1546 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    showLine(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 1559 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    skipLine(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 1572 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    showUntil(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 1585 "scanner.l"
{ BEGIN(DocLineKey); }
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 1586 "scanner.l"
{ BEGIN(DocUntilKey); }
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 1587 "scanner.l"
{ BEGIN(DocSkiplineKey); }
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 1588 "scanner.l"

	YY_BREAK
case YY_STATE_EOF(DocKeyEnd):
#line 1589 "scanner.l"
{
  					  if (!firstLine) outDoc->endCodeFragment();
					  yyterminate();
  					}
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 1593 "scanner.l"
{
  					  unput(*yytext);
  					  if (!firstLine) outDoc->endCodeFragment();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 1598 "scanner.l"

	YY_BREAK
case 114:
YY_RULE_SETUP
#line 1599 "scanner.l"

	YY_BREAK
case 115:
YY_RULE_SETUP
#line 1600 "scanner.l"
{ outDoc->startBold(); }
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 1601 "scanner.l"
{ outDoc->endBold(); }
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 1602 "scanner.l"
{ outDoc->startCenter(); }
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 1603 "scanner.l"
{ outDoc->endCenter(); }
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 1604 "scanner.l"
{ 
  					  startTable();
  					  /*outDoc->startTable();*/ }
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 1607 "scanner.l"
{
 					  endTable(); 
  					  /*outDoc->endTable();*/ 
					}
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 1611 "scanner.l"

	YY_BREAK
case 122:
YY_RULE_SETUP
#line 1612 "scanner.l"
{ outDoc->startSmall(); }
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 1613 "scanner.l"
{ outDoc->endSmall(); }
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 1614 "scanner.l"

	YY_BREAK
case 125:
YY_RULE_SETUP
#line 1615 "scanner.l"

	YY_BREAK
case 126:
YY_RULE_SETUP
#line 1616 "scanner.l"

	YY_BREAK
case 127:
YY_RULE_SETUP
#line 1617 "scanner.l"

	YY_BREAK
case 128:
YY_RULE_SETUP
#line 1618 "scanner.l"

	YY_BREAK
case 129:
YY_RULE_SETUP
#line 1619 "scanner.l"

	YY_BREAK
case 130:
YY_RULE_SETUP
#line 1620 "scanner.l"

	YY_BREAK
case 131:
YY_RULE_SETUP
#line 1621 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 1622 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 133:
YY_RULE_SETUP
#line 1623 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 134:
YY_RULE_SETUP
#line 1624 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 1625 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 1626 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 137:
YY_RULE_SETUP
#line 1627 "scanner.l"
{ 
                                          storeOutputListState();
                                          outDoc->disableAllBut(OutputGenerator::Html);
					  outDoc->writeString(yytext); 
                                          restoreOutputListState();
					}
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 1633 "scanner.l"
{ 
  					  outDoc->startCodeFragment();
  					  codeBlock.resize(0);
					  BEGIN( DocCodeBlock ); 
					}
	YY_BREAK
case 139:
YY_RULE_SETUP
#line 1638 "scanner.l"
{ 
  					  warn("Warning: 
without
 or \\code"
    					         "in the documentation of %s\n",refName.data()); 
					}
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 1642 "scanner.l"
{ outDoc->startSubscript(); }
	YY_BREAK
case 141:
YY_RULE_SETUP
#line 1643 "scanner.l"
{ outDoc->endSubscript(); }
	YY_BREAK
case 142:
YY_RULE_SETUP
#line 1644 "scanner.l"
{ outDoc->startSuperscript(); }
	YY_BREAK
case 143:
YY_RULE_SETUP
#line 1645 "scanner.l"
{ outDoc->endSuperscript(); }
	YY_BREAK
case 144:
YY_RULE_SETUP
#line 1646 "scanner.l"
{ if (curTable) curTable->newRow(); }
	YY_BREAK
case 145:
YY_RULE_SETUP
#line 1647 "scanner.l"

	YY_BREAK
case 146:
YY_RULE_SETUP
#line 1648 "scanner.l"
{ if (curTable) curTable->newElem(); }
	YY_BREAK
case 147:
YY_RULE_SETUP
#line 1649 "scanner.l"

	YY_BREAK
case 148:
YY_RULE_SETUP
#line 1650 "scanner.l"
{ outDoc->startEnumList(); }
	YY_BREAK
case 149:
YY_RULE_SETUP
#line 1651 "scanner.l"
{ outDoc->endEnumList(); }
	YY_BREAK
case 150:
YY_RULE_SETUP
#line 1652 "scanner.l"
{ outDoc->startItemList(); }
	YY_BREAK
case 151:
YY_RULE_SETUP
#line 1653 "scanner.l"
{ outDoc->endItemList(); }
	YY_BREAK
case 152:
YY_RULE_SETUP
#line 1654 "scanner.l"
{ outDoc->writeListItem(); }
	YY_BREAK
case 153:
YY_RULE_SETUP
#line 1655 "scanner.l"

	YY_BREAK
case 154:
YY_RULE_SETUP
#line 1656 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 155:
YY_RULE_SETUP
#line 1657 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 156:
YY_RULE_SETUP
#line 1658 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 157:
YY_RULE_SETUP
#line 1659 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 158:
YY_RULE_SETUP
#line 1660 "scanner.l"
{ outDoc->writeRuler(); }
	YY_BREAK
case 159:
YY_RULE_SETUP
#line 1661 "scanner.l"
{ outDoc->startDescription(); }
	YY_BREAK
case 160:
YY_RULE_SETUP
#line 1662 "scanner.l"
{ outDoc->endDescription(); }
	YY_BREAK
case 161:
YY_RULE_SETUP
#line 1663 "scanner.l"
{ outDoc->startDescItem(); }
	YY_BREAK
case 162:
YY_RULE_SETUP
#line 1664 "scanner.l"

	YY_BREAK
case 163:
YY_RULE_SETUP
#line 1665 "scanner.l"
{ outDoc->endDescItem(); }
	YY_BREAK
case 164:
YY_RULE_SETUP
#line 1666 "scanner.l"

	YY_BREAK
case 165:
YY_RULE_SETUP
#line 1667 "scanner.l"
{ outDoc->lineBreak(); }
	YY_BREAK
case 166:
YY_RULE_SETUP
#line 1668 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 167:
YY_RULE_SETUP
#line 1669 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 168:
YY_RULE_SETUP
#line 1670 "scanner.l"

	YY_BREAK
case 169:
YY_RULE_SETUP
#line 1671 "scanner.l"
{ BEGIN(DocHtmlLink); }
	YY_BREAK
case 170:
YY_RULE_SETUP
#line 1672 "scanner.l"
{ outDoc->startBold(); }
	YY_BREAK
case 171:
YY_RULE_SETUP
#line 1673 "scanner.l"
{ outDoc->endBold(); }
	YY_BREAK
case 172:
YY_RULE_SETUP
#line 1674 "scanner.l"
{ 
  					  if (inBlock()) endBlock();
  					  outDoc->newParagraph(); }
	YY_BREAK
case 173:
YY_RULE_SETUP
#line 1677 "scanner.l"

	YY_BREAK
case 174:
YY_RULE_SETUP
#line 1678 "scanner.l"
{ outDoc->startTitle(); }
	YY_BREAK
case 175:
YY_RULE_SETUP
#line 1679 "scanner.l"
{ outDoc->endTitle(); }
	YY_BREAK
case 176:
YY_RULE_SETUP
#line 1680 "scanner.l"
{ outDoc->startSubsection(); }
	YY_BREAK
case 177:
YY_RULE_SETUP
#line 1681 "scanner.l"
{ outDoc->endSubsection(); }
	YY_BREAK
case 178:
YY_RULE_SETUP
#line 1682 "scanner.l"
{ outDoc->startSubsubsection(); }
	YY_BREAK
case 179:
YY_RULE_SETUP
#line 1683 "scanner.l"
{ outDoc->endSubsubsection(); }
	YY_BREAK
case 180:
YY_RULE_SETUP
#line 1684 "scanner.l"
{ BEGIN(DocHtmlAnchor); }
	YY_BREAK
case 181:
YY_RULE_SETUP
#line 1685 "scanner.l"
{ outDoc->writeAnchor(yytext); } 
	YY_BREAK
case 182:
YY_RULE_SETUP
#line 1686 "scanner.l"
{ 
  					  htmlUrl.resize(0);
					  htmlText.resize(0);
  					  BEGIN(DocHtmlHref1); }
	YY_BREAK
case 183:
YY_RULE_SETUP
#line 1690 "scanner.l"
{ 
  					  htmlUrl=yytext; 
					}
	YY_BREAK
case 184:
YY_RULE_SETUP
#line 1693 "scanner.l"
{ BEGIN(DocHtmlHref2); }
	YY_BREAK
case 185:
YY_RULE_SETUP
#line 1694 "scanner.l"
{ htmlText+=yytext; }
	YY_BREAK
/*
\n			{ htmlText+='\n'; }
  */
case 186:
YY_RULE_SETUP
#line 1698 "scanner.l"
{ 
  					  outDoc->writeHtmlLink(htmlUrl,htmlText);
  					  unput(*yytext); 
					  BEGIN(DocScan); 
					}
	YY_BREAK
case 187:
YY_RULE_SETUP
#line 1703 "scanner.l"
{ BEGIN(DocScan); }
	YY_BREAK
case 188:
YY_RULE_SETUP
#line 1705 "scanner.l"
{
  					  outDoc->docify("\\");
  					}
	YY_BREAK
case 189:
YY_RULE_SETUP
#line 1708 "scanner.l"
{
  					  outDoc->docify("@");
  					}
	YY_BREAK
case 190:
YY_RULE_SETUP
#line 1711 "scanner.l"
{ 
					  outDoc->docify("<");
					}
	YY_BREAK
case 191:
YY_RULE_SETUP
#line 1714 "scanner.l"
{ 
  					  outDoc->docify(">");
					}
	YY_BREAK
case 192:
YY_RULE_SETUP
#line 1717 "scanner.l"
{ 
  					  outDoc->docify("&");
					}
	YY_BREAK
case 193:
YY_RULE_SETUP
#line 1720 "scanner.l"
{
  					  outDoc->docify("$");
  					}
	YY_BREAK
case 194:
YY_RULE_SETUP
#line 1723 "scanner.l"
{
  					  outDoc->docify("#");
  					}
	YY_BREAK
case 195:
YY_RULE_SETUP
#line 1726 "scanner.l"
{
  					  outDoc->docify("%");
  					}
	YY_BREAK
case 196:
YY_RULE_SETUP
#line 1729 "scanner.l"
{
  					  outDoc->docify(yytext+1);
  					}
	YY_BREAK
case 197:
YY_RULE_SETUP
#line 1732 "scanner.l"
{ 
  					  outDoc->startEmphasis();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endEmphasis();
					  BEGIN( DocScan );
					  //addToIndex(yytext);
					}
	YY_BREAK
case 198:
YY_RULE_SETUP
#line 1739 "scanner.l"
{
  					  outDoc->startBold();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endBold();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 199:
YY_RULE_SETUP
#line 1745 "scanner.l"
{ 
					  outDoc->startTypewriter();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endTypewriter();
					  BEGIN( DocScan );
					}
	YY_BREAK
case 200:
YY_RULE_SETUP
#line 1751 "scanner.l"
{
					  includeFile(*outDoc,stripQuotes(yytext),FALSE); 
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 201:
YY_RULE_SETUP
#line 1755 "scanner.l"
{
  					  includeFile(*outDoc,stripQuotes(yytext),TRUE);
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 202:
YY_RULE_SETUP
#line 1759 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 203:
YY_RULE_SETUP
#line 1760 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 204:
YY_RULE_SETUP
#line 1761 "scanner.l"
{ codeBlock += '\n'; }
	YY_BREAK
case 205:
YY_RULE_SETUP
#line 1762 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 206:
YY_RULE_SETUP
#line 1763 "scanner.l"
{ codeBlock += *yytext; }
	YY_BREAK
case 207:
YY_RULE_SETUP
#line 1764 "scanner.l"
{ 
					  outDoc->docify(yytext);
					}
	YY_BREAK
case 208:
YY_RULE_SETUP
#line 1767 "scanner.l"
{ 
  					  outDoc->docify(yytext);
					}
	YY_BREAK
case 209:
YY_RULE_SETUP
#line 1770 "scanner.l"
{ outDoc->writeChar('\n'); }
	YY_BREAK
case 210:
YY_RULE_SETUP
#line 1771 "scanner.l"
{ 
  					  if (insideArgumentList)
					  {
					    insideArgumentList=FALSE;
					    outDoc->endItemList();
					  }
					  else
					  {
					    outDoc->newParagraph(); 
					  }
					  if (inBlock()) endBlock();
					}
	YY_BREAK
case 211:
YY_RULE_SETUP
#line 1783 "scanner.l"
{ 
  					  outDoc->writeChar(' '); 
					}
	YY_BREAK
case 212:
YY_RULE_SETUP
#line 1786 "scanner.l"
{ 
					  outDoc->writeChar(*yytext);
					}
	YY_BREAK
case 213:
YY_RULE_SETUP
#line 1789 "scanner.l"
{
  					  bracketCount=0;
  					  BEGIN(SkipCurlyBlock); 
					}
	YY_BREAK
case 214:
YY_RULE_SETUP
#line 1793 "scanner.l"
{
  				 	  roundCount=0;
  					  BEGIN(SkipRoundBlock);
  					}
	YY_BREAK
case 215:
YY_RULE_SETUP
#line 1797 "scanner.l"
{
					  ++roundCount;
  					}
	YY_BREAK
case 216:
YY_RULE_SETUP
#line 1800 "scanner.l"
{
  					  if (roundCount )
					    --roundCount ;
					  else
					    BEGIN( NextSemi ) ;
  					}
	YY_BREAK
case 217:
YY_RULE_SETUP
#line 1806 "scanner.l"
{
  					  ++bracketCount ; 
					}
	YY_BREAK
case 218:
YY_RULE_SETUP
#line 1809 "scanner.l"
{ 
  				          if( bracketCount )
					    --bracketCount ;
					  else
					    BEGIN( NextSemi ) ;
					}
	YY_BREAK
case 219:
YY_RULE_SETUP
#line 1815 "scanner.l"

	YY_BREAK
case 220:
YY_RULE_SETUP
#line 1816 "scanner.l"

	YY_BREAK
case 221:
YY_RULE_SETUP
#line 1817 "scanner.l"

	YY_BREAK
case 222:
YY_RULE_SETUP
#line 1818 "scanner.l"
{
  					  lastStringContext=NextSemi;
					  BEGIN(SkipString);
  					}
	YY_BREAK
case 223:
YY_RULE_SETUP
#line 1822 "scanner.l"
{ 
  					  unput(*yytext);
  					  BEGIN( FindMembers ) ; 
					}
	YY_BREAK
case 224:
YY_RULE_SETUP
#line 1826 "scanner.l"
{ current->sig = sig = TRUE;
					  current->slot = slot = FALSE;
					  current->protection = protection = Public ;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 225:
YY_RULE_SETUP
#line 1836 "scanner.l"
{
					  current->protection = protection = Public ;
					  current->slot = slot = TRUE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount();
					}
	YY_BREAK
case 226:
YY_RULE_SETUP
#line 1847 "scanner.l"
{
					  current->protection = protection = Protected ;
					  current->slot = slot = TRUE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount();
					}
	YY_BREAK
case 227:
YY_RULE_SETUP
#line 1858 "scanner.l"
{
					  current->protection = protection = Private ;
					  current->slot = slot = TRUE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount();
					}
	YY_BREAK
case 228:
YY_RULE_SETUP
#line 1869 "scanner.l"
{ 
					  current->protection = protection = Public ;
					  current->slot = slot = FALSE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 229:
YY_RULE_SETUP
#line 1879 "scanner.l"
{ 
  					  current->protection = protection = Protected ;
					  current->slot = slot = FALSE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 230:
YY_RULE_SETUP
#line 1889 "scanner.l"
{ 
  					  current->protection = protection = Private ;
					  current->slot = slot = FALSE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 231:
YY_RULE_SETUP
#line 1899 "scanner.l"
{
  					  lineCount();
  					}
	YY_BREAK
case 232:
YY_RULE_SETUP
#line 1902 "scanner.l"
{ //current->type += " static ";
  					  current->stat = TRUE;
					  lineCount();
					}
	YY_BREAK
case 233:
YY_RULE_SETUP
#line 1906 "scanner.l"
{
  					  current->stat = FALSE;
					  lineCount();
  					}
	YY_BREAK
case 234:
YY_RULE_SETUP
#line 1910 "scanner.l"
{ current->type += " virtual ";
					  current->virt = Virtual;
					  lineCount();
					}
	YY_BREAK
case 235:
YY_RULE_SETUP
#line 1914 "scanner.l"
{ current->inLine = TRUE;
                                          lineCount(); 
                                        }
	YY_BREAK
case 236:
YY_RULE_SETUP
#line 1917 "scanner.l"
{ lineCount(); }
	YY_BREAK
case 237:
YY_RULE_SETUP
#line 1918 "scanner.l"
{ 
  					  isTypedef=FALSE;
					  current->section = Entry::NAMESPACE_SEC;
					  current->type = "namespace" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount();
  					  BEGIN( ClassName ); 
					}
	YY_BREAK
case 238:
YY_RULE_SETUP
#line 1928 "scanner.l"
{ 
  					  isTypedef=FALSE;
					  current->section = Entry::NAMESPACE_SEC;
					  current->type = "module" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount();
  					  BEGIN( ClassName ); 
					}
	YY_BREAK
case 239:
YY_RULE_SETUP
#line 1938 "scanner.l"
{
  					  isTypedef=FALSE;
					  current->section = Entry::INTERFACE_SEC;
					  addType( current ) ;
					  current->type += " interface" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount();
					  BEGIN( ClassName );
  					}
	YY_BREAK
case 240:
YY_RULE_SETUP
#line 1949 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::CLASS_SEC;
					  addType( current ) ;
					  current->type += " class" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 241:
YY_RULE_SETUP
#line 1960 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::STRUCT_SEC ;
					  addType( current ) ;
					  current->type += " struct" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 242:
YY_RULE_SETUP
#line 1971 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::UNION_SEC ;
					  addType( current ) ;
					  current->type += " union" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 243:
YY_RULE_SETUP
#line 1982 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::ENUM_SEC ;
					  addType( current ) ;
					  current->type += " enum" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 244:
*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 1993 "scanner.l"
{
  					  lineCount();
    					  current->name += yytext ;
					  current->name = current->name.simplifyWhiteSpace();
					  BEGIN( FindMembers ) ;
  					}
	YY_BREAK
case 245:
YY_RULE_SETUP
#line 1999 "scanner.l"
{ 
    					  current->name += *yytext ;
					}
	YY_BREAK
case 246:
YY_RULE_SETUP
#line 2002 "scanner.l"
{ /* skip guided templ specifiers */ }
	YY_BREAK
case 247:
YY_RULE_SETUP
#line 2003 "scanner.l"
{
					  current->name = current->name.simplifyWhiteSpace();
					  unput(*yytext);
					  BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 248:
YY_RULE_SETUP
#line 2008 "scanner.l"
{ 
  					  lineCount();
					  // class template specifier already found => member template specifier
					  // already inside class => member template specifier
					  if (current->tArgList || (current_root->section&Entry::COMPOUND_MASK))
					  {
					    //printf("-------> member template\n");
					    if (current->mtArgList)
					    {
					      current->mtArgList->clear();
                                            }
					    else
					    {
					      current->mtArgList = new ArgumentList;
					      current->mtArgList->setAutoDelete(TRUE);
					    }
					    currentArgumentList = current->mtArgList;
					  }
					  else // class template specifier
					  {
					    //printf("-------> class template\n");
					    if (current->tArgList)
					    {
					      current->tArgList->clear();
                                            }
					    else
					    {
					      current->tArgList = new ArgumentList;
					      current->tArgList->setAutoDelete(TRUE);
					    }
					    currentArgumentList = current->tArgList;
					  }
					  templateStr="<";
					  copyArgString=&templateStr;
					  currentArgumentContext = FindMembers;
					  //printf("Start template list\n");
					  BEGIN( ReadTempArgs );
  					}
	YY_BREAK
case 249:
YY_RULE_SETUP
#line 2046 "scanner.l"
{ 
					  current->startLine=yyLineNr; 
                                          lineCount(); 
                                          BEGIN(Using); 
                                        }
	YY_BREAK
case 250:
YY_RULE_SETUP
#line 2051 "scanner.l"
{ lineCount(); BEGIN(UsingDirective); }
	YY_BREAK
case 251:
YY_RULE_SETUP
#line 2052 "scanner.l"
{ BEGIN(FindMembers); }
	YY_BREAK
case 252:
YY_RULE_SETUP
#line 2053 "scanner.l"
{ current->name=yytext;
                                          current->fileName = yyFileName; 
  					  current->section=Entry::USINGDIR_SEC;
					  printf("Found using directive %s\n",yytext);
					  current_root->addSubEntry(current);
					  current             = new Entry ;
					  current->protection = protection ;
				          current->sig        = sig;
					  current->virt       = virt;
					  current->stat       = gstat;
					  current->slot       = slot;
					  BEGIN(Using);
  					}
	YY_BREAK
case 253:
YY_RULE_SETUP
#line 2066 "scanner.l"
{ // guided template decl
					  QCString n=yytext;
					  addType( current );
					  current->name=n.left(n.length()-2);
					}
	YY_BREAK
case 254:
*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 2071 "scanner.l"
{
  					  sharpCount=0;
					  lineCount();
					  addType( current );
  					  current->name=yytext;
					  current->name=current->name.stripWhiteSpace();
					  current->scopeSpec.resize(0);
					  currentTemplateSpec = ¤t->scopeSpec;
					  if (nameIsOperator(current->name))
					    BEGIN( Operator );
					  else
					    BEGIN( EndTemplate );
					}
	YY_BREAK
case 255:
*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 2084 "scanner.l"
{
  					  sharpCount=0;
					  lineCount();
  					  current->name+=((QCString)yytext).stripWhiteSpace();
					  current->memberSpec.resize(0);
					  currentTemplateSpec = ¤t->memberSpec;
					  if (nameIsOperator(current->name))
					    BEGIN( Operator );
					  else
					    BEGIN( EndTemplate );
  					}
	YY_BREAK
/*
"<"			{
					  sharpCount++; 
  					}
">"			{
  					  if (--sharpCount<=0)
					  {
					    BEGIN(FindMembers);
					  }
  					}
.
  */
case 256:
YY_RULE_SETUP
#line 2108 "scanner.l"
{ 
  					  current->name+='<';
  					  *currentTemplateSpec+='<'; 
					  sharpCount++; 
					}
	YY_BREAK
case 257:
YY_RULE_SETUP
#line 2113 "scanner.l"
{
  					  current->name+='>';
					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {  
					    //printf("Found %s\n",current->name.data());
					    BEGIN(FindMembers);
					  }
					}
	YY_BREAK
case 258:
YY_RULE_SETUP
#line 2122 "scanner.l"
{ 
  					  lineCount();
  					  current->name+='>';
					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {
					    current->args = "(";
					    currentArgumentContext = FuncQual;
					    copyArgString=¤t->args;
					    //printf("Found %s\n",current->name.data());
					    BEGIN( ReadFuncArgType ) ;
					  }
					}
	YY_BREAK
case 259:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 2135 "scanner.l"
{
  					  lineCount();
  					  current->name+='>';
  					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {
					    BEGIN(FindMemberName);
					  }
  					}
	YY_BREAK
case 260:
YY_RULE_SETUP
#line 2144 "scanner.l"
{ 
  					  current->name+=*yytext;
  					  *currentTemplateSpec+=*yytext; 
					}
	YY_BREAK
case 261:
YY_RULE_SETUP
#line 2148 "scanner.l"
{ 
					  lineCount();
					  if (YY_START==FindMembers)
					  {
					    addType( current ) ;
					    current->name  = yytext;
					  }
					  else
					  {
					    current->name += yytext;
					  }
				          QCString tmp=yytext;
					  if (nameIsOperator(tmp)) 
					    BEGIN( Operator );
					  else
					    BEGIN(FindMembers);
					}
	YY_BREAK
case 262:
YY_RULE_SETUP
#line 2165 "scanner.l"
{ lastCPPContext = YY_START; 
					  BEGIN( SkipCPP ) ; 
					}
	YY_BREAK
case 263:
YY_RULE_SETUP
#line 2168 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  BEGIN( Define );
  					}
	YY_BREAK
case 264:
YY_RULE_SETUP
#line 2172 "scanner.l"

	YY_BREAK
case 265:
YY_RULE_SETUP
#line 2173 "scanner.l"
{ yyLineNr++ ; }
	YY_BREAK
case 266:
YY_RULE_SETUP
#line 2174 "scanner.l"
{ yyLineNr++ ;
					  BEGIN( lastCPPContext) ;
					}
	YY_BREAK
case 267:
*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 2177 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  current->name = yytext;
					  BEGIN( DefineArg );
  					}
	YY_BREAK
case 268:
YY_RULE_SETUP
#line 2182 "scanner.l"
{
  					  //printf("Define with args\n");
  					  current->args += ')';
  					  BEGIN( DefineEnd );
  					}
	YY_BREAK
case 269:
YY_RULE_SETUP
#line 2187 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 270:
YY_RULE_SETUP
#line 2190 "scanner.l"
{
  					  //printf("Define `%s' without args\n",yytext);
  					  current->bodyLine = yyLineNr;
  					  current->name = yytext;
					  BEGIN(DefineEnd);
  					}
	YY_BREAK
case 271:
YY_RULE_SETUP
#line 2196 "scanner.l"
{
  					  //printf("End define\n");
					  yyLineNr++;
					  current->fileName   = yyFileName;
					  current->startLine  = yyLineNr;
					  current->type.resize(0);
  					  current->args       = current->args.simplifyWhiteSpace();
  					  current->name       = current->name.stripWhiteSpace();
					  current->section    = Entry::DEFINE_SEC;
					  current_root->addSubEntry(current);
					  current             = new Entry ;
					  current->protection = protection ;
				          current->sig        = sig;
					  current->virt       = virt;
					  current->stat       = gstat;
					  current->slot       = slot;
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 272:
YY_RULE_SETUP
#line 2214 "scanner.l"
{
  					  yyLineNr++;
  					}
	YY_BREAK
case 273:
YY_RULE_SETUP
#line 2217 "scanner.l"
{
					  lastStringContext=DefineEnd;
					  BEGIN(SkipString);
  					}
	YY_BREAK
case 274:
YY_RULE_SETUP
#line 2221 "scanner.l"

	YY_BREAK
case 275:
YY_RULE_SETUP
#line 2223 "scanner.l"
{ current->name += yytext ; }
	YY_BREAK
case 276:
YY_RULE_SETUP
#line 2224 "scanner.l"
{
  					  lineCount();
					  if (current->bodyLine==-1)
					    current->bodyLine=yyLineNr;
					  lastAfterDocContext = YY_START;
					  afterDocTerminator = ';';
					  if (yytext[yyleng-3]=='/')
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocLine);
					  }
					  else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocBrief);
					  }
					  else
					  {
					    current->doc.resize(0);
					    BEGIN(AfterDoc);
					  }
  					}
	YY_BREAK
case 277:
YY_RULE_SETUP
#line 2246 "scanner.l"
{
  					  lineCount();
					  lastAfterDocContext = YY_START;
					  afterDocTerminator = ',';
					  if (yytext[yyleng-3]=='/')
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocLine);
					  }
					  else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocBrief);
					  }
					  else
					  {
					    current->doc.resize(0);
					    BEGIN(AfterDoc);
					  }
  					}
	YY_BREAK
case 278:
YY_RULE_SETUP
#line 2266 "scanner.l"
{
  					  lineCount();
					  lastAfterDocContext = YY_START;
					  if (YY_START==DefineEnd)
					    afterDocTerminator = '\n';
					  else
					    afterDocTerminator = 0;
					  if (yytext[yyleng-3]=='/')
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocLine);
					  }
					  else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocBrief);
					  }
					  else
					  {
					    current->doc.resize(0);
					    BEGIN(AfterDoc);
					  }
  					}
	YY_BREAK
case 279:
YY_RULE_SETUP
#line 2289 "scanner.l"
{
  					  current->bodyLine=yyLineNr;
  					  BEGIN(NextSemi);
  					}
	YY_BREAK
case 280:
YY_RULE_SETUP
#line 2293 "scanner.l"
{ 
  					  QCString oldType = current->type.copy();
					  QCString oldDocs = current->doc.copy();
  					  if ( *yytext != ':')
					  {
					    if (current->bodyLine==-1)
					      current->bodyLine = yyLineNr;
					    current->type=current->type.simplifyWhiteSpace();
					    current->args=current->args.simplifyWhiteSpace();
					    current->name=current->name.stripWhiteSpace();
					    current->section = Entry::VARIABLE_SEC ;
					    current->fileName = yyFileName;
					    current->startLine = yyLineNr;
					    current_root->addSubEntry( current ) ;
					    current = new Entry ;
					    // variable found 
					    current->section = Entry::EMPTY_SEC ;
					    current->protection = protection;
					    current->slot = slot = FALSE;
					    current->sig = sig = FALSE;
					    current->virt = Normal; 
					    current->stat = gstat;
					  }
					  // skip expression or bitfield if needed
					  if ( *yytext == ':') 
					  {
					    BEGIN( NextSemi );
					  }
					  else 
					  {
					    if ( *yytext == ',' )
					    {
					      int i=oldType.length(); 
					      while (i>0 && (oldType[i-1]=='*' || oldType[i-1]==' ')) i--;
					      current->type = oldType.left(i);
					      current->doc  = oldDocs;
					    }
					    BEGIN( FindMembers ) ;
					  }
					}
	YY_BREAK
case 281:
YY_RULE_SETUP
#line 2334 "scanner.l"
{ current->args += yytext ;
					  sharpCount=1;
					  BEGIN( Array ) ;
					}
	YY_BREAK
case 282:
YY_RULE_SETUP
#line 2338 "scanner.l"
{ current->args += *yytext ;
					  if (--sharpCount<=0)
	                                     BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 283:
YY_RULE_SETUP
#line 2342 "scanner.l"
{ current->args += *yytext ;
					  sharpCount++;	
					}
	YY_BREAK
case 284:
YY_RULE_SETUP
#line 2345 "scanner.l"
{ current->args += *yytext ; }
	YY_BREAK
case 285:
YY_RULE_SETUP
#line 2347 "scanner.l"
{ addType( current ) ;
					  current->type += yytext ;
					  BEGIN( Sharp ) ;
					}
	YY_BREAK
case 286:
YY_RULE_SETUP
#line 2351 "scanner.l"
{ current->type += *yytext ;
					  if (--sharpCount<=0)
	                                     BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 287:
YY_RULE_SETUP
#line 2355 "scanner.l"
{ current->type += *yytext ;
					  sharpCount++;	
					}
	YY_BREAK
case 288:
YY_RULE_SETUP
#line 2358 "scanner.l"
{
  					  lineCount();
					}
	YY_BREAK
case 289:
YY_RULE_SETUP
#line 2361 "scanner.l"
{ current->type += *yytext ; }
	YY_BREAK
case 290:
YY_RULE_SETUP
#line 2362 "scanner.l"
{
  					  current->name = yytext;
					}
	YY_BREAK
case 291:
YY_RULE_SETUP
#line 2365 "scanner.l"
{
  					  BEGIN(FindFieldArg);
  					}
	YY_BREAK
case 292:
YY_RULE_SETUP
#line 2368 "scanner.l"
{
					  //printf("adding `%s' `%s' `%s' to enum `%s'\n",
					  //     current->type.data(), current->name.data(),
					  //     current->args.data(), current_root->name.data());
					  current->fileName   = yyFileName;
					  current->startLine  = yyLineNr;
					  current->type       = "@"; // enum marker
  					  current->args       = current->args.simplifyWhiteSpace();
  					  current->name       = current->name.stripWhiteSpace();
					  current->section    = Entry::VARIABLE_SEC;
					  // add to the scope of the enum
					  current_root->addSubEntry(current);
					  current             = new Entry(*current);
					  // add to the scope surrounding the enum (copy!)
					  current_root->parent->addSubEntry(current);
					  current             = new Entry ;
					  current->protection = protection ;
				          current->sig        = sig;
					  current->virt       = virt;
					  current->stat       = gstat;
					  current->slot       = slot;
  					}
	YY_BREAK
case 293:
YY_RULE_SETUP
#line 2390 "scanner.l"
{ unput(*yytext); BEGIN(FindFields); }
	YY_BREAK
case 294:
YY_RULE_SETUP
#line 2391 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 295:
YY_RULE_SETUP
#line 2392 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 296:
YY_RULE_SETUP
#line 2393 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 297:
YY_RULE_SETUP
#line 2394 "scanner.l"
{ current->program += yytext ;
					  lastContext = Curly ;
					  BEGIN( Comment ) ;
					}
	YY_BREAK
case 298:
YY_RULE_SETUP
#line 2398 "scanner.l"
{ current->program += yytext ;
					  ++yyLineNr ;
					  lastContext = Curly ;
					  BEGIN( Comment ) ;
					}
	YY_BREAK
case 299:
YY_RULE_SETUP
#line 2403 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 300:
YY_RULE_SETUP
#line 2404 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 301:
YY_RULE_SETUP
#line 2405 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 302:
YY_RULE_SETUP
#line 2406 "scanner.l"
{ current->program += yytext ;
					  ++bracketCount ;
					}
	YY_BREAK
case 303:
YY_RULE_SETUP
#line 2409 "scanner.l"
{ if ( bracketCount )
					  {
					    current->program += yytext ;
					    --bracketCount ;
					  }
					  else
					  {
					    QCString &cn = current->name;
					    //QCString rn = stripAnnonymousScope(current_root->name);
					    QCString rn = current_root->name.copy();
					    //printf("cn=`%s' rn=`%s'\n",cn.data(),rn.data());
					    if (!cn.isEmpty() && !rn.isEmpty() && 
					      (current_root->section & Entry::SCOPE_MASK))
					    {
					      cn.prepend(rn+"::");
					    }
					    if (isTypedef && cn.isEmpty())
					    {
					      //printf("Typedef Name\n");
					      BEGIN( TypedefName );
					    }
					    else
					    {
					      if (current->section == Entry::ENUM_SEC)
					      {
					        current->program+=','; // add field terminator
					      }
					      // add compound definition to the tree
  					      current->args = current->args.simplifyWhiteSpace();
  					      current->type = current->type.simplifyWhiteSpace();
  					      current->name = current->name.stripWhiteSpace();
					      //printf("adding `%s' `%s' `%s' brief=%s\n",current->type.data(),current->name.data(),current->args.data(),current->brief.data());
					      current_root->addSubEntry( current ) ;
					      current = new Entry(*current);
					      if (current->section==Entry::NAMESPACE_SEC || 
						  current->section==Entry::INTERFACE_SEC
						 )
					      { // namespaces and interfaces ends with a closing bracket without semicolon
						current->reset();
						current->protection = protection ;
						current->sig = sig;
						current->virt = virt;
						current->stat = gstat;
						current->slot = slot;
						BEGIN( FindMembers ) ;
					      }
					      else
						BEGIN( MemberSpec ) ;
					    }
					  }
					}
	YY_BREAK
case 304:
YY_RULE_SETUP
#line 2460 "scanner.l"
{
  					  if (current->section == Entry::ENUM_SEC)
					  {
					    current->program+=","; // add field terminator
					  }
  				          current->name=yytext;
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
  					  current->args = current->args.simplifyWhiteSpace();
  					  current->type = current->type.simplifyWhiteSpace();
					  //printf("Adding compound %s %s %s\n",current->type.data(),current->name.data(),current->args.data());
					  current_root->addSubEntry( current ) ;
					  current = new Entry;
					  current->protection = protection ;
					  current->sig = sig;
					  current->virt = virt;
					  current->stat = gstat;
					  current->slot = slot;
  					  BEGIN(MemberSpecSkip); 
  					}
	YY_BREAK
case 305:
YY_RULE_SETUP
#line 2482 "scanner.l"
{ // the [] part could be improved.
  					  lineCount();
  					  int i=0,l=yyleng,j;
					  while (iname.isEmpty())
					   /* && (current->section & Entry::COMPOUND_MASK)) */
					  { 
					    // see if the compound does not have a name or is inside another
					    // annonymous compound. If so we insert a 
					    // special `annonymous' variable.
					    Entry *p=current_root;
					    while (p)
					    {
					      // only look for class scopes, not namespace scopes
					      if (p->section & Entry::COMPOUND_MASK)
					      {
						//printf("Trying scope `%s'\n",p->name.data());
						int i=p->name.findRev("::");
						int pi = (i==-1) ? 0 : i+2;
						if (p->name.at(pi)=='@')
						{
						  // annonymous compound inside -> insert dummy variable name
						  //printf("Adding annonymous variable for scope %s\n",p->name.data());
						  msName.sprintf("@%d",anonCount++); 
						  break;
						}
					      }
					      p=p->parent;
					    }
					  }
					  if (!msName.isEmpty())
					  {
  					    Entry *varEntry=new Entry;
					    varEntry->protection = current->protection ;
					    varEntry->sig = current->sig;
					    varEntry->virt = current->virt;
					    varEntry->stat = current->stat;
					    varEntry->slot = current->slot;
					    varEntry->section = Entry::VARIABLE_SEC;
					    varEntry->name = msName.stripWhiteSpace();
					    varEntry->type = current->type.simplifyWhiteSpace()+" ";
					    varEntry->args = msArgs; //current->args.simplifyWhiteSpace();
					    //if (current->name.length()>0 && current->name[0]!='@' && 
					    //    current->parent->section & Entry::COMPOUND_MASK)
					    //  varEntry->type+=current->parent->name+"::";
					    if (isTypedef)
					      varEntry->type.prepend("typedef ");
					    varEntry->type+=current->name+msType;
					    varEntry->fileName = yyFileName;
					    varEntry->startLine = yyLineNr;
					    varEntry->doc = current->doc.copy();
					    varEntry->brief = current->brief.copy();
					    //printf("Add: type=`%s',name=`%s',args=`%s'\n",
					    //      varEntry->type.data(),varEntry->name.data(),varEntry->args.data());
					    current_root->addSubEntry(varEntry);
					  }
					  if (*yytext==';')
					  {
					    msType.resize(0);
					    msName.resize(0);
					    msArgs.resize(0);
					    isTypedef=FALSE;
					    current->reset();
					    current->protection = protection ;
					    current->sig = sig;
					    current->virt = virt;
					    current->stat = gstat;
					    current->slot = slot;
					    BEGIN( FindMembers );
					  }
  					}					
	YY_BREAK
case 307:
YY_RULE_SETUP
#line 2564 "scanner.l"
{ BEGIN(MemberSpecSkip); }
	YY_BREAK
case 308:
YY_RULE_SETUP
#line 2565 "scanner.l"
{
  					  bracketCount=0;
					  lastCurlyContext = MemberSpecSkip;
					  previous = current;
  					  BEGIN(SkipCurly);
  					}
	YY_BREAK
case 309:
YY_RULE_SETUP
#line 2571 "scanner.l"
{ BEGIN(MemberSpec); }
	YY_BREAK
case 310:
YY_RULE_SETUP
#line 2572 "scanner.l"
{ unput(';'); BEGIN(MemberSpec); }
	YY_BREAK
case 311:
YY_RULE_SETUP
#line 2573 "scanner.l"
{ current->program += yytext ;
					  lineCount() ;
					}
	YY_BREAK
case 312:
YY_RULE_SETUP
#line 2576 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 313:
YY_RULE_SETUP
#line 2578 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  lineCount();
  					  addType(current);
					  funcPtrType=yytext;
					  //current->type += yytext;
					  BEGIN( FuncPtr );
  					}
	YY_BREAK
case 314:
YY_RULE_SETUP
#line 2586 "scanner.l"
{
  					  current->name = yytext;
					  BEGIN( EndFuncPtr );
  					}
	YY_BREAK
case 315:
YY_RULE_SETUP
#line 2590 "scanner.l"
{
  					  //printf("Error: FuncPtr `%c' unexpected at line %d of %s\n",*yytext,yyLineNr,yyFileName);
  					}
	YY_BREAK
case 316:
*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 2593 "scanner.l"
{ // a variable with extra braces
 					  lineCount();
					  current->type+=funcPtrType.data()+1;
  					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 317:
*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 2598 "scanner.l"
{ // a variable function
  					  lineCount();
					  current->type+=funcPtrType+")";
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 318:
YY_RULE_SETUP
#line 2603 "scanner.l"
{ // a function returning a function
  					  current->args += *yytext ;
					  bracketCount=0;
					  BEGIN( FuncFunc );
  					}
	YY_BREAK
case 319:
YY_RULE_SETUP
#line 2608 "scanner.l"
{
  					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 320:
YY_RULE_SETUP
#line 2611 "scanner.l"
{
  					  current->args += *yytext ;
  					  ++bracketCount;
					}
	YY_BREAK
case 321:
YY_RULE_SETUP
#line 2615 "scanner.l"
{
  					  current->args += *yytext ;
  					  if ( bracketCount )
					    --bracketCount;
					  else
					  {
					    BEGIN(FuncFuncEnd);
					  }
  					}
	YY_BREAK
case 322:
YY_RULE_SETUP
#line 2624 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType+")(";
					  BEGIN(FuncFuncType);
  					}
	YY_BREAK
case 323:
*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 2629 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType.data()+1;
  					  BEGIN(Function);
  					}
	YY_BREAK
case 324:
YY_RULE_SETUP
#line 2634 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 325:
YY_RULE_SETUP
#line 2637 "scanner.l"
{
  					  current->type += *yytext;
					  bracketCount++;
  					}
	YY_BREAK
case 326:
YY_RULE_SETUP
#line 2641 "scanner.l"
{
  					  current->type += *yytext;
  					  if (bracketCount)
					    --bracketCount;
					  else
					    BEGIN(Function);
					}
	YY_BREAK
case 327:
YY_RULE_SETUP
#line 2648 "scanner.l"
{ lineCount() ; current->type += ", " ; }
	YY_BREAK
case 328:
YY_RULE_SETUP
#line 2649 "scanner.l"
{ lineCount() ; current->type += ' ' ; }
	YY_BREAK
case 329:
YY_RULE_SETUP
#line 2650 "scanner.l"
{
  					  current->type += *yytext;
  					}
	YY_BREAK
case 330:
YY_RULE_SETUP
#line 2653 "scanner.l"
{ current->args = yytext;
  					  current->bodyLine = yyLineNr;
					  currentArgumentContext = FuncQual;
					  copyArgString=¤t->args;
					  BEGIN( ReadFuncArgType ) ;
					  //printf(">>> Read function arguments!\n");
					}
	YY_BREAK
/*
"("{BN}*("void"{BN}*)?")"	{
  					  lineCount();
  					  current->args = "()"; 
  					  BEGIN( FuncQual );
  					}
  */
/*- Function argument reading rules ---------------------------------------*/
case 331:
YY_RULE_SETUP
#line 2670 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 332:
YY_RULE_SETUP
#line 2671 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 333:
YY_RULE_SETUP
#line 2672 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 334:
YY_RULE_SETUP
#line 2673 "scanner.l"
{
  					  *copyArgString+=" ";
  					  lineCount();
  					}
	YY_BREAK
case 335:
YY_RULE_SETUP
#line 2677 "scanner.l"
{
  					  *copyArgString+=*yytext;
					  lastCopyArgStringContext = YY_START;
  					  BEGIN( CopyArgString );
  					}
	YY_BREAK
case 336:
YY_RULE_SETUP
#line 2682 "scanner.l"
{
  					  *copyArgString+=*yytext;
  					  argRoundCount=0; 
					  lastCopyArgContext = YY_START;
					  BEGIN( CopyArgRound ); 
  					}
	YY_BREAK
case 337:
YY_RULE_SETUP
#line 2688 "scanner.l"
{ 
  					  *copyArgString+=*yytext;
					  stringToArgumentList(*copyArgString,current->argList);
					  BEGIN( currentArgumentContext );
					}
	YY_BREAK
case 338:
YY_RULE_SETUP
#line 2693 "scanner.l"
{
					  *copyArgString+=*yytext;
					  argSharpCount=0;
					  BEGIN( CopyArgSharp );
					}
	YY_BREAK
case 339:
YY_RULE_SETUP
#line 2698 "scanner.l"
{
					  *copyArgString+=*yytext;
					  //printf("end template list %s\n",copyArgString->data());
					  stringToArgumentList(*copyArgString,currentArgumentList);
					  BEGIN( currentArgumentContext );
					}
	YY_BREAK
case 340:
YY_RULE_SETUP
#line 2704 "scanner.l"
{
  					  argRoundCount++;
					  *copyArgString+=*yytext;
  					}
	YY_BREAK
case 341:
YY_RULE_SETUP
#line 2708 "scanner.l"
{
					  *copyArgString+=*yytext;
					  if (argRoundCount>0) 
					    argRoundCount--;
					  else 
					    BEGIN( lastCopyArgContext );
  					}
	YY_BREAK
case 342:
YY_RULE_SETUP
#line 2715 "scanner.l"
{
  					  argSharpCount++;
					  *copyArgString+=*yytext;
  					}
	YY_BREAK
case 343:
YY_RULE_SETUP
#line 2719 "scanner.l"
{
  					  *copyArgString+=*yytext;
					  if (argRoundCount>0)
					    argRoundCount--;
					  else
					    BEGIN( ReadTempArgs );
  					}
	YY_BREAK
case 344:
YY_RULE_SETUP
#line 2726 "scanner.l"
{
  					  *copyArgString+=yytext;
  					}
	YY_BREAK
case 345:
YY_RULE_SETUP
#line 2729 "scanner.l"
{
  					  *copyArgString+=*yytext;
					  BEGIN( lastCopyArgStringContext );
  					}
	YY_BREAK
case 346:
YY_RULE_SETUP
#line 2733 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 347:
YY_RULE_SETUP
#line 2734 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 348:
YY_RULE_SETUP
#line 2735 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 349:
YY_RULE_SETUP
#line 2736 "scanner.l"
{ yyLineNr++; *copyArgString+=*yytext; }
	YY_BREAK
case 350:
YY_RULE_SETUP
#line 2737 "scanner.l"
{ *copyArgString+=*yytext; }
	YY_BREAK
/*------------------------------------------------------------------------*/
case 351:
YY_RULE_SETUP
#line 2744 "scanner.l"
{ current->args += *yytext ;
					  ++bracketCount ;
					}
	YY_BREAK
case 352:
YY_RULE_SETUP
#line 2747 "scanner.l"
{ current->args += *yytext ; 
					  if ( bracketCount )
					    --bracketCount ;
				          else
					    BEGIN( FuncQual ) ;
					}
	YY_BREAK
/*
"#"				{ lastCPPContext = YY_START;
  					  BEGIN(SkipCPP);
					}
  */
case 353:
YY_RULE_SETUP
#line 2758 "scanner.l"
{ unput(*yytext); BEGIN( Function ); }
	YY_BREAK
case 354:
YY_RULE_SETUP
#line 2759 "scanner.l"
{ 
  					  lineCount() ; 
  					  current->args += " const "; 
					  current->argList->constSpecifier=TRUE;
					}
	YY_BREAK
case 355:
YY_RULE_SETUP
#line 2764 "scanner.l"
{ 
  					  lineCount() ; 
  					  current->args += " volatile "; 
					  current->argList->volatileSpecifier=TRUE;
					}
	YY_BREAK
case 356:
YY_RULE_SETUP
#line 2769 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += " = 0"; 
					  current->virt = Pure; 
					  current->argList->pureSpecifier=TRUE;
					}
	YY_BREAK
case 357:
YY_RULE_SETUP
#line 2775 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += ", " ; 
					}
	YY_BREAK
case 358:
YY_RULE_SETUP
#line 2779 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += ' ' ; 
					}
	YY_BREAK
case 359:
YY_RULE_SETUP
#line 2783 "scanner.l"
{ current->args += *yytext; }
	YY_BREAK
case 360:
YY_RULE_SETUP
#line 2784 "scanner.l"
{ 
  					  current->exception = " throw(" ;
					  lineCount() ;
					  BEGIN( ExcpRound ) ;
					}
	YY_BREAK
case 361:
YY_RULE_SETUP
#line 2789 "scanner.l"
{
  					  current->exception = " raises(" ;
					  lineCount() ;
					  BEGIN( ExcpRound ) ;
  					}
	YY_BREAK
case 362:
YY_RULE_SETUP
#line 2794 "scanner.l"
{ current->exception += *yytext ;
					  ++bracketCount ;
					}
	YY_BREAK
case 363:
YY_RULE_SETUP
#line 2797 "scanner.l"
{ current->exception += *yytext ; 
					  if ( bracketCount )
					    --bracketCount ;
				          else
					    BEGIN( FuncQual ) ;
					}
	YY_BREAK
case 364:
YY_RULE_SETUP
#line 2803 "scanner.l"
{
  					  current->exception += yytext;
  					}
	YY_BREAK
case 365:
YY_RULE_SETUP
#line 2806 "scanner.l"
{ current->type += current->name ;
					  current->name  = current->args ;
					  current->args  = yytext ;
					  BEGIN( FuncRound ) ;
					}
	YY_BREAK
case 366:
YY_RULE_SETUP
#line 2811 "scanner.l"
{ lastCPPContext = YY_START;
  					  BEGIN(SkipCPP);
					}	
	YY_BREAK
case 367:
YY_RULE_SETUP
#line 2814 "scanner.l"
{ 
					  current->name=current->name.simplifyWhiteSpace();
  					  current->type=current->type.simplifyWhiteSpace();
  					  current->args=current->args.simplifyWhiteSpace();
					  QCString &cn=current->name;
					  QCString &rn=current_root->name;
					  //printf("current_root->name=`%s'\n",rn.data());
  					  //printf("Function: `%s' `%s' `%s'\n",current->type.data(),cn.data(),current->args.data());
					  int i;
					  if ((i=cn.findRev("::"))!=-1) // name contains scope
					  {
					    if (cn.left(i)==rn.right(i)) // scope name is redundant
					    {
                                              cn=cn.right(cn.length()-i-2); // strip scope
					      //printf("new name=`%s'\n",cn.data());
					    }
					  }
					  //if (cname.left(current_root->name.length()+2)==current_root->name+"::") 
					  //{ // strip redundant scope
					  //  current->name=current->name.right(current->name.length()-current_root->name.length()-2);
					  //  printf("new name=`%s'\n",current->name.data());
					  //}
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  if (*yytext!=';' || (current_root->section&Entry::SCOPE_MASK) )
					  {
					    int tempArg=current->name.find('<');
					    QCString tempName;
					    if (tempArg==-1) 
					      tempName=current->name;
					    else
					      tempName=current->name.left(tempArg);
					    if (current->type.isNull() && tempName.find("operator")==-1 && 
						(tempName.find('*')!=-1 || tempName.find('&')!=-1))
					    {
					      //printf("Scanner.l: found in class variable: `%s' `%s' `%s'\n",
					      //   current->type.data(),current->name.data(),current->args.data());
					      current->section = Entry::VARIABLE_SEC ;
					    }
					    else	      
					    {
					      //printf("Scanner.l: found in class function: `%s' `%s' `%s'\n",
					      //   current->type.data(),current->name.data(),current->args.data());
					      current->section = Entry::FUNCTION_SEC ;
					    }
					  }
					  else // a global function prototype or function variable
					  {
					    //printf("Scanner.l: prototype? type=`%s' name=`%s' args=`%s'\n",current->type.data(),current->name.data(),current->args.data());
					    QRegExp re("([^)]*)");
					    if (!current->type.isNull() && 
						(current->type.find(re,0)!=-1 || current->type.left(8)=="typedef "))
					    {
					      //printf("Scanner.l: found function variable!\n");
					      current->section = Entry::VARIABLE_SEC;
					    }
					    else
					    {
					      //printf("Scanner.l: found prototype\n");
  					      current->section = Entry::FUNCTION_SEC;
					      current->proto = TRUE;
					    }
					  }
					  //printf("Adding entry `%s' inLine`%d' bodyLine=`%d'\n",
					  //    current->name.data(),current->inLine,current->bodyLine);
					  previous = current;
					  current_root->addSubEntry(current);
					  current = new Entry ;
					  current->protection = protection;
				          current->sig = sig;
					  current->virt = virt;
					  current->stat = gstat;
					  current->slot = slot;
					  current->mGrpId = memberGroupId;
					  lastCurlyContext = FindMembers;
					  if( *yytext == '{' )
					  {
					    if (current_root->section & Entry::COMPOUND_MASK)
					      previous->inLine = TRUE;
					    //addToBody(yytext);
					    BEGIN( SkipCurly ) ;
					  }
					  else if( *yytext == ':' )
					  {
					    //addToBody(yytext);
					    BEGIN( SkipInits ) ;
					  }
					  else
					  {
					    if (previous->section!=Entry::VARIABLE_SEC)
					      previous->bodyLine=-1; // a function/member declaration
					    BEGIN( FindMembers ) ;
					  }
					}
	YY_BREAK
case 368:
YY_RULE_SETUP
#line 2909 "scanner.l"
{ 
  				          //addToBody(yytext);
  				          lastCurlyContext = FindMembers;
  					  BEGIN( SkipCurly ) ; 
					}
	YY_BREAK
case 369:
YY_RULE_SETUP
#line 2914 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  ++bracketCount ; 
					}
	YY_BREAK
case 370:
YY_RULE_SETUP
#line 2918 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  if( bracketCount )
					    --bracketCount ;
					  else
					    BEGIN( lastCurlyContext ) ;
					}
	YY_BREAK
case 371:
YY_RULE_SETUP
#line 2925 "scanner.l"
{ 
  					  if ( bracketCount )
					  {
					    //addToBody(yytext);
					    --bracketCount ;
					  }
					  else
					  {
					    lineCount();
					    tempEntry = current; // temporarily switch to the previous entry
					    current = previous;
					    current->doc.resize(0);
					    current->brief.resize(0);
					    lastAfterDocContext = SkipCurlyEndDoc;
					    afterDocTerminator = '}';
					    if (yytext[yyleng-3]=='/')
					      BEGIN(AfterDocLine);
					    else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					      BEGIN(AfterDocBrief);
					    else
					      BEGIN(AfterDoc);
					  }
					}
	YY_BREAK
case 372:
YY_RULE_SETUP
#line 2948 "scanner.l"
{
  				          //addToBody("}");
					  current = tempEntry;
  					  BEGIN( lastCurlyContext );
  					}
	YY_BREAK
case 373:
YY_RULE_SETUP
#line 2953 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 374:
YY_RULE_SETUP
#line 2956 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 375:
YY_RULE_SETUP
#line 2959 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 376:
YY_RULE_SETUP
#line 2962 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  lastStringContext=SkipCurly;
  				          BEGIN( SkipString ); 
					}
	YY_BREAK
case 377:
YY_RULE_SETUP
#line 2967 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  BEGIN( SkipCurlyCpp ); 
					}
	YY_BREAK
case 378:
YY_RULE_SETUP
#line 2971 "scanner.l"
{
  					  yyLineNr++;
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 379:
YY_RULE_SETUP
#line 2975 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 380:
YY_RULE_SETUP
#line 2978 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  yyLineNr++; 
  					  lastCurlyContext = FindMembers;
  					  BEGIN( SkipCurly ); 
					}
	YY_BREAK
case 381:
YY_RULE_SETUP
#line 2984 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  yyLineNr++; 
					}
	YY_BREAK
case 382:
YY_RULE_SETUP
#line 2988 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 383:
YY_RULE_SETUP
#line 2991 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 384:
YY_RULE_SETUP
#line 2994 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 385:
YY_RULE_SETUP
#line 2997 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 386:
YY_RULE_SETUP
#line 3000 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 387:
YY_RULE_SETUP
#line 3003 "scanner.l"
{ 
  				          //addToBodyCond(yytext);
  					  BEGIN( lastStringContext ); 
					}
	YY_BREAK
case 388:
YY_RULE_SETUP
#line 3007 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 389:
YY_RULE_SETUP
#line 3010 "scanner.l"
{
  					  yyLineNr++;
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 390:
YY_RULE_SETUP
#line 3014 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 391:
YY_RULE_SETUP
#line 3017 "scanner.l"
{ 
					  current->section = Entry::EMPTY_SEC ;
					  current->type.resize(0) ;
					  current->name.resize(0) ;
					  current->args.resize(0) ;
					  current->argList->clear();
					  BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 392:
YY_RULE_SETUP
#line 3025 "scanner.l"
{ 
					  current->name = yytext ;
					  lineCount();
					  BEGIN( ClassVar );
					}
	YY_BREAK
/*
{ID}/{BN}*"{"			{ // we probably got some M$ extension
  					  current->name = yytext ;
  					}
{ID}/{BN}*":"			{ // we probably got some M$ extension
  					  current->name = yytext ;
  					}
  */
case 393:
YY_RULE_SETUP
#line 3038 "scanner.l"
{
					  if (isTypedef)
					  {
					    typedefDict.insert(yytext,new QCString(current->name));
					    current->type.prepend("typedef ");
					  }
  					  current->type += ' ' ;
					  current->type += current->name ;
					  current->name = yytext ;
					  //BEGIN( FindMembers );
  					}
	YY_BREAK
case 394:
YY_RULE_SETUP
#line 3049 "scanner.l"
{
                                          // probably a function anyway
                                          unput('(');
					  BEGIN( FindMembers );
					}
	YY_BREAK
case 395:
YY_RULE_SETUP
#line 3054 "scanner.l"
{ 
  					  current->type.resize(0);
					  if (current->section == Entry::INTERFACE_SEC)
					    baseProt=Public;
					  else  
					    baseProt=Private;
                                          baseVirt=Normal;
					  baseName.resize(0);
					  BEGIN( BasesProt ) ;
					}
	YY_BREAK
case 396:
YY_RULE_SETUP
#line 3064 "scanner.l"
{
    					  unput(*yytext);
					  BEGIN( FindMembers );
    					}
	YY_BREAK
case 397:
YY_RULE_SETUP
#line 3068 "scanner.l"
{ current->fileName = yyFileName ;
					  current->startLine = yyLineNr ;
					  current->name = removeRedundantWhiteSpace(current->name);
					  if (current->name.length()==0 && !isTypedef) // anonymous compound
					    current->name.sprintf("@%d",anonCount++);
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 398:
YY_RULE_SETUP
#line 3075 "scanner.l"
{ baseVirt = Virtual; }
	YY_BREAK
case 399:
YY_RULE_SETUP
#line 3076 "scanner.l"
{ baseProt = Public; }
	YY_BREAK
case 400:
YY_RULE_SETUP
#line 3077 "scanner.l"
{ baseProt = Protected; }
	YY_BREAK
case 401:
YY_RULE_SETUP
#line 3078 "scanner.l"
{ baseProt = Private; }
	YY_BREAK
case 402:
YY_RULE_SETUP
#line 3079 "scanner.l"
{}
	YY_BREAK
case 403:
YY_RULE_SETUP
#line 3080 "scanner.l"
{ unput(*yytext); BEGIN(Bases); }
	YY_BREAK
case 404:
YY_RULE_SETUP
#line 3081 "scanner.l"
{ 
  					  //current->extends->append(
					  //  new BaseInfo(yytext,baseProt,baseVirt)
					  //) ;
  					  if (*yytext != ':')
  					    baseName += yytext;
					  else
					    baseName += (yytext+2);
					  current->args += ' ';
					  if (*yytext != ':')
					    current->args += yytext;
					  else
					    current->args += (yytext+2);
					}
	YY_BREAK
case 405:
YY_RULE_SETUP
#line 3095 "scanner.l"
{ current->name += *yytext;
  					  sharpCount=1; 
					  lastSkipSharpContext = YY_START;
					  specName = ¤t->name;
					  BEGIN ( Specialization );
					}
	YY_BREAK
case 406:
YY_RULE_SETUP
#line 3101 "scanner.l"
{ baseName += *yytext;
  					  sharpCount=1; 
					  lastSkipSharpContext = YY_START;
					  specName = &baseName;
					  BEGIN ( Specialization );
					}
	YY_BREAK
case 407:
YY_RULE_SETUP
#line 3107 "scanner.l"
{ *specName += *yytext;
  					  sharpCount++;
  					}
	YY_BREAK
case 408:
YY_RULE_SETUP
#line 3110 "scanner.l"
{
  					  *specName += *yytext;
  					  if (--sharpCount<=0)
					    BEGIN(lastSkipSharpContext);
  					}
	YY_BREAK
case 409:
YY_RULE_SETUP
#line 3115 "scanner.l"
{ lineCount(); *specName +=' '; }
	YY_BREAK
case 410:
YY_RULE_SETUP
#line 3116 "scanner.l"
{
  					  *specName += *yytext;
  					}
	YY_BREAK
case 411:
YY_RULE_SETUP
#line 3119 "scanner.l"
{ ++sharpCount; }
	YY_BREAK
case 412:
YY_RULE_SETUP
#line 3120 "scanner.l"
{ if (--sharpCount<=0)
					    BEGIN ( lastSkipSharpContext );
					}
	YY_BREAK
case 413:
YY_RULE_SETUP
#line 3123 "scanner.l"
{ ++roundCount; }
	YY_BREAK
case 414:
YY_RULE_SETUP
#line 3124 "scanner.l"
{ if (--roundCount<=0)
					    BEGIN ( lastSkipRoundContext );
					}
	YY_BREAK
case 415:
YY_RULE_SETUP
#line 3127 "scanner.l"
{ current->args += ',' ; 
					  current->name = removeRedundantWhiteSpace(current->name);
  					  if (baseName.length()>0)
  					    current->extends->append(
					      new BaseInfo(baseName,baseProt,baseVirt)
					    );
					  baseProt=Private;
					  baseVirt=Normal;
					  baseName.resize(0);
					  BEGIN(BasesProt);
					}
	YY_BREAK
case 416:
YY_RULE_SETUP
#line 3138 "scanner.l"
{ current->fileName = yyFileName ;
					  current->startLine = yyLineNr ;
					  current->name = removeRedundantWhiteSpace(current->name);
  					  if (baseName.length()>0)
  					    current->extends->append(
					      new BaseInfo(baseName,baseProt,baseVirt)
					    );
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 417:
YY_RULE_SETUP
#line 3147 "scanner.l"
{ current->program += yytext ;
					  lineCount() ;
					}
	YY_BREAK
case 418:
YY_RULE_SETUP
#line 3150 "scanner.l"
{ current->program += yytext ; } 
	YY_BREAK
case 419:
YY_RULE_SETUP
#line 3151 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 420:
YY_RULE_SETUP
#line 3152 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 421:
YY_RULE_SETUP
#line 3153 "scanner.l"
{ current->program += yytext ;
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 422:
YY_RULE_SETUP
#line 3156 "scanner.l"
{ current->program += *yytext ; }
	YY_BREAK
case 423:
YY_RULE_SETUP
#line 3158 "scanner.l"
{ 
  					  //printf("Start doc block at %d\n",yyLineNr);
					  removeSlashes=(yytext[1]=='/');
					  tmpDocType=-1;
					  if (YY_START==Curly)
					    current->doc+="\n\n";
					  else
  					    current->doc.resize(0);
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  BEGIN( Doc );
					}
	YY_BREAK
case 424:
*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 3171 "scanner.l"
{
  					  removeSlashes=(yytext[1]=='/');
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  if (!Config::autoBriefFlag) // use the Qt style
					  {
					    tmpDocType=-1;
					    if (YY_START==Curly)
					      current->doc+="\n\n";
					    else
  					      current->doc.resize(0);
					    BEGIN( Doc );
					  }
					  else // Use the javadoc style
					  {
					    if (YY_START==Curly)
					    {
					      tmpDocType=-1;
					      current->doc+="\n\n";
					      lastDocContext = Curly;
					      BEGIN( Doc );
					    }
					    else
					    {  
					      tmpDocType=Doc;
					      current->doc.resize(0);
					      current->brief.resize(0);
					      BEGIN( JavaDoc );
					    }
					  }
  					}
	YY_BREAK
case 425:
YY_RULE_SETUP
#line 3203 "scanner.l"
{ 
  					  current->brief.resize(0);
					  tmpDocType=-1;
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  BEGIN( LineDoc );
					}
	YY_BREAK
case 426:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 3;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 3211 "scanner.l"
{ 
  					  current->brief.resize(0);
					  tmpDocType=-1;
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  BEGIN( LineDoc );
					}
	YY_BREAK
case 427:
YY_RULE_SETUP
#line 3219 "scanner.l"

	YY_BREAK
case 428:
YY_RULE_SETUP
#line 3220 "scanner.l"
{
  					  current->type.resize(0);
  					  current->name.resize(0);
  					  current->args.resize(0);
					  current->argList->clear();
					  bracketCount=0;
					  BEGIN( SkipCurlyBlock );
					  	
  					}
	YY_BREAK
case 429:
YY_RULE_SETUP
#line 3229 "scanner.l"
{
  					  lastBriefContext=Doc;
  					  BEGIN( ClassDocBrief ); 
					}
	YY_BREAK
case 430:
YY_RULE_SETUP
#line 3233 "scanner.l"
{
  					  lastBriefContext=tmpDocType;
  					  BEGIN( ClassDocBrief ); 
					}
	YY_BREAK
case 431:
YY_RULE_SETUP
#line 3237 "scanner.l"
{
					  lineCount();
					  if (!current->brief.stripWhiteSpace().isEmpty())
					  {
					    BEGIN( tmpDocType );
					  }
 					} 
	YY_BREAK
case 432:
YY_RULE_SETUP
#line 3244 "scanner.l"
{
  					  unput(*yytext);
					  BEGIN(Doc);
  					}
	YY_BREAK
case 433:
*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 3248 "scanner.l"
{
  					  //printf("---> removing %s\n",yytext);
  					}
	YY_BREAK
/*
[^\n\@\*\.\\]+			{
  					  current->brief+=yytext;
  					}
  */
case 434:
YY_RULE_SETUP
#line 3256 "scanner.l"
{
  				          //printf("---> copy %c\n",*yytext);
  					  current->brief+=*yytext;
  					}
	YY_BREAK
case 435:
YY_RULE_SETUP
#line 3260 "scanner.l"
{
  					  current->brief+=' ';
					  lineCount();
  					}
	YY_BREAK
case 436:
YY_RULE_SETUP
#line 3264 "scanner.l"
{
  					  lineCount();
					  current->brief+=".";
					  BEGIN( tmpDocType );
					}
	YY_BREAK
case 437:
YY_RULE_SETUP
#line 3269 "scanner.l"
{ 
  					  current->doc+=yytext;
					  BEGIN( tmpDocType );
  					}
	YY_BREAK
case 438:
YY_RULE_SETUP
#line 3273 "scanner.l"
{
					  current->section = Entry::MEMBERDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( ClassDocFunc ); 
					}
	YY_BREAK
case 439:
YY_RULE_SETUP
#line 3279 "scanner.l"
{
  					  nextDefContext = YY_START==LineDoc ? DefLineDoc : ClassDoc;
  					  current->section = Entry::DEFINEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( ClassDocDefine );
  					}
	YY_BREAK
case 440:
YY_RULE_SETUP
#line 3286 "scanner.l"
{ 
  					  overloadContext = YY_START;
  					  BEGIN( ClassDocOverload ); 
					}
	YY_BREAK
case 441:
*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 3290 "scanner.l"
{
					  QCString orgDoc = current->doc;
					  current->doc = getOverloadDocs();
					  current->doc += "\n\n";
					  current->doc += orgDoc;
  					  BEGIN( overloadContext  );
  				        }
	YY_BREAK
case 442:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 3297 "scanner.l"
{
					  QCString orgDoc = current->doc;
					  current->doc = getOverloadDocs();
					  current->doc += "\n\n";
					  current->doc += orgDoc;
  					  BEGIN( overloadContext );
  					}
	YY_BREAK
case 443:
YY_RULE_SETUP
#line 3304 "scanner.l"
{ unput(*yytext);
  					  current->section = Entry::OVERLOADDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocFunc ); 
					}
	YY_BREAK
case 444:
YY_RULE_SETUP
#line 3310 "scanner.l"
{
  					  current->section = Entry::ENUMDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( EnumDocArg1 );
  					}
	YY_BREAK
case 445:
YY_RULE_SETUP
#line 3316 "scanner.l"
{
  					  current->section = Entry::GROUPDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( GroupDocArg1 );
  					}
	YY_BREAK
case 446:
YY_RULE_SETUP
#line 3322 "scanner.l"
{
  					  current->section = Entry::NAMESPACEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( NameSpaceDocArg1 );
  					}
	YY_BREAK
case 447:
YY_RULE_SETUP
#line 3328 "scanner.l"
{
  					  current->section = Entry::CLASSDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 448:
YY_RULE_SETUP
#line 3334 "scanner.l"
{
  					  current->section = Entry::UNIONDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 449:
YY_RULE_SETUP
#line 3340 "scanner.l"
{
  					  current->section = Entry::STRUCTDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 450:
YY_RULE_SETUP
#line 3346 "scanner.l"
{
  					  current->section = Entry::INTERFACEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 451:
YY_RULE_SETUP
#line 3352 "scanner.l"
{
  					  current->section = Entry::PAGEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( PageDocArg1 );
  					}
	YY_BREAK
case 452:
YY_RULE_SETUP
#line 3358 "scanner.l"
{
  					  current->section = Entry::MAINPAGEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( PageDocArg2 );
  					}
	YY_BREAK
case 453:
YY_RULE_SETUP
#line 3364 "scanner.l"
{
  					  current->section = Entry::FILEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( FileDocArg1 );
  					}
	YY_BREAK
case 454:
YY_RULE_SETUP
#line 3370 "scanner.l"
{
 					  current->section = Entry::EXAMPLE_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
 					  BEGIN( ExampleDocArg1 );
					}
	YY_BREAK
case 455:
YY_RULE_SETUP
#line 3376 "scanner.l"
{
				          current->name = stripQuotes(yytext);	
					  BEGIN( ExampleDoc );
					}
	YY_BREAK
case 456:
YY_RULE_SETUP
#line 3380 "scanner.l"
{ 
  					  lastDocRelContext = YY_START;
  					  BEGIN( ClassDocRelates ); 
					}
	YY_BREAK
case 457:
YY_RULE_SETUP
#line 3384 "scanner.l"
{ 
  					  current->relates = yytext;
					  BEGIN( lastDocRelContext );
					}
	YY_BREAK
case 458:
YY_RULE_SETUP
#line 3388 "scanner.l"
{
  					  current->name = yytext;
					  newDocState();
  					}
	YY_BREAK
case 459:
YY_RULE_SETUP
#line 3392 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\namespace at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
  					}
	YY_BREAK
case 460:
YY_RULE_SETUP
#line 3397 "scanner.l"
{
					  current->name = yytext;
					  // prepend outer scope name 
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
					  BEGIN( ClassDocArg2 );
					}
	YY_BREAK
case 461:
YY_RULE_SETUP
#line 3406 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\class at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  
  					}
	YY_BREAK
case 462:
YY_RULE_SETUP
#line 3412 "scanner.l"
{
  					  current->name = yytext;
					  if (current->name.right(5)==".html") 
					    current->name=current->name.left(current->name.length()-5);
					  BEGIN(GroupDocArg2);
  					}
	YY_BREAK
case 463:
YY_RULE_SETUP
#line 3418 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\defgroup at line %d of %s.\n",yyLineNr,yyFileName);
					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 464:
YY_RULE_SETUP
#line 3424 "scanner.l"
{
					  current->type = yytext;
					  current->type = current->type.stripWhiteSpace();
					  newDocState();
  					}
	YY_BREAK
case 465:
YY_RULE_SETUP
#line 3429 "scanner.l"
{
 					  newDocState();
  					}
	YY_BREAK
case 466:
YY_RULE_SETUP
#line 3432 "scanner.l"
{
  					  //printf("ClassDocArg2=%s\n",yytext);
					  current->includeFile = stripQuotes(yytext);
					  BEGIN( ClassDocArg3 );
					}
	YY_BREAK
case 467:
YY_RULE_SETUP
#line 3437 "scanner.l"
{ yyLineNr++; 
					  newDocState();
					}
	YY_BREAK
case 468:
YY_RULE_SETUP
#line 3440 "scanner.l"
{
  					  //printf("ClassDocArg3=%s\n",yytext);
 					  current->includeName = stripQuotes(yytext);
  					  newDocState();
					}
	YY_BREAK
case 469:
YY_RULE_SETUP
#line 3445 "scanner.l"
{ yyLineNr++; 
  					  newDocState();
					}
	YY_BREAK
case 470:
YY_RULE_SETUP
#line 3448 "scanner.l"
{
  					  current->name = stripQuotes(yytext);
					  newDocState();
  				        }
	YY_BREAK
case 471:
YY_RULE_SETUP
#line 3452 "scanner.l"
{
  					  current->name = yyFileName;
  					  yyLineNr++;
					  newDocState();
  					}
	YY_BREAK
case 472:
YY_RULE_SETUP
#line 3457 "scanner.l"
{
					  current->name = stripQuotes(yytext);
					  BEGIN( PageDocArg2 ); 
					}
	YY_BREAK
case 473:
YY_RULE_SETUP
#line 3461 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\page at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 474:
YY_RULE_SETUP
#line 3467 "scanner.l"
{
  				          yyLineNr++;
					  current->args = yytext;
					  BEGIN( PageDoc );
					}
	YY_BREAK
case 475:
YY_RULE_SETUP
#line 3472 "scanner.l"
{
  					  current->name = yytext;
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
  					  newDocState();
  					}
	YY_BREAK
case 476:
YY_RULE_SETUP
#line 3480 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\enum at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 477:
YY_RULE_SETUP
#line 3486 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 478:
YY_RULE_SETUP
#line 3489 "scanner.l"
{
  					  sectionType=SectionInfo::Section;
  					  BEGIN(SectionLabel);
  					}
	YY_BREAK
case 479:
YY_RULE_SETUP
#line 3493 "scanner.l"
{
  					  sectionType=SectionInfo::Subsection;
  					  BEGIN(SectionLabel);
  					}
	YY_BREAK
case 480:
YY_RULE_SETUP
#line 3497 "scanner.l"
{
  					  //printf("--> mgroup found!\n");
  					  lastMemberGroupContext = YY_START;
					  if (memberGroupId!=-1)
					  {
  					    warn("Warning: ignoring nested mgroup command "
					         "at line %d of %s. Previous command was found at line %d\n",
						 yyLineNr,yyFileName,lastMemberGroupLine);
					  }
					  else
					  {
					    memberGroupId   = newMemberGroupId();
					    current->mGrpId = memberGroupId;
					    lastMemberGroupLine = yyLineNr;
					  }
					  BEGIN(GroupHeader);
  					}
	YY_BREAK
case 481:
*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 3514 "scanner.l"
{
  					  //printf("--> endmgroup found!\n");
  					  memberGroupId = -1;
					  current->mGrpId = -1;
  					}
	YY_BREAK
case 482:
*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 3519 "scanner.l"
{
					  QCString header = ((QCString)yytext).stripWhiteSpace();
  					  memberGroupDict.insert(memberGroupId,
					                         new MemberGroup(memberGroupId,header)
								);
  					  BEGIN(lastMemberGroupContext);
  					}
	YY_BREAK
case 483:
YY_RULE_SETUP
#line 3526 "scanner.l"
{
  					  lastAnchorContext = YY_START;
  					  sectionType=SectionInfo::Anchor;
					  BEGIN(AnchorLabel);
  					}
	YY_BREAK
case 484:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 10;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 3531 "scanner.l"
{
					  current->doc+="\\\\verbatim";
					}
	YY_BREAK
case 485:
*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 3534 "scanner.l"
{
					  lastVerbState=YY_START;
					  current->doc+="\\verbatim";
  					  BEGIN(SkipVerbatim);
  					}
	YY_BREAK
case 486:
YY_RULE_SETUP
#line 3539 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 487:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 6;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 3542 "scanner.l"
{
  					  current->doc+="\\\\code";
  					}
	YY_BREAK
case 488:
*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 3545 "scanner.l"
{
  					  lastCodeState=YY_START;
					  current->doc+="\\code";
					  BEGIN(SkipCode);
					}
	YY_BREAK
case 489:
YY_RULE_SETUP
#line 3550 "scanner.l"
{
  					  lastCodeState=YY_START;
					  current->doc+="
";
					  BEGIN(SkipCode);
  					}
	YY_BREAK
case 490:
*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 3555 "scanner.l"
{
  					  current->doc+=yytext;
  					  BEGIN(lastVerbState);
  					}
	YY_BREAK
case 491:
YY_RULE_SETUP
#line 3559 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 492:
YY_RULE_SETUP
#line 3562 "scanner.l"
{
  					  if (!removeSlashes)
					    current->doc+=yytext;
  					}
	YY_BREAK
/*
^"//"({B}*"*"+)?		{
  					  if (!removeSlashes)
					    current->doc+=yytext;
  					}
^{B}*"*"+			
  */
case 493:
YY_RULE_SETUP
#line 3573 "scanner.l"
{ 
  					  current->doc+=yytext; 
  					}
	YY_BREAK
case 494:
YY_RULE_SETUP
#line 3576 "scanner.l"
{
  					  yyLineNr++;
					  current->doc+=*yytext;
  					}
	YY_BREAK
case 495:
YY_RULE_SETUP
#line 3580 "scanner.l"
{
  					  current->doc+=*yytext;
  					}
	YY_BREAK
case 496:
YY_RULE_SETUP
#line 3583 "scanner.l"
{
  					  current->doc+="\\endcode";
					  BEGIN(lastCodeState);
  					}
	YY_BREAK
case 497:
YY_RULE_SETUP
#line 3587 "scanner.l"
{
  					  current->doc+="
"; BEGIN(lastCodeState); } YY_BREAK case 498: YY_RULE_SETUP #line 3591 "scanner.l" { if (!removeSlashes) current->doc+=yytext; } YY_BREAK case 499: YY_RULE_SETUP #line 3595 "scanner.l" YY_BREAK case 500: YY_RULE_SETUP #line 3596 "scanner.l" { current->doc+=yytext; } YY_BREAK case 501: YY_RULE_SETUP #line 3599 "scanner.l" { current->doc+=yytext; } YY_BREAK case 502: YY_RULE_SETUP #line 3602 "scanner.l" { yyLineNr++; current->doc+=*yytext; } YY_BREAK case 503: YY_RULE_SETUP #line 3606 "scanner.l" { current->doc+=*yytext; } YY_BREAK case 504: YY_RULE_SETUP #line 3609 "scanner.l" { sectionLabel=yytext; addSection(); current->doc += "\\anchor "+sectionLabel+"\n"; BEGIN(lastAnchorContext); } YY_BREAK case 505: YY_RULE_SETUP #line 3615 "scanner.l" { sectionLabel=yytext; sectionTitle.resize(0); BEGIN(SectionTitle); } YY_BREAK case 506: *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 3620 "scanner.l" { sectionTitle+=yytext; sectionTitle=sectionTitle.stripWhiteSpace(); addSection(); current->doc += "\\section "+sectionLabel+"\n"; BEGIN(PageDoc); } YY_BREAK case 507: YY_RULE_SETUP #line 3627 "scanner.l" { sectionTitle+=yytext; } YY_BREAK case 508: YY_RULE_SETUP #line 3630 "scanner.l" { yyLineNr++ ; current->doc+=yytext; } YY_BREAK case 509: YY_RULE_SETUP #line 3631 "scanner.l" { current->doc += yytext; } YY_BREAK case 510: YY_RULE_SETUP #line 3632 "scanner.l" { current->doc += yytext; } YY_BREAK case 511: YY_RULE_SETUP #line 3633 "scanner.l" YY_BREAK case 512: YY_RULE_SETUP #line 3634 "scanner.l" { current->doc += yytext; } YY_BREAK case 513: YY_RULE_SETUP #line 3635 "scanner.l" { current->doc += &yytext[1]; } YY_BREAK case 514: YY_RULE_SETUP #line 3638 "scanner.l" { lastFormulaContext = YY_START; formulaText="$"; BEGIN(ReadFormulaShort); } YY_BREAK case 515: YY_RULE_SETUP #line 3643 "scanner.l" { lastFormulaContext = YY_START; formulaText="\\["; BEGIN(ReadFormulaLong); } YY_BREAK case 516: YY_RULE_SETUP #line 3648 "scanner.l" { formulaText+="$"; if (lastFormulaContext==ClassDocBrief || lastFormulaContext==LineDoc || lastFormulaContext==JavaDoc ) current->brief += addFormula(); else current->doc += addFormula(); BEGIN(lastFormulaContext); } YY_BREAK case 517: YY_RULE_SETUP #line 3659 "scanner.l" { formulaText+="\\]"; if (lastFormulaContext==ClassDocBrief || lastFormulaContext==LineDoc || lastFormulaContext==JavaDoc ) current->brief += addFormula(); else current->doc += addFormula(); BEGIN(lastFormulaContext); } YY_BREAK case 518: YY_RULE_SETUP #line 3670 "scanner.l" { formulaText+=*yytext; } YY_BREAK case 519: YY_RULE_SETUP #line 3671 "scanner.l" { checkDocs(); if (YY_START==SkipCode) // premature end of code block { err("Error: comment block ended inside \\code ... \\endcode block at line %d in %s!\n", yyLineNr,yyFileName); current->doc += "\\endcode\n\n"; BEGIN( lastDocContext ); } else if (YY_START==ClassDocBrief && lastBriefContext==Doc) { current->doc += "\n\n"; BEGIN( lastDocContext ); } else { current->doc += "\n\n"; //printf("Add docs for class %s\n",current->name.data()); current_root->addSubEntry(current); current = new Entry ; current->protection = protection ; current->sig = sig; current->virt = virt; current->stat = gstat; current->slot = slot; } BEGIN( FindMembers ); } YY_BREAK case 520: YY_RULE_SETUP #line 3700 "scanner.l" { current->args.resize(0); current->argList->clear(); BEGIN( PageDocTitle); } YY_BREAK case 521: YY_RULE_SETUP #line 3705 "scanner.l" { yyLineNr++; current->args+=" "; } YY_BREAK case 522: YY_RULE_SETUP #line 3706 "scanner.l" { current->args+=yytext; } YY_BREAK case 523: YY_RULE_SETUP #line 3707 "scanner.l" { BEGIN( PageDoc ); } YY_BREAK case 524: YY_RULE_SETUP #line 3708 "scanner.l" { lastGroupContext = YY_START; lineCount(); BEGIN( GroupName ); } YY_BREAK case 525: YY_RULE_SETUP #line 3713 "scanner.l" { current->groups->append( new QCString(yytext) ); } YY_BREAK case 526: YY_RULE_SETUP #line 3718 "scanner.l" { yyLineNr++; BEGIN( lastGroupContext ); } YY_BREAK case 527: YY_RULE_SETUP #line 3721 "scanner.l" { lastBriefContext=YY_START; BEGIN( ClassDocBrief ); } YY_BREAK case 528: YY_RULE_SETUP #line 3725 "scanner.l" { BEGIN( DocBaseClass ); } YY_BREAK case 529: YY_RULE_SETUP #line 3726 "scanner.l" { //printf("Adding base class %s\n",yytext); current->extends->append( new BaseInfo(yytext,Public,Normal) ); } YY_BREAK case 530: YY_RULE_SETUP #line 3732 "scanner.l" { yyLineNr++; BEGIN( ClassDoc ); } YY_BREAK case 531: YY_RULE_SETUP #line 3733 "scanner.l" { current->brief=current->brief.stripWhiteSpace(); yyLineNr++; BEGIN( lastBriefContext ); } YY_BREAK case 532: YY_RULE_SETUP #line 3738 "scanner.l" { yyLineNr++ ; current->brief += " "; } YY_BREAK case 533: YY_RULE_SETUP #line 3739 "scanner.l" YY_BREAK case 534: YY_RULE_SETUP #line 3740 "scanner.l" { current->brief=current->brief.stripWhiteSpace(); BEGIN( lastBriefContext ); } YY_BREAK case 535: YY_RULE_SETUP #line 3744 "scanner.l" { BEGIN( lastBriefContext ); } YY_BREAK /* {BS}/("\\"|"@")"author" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"internal" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"version" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"date" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"param" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"exception" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"return" { BEGIN( lastBriefContext ); } {BS}/("\\sa"|"@see") { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"bug" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"warning" { BEGIN( lastBriefContext ); } {BS}/("\\"|"@")"par"{BN}+ { BEGIN( lastBriefContext ); } */ case 536: YY_RULE_SETUP #line 3760 "scanner.l" { lastBriefContext=YY_START; BEGIN( ClassDocBrief ); } YY_BREAK case 537: YY_RULE_SETUP #line 3764 "scanner.l" { current->brief += *yytext; } YY_BREAK case 538: *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 3765 "scanner.l" { current->name = yytext; BEGIN( ClassDefineArgs ); } YY_BREAK case 539: YY_RULE_SETUP #line 3769 "scanner.l" { current->name = yytext; if (nextDefContext==ClassDoc) newDocState(); else BEGIN( nextDefContext ); } YY_BREAK case 540: YY_RULE_SETUP #line 3776 "scanner.l" { current->args+=")"; if (nextDefContext==ClassDoc) newDocState(); else BEGIN( nextDefContext ); } YY_BREAK case 541: YY_RULE_SETUP #line 3783 "scanner.l" { current->args+= yytext; } YY_BREAK case 542: YY_RULE_SETUP #line 3786 "scanner.l" { yyLineNr++; current->name = current->name.stripWhiteSpace(); if (current->section == Entry::MEMBERDOC_SEC && current->args.length()==0) current->section = Entry::VARIABLEDOC_SEC; newDocState(); } YY_BREAK case 543: YY_RULE_SETUP #line 3793 "scanner.l" { current->name+=yytext; } YY_BREAK case 544: YY_RULE_SETUP #line 3796 "scanner.l" { current->args+=*yytext; currentArgumentContext = ClassDocFuncQual; copyArgString=¤t->args; BEGIN( ReadFuncArgType ) ; } YY_BREAK case 545: YY_RULE_SETUP #line 3802 "scanner.l" { current->name+="(*"; BEGIN( ClassDocFuncPtr ); } YY_BREAK case 546: YY_RULE_SETUP #line 3806 "scanner.l" { current->name+=yytext; } YY_BREAK case 547: YY_RULE_SETUP #line 3809 "scanner.l" { current->name+=')'; BEGIN( ClassDocFunc ); } YY_BREAK case 548: YY_RULE_SETUP #line 3813 "scanner.l" { BEGIN( ClassDocFuncSkipLine); } YY_BREAK case 549: YY_RULE_SETUP #line 3816 "scanner.l" { current->args += " const "; current->argList->constSpecifier=TRUE; } YY_BREAK case 550: YY_RULE_SETUP #line 3820 "scanner.l" { current->args += " volatile "; current->argList->volatileSpecifier=TRUE; } YY_BREAK case 551: YY_RULE_SETUP #line 3824 "scanner.l" { current->args += " = 0"; current->virt = Pure; current->argList->pureSpecifier=TRUE; } YY_BREAK case 552: YY_RULE_SETUP #line 3829 "scanner.l" { current->exception = "throw("; BEGIN(ClassDocFuncExc); } YY_BREAK case 553: YY_RULE_SETUP #line 3833 "scanner.l" { current->exception += ')'; BEGIN(ClassDocFuncQual); } YY_BREAK case 554: YY_RULE_SETUP #line 3837 "scanner.l" { current->exception += *yytext; } YY_BREAK case 555: YY_RULE_SETUP #line 3840 "scanner.l" { current->name += *yytext; } YY_BREAK case 556: YY_RULE_SETUP #line 3843 "scanner.l" { yyLineNr++; current->name = current->name.stripWhiteSpace(); newDocState(); } YY_BREAK case 557: YY_RULE_SETUP #line 3848 "scanner.l" { current->doc += yytext; } YY_BREAK case 558: YY_RULE_SETUP #line 3849 "scanner.l" { current->doc += *yytext; } YY_BREAK case 559: YY_RULE_SETUP #line 3850 "scanner.l" { current->brief += *yytext; } YY_BREAK case 560: YY_RULE_SETUP #line 3851 "scanner.l" { yyLineNr++; current->doc += *yytext; } YY_BREAK case 561: YY_RULE_SETUP #line 3852 "scanner.l" { lineCount(); } YY_BREAK case 562: YY_RULE_SETUP #line 3853 "scanner.l" { yyLineNr++; BEGIN( lastDocContext ); } YY_BREAK case 563: YY_RULE_SETUP #line 3857 "scanner.l" { yyLineNr++; unput('/');unput('*'); BEGIN( ClassDoc ); } YY_BREAK case 564: YY_RULE_SETUP #line 3863 "scanner.l" { current->brief+=yytext; } YY_BREAK case 565: YY_RULE_SETUP #line 3864 "scanner.l" { yyLineNr++; if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 566: YY_RULE_SETUP #line 3870 "scanner.l" { current->brief+=yytext; } YY_BREAK case 567: YY_RULE_SETUP #line 3871 "scanner.l" { current->brief+=yytext; } YY_BREAK case 568: *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 3872 "scanner.l" YY_BREAK case 569: YY_RULE_SETUP #line 3873 "scanner.l" { current->brief+=yytext; yyLineNr++; } YY_BREAK case 570: YY_RULE_SETUP #line 3874 "scanner.l" { current->brief+=*yytext; } YY_BREAK case 571: YY_RULE_SETUP #line 3875 "scanner.l" { yyLineNr++; if (!current->brief.stripWhiteSpace().isEmpty()) BEGIN(AfterDoc); } YY_BREAK case 572: YY_RULE_SETUP #line 3879 "scanner.l" { if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 573: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 3884 "scanner.l" { BEGIN(AfterDoc); } YY_BREAK case 574: YY_RULE_SETUP #line 3885 "scanner.l" { current->brief+="\\internal"; } YY_BREAK case 575: YY_RULE_SETUP #line 3888 "scanner.l" { current->doc+="\\internal"; } YY_BREAK case 576: YY_RULE_SETUP #line 3891 "scanner.l" { BEGIN(AfterDocBrief); } YY_BREAK case 577: YY_RULE_SETUP #line 3892 "scanner.l" { current->doc+=yytext; } YY_BREAK case 578: *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 3893 "scanner.l" YY_BREAK case 579: YY_RULE_SETUP #line 3894 "scanner.l" { current->doc+=yytext; yyLineNr++; } YY_BREAK case 580: YY_RULE_SETUP #line 3895 "scanner.l" { current->doc+=*yytext; } YY_BREAK case 581: YY_RULE_SETUP #line 3896 "scanner.l" { if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 582: YY_RULE_SETUP #line 3901 "scanner.l" { current->doc += "\n\n"; err("Warning: unexpected end of " "documentation block found in " "file %s at line %d\n",yyFileName,yyLineNr); BEGIN( lastDocContext ); } YY_BREAK case 583: YY_RULE_SETUP #line 3908 "scanner.l" { checkDocs(); current->doc += "\n\n"; //printf("End of docs at line %d\n",yyLineNr); BEGIN( lastDocContext ); } YY_BREAK case 584: YY_RULE_SETUP #line 3914 "scanner.l" { unput('/');unput('*'); BEGIN( tmpDocType ); } YY_BREAK case 585: *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 3918 "scanner.l" YY_BREAK case 586: YY_RULE_SETUP #line 3919 "scanner.l" { current->doc += yytext; } YY_BREAK case 587: YY_RULE_SETUP #line 3921 "scanner.l" { yyLineNr++ ; BEGIN( lastCContext ) ; } YY_BREAK case 588: YY_RULE_SETUP #line 3924 "scanner.l" YY_BREAK case 589: YY_RULE_SETUP #line 3925 "scanner.l" YY_BREAK case 590: YY_RULE_SETUP #line 3926 "scanner.l" { yyLineNr++ ; } YY_BREAK case 591: YY_RULE_SETUP #line 3927 "scanner.l" YY_BREAK case 592: YY_RULE_SETUP #line 3928 "scanner.l" { lastCContext = YY_START ; BEGIN( SkipComment ) ; } YY_BREAK case 593: YY_RULE_SETUP #line 3931 "scanner.l" { BEGIN( lastCContext ) ; } YY_BREAK case 594: YY_RULE_SETUP #line 3932 "scanner.l" { lastCContext = YY_START ; BEGIN( SkipCxxComment ) ; } YY_BREAK case 595: YY_RULE_SETUP #line 3936 "scanner.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(Define): case YY_STATE_EOF(DefineArg): case YY_STATE_EOF(DefineEnd): case YY_STATE_EOF(Include): case YY_STATE_EOF(ClassName): case YY_STATE_EOF(ClassVar): case YY_STATE_EOF(Bases): case YY_STATE_EOF(BasesProt): case YY_STATE_EOF(NextSemi): case YY_STATE_EOF(FindMembers): case YY_STATE_EOF(FindMemberName): case YY_STATE_EOF(FindFields): case YY_STATE_EOF(FindFieldArg): case YY_STATE_EOF(Function): case YY_STATE_EOF(FuncRound): case YY_STATE_EOF(ExcpRound): case YY_STATE_EOF(FuncQual): case YY_STATE_EOF(Operator): case YY_STATE_EOF(Array): case YY_STATE_EOF(Curly): case YY_STATE_EOF(Using): case YY_STATE_EOF(UsingDirective): case YY_STATE_EOF(NameSpaceDocArg1): case YY_STATE_EOF(SkipCurly): case YY_STATE_EOF(SkipCurlyCpp): case YY_STATE_EOF(SkipCurlyEndDoc): case YY_STATE_EOF(SkipString): case YY_STATE_EOF(SkipInits): case YY_STATE_EOF(SkipCPP): case YY_STATE_EOF(SkipCPPBlock): case YY_STATE_EOF(SkipComment): case YY_STATE_EOF(SkipCxxComment): case YY_STATE_EOF(SkipCurlyBlock): case YY_STATE_EOF(SkipRoundBlock): case YY_STATE_EOF(SkipCode): case YY_STATE_EOF(Sharp): case YY_STATE_EOF(SkipSharp): case YY_STATE_EOF(SkipRound): case YY_STATE_EOF(TypedefName): case YY_STATE_EOF(Comment): case YY_STATE_EOF(Doc): case YY_STATE_EOF(JavaDoc): case YY_STATE_EOF(ClassDoc): case YY_STATE_EOF(LineDoc): case YY_STATE_EOF(DefLineDoc): case YY_STATE_EOF(ClassDocArg1): case YY_STATE_EOF(ClassDocArg2): case YY_STATE_EOF(ClassDocArg3): case YY_STATE_EOF(ClassDocFunc): case YY_STATE_EOF(ClassDocFuncPtr): case YY_STATE_EOF(ClassDocFuncQual): case YY_STATE_EOF(ClassDocFuncSkipLine): case YY_STATE_EOF(ClassDocFuncExc): case YY_STATE_EOF(ClassDocDefine): case YY_STATE_EOF(ClassDocRelates): case YY_STATE_EOF(ClassDocBrief): case YY_STATE_EOF(ClassDocOverload): case YY_STATE_EOF(ClassDefineArgs): case YY_STATE_EOF(GroupDocArg1): case YY_STATE_EOF(GroupDocArg2): case YY_STATE_EOF(GroupName): case YY_STATE_EOF(GroupHeader): case YY_STATE_EOF(AfterDoc): case YY_STATE_EOF(AfterDocBrief): case YY_STATE_EOF(AfterDocLine): case YY_STATE_EOF(PageDoc): case YY_STATE_EOF(PageDocTitle): case YY_STATE_EOF(PageDocArg1): case YY_STATE_EOF(PageDocArg2): case YY_STATE_EOF(FileDocArg1): case YY_STATE_EOF(FileDocArg2): case YY_STATE_EOF(ExampleDoc): case YY_STATE_EOF(ExampleDocArg1): case YY_STATE_EOF(EnumDoc): case YY_STATE_EOF(EnumDocArg1): case YY_STATE_EOF(FuncPtr): case YY_STATE_EOF(EndFuncPtr): case YY_STATE_EOF(FuncFunc): case YY_STATE_EOF(FuncFuncEnd): case YY_STATE_EOF(FuncFuncType): case YY_STATE_EOF(MemberSpec): case YY_STATE_EOF(MemberSpecSkip): case YY_STATE_EOF(SkipVerbatim): case YY_STATE_EOF(Text): case YY_STATE_EOF(DocScan): case YY_STATE_EOF(DocParam): case YY_STATE_EOF(DocException): case YY_STATE_EOF(DocHtmlScan): case YY_STATE_EOF(DocLatexScan): case YY_STATE_EOF(DocEmphasis): case YY_STATE_EOF(DocBold): case YY_STATE_EOF(DocCode): case YY_STATE_EOF(DocCodeBlock): case YY_STATE_EOF(DocInternal): case YY_STATE_EOF(DocLink): case YY_STATE_EOF(DocLinkText): case YY_STATE_EOF(DocSkipWord): case YY_STATE_EOF(DocInclude): case YY_STATE_EOF(DocDontInclude): case YY_STATE_EOF(DocDescItem): case YY_STATE_EOF(DocHtmlLink): case YY_STATE_EOF(DocHtmlAnchor): case YY_STATE_EOF(DocHtmlHref1): case YY_STATE_EOF(DocHtmlHref2): case YY_STATE_EOF(DocBaseClass): case YY_STATE_EOF(DocSkiplineKey): case YY_STATE_EOF(DocSkipKey): case YY_STATE_EOF(DocLineKey): case YY_STATE_EOF(DocUntilKey): case YY_STATE_EOF(DocPar): case YY_STATE_EOF(DocRefName): case YY_STATE_EOF(DocVerbatim): case YY_STATE_EOF(DocVerbInc): case YY_STATE_EOF(DocIndexWord): case YY_STATE_EOF(DocRef): case YY_STATE_EOF(DocRefArg): case YY_STATE_EOF(DocRefArgStart): case YY_STATE_EOF(DocRefItem): case YY_STATE_EOF(DocRefItemName): case YY_STATE_EOF(DocImage): case YY_STATE_EOF(DocHtmlImageName): case YY_STATE_EOF(DocLatexImageName): case YY_STATE_EOF(DocLatexImageWidth): case YY_STATE_EOF(SectionLabel): case YY_STATE_EOF(SectionTitle): case YY_STATE_EOF(SkipTemplate): case YY_STATE_EOF(EndTemplate): case YY_STATE_EOF(CopyArgString): case YY_STATE_EOF(CopyArgRound): case YY_STATE_EOF(CopyArgSharp): case YY_STATE_EOF(ReadFuncArgType): case YY_STATE_EOF(ReadTempArgs): case YY_STATE_EOF(Specialization): case YY_STATE_EOF(DocSkipHtmlComment): case YY_STATE_EOF(ReadFormulaShort): case YY_STATE_EOF(ReadFormulaLong): case YY_STATE_EOF(AnchorLabel): 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 >= 3761 ) 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 >= 3761 ) 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 == 3760); 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; 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'); 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 3936 "scanner.l" //---------------------------------------------------------------------------- //static void addToBody(const char *text) //{ // if (Config::includeSourceFlag) // previous->body+=text; //} //static void addToBodyCond(const char *text) //{ // if (Config::includeSourceFlag && lastStringContext==SkipCurly) // previous->body+=text; //} //---------------------------------------------------------------------------- void scanString(const char *s) { const char *oldInputString = inputString; int oldInputPosition = inputPosition; int oldRule = YY_START; YY_BUFFER_STATE oldBuffer = YY_CURRENT_BUFFER; yy_switch_to_buffer(yy_create_buffer(scanYYin, YY_BUF_SIZE)); inputString = s; inputPosition = 0; BEGIN( Text ); scanYYlex(); yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(oldBuffer); inputString = oldInputString; inputPosition = oldInputPosition; BEGIN( oldRule ); } //---------------------------------------------------------------------------- static void newDocState() { if (tmpDocType!=-1) { tmpDocType=ClassDoc; BEGIN(JavaDoc); } else { BEGIN(ClassDoc); } } //---------------------------------------------------------------------------- void parseCompounds(Entry *rt) { //printf("parseCompounds(%s)\n",rt->name.data()); EntryListIterator eli(*rt->sublist); Entry *ce; for (;(ce=eli.current());++eli) { if (ce->program.length()>0) { //printf("-- %s ---------\n%s\n---------------\n", // ce->name.data(),ce->program.data()); // init scanner state inputString = ce->program; inputPosition = 0; scanYYrestart( scanYYin ) ; if (ce->section==Entry::ENUM_SEC) BEGIN( FindFields ) ; else BEGIN( FindMembers ) ; current_root = ce ; strcpy( yyFileName, ce->fileName ) ; yyLineNr = ce->startLine ; //printf("---> Inner block starts at line %d\n",yyLineNr); //current->reset(); current = new Entry; // set default protection based on the compound type if( ce->section==Entry::CLASS_SEC ) // class current->protection = protection = Private ; else if (ce->section == Entry::ENUM_SEC ) // enum current->protection = protection = ce->protection; else if (ce->name.length()>0 && ce->name.at(0)=='@') // anonymous union current->protection = protection = ce->protection; else // named struct, union, or interface current->protection = protection = Public ; sig = FALSE; slot = FALSE; gstat = FALSE; virt = Normal; scanYYlex() ; delete current; ce->program.resize(0); } parseCompounds(ce); } } //---------------------------------------------------------------------------- void parseMain(Entry *rt) { initParser(); anonCount = 0; protection = Public; sig = FALSE; slot = FALSE; gstat = FALSE; virt = Normal; current_root = rt; global_root = rt; current = new Entry; inputString = rt->program; //printf("parseDoc=`%s'\n",inputString); inputPosition = 0; ifCount=0; scanYYrestart( scanYYin ); BEGIN( FindMembers ); scanYYlex(); rt->program.resize(0); delete current; parseCompounds(rt); } //---------------------------------------------------------------------------- void parseDocument(OutputList &ol,const QCString &docString) { //inParamBlock=inSeeBlock=inReturnBlock=FALSE; curTable = 0; outDoc = new OutputList(&ol); currentIncludeFile.resize(0); includeFileOffset=0; includeFileLength=0; if (!docString) return; linkRef = ""; linkText = ""; inputString = docString; inputPosition = 0; scanYYrestart( scanYYin ); BEGIN( DocScan ); insideArgumentList = FALSE; scanYYlex(); if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } if (inBlock()) endBlock(); ol+=*outDoc; delete outDoc; return; } //---------------------------------------------------------------------------- void parseDoc(OutputList &ol,const char *clName, const char *memName,const QCString &docString) { initParser(); initParseCodeContext(); exampleDoc=FALSE; // do not cross reference with member docs className=clName; memberName=memName; if (memName) { refName=className+"::"+memberName; } else { refName=className; } parseDocument(ol,docString); } //---------------------------------------------------------------------------- void parseText(OutputList &ol,const QCString &txtString) { inputString = txtString; outDoc = new OutputList(&ol); inputPosition = 0; scanYYrestart( scanYYin ); BEGIN( Text ); scanYYlex(); if (memberGroupId!=-1) { warn("Warning: Missing \\endmgroup in file %s\n",yyFileName); memberGroupId=-1; } ol+=*outDoc; delete outDoc; return; } //---------------------------------------------------------------------------- void parseExample(OutputList &ol,const QCString &docString, const char *fileName) { initParser(); initParseCodeContext(); exampleDoc=TRUE; // cross reference with member docs exampleName=fileName; parseDocument(ol,docString); } //---------------------------------------------------------------------------- extern "C" { // some bogus code to keep the compiler happy void scannerYYdummy() { yy_flex_realloc(0,0); } }