#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: /cvs/root/flex/flex/skel.c,v 1.2 2004/05/07 00:28:17 jkh Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 262144 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 591 #define YY_END_OF_BUFFER 592 static yyconst short int yy_acclist[4133] = { 0, 36, 36, 290, 290, 290, 290, 290, 290, 287, 287, 46, 46, 52, 52, 345, 345, 345, 345, 592, 586, 591, 581, 591, 582, 585, 586, 591, 583, 586, 591, 584, 586, 591, 586, 591, 586, 591, 171, 586, 591, 177, 586, 591, 177, 586, 591, 172, 581, 591, 176, 177, 582, 585, 586, 591, 177, 583, 586, 591, 177, 584, 586, 591, 177, 586, 591, 177, 586, 591, 586, 591, 581, 591, 586, 591, 586, 591, 586, 591, 586, 591, 586, 591, 450, 586, 591, 458, 459, 586, 591, 483, 586, 591, 586, 591, 586, 591, 492, 581, 591, 586, 591, 586, 591, 586, 591, 477, 586, 591, 464, 586, 591, 586, 591, 461, 586, 591, 586, 591, 476, 586, 591, 494, 586, 591, 586, 591, 463, 586, 591, 463, 586, 591, 463, 586, 591, 473, 586, 591, 472, 581, 591, 473, 582, 585, 586, 591, 466, 473, 583, 586, 591, 473, 586, 591, 473, 584, 586, 591, 473, 586, 591, 468, 473, 586, 591, 469, 473, 586, 591, 473, 586, 591, 471, 473, 586, 591, 471, 473, 586, 591, 467, 473, 586, 591, 586, 591, 475, 586, 591, 474, 586, 591, 455, 586, 591, 455, 582, 585, 586, 591, 455, 583, 586, 591, 455, 584, 586, 591, 455, 586, 591, 454, 455, 586, 591, 453, 455, 586, 591, 37, 586, 591, 36, 37, 586, 591, 35, 581, 591, 37, 582, 585, 586, 591, 37, 583, 586, 591, 37, 586, 591, 37, 584, 586, 591, 37, 586, 591, 34, 37, 586, 591, 31, 37, 586, 591, 37, 586, 591, 33, 37, 586, 591, 395, 586, 591, 394, 581, 591, 395, 582, 585, 586, 591, 395, 583, 586, 591, 395, 586, 591, 395, 584, 586, 591, 395, 586, 591, 392, 395, 586, 591, 393, 395, 586, 591, 586, 591, 492, 581, 591, 586, 591, 586, 591, 509, 586, 591, 586, 591, 495, 586, 591, 490, 491, 586, 591, 510, 586, 591, 489, 586, 591, 488, 489, 586, 591, 488, 581, 591, 489, 582, 585, 586, 591, 489, 583, 586, 591, 489, 584, 586, 591, 489, 586, 591, 489, 586, 591, 489, 586, 591, 9, 582, 585, 586, 591, 7, 584, 586, 591, 2, 586, 591, 10, 586, 591, 10, 586, 591, 1, 586, 591, 254, 586, 591, 254, 582, 585, 586, 591, 254, 583, 586, 591, 254, 584, 586, 591, 11, 254, 586, 591, 254, 586, 591, 11, 254, 586, 591, 56, 586, 591, 56, 581, 591, 56, 586, 591, 586, 591, 161, 583, 586, 591, 586, 591, 179, 586, 591, 180, 586, 591, 341, 586, 591, 42, 586, 591, 255, 586, 591, 148, 586, 591, 586, 591, 586, 591, 253, 586, 591, 255, 586, 591, 277, 586, 591, 186, 586, 591, 586, 591, 586, 591, 146, 586, 591, 146, 586, 591, 256, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 146, 586, 591, 528, 586, 591, 14, 16, 586, 591, 15, 581, 591, 14, 16, 582, 585, 586, 591, 14, 16, 583, 586, 591, 14, 16, 584, 586, 591, 14, 16, 586, 591, 16, 586, 591, 586, 591, 581, 591, 586, 591, 586, 591, 586, 591, 146, 586, 591, 586, 591, 581, 591, 586, 591, 283, 586, 591, 288, 586, 591, 586, 591, 285, 586, 591, 284, 586, 591, 282, 586, 591, 289, 586, 591, 586, 591, 390, 583, 586, 591, 420, 586, 591, 422, 586, 591, 421, 586, 591, 422, 586, 591, 408, 586, 591, 389, 408, 586, 591, 389, 581, 591, 408, 582, 585, 586, 591, 390, 408, 583, 586, 591, 408, 584, 586, 591, 378, 408, 586, 591, 379, 408, 586, 591, 388, 408, 586, 591, 408, 586, 591, 415, 586, 591, 415, 582, 585, 586, 591, 415, 583, 586, 591, 415, 584, 586, 591, 413, 415, 586, 591, 414, 415, 586, 591, 415, 586, 591, 419, 586, 591, 418, 581, 591, 419, 582, 585, 586, 591, 419, 583, 586, 591, 419, 584, 586, 591, 419, 586, 591, 417, 419, 586, 591, 416, 419, 586, 591, 389, 408, 586, 591, 389, 581, 591, 408, 586, 591, 380, 408, 586, 591, 408, 586, 591, 391, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 403, 408, 586, 591, 103, 586, 591, 103, 581, 591, 103, 582, 585, 586, 591, 103, 583, 586, 591, 103, 584, 586, 591, 105, 586, 591, 103, 586, 591, 102, 103, 586, 591, 103, 586, 591, 272, 586, 591, 272, 582, 585, 586, 591, 272, 583, 586, 591, 272, 584, 586, 591, 272, 586, 591, 271, 272, 586, 591, 269, 272, 586, 591, 290, 313, 586, 591, 290, 311, 313, 586, 591, 311, 581, 591, 311, 313, 586, 591, 294, 313, 582, 585, 586, 591, 292, 313, 583, 586, 591, 297, 313, 584, 586, 591, 313, 586, 591, 313, 586, 591, 299, 313, 586, 591, 301, 313, 586, 591, 301, 313, 586, 591, 313, 586, 591, 300, 313, 586, 591, 586, 591, 117, 586, 591, 115, 586, 591, 115, 586, 591, 586, 591, 581, 591, 586, 591, 586, 591, 586, 591, 116, 586, 591, 432, 443, 586, 591, 432, 443, 586, 591, 431, 581, 591, 429, 443, 582, 585, 586, 591, 439, 443, 583, 586, 591, 442, 443, 584, 586, 591, 443, 586, 591, 443, 586, 591, 443, 586, 591, 424, 443, 586, 591, 425, 443, 586, 591, 432, 443, 586, 591, 430, 439, 443, 583, 586, 591, 433, 581, 591, 443, 582, 585, 586, 591, 443, 586, 591, 443, 586, 591, 428, 586, 591, 449, 586, 591, 448, 581, 591, 445, 449, 582, 585, 586, 591, 449, 583, 586, 591, 449, 584, 586, 591, 449, 586, 591, 449, 586, 591, 449, 586, 591, 449, 582, 585, 586, 591, 446, 449, 584, 586, 591, 437, 443, 582, 585, 586, 591, 439, 443, 583, 586, 591, 443, 586, 591, 438, 443, 586, 591, 423, 443, 586, 591, 167, 586, 591, 169, 581, 591, 167, 586, 591, 167, 582, 585, 586, 591, 167, 583, 586, 591, 167, 584, 586, 591, 167, 586, 591, 167, 586, 591, 580, 586, 591, 580, 586, 591, 580, 582, 585, 586, 591, 580, 583, 586, 591, 580, 584, 586, 591, 586, 591, 580, 586, 591, 586, 591, 579, 581, 591, 582, 585, 586, 591, 583, 586, 591, 584, 586, 591, 586, 591, 5, 586, 591, 6, 586, 591, 3, 586, 591, 4, 586, 591, 281, 586, 591, 280, 281, 586, 591, 280, 581, 591, 281, 582, 585, 586, 591, 281, 583, 586, 591, 281, 584, 586, 591, 281, 586, 591, 279, 281, 586, 591, 278, 281, 586, 591, 505, 586, 591, 506, 586, 591, 507, 586, 591, 508, 586, 591, 276, 586, 591, 275, 582, 585, 586, 591, 276, 583, 586, 591, 276, 584, 586, 591, 276, 586, 591, 273, 586, 591, 274, 586, 591, 287, 586, 591, 286, 581, 591, 287, 582, 585, 586, 591, 287, 583, 586, 591, 287, 584, 586, 591, 287, 586, 591, 586, 591, 305, 586, 591, 304, 586, 591, 304, 586, 591, 304, 586, 591, 157, 586, 591, 155, 581, 591, 157, 582, 585, 586, 591, 157, 583, 586, 591, 157, 584, 586, 591, 157, 586, 591, 156, 157, 586, 591, 159, 586, 591, 159, 582, 585, 586, 591, 159, 583, 586, 591, 159, 584, 586, 591, 159, 586, 591, 159, 586, 591, 520, 522, 586, 591, 515, 522, 586, 591, 515, 581, 591, 520, 522, 582, 585, 586, 591, 520, 522, 583, 586, 591, 520, 522, 584, 586, 591, 522, 586, 591, 522, 586, 591, 522, 586, 591, 520, 522, 586, 591, 586, 591, 60, 586, 591, 59, 586, 591, 586, 591, 586, 591, 536, 586, 591, 537, 581, 591, 536, 582, 585, 586, 591, 536, 583, 586, 591, 536, 584, 586, 591, 536, 586, 591, 536, 586, 591, 536, 586, 591, 536, 586, 591, 536, 586, 591, 529, 536, 586, 591, 530, 536, 586, 591, 165, 586, 591, 166, 581, 591, 165, 582, 585, 586, 591, 165, 583, 586, 591, 165, 584, 586, 591, 165, 586, 591, 586, 591, 586, 591, 174, 586, 591, 174, 582, 585, 586, 591, 174, 583, 586, 591, 174, 584, 586, 591, 174, 586, 591, 173, 174, 586, 591, 407, 586, 591, 407, 586, 591, 407, 582, 585, 586, 591, 407, 583, 586, 591, 407, 586, 591, 407, 584, 586, 591, 404, 407, 586, 591, 407, 586, 591, 404, 407, 586, 591, 405, 407, 586, 591, 406, 407, 586, 591, 200, 204, 586, 591, 203, 581, 591, 202, 204, 582, 585, 586, 591, 200, 204, 583, 586, 591, 200, 204, 584, 586, 591, 200, 204, 586, 591, 586, 591, 43, 586, 591, 45, 586, 591, 54, 586, 591, 44, 586, 591, 55, 586, 591, 46, 586, 591, 46, 581, 591, 46, 582, 585, 586, 591, 46, 583, 586, 591, 46, 584, 586, 591, 47, 586, 591, 46, 586, 591, 586, 591, 51, 586, 591, 586, 591, 48, 586, 591, 49, 586, 591, 52, 586, 591, 52, 581, 591, 52, 582, 585, 586, 591, 52, 583, 586, 591, 52, 584, 586, 591, 53, 586, 591, 52, 586, 591, 452, 586, 591, 135, 586, 591, 586, 591, 132, 586, 591, 136, 586, 591, 136, 586, 591, 136, 586, 591, 586, 591, 137, 586, 591, 133, 586, 591, 586, 591, 586, 591, 586, 591, 586, 591, 586, 591, 143, 586, 591, 586, 591, 144, 586, 591, 206, 586, 591, 206, 586, 591, 198, 581, 591, 190, 206, 582, 585, 586, 591, 206, 583, 586, 591, 196, 206, 584, 586, 591, 187, 194, 206, 586, 591, 195, 206, 586, 591, 189, 206, 586, 591, 206, 586, 591, 206, 586, 591, 189, 206, 586, 591, 194, 206, 586, 591, 195, 206, 586, 591, 206, 586, 591, 206, 586, 591, 194, 206, 586, 591, 188, 194, 206, 586, 591, 586, 591, 581, 591, 586, 591, 586, 591, 586, 591, 160, 586, 591, 586, 591, 581, 591, 586, 591, 586, 591, 307, 586, 591, 586, 591, 307, 586, 591, 308, 586, 591, 306, 586, 591, 309, 586, 591, 310, 586, 591, 128, 586, 591, 128, 582, 585, 586, 591, 128, 583, 586, 591, 128, 584, 586, 591, 128, 586, 591, 122, 128, 586, 591, 124, 128, 586, 591,16510, 317, 586, 591, 317, 586, 591, 581, 591, 317, 586, 591, 317, 582, 585, 586, 591, 317, 583, 586, 591, 317, 586, 591, 317, 584, 586, 591, 317, 586, 591, 317, 586, 591, 316, 317, 586, 591, 321, 586, 591, 319, 581, 591, 321, 582, 585, 586, 591, 321, 583, 586, 591, 321, 584, 586, 591, 320, 321, 586, 591, 321, 586, 591, 325, 586, 591, 327, 586, 591, 586, 591, 342, 377, 586, 591, 345, 377, 586, 591, 345, 376, 581, 591, 346, 377, 582, 585, 586, 591, 377, 583, 586, 591, 375, 377, 584, 586, 591, 347, 377, 586, 591, 348, 377, 586, 591, 377, 586, 591, 377, 586, 591, 365, 377, 586, 591, 366, 377, 586, 591, 154, 586, 591, 153, 581, 591, 154, 582, 585, 586, 591, 154, 583, 586, 591, 154, 584, 586, 591, 154, 586, 591, 152, 154, 586, 591, 586, 591, 108, 586, 591, 586, 591, 110, 586, 591, 109, 586, 591, 212, 586, 591, 211, 581, 591, 208, 212, 582, 585, 586, 591, 212, 583, 586, 591, 212, 584, 586, 591, 212, 586, 591, 212, 586, 591, 212, 586, 591, 212, 582, 585, 586, 591, 209, 212, 584, 586, 591, 218, 586, 591, 217, 581, 591, 214, 218, 582, 585, 586, 591, 218, 583, 586, 591, 218, 584, 586, 591, 218, 586, 591, 218, 586, 591, 218, 586, 591, 218, 582, 585, 586, 591, 215, 218, 584, 586, 591, 225, 226, 586, 591, 222, 581, 591, 219, 226, 582, 585, 586, 591, 225, 226, 583, 586, 591, 223, 226, 584, 586, 591, 220, 226, 586, 591, 221, 226, 586, 591, 225, 226, 586, 591, 240, 243, 586, 591, 242, 581, 591, 235, 243, 582, 585, 586, 591, 240, 243, 583, 586, 591, 236, 243, 584, 586, 591, 241, 243, 586, 591, 237, 243, 586, 591, 238, 243, 586, 591, 233, 234, 586, 591, 230, 581, 591, 227, 234, 582, 585, 586, 591, 233, 234, 583, 586, 591, 231, 234, 584, 586, 591, 228, 234, 586, 591, 229, 234, 586, 591, 233, 234, 586, 591, 249, 252, 586, 591, 251, 581, 591, 244, 252, 582, 585, 586, 591, 249, 252, 583, 586, 591, 245, 252, 584, 586, 591, 250, 252, 586, 591, 246, 252, 586, 591, 247, 252, 586, 591, 514, 586, 591, 514, 586, 591, 513, 581, 591, 514, 582, 585, 586, 591, 514, 583, 586, 591, 514, 584, 586, 591, 511, 514, 586, 591, 512, 514, 586, 591, 514, 586, 591, 504, 586, 591, 498, 504, 586, 591, 498, 581, 591, 504, 582, 585, 586, 591, 504, 583, 586, 591, 504, 584, 586, 591, 502, 504, 586, 591, 503, 504, 586, 591, 504, 586, 591, 496, 504, 586, 591, 497, 504, 586, 591, 504, 586, 591, 401, 586, 591, 402, 581, 591, 397, 401, 582, 585, 586, 591, 401, 583, 586, 591, 401, 586, 591, 398, 401, 584, 586, 591, 401, 586, 591, 396, 401, 586, 591, 400, 401, 586, 591, 328, 408, 586, 591, 329, 408, 586, 591, 333, 586, 591, 333, 582, 585, 586, 591, 333, 583, 586, 591, 333, 584, 586, 591, 333, 586, 591, 333, 586, 591, 338, 586, 591, 337, 338, 586, 591, 337, 581, 591, 338, 582, 585, 586, 591, 338, 583, 586, 591, 338, 584, 586, 591, 334, 338, 586, 591, 335, 338, 586, 591, 336, 338, 586, 591, 338, 586, 591, 270, 272, 586, 591, 343, 377, 586, 591, 376, 581, 591, 372, 377, 582, 585, 586, 591, 343, 377, 583, 586, 591, 377, 584, 586, 591, 343, 377, 586, 591, 377, 586, 591, 377, 582, 585, 586, 591, 373, 377, 584, 586, 591, 344, 377, 586, 591, 344, 377, 583, 586, 591, 367, 377, 586, 591, 368, 377, 586, 591, 377, 586, 591, 369, 377, 586, 591, 370, 377, 586, 591, 354, 363, 586, 591, 362, 581, 591, 354, 363, 582, 585, 586, 591, 354, 363, 583, 586, 591, 354, 363, 584, 586, 591, 363, 586, 591, 354, 363, 586, 591, 363, 586, 591, 354, 363, 586, 591, 363, 586, 591,16737, 360, 361, 586, 591, 356, 581, 591, 360, 361, 582, 585, 586, 591, 360, 361, 583, 586, 591, 360, 361, 584, 586, 591, 360, 361, 586, 591, 361, 586, 591, 363, 586, 591, 363, 582, 585, 586, 591, 363, 583, 586, 591, 363, 584, 586, 591, 363, 586, 591, 363, 586, 591, 260, 586, 591, 260, 582, 585, 586, 591, 260, 583, 586, 591, 260, 584, 586, 591, 260, 586, 591, 257, 260, 586, 591, 260, 586, 591, 268, 586, 591, 268, 586, 591, 581, 591, 268, 582, 585, 586, 591, 268, 583, 586, 591, 268, 586, 591, 268, 584, 586, 591, 268, 586, 591, 267, 268, 586, 591, 264, 268, 586, 591, 268, 586, 591, 586, 591, 581, 591, 586, 591, 261, 586, 591, 577, 586, 591, 577, 582, 585, 586, 591, 577, 583, 586, 591, 577, 584, 586, 591, 563, 577, 586, 591, 577, 586, 591, 577, 586, 591, 568, 586, 591, 568, 586, 591, 581, 591, 568, 586, 591, 568, 582, 585, 586, 591, 568, 583, 586, 591, 568, 586, 591, 568, 584, 586, 591, 566, 568, 586, 591, 567, 568, 586, 591, 568, 586, 591, 568, 586, 591, 565, 568, 586, 591, 576, 586, 591, 576, 586, 591, 576, 582, 585, 586, 591, 576, 583, 586, 591, 576, 584, 586, 591, 576, 586, 591, 576, 586, 591, 576, 586, 591, 576, 586, 591, 576, 586, 591, 569, 576, 586, 591, 575, 586, 591, 575, 582, 585, 586, 591, 575, 583, 586, 591, 575, 584, 586, 591, 574, 575, 586, 591, 575, 586, 591, 578, 586, 591, 578, 582, 585, 586, 591, 578, 583, 586, 591, 578, 584, 586, 591, 578, 586, 591, 586, 591, 539, 581, 591, 582, 585, 586, 591, 583, 586, 591, 584, 586, 591, 586, 591, 550, 552, 586, 591, 550, 552, 586, 591, 551, 581, 591, 550, 552, 582, 585, 586, 591, 550, 552, 583, 586, 591, 550, 552, 584, 586, 591, 552, 586, 591, 552, 586, 591, 550, 552, 586, 591, 552, 586, 591, 552, 586, 591, 550, 552, 586, 591, 552, 586, 591, 552, 586, 591, 558, 561, 586, 591, 560, 581, 591, 558, 561, 582, 585, 586, 591, 558, 561, 583, 586, 591, 561, 586, 591, 558, 561, 584, 586, 591, 561, 586, 591, 561, 586, 591, 561, 586, 591, 561, 586, 591, 558, 561, 586, 591, 561, 586, 591,16941, 588, 590, 171, 170, 171, 588, 590, 175, 483, 458, 458, 459, 459, 457, 458, 459, 456, 451, 483, 458, 459, 492, 463, 482, 588, 590, 460, 463, 463, 463, 469, 588, 590, 469, 471, 471, 471, 474, 474, 36, 31, 31, 392, 392, 490, 491, 490, 491, 510, 492, 490, 491, 510, 56, 56, 161, 146, 146, 180, 315, 42, 588, 590, 147, 149, 17, 58, 58, 58, 58, 146, 119, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 14, 14, 588, 14, 590, 13, 146, 146, 146, 120, 282, 588, 590, 282, 389, 388, 388, 389, 403, 588, 590, 387, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 104, 290, 290, 311, 311, 292, 292, 295, 588, 291, 590, 293, 115, 115, 115, 115, 116, 116, 116, 432, 432, 435, 588, 436, 590, 440, 432, 430, 435, 588, 436, 590, 434, 447, 447, 588, 447, 590, 444, 436, 590, 169, 169, 168, 580, 580, 589, 587, 588, 580, 587, 590, 579, 588, 590, 280, 276, 276, 588, 276, 590, 287, 287, 588, 287, 590, 304, 304, 304, 304, 520, 515, 521, 516, 588, 517, 590, 520, 520, 520, 59, 59, 164, 405, 588, 590, 405, 200, 201, 200, 588, 200, 590, 44, 45, 44, 46, 46, 588, 46, 590, 49, 49, 49, 48, 52, 53, 52, 588, 52, 590, 135, 136, 136, 136, 136, 137, 137, 143, 143, 144, 144, 191, 588, 590, 192, 193, 205, 199, 340, 150, 306, 306, 306, 121,16510, 125, 123, 316, 316, 316, 323, 322, 324, 326, 342, 345, 350, 588, 351, 590, 151, 108, 108, 109, 109, 210, 210, 588, 210, 590, 207, 216, 216, 588, 216, 590, 213, 225, 225, 588, 225, 590, 240, 233, 233, 588, 233, 590, 249, 511, 498, 499, 500, 400, 400, 330, 331, 332, 337, 336, 336, 343, 343, 588, 343, 590, 371, 344, 354, 355, 354, 590, 354,16737, 8545, 360, 360, 588, 360, 590, 264, 266, 265, 264, 263, 261, 261, 261, 262, 261, 564, 565, 565, 565, 572, 539, 588, 590, 550, 550, 550, 540, 544, 588, 543, 590, 550, 550, 550, 541, 541, 542, 543, 590, 558, 559, 559, 588, 559, 590, 558,16941, 8749, 458, 458, 459, 459, 458, 459, 480, 523, 481, 525, 463, 463, 465, 471, 471, 32, 490, 491, 490, 491, 8, 56, 56, 146, 315, 523, 525, 147, 57, 58, 58, 58, 58, 58, 58, 118, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 523, 525, 523, 525, 387, 403, 403, 384, 403, 403, 403, 403, 403, 403, 403, 101, 292, 298, 295, 296, 291, 115, 115, 116, 441, 434, 168, 304, 304, 520, 520, 520, 59, 111, 112, 533, 532, 531, 178, 523, 525, 55, 136, 136, 136, 197, 306, 8318, 127, 316, 318, 374, 349, 224, 239, 232, 248, 399, 358, 266, 263, 261, 261, 565, 572, 550, 550, 546, 541, 542, 542, 555, 183, 458, 459, 479, 524, 478, 526, 478, 526, 493, 463, 463, 465, 471, 471, 453, 490, 491, 490, 491, 8, 56, 56, 314, 524, 524, 524, 184, 526, 526, 526, 526, 185, 58, 58, 58, 58, 58, 58, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 183, 524, 183, 526, 384, 403, 403, 384, 403, 403, 403, 403, 409, 403, 292, 298, 115, 115, 441, 304, 304, 520, 520, 520, 59, 112, 178, 50, 136, 136, 138, 197, 8318, 374, 349, 224, 239, 232, 248, 399, 359, 538, 550, 550, 545, 463, 463, 470, 471, 453, 453, 490, 491, 182, 181, 56, 56, 163, 339, 185, 12, 58, 58, 58, 58, 58, 58, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 18, 18, 18, 18, 119, 99, 98, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 13, 403, 385, 403, 403, 403, 403, 403, 403, 100, 163, 292, 312, 115, 426, 427, 304, 304, 158, 518, 520, 520, 520, 520, 535, 134, 136, 136, 139, 352, 357, 570, 547, 550, 550, 548, 463, 463,16846, 453, 490, 491, 56, 56, 99, 185, 58, 78, 58, 58, 58, 58, 58, 58, 146, 146, 146, 146, 146, 80, 79, 146, 146, 146, 29, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,16473, 146, 146, 146, 97, 96, 113, 146, 146, 146, 385, 403, 385, 403, 403, 383, 403, 410, 403, 403, 115, 303, 304, 520, 520, 520, 534, 136, 570, 573, 549, 550, 553, 463, 8654, 8654, 490, 491, 485, 56, 56, 80, 29, 16473, 97, 162, 58, 58, 58, 58, 58, 58, 146, 146, 146, 146, 146, 146, 146, 146, 146, 63, 146, 146, 146, 66, 146, 146, 20, 146, 146, 71, 146, 146, 146, 146, 146, 25, 146, 146, 146, 146, 62, 8281, 88, 146, 146, 146, 146, 146, 146, 383, 403, 403, 411, 383, 412, 403, 115, 304, 520, 520, 520, 136, 140, 364, 259, 258, 554, 490, 491, 487, 484, 56, 56, 63, 66, 20, 71, 25, 62, 8281, 58, 58, 58, 58, 58, 41, 130, 146, 146, 146, 146, 146, 87, 129, 146, 146, 146, 8298, 119,16490, 146, 146, 146, 146, 20, 72, 67, 146, 28, 146, 146, 146, 146, 146, 25, 146, 146, 146, 21, 146, 146, 64, 381, 403, 382, 403, 386, 403, 115, 519, 520, 520, 520, 140, 571, 556, 490, 491, 56, 56, 41, 87, 72, 67, 28, 21, 64, 58, 58, 39, 58, 58, 146, 146, 65, 146, 146, 68, 527, 8298, 118, 146, 61, 146, 26, 146, 28, 146, 146, 146, 30, 38, 146, 146, 146, 146, 21, 69, 146, 381, 382, 386, 381, 382, 386, 115, 520, 501, 571, 490, 491, 486, 56, 56, 39, 65, 68, 61, 26, 30, 38, 69, 58, 58, 58, 76, 131, 146, 146, 146, 77, 527, 527, 146, 73, 73, 26, 70, 70,16491, 70, 70, 119, 146, 146, 146, 27, 146, 146, 146, 146, 84, 83, 146, 302, 114, 115, 520, 562, 490, 491, 509, 56, 56, 76, 77, 73, 73, 70, 27, 58, 75, 40, 146, 99, 146, 70, 146, 146, 19, 27, 146, 146, 146, 146, 93, 92, 146, 520, 509, 56, 56, 75, 40, 19, 58, 146, 8299, 146, 146, 19, 146, 146, 146, 22, 82, 81, 142, 141, 56, 56, 22, 58, 145, 146, 24, 146, 146, 22, 91, 90, 142, 141, 56, 56, 24, 58, 24, 146, 146, 56, 56, 58, 146, 23, 56, 56, 23, 74, 86, 85, 23, 56, 56, 74, 95, 94, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 } ; static yyconst short int yy_accept[3440] = { 0, 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, 4, 5, 6, 7, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 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, 12, 13, 13, 13, 14, 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, 16, 17, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 20, 22, 24, 28, 31, 34, 36, 38, 41, 44, 47, 50, 56, 60, 64, 67, 70, 72, 74, 76, 78, 80, 82, 84, 87, 91, 94, 96, 98, 101, 103, 105, 107, 110, 113, 115, 118, 120, 123, 126, 128, 131, 134, 137, 140, 143, 148, 153, 156, 160, 163, 167, 171, 174, 178, 182, 186, 188, 191, 194, 197, 202, 206, 210, 213, 217, 221, 224, 228, 231, 236, 240, 243, 247, 250, 254, 258, 261, 265, 268, 271, 276, 280, 283, 287, 290, 294, 298, 300, 303, 305, 307, 310, 312, 315, 319, 322, 325, 329, 332, 337, 341, 345, 348, 351, 354, 359, 363, 366, 369, 372, 375, 378, 383, 387, 391, 395, 398, 402, 405, 408, 411, 413, 417, 419, 422, 425, 428, 431, 434, 437, 439, 441, 444, 447, 450, 453, 455, 457, 460, 463, 466, 469, 472, 475, 478, 481, 484, 487, 490, 493, 496, 499, 502, 505, 508, 511, 514, 517, 520, 523, 527, 530, 536, 541, 546, 550, 553, 555, 557, 559, 561, 563, 566, 568, 570, 572, 575, 578, 580, 583, 586, 589, 592, 594, 598, 601, 604, 607, 610, 613, 617, 620, 625, 630, 634, 638, 642, 646, 649, 652, 657, 661, 665, 669, 673, 676, 679, 682, 687, 691, 695, 698, 702, 706, 710, 713, 716, 720, 723, 727, 731, 735, 739, 743, 747, 751, 755, 759, 763, 766, 769, 774, 778, 782, 785, 788, 792, 795, 798, 803, 807, 811, 814, 818, 822, 826, 831, 834, 838, 844, 849, 854, 857, 860, 864, 868, 872, 875, 879, 881, 884, 887, 890, 892, 894, 896, 898, 900, 903, 907, 911, 914, 920, 925, 930, 933, 936, 939, 943, 947, 951, 957, 960, 965, 968, 971, 974, 977, 980, 986, 990, 994, 997, 1000, 1003, 1008, 1013, 1019, 1024, 1027, 1031, 1035, 1038, 1041, 1044, 1049, 1053, 1057, 1060, 1063, 1066, 1069, 1074, 1078, 1082, 1084, 1087, 1089, 1092, 1096, 1099, 1102, 1104, 1107, 1110, 1113, 1116, 1119, 1123, 1126, 1131, 1135, 1139, 1142, 1146, 1150, 1153, 1156, 1159, 1162, 1165, 1170, 1174, 1178, 1181, 1184, 1187, 1190, 1193, 1198, 1202, 1206, 1209, 1211, 1214, 1217, 1220, 1223, 1226, 1229, 1234, 1238, 1242, 1245, 1249, 1252, 1257, 1261, 1265, 1268, 1271, 1275, 1279, 1282, 1288, 1293, 1298, 1301, 1304, 1307, 1311, 1313, 1316, 1319, 1321, 1323, 1326, 1329, 1334, 1338, 1342, 1345, 1348, 1351, 1354, 1357, 1361, 1365, 1368, 1371, 1376, 1380, 1384, 1387, 1389, 1391, 1394, 1399, 1403, 1407, 1410, 1414, 1417, 1420, 1425, 1429, 1432, 1436, 1440, 1443, 1447, 1451, 1455, 1459, 1462, 1468, 1473, 1478, 1482, 1484, 1487, 1490, 1493, 1496, 1499, 1502, 1505, 1510, 1514, 1518, 1521, 1524, 1526, 1529, 1531, 1534, 1537, 1540, 1543, 1548, 1552, 1556, 1559, 1562, 1565, 1568, 1570, 1573, 1576, 1579, 1582, 1584, 1587, 1590, 1592, 1594, 1596, 1598, 1600, 1603, 1605, 1608, 1611, 1614, 1617, 1623, 1627, 1632, 1637, 1641, 1645, 1648, 1651, 1655, 1659, 1663, 1666, 1669, 1673, 1678, 1680, 1682, 1684, 1686, 1688, 1691, 1693, 1695, 1697, 1699, 1702, 1704, 1707, 1710, 1713, 1716, 1719, 1722, 1727, 1731, 1735, 1738, 1742, 1747, 1750, 1753, 1755, 1758, 1763, 1767, 1770, 1774, 1777, 1780, 1784, 1787, 1790, 1795, 1799, 1803, 1807, 1810, 1813, 1816, 1818, 1822, 1826, 1830, 1836, 1840, 1845, 1849, 1853, 1856, 1859, 1863, 1867, 1870, 1873, 1878, 1882, 1886, 1889, 1893, 1895, 1898, 1900, 1903, 1906, 1909, 1912, 1918, 1922, 1926, 1929, 1932, 1935, 1940, 1945, 1948, 1951, 1957, 1961, 1965, 1968, 1971, 1974, 1979, 1984, 1988, 1991, 1997, 2002, 2007, 2011, 2015, 2019, 2023, 2026, 2032, 2037, 2042, 2046, 2050, 2054, 2058, 2061, 2067, 2072, 2077, 2081, 2085, 2089, 2093, 2096, 2102, 2107, 2112, 2116, 2120, 2124, 2127, 2130, 2133, 2138, 2142, 2146, 2150, 2154, 2157, 2160, 2164, 2167, 2172, 2176, 2180, 2184, 2188, 2191, 2195, 2199, 2202, 2205, 2208, 2214, 2218, 2221, 2226, 2229, 2233, 2237, 2241, 2245, 2248, 2253, 2257, 2261, 2264, 2267, 2270, 2274, 2277, 2282, 2286, 2290, 2294, 2298, 2302, 2305, 2309, 2313, 2316, 2322, 2327, 2331, 2335, 2338, 2343, 2348, 2352, 2357, 2361, 2365, 2368, 2372, 2376, 2380, 2383, 2389, 2394, 2399, 2402, 2406, 2409, 2413, 2417, 2421, 2424, 2430, 2435, 2440, 2444, 2447, 2450, 2455, 2459, 2463, 2466, 2469, 2472, 2477, 2481, 2485, 2488, 2492, 2495, 2498, 2501, 2503, 2508, 2512, 2515, 2519, 2522, 2526, 2530, 2533, 2535, 2537, 2539, 2542, 2545, 2550, 2554, 2558, 2562, 2565, 2568, 2571, 2574, 2576, 2579, 2584, 2588, 2591, 2595, 2599, 2603, 2606, 2609, 2613, 2616, 2619, 2624, 2628, 2632, 2635, 2638, 2641, 2644, 2647, 2651, 2654, 2659, 2663, 2667, 2671, 2674, 2677, 2682, 2686, 2690, 2693, 2695, 2698, 2702, 2705, 2708, 2710, 2714, 2718, 2721, 2727, 2732, 2737, 2740, 2743, 2747, 2750, 2753, 2757, 2760, 2763, 2767, 2770, 2776, 2781, 2784, 2789, 2792, 2795, 2798, 2801, 2805, 2809, 2810, 2811, 2812, 2812, 2813, 2814, 2814, 2814, 2815, 2816, 2817, 2817, 2817, 2817, 2817, 2817, 2818, 2818, 2818, 2819, 2819, 2819, 2819, 2821, 2821, 2821, 2822, 2822, 2822, 2822, 2823, 2825, 2826, 2827, 2828, 2828, 2828, 2830, 2830, 2830, 2830, 2831, 2831, 2831, 2831, 2831, 2831, 2832, 2833, 2834, 2835, 2835, 2835, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2844, 2844, 2845, 2845, 2846, 2847, 2848, 2848, 2848, 2849, 2850, 2851, 2851, 2851, 2852, 2853, 2853, 2853, 2853, 2855, 2857, 2858, 2859, 2859, 2859, 2859, 2861, 2861, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2863, 2864, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2866, 2866, 2866, 2866, 2866, 2866, 2867, 2868, 2868, 2868, 2869, 2869, 2870, 2871, 2872, 2872, 2873, 2874, 2874, 2875, 2875, 2876, 2877, 2878, 2879, 2879, 2880, 2881, 2882, 2882, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2916, 2918, 2919, 2919, 2919, 2919, 2919, 2920, 2920, 2920, 2921, 2921, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2932, 2933, 2934, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2945, 2945, 2946, 2947, 2949, 2950, 2950, 2951, 2952, 2952, 2952, 2954, 2956, 2957, 2957, 2957, 2958, 2959, 2959, 2960, 2960, 2961, 2961, 2961, 2961, 2961, 2962, 2962, 2962, 2963, 2963, 2964, 2965, 2966, 2966, 2966, 2966, 2968, 2970, 2971, 2971, 2971, 2972, 2973, 2975, 2977, 2978, 2978, 2978, 2978, 2979, 2981, 2983, 2984, 2986, 2987, 2988, 2988, 2989, 2989, 2990, 2991, 2991, 2992, 2994, 2997, 2997, 2998, 2999, 3000, 3001, 3002, 3004, 3006, 3007, 3009, 3011, 3012, 3013, 3014, 3015, 3015, 3016, 3017, 3018, 3020, 3022, 3023, 3024, 3025, 3026, 3026, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3028, 3028, 3028, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3036, 3038, 3039, 3040, 3040, 3041, 3042, 3044, 3046, 3047, 3047, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3056, 3057, 3058, 3059, 3059, 3059, 3060, 3061, 3062, 3063, 3063, 3063, 3063, 3063, 3064, 3065, 3066, 3067, 3067, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3074, 3074, 3074, 3074, 3075, 3075, 3075, 3076, 3076, 3076, 3076, 3077, 3078, 3079, 3079, 3080, 3081, 3082, 3082, 3083, 3083, 3083, 3083, 3083, 3084, 3084, 3084, 3085, 3085, 3086, 3086, 3086, 3086, 3087, 3088, 3089, 3089, 3090, 3091, 3092, 3092, 3092, 3092, 3092, 3094, 3096, 3097, 3098, 3099, 3100, 3101, 3101, 3102, 3104, 3106, 3107, 3108, 3110, 3112, 3113, 3114, 3114, 3114, 3116, 3118, 3119, 3119, 3119, 3120, 3120, 3120, 3122, 3124, 3125, 3125, 3125, 3125, 3126, 3127, 3128, 3129, 3129, 3130, 3130, 3130, 3131, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3140, 3142, 3143, 3144, 3145, 3146, 3148, 3148, 3148, 3149, 3150, 3151, 3152, 3154, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3157, 3157, 3158, 3159, 3160, 3160, 3161, 3161, 3161, 3162, 3163, 3164, 3165, 3166, 3166, 3166, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3168, 3168, 3168, 3169, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3171, 3171, 3171, 3171, 3171, 3172, 3172, 3172, 3173, 3174, 3175, 3176, 3177, 3177, 3178, 3180, 3182, 3183, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3185, 3185, 3185, 3186, 3187, 3190, 3191, 3192, 3194, 3196, 3196, 3196, 3196, 3197, 3198, 3199, 3199, 3199, 3199, 3199, 3200, 3201, 3201, 3202, 3202, 3202, 3203, 3203, 3205, 3205, 3205, 3205, 3207, 3207, 3207, 3209, 3209, 3209, 3209, 3210, 3211, 3212, 3213, 3213, 3213, 3213, 3214, 3214, 3214, 3215, 3217, 3217, 3217, 3218, 3218, 3219, 3219, 3219, 3219, 3219, 3219, 3219, 3220, 3220, 3220, 3220, 3220, 3220, 3220, 3221, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3223, 3223, 3223, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3225, 3225, 3225, 3225, 3226, 3226, 3226, 3227, 3227, 3227, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3238, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3278, 3278, 3279, 3279, 3280, 3280, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3282, 3282, 3282, 3283, 3283, 3284, 3285, 3286, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3294, 3295, 3295, 3296, 3296, 3297, 3297, 3297, 3298, 3299, 3299, 3300, 3300, 3300, 3300, 3300, 3301, 3302, 3303, 3303, 3303, 3304, 3304, 3304, 3304, 3304, 3305, 3305, 3305, 3305, 3306, 3307, 3308, 3308, 3309, 3310, 3311, 3311, 3312, 3312, 3312, 3313, 3314, 3315, 3316, 3316, 3316, 3317, 3317, 3318, 3319, 3319, 3320, 3320, 3321, 3321, 3321, 3321, 3322, 3323, 3324, 3324, 3324, 3324, 3324, 3324, 3324, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3326, 3326, 3326, 3327, 3327, 3328, 3329, 3329, 3329, 3330, 3330, 3331, 3331, 3331, 3331, 3331, 3332, 3332, 3332, 3333, 3333, 3333, 3333, 3334, 3334, 3334, 3334, 3335, 3335, 3335, 3335, 3336, 3336, 3336, 3336, 3336, 3337, 3337, 3337, 3337, 3337, 3337, 3337, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3339, 3340, 3341, 3342, 3342, 3342, 3342, 3343, 3343, 3344, 3344, 3344, 3344, 3344, 3345, 3346, 3346, 3346, 3346, 3346, 3347, 3347, 3347, 3347, 3347, 3347, 3348, 3349, 3350, 3350, 3350, 3350, 3351, 3352, 3352, 3353, 3354, 3354, 3356, 3356, 3358, 3360, 3361, 3362, 3363, 3364, 3364, 3365, 3366, 3366, 3366, 3366, 3366, 3367, 3369, 3370, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3372, 3372, 3372, 3372, 3373, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3374, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3376, 3377, 3378, 3379, 3379, 3379, 3380, 3381, 3382, 3383, 3384, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3433, 3435, 3437, 3437, 3437, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3447, 3447, 3448, 3448, 3449, 3449, 3449, 3449, 3449, 3450, 3451, 3451, 3452, 3452, 3452, 3452, 3452, 3453, 3454, 3454, 3455, 3456, 3457, 3458, 3459, 3459, 3459, 3460, 3461, 3461, 3462, 3463, 3463, 3464, 3464, 3464, 3464, 3464, 3465, 3465, 3466, 3466, 3466, 3466, 3466, 3467, 3467, 3467, 3468, 3468, 3468, 3469, 3469, 3469, 3470, 3470, 3470, 3471, 3471, 3471, 3472, 3472, 3472, 3472, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3475, 3476, 3477, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3479, 3480, 3482, 3482, 3482, 3483, 3483, 3483, 3483, 3484, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3487, 3488, 3489, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3491, 3491, 3491, 3491, 3491, 3491, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3537, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3551, 3553, 3554, 3555, 3556, 3557, 3558, 3558, 3559, 3561, 3561, 3561, 3561, 3562, 3563, 3563, 3563, 3564, 3565, 3566, 3567, 3568, 3570, 3571, 3572, 3573, 3574, 3574, 3576, 3577, 3577, 3577, 3577, 3578, 3578, 3578, 3578, 3578, 3578, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3581, 3581, 3581, 3583, 3584, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3586, 3588, 3589, 3589, 3591, 3591, 3591, 3591, 3591, 3592, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3595, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3611, 3612, 3613, 3613, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3634, 3634, 3635, 3636, 3637, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3645, 3646, 3647, 3648, 3648, 3649, 3649, 3649, 3649, 3649, 3649, 3650, 3651, 3652, 3653, 3655, 3655, 3656, 3657, 3658, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3667, 3667, 3668, 3668, 3670, 3670, 3670, 3670, 3670, 3670, 3670, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3672, 3672, 3673, 3674, 3676, 3676, 3676, 3677, 3677, 3678, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 3680, 3680, 3680, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3682, 3682, 3682, 3683, 3683, 3683, 3683, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3696, 3696, 3696, 3696, 3697, 3697, 3697, 3698, 3699, 3700, 3700, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3715, 3716, 3717, 3718, 3718, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3726, 3726, 3727, 3728, 3729, 3729, 3729, 3729, 3730, 3730, 3730, 3731, 3732, 3732, 3733, 3734, 3735, 3736, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3742, 3742, 3743, 3743, 3743, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3745, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3749, 3750, 3750, 3751, 3752, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3754, 3754, 3755, 3755, 3755, 3755, 3756, 3756, 3756, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3758, 3758, 3758, 3758, 3759, 3760, 3760, 3760, 3760, 3760, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3768, 3769, 3770, 3771, 3772, 3773, 3773, 3773, 3774, 3775, 3775, 3775, 3776, 3777, 3777, 3777, 3777, 3777, 3777, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3786, 3787, 3788, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3797, 3797, 3798, 3798, 3799, 3799, 3800, 3800, 3800, 3801, 3802, 3802, 3802, 3802, 3804, 3806, 3808, 3808, 3809, 3811, 3812, 3813, 3813, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3815, 3815, 3815, 3815, 3816, 3816, 3816, 3816, 3816, 3818, 3818, 3819, 3820, 3820, 3820, 3820, 3820, 3820, 3821, 3821, 3821, 3821, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3823, 3823, 3824, 3824, 3824, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3826, 3826, 3826, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3836, 3836, 3837, 3838, 3839, 3839, 3839, 3839, 3839, 3841, 3842, 3843, 3844, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3852, 3853, 3854, 3855, 3855, 3855, 3856, 3857, 3857, 3857, 3858, 3858, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3865, 3866, 3867, 3867, 3867, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3868, 3869, 3869, 3869, 3869, 3869, 3869, 3871, 3872, 3873, 3874, 3874, 3874, 3875, 3875, 3875, 3875, 3876, 3876, 3876, 3877, 3878, 3878, 3878, 3879, 3879, 3879, 3879, 3879, 3881, 3881, 3881, 3881, 3882, 3882, 3883, 3884, 3885, 3886, 3888, 3889, 3890, 3890, 3890, 3891, 3892, 3893, 3893, 3893, 3893, 3893, 3894, 3895, 3896, 3897, 3898, 3900, 3901, 3903, 3904, 3905, 3906, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3913, 3914, 3914, 3914, 3914, 3915, 3917, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3919, 3919, 3919, 3919, 3919, 3922, 3923, 3924, 3924, 3924, 3924, 3925, 3925, 3925, 3926, 3927, 3928, 3929, 3929, 3929, 3929, 3929, 3930, 3930, 3930, 3930, 3930, 3931, 3932, 3933, 3934, 3935, 3935, 3935, 3935, 3936, 3936, 3936, 3937, 3937, 3938, 3939, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3948, 3948, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3950, 3951, 3952, 3952, 3953, 3954, 3954, 3954, 3954, 3954, 3955, 3955, 3955, 3955, 3955, 3956, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3964, 3965, 3966, 3967, 3967, 3967, 3968, 3968, 3969, 3969, 3969, 3970, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3972, 3973, 3974, 3974, 3974, 3975, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3985, 3985, 3985, 3986, 3986, 3986, 3987, 3987, 3987, 3988, 3989, 3990, 3991, 3992, 3992, 3992, 3992, 3993, 3993, 3993, 3994, 3994, 3995, 3996, 3997, 3997, 3997, 3997, 3998, 3999, 4000, 4001, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049, 4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059, 4060, 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093, 4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4133, 4133 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 22, 22, 22, 22, 22, 22, 23, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 36, 38, 39, 36, 40, 36, 41, 42, 43, 44, 45, 46, 47, 36, 36, 48, 36, 49, 36, 50, 51, 52, 10, 53, 1, 54, 55, 56, 57, 58, 59, 60, 61, 62, 36, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 36, 78, 1, 79, 80, 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[81] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 10, 11, 12, 13, 14, 1, 15, 1, 16, 17, 18, 18, 18, 19, 20, 21, 22, 23, 1, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 27, 28, 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, 30, 31 } ; static yyconst short int yy_base[3935] = { 0, 0, 2, 22, 0, 101, 112, 163, 0, 243, 0, 323, 0, 403, 0, 483, 0, 115, 122, 563, 0, 643, 0, 723, 0, 802, 813, 823, 834, 137, 849, 912, 0, 860, 870, 992, 0, 1072, 0, 890, 1151, 1157, 1172, 1196, 1216, 1231, 1234, 1249, 1252, 1330, 0, 1255, 1275, 1408, 1411, 1422, 1436, 1465, 1476, 1500, 1519, 1598, 0, 1678, 0, 1757, 1768, 1787, 1798, 1479, 1771, 1442, 1525, 1544, 1817, 1849, 1855, 1819, 1879, 1282, 1296, 1560, 1890, 1302, 1574, 1900, 1906, 1928, 1931, 1954, 1984, 1987, 1994, 1957, 2016, 2030, 2036, 1852, 2046, 2088, 0, 2166, 2168, 2182, 2184, 2203, 2222, 2273, 0, 2353, 0, 2431, 2433, 2052, 2067, 2512, 0, 2447, 2449, 2592, 0, 2248, 2250, 2672, 0, 2463, 2750, 2770, 0, 2848, 2851, 2866, 2869, 2895, 0, 2975, 0, 3053, 3063, 3111, 0, 3191, 0, 3270, 3348, 3427, 0, 2487, 3056, 3082, 3294, 3507, 0, 3304, 3320, 3376, 3379, 3587, 0, 3273, 3323, 3665, 3668, 3687, 3709, 3723, 3750, 3351, 3753, 3778, 0, 3858, 0, 3690, 3936, 3938, 3952, 3954, 3968, 3970, 3989, 3403, 4003, 4017, 4019, 4035, 4038, 4053, 4056, 4067, 4097, 4134, 4205, 4277, 0, 4161, 4180, 3730, 4100, 4232, 4251, 4355, 4358, 4361, 4376, 4379, 4382, 4137, 4208, 4406, 4416, 4438, 4449, 4463, 4474, 4489, 4500, 4503, 4514, 4582, 0, 4662, 0, 4183, 4740, 4807, 0, 4886, 4897, 4521, 4524, 4081, 4254, 4540, 4542, 4754, 4925, 4958, 5009,10070,24677, 24677,24677,24677,24677, 1, 0, 126,24677, 1514, 1810, 24677,24677,24677, 92, 14, 4917, 2179, 2245, 902, 4119, 4977,10044,24677, 4554, 131, 1315, 4435, 2444, 2460, 1587, 4995,24677,24677, 156,24677, 131,10043,24677,10007, 3390, 4989, 5023,24677,24677,24677,24677, 0,24677, 793,24677, 0, 0, 819, 1260,24677, 0,24677, 0,24677,24677, 24677,24677, 804,24677, 3076,24677, 151,24677,24677,24677, 0,24677, 808,24677, 0,10054,24677,24677,24677,24677, 24677, 0,24677, 814, 0,24677, 1839, 4945, 5028, 1920, 24677,10037,24677, 4768, 848,24677,24677,24677,24677,24677, 24677, 824, 785, 9997,24677,10007,24677, 2476, 4773,24677, 24677,24677,24677,24677, 4786, 845, 5038, 5105, 3743, 4030, 3101, 1209, 5046,24677, 0, 5062, 1950, 5080,24677, 864, 10048,10028, 5084,10021,24677,10020, 1403, 5090, 5094, 9995, 5119, 5128, 5182, 5186, 5191, 5196, 5200, 5226, 5230, 5235, 5267, 5272, 5276, 5283, 5309, 5318, 5313, 5326,24677, 0, 24677, 0, 0, 0, 868,10017, 5136, 5351, 3416, 5358, 10010, 5387, 5394, 5398, 0,24677, 5402, 888,24677,24677, 0,24677, 1142,24677,24677,24677,24677, 5421,24677, 5425, 5429,24677,24677,24677,24677,24677, 2763, 1146,24677,24677, 24677,24677,24677,24677, 1152,24677,24677,24677,24677,24677, 1153,24677,24677, 5445, 0, 0,24677, 1163, 5449, 0, 9977, 9958, 9965, 9945, 9964, 9959, 77, 9940,24677,24677, 24677,24677,24677, 2880, 1171,24677, 9969,24677,24677,24677, 24677, 1173,24677,24677, 0, 4792, 4572, 4799,24677, 1185, 9944, 1187, 9987,24677, 5301,24677, 804,24677, 0,24677, 5454, 5460, 5464, 5472, 5478, 5489, 9968, 5500, 0, 1321, 24677,24677, 1210, 9940, 1202, 9981,24677,24677, 5505, 1533, 1291,24677,24677, 1211, 107, 5518,24677,24677,24677,24677, 24677, 9962, 1212, 0,24677,24677,24677,24677, 1250,24677, 24677,24677, 9975, 896,24677,24677,24677, 1256, 1191, 0, 1310, 0, 0, 0, 9957, 1277, 9971,24677, 9969, 9962, 9960, 1533,24677,24677,24677,24677,24677, 5524, 5528,24677, 24677,24677, 1291,24677,24677,24677,24677,24677,24677, 0, 24677, 0, 0, 1402,24677,24677, 0,24677, 0, 0, 0, 1417, 0,24677, 0, 9891, 9886,24677,24677,24677, 24677,24677, 1431,24677,24677,24677,24677,24677, 1474, 9894, 0, 5532, 5537, 0, 0, 0, 9926,24677, 1477, 1455, 0,24677, 9921, 0, 5541,24677,24677,24677,24677,24677, 1546, 9877, 9875, 817, 9874,24677,24677,24677,24677, 9923, 24677,24677, 1554, 0, 1576,24677,24677,24677,24677, 1746, 24677,24677, 5545,24677,24677, 0,24677, 5550, 1748, 5554, 0,24677, 0,24677, 9922, 0, 0, 1752, 0,24677, 1431, 5559, 0,24677, 0, 0, 0, 0, 0,24677, 1766, 0,24677, 5573,24677, 5577, 0, 0, 0, 0, 0, 1555, 1782,24677, 1568, 0,24677, 865, 1827, 1880, 0, 0,24677, 9893, 9887, 9888, 9874, 0, 0, 0, 0,24677, 5582, 5586,24677,24677, 9867,24677,24677, 5591, 9883, 1789, 5595, 9883, 9875, 9874, 9894,24677,24677, 5605, 5614, 5622, 5630, 1914,24677, 5635, 5649, 5663, 5677, 5691, 1796, 5695,24677, 5699,24677,24677,24677,24677,24677,24677, 1825, 9871, 5703,24677, 5715, 5719, 5731,24677,24677, 5742, 24677, 1858, 9870, 5750,24677,24677,24677,24677,24677, 5754, 1869,24677, 5758, 9841, 0, 5773, 5777,24677,24677, 9840, 24677, 5782, 1917,24677,24677,24677,24677,24677,24677,24677, 24677, 1948, 9865, 0, 0, 0,24677, 9864,24677,24677, 24677,24677,24677, 9867, 1952, 0,24677,24677,24677,24677, 24677,24677,24677, 9865, 1961, 0,24677,24677, 0,24677, 24677, 0, 9832,24677,24677, 1985, 0,24677,24677, 0, 9826, 1988,24677,24677, 0,24677,24677, 0, 9820,24677, 24677, 1996, 0,24677,24677, 0, 9814, 2006,24677,24677, 24677, 1780,24677,24677,24677,24677,24677,24677, 2012,24677, 5786, 5790,24677,24677,24677,24677,24677, 2020, 9838, 9835, 9784,24677,24677,24677,24677, 0, 9805, 2026,24677, 0, 24677,24677,24677,24677,24677,24677, 5794, 2032,24677, 5801, 5807,24677,24677,24677,24677,24677, 5811, 2042,24677, 0, 24677,24677, 0,24677, 2048, 0,24677,24677, 0, 0, 24677,24677, 2056,24677,24677, 0,24677, 0, 0, 0, 9835, 2058, 1236, 2230, 5823, 0,24677, 0, 0, 0, 2157, 5309,24677,24677,24677,24677, 2180, 1147,24677,24677, 24677,24677, 2194,24677, 9778,24677, 5827, 5837,24677,24677, 0,24677, 2197,24677, 5845, 9789, 5849, 5861, 0, 5871, 24677,24677,24677,24677, 4420, 2201, 9771,24677, 5876, 5886, 5890,24677,24677, 5899,24677,24677,24677, 2216, 9813, 5909, 24677, 4174,24677,24677,24677, 2246, 2471, 9768, 9773, 9764, 24677,24677,24677,24677,24677,24677, 2252,24677,24677,24677, 24677, 2422, 9827, 2859, 9821, 9812, 9810, 3071, 0, 2865, 24677, 0, 0, 0, 2739, 2740, 3039, 5879, 5865, 3289, 2741, 2837, 0,24677, 0, 0,24677, 0, 9792, 2860, 9791, 1416, 3342, 5943,24677,24677, 2484, 3367,24677, 3989, 5947, 2873, 1234, 1278,24677, 9806, 5957, 5966, 5984, 9783, 1582, 5992, 6002, 6011, 6015, 6023, 0, 6041, 6053, 6066, 5915, 6074, 6084, 6092,24677, 6096,24677,24677, 1944, 6101, 6121, 6048, 6132, 6136, 9776, 6145, 6149, 6163, 5970, 6171, 0, 6179, 6140, 1449, 3993, 6184, 9733, 6192,24677, 6196, 6209, 6221, 0, 1875, 1415, 0, 3320, 9782, 9777, 4064, 9776, 4100, 0, 0, 6225, 9760, 2029, 0, 0, 0, 9722, 0, 0, 6233, 6248, 6256, 6264, 6268, 2079, 6294, 6303, 6311, 9764, 6317, 9746, 2503, 2995, 9708, 9692, 9749, 1488, 6274, 3073, 6325, 3290, 6371, 6335, 3365, 9735, 1385, 9705, 9705, 9614, 9611, 2823, 9601, 3630, 9596, 9608, 9579, 3701, 9586, 3219, 9581, 1911, 9554, 9558, 4024, 6344, 6358, 6366, 5414, 9565, 6378, 6382, 0, 6394, 1531, 6401, 6444, 6458, 6462, 6476, 4957, 4221, 0, 0, 6487, 9552,24677, 0, 6495, 6499, 6511, 6515, 6527, 6531, 9590, 6536, 9559, 6540, 6544, 6569, 6587, 6597, 6601, 6605, 6612, 6630, 6640, 6644, 6675, 6680, 6685, 6691, 6716, 6726, 6730, 6756, 6760, 6764, 6789, 6771, 6797, 6815, 6803, 6830, 6846, 6856, 6860, 6871, 6885, 0, 0, 0, 9542, 6720, 9585, 6807, 6897, 6480, 6910, 0, 6918, 6923, 6931, 6935,24677, 0, 6656, 4905, 0, 6948, 6889, 6964, 7002, 6968, 9552, 9522, 9524, 9506, 9525, 9519, 1948, 9509, 0, 2164, 4150, 6972, 6976, 0, 9484, 9488, 9478, 9493, 9487, 9493, 9473, 9464, 9476, 6980, 6995,24677, 0, 7007, 7014, 3336, 0, 5057, 9526, 1812, 7020, 0,24677, 7028, 9467, 7033, 7040, 7044, 7058, 9494, 7082, 7086, 9490, 7090, 7100, 0, 7109, 0, 7117, 7121, 7129, 0, 3764, 5654, 9499, 2198, 2429, 4395,24677, 7076, 3298, 4125, 3407,24677,24677, 9504, 3386, 7134, 3393, 24677,24677,24677,24677, 4227, 9503, 9500, 3666, 9498, 3680, 0, 4401, 9480,24677,24677, 0, 9481,24677, 9480, 9470, 7146, 0, 0, 0, 0, 0, 0, 0, 0, 9400, 9384, 9374, 0, 7153,24677,24677,24677, 9377, 9376, 9383, 9421, 9425, 9398, 7157, 7161, 7166, 7180, 9348, 9332, 9340, 9335, 9323, 9387,24677, 3696, 7185, 3712, 0, 3319, 4482, 0, 0,24677, 0, 0, 0, 3947, 7189, 0, 0, 0, 0, 7193, 7201, 9374, 7205, 7209,24677, 0, 3963, 0, 0, 3979, 2041, 2059, 9367, 9359, 2173, 2434, 0, 0, 9337, 781, 9330, 9335, 0, 0, 0, 0, 9351, 3665,24677, 7213, 7219,24677,24677,24677,24677, 7227, 7242, 7250, 7254,24677, 7258, 4268,24677, 7272, 7286, 7300, 7314, 7318, 7322, 9309,24677, 7326, 7331, 9334,24677, 7339, 9322, 7349, 7357, 0, 7371, 0, 7379, 7383, 7391, 7395, 7408, 7414,24677,24677,24677, 9293,24677, 0, 7420, 9331, 3718, 7426, 3927, 3948, 1470,24677, 0, 0, 9312, 9310, 9305, 24677,24677,24677,24677,24677,24677,24677,24677, 0, 9312, 3986, 0, 0, 0, 9306, 4045, 0, 9296, 4094, 0, 0, 0, 9291, 4150, 4460,24677, 7430,24677,24677, 9232, 0, 9287, 4183, 0, 7440,24677,24677,24677, 7445, 7452, 7456, 0, 0, 0,24677, 0, 0,24677, 0, 9223, 9230, 4749, 7464, 7468, 0, 0, 0, 9222, 9209, 4371, 9203, 9220, 9210, 9205, 9197, 9194, 4368, 9192, 7472, 7480, 7489, 9206, 7493, 7497, 7521,24677, 7529, 9200, 7533, 7545, 7553, 7537, 7561, 7565,24677, 7577, 5100, 0, 5240, 9226, 9191, 7581, 9224, 7589, 7597, 0, 7605, 0, 7613, 7617, 7625, 5975, 4390, 9159, 9158, 4744, 4080, 9156, 9151, 9156, 9215, 4458, 4924, 9196, 9212, 9211, 0, 4537, 9152, 4042, 24677,24677,24677, 1480, 9139, 9196, 9136, 9126, 4907, 9120, 9136, 9129, 9123, 9115, 7630, 9164, 9156,24677, 4223, 4753, 0,24677,24677,24677, 4875, 9099, 4439, 5151, 7649, 7655, 3964, 1565, 9132, 7663, 7667, 7674, 7699, 7703, 7681, 7707, 0, 7721, 7729, 7733, 7745, 7757,24677, 0, 5216,24677, 9135, 7762, 9091, 7771, 7775, 9121,24677, 0, 0, 9118, 4964, 7787, 9087,24677, 7800, 7804, 7812, 7823, 0, 9114, 7827, 9056, 9056, 9060, 9045, 9103,24677, 9102, 5115, 4038, 3052, 4174, 3297, 7867, 7849, 7854, 4294, 4301, 9063, 9031, 9027, 9033, 1995, 9004, 9001, 9010, 3329, 5147, 9001, 9001, 8978, 8992, 8976, 8979, 4331, 8986, 8981, 8977, 2189, 8968, 8970, 8966, 8958, 8963, 7877, 7881, 5668, 8961, 7885, 7890, 7940, 7944, 7956, 7948, 8988, 8976, 5211, 5410, 5855, 4420, 7767, 6127, 7631, 4486, 0, 7973, 8934, 7981,24677, 7985, 7997, 8001, 8013, 8017, 8031,24677, 8035, 8044, 8052, 7910, 8923, 8069, 8078, 8094, 8103, 8107, 8111, 8119, 8136, 8144, 8150, 8178, 8186, 8191, 8195, 8203, 8220, 8228, 8236, 8253, 8261, 8265, 8269, 8278, 8303, 8310, 8316, 8320, 8345, 8350, 8356, 8360, 8391, 8395, 8399, 8408, 8433, 8438, 8445, 8449, 8475, 8927, 8061, 8479, 8483, 7689, 8489, 8501, 8507, 8916, 8919, 8903, 8915, 8906, 8911, 8894, 8881, 8888,24677, 0, 5367,24677, 8936, 8154, 8877, 8876, 8403, 8873, 8869, 8875, 8866, 8493, 8878, 8521,24677, 8894, 5707, 8909,24677, 8908, 5326, 8539,24677, 8546, 0, 8841, 8860, 8551, 8562, 8570, 8574, 0, 8578, 8898,24677, 8897, 5591, 4254, 3714, 8902, 4261, 3980, 8884, 8894, 8826, 8841, 8838, 8836, 8746, 8730, 0, 8780, 8601, 8609,24677, 8617,24677,24677, 8727, 8729, 24677, 8623, 8639, 8769, 8763, 8762, 111,24677, 8768, 8764, 8744, 8747, 5030, 5120, 8727, 8726, 8724, 8716, 8706, 8740, 24677, 8738, 5608, 6421, 8506, 8670, 6990, 8629, 8660, 8686, 8682, 8645, 8659, 8667, 8673,24677, 0, 8681, 8689,24677, 8719,24677, 8700, 5720, 4461, 4008, 8685, 8695, 8691,24677, 8684, 5944, 8683,24677, 8677, 5970, 8676,24677, 8669, 5987, 8667,24677, 8661, 6000, 8609, 8654,24677, 8653, 6026, 8595, 8589, 8596, 8580,24677, 8586, 8565, 8569, 8547, 8551, 8552, 0, 8531, 8696, 8704, 8712, 8716, 8720, 8572, 8546, 8476, 0, 8724, 4567, 8459, 8435, 8439, 4086, 1853, 8433, 0, 8804, 8419, 8402,24677, 8407, 8398, 8395, 8390, 8391, 8430, 5258, 5818, 1754, 1826, 8376,24677,24677, 8732, 8738, 0, 8742,24677, 8415,24677, 4531,24677, 8883, 8887,24677, 8400, 8409, 5629, 8899, 8765, 8910, 8392, 8773, 8922, 8777, 8395, 8781, 8337, 8331, 8321, 8308, 8363,24677, 6070, 8347, 8341, 8989, 8926, 8277, 8271, 4418, 8282, 8261, 8217, 8216, 8215, 8214, 8204, 8191, 8182, 8177, 8179, 8170, 8170, 8154, 8139, 8126, 8119, 8099, 8105, 8090, 8107, 8078, 8060, 3703, 8066, 8114, 8051, 8031, 8027, 8034, 8024, 8015, 8005, 8021, 4890, 8000, 8933, 8952, 8972, 8789,24677, 8997, 9012, 8047, 6343, 9020, 8030, 9062,24677, 8246, 4666,24677, 8035, 8326,24677, 8336, 4555, 4703, 0, 7974, 8967, 9005, 9068, 9075, 9080, 9087, 9092, 9099, 9103, 8979, 9108, 9133, 9140, 9151, 9158, 9165, 9227, 9183, 9193, 9264, 9268, 9278, 9293, 9307, 9311, 9318, 9323, 9336, 9348, 9362, 9352, 9366, 9377, 9394, 9405, 9409, 9419, 9423, 9434, 9448, 9452, 9477, 9489, 9493, 9518, 9522, 9526, 9532, 9557, 9561, 7961,24677,24677, 7955, 7942, 9117, 7942, 7940, 7945, 7941, 9169, 7953, 7926, 7923, 9197, 7923, 7934, 7933, 7906, 9208, 7897, 7939, 9565, 5067, 7954, 24677, 6149, 7888, 0, 9589, 9593, 9597, 7924,24677, 6219, 7902, 7901, 4897, 7850, 7846, 7855, 7852, 1919, 7853, 7887, 9282, 7846, 7803, 9459,24677, 0, 4996, 5093, 7839,24677, 7827, 7823, 7830, 7852,24677, 6234, 9484, 9601, 9624, 7837, 7838,24677, 6269, 7823,24677, 0, 7834,24677, 6410, 7832, 24677, 6544, 7811,24677, 6575, 7810,24677, 6653, 7754, 7800, 24677, 6824, 7752, 7730, 7740, 0, 7730, 7727, 7716, 7727, 7686, 7967,24677, 1957, 7629, 7698, 7671, 7664, 7657,24677, 7700, 7659,24677, 9668, 7638, 0, 7631, 7617, 7606, 7607, 7576, 3285, 3674, 9558, 4908, 9747, 9751, 5138, 9466, 9633, 0, 9641, 0, 9763, 9774, 9778, 7570, 7583, 7569, 7570, 7601, 7600,24677,24677, 9842, 9786, 7547, 7545, 7502, 7503, 7509, 7535, 7474, 7449, 7446, 7462, 7414, 7416, 9569, 7380, 7383, 7379, 7370, 7371, 7371, 7356, 7347, 7351, 88, 785, 809, 814, 855, 1118, 1167, 1191, 1257, 1359, 1436, 1537, 4949, 1718, 1796, 1827, 1843,24677, 1862, 9790, 9801, 1926, 2017,24677, 7257, 7285, 0, 9814, 9818, 2054, 4475, 0, 24677, 9849, 9865, 9871, 9877, 9922, 9934, 9940, 9947, 9952, 9957, 9982, 9996,10000,10007,10011,10025,24677,10036, 2053, 2165,10040,24677,10051,10076,10080,10084,10090,10115,10119, 10125,10129,10154,10158,10162,10166,10170,10195,10201,10205, 10212,10237,10241, 2137, 2141,10246,10250,10276,10281,10285, 10316,10321,10325,10331,10356,10360,10364,24677, 2158, 2191, 2195, 2213, 2424, 2413, 2434, 2709, 9647, 2707, 2782, 2809, 10368, 3022, 9651,24677, 0, 3080, 3267, 3306,24677,10374, 3369, 3412,24677,24677, 9655, 9855,24677, 0, 3607, 3706, 3886,24677, 3935, 4135, 5542, 3971, 4781, 3971,24677, 4018, 4024,10392, 4059, 4082,24677, 4106, 4117, 4141, 4155, 4165, 4186, 4190, 4202, 4170, 4230, 4360, 4317, 4332,24677, 4350, 4367, 4389, 4418, 4408, 4438, 4449, 4481, 4514, 4523, 4685, 4705, 4694, 4707, 5123, 5484, 4723, 0, 4770,24677, 4732, 4814, 4830, 4847, 4849, 5018, 4906, 4871, 4872, 4874, 4898, 4910, 4909,10406,10419, 0,10431,10442, 4931, 4931, 9965, 4941,10413,10446, 4980, 4975, 4992, 5045, 5001, 5050, 5070, 5088,10454, 5077,10469, 5084,10473,10477, 5108, 5125, 5116, 5126, 5139, 5148, 5155, 5155, 5170, 5185, 5189, 5196, 5196, 5212, 5228, 5233, 5226, 5238, 5223, 5241, 5247,10481, 5305, 5254, 5257, 5266,10485, 5299,10499,10510, 5317,10514,10535, 10547,10551,10563,10568,10575,10581,10587,10594,10624,10631, 10635,24677,10639,10649,10664,10676, 5272, 5271,10680,10689, 10693,10721,10728,10732,10736,10761,10765,10769,10773,10777, 10802,10806,10810,10814,10839,10843,10847,10852,10856, 5291, 5281,10881,10885,10892,10910,10918,10926,10943,10955,24677, 10960,10968,10972,10997,11001, 5303,10599, 5296, 5288, 5321, 11007, 5324, 5338,11011, 5351,11027,11031,11039,24677,11043, 5345, 5353,11051,24677,11055, 5360, 5350, 5349,24677, 5843, 5408, 5923, 5412, 5379, 5708, 5379, 5388, 5396, 5413, 5426, 5443, 5434, 5453, 5479, 5497, 5507, 5500, 5501, 5516, 5762, 5832,24677, 5541, 0, 5555, 5555, 5564, 5564, 5577, 5615, 24677, 5590, 5577, 5592, 5589, 5592, 5599,11064,11069, 5645, 24677,11082,11087, 5613,11092,11105,11109,11113, 5618, 5625, 5613, 5658, 5669, 5670, 5706, 5676, 5694,11118, 5694,11122, 5697,11126, 5708, 5710,11130, 5709,11139, 5746, 5747,11146, 5740, 5750,11150, 5777, 5801, 5798, 5789, 5796,11155, 5800, 11159,11163, 5823, 5818,11171, 5871, 5809, 5832, 5833,24677, 11179,11184,11198,11202,11214,11218,11231,11240,11244,11249, 11256,11284, 5834, 5843,11288,11292,11313, 5877, 5867,11319, 11327,11331, 5921,11344,11356,11417,11361,11370,11386,11447, 11451,11374,11455,11459,11484,11488,11496,11500,11513,11525, 11529,11538,11543,11554, 5886, 5891, 5925,11561,11589,11599, 24677,11603,11607,11617, 5920, 5926,11632,11642,11646, 5944, 5953,11400,11404,11650, 5959, 5957, 5972,11660,24677,11674, 11678, 5975, 5976,11682,11686, 5982, 5986, 5980, 6260, 6027, 6280, 0, 6031, 6022, 6079, 6038, 6041, 6035, 6051, 6037, 6061, 6063, 6070, 6076, 6088,24677,24677, 6089, 6104, 6099, 6111, 6102, 6123, 6114,24677, 6144, 0, 6140, 6148, 6152, 6148,11690,11694, 6160,11708,11713,11717, 6160, 6165, 6163, 6160, 6172,11721, 6203, 6173, 6175,11725, 6190, 6187, 6190, 11729, 6186,11743, 6218, 6229,11747,11755,11759,11763,11770, 11774, 6244,11778, 6240, 6243,11786,11790, 6251, 6245,11794, 11801,11809,11821, 6265, 6256,11829, 6267,11833,11837,11849, 11856,11861,11868,11874,11880,11884,11892,11917,11930, 6261, 11935,24677,11946, 6261, 6269,11955,11959, 6393, 6279, 6272, 6284,11963, 6323,11971,11988,11996,12000,12004,12025,12029, 12037,12041,12054,12066,12070,12079,12083,12108,12112,12116, 12124,12142, 6283, 6299,12149,12153,12157,12180,12184, 6304, 6307,12188,12193, 6306, 6330, 6331,12197,12218,12222, 6331, 12237, 0, 6339, 6329, 6367, 0, 6368,12229, 6334, 6349, 6349, 6350, 6343, 6376, 6372, 6556, 6452, 6363, 6386, 6387, 24677, 6389, 6382, 6414, 6404,12245,12255,12263,12268, 6408, 6419,12272, 6429, 6430,12276, 6449, 6444,12280,12284, 6437, 6443,12294,12298, 6452,12302,12306,12310,12316, 6463,12320, 12325, 6469, 6459, 6467,12333, 6469, 6481, 6470,12337,12343, 12347,12351, 6492,12355,12363,12367,12379,12383,12396,12408, 12412,12424,12439, 6481, 6498,12449,12456,12464, 6543, 6510, 6505, 6518,24677,12481,12485,12489,12497,12514,12547,12474, 12576,12580,12584,12588,12613,12626,12630,12523, 6509,12638, 12527, 6519, 6517,12656, 6523, 6545,12665,12531,12541,12669, 12673,12683,12690,12694,12703, 6547, 6585, 6587,12707, 6547, 6560, 6561, 6558, 6573, 6700, 6667, 6650, 6562, 6584, 6584, 6585, 6595,12711,12715,12721,12729, 6595, 6633,12734, 6635, 12738, 6639,12742, 6649,12746,12752,12756,12760,12764,12768, 12772, 6664, 6647, 6655,12776,12781, 6687, 6664,12787,12791, 12795,12799,12811,12815,12827,12831,12835,12839, 6666,12843, 12860,24677, 6732, 6672, 6672, 6684,12868,12872,12876,12880, 24677,12947, 6729, 6727,12901,13026,12905,13030,12909,12916, 13035,13039,13043,12932,24677,13068,13080, 6704, 6701, 6721, 12941,13073, 6716, 6850, 6876, 6715, 6715, 6721, 6708, 6902, 24677, 6725, 6730, 6741, 6727,13084,13091,13107, 6760,13113, 13117,13121, 6765, 6770,13125,13130,13135,13139, 6797, 6766, 13145,13149,13153, 6789, 6779, 6805, 6782,13157,13161,13173, 13177,13185, 6795, 6811, 6805,13192, 6813, 6807, 0,13205, 13210,13219,13223,13235,13251,13258,13262,13267,13271,13275, 24677,13296,13303, 6811, 6831, 7232, 7233, 6826, 6841, 6845, 6840, 6866, 6866,13307,13313,13321, 6871,13330,13334, 6889, 6904, 6877,13338,13344, 6908, 6889, 6911,13348,13353,13365, 13371, 6888, 6908, 6893,13375,13380,24677,13390,13394,13401, 13406,13423,13431,13436,13440,13448,24677,13463, 7291, 0, 7399, 0, 6887, 6909,13467,13476, 6925, 6930, 6943,13480, 6951, 6924, 6955,13484,13471,13488,13494, 6931, 6940,13507, 13511,13515,13519,13523,13554,13560,24677, 0, 0,13564, 13568, 6947, 6980,13572,13576, 6985, 6957,13580, 6963, 6983, 13584,13595,13599,13603,13607, 6974, 7003,13611,13624,13636, 6979,13645,13649,13653,13657,13661,13676, 7008,13684,13690, 13694,13698,24677,13707,13713,13717,13721,13725,13729,24677, 13733,13737,13744,13748,13752,13760,13764,13771,13775,13784, 13788,13794,13798,13802,13807,13811,13817,13825,13829,13834, 13838,13842,13848,13852,13857,13865,13869,13875,13879,13883, 13888,13892,13898,13906,13910,13915,13919,13923,13929,13933, 13938,13946,13950,13956,13960,13964,13969,13973,13979,13987, 13991,13996,14000,14004,14010,14014,14019,14027,14031,14037, 14041,14045,14050,14054,14060,14068,14072,14077,14081,14085, 14091,14095,14100,14108,14112,14118,14122,14126,14131,14135, 14141,14149,14153,14158,14162,14166,14172,14176,14181,14189, 14193,14199,14203,14207,14212,14216,14222,14230,14234,14239, 14243,14247,14253,14257,14262,14270,14274,14280,14284,14288, 14293,14297,14303,14311,14315,14320,14324,14328,14334,14338, 14343,14351,14355,14361,14365,14369,14374,24677,14393,14424, 14455,14486,14517,14548,14579,14610,14641,14672,14703,14734, 14765,14796,14827,14858,14889,14920,14951,14982,15013,15044, 15075,15106,15137,15168,15199,15230,15261,15292,15323,15354, 15385,15416,15447,15478,15509,15540,15571,15602,15633,15664, 15695,15726,15757,15788,15819,15850,15881,15912,15943,15974, 16005,16036,16067,16098,16129,16160,16191,16222,16253, 7030, 16283,16307,16331,16361,16391,16415,16439,16463,16493, 7040, 7090, 7041,16507, 7042, 7110, 7045, 7149, 7191, 7046, 7154, 16531,16559,16584,16614,16638,16668, 7259, 7273,16692,16717, 16748,16778,16802,16832, 7050, 7267, 7058, 7320,16857,16888, 16919, 7072,16949,16973,16997,17027,17052,17083,17114,17145, 17176,17207,17238, 7073, 7330,17269, 7082, 7331, 7091,17299, 17324, 7092, 7502, 7104, 7352,17355, 7115, 7353,17386, 7117, 17416,17441, 7118, 7816, 7119, 7462, 7121, 7487, 7127, 7490, 17472,17502,17526,17550,17574,17599,17623,17653,17678,17709, 17740, 7148, 7503, 7152, 7526,17771,17802,17833,17864,17895, 17926,17957,17988,18019,18050, 7153,18081, 7534,18112,18143, 18174,18205,18236,18266, 7161,18291,18316,18346, 7197,18370, 18394,18418,18442,18472,18497,18528,18559,18590,18620,18644, 18674,18698, 7198,18722,18746,18770,18794,18818,18842,18866, 7201,18890, 7535,18904, 7381, 7411, 7570, 7571, 7202, 7820, 7579,18928,18956,18980, 7479,19005,19036,19067,19097,19121, 7215,19145,19169,19193, 7223, 7630, 7225,19217,19242,19272, 19296, 7247,19320, 7656, 7695,19345,19376,19407,19438,19469, 19499,19523,19547, 7696, 7261,19571,19596,19627,19658,19689, 19720,19751,19782, 7726,19813, 7955, 7552,19843,19867,19892, 8285, 7738,19923, 7815,19954,19984,20009, 8107,20031, 7837, 7884, 7901,20056,20087,20117,20141,20165,20189,20215,20245, 20269, 8007, 7285,20293,20318,20349,20380,20411, 8027, 8167, 20442,20473,20504,20535,20566,20597,20628,20659,20690,20721, 20752,20783, 8076,20814,20845,20876,20907,20938,20969,20999, 21024,21049,21079,21103,21127,21151, 7287, 8195,21175, 8126, 7288,21199,21224,21255, 7562,21286,21317,21347,21371,21395, 21419, 8146,21443,21473,21497,21521,21546,21577,21607,21637, 7289, 7307, 8154,21651,21675, 8217,21705,21729,21753, 7312, 8354,21778,21808,21838,21862,21886,21910,21934,21959,21990, 8193,22020,22044,22068,22092, 8276,22123,22154,22185,22216, 22246,22270,22294, 8291,22318,22349, 8308,22380, 7332, 8402, 22410,22434, 7638,22450, 8495,22475,22506,22536,22560, 8314, 22584,22615, 7732,22646,22677,22708,22739,22770,22801,22831, 22855, 8520, 8360,22879,22910, 7340,22941,22971, 8406,22995, 23019, 8421,23033,23057,23087,23111,23135,23159, 8440,23183, 23208,23238,23262,23286, 8582,23310,23334,23359,23390,23420, 23444, 8492,23469,23500,23531,23562,23592,23616,23641, 8510, 23672, 8543,23702, 7342, 8567,23727,23757,23782, 7344,23813, 23844,23875,23906,23937,23968,23998,24023,24054,24084,24098, 24122, 8544, 7354,24146,24170,24194,24218, 8620, 7366,24242, 24267,24298,24328,24352, 8572,24377,24407,24431,24456, 8941, 24486,24511,24541,24565, 9507, 8583,24590,24621, 7377,24651, 9824,10266, 8605, 8621 } ; static yyconst short int yy_def[3935] = { 0, 3439, 3439, 3438, 3, 3440, 3440, 3438, 7, 3438, 9, 3438, 11, 3438, 13, 3438, 15, 3441, 3441, 3438, 19, 3438, 21, 3438, 23, 3442, 3442, 3439, 3439, 3443, 3443, 3438, 31, 3444, 3444, 3438, 35, 3438, 37, 3439, 3439, 3439, 3439, 3445, 3445, 3446, 3446, 3447, 3447, 3438, 49, 3448, 3448, 3449, 3449, 3450, 3450, 3450, 3450, 3450, 3450, 3438, 61, 3438, 63, 3451, 3451, 3451, 3451, 3439, 3439, 3452, 3452, 3452, 3452, 3453, 3453, 3454, 3454, 3439, 3439, 3455, 3455, 3456, 3456, 3439, 3439, 3439, 3439, 3457, 3457, 3439, 3439, 3439, 3439, 3458, 3458, 3459, 3459, 3438, 99, 3460, 3460, 3461, 3461, 3462, 3462, 3438, 107, 3438, 109, 3463, 3463, 3464, 3464, 3438, 115, 3465, 3465, 3438, 119, 3466, 3466, 3438, 123, 3467, 3467, 3438, 127, 3468, 3468, 3439, 3439, 3438, 133, 3438, 135, 3439, 3439, 3438, 139, 3438, 141, 3469, 3469, 3438, 145, 3439, 3439, 3439, 3439, 3438, 151, 3439, 3439, 3470, 3470, 3438, 157, 3471, 3471, 3439, 3439, 3472, 3472, 3473, 3473, 3474, 3474, 3438, 169, 3438, 171, 3475, 3475, 3475, 3475, 3476, 3476, 3476, 3476, 3477, 3477, 3478, 3478, 3479, 3479, 3480, 3480, 3481, 3481, 3482, 3482, 3438, 193, 3483, 3483, 3484, 3484, 3485, 3485, 3486, 3486, 3487, 3487, 3487, 3487, 3488, 3488, 3473, 3473, 3489, 3489, 3490, 3490, 3491, 3491, 3492, 3492, 3438, 219, 3438, 221, 3493, 3493, 3438, 225, 3494, 3494, 3495, 3495, 3496, 3496, 3497, 3497, 3498, 3498, 3499, 3499, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3500, 3501, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3502, 3503, 3504, 3438, 3438, 3505, 3438, 3506, 3438, 3438, 3438, 3507, 3508, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3509, 3509, 3509, 3438, 3438, 3438, 3438, 3510, 3438, 3438, 3438, 3511, 3512, 3513, 3513, 3438, 3514, 3438, 3515, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3516, 3438, 3438, 3438, 3517, 3518, 3438, 3438, 3438, 3438, 3438, 3519, 3438, 3438, 3520, 3438, 3521, 3521, 3521, 3521, 3438, 3438, 3438, 3522, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3523, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3524, 3438, 3525, 3438, 3438, 3526, 3438, 3438, 3438, 3438, 3527, 3438, 3438, 3438, 3438, 3438, 3528, 3529, 3529, 3530, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3438, 3531, 3438, 3531, 3531, 3531, 3531, 3438, 3438, 3438, 3532, 3533, 3438, 3534, 3438, 3438, 3535, 3438, 3438, 3438, 3438, 3438, 3536, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 454, 3537, 3438, 3438, 3438, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3539, 3539, 3438, 3438, 3438, 3540, 3541, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3542, 3438, 3543, 3543, 3438, 3438, 3544, 3545, 3438, 3546, 3547, 3547, 3438, 3438, 3438, 3548, 3438, 3438, 3438, 3438, 3438, 3547, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3549, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3550, 3550, 3550, 3550, 3550, 3438, 3550, 3551, 3438, 3551, 3551, 3551, 3551, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3552, 3438, 3552, 3552, 3552, 3438, 3438, 3553, 3438, 3553, 3553, 3553, 3553, 3554, 3438, 3555, 3555, 3555, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3556, 3438, 3438, 3556, 3556, 3556, 3438, 3438, 3438, 3556, 3557, 3438, 3558, 3559, 3560, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3561, 3438, 3438, 3438, 3562, 3563, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3564, 3438, 3438, 3438, 3438, 3565, 3438, 3566, 3438, 3438, 3566, 3566, 3566, 3567, 3438, 3438, 3438, 3568, 3438, 3569, 3569, 3569, 3569, 3569, 3438, 3569, 3570, 3438, 3438, 3438, 3571, 3572, 3572, 3572, 3572, 3572, 3438, 3572, 3438, 3438, 3573, 3438, 3574, 3574, 3574, 3575, 3576, 3438, 3438, 3438, 3438, 3438, 3577, 3578, 3579, 3580, 3438, 3438, 3438, 3438, 3438, 3581, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3582, 3582, 3582, 3583, 3438, 3438, 3584, 3584, 3584, 3584, 3438, 3438, 3438, 3438, 3585, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3586, 3438, 3438, 3587, 3438, 3438, 3438, 3588, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3589, 3590, 3438, 3438, 3438, 3438, 3591, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3592, 3593, 3594, 3438, 3595, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3596, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3597, 3438, 3438, 3598, 3438, 3438, 3598, 3599, 3438, 3438, 3598, 3600, 3438, 3438, 3600, 3601, 3438, 3438, 3438, 3602, 3438, 3438, 3602, 3603, 3438, 3438, 3602, 3604, 3438, 3438, 3604, 3605, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3606, 3607, 3438, 3438, 3608, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3609, 3438, 3438, 3609, 3438, 3609, 3610, 3438, 3438, 3611, 3611, 3438, 3438, 3438, 3438, 3438, 3612, 3438, 3612, 3612, 3612, 3438, 3612, 3438, 3612, 3438, 3613, 3438, 3613, 3613, 3613, 3613, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3614, 3614, 3438, 3438, 3615, 3438, 3438, 3438, 3616, 3617, 3618, 3618, 3619, 3620, 3438, 3438, 3438, 3438, 3621, 3438, 3438, 3438, 3438, 3438, 3622, 3438, 3438, 3623, 3438, 3438, 3438, 3438, 3438, 3624, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3625, 3438, 3625, 3625, 3625, 3625, 3626, 3626, 3438, 3626, 3626, 3626, 3438, 3438, 3626, 3438, 3438, 3626, 3627, 3438, 3628, 3438, 3628, 3628, 3438, 3628, 3438, 3438, 3438, 3438, 3628, 3438, 3438, 3438, 3629, 3438, 3438, 3629, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3630, 3438, 3438, 3631, 3631, 3632, 3438, 3631, 3633, 3634, 3630, 3630, 3635, 3636, 3633, 3438, 3438, 3634, 3438, 3438, 3438, 3637, 3637, 3638, 3438, 3438, 3438, 3438, 3639, 3639, 3640, 3639, 3641, 3642, 3438, 3438, 3438, 3641, 3438, 3438, 3438, 3642, 3642, 3642, 3643, 3438, 3438, 3643, 3644, 3438, 3645, 3644, 3646, 3644, 3647, 3647, 3438, 3438, 3438, 3648, 3648, 3649, 3650, 3651, 3651, 3652, 3652, 3652, 3653, 3653, 3438, 3652, 3654, 3438, 3655, 3653, 3438, 3438, 3438, 3438, 3438, 3656, 3657, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3658, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3659, 3659, 3660, 3438, 3438, 3438, 3659, 3661, 3662, 3438, 3663, 3663, 3438, 3664, 3438, 3438, 3438, 3665, 3666, 3661, 3438, 3438, 3667, 3668, 3668, 3668, 3668, 3438, 3662, 3438, 3662, 3658, 3438, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3669, 3669, 3669, 3438, 3438, 3438, 3670, 3670, 3671, 3670, 3672, 3673, 3672, 3438, 3673, 3438, 3674, 3438, 3438, 3674, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3675, 3438, 3438, 3438, 3438, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3438, 3438, 3438, 3676, 3676, 3438, 3438, 3677, 3677, 3678, 3679, 3438, 3680, 3438, 3438, 3438, 3681, 3438, 3682, 3681, 3438, 3681, 3438, 3438, 3683, 3683, 3684, 3683, 3685, 3686, 3685, 3686, 3687, 3687, 3438, 3688, 3689, 3438, 3438, 3438, 3438, 3438, 3687, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3690, 3690, 3438, 3438, 3438, 3690, 3691, 3438, 3691, 3691, 3438, 3692, 3692, 3692, 3693, 3693, 3693, 3694, 3694, 3694, 3694, 3438, 3695, 3438, 3438, 3438, 3438, 3695, 3695, 3695, 3696, 3697, 3696, 3698, 3438, 3699, 3698, 3438, 3438, 3438, 3438, 3438, 3700, 3438, 3701, 3438, 3701, 3702, 3438, 3438, 3702, 3703, 3438, 3703, 3703, 3704, 3438, 3438, 3704, 3705, 3705, 3705, 3706, 3438, 3438, 3438, 3706, 3438, 3707, 3438, 3707, 3707, 3438, 3708, 3708, 3438, 3709, 3708, 3708, 3710, 3710, 3438, 3438, 3438, 3438, 3711, 3711, 3712, 3712, 3713, 3714, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3715, 3715, 3716, 3438, 3438, 3716, 3438, 3438, 3717, 3717, 3717, 3718, 3438, 3718, 3719, 3438, 3438, 3720, 3438, 3438, 3438, 3438, 3721, 3721, 3722, 3721, 3723, 3724, 3723, 3724, 3438, 3438, 3438, 3438, 3438, 3438, 3725, 3438, 3726, 3438, 3727, 3728, 3438, 3438, 3438, 3438, 3438, 3729, 3729, 3730, 3730, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3731, 3732, 3733, 3731, 3731, 3734, 3735, 3736, 3737, 3738, 3739, 3737, 3737, 3740, 3741, 3742, 3438, 3438, 3438, 3438, 3438, 3438, 3743, 3744, 3745, 3743, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3746, 3746, 3746, 3438, 3747, 3748, 3438, 3748, 3438, 3438, 3748, 3438, 3438, 3749, 3749, 3749, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3750, 3750, 3751, 3752, 3753, 3438, 3438, 3438, 3753, 3752, 3438, 3754, 3754, 3755, 3756, 3438, 3438, 3756, 3438, 3757, 3438, 3758, 3438, 3438, 3438, 3759, 3759, 3760, 3759, 3761, 3762, 3761, 3762, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3763, 3438, 3438, 3438, 3763, 3763, 3764, 3764, 3764, 3438, 3438, 3438, 3438, 3764, 3764, 3765, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3764, 3766, 3438, 3438, 3766, 3438, 3767, 3438, 3438, 3438, 3438, 3438, 3438, 3767, 3438, 3438, 3438, 3438, 3438, 3438, 3768, 3769, 3438, 3770, 3771, 3771, 3772, 3773, 3774, 3438, 3775, 3776, 3438, 3777, 3438, 3438, 3778, 3779, 3438, 3780, 3780, 3438, 3438, 3781, 3782, 3783, 3784, 3785, 3786, 3438, 3787, 3788, 3788, 3789, 3790, 3791, 3788, 3438, 3438, 3438, 3438, 3792, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3793, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3794, 3438, 3438, 3438, 3795, 3438, 3438, 3796, 3797, 3438, 3798, 3438, 3438, 3799, 3438, 3438, 3438, 3800, 3438, 3801, 3793, 3438, 3438, 3438, 3802, 3802, 3802, 3802, 3802, 3802, 3438, 3803, 3803, 3803, 3438, 3438, 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, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3438, 3438, 3804, 3805, 3438, 3799, 3438, 3800, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3799, 3438, 3438, 3800, 3438, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3438, 3438, 3807, 3808, 3809, 3438, 3438, 3438, 3438, 3438, 3438, 3810, 3438, 3438, 3811, 3811, 3812, 3813, 3814, 3815, 3816, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3817, 3817, 3438, 3818, 3818, 3818, 3819, 3820, 3821, 3821, 3438, 3822, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3799, 3438, 3800, 3438, 3438, 3823, 3824, 3438, 3825, 3825, 3438, 3438, 3438, 3438, 3438, 3826, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3827, 3438, 3828, 3828, 3438, 3829, 3438, 3830, 3831, 3438, 3438, 3832, 3438, 3438, 3438, 3438, 3438, 3438, 3833, 3834, 3438, 3438, 3438, 3835, 3438, 3438, 3438, 3836, 3438, 3438, 3438, 3837, 3438, 3438, 3438, 3438, 3838, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3839, 3438, 3840, 3438, 3438, 3438, 3841, 3842, 3438, 3438, 3843, 3844, 3438, 3438, 3438, 3438, 3438, 3845, 3845, 3846, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3847, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3848, 3849, 3850, 3438, 3438, 3438, 3438, 3438, 3851, 3851, 3438, 3852, 3438, 3853, 3854, 3855, 3854, 3438, 3856, 3857, 3858, 3859, 3860, 3438, 3438, 3438, 3438, 3861, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3862, 3862, 3863, 3438, 3438, 3864, 3864, 3438, 3865, 3866, 3867, 3438, 3438, 3438, 3438, 3438, 3868, 3438, 3438, 3438, 3438, 3438, 3869, 3438, 3870, 3870, 3870, 3870, 3870, 3870, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3438, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3872, 3872, 3438, 3872, 3872, 3872, 3872, 3438, 3872, 3873, 3438, 3874, 3875, 3438, 3438, 3438, 3876, 3438, 3877, 3878, 3879, 3438, 3438, 3438, 3438, 3438, 3880, 3880, 3438, 3881, 3881, 3881, 3882, 3883, 3438, 3438, 3438, 3438, 3884, 3885, 3885, 3438, 3438, 3438, 3438, 3438, 3886, 3438, 3438, 3438, 3438, 3887, 3438, 3888, 3438, 3438, 3438, 3438, 3889, 3890, 3438, 3438, 3891, 3438, 3438, 3892, 3438, 3438, 3893, 3438, 3438, 3438, 3894, 3438, 3438, 3438, 3438, 3438, 3895, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3896, 3438, 3438, 3438, 3438, 3438, 3897, 3897, 3438, 3438, 3438, 3898, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3899, 3899, 3900, 3901, 3901, 3902, 3438, 3903, 3903, 3904, 3905, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3906, 3438, 3907, 3438, 3908, 3908, 3909, 3910, 3438, 3911, 3911, 3912, 3438, 3913, 3913, 3913, 3913, 3913, 3913, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3915, 3915, 3915, 3915, 3915, 3915, 3915, 3438, 3438, 3916, 3438, 3438, 3438, 3438, 3917, 3438, 3438, 3438, 3438, 3918, 3918, 3438, 3919, 3919, 3919, 3919, 3438, 3438, 3920, 3920, 3438, 3438, 3438, 3438, 3438, 3438, 3921, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3922, 3922, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3923, 3923, 3902, 3903, 3905, 3438, 3438, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3924, 3907, 3438, 3910, 3911, 3913, 3913, 3913, 3913, 3913, 3913, 3913, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3914, 3438, 3914, 3914, 3438, 3438, 3438, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3915, 3438, 3915, 3915, 3915, 3438, 3438, 3915, 3915, 3438, 3917, 3438, 3918, 3919, 3919, 3919, 3438, 3920, 3438, 3925, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3922, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3923, 3438, 3438, 3438, 3905, 3438, 3438, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3913, 3913, 3913, 3913, 3913, 3914, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3914, 3438, 3438, 3914, 3914, 3438, 3438, 3438, 3914, 3914, 3914, 3438, 3914, 3914, 3438, 3438, 3914, 3914, 3438, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3914, 3914, 3438, 3438, 2736, 3914, 3438, 3438, 3438, 3914, 3914, 3914, 3438, 3438, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3915, 3915, 3438, 3438, 3438, 3438, 3915, 3438, 3917, 3918, 3919, 3919, 3919, 3920, 3438, 3925, 3926, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3927, 3438, 3438, 3438, 3438, 3905, 3438, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3913, 3913, 3913, 3913, 3438, 3914, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3914, 3438, 3438, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3914, 3438, 3438, 3914, 3914, 3914, 3914, 3914, 3438, 3914, 3914, 3438, 3438, 3914, 3438, 3438, 3438, 3914, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3915, 3915, 3915, 3438, 3917, 3919, 3919, 3919, 3438, 3926, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3905, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3913, 3438, 3913, 3913, 3914, 3914, 3438, 3914, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3914, 3438, 3914, 3438, 3438, 3914, 3438, 3914, 3914, 3914, 3438, 3914, 3914, 3914, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3917, 3919, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3905, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3928, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3913, 3913, 3438, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3914, 3914, 3914, 3438, 3438, 3914, 3914, 3914, 3914, 3438, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3438, 3919, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3905, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3928, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3438, 3438, 3914, 3438, 3438, 3438, 3438, 3914, 3438, 3438, 3929, 3930, 3914, 3914, 3438, 3438, 3438, 3914, 3914, 3914, 3914, 3438, 3438, 3914, 3438, 3438, 3919, 3931, 3932, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3914, 3438, 3438, 3438, 3438, 3438, 3930, 3438, 3914, 3914, 3438, 3914, 3914, 3914, 3438, 3438, 3438, 3438, 3438, 3931, 3933, 3932, 3934, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3438, 3438, 3438, 3914, 3438, 3438, 3914, 3914, 3438, 3438, 3438, 3933, 3934, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3913, 3438, 3438, 3438, 3914, 3914, 2275, 3438, 3438, 3438, 3438, 3913, 3438, 3438, 3914, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2275, 3438, 3438, 3438, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 3438, 2275, 0, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438 } ; static yyconst short int yy_nxt[24758] = { 0, 3438, 3438, 241, 3438, 241, 3438, 242, 243, 242, 243, 1168, 244, 3438, 244, 1168, 1035, 1045, 1046, 3438, 245, 1036, 245, 240, 240, 241, 240, 240, 240, 242, 243, 246, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 240, 240, 240, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 240, 240, 240, 249, 250, 249, 249, 1043, 251, 252, 1317, 1318, 1044, 253, 249, 250, 249, 249, 241, 251, 252, 254, 300, 301, 253, 241, 2082, 302, 1038, 300, 301, 1038, 254, 1069, 302, 303, 1069, 2138, 1268, 1039, 241, 304, 303, 305, 352, 353, 1084, 1269, 304, 354, 305, 1085, 255, 1107, 355, 2516, 1107, 356, 1083, 1083, 1083, 1083, 357, 255, 240, 256, 257, 258, 256, 259, 242, 243, 260, 240, 240, 244, 240, 240, 240, 240, 240, 240, 261, 245, 240, 240, 240, 262, 263, 240, 240, 240, 240, 240, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 240, 240, 240, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 265, 240, 266, 240, 267, 268, 269, 267, 270, 242, 243, 271, 240, 272, 244, 273, 240, 272, 274, 275, 274, 240, 276, 240, 240, 240, 277, 272, 278, 272, 240, 240, 279, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 273, 240, 240, 280, 281, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 282, 280, 280, 280, 280, 280, 280, 265, 240, 270, 283, 283, 284, 283, 283, 283, 285, 286, 287, 283, 283, 288, 283, 283, 283, 283, 283, 283, 283, 289, 283, 283, 283, 290, 283, 283, 283, 283, 283, 283, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 283, 283, 283, 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, 283, 283, 283, 283, 283, 284, 283, 283, 283, 285, 286, 292, 283, 283, 288, 283, 283, 283, 283, 283, 283, 283, 289, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 283, 283, 283, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 294, 293, 293, 295, 283, 283, 240, 240, 241, 240, 240, 240, 242, 243, 296, 240, 240, 244, 240, 297, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 240, 240, 240, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 240, 240, 240, 306, 307, 308, 306, 307, 306, 309, 310, 311, 306, 306, 312, 306, 306, 306, 306, 306, 306, 306, 313, 306, 306, 306, 306, 314, 306, 306, 306, 306, 306, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 316, 306, 306, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 317, 306, 306, 318, 318, 319, 318, 318, 318, 320, 321, 322, 318, 318, 323, 318, 318, 318, 318, 318, 318, 318, 324, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 318, 318, 318, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 326, 318, 318, 240, 327, 328, 329, 327, 240, 242, 243, 330, 240, 240, 244, 240, 240, 240, 274, 331, 274, 240, 276, 240, 240, 240, 332, 263, 333, 240, 331, 240, 279, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 240, 240, 240, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 335, 240, 240, 337, 338, 337, 337, 1094, 339, 340, 1284, 1886, 1095, 341, 337, 338, 337, 337, 1035, 339, 340, 342, 1035, 1036, 341, 241, 1887, 1036, 1035, 345, 243, 1098, 342, 1036, 346, 347, 241, 1099, 1035, 348, 345, 243, 245, 1036, 1101, 346, 347, 349, 2517, 1126, 348, 241, 1126, 245, 1127, 352, 353, 1128, 349, 1035, 354, 1286, 401, 2518, 1036, 355, 402, 403, 356, 343, 1370, 404, 401, 357, 1371, 344, 402, 403, 1174, 405, 343, 404, 1224, 1175, 2519, 406, 344, 1225, 1406, 405, 1407, 413, 414, 413, 413, 406, 242, 243, 1327, 1328, 350, 244, 1240, 1052, 1052, 1052, 1052, 1241, 2520, 423, 1053, 350, 240, 358, 359, 360, 358, 361, 242, 362, 363, 364, 365, 244, 366, 240, 365, 367, 368, 367, 369, 370, 371, 371, 371, 372, 373, 374, 375, 240, 376, 377, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 379, 378, 378, 378, 378, 378, 380, 240, 240, 381, 382, 378, 383, 384, 385, 386, 387, 378, 388, 389, 390, 391, 392, 378, 393, 378, 394, 395, 396, 397, 398, 378, 378, 378, 399, 240, 361, 240, 407, 408, 407, 407, 409, 242, 243, 410, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 411, 240, 240, 240, 240, 240, 240, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 240, 240, 240, 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, 240, 240, 409, 240, 413, 414, 413, 413, 240, 242, 243, 415, 240, 240, 244, 416, 240, 240, 240, 417, 240, 240, 418, 240, 240, 240, 240, 419, 240, 420, 240, 240, 240, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 422, 240, 240, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 240, 240, 240, 413, 414, 413, 413, 1043, 242, 243, 241, 1035, 1044, 244, 242, 424, 1036, 1035, 1035, 244, 425, 423, 1036, 1036, 426, 241, 2521, 245, 1257, 242, 424, 427, 428, 1258, 244, 425, 1257, 1279, 1035, 426, 1279, 1258, 245, 1036, 1329, 1330, 427, 428, 430, 431, 430, 430, 1282, 432, 433, 1546, 1547, 1283, 434, 435, 436, 1162, 1305, 437, 1162, 1305, 438, 1308, 430, 431, 430, 430, 1309, 432, 433, 2522, 1315, 1322, 434, 435, 436, 1316, 1323, 437, 241, 426, 438, 241, 440, 441, 1633, 440, 441, 442, 443, 444, 442, 443, 444, 1633, 426, 445, 447, 2523, 445, 447, 448, 449, 470, 448, 449, 450, 471, 472, 450, 1308, 1163, 473, 474, 451, 1325, 1035, 451, 1098, 452, 475, 1036, 452, 470, 1099, 476, 477, 471, 472, 1633, 241, 1101, 473, 474, 242, 243, 1530, 1335, 1305, 244, 475, 1305, 1336, 1633, 241, 476, 477, 245, 242, 243, 558, 1035, 1531, 244, 559, 560, 1036, 1332, 2374, 561, 1332, 245, 1070, 1070, 1070, 1070, 1102, 562, 1304, 1071, 1333, 1304, 453, 2375, 1277, 453, 429, 454, 455, 454, 454, 429, 432, 433, 456, 429, 429, 434, 429, 429, 429, 429, 457, 429, 429, 458, 429, 429, 429, 457, 457, 429, 459, 429, 429, 429, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 429, 429, 429, 460, 461, 460, 462, 460, 460, 460, 460, 460, 460, 460, 460, 460, 463, 464, 460, 460, 465, 466, 467, 460, 468, 460, 460, 460, 457, 429, 429, 241, 1181, 2524, 241, 479, 480, 1343, 479, 480, 481, 1656, 1344, 481, 486, 487, 488, 486, 482, 489, 490, 482, 1346, 1387, 491, 1656, 1387, 1347, 486, 487, 488, 486, 492, 489, 490, 528, 1035, 1687, 491, 529, 530, 1036, 493, 1688, 531, 1647, 492, 532, 483, 1183, 484, 483, 533, 484, 1648, 1184, 493, 486, 487, 488, 486, 1185, 489, 490, 1626, 1627, 1917, 491, 486, 487, 488, 486, 241, 489, 490, 492, 242, 243, 491, 1035, 1917, 244, 1356, 534, 1036, 493, 492, 1357, 2525, 245, 494, 495, 486, 487, 488, 486, 493, 489, 490, 1679, 1679, 1358, 491, 1359, 494, 495, 1041, 1041, 1041, 1041, 492, 486, 487, 488, 486, 1968, 489, 490, 528, 1360, 497, 491, 529, 530, 1042, 1313, 1338, 531, 1313, 492, 532, 1314, 1168, 494, 496, 533, 1168, 528, 1339, 497, 1968, 535, 530, 1340, 494, 496, 536, 1400, 526, 532, 1400, 1035, 551, 241, 533, 551, 1036, 552, 553, 1035, 1403, 1633, 554, 1403, 1036, 555, 534, 558, 494, 498, 556, 559, 560, 1376, 1069, 1633, 561, 1069, 1376, 1077, 1077, 1077, 1077, 2526, 562, 534, 1078, 494, 498, 240, 240, 241, 240, 240, 240, 242, 243, 499, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 500, 240, 240, 240, 240, 240, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 240, 240, 240, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 502, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 240, 240, 240, 240, 503, 504, 503, 503, 505, 242, 243, 506, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 507, 240, 240, 240, 240, 240, 240, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 240, 240, 240, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 240, 240, 505, 510, 511, 1035, 510, 1379, 512, 513, 1036, 1384, 1380, 514, 520, 511, 1385, 520, 241, 512, 521, 515, 242, 243, 514, 1391, 1505, 244, 2529, 1505, 1392, 516, 515, 510, 522, 245, 510, 1506, 523, 513, 2252, 1401, 516, 514, 510, 522, 1402, 510, 1423, 523, 513, 524, 517, 1424, 514, 1257, 1041, 1041, 1041, 1041, 1258, 516, 524, 517, 528, 2252, 543, 544, 535, 530, 545, 546, 516, 536, 1042, 547, 532, 1831, 1831, 518, 519, 533, 525, 548, 1035, 1114, 1115, 1115, 1114, 1036, 518, 519, 1116, 525, 526, 1406, 511, 1407, 2530, 588, 537, 538, 511, 589, 590, 514, 537, 538, 591, 517, 517, 514, 534, 539, 549, 2253, 592, 1035, 540, 539, 517, 517, 1036, 516, 540, 1656, 543, 544, 1035, 516, 545, 546, 2241, 1036, 1656, 547, 551, 241, 1408, 551, 2253, 552, 553, 548, 2531, 1118, 554, 241, 1406, 555, 1407, 242, 243, 241, 556, 2241, 244, 242, 243, 2532, 1435, 1119, 244, 1435, 245, 1436, 3438, 3438, 3438, 3438, 245, 541, 2533, 3438, 549, 241, 1473, 541, 241, 242, 243, 1474, 242, 243, 244, 565, 566, 244, 565, 566, 1069, 1409, 245, 1069, 2534, 245, 1173, 1173, 1173, 1173, 568, 569, 568, 568, 241, 570, 571, 1035, 242, 243, 572, 1482, 1036, 244, 578, 579, 1483, 1708, 573, 2419, 1486, 245, 563, 564, 574, 1487, 575, 1709, 563, 564, 568, 569, 568, 568, 241, 570, 571, 2420, 242, 243, 572, 241, 3438, 244, 1492, 242, 243, 1035, 573, 1493, 244, 245, 1036, 1806, 574, 1500, 575, 576, 245, 577, 1501, 2461, 1807, 241, 576, 1035, 577, 242, 243, 2462, 1036, 1035, 244, 578, 579, 1107, 1036, 241, 1107, 1035, 245, 581, 582, 241, 1036, 1035, 583, 581, 582, 2536, 1036, 1035, 583, 588, 584, 2031, 1036, 589, 590, 639, 584, 1035, 591, 640, 641, 2032, 1036, 1523, 642, 1406, 592, 1407, 1524, 2329, 639, 1035, 643, 1035, 640, 641, 1036, 1686, 1529, 642, 585, 1126, 586, 1406, 1126, 1407, 585, 643, 586, 240, 240, 241, 240, 240, 240, 242, 243, 593, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 594, 240, 240, 240, 240, 240, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 240, 240, 240, 595, 595, 595, 596, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 597, 595, 595, 595, 240, 240, 240, 599, 1809, 599, 1536, 600, 601, 600, 601, 1537, 602, 1810, 602, 1048, 1048, 1048, 1048, 241, 603, 241, 603, 606, 607, 606, 607, 1746, 608, 1035, 608, 1406, 1049, 1407, 1036, 2580, 609, 1050, 609, 612, 613, 612, 612, 1035, 614, 615, 1035, 2581, 1036, 616, 1035, 1036, 617, 1847, 1847, 1036, 618, 619, 612, 613, 612, 612, 2596, 614, 615, 1035, 1532, 620, 616, 1532, 1036, 617, 610, 1883, 610, 618, 619, 2053, 604, 1533, 604, 1048, 1048, 1048, 1048, 664, 620, 664, 620, 665, 666, 665, 666, 2054, 667, 1035, 667, 2597, 1049, 2598, 1036, 1035, 668, 1050, 668, 2599, 1036, 620, 240, 240, 241, 240, 240, 240, 242, 243, 621, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 622, 240, 240, 240, 240, 240, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 240, 240, 240, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 240, 240, 240, 240, 240, 241, 240, 240, 240, 242, 243, 624, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 240, 240, 240, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 240, 240, 240, 627, 1809, 627, 1035, 628, 629, 628, 629, 1036, 630, 1810, 630, 1076, 1076, 1076, 1076, 241, 631, 241, 631, 647, 648, 647, 648, 1406, 649, 1407, 649, 1074, 1074, 1074, 1074, 676, 650, 1075, 650, 677, 678, 651, 1586, 651, 679, 1586, 680, 1132, 1132, 1132, 1132, 2600, 681, 1075, 632, 1038, 632, 2601, 1038, 241, 633, 1587, 633, 242, 243, 1133, 1039, 1884, 244, 734, 634, 635, 634, 635, 1126, 2602, 245, 1126, 636, 637, 636, 637, 240, 240, 241, 240, 240, 240, 242, 243, 644, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 240, 240, 240, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 240, 240, 240, 652, 653, 414, 653, 653, 652, 654, 655, 656, 652, 652, 657, 652, 652, 652, 652, 658, 652, 652, 659, 652, 652, 652, 652, 660, 652, 652, 652, 652, 652, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 652, 652, 652, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 662, 652, 652, 240, 240, 241, 240, 240, 240, 242, 243, 669, 240, 240, 244, 670, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 671, 672, 240, 240, 240, 240, 240, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 240, 240, 240, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 674, 240, 240, 676, 1600, 1602, 1619, 677, 678, 1601, 1603, 1601, 679, 2603, 680, 1245, 1245, 1245, 1245, 2605, 681, 240, 240, 241, 240, 240, 240, 242, 243, 682, 240, 240, 244, 683, 240, 240, 240, 684, 240, 240, 245, 240, 240, 240, 685, 672, 240, 240, 240, 240, 240, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 240, 240, 240, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 674, 240, 240, 688, 1602, 2606, 688, 689, 690, 1620, 689, 690, 691, 1593, 692, 691, 1593, 692, 2607, 1598, 693, 241, 1598, 693, 241, 242, 243, 1623, 242, 243, 244, 1594, 1624, 244, 1271, 1271, 1271, 1271, 245, 1692, 1631, 245, 1693, 1599, 694, 1632, 1272, 694, 240, 695, 241, 240, 695, 240, 242, 243, 696, 240, 240, 244, 697, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 240, 240, 240, 698, 698, 698, 699, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 700, 698, 698, 698, 240, 240, 240, 240, 240, 241, 240, 240, 240, 242, 243, 701, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 240, 240, 240, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 240, 240, 240, 241, 1672, 2019, 241, 242, 243, 1673, 242, 243, 244, 241, 703, 244, 734, 242, 243, 2019, 245, 1592, 244, 245, 703, 1105, 1105, 1105, 1105, 1604, 245, 2611, 241, 1595, 704, 1680, 242, 243, 1596, 1829, 1681, 244, 1605, 735, 704, 705, 706, 1106, 707, 245, 1159, 1159, 1159, 1159, 1604, 705, 706, 1160, 707, 240, 240, 241, 240, 240, 240, 242, 243, 708, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 240, 240, 240, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 240, 240, 240, 240, 240, 241, 240, 240, 240, 242, 243, 710, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 240, 240, 240, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 240, 240, 240, 713, 714, 713, 713, 766, 715, 716, 1829, 767, 768, 717, 718, 719, 769, 770, 720, 721, 1705, 722, 1615, 1706, 771, 1615, 723, 724, 241, 725, 726, 727, 242, 243, 2020, 1616, 1682, 244, 241, 735, 1617, 1683, 242, 243, 1848, 245, 1599, 244, 2020, 1849, 2475, 728, 745, 719, 241, 245, 1874, 766, 242, 243, 746, 767, 768, 244, 1098, 1875, 769, 770, 745, 1305, 1099, 245, 1305, 2475, 771, 1628, 746, 1101, 1628, 729, 719, 713, 714, 713, 713, 788, 715, 716, 1629, 789, 790, 717, 718, 719, 791, 2612, 720, 721, 1162, 722, 1038, 1162, 792, 1038, 723, 724, 793, 725, 726, 727, 241, 1039, 1845, 241, 748, 749, 2036, 748, 749, 750, 1317, 1318, 750, 1088, 1088, 1088, 1088, 751, 2037, 728, 751, 719, 2038, 752, 1089, 753, 752, 820, 753, 1851, 1305, 821, 822, 1305, 1852, 1075, 823, 824, 825, 1229, 1229, 1229, 1229, 1163, 826, 1845, 1230, 729, 719, 240, 730, 731, 730, 730, 240, 242, 243, 732, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 240, 240, 240, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 240, 240, 240, 240, 736, 737, 736, 736, 240, 242, 243, 738, 240, 739, 244, 240, 240, 739, 240, 740, 240, 240, 741, 240, 240, 240, 240, 742, 240, 743, 240, 240, 240, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 240, 240, 240, 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, 240, 240, 240, 754, 755, 756, 755, 755, 757, 758, 759, 760, 754, 754, 761, 754, 754, 754, 754, 754, 754, 754, 762, 754, 754, 754, 763, 754, 754, 754, 754, 754, 754, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 754, 754, 754, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 754, 754, 757, 241, 1327, 1328, 241, 242, 243, 2616, 242, 243, 244, 772, 773, 244, 772, 773, 1329, 1330, 245, 1893, 1893, 245, 776, 777, 776, 776, 800, 778, 779, 1695, 801, 802, 780, 781, 782, 803, 1376, 1696, 804, 1697, 783, 1376, 2476, 805, 776, 777, 776, 776, 774, 778, 779, 774, 1376, 2171, 780, 781, 782, 1376, 776, 777, 776, 776, 783, 778, 779, 2476, 241, 2171, 780, 781, 884, 885, 1914, 1914, 806, 886, 783, 887, 1137, 1137, 1137, 1137, 785, 888, 786, 776, 777, 776, 776, 788, 778, 779, 1701, 789, 790, 780, 781, 2617, 791, 1304, 1139, 1702, 1304, 783, 2304, 1277, 792, 1703, 2305, 785, 793, 786, 240, 240, 241, 240, 240, 240, 242, 243, 794, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 240, 240, 240, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 240, 240, 240, 240, 240, 241, 240, 240, 240, 242, 243, 796, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 797, 240, 240, 240, 240, 240, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 240, 240, 240, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 240, 240, 240, 800, 2618, 800, 1915, 801, 802, 807, 802, 1916, 803, 1387, 808, 804, 1387, 804, 1917, 800, 805, 810, 805, 807, 802, 811, 812, 1917, 808, 1400, 813, 804, 1400, 814, 1633, 810, 805, 810, 815, 811, 812, 817, 812, 1633, 813, 1403, 818, 814, 1403, 814, 2172, 806, 815, 806, 815, 1038, 810, 2619, 1038, 1649, 817, 812, 1649, 1650, 2172, 818, 1039, 806, 814, 816, 820, 1922, 1922, 815, 821, 822, 2621, 1651, 2204, 823, 824, 825, 2623, 816, 828, 816, 828, 826, 829, 830, 829, 830, 2204, 831, 1891, 831, 1137, 1137, 1137, 1137, 1891, 832, 836, 832, 816, 836, 837, 838, 2019, 837, 838, 839, 840, 841, 839, 840, 841, 2019, 1139, 842, 844, 1600, 842, 844, 845, 846, 1601, 845, 846, 847, 1926, 1926, 847, 852, 853, 1912, 852, 848, 854, 855, 848, 1098, 1712, 856, 857, 858, 1963, 1099, 241, 1963, 1713, 859, 999, 1000, 1101, 1714, 2240, 1001, 1912, 833, 834, 833, 834, 852, 853, 1002, 852, 241, 854, 855, 2240, 884, 885, 856, 857, 858, 886, 1098, 887, 1930, 1930, 859, 1920, 1099, 888, 1055, 1055, 1055, 1055, 1056, 1101, 1313, 1057, 1920, 1313, 849, 850, 1314, 849, 850, 861, 862, 861, 861, 901, 863, 864, 1050, 778, 910, 865, 866, 867, 780, 911, 912, 1811, 1924, 868, 1811, 1812, 913, 1661, 1406, 869, 1407, 870, 430, 431, 430, 430, 1924, 432, 433, 1813, 1934, 1934, 434, 881, 882, 1582, 1928, 437, 1582, 2020, 438, 430, 431, 430, 430, 241, 432, 433, 2020, 962, 963, 434, 881, 882, 964, 965, 437, 1928, 1056, 438, 1583, 1932, 966, 1939, 1939, 871, 861, 862, 861, 861, 901, 863, 864, 1932, 778, 910, 865, 866, 867, 780, 911, 912, 1731, 2624, 868, 1731, 1732, 913, 1811, 1584, 869, 1811, 870, 890, 891, 890, 890, 1619, 892, 893, 1733, 1937, 1601, 894, 895, 896, 1853, 1585, 897, 967, 1734, 898, 890, 891, 890, 890, 241, 892, 893, 2171, 999, 1000, 894, 895, 896, 1001, 2172, 897, 2171, 1435, 898, 1734, 1435, 1002, 1436, 2172, 871, 872, 872, 873, 872, 872, 872, 874, 875, 876, 872, 872, 877, 872, 872, 872, 872, 872, 872, 872, 878, 872, 872, 872, 872, 879, 872, 872, 872, 872, 872, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 872, 872, 872, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 879, 872, 872, 241, 2023, 2024, 241, 479, 480, 901, 479, 480, 481, 902, 903, 481, 2025, 1937, 904, 2026, 482, 2625, 1951, 482, 901, 1944, 905, 901, 902, 903, 901, 907, 903, 904, 907, 903, 908, 1586, 2048, 908, 1586, 905, 1811, 2049, 905, 1811, 1812, 905, 1332, 2625, 483, 1332, 899, 483, 901, 899, 1587, 906, 778, 779, 1813, 1333, 2626, 780, 901, 1951, 1944, 1567, 778, 779, 1567, 913, 906, 780, 1568, 906, 1569, 914, 906, 915, 1569, 913, 1073, 1074, 1074, 1073, 917, 914, 2627, 915, 918, 919, 1951, 1986, 1944, 920, 924, 917, 921, 924, 2628, 918, 919, 922, 1075, 1593, 920, 1505, 1593, 925, 1505, 927, 2204, 923, 922, 928, 929, 2629, 1506, 2630, 930, 2204, 927, 1594, 923, 2279, 928, 929, 931, 1811, 2280, 930, 1811, 1876, 923, 2329, 1986, 917, 932, 931, 2538, 934, 935, 2077, 2078, 923, 936, 1877, 917, 932, 2631, 241, 934, 935, 937, 940, 941, 936, 1051, 932, 942, 2632, 241, 1986, 938, 937, 940, 941, 943, 241, 932, 942, 241, 993, 994, 938, 993, 994, 995, 943, 996, 995, 1647, 996, 1598, 938, 997, 1598, 1004, 997, 1004, 1648, 1005, 1006, 1005, 1006, 938, 1007, 2633, 1007, 944, 1064, 1064, 1064, 1064, 1008, 1809, 1008, 1599, 2077, 2084, 944, 1065, 2634, 1963, 1810, 945, 1963, 1049, 1276, 1276, 1276, 1276, 1050, 1067, 1068, 2635, 945, 946, 947, 948, 947, 947, 946, 949, 950, 951, 946, 946, 952, 946, 946, 946, 946, 946, 946, 946, 953, 946, 946, 946, 946, 954, 946, 946, 946, 946, 946, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 956, 946, 946, 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, 946, 946, 946, 240, 957, 958, 957, 957, 240, 242, 243, 959, 240, 240, 244, 240, 240, 240, 240, 240, 240, 240, 245, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 240, 240, 240, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 240, 240, 240, 241, 2077, 2078, 1586, 962, 963, 1586, 2636, 1532, 964, 965, 1532, 1982, 1010, 1011, 1982, 1010, 966, 1012, 1013, 2637, 1533, 1587, 1014, 2638, 1616, 1015, 1122, 1122, 1122, 1122, 1016, 1134, 1134, 1134, 1134, 2639, 1017, 2077, 2084, 2622, 1018, 2643, 2622, 1123, 1132, 1132, 1132, 1132, 1125, 1135, 1275, 1276, 1276, 1275, 2644, 2645, 1277, 1276, 1276, 1276, 1276, 1019, 1133, 967, 968, 969, 970, 969, 969, 971, 972, 973, 974, 968, 968, 975, 976, 977, 968, 968, 968, 968, 968, 978, 968, 968, 968, 979, 968, 968, 968, 968, 968, 968, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 968, 968, 968, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 968, 968, 971, 982, 241, 2646, 982, 2060, 983, 984, 2060, 2647, 2316, 985, 982, 241, 2648, 982, 1809, 983, 984, 986, 1731, 1983, 985, 1731, 1798, 1810, 987, 1647, 2649, 1974, 986, 1984, 1047, 1048, 1048, 1047, 1648, 987, 1799, 1593, 1020, 1011, 1593, 1020, 1983, 1012, 1013, 2651, 1734, 1049, 1014, 2652, 2653, 1021, 1050, 988, 1984, 1594, 1022, 2654, 1120, 1120, 1120, 1120, 1017, 2655, 988, 1116, 1018, 1734, 1974, 989, 1727, 990, 1024, 1727, 1728, 991, 1025, 1026, 1027, 2656, 989, 1028, 990, 1729, 1029, 2657, 991, 1019, 1098, 1030, 1059, 1059, 1059, 1059, 1099, 1031, 1974, 1060, 1730, 1032, 2663, 1101, 1088, 1088, 1088, 1088, 1051, 1049, 1074, 1074, 1074, 1074, 1080, 1089, 2664, 1081, 2666, 2527, 1118, 1730, 1032, 1027, 1033, 1024, 1075, 1033, 2528, 1025, 1026, 1027, 1075, 1406, 1028, 1407, 3438, 1034, 1088, 1088, 1088, 1088, 1030, 1115, 1115, 1115, 1115, 2002, 1031, 1089, 1116, 2669, 1032, 1134, 1134, 1134, 1134, 1091, 2670, 2671, 1075, 1164, 1164, 1164, 1164, 1165, 2650, 1406, 1166, 1407, 1062, 1135, 1279, 1032, 1027, 1279, 2674, 1169, 1169, 1169, 1169, 2424, 2159, 1139, 1170, 2159, 1171, 2405, 1080, 2650, 1171, 1827, 1827, 1827, 1092, 1132, 1132, 1132, 1132, 1134, 1134, 1134, 1134, 1118, 2675, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1133, 2187, 1567, 2672, 1135, 1567, 3438, 1136, 1137, 1137, 1136, 1569, 2673, 1138, 1139, 1569, 1188, 1406, 1139, 1407, 1188, 1186, 1186, 1186, 1186, 2640, 1165, 2017, 2640, 1139, 1186, 1186, 1186, 1186, 2676, 1140, 2018, 2018, 1227, 1227, 1227, 1227, 2677, 1139, 1406, 1188, 1407, 1189, 2679, 1141, 2681, 1098, 1139, 1628, 1188, 1142, 1628, 1099, 1143, 1144, 1228, 1145, 1146, 1147, 1101, 2425, 1629, 1148, 1149, 1150, 1151, 1152, 1192, 1153, 2188, 1154, 1155, 1156, 1157, 1158, 2683, 2684, 2685, 1193, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2686, 1186, 1186, 1186, 1186, 2687, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1139, 2688, 1188, 2039, 1139, 2040, 1188, 1727, 2689, 1139, 1727, 1188, 1649, 2041, 1139, 1649, 1188, 2690, 1139, 2691, 1188, 2692, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1993, 1186, 1186, 1186, 1186, 1730, 1567, 2693, 1196, 1567, 1194, 1198, 1197, 1195, 1139, 1569, 1188, 2694, 1139, 1569, 1188, 1199, 1203, 1139, 1982, 1188, 1730, 1982, 2695, 1200, 1202, 1201, 2696, 1186, 1186, 1186, 1186, 1616, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2697, 1205, 2698, 1186, 1186, 1186, 1186, 2699, 2700, 1139, 1204, 1188, 2701, 2702, 1139, 1206, 1188, 2703, 1139, 2704, 1188, 1285, 1285, 1285, 1285, 1139, 2708, 1188, 2706, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2709, 1186, 1186, 1186, 1186, 2710, 1207, 1210, 2536, 1186, 1186, 1186, 1186, 2329, 1139, 1208, 1188, 2728, 1139, 2161, 1188, 1209, 1213, 1139, 2729, 1188, 2755, 1211, 2162, 2162, 1212, 1139, 2756, 1188, 1227, 1227, 1227, 1227, 2770, 2771, 2772, 1227, 1227, 1227, 1227, 1232, 1538, 1539, 1233, 1540, 1811, 1541, 1214, 1811, 1542, 1543, 1228, 1216, 2707, 2773, 1218, 1220, 1215, 1228, 1544, 1219, 1545, 2775, 1853, 1221, 1236, 1236, 1236, 1236, 1222, 2776, 1217, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1132, 1132, 1132, 1132, 2777, 2782, 2783, 1228, 1727, 1238, 1042, 1727, 1162, 2786, 1042, 1162, 2787, 2788, 1133, 1134, 1134, 1134, 1134, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1717, 1717, 1717, 1232, 2790, 1730, 1135, 1244, 2793, 2794, 2796, 1244, 1246, 1246, 1246, 1246, 1259, 1259, 1259, 1259, 2797, 1288, 1288, 1288, 1288, 2798, 1730, 1288, 1288, 1288, 1288, 1293, 1293, 1293, 1293, 1260, 1163, 1247, 1289, 1293, 1293, 1293, 1293, 1291, 1289, 1295, 1295, 1295, 1295, 1291, 2799, 2641, 1296, 1294, 2641, 2800, 1293, 1293, 1293, 1293, 1298, 1294, 2642, 1299, 1248, 2801, 1249, 1293, 1293, 1293, 1293, 1951, 1311, 1311, 1311, 1311, 1250, 1251, 1294, 1292, 1252, 1253, 1254, 2802, 1255, 1319, 1319, 1319, 1319, 1294, 1312, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1354, 1354, 1354, 1354, 1320, 1354, 1354, 1354, 1354, 1365, 1365, 1365, 1365, 1041, 1041, 1041, 1041, 2803, 1132, 1132, 1132, 1132, 1134, 1134, 1134, 1134, 1366, 1388, 1388, 1388, 1388, 1042, 1406, 2804, 1407, 1298, 1133, 2805, 2806, 2807, 1135, 1394, 1394, 1394, 1394, 1396, 1396, 1396, 1396, 2808, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1395, 1132, 1132, 1132, 1132, 1134, 1134, 1134, 1134, 1398, 1042, 2169, 2620, 2809, 1042, 1429, 1429, 1429, 1429, 1133, 2170, 2170, 1430, 1135, 1429, 1429, 1429, 1429, 2195, 2810, 2811, 1430, 3438, 3438, 3438, 3438, 2812, 2196, 2196, 3438, 1432, 1432, 1432, 1432, 2813, 1437, 1437, 1437, 1437, 2814, 1098, 2815, 1438, 1433, 1439, 2816, 1099, 2817, 1439, 1437, 1437, 1437, 1437, 1101, 1305, 2818, 1438, 1305, 1439, 2819, 2820, 2821, 1439, 3438, 3438, 3438, 3438, 1086, 2060, 2824, 3438, 2060, 3438, 1717, 1717, 1717, 3438, 1437, 1437, 1437, 1437, 2828, 2829, 2830, 1438, 2258, 1439, 1717, 1717, 1717, 1439, 1132, 1132, 1132, 1132, 1134, 1134, 1134, 1134, 1441, 1441, 1441, 1441, 1445, 1445, 1445, 1445, 2159, 2795, 1133, 2159, 2795, 2831, 1135, 1446, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 2832, 2833, 1447, 1827, 1827, 1827, 1448, 2202, 1451, 1451, 1451, 1451, 2834, 2835, 1450, 1452, 2203, 2203, 1450, 1449, 1449, 1449, 1449, 1454, 1443, 2836, 1455, 1449, 1449, 1449, 1449, 1459, 1459, 1459, 1459, 1461, 1461, 1461, 1461, 2640, 2837, 1450, 2640, 1460, 2838, 2839, 1462, 2840, 2842, 1450, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1463, 1471, 1471, 1471, 1471, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1515, 1515, 1515, 1515, 2844, 2845, 1472, 1519, 1519, 1519, 1519, 1516, 1464, 1519, 1519, 1519, 1519, 1521, 1521, 1521, 1521, 2848, 1520, 1517, 1982, 2849, 1454, 1982, 1520, 1534, 1534, 1534, 1534, 1549, 1549, 1549, 1549, 1616, 2641, 2851, 1550, 2641, 1533, 1549, 1549, 1549, 1549, 1528, 1518, 2642, 1550, 1554, 1554, 1554, 1554, 1560, 1560, 1560, 1560, 2852, 2853, 2075, 1561, 1555, 2075, 2854, 1556, 1560, 1560, 1560, 1560, 1406, 2855, 1407, 1561, 2860, 1517, 1564, 1564, 1564, 1564, 1552, 1572, 1572, 1572, 1572, 2863, 2864, 1565, 2076, 2865, 1552, 1572, 1572, 1572, 1572, 1574, 1574, 1574, 1574, 2866, 2867, 1692, 1575, 1573, 1572, 1572, 1572, 1572, 1577, 2076, 2789, 1578, 1606, 1573, 1572, 1572, 1572, 1572, 2880, 1606, 1637, 1637, 1637, 1637, 1607, 1608, 1573, 1609, 2622, 1610, 2765, 2622, 1611, 1612, 2884, 2791, 1573, 1049, 1607, 1608, 2885, 1609, 1613, 1610, 1614, 2766, 1611, 1612, 1630, 1630, 1630, 1630, 1041, 1041, 1041, 1041, 1613, 2888, 1614, 2208, 2913, 1629, 1047, 1048, 1048, 1047, 1622, 2914, 2209, 2209, 1042, 1048, 1048, 1048, 1048, 1644, 1644, 1644, 1644, 1049, 1582, 2915, 1577, 1582, 1050, 2211, 1089, 2920, 1049, 1059, 1059, 1059, 1059, 1050, 2212, 2212, 1060, 1052, 1052, 1052, 1052, 2921, 2214, 2924, 1053, 1583, 1049, 3438, 3438, 3438, 3438, 2215, 2215, 2925, 3438, 2217, 1634, 1634, 1634, 1634, 1055, 1055, 1055, 1055, 2218, 2218, 2926, 1065, 1052, 1052, 1052, 1052, 2927, 2928, 1584, 1053, 2929, 2930, 1051, 1067, 1068, 2221, 1050, 2932, 2933, 2934, 1064, 1064, 1064, 1064, 2222, 2222, 1585, 1634, 1634, 1634, 1634, 1065, 1059, 1059, 1059, 1059, 2935, 1049, 1065, 1060, 2937, 1062, 1050, 1067, 1068, 3438, 3438, 3438, 3438, 1049, 1067, 1068, 3438, 1639, 1639, 1639, 1639, 2938, 2795, 1677, 1640, 2795, 3438, 1642, 1642, 1642, 1642, 1056, 2272, 2272, 1057, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2939, 1070, 1070, 1070, 1070, 2940, 1050, 1065, 1071, 1049, 2226, 2941, 2226, 1049, 1050, 1067, 1068, 1951, 1050, 1067, 1068, 3438, 3438, 3438, 3438, 2942, 2943, 2079, 3438, 2944, 2079, 1062, 1073, 1074, 1074, 1073, 1074, 1074, 1074, 1074, 1083, 1083, 1083, 1083, 3438, 1076, 1076, 1076, 1076, 1077, 1077, 1077, 1077, 2945, 1075, 1734, 1078, 2946, 1075, 1829, 2947, 2948, 1056, 3438, 3438, 3438, 3438, 1075, 2407, 2407, 3438, 1077, 1077, 1077, 1077, 2949, 1734, 2246, 1078, 1088, 1088, 1088, 1088, 2950, 1652, 1652, 1652, 1652, 1080, 2246, 1089, 1081, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 2817, 1075, 2952, 1089, 2953, 2954, 1075, 1089, 1051, 1088, 1088, 1088, 1088, 2955, 1075, 2957, 2960, 2961, 1075, 2962, 1089, 1088, 1088, 1088, 1088, 1105, 1105, 1105, 1105, 1845, 2963, 1075, 1089, 1114, 1115, 1115, 1114, 2964, 2412, 2412, 1116, 2966, 2967, 1075, 1891, 2968, 2970, 1106, 1115, 1115, 1115, 1115, 2971, 2431, 2431, 1116, 3438, 3438, 3438, 3438, 2972, 2973, 1080, 3438, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 2974, 1655, 1132, 1132, 1132, 1132, 1654, 1912, 3438, 1123, 1406, 3438, 1407, 1123, 1125, 3438, 2434, 2434, 1125, 2975, 1133, 1118, 1120, 1120, 1120, 1120, 2979, 2986, 2984, 1116, 2987, 1666, 1666, 1666, 1666, 2988, 1118, 1119, 1667, 1122, 1122, 1122, 1122, 2985, 2424, 1122, 1122, 1122, 1122, 2992, 2993, 2504, 3438, 1134, 1134, 1134, 1134, 2054, 3004, 1665, 3438, 1125, 1123, 1685, 1685, 1685, 1685, 1125, 3005, 3010, 3011, 1135, 1159, 1159, 1159, 1159, 3012, 3013, 2068, 1160, 3028, 3029, 1118, 2069, 3035, 1139, 3438, 3438, 3438, 3438, 2323, 2323, 2323, 3438, 1715, 1715, 1715, 1715, 3438, 1684, 1685, 1685, 1684, 3036, 3038, 1138, 1164, 1164, 1164, 1164, 1159, 1159, 1159, 1159, 3039, 3040, 3044, 1160, 1188, 3046, 2418, 1139, 1186, 1186, 1186, 1186, 3008, 1140, 1139, 1169, 1169, 1169, 1169, 3047, 3048, 3009, 1170, 2226, 1171, 3050, 2226, 1141, 1171, 3051, 1139, 3052, 1188, 1142, 1920, 1894, 1143, 1144, 1894, 1145, 1146, 1147, 3053, 2437, 2437, 1148, 1149, 1150, 1151, 1152, 3054, 1153, 2246, 1154, 1155, 1156, 1157, 1158, 3438, 3438, 3438, 3438, 3058, 1896, 2246, 3438, 3057, 3438, 3059, 3057, 3060, 3438, 1719, 1719, 1719, 1719, 1721, 1721, 1721, 1721, 3061, 1171, 3062, 1720, 1896, 1171, 3067, 3068, 1722, 1723, 1173, 1173, 1173, 1173, 1793, 1793, 1793, 1793, 1725, 3070, 1726, 1736, 1736, 1736, 1736, 1165, 3071, 2860, 1166, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 3072, 1238, 3074, 1739, 3075, 3078, 1139, 1739, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 3081, 3082, 3083, 1739, 3084, 3086, 3087, 1739, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3088, 1186, 1186, 1186, 1186, 1750, 1750, 1750, 1750, 1186, 1186, 1186, 1186, 3090, 1139, 3098, 1188, 3099, 1139, 1924, 1188, 3055, 3103, 1139, 3055, 1188, 1741, 3104, 2439, 2439, 1165, 1139, 3056, 1188, 1186, 1186, 1186, 1186, 3105, 1742, 1743, 1747, 1748, 3106, 3126, 1749, 1692, 1714, 1744, 3128, 1928, 1745, 1186, 1186, 1186, 1186, 1139, 3129, 1188, 2441, 2441, 1751, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1139, 1752, 1188, 1186, 1186, 1186, 1186, 3130, 3133, 3134, 1139, 3135, 1188, 2226, 1139, 3136, 1188, 3137, 1139, 3138, 1188, 1186, 1186, 1186, 1186, 1139, 3139, 1188, 2246, 1753, 1754, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3142, 3143, 3057, 1755, 1139, 3057, 1188, 3144, 1727, 3145, 1757, 1727, 1796, 1756, 1139, 1932, 1188, 3149, 1139, 3140, 1188, 1797, 3140, 1759, 2443, 2443, 1758, 1186, 1186, 1186, 1186, 3141, 1186, 1186, 1186, 1186, 1730, 1186, 1186, 1186, 1186, 3150, 3151, 1186, 1186, 1186, 1186, 3153, 1761, 1139, 1762, 1188, 3055, 1760, 1139, 3055, 1188, 1730, 3154, 1139, 3159, 1188, 1763, 3056, 3160, 1139, 1764, 1188, 1186, 1186, 1186, 1186, 1227, 1227, 1227, 1227, 3161, 3166, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3167, 1765, 3098, 3008, 1139, 1767, 1188, 3173, 1228, 3174, 1766, 1768, 1771, 1769, 1139, 3175, 1188, 1686, 1139, 1746, 1188, 1770, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2032, 1772, 3193, 1186, 1186, 1186, 1186, 3194, 3195, 3198, 1139, 3199, 1188, 3200, 1139, 1951, 1188, 1774, 1139, 3201, 1188, 1186, 1186, 1186, 1186, 1139, 3202, 1188, 1773, 1186, 1186, 1186, 1186, 3203, 2817, 1186, 1186, 1186, 1186, 1229, 1229, 1229, 1229, 1139, 3207, 1188, 1230, 1186, 1186, 1186, 1186, 1139, 2849, 1188, 3210, 1776, 1777, 1139, 1775, 1188, 1780, 1778, 1186, 1186, 1186, 1186, 1937, 3211, 3212, 1139, 1781, 1188, 3215, 3216, 1779, 2446, 2446, 3217, 1186, 1186, 1186, 1186, 3196, 3218, 1139, 3196, 1188, 1782, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3221, 3222, 1785, 1783, 1139, 3221, 1188, 1186, 1186, 1186, 1186, 3223, 3197, 3224, 1139, 3197, 1188, 3238, 1139, 1784, 1188, 1186, 1186, 1186, 1186, 1245, 1245, 1245, 1245, 1139, 2932, 1188, 1786, 3438, 3438, 3438, 3438, 1951, 3140, 3243, 3438, 3140, 1787, 1139, 1951, 1188, 1229, 1229, 1229, 1229, 3141, 2817, 1788, 1230, 1236, 1236, 1236, 1236, 1789, 1795, 1795, 1795, 1795, 1232, 3244, 2817, 1233, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1790, 1228, 3247, 1238, 3248, 3249, 1228, 3250, 1791, 1243, 1243, 1243, 1243, 3251, 1228, 3252, 1238, 3253, 1228, 3221, 1238, 3258, 3259, 1951, 1244, 1245, 1245, 1245, 1245, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1814, 1814, 1814, 1814, 1271, 1271, 1271, 1271, 2817, 3272, 3090, 1260, 3273, 3276, 1897, 1260, 1272, 1897, 3277, 1824, 1824, 1824, 1824, 3218, 3279, 1232, 1246, 1246, 1246, 1246, 1825, 1275, 1276, 1276, 1275, 3280, 3286, 1277, 1276, 1276, 1276, 1276, 1899, 1826, 1832, 1833, 1834, 1832, 3250, 3287, 3288, 1247, 1285, 1285, 1285, 1285, 3290, 1288, 1288, 1288, 1288, 3291, 3297, 1899, 1288, 1288, 1288, 1288, 1838, 1838, 1838, 1838, 3298, 3304, 1289, 1839, 3288, 1037, 1248, 1291, 1249, 1289, 1288, 1288, 1288, 1288, 1291, 1093, 1097, 1103, 1250, 1251, 1108, 1112, 1252, 1253, 1254, 1239, 1255, 1289, 1311, 1311, 1311, 1311, 1291, 1256, 1288, 1288, 1288, 1288, 1293, 1293, 1293, 1293, 1295, 1295, 1295, 1295, 1312, 1287, 1348, 1296, 1836, 1289, 3438, 3438, 3438, 3438, 1291, 1361, 1096, 3438, 1294, 1295, 1295, 1295, 1295, 1096, 1364, 1375, 1296, 1293, 1293, 1293, 1293, 1843, 1843, 1843, 1843, 1298, 1104, 1378, 1299, 1293, 1293, 1293, 1293, 1104, 1319, 1319, 1319, 1319, 1386, 1294, 1393, 1404, 1410, 1294, 1416, 1841, 1341, 1341, 1341, 1341, 1418, 1294, 1320, 1354, 1354, 1354, 1354, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1109, 1863, 1863, 1863, 1863, 1113, 1476, 1109, 1864, 1366, 1478, 1511, 1113, 1366, 1865, 1365, 1365, 1365, 1365, 1553, 1872, 1872, 1872, 1872, 1388, 1388, 1388, 1388, 1396, 1396, 1396, 1396, 1366, 1111, 1298, 1873, 1394, 1394, 1394, 1394, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1894, 1111, 1398, 1894, 1895, 1395, 1897, 1563, 1636, 1897, 1898, 1646, 1111, 1895, 1429, 1429, 1429, 1429, 1398, 3196, 3197, 1430, 3196, 3197, 1898, 1167, 3239, 3241, 1896, 3438, 3438, 3438, 3438, 1177, 1899, 1182, 3438, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1896, 1433, 2068, 1878, 1177, 1433, 1899, 2069, 1234, 1433, 1437, 1437, 1437, 1437, 2323, 2323, 2323, 1438, 1182, 1439, 1177, 1242, 1300, 1439, 3438, 3438, 3438, 3438, 1242, 3438, 2068, 3438, 3438, 3438, 1182, 2069, 3438, 3438, 1437, 1437, 1437, 1437, 2323, 2323, 2323, 1438, 1456, 1439, 1570, 1579, 1097, 1439, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1445, 1445, 1445, 1445, 1660, 1902, 1902, 1902, 1902, 1670, 1261, 1446, 1903, 1449, 1449, 1449, 1449, 1261, 1904, 1363, 1349, 1363, 1447, 1451, 1451, 1451, 1451, 1349, 1363, 1862, 1452, 3438, 3438, 3438, 3438, 1450, 1443, 1971, 3438, 1404, 1443, 1478, 1381, 1389, 1443, 1451, 1451, 1451, 1451, 1381, 1389, 2007, 1452, 1449, 1449, 1449, 1449, 1908, 1908, 1908, 1908, 1454, 1097, 2326, 1455, 1449, 1449, 1449, 1449, 1459, 1459, 1459, 1459, 3438, 3180, 1450, 3438, 2515, 1097, 1450, 3438, 1460, 1909, 1909, 1909, 1909, 2514, 1450, 1461, 1461, 1461, 1461, 1660, 1910, 1468, 1468, 1468, 1468, 2513, 1462, 1471, 1471, 1471, 1471, 1507, 1507, 1507, 1507, 1660, 2512, 2511, 1463, 2510, 2509, 1515, 1515, 1515, 1515, 1472, 1519, 1519, 1519, 1519, 2508, 2507, 1516, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1520, 1454, 1464, 1517, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1549, 1549, 1549, 1549, 2505, 1533, 1411, 1550, 3438, 3438, 3438, 3438, 2504, 1411, 1670, 3438, 1518, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1555, 1670, 1417, 1556, 1555, 1419, 1377, 1556, 1555, 1417, 1377, 1556, 1419, 2503, 2502, 1517, 2501, 1377, 1477, 1552, 1954, 1954, 1954, 1954, 1377, 1477, 2500, 3438, 1554, 1554, 1554, 1554, 1955, 1955, 1955, 1955, 1956, 1956, 1956, 1956, 1555, 1479, 1479, 1556, 1560, 1560, 1560, 1560, 1479, 1514, 1096, 1561, 3438, 3438, 3438, 3438, 1514, 1096, 1862, 3438, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1971, 2499, 2498, 1565, 2497, 2496, 1862, 1565, 1564, 1564, 1564, 1564, 1572, 1572, 1572, 1572, 1971, 1104, 1109, 1565, 1574, 1574, 1574, 1574, 1104, 1109, 1113, 1575, 3438, 3438, 3438, 3438, 2495, 1113, 1573, 3438, 1574, 1574, 1574, 1574, 2494, 1677, 1677, 1575, 1572, 1572, 1572, 1572, 1962, 1962, 1962, 1962, 1577, 2491, 2490, 1578, 1572, 1572, 1572, 1572, 1567, 1615, 2081, 1567, 1615, 2081, 1573, 1568, 2489, 1569, 1573, 2488, 2474, 1569, 1616, 2082, 1404, 1735, 1573, 1617, 1630, 1630, 1630, 1630, 1735, 1599, 1630, 1630, 1630, 1630, 2083, 2473, 1404, 1629, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 2472, 1242, 2471, 1988, 1988, 1988, 1988, 1065, 1242, 2083, 1639, 1639, 1639, 1639, 1065, 1067, 1068, 1640, 1727, 1067, 1068, 1727, 2470, 2246, 1577, 1050, 1067, 1068, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 3438, 3438, 3438, 3438, 1261, 1842, 1987, 3438, 2468, 1049, 1730, 1261, 1842, 1049, 1642, 1642, 1642, 1642, 1056, 2467, 2466, 1057, 1634, 1634, 1634, 1634, 1644, 1644, 1644, 1644, 2465, 1730, 1478, 1065, 2464, 1349, 1050, 1089, 1644, 1644, 1644, 1644, 1349, 2463, 2454, 1067, 1068, 1381, 1478, 1089, 1088, 1088, 1088, 1088, 1381, 1652, 1652, 1652, 1652, 1080, 1731, 1089, 1081, 1731, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1075, 2453, 2452, 1089, 2451, 1075, 1853, 1089, 2003, 2003, 2003, 2003, 2004, 2450, 1075, 2005, 1734, 2226, 1075, 2448, 1056, 1122, 1122, 1122, 1122, 1666, 1666, 1666, 1666, 2447, 2006, 1937, 1667, 3438, 3438, 3438, 3438, 1734, 1123, 2444, 3438, 1932, 1928, 1125, 1122, 1122, 1122, 1122, 2011, 2011, 2011, 2011, 1389, 1405, 1405, 1667, 1405, 1663, 1998, 1389, 1405, 1080, 1997, 1924, 1663, 1920, 1125, 1663, 2435, 1912, 2022, 2022, 2022, 2022, 1411, 1736, 1736, 1736, 1736, 1165, 2432, 1411, 1166, 1891, 2429, 2428, 2004, 2008, 2021, 2022, 2022, 2021, 1139, 2427, 1138, 2426, 2423, 1139, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1719, 1719, 1719, 1719, 1139, 2062, 2062, 2062, 2062, 1171, 1140, 1720, 2063, 1171, 1171, 1417, 1188, 2422, 1171, 1362, 1188, 2421, 1417, 2418, 1141, 1750, 1750, 1750, 1750, 2417, 1142, 2416, 1419, 1143, 1144, 2415, 1145, 1146, 1147, 1419, 2414, 2413, 1148, 1149, 1150, 1151, 1152, 1165, 1153, 1845, 1154, 1155, 1156, 1157, 1158, 1721, 1721, 1721, 1721, 2065, 2065, 2065, 2065, 1721, 1721, 1721, 1721, 1722, 1723, 2408, 2066, 2067, 2067, 2067, 2067, 1722, 1723, 1725, 2068, 1829, 2158, 1751, 2402, 2069, 1363, 1725, 1363, 1726, 1736, 1736, 1736, 1736, 1165, 1363, 2401, 1166, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 2400, 2399, 2398, 1739, 2397, 2396, 1139, 1739, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 2395, 2394, 2393, 1739, 2392, 2391, 2390, 1739, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 2455, 2456, 1907, 1739, 2389, 2457, 2388, 1739, 2458, 1907, 1738, 1738, 1738, 1738, 1186, 1186, 1186, 1186, 2459, 2331, 2460, 1739, 1477, 1186, 1186, 1186, 1186, 2329, 2086, 1477, 1165, 1186, 1186, 1186, 1186, 2073, 1139, 2322, 1188, 2317, 1793, 1793, 1793, 1793, 2092, 1139, 2087, 1188, 1186, 1186, 1186, 1186, 2315, 1139, 2314, 1188, 2089, 1186, 1186, 1186, 1186, 2090, 2088, 2091, 1238, 2313, 2093, 2094, 2312, 2311, 1139, 1514, 1188, 1186, 1186, 1186, 1186, 2310, 1514, 1139, 2309, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2308, 1139, 2307, 1188, 1186, 1186, 1186, 1186, 1405, 1405, 1139, 1405, 1188, 2306, 1139, 1405, 1188, 2303, 1139, 2302, 1188, 1186, 1186, 1186, 1186, 2095, 1139, 1961, 1188, 1186, 1186, 1186, 1186, 2096, 1961, 1186, 1186, 1186, 1186, 1814, 1814, 1814, 1814, 1139, 2301, 1188, 2300, 1990, 2097, 2299, 2098, 1139, 2298, 1188, 1990, 2000, 2100, 1139, 2297, 1188, 2000, 2099, 2000, 1186, 1186, 1186, 1186, 2296, 1479, 1479, 2101, 1186, 1186, 1186, 1186, 1479, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2295, 1139, 2102, 1188, 1186, 1186, 1186, 1186, 2103, 1139, 1735, 1188, 1958, 1958, 1139, 2104, 1188, 1735, 1139, 1958, 1188, 1186, 1186, 1186, 1186, 2294, 1139, 2293, 1188, 1186, 1186, 1186, 1186, 2292, 1663, 2105, 2291, 1186, 1186, 1186, 1186, 1663, 2290, 1139, 1663, 1188, 2289, 1727, 2107, 2106, 1727, 1139, 2108, 1188, 1186, 1186, 1186, 1186, 2288, 1139, 2109, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2287, 1730, 1139, 2286, 1188, 1186, 1186, 1186, 1186, 2110, 1139, 2285, 1188, 2284, 1139, 2283, 1188, 1377, 1139, 1261, 1188, 1377, 1730, 2112, 2282, 2111, 1261, 1139, 1377, 1188, 1186, 1186, 1186, 1186, 1842, 1377, 2113, 1186, 1186, 1186, 1186, 1842, 2114, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1349, 1139, 2079, 1188, 2116, 2079, 1907, 1349, 1139, 2115, 1188, 2281, 2079, 1907, 1139, 2079, 1188, 2278, 1139, 2277, 1188, 1186, 1186, 1186, 1186, 2117, 1186, 1186, 1186, 2124, 1734, 2118, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1734, 2274, 2119, 1139, 2010, 1188, 2010, 2273, 1139, 1677, 1188, 1734, 1961, 2010, 1139, 2270, 1188, 2269, 1139, 1961, 1188, 1734, 2121, 2268, 2120, 2267, 2122, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2150, 2150, 2150, 2150, 2123, 1186, 1186, 1186, 1186, 1123, 1139, 2264, 1188, 2180, 1139, 2180, 1188, 1098, 1139, 1990, 1188, 2126, 2180, 2001, 2125, 2255, 1990, 1139, 2254, 1188, 1186, 1186, 1186, 1186, 2000, 1186, 1186, 1186, 1186, 2000, 1980, 2000, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2251, 2010, 1139, 2010, 1188, 2250, 2249, 1139, 2127, 1188, 2010, 2130, 2129, 2128, 1139, 2248, 1188, 2247, 1139, 2246, 1188, 2245, 1186, 1186, 1186, 1186, 1793, 1793, 1793, 1793, 1795, 1795, 1795, 1795, 1232, 2242, 2075, 1233, 2239, 2075, 2155, 2155, 2155, 2155, 1139, 2131, 1188, 2238, 2079, 2132, 1238, 2079, 1228, 1894, 2081, 1261, 1894, 2081, 1405, 1405, 2137, 1405, 1261, 2133, 2076, 1405, 2134, 2082, 1824, 1824, 1824, 1824, 1987, 1349, 2135, 2237, 1734, 1987, 2138, 1825, 1349, 1896, 2083, 1958, 1958, 2076, 1832, 1833, 1834, 1832, 1958, 2236, 1826, 1834, 1833, 1834, 1834, 1734, 1838, 1838, 1838, 1838, 1896, 2083, 2180, 1839, 2180, 2485, 1232, 3438, 3438, 3438, 3438, 2180, 2485, 2235, 3438, 2165, 2165, 2165, 2165, 1288, 1288, 1288, 1288, 1843, 1843, 1843, 1843, 1298, 1405, 1405, 1299, 1405, 1289, 1261, 2324, 1405, 1289, 1291, 2324, 1959, 1261, 1291, 2234, 2324, 2936, 1294, 1863, 1863, 1863, 1863, 2324, 2936, 2232, 1864, 3438, 3438, 3438, 3438, 2231, 1865, 2230, 3438, 1365, 1365, 1365, 1365, 3268, 3438, 1872, 1872, 1872, 1872, 2324, 3268, 1897, 2167, 2324, 1897, 2229, 1366, 2228, 2324, 3269, 1873, 2184, 2184, 2184, 2184, 2324, 3269, 1902, 1902, 1902, 1902, 2227, 2226, 2225, 1903, 1987, 2224, 2223, 1298, 1899, 1904, 3438, 3438, 3438, 3438, 1937, 1937, 2219, 3438, 2197, 2197, 2197, 2197, 1932, 3438, 2198, 2198, 2198, 2198, 1932, 1899, 1928, 1904, 1908, 1908, 1908, 1908, 1454, 1928, 1924, 1455, 1909, 1909, 1909, 1909, 1924, 1920, 2200, 1554, 1554, 1554, 1554, 1910, 1920, 2206, 1450, 1954, 1954, 1954, 1954, 1555, 2205, 1912, 1556, 1955, 1955, 1955, 1955, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1962, 1962, 1962, 1962, 1577, 1912, 1443, 1578, 1988, 1988, 1988, 1988, 1901, 2084, 1988, 1988, 1988, 1988, 1088, 1088, 1088, 1088, 1573, 2078, 1891, 1065, 1891, 2193, 2192, 1089, 1050, 1067, 1068, 2191, 2190, 1454, 1050, 1067, 1068, 2189, 1075, 2259, 2259, 2259, 2259, 1406, 1882, 2186, 2260, 2262, 2262, 2262, 2262, 1122, 1122, 1122, 1122, 2011, 2011, 2011, 2011, 2185, 1987, 2137, 1667, 2065, 2065, 2065, 2065, 1987, 2183, 2006, 2182, 1362, 2179, 1125, 2066, 2178, 1577, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2244, 2244, 2244, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2243, 2243, 2243, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2243, 2243, 2243, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 2177, 2176, 2175, 1089, 2174, 1854, 2173, 1089, 2003, 2003, 2003, 2003, 2004, 1850, 1075, 2005, 1845, 1845, 1075, 2262, 2262, 2262, 2262, 2004, 2164, 2163, 2263, 1829, 1829, 2158, 2006, 1122, 1122, 1122, 1122, 2276, 2276, 2276, 2276, 2156, 2154, 2006, 2062, 2062, 2062, 2062, 2153, 2152, 1123, 2063, 2151, 1171, 2257, 1125, 2149, 1171, 2148, 1139, 2082, 2147, 2256, 3438, 3438, 3438, 3438, 2146, 1405, 1405, 3438, 1405, 3438, 2145, 2144, 1405, 3438, 2143, 1738, 1738, 1738, 1738, 2142, 2318, 2318, 2318, 2318, 2141, 2004, 1739, 1186, 1186, 1186, 1186, 2140, 2266, 2139, 2136, 1695, 2004, 2275, 2276, 2276, 2275, 2085, 2320, 1138, 2321, 2067, 2067, 2067, 2067, 1139, 2073, 1188, 2068, 1738, 1738, 1738, 1738, 2069, 2071, 1139, 3438, 3438, 3438, 3438, 1739, 1140, 2061, 3438, 2062, 2062, 2062, 2062, 3438, 2059, 2058, 2325, 2057, 1171, 2056, 1141, 2341, 1171, 2055, 2052, 2332, 1142, 2051, 2050, 1143, 1144, 2047, 1145, 1146, 1147, 2046, 2045, 2044, 1148, 1149, 1150, 1151, 1152, 2043, 1153, 2042, 1154, 1155, 1156, 1157, 1158, 2327, 2327, 2327, 2327, 2035, 2333, 1738, 1738, 1738, 1738, 2034, 2033, 1722, 1738, 1738, 1738, 1738, 1739, 1738, 1738, 1738, 1738, 1725, 2030, 1739, 1738, 1738, 1738, 1738, 1739, 1186, 1186, 1186, 1186, 2029, 2028, 1739, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2027, 1186, 1186, 1186, 1186, 1677, 1677, 1139, 2015, 1188, 2150, 2150, 2150, 2150, 1139, 2014, 1188, 2334, 1139, 2013, 1188, 2012, 2338, 1139, 1123, 1188, 1186, 1186, 1186, 1186, 1664, 2340, 2339, 1186, 1186, 1186, 1186, 2001, 1999, 1996, 2335, 1995, 2337, 2336, 1186, 1186, 1186, 1186, 1139, 1987, 1188, 1186, 1186, 1186, 1186, 1139, 1985, 1188, 1186, 1186, 1186, 1186, 2155, 2155, 2155, 2155, 1139, 1981, 1188, 2342, 1980, 1979, 1978, 1139, 1977, 1188, 2352, 2352, 2352, 2352, 1139, 1976, 1188, 1975, 1973, 2344, 1186, 1186, 1186, 1186, 2150, 2150, 2150, 2150, 1972, 2343, 1970, 1969, 1139, 1605, 1188, 2155, 2155, 2155, 2155, 1592, 1592, 1967, 1139, 1592, 1188, 1966, 1965, 1964, 2345, 2346, 1590, 1588, 2347, 2348, 2349, 2349, 2349, 2349, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 1580, 1960, 1959, 2350, 1559, 2351, 2348, 2348, 2348, 2348, 1559, 1952, 1950, 2353, 1949, 1948, 1947, 2354, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1946, 1945, 1943, 2348, 2348, 2348, 1186, 1186, 1186, 1186, 1365, 1365, 1365, 1365, 1139, 1942, 1188, 1941, 1139, 1940, 1188, 1186, 1186, 1186, 1186, 1937, 1935, 1366, 1139, 1932, 1188, 2348, 2348, 2348, 1928, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1139, 1924, 1188, 1186, 1186, 1186, 1186, 1920, 1186, 1186, 1186, 1186, 1918, 2356, 1139, 2355, 1188, 1480, 1139, 1480, 1188, 1186, 1186, 1186, 1186, 1139, 1912, 1188, 1466, 1457, 1139, 2357, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1906, 2358, 1139, 1901, 1188, 1891, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1139, 1889, 1188, 1888, 1139, 2359, 1188, 1186, 1186, 1186, 1186, 1885, 2360, 2361, 1139, 1882, 1188, 2362, 1139, 1880, 1188, 1879, 1374, 1871, 1186, 1186, 1186, 1186, 1870, 1139, 1869, 1188, 1868, 1867, 2363, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2364, 2365, 1362, 1139, 2366, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1139, 2367, 1188, 2368, 1139, 1861, 1188, 1186, 1186, 1186, 1186, 1362, 1860, 1859, 1139, 1858, 1188, 1857, 1139, 1856, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1139, 2370, 1188, 2184, 2184, 2184, 2184, 2369, 1855, 2371, 2259, 2259, 2259, 2259, 1139, 1338, 1188, 2260, 1139, 2372, 1188, 1186, 1186, 1186, 1186, 1338, 1338, 2373, 2197, 2197, 2197, 2197, 2374, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1904, 1334, 1139, 1854, 1188, 1326, 2375, 2377, 1326, 1850, 2792, 2376, 1845, 2792, 1139, 1301, 1188, 2792, 1139, 1289, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2792, 1837, 1186, 1186, 1186, 1186, 1829, 2378, 1823, 1822, 1139, 1821, 1188, 2379, 1139, 1820, 1188, 1819, 1139, 1818, 1188, 1817, 1816, 1815, 1139, 2380, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2403, 2403, 2403, 2403, 2506, 2506, 2506, 2506, 2381, 1808, 1805, 2404, 1804, 1803, 1139, 1802, 1188, 2382, 1139, 2384, 1188, 2383, 1801, 2385, 2165, 2165, 2165, 2165, 2165, 2165, 2165, 2165, 1288, 1288, 1288, 1288, 2198, 2198, 2198, 2198, 1800, 1289, 1235, 1792, 1191, 1289, 1291, 2477, 2478, 1289, 1291, 1746, 2479, 1737, 1291, 2480, 1718, 1711, 2200, 2198, 2198, 2198, 2198, 2386, 1710, 2481, 2387, 2482, 3438, 3438, 3438, 3438, 1707, 1704, 1700, 3438, 2262, 2262, 2262, 2262, 2353, 2200, 2604, 2604, 2604, 2604, 2403, 2403, 2403, 2403, 2614, 2614, 2614, 2614, 1699, 1698, 1694, 2404, 2006, 1691, 1690, 2410, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2244, 2244, 2244, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2243, 2243, 2243, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2243, 2243, 2243, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1191, 1689, 1686, 1089, 1677, 1675, 1674, 1089, 2486, 2486, 2486, 2486, 2004, 1671, 1075, 2263, 1669, 1664, 1075, 2262, 2262, 2262, 2262, 1122, 1122, 1122, 1122, 1662, 1659, 1658, 2006, 2493, 2493, 2493, 2493, 2318, 2318, 2318, 2318, 1657, 1123, 2006, 1653, 1086, 2483, 1125, 2318, 2318, 2318, 2318, 1063, 2484, 1045, 1139, 1625, 1622, 1592, 2320, 1592, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 1592, 2320, 3240, 2321, 1722, 3240, 1592, 1590, 1722, 3240, 1589, 1588, 2487, 1580, 1725, 1571, 1726, 1559, 1725, 2004, 2492, 2493, 2493, 2492, 1548, 3240, 1138, 1738, 1738, 1738, 1738, 1528, 1513, 3438, 3438, 3438, 3438, 1510, 1739, 1509, 1508, 1504, 1139, 1738, 1738, 1738, 1738, 1499, 1140, 1738, 1738, 1738, 1738, 1496, 1739, 1738, 1738, 1738, 1738, 1491, 1739, 1485, 1141, 1481, 1480, 1475, 1739, 1470, 1142, 1466, 1457, 1143, 1144, 1444, 1145, 1146, 1147, 1428, 1427, 1426, 1148, 1149, 1150, 1151, 1152, 1425, 1153, 1422, 1154, 1155, 1156, 1157, 1158, 2615, 1421, 1415, 2539, 1414, 1413, 2540, 1738, 1738, 1738, 1738, 1412, 1383, 1374, 2542, 1372, 1369, 1368, 1739, 1738, 1738, 1738, 1738, 1362, 2541, 1186, 1186, 1186, 1186, 1355, 1739, 1352, 1186, 1186, 1186, 1186, 1351, 1186, 1186, 1186, 1186, 1350, 1186, 1186, 1186, 1186, 1338, 1139, 1338, 1188, 2665, 2665, 2665, 2665, 1139, 1338, 1188, 1338, 2546, 1139, 1334, 1188, 1326, 2543, 1139, 1321, 1188, 1186, 1186, 1186, 1186, 1310, 2544, 2547, 1307, 1301, 2548, 1284, 1281, 2545, 1273, 2551, 2551, 2551, 2551, 1186, 1186, 1186, 1186, 1139, 1270, 1188, 2554, 2554, 2554, 2554, 1186, 1186, 1186, 1186, 1267, 1266, 1265, 1139, 2549, 1188, 1264, 1139, 1263, 1188, 1186, 1186, 1186, 1186, 1139, 1262, 1188, 1235, 1139, 2550, 1188, 1186, 1186, 1186, 1186, 2352, 2352, 2352, 2352, 1226, 1191, 1180, 1139, 1179, 1188, 1178, 2559, 2559, 2559, 2559, 1176, 1131, 1129, 1139, 1121, 1188, 1110, 1139, 1087, 1188, 1086, 1063, 2555, 3438, 2553, 3438, 3438, 2552, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 2556, 1186, 1186, 1186, 1186, 2557, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 2558, 3438, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 2561, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 2563, 2560, 1139, 2562, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2565, 2564, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 2567, 1188, 3438, 1139, 2566, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 2568, 1186, 1186, 1186, 1186, 3438, 1139, 2569, 1188, 3438, 2572, 3438, 1139, 2570, 1188, 2573, 1139, 3438, 1188, 2571, 3438, 3438, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 2574, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3242, 2575, 1139, 3242, 1188, 3438, 1139, 3242, 1188, 2576, 1186, 1186, 1186, 1186, 2577, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3242, 3438, 2578, 3438, 3438, 3438, 2579, 3438, 3438, 1139, 3438, 1188, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3438, 2583, 3438, 2582, 3438, 1186, 1186, 1186, 1186, 3438, 1186, 1186, 1186, 1186, 2589, 2589, 2589, 2589, 3438, 2584, 2591, 2591, 2591, 2591, 3438, 3438, 2586, 1139, 3438, 1188, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 2585, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 2592, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2608, 2608, 2608, 2608, 2587, 2588, 1288, 1288, 1288, 1288, 1139, 2609, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3438, 1289, 1902, 1902, 1902, 1902, 1291, 3438, 3438, 1903, 3438, 2590, 3438, 3438, 3438, 1904, 1088, 1088, 1088, 1088, 3438, 3438, 2594, 2667, 2668, 2668, 2667, 1089, 3438, 2659, 2659, 2659, 2659, 3438, 2595, 3438, 2593, 3438, 1075, 3438, 1089, 2486, 2486, 2486, 2486, 2004, 3438, 2610, 2263, 3438, 2613, 2660, 1122, 1122, 1122, 1122, 2668, 2668, 2668, 2668, 3438, 3438, 3438, 2006, 2678, 2678, 2678, 2678, 3438, 1123, 2658, 3438, 3438, 3438, 1125, 3438, 3438, 3438, 1139, 2680, 2680, 2680, 2680, 2506, 2506, 2506, 2506, 2682, 2682, 2682, 2682, 2705, 2705, 2705, 2705, 2062, 2062, 2062, 2062, 3438, 3438, 3438, 2063, 3438, 1171, 2661, 3438, 3438, 1171, 2318, 2318, 2318, 2318, 3438, 3438, 2662, 3438, 3438, 3438, 2004, 2327, 2327, 2327, 2327, 1738, 1738, 1738, 1738, 3438, 3438, 3438, 2320, 1722, 3438, 3438, 1739, 3438, 2557, 3438, 3438, 2552, 3438, 1725, 3438, 1726, 1738, 1738, 1738, 1738, 3438, 3438, 3438, 2558, 3438, 3438, 3438, 1739, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 3438, 3438, 2590, 1739, 3438, 3438, 3438, 1739, 1738, 1738, 1738, 1738, 3438, 1738, 1738, 1738, 1738, 3438, 3438, 1739, 1738, 1738, 1738, 1738, 1739, 3438, 1186, 1186, 1186, 1186, 3438, 1739, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1186, 1186, 1186, 1186, 2711, 2604, 2604, 2604, 2604, 1139, 2712, 1188, 3438, 3438, 3438, 1139, 3438, 1188, 2717, 3438, 3438, 3438, 1139, 2714, 1188, 3438, 2718, 2713, 2715, 2719, 1186, 1186, 1186, 1186, 3438, 2716, 3438, 1186, 1186, 1186, 1186, 2551, 2551, 2551, 2551, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1139, 3438, 1188, 2554, 2554, 2554, 2554, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 2725, 2725, 2725, 2725, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 2726, 1186, 1186, 1186, 1186, 2559, 2559, 2559, 2559, 2720, 2721, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1142, 1139, 3438, 1188, 3438, 1139, 2723, 1188, 1751, 3438, 3438, 2722, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 2724, 3438, 1157, 2732, 2732, 2732, 2732, 3438, 2733, 3438, 2734, 2734, 2734, 2734, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1139, 3438, 1188, 2727, 3438, 3438, 2730, 1139, 3438, 1188, 2731, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 2738, 2738, 2738, 2738, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2741, 2741, 2741, 2741, 3438, 3438, 1139, 3438, 1188, 2735, 1139, 3438, 1188, 3438, 1139, 2736, 1188, 3438, 1139, 3438, 1188, 3438, 2742, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2745, 2745, 2745, 2745, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 2739, 3438, 2737, 1139, 2740, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1186, 1186, 1186, 1186, 2751, 2751, 2751, 2751, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 2746, 1188, 3438, 3438, 1139, 2744, 1188, 2743, 2752, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 2747, 2759, 2759, 2759, 2759, 3438, 3438, 2753, 2748, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 2760, 2760, 2760, 2760, 1139, 3438, 1188, 2749, 1186, 1186, 1186, 1186, 2750, 3438, 3438, 2754, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 3438, 2757, 3438, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 1139, 3438, 1188, 3438, 3438, 3438, 2758, 2589, 2589, 2589, 2589, 3438, 2591, 2591, 2591, 2591, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1139, 3438, 1188, 3438, 3438, 1139, 2763, 1188, 3438, 2761, 3438, 2762, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 2764, 2608, 2608, 2608, 2608, 2604, 2604, 2604, 2604, 3438, 3438, 3438, 2609, 1139, 3438, 1188, 2765, 1139, 3438, 1188, 3438, 2778, 2778, 2778, 2778, 2780, 2780, 2780, 2780, 3438, 3438, 2766, 2779, 2608, 2608, 2608, 2608, 2781, 2781, 2781, 2781, 2767, 3438, 3438, 2609, 1288, 1288, 1288, 1288, 3438, 3438, 3438, 3438, 2768, 3438, 3438, 3438, 2769, 1088, 1088, 1088, 1088, 1289, 2659, 2659, 2659, 2659, 1291, 3438, 1089, 2774, 3438, 3438, 3438, 1089, 3438, 1122, 1122, 1122, 1122, 1075, 2823, 2823, 2823, 2823, 2660, 2665, 2665, 2665, 2665, 3438, 3438, 3438, 1123, 3438, 3438, 3438, 2784, 1125, 2825, 2825, 2825, 2825, 2826, 2827, 2827, 2826, 2827, 2827, 2827, 2827, 2785, 2678, 2678, 2678, 2678, 2680, 2680, 2680, 2680, 2682, 2682, 2682, 2682, 2841, 2841, 2841, 2841, 2484, 1139, 3438, 3438, 2822, 2843, 2843, 2843, 2843, 3438, 3438, 2661, 2846, 2846, 2846, 2846, 2850, 2850, 2850, 2850, 3438, 2856, 2856, 2856, 2856, 2861, 2861, 2861, 2861, 2862, 2862, 2862, 2862, 3438, 2847, 3438, 1142, 2705, 2705, 2705, 2705, 3438, 2723, 2857, 1751, 1738, 1738, 1738, 1738, 3438, 1738, 1738, 1738, 1738, 3438, 3438, 1739, 2724, 3438, 1157, 3438, 1739, 3438, 2858, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 3438, 3438, 3438, 1739, 3438, 3438, 3438, 1739, 1738, 1738, 1738, 1738, 2873, 2873, 2873, 2873, 3438, 3438, 2859, 1739, 3438, 3438, 3438, 1739, 3438, 1186, 1186, 1186, 1186, 2868, 2869, 3438, 3438, 2761, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1186, 1186, 1186, 1186, 1139, 2870, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3438, 1139, 2871, 1188, 3438, 3438, 2874, 3438, 1139, 2872, 1188, 3438, 2876, 2875, 2879, 2879, 2879, 2879, 2725, 2725, 2725, 2725, 2881, 2881, 2881, 2881, 3438, 2882, 3438, 2726, 3438, 3438, 2882, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 2877, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 2878, 1186, 1186, 1186, 1186, 2732, 2732, 2732, 2732, 1139, 2733, 1188, 3438, 3438, 3438, 1139, 3438, 1188, 2734, 2734, 2734, 2734, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 2892, 2892, 2892, 2892, 3438, 1186, 1186, 1186, 1186, 3438, 1139, 3438, 1188, 2883, 2738, 2738, 2738, 2738, 2898, 2898, 2898, 2898, 1139, 3438, 2893, 3438, 3438, 1139, 2886, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 1686, 2887, 2889, 3438, 2778, 2778, 2778, 2778, 2780, 2780, 2780, 2780, 1139, 3438, 1188, 2779, 3438, 2890, 3438, 2891, 2348, 2349, 2349, 2349, 2349, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2895, 3438, 3438, 2350, 2896, 2351, 2348, 2348, 2348, 2348, 3438, 1186, 1186, 1186, 1186, 2741, 2741, 2741, 2741, 2899, 2899, 2899, 2899, 2900, 2900, 2900, 2900, 3438, 3438, 2348, 2348, 2348, 2894, 1139, 3438, 1188, 3438, 2742, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 2752, 3438, 1188, 2745, 2745, 2745, 2745, 2901, 2901, 2901, 2901, 3438, 2348, 2348, 2348, 1186, 1186, 1186, 1186, 2903, 2903, 2903, 2903, 3438, 3438, 1139, 3438, 1188, 2897, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 1139, 3438, 1188, 3438, 2904, 3438, 1188, 1186, 1186, 1186, 1186, 2751, 2751, 2751, 2751, 3438, 3438, 1139, 3438, 1188, 2910, 2910, 2910, 2910, 2905, 1186, 1186, 1186, 1186, 1139, 3438, 1188, 2902, 2752, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 1686, 2916, 2916, 2916, 2916, 1139, 3438, 1188, 3438, 2906, 3438, 2858, 3438, 2907, 3438, 3438, 1139, 3438, 1188, 3438, 3438, 2909, 3438, 2917, 3438, 1188, 3438, 3438, 2908, 2759, 2759, 2759, 2759, 3438, 2911, 3438, 3438, 3438, 2859, 2760, 2760, 2760, 2760, 1186, 1186, 1186, 1186, 2918, 2918, 2918, 2918, 1139, 3438, 1188, 3438, 3438, 2912, 1186, 1186, 1186, 1186, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1139, 3438, 1188, 2923, 2923, 2923, 2923, 1186, 1186, 1186, 1186, 2781, 2781, 2781, 2781, 1139, 3438, 1188, 3438, 3438, 2735, 2778, 2778, 2778, 2778, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 2779, 3438, 2919, 2780, 2780, 2780, 2780, 2781, 2781, 2781, 2781, 1288, 1288, 1288, 1288, 3438, 3438, 3438, 3438, 1122, 1122, 1122, 1122, 2823, 2823, 2823, 2823, 2922, 1289, 3438, 3438, 2345, 3438, 1291, 3438, 3438, 1123, 2825, 2825, 2825, 2825, 1125, 2958, 2959, 2959, 2958, 2959, 2959, 2959, 2959, 2965, 2965, 2965, 2965, 2969, 2969, 2969, 2969, 2841, 2841, 2841, 2841, 3438, 3438, 3438, 2931, 3438, 3438, 1139, 3438, 3438, 2415, 2843, 2843, 2843, 2843, 2846, 2846, 2846, 2846, 3438, 3438, 3438, 2956, 2898, 2898, 2898, 2898, 2976, 2976, 2976, 2976, 2977, 2977, 2977, 2977, 3438, 3438, 2847, 2850, 2850, 2850, 2850, 2978, 2978, 2978, 2978, 2980, 2980, 2980, 2980, 3438, 3438, 3438, 2857, 2856, 2856, 2856, 2856, 2910, 2910, 2910, 2910, 2989, 2989, 2989, 2989, 3438, 3438, 2981, 2861, 2861, 2861, 2861, 3438, 3438, 3438, 2857, 2862, 2862, 2862, 2862, 3438, 3438, 3438, 2990, 3438, 3438, 3438, 2982, 2991, 2991, 2991, 2991, 3438, 3438, 3438, 2858, 2994, 2994, 2994, 2994, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 3438, 3438, 3438, 1739, 3438, 3438, 2983, 1739, 2997, 2997, 2997, 2997, 3438, 3438, 2859, 1738, 1738, 1738, 1738, 1739, 1738, 1738, 1738, 1738, 3438, 3438, 1739, 2873, 2873, 2873, 2873, 1739, 3438, 1186, 1186, 1186, 1186, 3438, 1739, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 2996, 1186, 1186, 1186, 1186, 1139, 2995, 1188, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3438, 3438, 2998, 3438, 1139, 3438, 1188, 3002, 3002, 3002, 3002, 3438, 3438, 2999, 3438, 3000, 3438, 3438, 2758, 3438, 2879, 2879, 2879, 2879, 3438, 2881, 2881, 2881, 2881, 1139, 2882, 1188, 3438, 3438, 3438, 2882, 1186, 1186, 1186, 1186, 3438, 3001, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3007, 3007, 3007, 3007, 2892, 2892, 2892, 2892, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 2893, 3015, 3015, 3015, 3015, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3017, 3017, 3017, 3017, 2898, 2898, 2898, 2898, 3438, 3438, 1139, 3438, 1188, 3438, 3003, 3438, 3438, 3438, 1139, 3006, 1188, 3438, 3018, 3438, 1188, 2899, 2899, 2899, 2899, 2900, 2900, 2900, 2900, 3438, 3438, 3438, 3014, 2901, 2901, 2901, 2901, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 2752, 3016, 1188, 2903, 2903, 2903, 2903, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3020, 3020, 3020, 3020, 1186, 1186, 1186, 1186, 3438, 3438, 2904, 3438, 1188, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1686, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 2982, 3019, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3024, 3024, 3024, 3024, 1186, 1186, 1186, 1186, 2910, 2910, 2910, 2910, 3438, 3021, 3438, 2983, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3438, 3023, 3438, 3022, 1186, 1186, 1186, 1186, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 2916, 2916, 2916, 2916, 3031, 3031, 3031, 3031, 3438, 3438, 3438, 1139, 3438, 1188, 3025, 3026, 3438, 3438, 1139, 3438, 1188, 3438, 2917, 3438, 1188, 3438, 1686, 2918, 2918, 2918, 2918, 3034, 3034, 3034, 3034, 1186, 1186, 1186, 1186, 3438, 2923, 2923, 2923, 2923, 3041, 3041, 3041, 3041, 3438, 1139, 3438, 1188, 3438, 1139, 3027, 1188, 3438, 1139, 3438, 1188, 3438, 3030, 1139, 3438, 1188, 3042, 3042, 3042, 3042, 3043, 3043, 3043, 3043, 3438, 3438, 1142, 3049, 3049, 3049, 3049, 3438, 3032, 3438, 1751, 1288, 1288, 1288, 1288, 3438, 3438, 3438, 3037, 1122, 1122, 1122, 1122, 2724, 3438, 1157, 3033, 3438, 1289, 3064, 3064, 3064, 3064, 1291, 3438, 3438, 1123, 3065, 3066, 3066, 3065, 1125, 3066, 3066, 3066, 3066, 3069, 3069, 3069, 3069, 2965, 2965, 2965, 2965, 3073, 3073, 3073, 3073, 2969, 2969, 2969, 2969, 3438, 3438, 1139, 3438, 3438, 3045, 3076, 3076, 3076, 3076, 3077, 3077, 3077, 3077, 3079, 3079, 3079, 3079, 2976, 2976, 2976, 2976, 2977, 2977, 2977, 2977, 3438, 3063, 2978, 2978, 2978, 2978, 2980, 2980, 2980, 2980, 3080, 3020, 3020, 3020, 3020, 3438, 3438, 3438, 2857, 3085, 3085, 3085, 3085, 2989, 2989, 2989, 2989, 3438, 2981, 3031, 3031, 3031, 3031, 2991, 2991, 2991, 2991, 3089, 3089, 3089, 3089, 2994, 2994, 2994, 2994, 2990, 3438, 3438, 2982, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 3438, 3438, 3438, 1739, 3438, 3438, 3438, 1739, 2997, 2997, 2997, 2997, 1738, 1738, 1738, 1738, 3438, 3438, 2983, 1739, 3438, 3438, 3438, 1739, 1142, 3094, 3094, 3094, 3094, 3438, 3032, 3438, 1751, 3438, 3438, 3438, 1739, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2724, 3438, 1157, 3033, 3438, 3438, 3438, 3092, 3002, 3002, 3002, 3002, 3438, 3438, 1139, 3438, 1188, 3091, 1139, 3438, 1188, 3438, 3093, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1139, 3438, 1188, 3100, 3100, 3100, 3100, 3438, 3438, 3095, 3007, 3007, 3007, 3007, 3438, 1139, 3438, 1188, 3101, 3101, 3101, 3101, 3096, 3438, 3438, 1139, 3438, 1188, 3020, 3020, 3020, 3020, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3015, 3015, 3015, 3015, 3108, 3108, 3108, 3109, 3438, 3438, 3438, 3097, 3017, 3017, 3017, 3017, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3110, 3110, 3110, 3110, 3438, 3018, 3438, 1188, 3438, 3124, 3124, 3124, 3124, 3031, 3031, 3031, 3031, 3041, 3041, 3041, 3041, 3438, 1686, 3438, 3438, 3438, 3102, 3042, 3042, 3042, 3042, 3107, 3111, 3112, 3112, 3112, 3112, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3438, 3438, 3438, 3113, 3111, 3114, 3111, 3111, 3111, 3111, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3024, 3024, 3024, 3024, 3438, 3438, 3438, 3111, 3111, 3111, 1139, 3125, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3118, 3118, 3118, 3118, 3438, 3438, 3438, 3115, 3438, 3438, 3111, 3111, 3111, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3119, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 3116, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3117, 1188, 3120, 3034, 3034, 3034, 3034, 1139, 3438, 1188, 3438, 3122, 3108, 3108, 3108, 3108, 3043, 3043, 3043, 3043, 3041, 3041, 3041, 3041, 3438, 1139, 3438, 1188, 3438, 3121, 3042, 3042, 3042, 3042, 1139, 3438, 1188, 3043, 3043, 3043, 3043, 3131, 3131, 3131, 3131, 3438, 3438, 3123, 3438, 3127, 3132, 3132, 3132, 3132, 3049, 3049, 3049, 3049, 1122, 1122, 1122, 1122, 3064, 3064, 3064, 3064, 3438, 1289, 3147, 3148, 3148, 3147, 1291, 3438, 3438, 1123, 3148, 3148, 3148, 3148, 1125, 3069, 3069, 3069, 3069, 3152, 3152, 3152, 3152, 3073, 3073, 3073, 3073, 3155, 3155, 3155, 3155, 3438, 1139, 3076, 3076, 3076, 3076, 3077, 3077, 3077, 3077, 3156, 3156, 3156, 3157, 3079, 3079, 3079, 3079, 3110, 3110, 3110, 3110, 3158, 3158, 3158, 3158, 3085, 3085, 3085, 3085, 3146, 3162, 3162, 3162, 3162, 3438, 3080, 3089, 3089, 3089, 3089, 3156, 3156, 3156, 3156, 1738, 1738, 1738, 1738, 3169, 3169, 3169, 3169, 3163, 3438, 3438, 1739, 3438, 3438, 3438, 1739, 3170, 3170, 3170, 3170, 3094, 3094, 3094, 3094, 3438, 3438, 3438, 1739, 3164, 3438, 3438, 1739, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3172, 3172, 3172, 3172, 3100, 3100, 3100, 3100, 3168, 3438, 1139, 3165, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3101, 3101, 3101, 3101, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3110, 3110, 3110, 3110, 3438, 3438, 2744, 3171, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3183, 3183, 3183, 3183, 3185, 3185, 3185, 3185, 3438, 3438, 2353, 1186, 1186, 1186, 1186, 3438, 3438, 3176, 1139, 3438, 1188, 3438, 3184, 3438, 1188, 3177, 1686, 3124, 3124, 3124, 3124, 3102, 3438, 1139, 3181, 1188, 3131, 3131, 3131, 3131, 3178, 3111, 3112, 3112, 3112, 3112, 3111, 3111, 3111, 3179, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3438, 3186, 3438, 3113, 3111, 3114, 3111, 3111, 3111, 3111, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3111, 3111, 3111, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3111, 3111, 3111, 1186, 1186, 1186, 1186, 3118, 3118, 3118, 3118, 3438, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1139, 3438, 1188, 3438, 3119, 3438, 1188, 3438, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3190, 3190, 3190, 3190, 3164, 3132, 3132, 3132, 3132, 3438, 3438, 3188, 1186, 1186, 1186, 1186, 3204, 3204, 3204, 3204, 3438, 3438, 1289, 3205, 3206, 3206, 3205, 1291, 3182, 3187, 3438, 3165, 3438, 1123, 1139, 3438, 1188, 3438, 1125, 3206, 3206, 3206, 3206, 3438, 3189, 3208, 3208, 3208, 3208, 3209, 3209, 3209, 3209, 3152, 3152, 3152, 3152, 3155, 3155, 3155, 3155, 1139, 3156, 3156, 3156, 3156, 3192, 3156, 3156, 3156, 3156, 3158, 3158, 3158, 3158, 3438, 3191, 3213, 3213, 3213, 3213, 3162, 3162, 3162, 3162, 3185, 3185, 3185, 3185, 1738, 1738, 1738, 1738, 3169, 3169, 3169, 3169, 3438, 3438, 3214, 1739, 3438, 3438, 3163, 1739, 3170, 3170, 3170, 3170, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1739, 3172, 3172, 3172, 3172, 3177, 3438, 3164, 1186, 1186, 1186, 1186, 3438, 3438, 3438, 1139, 3438, 1188, 3438, 3438, 3178, 3225, 3225, 3225, 3225, 3438, 1186, 1186, 1186, 1186, 1139, 3438, 1188, 3438, 3165, 1186, 1186, 1186, 1186, 3183, 3183, 3183, 3183, 3219, 3438, 3438, 3227, 3220, 1139, 3438, 1188, 3230, 3230, 3230, 3230, 3438, 3438, 1139, 3438, 1188, 3438, 3184, 3438, 1188, 2102, 3438, 3228, 3185, 3185, 3185, 3185, 3438, 3438, 1686, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 1186, 1186, 1186, 1186, 3234, 3234, 3234, 3234, 3190, 3190, 3190, 3190, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3229, 1139, 3438, 1188, 3438, 3235, 3438, 1188, 1186, 1186, 1186, 1186, 3438, 3438, 3231, 3236, 3236, 3236, 3236, 3204, 3204, 3204, 3204, 3438, 3233, 3245, 3246, 3246, 3245, 3438, 1139, 3438, 1188, 3246, 3246, 3246, 3246, 3438, 3438, 3232, 3438, 1125, 3208, 3208, 3208, 3208, 3209, 3209, 3209, 3209, 3213, 3213, 3213, 3213, 3438, 1139, 3230, 3230, 3230, 3230, 3254, 3254, 3254, 3254, 2102, 1738, 1738, 1738, 1738, 3438, 3438, 3438, 3214, 3438, 3438, 3438, 1739, 1186, 1186, 1186, 1186, 3438, 3255, 3257, 3257, 3257, 3257, 3225, 3225, 3225, 3225, 3237, 3225, 3225, 3225, 3225, 3438, 3438, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3261, 3261, 3261, 3261, 3438, 3438, 3227, 3230, 3230, 3230, 3230, 3227, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3256, 1188, 3438, 3262, 3438, 1188, 3438, 3438, 3037, 3438, 1186, 1186, 1186, 1186, 3438, 1139, 3438, 1188, 1186, 1186, 1186, 1186, 3260, 3234, 3234, 3234, 3234, 3265, 3265, 3265, 3265, 3263, 1139, 3438, 1188, 3236, 3236, 3236, 3236, 3438, 1139, 3438, 1188, 3438, 3438, 3235, 3438, 1188, 3438, 1686, 3266, 3266, 3266, 3266, 3270, 3271, 3271, 3270, 3265, 3265, 3265, 3265, 3189, 3271, 3271, 3271, 3271, 3274, 3274, 3274, 3274, 3254, 3254, 3254, 3254, 1738, 1738, 1738, 1738, 3438, 3264, 3257, 3257, 3257, 3257, 1139, 1739, 3438, 3438, 3275, 3438, 3438, 3438, 3255, 1186, 1186, 1186, 1186, 3261, 3261, 3261, 3261, 3281, 3281, 3281, 3281, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 3438, 3438, 1139, 3438, 1188, 3438, 3262, 3438, 1188, 3438, 1686, 3438, 3267, 3438, 1139, 3438, 1188, 3438, 1139, 3438, 1188, 3438, 3438, 3438, 3229, 3438, 3278, 3265, 3265, 3265, 3265, 3438, 3282, 3266, 3266, 3266, 3266, 3284, 3285, 3285, 3284, 3285, 3285, 3285, 3285, 3274, 3274, 3274, 3274, 3281, 3281, 3281, 3281, 1738, 1738, 1738, 1738, 3281, 3281, 3281, 3281, 3438, 3438, 1139, 1739, 3283, 3438, 3275, 1186, 1186, 1186, 1186, 3293, 3293, 3293, 3293, 3295, 3296, 3296, 3295, 3296, 3296, 3296, 3296, 3299, 3299, 3299, 3299, 3438, 3438, 1139, 3438, 1188, 3438, 3294, 3438, 1188, 3301, 3301, 3301, 3301, 3438, 1139, 3438, 3438, 3438, 3300, 3438, 1739, 3302, 3302, 3302, 3302, 3292, 3438, 3438, 3438, 3289, 1186, 1186, 1186, 1186, 3293, 3293, 3293, 3293, 3305, 3305, 3305, 3305, 3306, 3307, 3307, 3306, 3307, 3307, 3307, 3307, 3438, 3438, 1139, 3438, 1188, 3438, 3294, 3438, 1188, 3438, 1686, 3308, 3308, 3308, 3308, 3438, 3438, 3438, 1139, 3299, 3299, 3299, 3299, 3438, 3283, 3305, 3305, 3305, 3305, 3301, 3301, 3301, 3301, 3302, 3302, 3302, 3302, 3438, 3438, 3438, 1739, 3300, 3309, 3309, 3309, 3309, 3438, 3303, 3305, 3305, 3305, 3305, 3311, 3312, 3312, 3311, 3312, 3312, 3312, 3312, 3308, 3308, 3308, 3308, 3309, 3309, 3309, 3309, 3313, 3314, 3314, 3313, 3314, 3314, 3314, 3314, 3438, 3438, 1139, 3315, 3316, 3316, 3315, 3316, 3316, 3316, 3316, 3317, 3318, 3318, 3317, 3438, 3438, 3438, 1139, 3318, 3318, 3318, 3318, 3319, 3320, 3320, 3319, 3438, 3438, 1139, 3320, 3320, 3320, 3320, 3321, 3322, 3322, 3321, 3438, 3438, 3438, 1139, 3310, 3322, 3322, 3322, 3322, 3323, 3324, 3324, 3323, 3438, 1139, 3324, 3324, 3324, 3324, 3325, 3326, 3326, 3325, 3326, 3326, 3326, 3326, 1139, 3327, 3328, 3328, 3327, 3328, 3328, 3328, 3328, 3438, 1139, 3329, 3330, 3330, 3329, 3438, 3438, 3438, 1139, 3330, 3330, 3330, 3330, 3331, 3332, 3332, 3331, 1139, 3332, 3332, 3332, 3332, 3333, 3334, 3334, 3333, 3334, 3334, 3334, 3334, 3438, 1139, 3335, 3336, 3336, 3335, 3336, 3336, 3336, 3336, 1139, 3337, 3338, 3338, 3337, 3438, 3438, 3438, 1139, 3338, 3338, 3338, 3338, 3339, 3340, 3340, 3339, 3438, 1139, 3340, 3340, 3340, 3340, 3341, 3342, 3342, 3341, 3342, 3342, 3342, 3342, 1139, 3343, 3344, 3344, 3343, 3344, 3344, 3344, 3344, 3438, 1139, 3345, 3346, 3346, 3345, 3438, 3438, 3438, 1139, 3346, 3346, 3346, 3346, 3347, 3348, 3348, 3347, 1139, 3348, 3348, 3348, 3348, 3349, 3350, 3350, 3349, 3350, 3350, 3350, 3350, 3438, 1139, 3351, 3352, 3352, 3351, 3352, 3352, 3352, 3352, 1139, 3353, 3354, 3354, 3353, 3438, 3438, 3438, 1139, 3354, 3354, 3354, 3354, 3355, 3356, 3356, 3355, 3438, 1139, 3356, 3356, 3356, 3356, 3357, 3358, 3358, 3357, 3358, 3358, 3358, 3358, 1139, 3359, 3360, 3360, 3359, 3360, 3360, 3360, 3360, 3438, 1139, 3361, 3362, 3362, 3361, 3438, 3438, 3438, 1139, 3362, 3362, 3362, 3362, 3363, 3364, 3364, 3363, 1139, 3364, 3364, 3364, 3364, 3365, 3366, 3366, 3365, 3366, 3366, 3366, 3366, 3438, 1139, 3367, 3368, 3368, 3367, 3368, 3368, 3368, 3368, 1139, 3369, 3370, 3370, 3369, 3438, 3438, 3438, 1139, 3370, 3370, 3370, 3370, 3371, 3372, 3372, 3371, 3438, 1139, 3372, 3372, 3372, 3372, 3373, 3374, 3374, 3373, 3374, 3374, 3374, 3374, 1139, 3375, 3376, 3376, 3375, 3376, 3376, 3376, 3376, 3438, 1139, 3377, 3378, 3378, 3377, 3438, 3438, 3438, 1139, 3378, 3378, 3378, 3378, 3379, 3380, 3380, 3379, 1139, 3380, 3380, 3380, 3380, 3381, 3382, 3382, 3381, 3382, 3382, 3382, 3382, 3438, 1139, 3383, 3384, 3384, 3383, 3384, 3384, 3384, 3384, 1139, 3385, 3386, 3386, 3385, 3438, 3438, 3438, 1139, 3386, 3386, 3386, 3386, 3387, 3388, 3388, 3387, 3438, 1139, 3388, 3388, 3388, 3388, 3389, 3390, 3390, 3389, 3390, 3390, 3390, 3390, 1139, 3391, 3392, 3392, 3391, 3392, 3392, 3392, 3392, 3438, 1139, 3393, 3394, 3394, 3393, 3438, 3438, 3438, 1139, 3394, 3394, 3394, 3394, 3395, 3396, 3396, 3395, 1139, 3396, 3396, 3396, 3396, 3397, 3398, 3398, 3397, 3398, 3398, 3398, 3398, 3438, 1139, 3399, 3400, 3400, 3399, 3400, 3400, 3400, 3400, 1139, 3401, 3402, 3402, 3401, 3438, 3438, 3438, 1139, 3402, 3402, 3402, 3402, 3403, 3404, 3404, 3403, 3438, 1139, 3404, 3404, 3404, 3404, 3405, 3406, 3406, 3405, 3406, 3406, 3406, 3406, 1139, 3407, 3408, 3408, 3407, 3408, 3408, 3408, 3408, 3438, 1139, 3409, 3410, 3410, 3409, 3438, 3438, 3438, 1139, 3410, 3410, 3410, 3410, 3411, 3412, 3412, 3411, 1139, 3412, 3412, 3412, 3412, 3413, 3414, 3414, 3413, 3414, 3414, 3414, 3414, 3438, 1139, 3415, 3416, 3416, 3415, 3416, 3416, 3416, 3416, 1139, 3417, 3418, 3418, 3417, 3438, 3438, 3438, 1139, 3418, 3418, 3418, 3418, 3419, 3420, 3420, 3419, 3438, 1139, 3420, 3420, 3420, 3420, 3421, 3422, 3422, 3421, 3422, 3422, 3422, 3422, 1139, 3423, 3424, 3424, 3423, 3424, 3424, 3424, 3424, 3438, 1139, 3425, 3426, 3426, 3425, 3438, 3438, 3438, 1139, 3426, 3426, 3426, 3426, 3427, 3428, 3428, 3427, 1139, 3428, 3428, 3428, 3428, 3429, 3430, 3430, 3429, 3430, 3430, 3430, 3430, 3438, 1139, 3431, 3432, 3432, 3431, 3432, 3432, 3432, 3432, 1139, 3433, 3434, 3434, 3433, 3438, 3438, 3438, 1139, 3434, 3434, 3434, 3434, 3435, 3436, 3436, 3435, 3438, 1139, 3436, 3436, 3436, 3436, 3437, 1164, 1164, 3437, 1164, 1164, 1164, 1164, 1139, 3437, 1164, 1164, 3437, 3438, 3438, 3438, 3438, 3438, 1139, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1139, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 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, 478, 478, 478, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 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, 799, 799, 799, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 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, 883, 883, 883, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 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, 478, 478, 478, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 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, 992, 992, 992, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1040, 3438, 3438, 1040, 3438, 3438, 3438, 3438, 3438, 3438, 1040, 3438, 3438, 3438, 3438, 3438, 1040, 3438, 3438, 3438, 3438, 3438, 3438, 1040, 1054, 1054, 1054, 1054, 3438, 3438, 3438, 1054, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1054, 1058, 1058, 1058, 1058, 1058, 3438, 3438, 1058, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1058, 3438, 3438, 3438, 3438, 3438, 1058, 3438, 3438, 3438, 3438, 3438, 1058, 1061, 1061, 1061, 1061, 3438, 3438, 3438, 1061, 3438, 3438, 3438, 3438, 3438, 3438, 1061, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1061, 3438, 3438, 3438, 3438, 3438, 1061, 1066, 1066, 1066, 1066, 3438, 3438, 3438, 3438, 3438, 3438, 1066, 3438, 3438, 3438, 1066, 3438, 1066, 1066, 1066, 1066, 3438, 3438, 3438, 1066, 1072, 1072, 1072, 1072, 3438, 3438, 3438, 1072, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1072, 1079, 1079, 1079, 1079, 3438, 3438, 3438, 1079, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1079, 1082, 1082, 1082, 1082, 1082, 3438, 3438, 1082, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1082, 3438, 3438, 3438, 3438, 3438, 1082, 3438, 3438, 3438, 3438, 3438, 1082, 1090, 1090, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 3438, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1100, 3438, 3438, 3438, 1100, 3438, 1100, 3438, 3438, 1100, 3438, 3438, 3438, 1100, 1117, 1117, 1117, 1117, 3438, 3438, 3438, 1117, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1117, 3438, 3438, 3438, 1117, 1124, 1124, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1124, 3438, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 1124, 1130, 1130, 3438, 1130, 3438, 1130, 1130, 1130, 1130, 1130, 3438, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1161, 1161, 1161, 1161, 3438, 3438, 3438, 1161, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1161, 1167, 1167, 1167, 1167, 1167, 3438, 3438, 1167, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1167, 3438, 3438, 3438, 3438, 3438, 1167, 3438, 3438, 3438, 3438, 3438, 1167, 1172, 1172, 1172, 1172, 3438, 3438, 3438, 1172, 1172, 3438, 3438, 3438, 1172, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1172, 1187, 1187, 1187, 1187, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1187, 1187, 3438, 1187, 3438, 3438, 3438, 1187, 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, 1190, 1190, 1190, 1190, 1190, 1190, 1223, 1223, 3438, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 3438, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1231, 1231, 1231, 1231, 3438, 3438, 3438, 1231, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1231, 1234, 1234, 1234, 1234, 1234, 3438, 3438, 1234, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1234, 3438, 3438, 3438, 3438, 3438, 1234, 3438, 3438, 3438, 3438, 3438, 1234, 1237, 1237, 1237, 1237, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1237, 1237, 3438, 1237, 3438, 3438, 3438, 1237, 1274, 1274, 3438, 3438, 1274, 1274, 3438, 3438, 1274, 1274, 3438, 1274, 1274, 1274, 1274, 1274, 3438, 1274, 1274, 1274, 1274, 1274, 1274, 3438, 1274, 1274, 1274, 1274, 3438, 3438, 1274, 1278, 1278, 3438, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1280, 1280, 3438, 1280, 3438, 1280, 1280, 1280, 1280, 1280, 3438, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1290, 1290, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1290, 3438, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 1290, 1297, 1297, 1297, 1297, 3438, 3438, 3438, 1297, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1297, 1300, 1300, 1300, 1300, 1300, 3438, 3438, 1300, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1300, 3438, 3438, 3438, 3438, 3438, 1300, 3438, 3438, 3438, 3438, 3438, 1300, 1302, 1302, 1302, 1302, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1302, 1302, 3438, 3438, 3438, 3438, 3438, 1302, 1303, 1303, 3438, 1303, 1303, 1303, 3438, 3438, 1303, 1303, 3438, 1303, 1303, 1303, 1303, 1303, 3438, 1303, 1303, 1303, 1303, 1303, 1303, 3438, 1303, 1303, 3438, 1303, 3438, 3438, 1303, 1306, 1306, 3438, 1306, 3438, 1306, 1306, 1306, 1306, 1306, 3438, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1324, 1324, 3438, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1331, 1331, 3438, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 3438, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1342, 1342, 3438, 1342, 1342, 1342, 3438, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 3438, 1342, 3438, 1342, 1342, 1342, 1345, 1345, 3438, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1353, 3438, 3438, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 3438, 1353, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1367, 1367, 1367, 1367, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1367, 3438, 1367, 3438, 3438, 3438, 3438, 3438, 3438, 1367, 1373, 1373, 3438, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1382, 1382, 3438, 1382, 1382, 1382, 3438, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 3438, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1397, 1397, 1397, 1397, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1397, 1397, 3438, 3438, 3438, 3438, 3438, 1397, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 3438, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1420, 1420, 3438, 1420, 3438, 1420, 1420, 1420, 1420, 1420, 3438, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1431, 1431, 1431, 1431, 3438, 3438, 3438, 1431, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1431, 1434, 1434, 1434, 1434, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1434, 3438, 3438, 3438, 1434, 3438, 3438, 3438, 3438, 3438, 3438, 1434, 1440, 1440, 1440, 1440, 3438, 3438, 3438, 1440, 1440, 3438, 3438, 3438, 1440, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1440, 1442, 1442, 1442, 1442, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1442, 3438, 3438, 3438, 3438, 3438, 3438, 1442, 1442, 1453, 1453, 1453, 1453, 3438, 3438, 3438, 1453, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1453, 1456, 1456, 1456, 1456, 1456, 3438, 3438, 1456, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1456, 3438, 3438, 3438, 3438, 3438, 1456, 3438, 3438, 3438, 3438, 3438, 1456, 1458, 1458, 1458, 1458, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1458, 1458, 3438, 3438, 3438, 3438, 3438, 1458, 1465, 1465, 3438, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1467, 3438, 3438, 3438, 3438, 1467, 3438, 3438, 1467, 1467, 3438, 3438, 3438, 1467, 1467, 1467, 3438, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1469, 1469, 3438, 1469, 3438, 1469, 1469, 1469, 1469, 1469, 3438, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1484, 1484, 3438, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1488, 1488, 3438, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1489, 1489, 3438, 1489, 1489, 1489, 3438, 1489, 1489, 1489, 3438, 3438, 3438, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1490, 1490, 3438, 1490, 3438, 1490, 1490, 1490, 1490, 1490, 3438, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1494, 1494, 3438, 1494, 1494, 1494, 3438, 1494, 1494, 1494, 3438, 1494, 1494, 1494, 1494, 1494, 3438, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 3438, 3438, 1494, 1495, 1495, 3438, 1495, 3438, 1495, 1495, 1495, 1495, 1495, 3438, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1497, 1497, 3438, 1497, 1497, 1497, 3438, 1497, 1497, 1497, 3438, 3438, 3438, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1498, 1498, 3438, 1498, 3438, 1498, 1498, 1498, 1498, 1498, 3438, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1502, 1502, 3438, 1502, 1502, 1502, 3438, 1502, 1502, 1502, 3438, 1502, 1502, 1502, 1502, 1502, 3438, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 3438, 3438, 1502, 1503, 1503, 3438, 1503, 3438, 1503, 1503, 1503, 1503, 1503, 3438, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1512, 1512, 3438, 1512, 3438, 1512, 1512, 1512, 1512, 1512, 3438, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1522, 1522, 3438, 1522, 1522, 1522, 3438, 1522, 1522, 1522, 3438, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 3438, 1522, 1522, 1522, 1522, 1525, 1525, 3438, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1526, 1526, 3438, 1526, 1526, 1526, 3438, 1526, 1526, 1526, 3438, 3438, 3438, 1526, 1526, 1526, 3438, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1527, 1527, 3438, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 3438, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 3438, 1527, 1527, 3438, 1527, 1527, 1527, 1527, 1535, 1535, 3438, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 3438, 1535, 1535, 3438, 1535, 1535, 1535, 1535, 1551, 1551, 1551, 1551, 3438, 3438, 3438, 1551, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1551, 1551, 1557, 1557, 1557, 1557, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1557, 3438, 1557, 3438, 3438, 1557, 3438, 3438, 3438, 3438, 3438, 3438, 1557, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1562, 1562, 1562, 1562, 3438, 3438, 3438, 1562, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1562, 1566, 1566, 1566, 1566, 3438, 3438, 3438, 3438, 3438, 3438, 1566, 3438, 3438, 3438, 3438, 3438, 1566, 3438, 3438, 3438, 3438, 3438, 3438, 1566, 1570, 3438, 3438, 1570, 3438, 3438, 3438, 1570, 1570, 3438, 3438, 3438, 1570, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1570, 1576, 1576, 1576, 1576, 3438, 3438, 3438, 1576, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1576, 1579, 1579, 1579, 1579, 1579, 3438, 3438, 1579, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1579, 3438, 3438, 3438, 3438, 3438, 1579, 3438, 3438, 3438, 3438, 3438, 1579, 1581, 1581, 1581, 1581, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1581, 1581, 3438, 3438, 3438, 3438, 3438, 1581, 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, 1591, 1591, 1591, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1621, 1621, 3438, 1621, 1621, 1621, 1621, 1621, 3438, 1621, 1621, 1621, 1621, 3438, 1621, 1621, 3438, 1621, 1621, 1621, 3438, 1621, 1621, 3438, 1621, 1621, 3438, 3438, 1621, 1621, 1621, 1040, 3438, 3438, 1040, 3438, 3438, 3438, 3438, 3438, 3438, 1040, 3438, 3438, 3438, 3438, 3438, 1040, 3438, 3438, 3438, 3438, 3438, 3438, 1040, 1061, 1061, 1061, 1061, 3438, 3438, 3438, 1061, 3438, 3438, 3438, 3438, 3438, 3438, 1061, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1061, 3438, 3438, 3438, 3438, 3438, 1061, 1054, 1054, 1054, 1054, 3438, 3438, 3438, 1054, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1054, 1635, 1635, 1635, 1635, 3438, 3438, 3438, 3438, 3438, 3438, 1635, 3438, 3438, 3438, 3438, 3438, 1635, 3438, 1635, 1635, 3438, 3438, 3438, 1635, 1066, 1066, 1066, 1066, 3438, 3438, 3438, 3438, 3438, 3438, 1066, 3438, 3438, 3438, 1066, 3438, 1066, 1066, 1066, 1066, 3438, 3438, 3438, 1066, 1638, 1638, 1638, 1638, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1638, 3438, 1638, 3438, 3438, 3438, 3438, 3438, 3438, 1638, 1641, 1641, 1641, 1641, 3438, 3438, 3438, 1641, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1641, 1072, 1072, 1072, 1072, 3438, 3438, 3438, 1072, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1072, 1643, 1643, 1643, 1643, 3438, 3438, 3438, 3438, 3438, 3438, 1643, 3438, 3438, 3438, 3438, 3438, 1643, 3438, 1643, 1643, 3438, 3438, 3438, 1643, 1079, 1079, 1079, 1079, 3438, 3438, 3438, 1079, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1079, 1645, 1645, 1645, 1645, 3438, 3438, 3438, 3438, 3438, 3438, 1645, 3438, 3438, 3438, 3438, 3438, 1645, 3438, 3438, 3438, 3438, 3438, 3438, 1645, 1090, 1090, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 3438, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1100, 3438, 3438, 3438, 1100, 3438, 1100, 3438, 3438, 1100, 3438, 3438, 3438, 1100, 1117, 1117, 1117, 1117, 3438, 3438, 3438, 1117, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1117, 3438, 3438, 3438, 1117, 1124, 1124, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1124, 3438, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 1124, 1668, 1668, 1668, 1668, 3438, 3438, 3438, 1668, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1668, 1676, 1676, 3438, 1676, 3438, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 3438, 1676, 1676, 1676, 1676, 1678, 1678, 3438, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 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, 1190, 1190, 1190, 1190, 1190, 1190, 1161, 1161, 1161, 1161, 3438, 3438, 3438, 1161, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1161, 1716, 1716, 1716, 1716, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1716, 3438, 3438, 1716, 3438, 3438, 3438, 1716, 1187, 1187, 1187, 1187, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1187, 1187, 3438, 1187, 3438, 3438, 3438, 1187, 1172, 1172, 1172, 1172, 3438, 3438, 3438, 1172, 1172, 3438, 3438, 3438, 1172, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1172, 1724, 1724, 1724, 1724, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1724, 1724, 3438, 3438, 3438, 1724, 1724, 3438, 1724, 3438, 3438, 3438, 1724, 1740, 1740, 1740, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 1223, 1223, 3438, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 3438, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1231, 1231, 1231, 1231, 3438, 3438, 3438, 1231, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1231, 1794, 1794, 1794, 1794, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1794, 3438, 3438, 1794, 3438, 3438, 3438, 1794, 1237, 1237, 1237, 1237, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1237, 1237, 3438, 1237, 3438, 3438, 3438, 1237, 1274, 1274, 3438, 3438, 1274, 1274, 3438, 3438, 1274, 1274, 3438, 1274, 1274, 1274, 1274, 1274, 3438, 1274, 1274, 1274, 1274, 1274, 1274, 3438, 1274, 1274, 1274, 1274, 3438, 3438, 1274, 1278, 1278, 3438, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1828, 1828, 3438, 1828, 3438, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 3438, 1828, 1828, 1828, 1828, 1830, 1830, 3438, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1835, 1835, 3438, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1290, 1290, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1290, 3438, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 1290, 1840, 1840, 1840, 1840, 3438, 3438, 3438, 1840, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1840, 1297, 1297, 1297, 1297, 3438, 3438, 3438, 1297, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1297, 1302, 1302, 1302, 1302, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1302, 1302, 3438, 3438, 3438, 3438, 3438, 1302, 1303, 1303, 3438, 1303, 1303, 1303, 3438, 3438, 1303, 1303, 3438, 1303, 1303, 1303, 1303, 1303, 3438, 1303, 1303, 1303, 1303, 1303, 1303, 3438, 1303, 1303, 3438, 1303, 3438, 3438, 1303, 1844, 1844, 3438, 1844, 3438, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 3438, 1844, 1844, 1844, 1844, 1846, 1846, 3438, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1331, 1331, 3438, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 3438, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1342, 1342, 3438, 1342, 1342, 1342, 3438, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 3438, 1342, 3438, 1342, 1342, 1342, 1345, 1345, 3438, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1353, 3438, 3438, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 3438, 1353, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1367, 1367, 1367, 1367, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1367, 3438, 1367, 3438, 3438, 3438, 3438, 3438, 3438, 1367, 1866, 1866, 1866, 1866, 3438, 3438, 3438, 1866, 3438, 3438, 3438, 3438, 1866, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1866, 1373, 1373, 3438, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1382, 1382, 3438, 1382, 1382, 1382, 3438, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 3438, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1397, 1397, 1397, 1397, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1397, 1397, 3438, 3438, 3438, 3438, 3438, 1397, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 3438, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1881, 3438, 3438, 3438, 1881, 1881, 3438, 3438, 1881, 3438, 3438, 3438, 3438, 1881, 3438, 1881, 1890, 1890, 3438, 1890, 3438, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 3438, 1890, 1890, 1890, 1890, 1892, 1892, 3438, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1431, 1431, 1431, 1431, 3438, 3438, 3438, 1431, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1431, 1434, 1434, 1434, 1434, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1434, 3438, 3438, 3438, 1434, 3438, 3438, 3438, 3438, 3438, 3438, 1434, 1440, 1440, 1440, 1440, 3438, 3438, 3438, 1440, 1440, 3438, 3438, 3438, 1440, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1440, 1442, 1442, 1442, 1442, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1442, 3438, 3438, 3438, 3438, 3438, 3438, 1442, 1442, 1900, 1900, 3438, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1905, 1905, 1905, 1905, 3438, 3438, 3438, 1905, 3438, 3438, 3438, 3438, 1905, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1905, 1453, 1453, 1453, 1453, 3438, 3438, 3438, 1453, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1453, 1458, 1458, 1458, 1458, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1458, 1458, 3438, 3438, 3438, 3438, 3438, 1458, 1465, 1465, 3438, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1467, 3438, 3438, 3438, 3438, 1467, 3438, 3438, 1467, 1467, 3438, 3438, 3438, 1467, 1467, 1467, 3438, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1911, 1911, 3438, 1911, 3438, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 3438, 1911, 1911, 1911, 1911, 1913, 1913, 3438, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1489, 1489, 3438, 1489, 1489, 1489, 3438, 1489, 1489, 1489, 3438, 3438, 3438, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1919, 1919, 3438, 1919, 3438, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 3438, 1919, 1919, 1919, 1919, 1921, 1921, 3438, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1494, 1494, 3438, 1494, 1494, 1494, 3438, 1494, 1494, 1494, 3438, 1494, 1494, 1494, 1494, 1494, 3438, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 3438, 3438, 1494, 1923, 1923, 3438, 1923, 3438, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 3438, 1923, 1923, 1923, 1923, 1925, 1925, 3438, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1497, 1497, 3438, 1497, 1497, 1497, 3438, 1497, 1497, 1497, 3438, 3438, 3438, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1927, 1927, 3438, 1927, 3438, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 3438, 1927, 1927, 1927, 1927, 1929, 1929, 3438, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1502, 1502, 3438, 1502, 1502, 1502, 3438, 1502, 1502, 1502, 3438, 1502, 1502, 1502, 1502, 1502, 3438, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 3438, 3438, 1502, 1931, 1931, 3438, 1931, 3438, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 3438, 1931, 1931, 1931, 1931, 1933, 1933, 3438, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1936, 1936, 3438, 1936, 3438, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 3438, 1936, 1936, 1936, 1936, 1938, 1938, 3438, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1522, 1522, 3438, 1522, 1522, 1522, 3438, 1522, 1522, 1522, 3438, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 3438, 1522, 1522, 1522, 1522, 1526, 1526, 3438, 1526, 1526, 1526, 3438, 1526, 1526, 1526, 3438, 3438, 3438, 1526, 1526, 1526, 3438, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1527, 1527, 3438, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 3438, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 3438, 1527, 1527, 3438, 1527, 1527, 1527, 1527, 1535, 1535, 3438, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 3438, 1535, 1535, 3438, 1535, 1535, 1535, 1535, 1551, 1551, 1551, 1551, 3438, 3438, 3438, 1551, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1551, 1551, 1953, 1953, 1953, 1953, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1953, 3438, 1953, 3438, 3438, 1953, 3438, 3438, 3438, 3438, 3438, 3438, 1953, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1557, 1557, 1557, 1557, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1557, 3438, 1557, 3438, 3438, 1557, 3438, 3438, 3438, 3438, 3438, 3438, 1557, 1562, 1562, 1562, 1562, 3438, 3438, 3438, 1562, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1562, 1957, 1957, 1957, 1957, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1957, 3438, 3438, 3438, 3438, 3438, 3438, 1957, 1566, 1566, 1566, 1566, 3438, 3438, 3438, 3438, 3438, 3438, 1566, 3438, 3438, 3438, 3438, 3438, 1566, 3438, 3438, 3438, 3438, 3438, 3438, 1566, 1576, 1576, 1576, 1576, 3438, 3438, 3438, 1576, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1576, 1581, 1581, 1581, 1581, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1581, 1581, 3438, 3438, 3438, 3438, 3438, 1581, 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, 1591, 1591, 1591, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 3438, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1621, 1621, 3438, 1621, 1621, 1621, 1621, 1621, 3438, 1621, 1621, 1621, 1621, 3438, 1621, 1621, 3438, 1621, 1621, 1621, 3438, 1621, 1621, 3438, 1621, 1621, 3438, 3438, 1621, 1621, 1621, 1635, 1635, 1635, 1635, 3438, 3438, 3438, 3438, 3438, 3438, 1635, 3438, 3438, 3438, 3438, 3438, 1635, 3438, 1635, 1635, 3438, 3438, 3438, 1635, 1989, 1989, 1989, 1989, 3438, 3438, 3438, 3438, 3438, 3438, 1989, 3438, 3438, 3438, 3438, 3438, 1989, 1989, 1989, 1989, 3438, 3438, 3438, 1989, 1638, 1638, 1638, 1638, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1638, 3438, 1638, 3438, 3438, 3438, 3438, 3438, 3438, 1638, 1641, 1641, 1641, 1641, 3438, 3438, 3438, 1641, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1641, 1636, 1636, 1636, 1636, 1636, 3438, 3438, 1636, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1636, 3438, 3438, 3438, 3438, 3438, 1636, 3438, 3438, 3438, 3438, 3438, 1636, 1643, 1643, 1643, 1643, 3438, 3438, 3438, 3438, 3438, 3438, 1643, 3438, 3438, 3438, 3438, 3438, 1643, 3438, 1643, 1643, 3438, 3438, 3438, 1643, 1645, 1645, 1645, 1645, 3438, 3438, 3438, 3438, 3438, 3438, 1645, 3438, 3438, 3438, 3438, 3438, 1645, 3438, 3438, 3438, 3438, 3438, 3438, 1645, 1991, 1991, 1991, 1991, 3438, 3438, 3438, 3438, 3438, 3438, 1991, 3438, 3438, 3438, 3438, 3438, 1991, 1991, 3438, 3438, 3438, 3438, 3438, 1991, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 3438, 1992, 1992, 3438, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 3438, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1646, 1646, 1646, 1646, 1646, 3438, 3438, 1646, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1646, 3438, 3438, 3438, 3438, 3438, 1646, 3438, 3438, 3438, 3438, 3438, 1646, 1090, 1090, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 3438, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1100, 3438, 3438, 3438, 1100, 3438, 1100, 3438, 3438, 1100, 3438, 3438, 3438, 1100, 2007, 2007, 2007, 2007, 2007, 3438, 3438, 2007, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2007, 3438, 3438, 3438, 3438, 3438, 2007, 3438, 3438, 3438, 3438, 3438, 2007, 1124, 1124, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1124, 3438, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 1124, 1668, 1668, 1668, 1668, 3438, 3438, 3438, 1668, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1668, 2009, 2009, 2009, 2009, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2009, 2009, 3438, 3438, 3438, 3438, 3438, 2009, 2016, 2016, 3438, 2016, 3438, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 3438, 2016, 2016, 2016, 2016, 1167, 1167, 1167, 1167, 1167, 3438, 3438, 1167, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1167, 3438, 3438, 3438, 3438, 3438, 1167, 3438, 3438, 3438, 3438, 3438, 1167, 1716, 1716, 1716, 1716, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1716, 3438, 3438, 1716, 3438, 3438, 3438, 1716, 2064, 2064, 2064, 2064, 3438, 3438, 3438, 2064, 2064, 3438, 3438, 3438, 2064, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2064, 2070, 2070, 2070, 2070, 3438, 3438, 3438, 2070, 3438, 3438, 3438, 2070, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2070, 1724, 1724, 1724, 1724, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1724, 1724, 3438, 3438, 3438, 1724, 1724, 3438, 1724, 3438, 3438, 3438, 1724, 2072, 3438, 3438, 2072, 3438, 3438, 3438, 3438, 2072, 3438, 3438, 3438, 2072, 2072, 3438, 3438, 2072, 3438, 3438, 3438, 3438, 2072, 3438, 2072, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 3438, 2074, 2074, 3438, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 3438, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 1740, 1740, 1740, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 1187, 1187, 1187, 1187, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1187, 1187, 3438, 1187, 3438, 3438, 3438, 1187, 1794, 1794, 1794, 1794, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1794, 3438, 3438, 1794, 3438, 3438, 3438, 1794, 1234, 1234, 1234, 1234, 1234, 3438, 3438, 1234, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1234, 3438, 3438, 3438, 3438, 3438, 1234, 3438, 3438, 3438, 3438, 3438, 1234, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 1278, 1278, 3438, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 2160, 2160, 3438, 2160, 3438, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 3438, 2160, 2160, 2160, 2160, 1835, 1835, 3438, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1840, 1840, 1840, 1840, 3438, 3438, 3438, 1840, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1840, 2166, 2166, 2166, 2166, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2166, 3438, 2166, 2166, 3438, 3438, 3438, 3438, 3438, 2166, 1290, 1290, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1290, 3438, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 1290, 1300, 1300, 1300, 1300, 1300, 3438, 3438, 1300, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1300, 3438, 3438, 3438, 3438, 3438, 1300, 3438, 3438, 3438, 3438, 3438, 1300, 2168, 2168, 3438, 2168, 3438, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 3438, 2168, 2168, 2168, 2168, 1353, 3438, 3438, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 3438, 1353, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1866, 1866, 1866, 1866, 3438, 3438, 3438, 1866, 3438, 3438, 3438, 3438, 1866, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1866, 2181, 2181, 2181, 2181, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2181, 3438, 2181, 3438, 3438, 3438, 3438, 3438, 3438, 2181, 1881, 3438, 3438, 3438, 1881, 1881, 3438, 3438, 1881, 3438, 3438, 3438, 3438, 1881, 3438, 1881, 2194, 2194, 3438, 2194, 3438, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 3438, 2194, 2194, 2194, 2194, 1900, 1900, 3438, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1905, 1905, 1905, 1905, 3438, 3438, 3438, 1905, 3438, 3438, 3438, 3438, 1905, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1905, 2199, 2199, 2199, 2199, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2199, 2199, 3438, 3438, 3438, 3438, 3438, 2199, 1456, 1456, 1456, 1456, 1456, 3438, 3438, 1456, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1456, 3438, 3438, 3438, 3438, 3438, 1456, 3438, 3438, 3438, 3438, 3438, 1456, 2201, 2201, 3438, 2201, 3438, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 2201, 3438, 2201, 2201, 2201, 2201, 2207, 2207, 3438, 2207, 3438, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 3438, 2207, 2207, 2207, 2207, 2210, 2210, 3438, 2210, 3438, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 3438, 2210, 2210, 2210, 2210, 2213, 2213, 3438, 2213, 3438, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 3438, 2213, 2213, 2213, 2213, 2216, 2216, 3438, 2216, 3438, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 3438, 2216, 2216, 2216, 2216, 2220, 2220, 3438, 2220, 3438, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 3438, 2220, 2220, 2220, 2220, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 3438, 2233, 2233, 2233, 2233, 2233, 2233, 3438, 2233, 2233, 2233, 2233, 2233, 2233, 1953, 1953, 1953, 1953, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1953, 3438, 1953, 3438, 3438, 1953, 3438, 3438, 3438, 3438, 3438, 3438, 1953, 1957, 1957, 1957, 1957, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1957, 3438, 3438, 3438, 3438, 3438, 3438, 1957, 1579, 1579, 1579, 1579, 1579, 3438, 3438, 1579, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1579, 3438, 3438, 3438, 3438, 3438, 1579, 3438, 3438, 3438, 3438, 3438, 1579, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 3438, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1989, 1989, 1989, 1989, 3438, 3438, 3438, 3438, 3438, 3438, 1989, 3438, 3438, 3438, 3438, 3438, 1989, 1989, 1989, 1989, 3438, 3438, 3438, 1989, 1991, 1991, 1991, 1991, 3438, 3438, 3438, 3438, 3438, 3438, 1991, 3438, 3438, 3438, 3438, 3438, 1991, 1991, 3438, 3438, 3438, 3438, 3438, 1991, 1090, 1090, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 3438, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1100, 3438, 3438, 3438, 1100, 3438, 1100, 3438, 3438, 1100, 3438, 3438, 3438, 1100, 2007, 2007, 2007, 2007, 2007, 3438, 3438, 2007, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2007, 3438, 3438, 3438, 3438, 3438, 2007, 3438, 3438, 3438, 3438, 3438, 2007, 2261, 2261, 2261, 2261, 3438, 3438, 3438, 2261, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2261, 2265, 2265, 2265, 2265, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2265, 2265, 3438, 3438, 3438, 3438, 3438, 2265, 1124, 1124, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1124, 3438, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 1124, 2009, 2009, 2009, 2009, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2009, 2009, 3438, 3438, 3438, 3438, 3438, 2009, 1668, 1668, 1668, 1668, 3438, 3438, 3438, 1668, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1668, 2271, 2271, 3438, 2271, 3438, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 3438, 2271, 2271, 2271, 2271, 2064, 2064, 2064, 2064, 3438, 3438, 3438, 2064, 2064, 3438, 3438, 3438, 2064, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2064, 2319, 2319, 2319, 2319, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2319, 2319, 3438, 2319, 3438, 3438, 3438, 2319, 2070, 2070, 2070, 2070, 3438, 3438, 3438, 2070, 3438, 3438, 3438, 2070, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2070, 2326, 2326, 2326, 2326, 3438, 3438, 3438, 2326, 2326, 3438, 3438, 3438, 2326, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2326, 2072, 3438, 3438, 2072, 3438, 3438, 3438, 3438, 2072, 3438, 3438, 3438, 2072, 2072, 3438, 3438, 2072, 3438, 3438, 3438, 3438, 2072, 3438, 2072, 2328, 2328, 3438, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2330, 2330, 3438, 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, 2330, 2330, 2330, 1740, 1740, 1740, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 1187, 1187, 1187, 1187, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1187, 1187, 3438, 1187, 3438, 3438, 3438, 1187, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 1278, 1278, 3438, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 2406, 2406, 3438, 2406, 3438, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 3438, 2406, 2406, 2406, 2406, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 3438, 2409, 2409, 2409, 2409, 2409, 2409, 3438, 2409, 2409, 2409, 2409, 2409, 2409, 2166, 2166, 2166, 2166, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2166, 3438, 2166, 2166, 3438, 3438, 3438, 3438, 3438, 2166, 1290, 1290, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1290, 3438, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 1290, 2411, 2411, 3438, 2411, 3438, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 2411, 3438, 2411, 2411, 2411, 2411, 1353, 3438, 3438, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 3438, 1353, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 2181, 2181, 2181, 2181, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2181, 3438, 2181, 3438, 3438, 3438, 3438, 3438, 3438, 2181, 2430, 2430, 3438, 2430, 3438, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 3438, 2430, 2430, 2430, 2430, 2199, 2199, 2199, 2199, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2199, 2199, 3438, 3438, 3438, 3438, 3438, 2199, 2433, 2433, 3438, 2433, 3438, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 3438, 2433, 2433, 2433, 2433, 2436, 2436, 3438, 2436, 3438, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 3438, 2436, 2436, 2436, 2436, 2438, 2438, 3438, 2438, 3438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 3438, 2438, 2438, 2438, 2438, 2440, 2440, 3438, 2440, 3438, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 3438, 2440, 2440, 2440, 2440, 2442, 2442, 3438, 2442, 3438, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 3438, 2442, 2442, 2442, 2442, 2445, 2445, 3438, 2445, 3438, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 3438, 2445, 2445, 2445, 2445, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 3438, 2449, 2449, 2449, 2449, 2449, 2449, 3438, 2449, 2449, 2449, 2449, 2449, 2449, 1570, 3438, 3438, 1570, 3438, 3438, 3438, 1570, 1570, 3438, 3438, 3438, 1570, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1570, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 3438, 2469, 2469, 2469, 2469, 2469, 2469, 3438, 2469, 2469, 2469, 2469, 2469, 2469, 1090, 1090, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 3438, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1100, 3438, 3438, 3438, 1100, 3438, 1100, 3438, 3438, 1100, 3438, 3438, 3438, 1100, 2261, 2261, 2261, 2261, 3438, 3438, 3438, 2261, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2261, 2265, 2265, 2265, 2265, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2265, 2265, 3438, 3438, 3438, 3438, 3438, 2265, 1124, 1124, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1124, 3438, 1124, 1124, 3438, 3438, 3438, 3438, 3438, 1124, 2319, 2319, 2319, 2319, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2319, 2319, 3438, 2319, 3438, 3438, 3438, 2319, 2535, 3438, 3438, 2535, 3438, 3438, 3438, 3438, 2535, 3438, 3438, 3438, 2535, 2535, 3438, 3438, 2535, 3438, 3438, 3438, 3438, 2535, 3438, 2535, 2537, 2537, 2537, 2537, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2537, 3438, 3438, 3438, 3438, 2537, 2537, 3438, 2537, 3438, 3438, 3438, 2537, 2328, 2328, 3438, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2330, 2330, 3438, 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, 2330, 2330, 2330, 1740, 1740, 1740, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 1740, 3438, 3438, 3438, 3438, 3438, 3438, 1740, 1187, 1187, 1187, 1187, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1187, 1187, 3438, 1187, 3438, 3438, 3438, 1187, 1278, 1278, 3438, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1290, 1290, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1290, 3438, 1290, 1290, 3438, 3438, 3438, 3438, 3438, 1290, 1349, 1349, 1349, 1349, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1349, 3438, 3438, 3438, 3438, 3438, 3438, 1349, 1353, 3438, 3438, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 3438, 1353, 3438, 3438, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1905, 1905, 1905, 1905, 3438, 3438, 3438, 1905, 3438, 3438, 3438, 3438, 1905, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 1905, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1597, 1597, 3438, 1597, 1597, 3438, 1597, 1597, 1597, 1597, 1090, 1090, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 3438, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 1090, 3438, 3438, 3438, 3438, 3438, 1090, 2064, 2064, 2064, 2064, 3438, 3438, 3438, 2064, 2064, 3438, 3438, 3438, 2064, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 2064, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 3438, 2951, 2951, 2951, 2951, 2951, 2951, 3438, 2951, 2951, 2951, 2951, 2951, 2951, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3438, 3111, 3111, 3111, 3111, 3111, 3111, 3438, 3111, 3111, 3111, 3111, 3111, 3111, 3226, 3226, 3226, 3226, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3226, 3438, 3438, 3438, 3226, 3438, 3438, 3226, 239, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438 } ; static yyconst short int yy_chk[24758] = { 0, 0, 0, 1, 0, 2, 0, 1, 1, 2, 2, 365, 1, 0, 2, 365, 245, 255, 255, 0, 1, 245, 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, 5, 5, 5, 5, 254, 5, 5, 525, 525, 254, 5, 6, 6, 6, 6, 17, 6, 6, 5, 17, 17, 6, 18, 1877, 17, 247, 18, 18, 247, 6, 265, 18, 17, 265, 1877, 467, 247, 29, 17, 18, 17, 29, 29, 276, 467, 18, 29, 18, 276, 5, 307, 29, 2299, 307, 29, 274, 274, 274, 274, 29, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 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, 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, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 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, 25, 25, 25, 25, 289, 25, 25, 497, 1413, 289, 25, 26, 26, 26, 26, 303, 26, 26, 25, 313, 303, 26, 27, 1413, 313, 324, 27, 27, 293, 26, 324, 27, 27, 28, 293, 342, 27, 28, 28, 27, 342, 293, 28, 28, 27, 2300, 335, 28, 30, 335, 28, 343, 30, 30, 343, 28, 356, 30, 497, 33, 2301, 356, 30, 33, 33, 30, 25, 634, 33, 34, 30, 634, 25, 34, 34, 370, 33, 26, 34, 405, 370, 2302, 33, 26, 405, 698, 34, 698, 39, 39, 39, 39, 34, 39, 39, 544, 544, 27, 39, 418, 259, 259, 259, 259, 418, 2303, 39, 259, 28, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 40, 40, 40, 40, 423, 40, 40, 41, 438, 423, 40, 41, 41, 438, 445, 451, 41, 41, 40, 445, 451, 41, 42, 2304, 41, 458, 42, 42, 41, 41, 458, 42, 42, 475, 490, 482, 42, 490, 475, 42, 482, 549, 549, 42, 42, 43, 43, 43, 43, 492, 43, 43, 938, 938, 492, 43, 43, 43, 362, 513, 43, 362, 513, 43, 515, 44, 44, 44, 44, 515, 44, 44, 2305, 524, 533, 44, 44, 44, 524, 533, 44, 45, 41, 44, 46, 45, 45, 1043, 46, 46, 45, 45, 45, 46, 46, 46, 1043, 42, 45, 47, 2306, 46, 48, 47, 47, 51, 48, 48, 47, 51, 51, 48, 539, 362, 51, 51, 47, 539, 548, 48, 294, 47, 51, 548, 48, 52, 294, 51, 51, 52, 52, 1044, 79, 294, 52, 52, 79, 79, 923, 556, 521, 79, 52, 521, 556, 1044, 80, 52, 52, 79, 80, 80, 83, 573, 923, 80, 83, 83, 573, 551, 2307, 83, 551, 80, 266, 266, 266, 266, 294, 83, 510, 266, 551, 510, 47, 2307, 510, 48, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 377, 2308, 54, 53, 53, 584, 54, 54, 53, 1095, 584, 54, 55, 55, 55, 55, 53, 55, 55, 54, 592, 671, 55, 1095, 671, 592, 56, 56, 56, 56, 55, 56, 56, 71, 603, 1140, 56, 71, 71, 603, 55, 1140, 71, 1084, 56, 71, 53, 377, 53, 54, 71, 54, 1084, 377, 56, 57, 57, 57, 57, 377, 57, 57, 1032, 1032, 1474, 57, 58, 58, 58, 58, 69, 58, 58, 57, 69, 69, 58, 609, 1474, 69, 619, 71, 609, 57, 58, 619, 2309, 69, 55, 55, 59, 59, 59, 59, 58, 59, 59, 1131, 1131, 620, 59, 620, 56, 56, 249, 249, 249, 249, 59, 60, 60, 60, 60, 1604, 60, 60, 72, 620, 59, 60, 72, 72, 249, 520, 562, 72, 520, 60, 72, 520, 1168, 57, 57, 72, 1168, 73, 562, 60, 1604, 73, 73, 562, 58, 58, 73, 692, 69, 73, 692, 631, 81, 81, 73, 81, 631, 81, 81, 643, 695, 1632, 81, 695, 643, 81, 72, 84, 59, 59, 81, 84, 84, 645, 1051, 1632, 84, 1051, 645, 270, 270, 270, 270, 2310, 84, 73, 270, 60, 60, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 65, 65, 650, 65, 659, 65, 65, 650, 668, 659, 65, 66, 66, 668, 66, 70, 66, 66, 65, 70, 70, 66, 681, 852, 70, 2312, 852, 681, 65, 66, 67, 67, 70, 67, 852, 67, 67, 1983, 693, 66, 67, 68, 68, 693, 68, 722, 68, 68, 67, 65, 722, 68, 741, 250, 250, 250, 250, 741, 67, 68, 66, 74, 1983, 77, 77, 74, 74, 77, 77, 68, 74, 250, 77, 74, 1281, 1281, 65, 65, 74, 67, 77, 751, 327, 327, 327, 327, 751, 66, 66, 327, 68, 70, 699, 75, 699, 2313, 97, 75, 75, 76, 97, 97, 75, 76, 76, 97, 67, 67, 76, 74, 75, 77, 1984, 97, 762, 75, 76, 68, 68, 762, 75, 76, 1094, 78, 78, 771, 76, 78, 78, 1968, 771, 1094, 78, 82, 82, 699, 82, 1984, 82, 82, 78, 2314, 327, 82, 85, 700, 82, 700, 85, 85, 86, 82, 1968, 85, 86, 86, 2315, 734, 327, 86, 734, 85, 734, 330, 330, 330, 330, 86, 75, 2317, 330, 78, 87, 783, 76, 88, 87, 87, 783, 88, 88, 87, 87, 87, 88, 88, 88, 1069, 700, 87, 1069, 2320, 88, 367, 367, 367, 367, 89, 89, 89, 89, 93, 89, 89, 792, 93, 93, 89, 805, 792, 93, 93, 93, 805, 1155, 89, 2178, 815, 93, 85, 85, 89, 815, 89, 1155, 86, 86, 90, 90, 90, 90, 91, 90, 90, 2178, 91, 91, 90, 92, 330, 91, 826, 92, 92, 832, 90, 826, 92, 91, 832, 1254, 90, 842, 90, 91, 92, 91, 842, 2234, 1254, 94, 92, 848, 92, 94, 94, 2234, 848, 859, 94, 94, 94, 1107, 859, 95, 1107, 868, 94, 95, 95, 96, 868, 878, 95, 96, 96, 2321, 878, 888, 96, 98, 95, 1693, 888, 98, 98, 113, 96, 898, 98, 113, 113, 1693, 898, 905, 113, 1404, 98, 1404, 905, 2328, 114, 913, 113, 922, 114, 114, 913, 2350, 922, 114, 95, 1119, 95, 1405, 1119, 1405, 96, 114, 96, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 101, 1257, 102, 931, 101, 101, 102, 102, 931, 101, 1257, 102, 257, 257, 257, 257, 103, 101, 104, 102, 103, 103, 104, 104, 2351, 103, 937, 104, 1408, 257, 1408, 937, 2374, 103, 257, 104, 105, 105, 105, 105, 943, 105, 105, 953, 2375, 943, 105, 966, 953, 105, 1307, 1307, 966, 105, 105, 106, 106, 106, 106, 2389, 106, 106, 978, 924, 105, 106, 924, 978, 106, 103, 1408, 104, 106, 106, 1709, 101, 924, 102, 258, 258, 258, 258, 121, 106, 122, 105, 121, 121, 122, 122, 1709, 121, 986, 122, 2390, 258, 2391, 986, 997, 121, 258, 122, 2392, 997, 106, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 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, 1308, 112, 1002, 111, 111, 112, 112, 1002, 111, 1308, 112, 268, 268, 268, 268, 117, 111, 118, 112, 117, 117, 118, 118, 1409, 117, 1409, 118, 269, 269, 269, 269, 125, 117, 268, 118, 125, 125, 117, 987, 118, 125, 987, 125, 348, 348, 348, 348, 2393, 125, 269, 111, 1037, 112, 2394, 1037, 147, 111, 987, 112, 147, 147, 348, 1037, 1409, 147, 147, 111, 111, 112, 112, 1126, 2395, 147, 1126, 111, 111, 112, 112, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 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, 126, 1015, 1016, 1021, 126, 126, 1015, 1016, 1021, 126, 2396, 126, 437, 437, 437, 437, 2398, 126, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 129, 1022, 2399, 130, 129, 129, 1022, 130, 130, 129, 1004, 129, 130, 1004, 130, 2400, 1010, 129, 131, 1010, 130, 132, 131, 131, 1030, 132, 132, 131, 1004, 1030, 132, 474, 474, 474, 474, 131, 1145, 1042, 132, 1145, 1010, 131, 1042, 474, 132, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 137, 1127, 1681, 148, 137, 137, 1127, 148, 148, 137, 138, 137, 148, 148, 138, 138, 1681, 137, 1008, 138, 148, 138, 305, 305, 305, 305, 1017, 138, 2402, 149, 1008, 137, 1133, 149, 149, 1008, 2406, 1133, 149, 1017, 149, 138, 137, 137, 305, 137, 149, 361, 361, 361, 361, 1017, 138, 138, 361, 138, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 143, 143, 143, 143, 159, 143, 143, 2407, 159, 159, 143, 143, 143, 159, 159, 143, 143, 1153, 143, 1020, 1153, 159, 1020, 143, 143, 150, 143, 143, 143, 150, 150, 1683, 1020, 1135, 150, 153, 150, 1020, 1135, 153, 153, 1312, 150, 1020, 153, 1683, 1312, 2252, 143, 153, 143, 154, 153, 1379, 160, 154, 154, 153, 160, 160, 154, 1097, 1379, 160, 160, 154, 1277, 1097, 154, 1277, 2252, 160, 1033, 154, 1097, 1033, 143, 143, 144, 144, 144, 144, 167, 144, 144, 1033, 167, 167, 144, 144, 144, 167, 2408, 144, 144, 1138, 144, 1038, 1138, 167, 1038, 144, 144, 167, 144, 144, 144, 155, 1038, 2411, 156, 155, 155, 1697, 156, 156, 155, 1318, 1318, 156, 280, 280, 280, 280, 155, 1697, 144, 156, 144, 1697, 155, 280, 155, 156, 181, 156, 1320, 1314, 181, 181, 1314, 1320, 280, 181, 181, 181, 409, 409, 409, 409, 1138, 181, 2412, 409, 144, 144, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 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, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 161, 1328, 1328, 162, 161, 161, 2419, 162, 162, 161, 161, 161, 162, 162, 162, 1330, 1330, 161, 1421, 1421, 162, 163, 163, 163, 163, 173, 163, 163, 1147, 173, 173, 163, 163, 163, 173, 1375, 1147, 173, 1147, 163, 1375, 2253, 173, 164, 164, 164, 164, 161, 164, 164, 162, 1377, 1849, 164, 164, 164, 1377, 165, 165, 165, 165, 164, 165, 165, 2253, 197, 1849, 165, 165, 197, 197, 1470, 1470, 173, 197, 165, 197, 359, 359, 359, 359, 165, 197, 165, 166, 166, 166, 166, 168, 166, 166, 1151, 168, 168, 166, 166, 2420, 168, 1304, 359, 1151, 1304, 166, 2049, 1304, 168, 1151, 2049, 166, 168, 166, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 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, 174, 2421, 175, 1472, 174, 174, 175, 175, 1472, 174, 1387, 175, 174, 1387, 175, 1473, 176, 174, 177, 175, 176, 176, 177, 177, 1473, 176, 1400, 177, 176, 1400, 177, 1631, 178, 176, 179, 177, 178, 178, 179, 179, 1631, 178, 1403, 179, 178, 1403, 179, 1852, 174, 178, 175, 179, 1040, 180, 2423, 1040, 1085, 180, 180, 1085, 1085, 1852, 180, 1040, 176, 180, 177, 182, 1491, 1491, 180, 182, 182, 2426, 1085, 1916, 182, 182, 182, 2428, 178, 183, 179, 184, 182, 183, 183, 184, 184, 1916, 183, 2430, 184, 360, 360, 360, 360, 2431, 183, 185, 184, 180, 186, 185, 185, 1680, 186, 186, 185, 185, 185, 186, 186, 186, 1680, 360, 185, 187, 1600, 186, 188, 187, 187, 1600, 188, 188, 187, 1496, 1496, 188, 189, 189, 2433, 189, 187, 189, 189, 188, 1100, 1158, 189, 189, 189, 1587, 1100, 231, 1587, 1158, 189, 231, 231, 1100, 1158, 1967, 231, 2434, 183, 183, 184, 184, 190, 190, 231, 190, 198, 190, 190, 1967, 198, 198, 190, 190, 190, 198, 1102, 198, 1499, 1499, 190, 2436, 1102, 198, 260, 260, 260, 260, 260, 1102, 1313, 260, 2437, 1313, 187, 187, 1313, 188, 188, 191, 191, 191, 191, 207, 191, 191, 260, 207, 207, 191, 191, 191, 207, 207, 207, 1258, 2438, 191, 1258, 1258, 207, 1102, 2424, 191, 2424, 191, 195, 195, 195, 195, 2439, 195, 195, 1258, 1504, 1504, 195, 195, 195, 982, 2440, 195, 982, 1682, 195, 196, 196, 196, 196, 223, 196, 196, 1682, 223, 223, 196, 196, 196, 223, 223, 196, 2441, 260, 196, 982, 2442, 223, 1513, 1513, 191, 192, 192, 192, 192, 208, 192, 192, 2443, 208, 208, 192, 192, 192, 208, 208, 208, 1175, 2444, 192, 1175, 1175, 208, 1325, 982, 192, 1325, 192, 199, 199, 199, 199, 1619, 199, 199, 1175, 2445, 1619, 199, 199, 199, 1325, 982, 199, 223, 1175, 199, 200, 200, 200, 200, 232, 200, 200, 1848, 232, 232, 200, 200, 200, 232, 1851, 200, 1848, 1435, 200, 1175, 1435, 232, 1435, 1851, 192, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 201, 1687, 1687, 202, 201, 201, 203, 202, 202, 201, 203, 203, 202, 1688, 2446, 203, 1688, 201, 2447, 1547, 202, 204, 1540, 203, 205, 204, 204, 206, 205, 205, 204, 206, 206, 205, 1583, 1705, 206, 1583, 204, 1309, 1705, 205, 1309, 1309, 206, 1332, 2448, 201, 1332, 201, 202, 209, 202, 1583, 203, 209, 209, 1309, 1332, 2450, 209, 210, 1547, 1540, 965, 210, 210, 965, 209, 204, 210, 965, 205, 965, 209, 206, 209, 965, 210, 267, 267, 267, 267, 211, 210, 2451, 210, 211, 211, 1547, 1627, 1540, 211, 212, 212, 211, 212, 2452, 212, 212, 211, 267, 1592, 212, 1505, 1592, 212, 1505, 213, 1915, 211, 212, 213, 213, 2453, 1505, 2454, 213, 1915, 214, 1592, 212, 2025, 214, 214, 213, 1380, 2025, 214, 1380, 1380, 211, 2329, 1627, 215, 213, 214, 2329, 215, 215, 1730, 1730, 212, 215, 1380, 216, 214, 2455, 217, 216, 216, 215, 217, 217, 216, 267, 213, 217, 2456, 218, 1627, 215, 216, 218, 218, 217, 229, 214, 218, 230, 229, 229, 216, 230, 230, 229, 218, 229, 230, 1995, 230, 1598, 215, 229, 1598, 233, 230, 234, 1995, 233, 233, 234, 234, 216, 233, 2457, 234, 217, 264, 264, 264, 264, 233, 2082, 234, 1598, 1734, 1734, 218, 264, 2458, 1963, 2082, 217, 1963, 264, 487, 487, 487, 487, 264, 264, 264, 2459, 218, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 224, 2076, 2076, 1586, 224, 224, 1586, 2460, 1532, 224, 224, 1532, 1620, 235, 235, 1620, 235, 224, 235, 235, 2461, 1532, 1586, 235, 2462, 1620, 235, 334, 334, 334, 334, 235, 349, 349, 349, 349, 2463, 235, 2083, 2083, 2427, 235, 2466, 2427, 334, 355, 355, 355, 355, 334, 349, 486, 486, 486, 486, 2468, 2470, 486, 488, 488, 488, 488, 235, 355, 224, 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, 227, 227, 2471, 227, 2060, 227, 227, 2060, 2472, 2060, 227, 228, 228, 2473, 228, 2173, 228, 228, 227, 1241, 1625, 228, 1241, 1241, 2173, 227, 2255, 2474, 1609, 228, 1625, 256, 256, 256, 256, 2255, 228, 1241, 1593, 236, 236, 1593, 236, 1625, 236, 236, 2476, 1241, 256, 236, 2477, 2478, 236, 256, 227, 1625, 1593, 236, 2479, 328, 328, 328, 328, 236, 2480, 228, 328, 236, 1241, 1609, 227, 1174, 227, 237, 1174, 1174, 227, 237, 237, 237, 2481, 228, 237, 228, 1174, 237, 2482, 228, 236, 1661, 237, 261, 261, 261, 261, 1661, 237, 1609, 261, 1174, 237, 2488, 1661, 281, 281, 281, 281, 256, 261, 271, 271, 271, 271, 271, 281, 2489, 271, 2491, 2311, 328, 1174, 237, 237, 238, 238, 281, 238, 2311, 238, 238, 238, 271, 2187, 238, 2187, 328, 238, 282, 282, 282, 282, 238, 329, 329, 329, 329, 1661, 238, 282, 329, 2494, 238, 357, 357, 357, 357, 281, 2495, 2496, 282, 363, 363, 363, 363, 363, 2475, 1883, 363, 1883, 261, 357, 1279, 238, 238, 1279, 2498, 366, 366, 366, 366, 2187, 2159, 363, 366, 2159, 366, 2159, 271, 2475, 366, 1279, 1279, 1279, 282, 368, 368, 368, 368, 373, 373, 373, 373, 329, 2499, 378, 378, 378, 378, 379, 379, 379, 379, 368, 1883, 1567, 2497, 373, 1567, 329, 358, 358, 358, 358, 1567, 2497, 358, 378, 1567, 378, 2188, 379, 2188, 379, 381, 381, 381, 381, 2464, 363, 1679, 2464, 358, 382, 382, 382, 382, 2500, 358, 1679, 1679, 407, 407, 407, 407, 2501, 381, 1884, 381, 1884, 379, 2503, 358, 2505, 2258, 382, 1628, 382, 358, 1628, 2258, 358, 358, 407, 358, 358, 358, 2258, 2188, 1628, 358, 358, 358, 358, 358, 381, 358, 1884, 358, 358, 358, 358, 358, 2508, 2509, 2510, 382, 383, 383, 383, 383, 384, 384, 384, 384, 2511, 385, 385, 385, 385, 2512, 386, 386, 386, 386, 387, 387, 387, 387, 383, 2513, 383, 1698, 384, 1698, 384, 1727, 2513, 385, 1727, 385, 1649, 1698, 386, 1649, 386, 2514, 387, 2515, 387, 2516, 388, 388, 388, 388, 389, 389, 389, 389, 1649, 390, 390, 390, 390, 1727, 1569, 2517, 384, 1569, 383, 385, 384, 383, 388, 1569, 388, 2518, 389, 1569, 389, 385, 387, 390, 1981, 390, 1727, 1981, 2519, 385, 386, 385, 2520, 391, 391, 391, 391, 1981, 392, 392, 392, 392, 393, 393, 393, 393, 2521, 389, 2522, 394, 394, 394, 394, 2523, 2524, 391, 388, 391, 2525, 2526, 392, 390, 392, 2527, 393, 2528, 393, 495, 495, 495, 495, 394, 2531, 394, 2530, 395, 395, 395, 395, 397, 397, 397, 397, 2532, 396, 396, 396, 396, 2533, 391, 392, 2535, 398, 398, 398, 398, 2538, 395, 391, 395, 2557, 397, 1831, 397, 391, 394, 396, 2558, 396, 2580, 393, 1831, 1831, 393, 398, 2581, 398, 408, 408, 408, 408, 2596, 2598, 2599, 410, 410, 410, 410, 410, 932, 932, 410, 932, 1811, 932, 395, 1811, 932, 932, 408, 396, 2530, 2600, 397, 398, 395, 410, 932, 397, 932, 2602, 1811, 398, 412, 412, 412, 412, 398, 2603, 396, 413, 413, 413, 413, 414, 414, 414, 414, 417, 417, 417, 417, 2605, 2611, 2612, 412, 1728, 412, 413, 1728, 1162, 2616, 414, 1162, 2617, 2618, 417, 428, 428, 428, 428, 430, 430, 430, 430, 431, 431, 431, 431, 1162, 1162, 1162, 410, 2621, 1728, 428, 430, 2623, 2624, 2626, 431, 454, 454, 454, 454, 459, 459, 459, 459, 2627, 501, 501, 501, 501, 2628, 1728, 502, 502, 502, 502, 503, 503, 503, 503, 459, 1162, 454, 501, 504, 504, 504, 504, 501, 502, 505, 505, 505, 505, 502, 2629, 2465, 505, 503, 2465, 2630, 506, 506, 506, 506, 506, 504, 2465, 506, 454, 2631, 454, 508, 508, 508, 508, 2632, 519, 519, 519, 519, 454, 454, 506, 502, 454, 454, 454, 2633, 454, 526, 526, 526, 526, 508, 519, 568, 568, 568, 568, 569, 569, 569, 569, 612, 612, 612, 612, 526, 613, 613, 613, 613, 625, 625, 625, 625, 653, 653, 653, 653, 2634, 658, 658, 658, 658, 660, 660, 660, 660, 625, 672, 672, 672, 672, 653, 2425, 2635, 2425, 506, 658, 2636, 2637, 2638, 660, 684, 684, 684, 684, 686, 686, 686, 686, 2639, 713, 713, 713, 713, 714, 714, 714, 714, 684, 720, 720, 720, 720, 723, 723, 723, 723, 686, 713, 1847, 2425, 2643, 714, 730, 730, 730, 730, 720, 1847, 1847, 730, 723, 731, 731, 731, 731, 1893, 2645, 2646, 731, 732, 732, 732, 732, 2647, 1893, 1893, 732, 733, 733, 733, 733, 2648, 736, 736, 736, 736, 2649, 2002, 2650, 736, 733, 736, 2652, 2002, 2653, 736, 737, 737, 737, 737, 2002, 1305, 2654, 737, 1305, 737, 2655, 2656, 2657, 737, 738, 738, 738, 738, 2660, 1717, 2664, 738, 1717, 738, 1305, 1305, 1305, 738, 739, 739, 739, 739, 2669, 2670, 2671, 739, 2002, 739, 1717, 1717, 1717, 739, 740, 740, 740, 740, 742, 742, 742, 742, 744, 744, 744, 744, 753, 753, 753, 753, 1827, 2625, 740, 1827, 2625, 2672, 742, 753, 755, 755, 755, 755, 756, 756, 756, 756, 2673, 2674, 753, 1827, 1827, 1827, 753, 1914, 757, 757, 757, 757, 2675, 2676, 755, 757, 1914, 1914, 756, 760, 760, 760, 760, 760, 744, 2677, 760, 764, 764, 764, 764, 770, 770, 770, 770, 773, 773, 773, 773, 2640, 2679, 760, 2640, 770, 2681, 2683, 773, 2684, 2686, 764, 776, 776, 776, 776, 777, 777, 777, 777, 773, 782, 782, 782, 782, 861, 861, 861, 861, 862, 862, 862, 862, 887, 887, 887, 887, 2688, 2689, 782, 890, 890, 890, 890, 887, 773, 891, 891, 891, 891, 897, 897, 897, 897, 2691, 890, 887, 1982, 2692, 760, 1982, 891, 925, 925, 925, 925, 947, 947, 947, 947, 1982, 2641, 2694, 947, 2641, 925, 948, 948, 948, 948, 925, 887, 2641, 948, 955, 955, 955, 955, 957, 957, 957, 957, 2695, 2696, 1729, 957, 955, 1729, 2697, 955, 958, 958, 958, 958, 2620, 2698, 2620, 958, 2700, 887, 960, 960, 960, 960, 947, 969, 969, 969, 969, 2703, 2704, 960, 1729, 2707, 948, 970, 970, 970, 970, 971, 971, 971, 971, 2708, 2709, 2723, 971, 969, 974, 974, 974, 974, 974, 1729, 2620, 974, 1018, 970, 980, 980, 980, 980, 2724, 1019, 1061, 1061, 1061, 1061, 1019, 1019, 974, 1019, 2622, 1019, 2706, 2622, 1019, 1019, 2728, 2622, 980, 1061, 1018, 1018, 2729, 1018, 1019, 1018, 1019, 2706, 1018, 1018, 1034, 1034, 1034, 1034, 1041, 1041, 1041, 1041, 1018, 2733, 1018, 1922, 2755, 1034, 1047, 1047, 1047, 1047, 1034, 2756, 1922, 1922, 1041, 1048, 1048, 1048, 1048, 1079, 1079, 1079, 1079, 1047, 1582, 2757, 974, 1582, 1047, 1926, 1079, 2765, 1048, 1049, 1049, 1049, 1049, 1048, 1926, 1926, 1049, 1052, 1052, 1052, 1052, 2766, 1930, 2770, 1052, 1582, 1049, 1053, 1053, 1053, 1053, 1930, 1930, 2771, 1053, 1934, 1054, 1054, 1054, 1054, 1055, 1055, 1055, 1055, 1934, 1934, 2775, 1054, 1056, 1056, 1056, 1056, 2776, 2777, 1582, 1056, 2782, 2783, 1047, 1054, 1054, 1939, 1055, 2786, 2787, 2788, 1058, 1058, 1058, 1058, 1939, 1939, 1582, 1072, 1072, 1072, 1072, 1058, 1059, 1059, 1059, 1059, 2790, 1058, 1072, 1059, 2793, 1049, 1058, 1058, 1058, 1060, 1060, 1060, 1060, 1059, 1072, 1072, 1060, 1062, 1062, 1062, 1062, 2794, 2795, 2018, 1062, 2795, 1060, 1063, 1063, 1063, 1063, 1063, 2018, 2018, 1063, 1064, 1064, 1064, 1064, 1066, 1066, 1066, 1066, 2796, 1070, 1070, 1070, 1070, 2797, 1063, 1066, 1070, 1064, 2798, 2799, 2800, 1066, 1064, 1064, 1064, 2801, 1066, 1066, 1066, 1071, 1071, 1071, 1071, 2802, 2803, 1732, 1071, 2804, 1732, 1059, 1073, 1073, 1073, 1073, 1074, 1074, 1074, 1074, 1083, 1083, 1083, 1083, 1060, 1076, 1076, 1076, 1076, 1077, 1077, 1077, 1077, 2805, 1073, 1732, 1077, 2808, 1074, 2162, 2809, 2810, 1063, 1078, 1078, 1078, 1078, 1076, 2162, 2162, 1078, 1080, 1080, 1080, 1080, 2811, 1732, 2812, 1080, 1082, 1082, 1082, 1082, 2813, 1086, 1086, 1086, 1086, 1086, 2814, 1082, 1086, 1088, 1088, 1088, 1088, 1090, 1090, 1090, 1090, 2816, 1082, 2818, 1088, 2819, 2820, 1086, 1090, 1073, 1091, 1091, 1091, 1091, 2821, 1088, 2824, 2828, 2829, 1090, 2830, 1091, 1092, 1092, 1092, 1092, 1105, 1105, 1105, 1105, 2170, 2831, 1091, 1092, 1114, 1114, 1114, 1114, 2832, 2170, 2170, 1114, 2834, 2835, 1092, 2196, 2836, 2838, 1105, 1115, 1115, 1115, 1115, 2839, 2196, 2196, 1115, 1116, 1116, 1116, 1116, 2840, 2842, 1086, 1116, 1117, 1117, 1117, 1117, 1118, 1118, 1118, 1118, 2844, 1092, 1132, 1132, 1132, 1132, 1091, 2203, 2791, 1117, 2789, 2791, 2789, 1118, 1117, 2791, 2203, 2203, 1118, 2845, 1132, 1114, 1120, 1120, 1120, 1120, 2852, 2855, 2854, 1120, 2858, 1121, 1121, 1121, 1121, 2859, 1115, 1114, 1121, 1122, 1122, 1122, 1122, 2854, 2789, 1124, 1124, 1124, 1124, 2864, 2865, 2867, 1115, 1134, 1134, 1134, 1134, 2880, 2884, 1118, 1116, 1122, 1124, 1137, 1137, 1137, 1137, 1124, 2885, 2889, 2890, 1134, 1159, 1159, 1159, 1159, 2891, 2893, 2070, 1159, 2913, 2914, 1120, 2070, 2920, 1137, 1160, 1160, 1160, 1160, 2070, 2070, 2070, 1160, 1161, 1161, 1161, 1161, 1120, 1136, 1136, 1136, 1136, 2921, 2924, 1136, 1164, 1164, 1164, 1164, 1165, 1165, 1165, 1165, 2925, 2926, 2930, 1165, 1161, 2933, 2934, 1136, 1167, 1167, 1167, 1167, 2888, 1136, 1164, 1169, 1169, 1169, 1169, 2935, 2937, 2888, 1169, 2939, 1169, 2940, 2941, 1136, 1169, 2942, 1167, 2943, 1167, 1136, 2209, 1894, 1136, 1136, 1894, 1136, 1136, 1136, 2944, 2209, 2209, 1136, 1136, 1136, 1136, 1136, 2945, 1136, 2948, 1136, 1136, 1136, 1136, 1136, 1170, 1170, 1170, 1170, 2949, 1894, 2950, 1170, 2947, 1170, 2952, 2947, 2953, 1170, 1171, 1171, 1171, 1171, 1172, 1172, 1172, 1172, 2954, 1171, 2955, 1171, 1894, 1171, 2960, 2961, 1172, 1172, 1173, 1173, 1173, 1173, 1231, 1231, 1231, 1231, 1172, 2963, 1172, 1178, 1178, 1178, 1178, 1178, 2964, 2966, 1178, 1182, 1182, 1182, 1182, 1183, 1183, 1183, 1183, 2967, 1231, 2970, 1182, 2971, 2974, 1178, 1183, 1184, 1184, 1184, 1184, 1185, 1185, 1185, 1185, 2979, 2982, 2983, 1184, 2984, 2986, 2987, 1185, 1186, 1186, 1186, 1186, 1187, 1187, 1187, 1187, 2988, 1189, 1189, 1189, 1189, 1191, 1191, 1191, 1191, 1192, 1192, 1192, 1192, 2993, 1186, 3004, 1186, 3005, 1187, 2212, 1187, 2946, 3009, 1189, 2946, 1189, 1183, 3010, 2212, 2212, 1178, 1192, 2946, 1192, 1193, 1193, 1193, 1193, 3011, 1184, 1184, 1189, 1189, 3012, 3029, 1189, 3032, 3033, 1185, 3032, 2215, 1185, 1194, 1194, 1194, 1194, 1193, 3035, 1193, 2215, 2215, 1191, 1195, 1195, 1195, 1195, 1196, 1196, 1196, 1196, 1197, 1197, 1197, 1197, 1194, 1192, 1194, 1198, 1198, 1198, 1198, 3036, 3046, 3047, 1195, 3048, 1195, 3050, 1196, 3051, 1196, 3052, 1197, 3053, 1197, 1199, 1199, 1199, 1199, 1198, 3054, 1198, 3058, 1193, 1194, 1200, 1200, 1200, 1200, 1201, 1201, 1201, 1201, 3059, 3060, 3057, 1195, 1199, 3057, 1199, 3061, 1240, 3062, 1196, 1240, 1240, 1195, 1200, 2218, 1200, 3067, 1201, 3056, 1201, 1240, 3056, 1198, 2218, 2218, 1197, 1202, 1202, 1202, 1202, 3056, 1203, 1203, 1203, 1203, 1240, 1204, 1204, 1204, 1204, 3068, 3070, 1205, 1205, 1205, 1205, 3072, 1200, 1202, 1201, 1202, 3055, 1199, 1203, 3055, 1203, 1240, 3074, 1204, 3082, 1204, 1201, 3055, 3083, 1205, 1201, 1205, 1206, 1206, 1206, 1206, 1227, 1227, 1227, 1227, 3084, 3087, 1207, 1207, 1207, 1207, 1208, 1208, 1208, 1208, 3088, 1202, 3099, 3103, 1206, 1204, 1206, 3104, 1227, 3105, 1203, 1204, 1205, 1204, 1207, 3106, 1207, 3113, 1208, 3114, 1208, 1204, 1209, 1209, 1209, 1209, 1210, 1210, 1210, 1210, 1211, 1211, 1211, 1211, 3128, 1206, 3129, 1213, 1213, 1213, 1213, 3130, 3133, 3136, 1209, 3137, 1209, 3138, 1210, 3139, 1210, 1208, 1211, 3142, 1211, 1212, 1212, 1212, 1212, 1213, 3143, 1213, 1207, 1214, 1214, 1214, 1214, 3144, 3145, 1216, 1216, 1216, 1216, 1229, 1229, 1229, 1229, 1212, 3149, 1212, 1229, 1215, 1215, 1215, 1215, 1214, 3153, 1214, 3154, 1210, 1211, 1216, 1209, 1216, 1213, 1211, 1217, 1217, 1217, 1217, 2222, 3159, 3160, 1215, 1213, 1215, 3164, 3165, 1212, 2222, 2222, 3166, 1218, 1218, 1218, 1218, 3134, 3167, 1217, 3134, 1217, 1214, 1219, 1219, 1219, 1219, 1220, 1220, 1220, 1220, 3173, 3174, 1216, 1215, 1218, 3175, 1218, 1221, 1221, 1221, 1221, 3177, 3135, 3178, 1219, 3135, 1219, 3194, 1220, 1215, 1220, 1222, 1222, 1222, 1222, 1244, 1244, 1244, 1244, 1221, 3195, 1221, 1217, 1230, 1230, 1230, 1230, 3198, 3140, 3199, 1230, 3140, 1218, 1222, 3200, 1222, 1232, 1232, 1232, 1232, 3140, 3201, 1219, 1232, 1234, 1234, 1234, 1234, 1220, 1235, 1235, 1235, 1235, 1235, 3202, 3203, 1235, 1236, 1236, 1236, 1236, 1237, 1237, 1237, 1237, 1221, 1234, 3207, 1234, 3210, 3211, 1235, 3212, 1222, 1243, 1243, 1243, 1243, 3215, 1236, 3216, 1236, 3217, 1237, 3222, 1237, 3223, 3224, 3243, 1243, 1245, 1245, 1245, 1245, 1247, 1247, 1247, 1247, 1259, 1259, 1259, 1259, 1260, 1260, 1260, 1260, 1271, 1271, 1271, 1271, 3244, 3247, 3248, 1247, 3249, 3251, 1897, 1259, 1271, 1897, 3252, 1272, 1272, 1272, 1272, 3253, 3258, 1235, 1246, 1246, 1246, 1246, 1272, 1275, 1275, 1275, 1275, 3259, 3272, 1275, 1276, 1276, 1276, 1276, 1897, 1272, 1282, 1282, 1282, 1282, 3273, 3276, 3277, 1246, 1285, 1285, 1285, 1285, 3279, 1287, 1287, 1287, 1287, 3280, 3286, 1897, 1288, 1288, 1288, 1288, 1289, 1289, 1289, 1289, 3287, 3291, 1287, 1289, 3298, 3500, 1246, 1287, 1246, 1288, 1290, 1290, 1290, 1290, 1288, 3510, 3512, 3514, 1246, 1246, 3516, 3519, 1246, 1246, 1246, 3535, 1246, 1290, 1311, 1311, 1311, 1311, 1290, 3537, 1292, 1292, 1292, 1292, 1293, 1293, 1293, 1293, 1295, 1295, 1295, 1295, 1311, 3542, 3554, 1295, 1285, 1292, 1296, 1296, 1296, 1296, 1292, 3557, 3511, 1296, 1293, 1298, 1298, 1298, 1298, 3511, 3559, 3562, 1298, 1300, 1300, 1300, 1300, 1301, 1301, 1301, 1301, 1301, 3515, 3564, 1301, 1302, 1302, 1302, 1302, 3515, 1319, 1319, 1319, 1319, 3567, 1300, 3570, 3573, 3575, 1301, 3577, 1292, 1341, 1341, 1341, 1341, 3579, 1302, 1319, 1354, 1354, 1354, 1354, 1364, 1364, 1364, 1364, 1365, 1365, 1365, 1365, 3517, 1366, 1366, 1366, 1366, 3520, 3592, 3517, 1366, 1364, 3594, 3606, 3520, 1365, 1366, 1367, 1367, 1367, 1367, 3615, 1376, 1376, 1376, 1376, 1388, 1388, 1388, 1388, 1393, 1393, 1393, 1393, 1367, 3518, 1301, 1376, 1394, 1394, 1394, 1394, 1396, 1396, 1396, 1396, 1397, 1397, 1397, 1397, 1423, 3518, 1393, 1423, 1423, 1394, 1424, 3619, 3633, 1424, 1424, 3641, 3649, 1423, 1429, 1429, 1429, 1429, 1397, 3196, 3197, 1429, 3196, 3197, 1424, 3661, 3196, 3197, 1423, 1430, 1430, 1430, 1430, 3665, 1424, 3667, 1430, 1431, 1431, 1431, 1431, 1432, 1432, 1432, 1432, 1434, 1434, 1434, 1434, 1423, 1431, 2323, 1388, 3527, 1432, 1424, 2323, 3672, 1434, 1437, 1437, 1437, 1437, 2323, 2323, 2323, 1437, 3528, 1437, 3527, 3536, 3685, 1437, 1438, 1438, 1438, 1438, 3536, 3239, 2324, 1438, 3239, 1438, 3528, 2324, 3239, 1438, 1439, 1439, 1439, 1439, 2324, 2324, 2324, 1439, 3723, 1439, 3757, 3761, 3781, 1439, 1440, 1440, 1440, 1440, 1441, 1441, 1441, 1441, 1442, 1442, 1442, 1442, 1445, 1445, 1445, 1445, 3782, 1446, 1446, 1446, 1446, 3790, 3538, 1445, 1446, 1449, 1449, 1449, 1449, 3538, 1446, 3558, 3555, 3558, 1445, 1451, 1451, 1451, 1451, 3555, 3558, 3819, 1451, 1452, 1452, 1452, 1452, 1449, 1440, 3846, 1452, 3884, 1441, 3889, 3565, 3568, 1442, 1454, 1454, 1454, 1454, 3565, 3568, 3903, 1454, 1456, 1456, 1456, 1456, 1457, 1457, 1457, 1457, 1457, 3645, 3909, 1457, 1458, 1458, 1458, 1458, 1459, 1459, 1459, 1459, 3241, 3929, 1456, 3241, 2298, 3645, 1457, 3241, 1459, 1460, 1460, 1460, 1460, 2297, 1458, 1461, 1461, 1461, 1461, 3646, 1460, 1468, 1468, 1468, 1468, 2296, 1461, 1471, 1471, 1471, 1471, 1507, 1507, 1507, 1507, 3646, 2295, 2294, 1461, 2293, 2292, 1515, 1515, 1515, 1515, 1471, 1519, 1519, 1519, 1519, 2291, 2290, 1515, 1520, 1520, 1520, 1520, 1521, 1521, 1521, 1521, 1519, 1457, 1461, 1515, 1533, 1533, 1533, 1533, 1534, 1534, 1534, 1534, 1549, 1549, 1549, 1549, 2288, 1533, 3576, 1549, 1550, 1550, 1550, 1550, 2287, 3576, 3655, 1550, 1515, 1551, 1551, 1551, 1551, 1553, 1553, 1553, 1553, 1554, 1554, 1554, 1554, 1551, 3655, 3578, 1551, 1553, 3580, 3563, 1553, 1554, 3578, 3563, 1554, 3580, 2286, 2285, 1515, 2284, 3563, 3593, 1549, 1555, 1555, 1555, 1555, 3563, 3593, 2283, 1550, 1557, 1557, 1557, 1557, 1559, 1559, 1559, 1559, 1562, 1562, 1562, 1562, 1557, 3595, 3595, 1557, 1560, 1560, 1560, 1560, 3595, 3608, 3643, 1560, 1561, 1561, 1561, 1561, 3608, 3643, 3697, 1561, 1563, 1563, 1563, 1563, 1564, 1564, 1564, 1564, 3765, 2282, 2281, 1563, 2280, 2279, 3697, 1564, 1566, 1566, 1566, 1566, 1572, 1572, 1572, 1572, 3765, 3647, 3648, 1566, 1574, 1574, 1574, 1574, 3647, 3648, 3651, 1574, 1575, 1575, 1575, 1575, 2278, 3651, 1572, 1575, 1577, 1577, 1577, 1577, 2277, 2272, 2271, 1577, 1579, 1579, 1579, 1579, 1580, 1580, 1580, 1580, 1580, 2270, 2269, 1580, 1581, 1581, 1581, 1581, 2235, 1615, 1733, 2235, 1615, 1733, 1579, 2235, 2268, 2235, 1580, 2267, 2251, 2235, 1615, 1733, 3823, 3666, 1581, 1615, 1629, 1629, 1629, 1629, 3666, 1615, 1630, 1630, 1630, 1630, 1733, 2250, 3823, 1629, 1634, 1634, 1634, 1634, 1635, 1635, 1635, 1635, 2249, 3674, 2248, 1636, 1636, 1636, 1636, 1635, 3674, 1733, 1639, 1639, 1639, 1639, 1636, 1634, 1634, 1639, 1796, 1635, 1635, 1796, 2247, 2245, 1580, 1636, 1636, 1636, 1637, 1637, 1637, 1637, 1638, 1638, 1638, 1638, 1640, 1640, 1640, 1640, 3675, 3684, 1796, 1640, 2242, 1637, 1796, 3675, 3684, 1638, 1642, 1642, 1642, 1642, 1642, 2241, 2239, 1642, 1643, 1643, 1643, 1643, 1644, 1644, 1644, 1644, 2238, 1796, 3833, 1643, 2237, 3694, 1642, 1644, 1645, 1645, 1645, 1645, 3694, 2236, 2231, 1643, 1643, 3702, 3833, 1645, 1646, 1646, 1646, 1646, 3702, 1652, 1652, 1652, 1652, 1652, 1731, 1646, 1652, 1731, 1654, 1654, 1654, 1654, 1655, 1655, 1655, 1655, 1646, 2230, 2229, 1654, 2228, 1652, 1731, 1655, 1662, 1662, 1662, 1662, 1662, 2227, 1654, 1662, 1731, 2225, 1655, 2224, 1642, 1665, 1665, 1665, 1665, 1666, 1666, 1666, 1666, 2223, 1662, 2220, 1666, 1667, 1667, 1667, 1667, 1731, 1665, 2219, 1667, 2216, 2213, 1665, 1668, 1668, 1668, 1668, 1671, 1671, 1671, 1671, 3704, 3574, 3574, 1671, 3574, 3650, 1655, 3704, 3574, 1652, 1654, 2210, 3650, 2207, 1668, 3650, 2204, 2201, 1685, 1685, 1685, 1685, 3710, 1686, 1686, 1686, 1686, 1686, 2200, 3710, 1686, 2194, 2193, 2192, 1662, 1665, 1684, 1684, 1684, 1684, 1685, 2191, 1684, 2189, 2183, 1686, 1715, 1715, 1715, 1715, 1716, 1716, 1716, 1716, 1719, 1719, 1719, 1719, 1684, 1720, 1720, 1720, 1720, 1719, 1684, 1719, 1720, 1719, 1720, 3711, 1715, 2182, 1720, 2180, 1716, 2179, 3711, 2177, 1684, 1750, 1750, 1750, 1750, 2176, 1684, 2175, 3712, 1684, 1684, 2174, 1684, 1684, 1684, 3712, 2172, 2171, 1684, 1684, 1684, 1684, 1684, 1686, 1684, 2168, 1684, 1684, 1684, 1684, 1684, 1721, 1721, 1721, 1721, 1722, 1722, 1722, 1722, 1724, 1724, 1724, 1724, 1721, 1721, 2163, 1722, 1723, 1723, 1723, 1723, 1724, 1724, 1721, 1723, 2160, 2157, 1750, 2156, 1723, 3696, 1724, 3696, 1724, 1736, 1736, 1736, 1736, 1736, 3696, 2154, 1736, 1738, 1738, 1738, 1738, 1740, 1740, 1740, 1740, 2153, 2152, 2151, 1738, 2149, 2148, 1736, 1740, 1741, 1741, 1741, 1741, 1742, 1742, 1742, 1742, 2147, 2145, 2144, 1741, 2143, 2142, 2140, 1742, 1743, 1743, 1743, 1743, 1744, 1744, 1744, 1744, 2232, 2232, 3722, 1743, 2139, 2232, 2136, 1744, 2232, 3722, 1745, 1745, 1745, 1745, 1747, 1747, 1747, 1747, 2232, 2085, 2232, 1745, 3729, 1748, 1748, 1748, 1748, 2078, 1741, 3729, 1736, 1749, 1749, 1749, 1749, 2072, 1747, 2069, 1747, 2061, 1793, 1793, 1793, 1793, 1747, 1748, 1742, 1748, 1752, 1752, 1752, 1752, 2059, 1749, 2058, 1749, 1744, 1753, 1753, 1753, 1753, 1744, 1743, 1745, 1793, 2057, 1748, 1749, 2056, 2055, 1752, 3743, 1752, 1754, 1754, 1754, 1754, 2054, 3743, 1753, 2053, 1753, 1755, 1755, 1755, 1755, 1756, 1756, 1756, 1756, 1757, 1757, 1757, 1757, 2052, 1754, 2051, 1754, 1758, 1758, 1758, 1758, 3708, 3708, 1755, 3708, 1755, 2050, 1756, 3708, 1756, 2048, 1757, 2047, 1757, 1759, 1759, 1759, 1759, 1752, 1758, 3760, 1758, 1760, 1760, 1760, 1760, 1753, 3760, 1761, 1761, 1761, 1761, 1814, 1814, 1814, 1814, 1759, 2046, 1759, 2045, 3772, 1754, 2044, 1755, 1760, 2043, 1760, 3772, 3783, 1757, 1761, 2042, 1761, 3783, 1756, 3783, 1762, 1762, 1762, 1762, 2041, 3730, 3730, 1758, 1763, 1763, 1763, 1763, 3730, 1764, 1764, 1764, 1764, 1765, 1765, 1765, 1765, 2040, 1762, 1759, 1762, 1766, 1766, 1766, 1766, 1760, 1763, 3801, 1763, 3758, 3758, 1764, 1761, 1764, 3801, 1765, 3758, 1765, 1767, 1767, 1767, 1767, 2039, 1766, 2038, 1766, 1768, 1768, 1768, 1768, 2037, 3786, 1762, 2036, 1769, 1769, 1769, 1769, 3786, 2035, 1767, 3786, 1767, 2034, 2075, 1764, 1763, 2075, 1768, 1765, 1768, 1770, 1770, 1770, 1770, 2033, 1769, 1766, 1769, 1771, 1771, 1771, 1771, 1772, 1772, 1772, 1772, 1773, 1773, 1773, 1773, 2032, 2075, 1770, 2031, 1770, 1774, 1774, 1774, 1774, 1767, 1771, 2030, 1771, 2029, 1772, 2028, 1772, 3701, 1773, 3806, 1773, 3701, 2075, 1769, 2027, 1768, 3806, 1774, 3701, 1774, 1775, 1775, 1775, 1775, 3814, 3701, 1770, 1776, 1776, 1776, 1776, 3814, 1771, 1777, 1777, 1777, 1777, 1778, 1778, 1778, 1778, 3817, 1775, 2079, 1775, 1773, 2079, 3830, 3817, 1776, 1772, 1776, 2026, 2081, 3830, 1777, 2081, 1777, 2024, 1778, 2023, 1778, 1779, 1779, 1779, 1779, 1774, 1780, 1780, 1780, 1780, 2079, 1775, 1781, 1781, 1781, 1781, 1782, 1782, 1782, 1782, 2081, 2020, 1776, 1779, 3791, 1779, 3791, 2019, 1780, 2016, 1780, 2079, 3843, 3791, 1781, 2015, 1781, 2014, 1782, 3843, 1782, 2081, 1778, 2013, 1777, 2012, 1778, 1783, 1783, 1783, 1783, 1784, 1784, 1784, 1784, 1785, 1785, 1785, 1785, 1817, 1817, 1817, 1817, 1779, 1786, 1786, 1786, 1786, 2010, 1783, 2006, 1783, 3820, 1784, 3820, 1784, 2001, 1785, 3849, 1785, 1782, 3820, 2000, 1781, 1993, 3849, 1786, 1985, 1786, 1787, 1787, 1787, 1787, 3852, 1788, 1788, 1788, 1788, 3852, 1980, 3852, 1789, 1789, 1789, 1789, 1790, 1790, 1790, 1790, 1979, 3859, 1787, 3859, 1787, 1978, 1977, 1788, 1783, 1788, 3859, 1786, 1785, 1784, 1789, 1976, 1789, 1975, 1790, 1973, 1790, 1972, 1791, 1791, 1791, 1791, 1794, 1794, 1794, 1794, 1795, 1795, 1795, 1795, 1795, 1969, 1797, 1795, 1966, 1797, 1822, 1822, 1822, 1822, 1791, 1787, 1791, 1965, 1798, 1788, 1794, 1798, 1795, 1895, 1799, 3872, 1895, 1799, 3825, 3825, 1797, 3825, 3872, 1789, 1797, 3825, 1790, 1799, 1824, 1824, 1824, 1824, 1798, 3880, 1791, 1964, 1798, 1895, 1799, 1824, 3880, 1895, 1799, 3842, 3842, 1797, 1832, 1832, 1832, 1832, 3842, 1960, 1824, 1834, 1834, 1834, 1834, 1798, 1838, 1838, 1838, 1838, 1895, 1799, 3882, 1838, 3882, 3902, 1795, 1839, 1839, 1839, 1839, 3882, 3902, 1959, 1839, 1840, 1840, 1840, 1840, 1841, 1841, 1841, 1841, 1843, 1843, 1843, 1843, 1843, 3885, 3885, 1843, 3885, 1840, 3915, 3865, 3885, 1841, 1840, 3865, 1958, 3915, 1841, 1952, 3865, 3926, 1843, 1863, 1863, 1863, 1863, 3865, 3926, 1950, 1863, 1864, 1864, 1864, 1864, 1949, 1863, 1948, 1864, 1866, 1866, 1866, 1866, 3933, 1864, 1872, 1872, 1872, 1872, 3908, 3933, 1898, 1841, 3908, 1898, 1947, 1866, 1946, 3908, 3934, 1872, 1873, 1873, 1873, 1873, 3908, 3934, 1902, 1902, 1902, 1902, 1945, 1943, 1942, 1902, 1898, 1941, 1940, 1843, 1898, 1902, 1903, 1903, 1903, 1903, 1938, 1936, 1935, 1903, 1904, 1904, 1904, 1904, 1933, 1903, 1905, 1905, 1905, 1905, 1931, 1898, 1929, 1904, 1908, 1908, 1908, 1908, 1908, 1927, 1925, 1908, 1909, 1909, 1909, 1909, 1923, 1921, 1905, 1953, 1953, 1953, 1953, 1909, 1919, 1918, 1908, 1954, 1954, 1954, 1954, 1953, 1917, 1913, 1953, 1955, 1955, 1955, 1955, 1956, 1956, 1956, 1956, 1957, 1957, 1957, 1957, 1962, 1962, 1962, 1962, 1962, 1911, 1901, 1962, 1988, 1988, 1988, 1988, 1900, 1899, 1989, 1989, 1989, 1989, 1991, 1991, 1991, 1991, 1962, 1896, 1892, 1989, 1890, 1889, 1888, 1991, 1988, 1988, 1988, 1887, 1886, 1908, 1989, 1989, 1989, 1885, 1991, 2004, 2004, 2004, 2004, 1882, 1881, 1880, 2004, 2007, 2007, 2007, 2007, 2009, 2009, 2009, 2009, 2011, 2011, 2011, 2011, 1879, 1876, 1875, 2011, 2065, 2065, 2065, 2065, 1874, 1870, 2007, 1869, 1862, 1860, 2009, 2065, 1859, 1962, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1997, 1997, 1997, 1997, 1998, 1998, 1998, 1998, 1858, 1857, 1856, 1997, 1855, 1854, 1853, 1998, 2003, 2003, 2003, 2003, 2003, 1850, 1997, 2003, 1846, 1844, 1998, 2005, 2005, 2005, 2005, 2005, 1837, 1836, 2005, 1830, 1828, 1826, 2003, 2008, 2008, 2008, 2008, 2022, 2022, 2022, 2022, 1823, 1821, 2005, 2062, 2062, 2062, 2062, 1820, 1819, 2008, 2062, 1818, 2062, 1998, 2008, 1816, 2062, 1815, 2022, 1813, 1808, 1997, 2063, 2063, 2063, 2063, 1807, 3920, 3920, 2063, 3920, 2063, 1806, 1805, 3920, 2063, 1804, 2086, 2086, 2086, 2086, 1803, 2064, 2064, 2064, 2064, 1802, 2003, 2086, 2095, 2095, 2095, 2095, 1801, 2008, 1800, 1792, 1751, 2005, 2021, 2021, 2021, 2021, 1737, 2064, 2021, 2064, 2067, 2067, 2067, 2067, 2095, 1726, 2095, 2067, 2087, 2087, 2087, 2087, 2067, 1725, 2021, 2068, 2068, 2068, 2068, 2087, 2021, 1718, 2068, 2071, 2071, 2071, 2071, 2068, 1714, 1713, 2071, 1712, 2071, 1711, 2021, 2095, 2071, 1710, 1708, 2086, 2021, 1707, 1706, 2021, 2021, 1704, 2021, 2021, 2021, 1703, 1702, 1701, 2021, 2021, 2021, 2021, 2021, 1700, 2021, 1699, 2021, 2021, 2021, 2021, 2021, 2073, 2073, 2073, 2073, 1696, 2087, 2088, 2088, 2088, 2088, 1695, 1694, 2073, 2089, 2089, 2089, 2089, 2088, 2090, 2090, 2090, 2090, 2073, 1692, 2089, 2091, 2091, 2091, 2091, 2090, 2092, 2092, 2092, 2092, 1691, 1690, 2091, 2093, 2093, 2093, 2093, 2094, 2094, 2094, 2094, 1689, 2096, 2096, 2096, 2096, 1678, 1676, 2092, 1675, 2092, 2141, 2141, 2141, 2141, 2093, 1674, 2093, 2088, 2094, 1673, 2094, 1672, 2092, 2096, 1670, 2096, 2097, 2097, 2097, 2097, 1663, 2094, 2093, 2098, 2098, 2098, 2098, 1660, 1656, 1653, 2089, 1651, 2091, 2090, 2099, 2099, 2099, 2099, 2097, 1633, 2097, 2100, 2100, 2100, 2100, 2098, 1626, 2098, 2101, 2101, 2101, 2101, 2146, 2146, 2146, 2146, 2099, 1617, 2099, 2096, 1616, 1614, 1613, 2100, 1612, 2100, 2103, 2103, 2103, 2103, 2101, 1611, 2101, 1610, 1608, 2098, 2104, 2104, 2104, 2104, 2150, 2150, 2150, 2150, 1607, 2097, 1606, 1605, 2103, 1599, 2103, 2155, 2155, 2155, 2155, 1596, 1595, 1594, 2104, 1591, 2104, 1590, 1589, 1588, 2099, 2100, 1585, 1584, 2101, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 1573, 1571, 1570, 2102, 1558, 2102, 2102, 2102, 2102, 2102, 1552, 1548, 1546, 2103, 1545, 1544, 1543, 2104, 2105, 2105, 2105, 2105, 2106, 2106, 2106, 2106, 1542, 1541, 1539, 2102, 2102, 2102, 2107, 2107, 2107, 2107, 2181, 2181, 2181, 2181, 2105, 1538, 2105, 1531, 2106, 1530, 2106, 2108, 2108, 2108, 2108, 1512, 1510, 2181, 2107, 1503, 2107, 2102, 2102, 2102, 1498, 2109, 2109, 2109, 2109, 2110, 2110, 2110, 2110, 2108, 1495, 2108, 2111, 2111, 2111, 2111, 1490, 2112, 2112, 2112, 2112, 1480, 2106, 2109, 2105, 2109, 1479, 2110, 1478, 2110, 2113, 2113, 2113, 2113, 2111, 1469, 2111, 1465, 1450, 2112, 2107, 2112, 2114, 2114, 2114, 2114, 2116, 2116, 2116, 2116, 1447, 2108, 2113, 1443, 2113, 1420, 2115, 2115, 2115, 2115, 2117, 2117, 2117, 2117, 2114, 1415, 2114, 1414, 2116, 2109, 2116, 2118, 2118, 2118, 2118, 1412, 2110, 2111, 2115, 1407, 2115, 2112, 2117, 1406, 2117, 1395, 1373, 1372, 2119, 2119, 2119, 2119, 1371, 2118, 1370, 2118, 1369, 1368, 2113, 2120, 2120, 2120, 2120, 2121, 2121, 2121, 2121, 2114, 2115, 1363, 2119, 2116, 2119, 2122, 2122, 2122, 2122, 2123, 2123, 2123, 2123, 2120, 2117, 2120, 2118, 2121, 1362, 2121, 2124, 2124, 2124, 2124, 1361, 1360, 1359, 2122, 1358, 2122, 1352, 2123, 1351, 2123, 2125, 2125, 2125, 2125, 2126, 2126, 2126, 2126, 2124, 2120, 2124, 2184, 2184, 2184, 2184, 2119, 1350, 2121, 2259, 2259, 2259, 2259, 2125, 1340, 2125, 2259, 2126, 2122, 2126, 2127, 2127, 2127, 2127, 1339, 1337, 2123, 2197, 2197, 2197, 2197, 2124, 2128, 2128, 2128, 2128, 2129, 2129, 2129, 2129, 2197, 1333, 2127, 1329, 2127, 1327, 2124, 2126, 1326, 1317, 3925, 2125, 1306, 3925, 2128, 1294, 2128, 3925, 2129, 1291, 2129, 2130, 2130, 2130, 2130, 2131, 2131, 2131, 2131, 2132, 2132, 2132, 2132, 3925, 1286, 2133, 2133, 2133, 2133, 1280, 2127, 1270, 1269, 2130, 1268, 2130, 2128, 2131, 1267, 2131, 1266, 2132, 1265, 2132, 1264, 1263, 1262, 2133, 2129, 2133, 2134, 2134, 2134, 2134, 2135, 2135, 2135, 2135, 2158, 2158, 2158, 2158, 2289, 2289, 2289, 2289, 2130, 1255, 1253, 2158, 1252, 1251, 2134, 1250, 2134, 2130, 2135, 2132, 2135, 2131, 1249, 2133, 2165, 2165, 2165, 2165, 2166, 2166, 2166, 2166, 2167, 2167, 2167, 2167, 2198, 2198, 2198, 2198, 1248, 2165, 1228, 1226, 1190, 2166, 2165, 2254, 2254, 2167, 2166, 1188, 2254, 1179, 2167, 2254, 1163, 1157, 2198, 2199, 2199, 2199, 2199, 2134, 1156, 2254, 2135, 2254, 2260, 2260, 2260, 2260, 1154, 1152, 1150, 2260, 2262, 2262, 2262, 2262, 2289, 2199, 2397, 2397, 2397, 2397, 2403, 2403, 2403, 2403, 2415, 2415, 2415, 2415, 1149, 1148, 1146, 2403, 2262, 1144, 1143, 2167, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2256, 2256, 2256, 2256, 2257, 2257, 2257, 2257, 1142, 1141, 1139, 2256, 1130, 1129, 1128, 2257, 2264, 2264, 2264, 2264, 2264, 1125, 2256, 2264, 1123, 1111, 2257, 2265, 2265, 2265, 2265, 2266, 2266, 2266, 2266, 1106, 1101, 1099, 2264, 2276, 2276, 2276, 2276, 2318, 2318, 2318, 2318, 1098, 2266, 2265, 1087, 1075, 2256, 2266, 2319, 2319, 2319, 2319, 1050, 2257, 1046, 2276, 1031, 1029, 1007, 2318, 1006, 2326, 2326, 2326, 2326, 2327, 2327, 2327, 2327, 1005, 2319, 3931, 2319, 2326, 3931, 1003, 990, 2327, 3931, 989, 988, 2266, 979, 2326, 967, 2326, 956, 2327, 2264, 2275, 2275, 2275, 2275, 945, 3931, 2275, 2332, 2332, 2332, 2332, 921, 877, 2416, 2416, 2416, 2416, 871, 2332, 870, 869, 847, 2275, 2333, 2333, 2333, 2333, 839, 2275, 2334, 2334, 2334, 2334, 831, 2333, 2335, 2335, 2335, 2335, 823, 2334, 814, 2275, 804, 798, 793, 2335, 780, 2275, 774, 763, 2275, 2275, 752, 2275, 2275, 2275, 727, 726, 725, 2275, 2275, 2275, 2275, 2275, 724, 2275, 721, 2275, 2275, 2275, 2275, 2275, 2416, 717, 707, 2332, 706, 705, 2333, 2336, 2336, 2336, 2336, 704, 665, 640, 2335, 635, 633, 632, 2336, 2337, 2337, 2337, 2337, 623, 2334, 2338, 2338, 2338, 2338, 617, 2337, 610, 2339, 2339, 2339, 2339, 597, 2340, 2340, 2340, 2340, 596, 2341, 2341, 2341, 2341, 561, 2338, 560, 2338, 2490, 2490, 2490, 2490, 2339, 559, 2339, 557, 2338, 2340, 555, 2340, 543, 2336, 2341, 532, 2341, 2342, 2342, 2342, 2342, 516, 2336, 2339, 514, 507, 2340, 493, 491, 2337, 477, 2343, 2343, 2343, 2343, 2344, 2344, 2344, 2344, 2342, 468, 2342, 2345, 2345, 2345, 2345, 2346, 2346, 2346, 2346, 466, 465, 464, 2343, 2341, 2343, 463, 2344, 462, 2344, 2347, 2347, 2347, 2347, 2345, 461, 2345, 411, 2346, 2342, 2346, 2349, 2349, 2349, 2349, 2352, 2352, 2352, 2352, 406, 380, 376, 2347, 374, 2347, 372, 2354, 2354, 2354, 2354, 371, 346, 344, 2349, 332, 2349, 316, 2352, 279, 2352, 277, 262, 2346, 239, 2344, 0, 0, 2343, 2354, 0, 2354, 2355, 2355, 2355, 2355, 2356, 2356, 2356, 2356, 2357, 2357, 2357, 2357, 0, 2347, 2358, 2358, 2358, 2358, 2352, 0, 0, 0, 2355, 0, 2355, 0, 2356, 0, 2356, 0, 2357, 0, 2357, 2352, 0, 0, 2358, 0, 2358, 2359, 2359, 2359, 2359, 2360, 2360, 2360, 2360, 0, 0, 2361, 2361, 2361, 2361, 2362, 2362, 2362, 2362, 0, 2356, 0, 0, 2359, 0, 2359, 0, 2360, 0, 2360, 0, 2358, 2355, 2361, 2357, 2361, 0, 2362, 0, 2362, 2363, 2363, 2363, 2363, 2364, 2364, 2364, 2364, 2365, 2365, 2365, 2365, 2366, 2366, 2366, 2366, 2367, 2367, 2367, 2367, 2360, 2359, 2363, 0, 2363, 0, 2364, 0, 2364, 0, 2365, 2362, 2365, 0, 2366, 2361, 2366, 0, 2367, 0, 2367, 2368, 2368, 2368, 2368, 0, 0, 2369, 2369, 2369, 2369, 2370, 2370, 2370, 2370, 0, 0, 2363, 2371, 2371, 2371, 2371, 0, 2368, 2363, 2368, 0, 2366, 0, 2369, 2364, 2369, 2367, 2370, 0, 2370, 2365, 0, 0, 0, 2371, 0, 2371, 2372, 2372, 2372, 2372, 2373, 2373, 2373, 2373, 0, 2376, 2376, 2376, 2376, 2377, 2377, 2377, 2377, 0, 0, 0, 2368, 0, 2372, 0, 2372, 0, 2373, 0, 2373, 3932, 2369, 2376, 3932, 2376, 0, 2377, 3932, 2377, 2370, 2378, 2378, 2378, 2378, 2371, 2379, 2379, 2379, 2379, 2380, 2380, 2380, 2380, 3932, 0, 2372, 0, 0, 0, 2373, 0, 0, 2378, 0, 2378, 0, 0, 2379, 0, 2379, 0, 2380, 0, 2380, 0, 0, 2377, 0, 2376, 0, 2381, 2381, 2381, 2381, 0, 2382, 2382, 2382, 2382, 2383, 2383, 2383, 2383, 0, 2378, 2384, 2384, 2384, 2384, 0, 0, 2380, 2381, 0, 2381, 0, 0, 2382, 0, 2382, 0, 2383, 0, 2383, 0, 2379, 0, 2384, 0, 2384, 2385, 2385, 2385, 2385, 2386, 2386, 2386, 2386, 2387, 2387, 2387, 2387, 2401, 2401, 2401, 2401, 2381, 2382, 2410, 2410, 2410, 2410, 2385, 2401, 2385, 0, 2386, 0, 2386, 0, 2387, 0, 2387, 0, 0, 2410, 2432, 2432, 2432, 2432, 2410, 0, 0, 2432, 0, 2383, 0, 0, 0, 2432, 2483, 2483, 2483, 2483, 0, 0, 2386, 2492, 2492, 2492, 2492, 2483, 0, 2484, 2484, 2484, 2484, 0, 2387, 0, 2385, 0, 2483, 0, 2484, 2486, 2486, 2486, 2486, 2486, 0, 2401, 2486, 0, 2410, 2484, 2487, 2487, 2487, 2487, 2493, 2493, 2493, 2493, 0, 0, 0, 2486, 2502, 2502, 2502, 2502, 0, 2487, 2483, 0, 0, 0, 2487, 0, 0, 0, 2493, 2504, 2504, 2504, 2504, 2506, 2506, 2506, 2506, 2507, 2507, 2507, 2507, 2529, 2529, 2529, 2529, 2534, 2534, 2534, 2534, 0, 0, 0, 2534, 0, 2534, 2484, 0, 0, 2534, 2536, 2536, 2536, 2536, 0, 0, 2487, 0, 0, 0, 2486, 2537, 2537, 2537, 2537, 2539, 2539, 2539, 2539, 0, 0, 0, 2536, 2537, 0, 0, 2539, 0, 2506, 0, 0, 2502, 0, 2537, 0, 2537, 2540, 2540, 2540, 2540, 0, 0, 0, 2506, 0, 0, 0, 2540, 2541, 2541, 2541, 2541, 2542, 2542, 2542, 2542, 0, 0, 2529, 2541, 0, 0, 0, 2542, 2543, 2543, 2543, 2543, 0, 2544, 2544, 2544, 2544, 0, 0, 2543, 2545, 2545, 2545, 2545, 2544, 0, 2546, 2546, 2546, 2546, 0, 2545, 2547, 2547, 2547, 2547, 0, 0, 0, 2548, 2548, 2548, 2548, 2540, 2597, 2597, 2597, 2597, 2546, 2541, 2546, 0, 0, 0, 2547, 0, 2547, 2546, 0, 0, 0, 2548, 2543, 2548, 0, 2547, 2542, 2544, 2548, 2549, 2549, 2549, 2549, 0, 2545, 0, 2550, 2550, 2550, 2550, 2551, 2551, 2551, 2551, 2553, 2553, 2553, 2553, 0, 0, 0, 2549, 0, 2549, 2554, 2554, 2554, 2554, 2550, 0, 2550, 0, 2551, 0, 2551, 0, 2553, 0, 2553, 2555, 2555, 2555, 2555, 0, 0, 0, 2554, 0, 2554, 0, 2555, 2556, 2556, 2556, 2556, 2559, 2559, 2559, 2559, 2549, 2550, 2555, 0, 2555, 2560, 2560, 2560, 2560, 2561, 2561, 2561, 2561, 2554, 2556, 0, 2556, 0, 2559, 2554, 2559, 2554, 0, 0, 2553, 0, 0, 2560, 0, 2560, 0, 2561, 0, 2561, 2554, 0, 2554, 2562, 2562, 2562, 2562, 0, 2562, 0, 2563, 2563, 2563, 2563, 2564, 2564, 2564, 2564, 2565, 2565, 2565, 2565, 0, 0, 0, 2562, 0, 2562, 2556, 0, 0, 2560, 2563, 0, 2563, 2561, 2564, 0, 2564, 0, 2565, 0, 2565, 2566, 2566, 2566, 2566, 2567, 2567, 2567, 2567, 2568, 2568, 2568, 2568, 2569, 2569, 2569, 2569, 2570, 2570, 2570, 2570, 0, 0, 2566, 0, 2566, 2564, 2567, 0, 2567, 0, 2568, 2565, 2568, 0, 2569, 0, 2569, 0, 2570, 0, 2570, 2571, 2571, 2571, 2571, 2572, 2572, 2572, 2572, 2573, 2573, 2573, 2573, 2574, 2574, 2574, 2574, 0, 0, 0, 2568, 0, 2566, 2571, 2569, 2571, 0, 2572, 0, 2572, 0, 2573, 0, 2573, 0, 2574, 0, 2574, 2575, 2575, 2575, 2575, 2576, 2576, 2576, 2576, 2577, 2577, 2577, 2577, 0, 2578, 2578, 2578, 2578, 2579, 2579, 2579, 2579, 0, 2575, 0, 2575, 0, 2576, 0, 2576, 0, 2577, 2574, 2577, 0, 0, 2578, 2572, 2578, 2571, 2579, 0, 2579, 2582, 2582, 2582, 2582, 2583, 2583, 2583, 2583, 0, 0, 2575, 2584, 2584, 2584, 2584, 0, 0, 2579, 2576, 0, 0, 0, 2582, 0, 2582, 0, 2583, 0, 2583, 2585, 2585, 2585, 2585, 2584, 0, 2584, 2577, 2586, 2586, 2586, 2586, 2578, 0, 0, 2579, 2587, 2587, 2587, 2587, 0, 0, 2585, 0, 2585, 0, 0, 2582, 0, 0, 2586, 0, 2586, 2588, 2588, 2588, 2588, 0, 2587, 0, 2587, 0, 0, 0, 2583, 2589, 2589, 2589, 2589, 0, 2591, 2591, 2591, 2591, 0, 2588, 0, 2588, 2592, 2592, 2592, 2592, 2593, 2593, 2593, 2593, 0, 2589, 0, 2589, 0, 0, 2591, 2587, 2591, 0, 2585, 0, 2586, 0, 2592, 0, 2592, 0, 2593, 0, 2593, 2594, 2594, 2594, 2594, 2595, 2595, 2595, 2595, 0, 2588, 2601, 2601, 2601, 2601, 2604, 2604, 2604, 2604, 0, 0, 0, 2601, 2594, 0, 2594, 2592, 2595, 0, 2595, 0, 2606, 2606, 2606, 2606, 2607, 2607, 2607, 2607, 0, 0, 2592, 2606, 2608, 2608, 2608, 2608, 2610, 2610, 2610, 2610, 2593, 0, 0, 2608, 2613, 2613, 2613, 2613, 2615, 2615, 2615, 2615, 2594, 0, 0, 0, 2595, 2658, 2658, 2658, 2658, 2613, 2659, 2659, 2659, 2659, 2613, 0, 2658, 2601, 0, 0, 0, 2659, 0, 2662, 2662, 2662, 2662, 2658, 2663, 2663, 2663, 2663, 2659, 2665, 2665, 2665, 2665, 0, 0, 0, 2662, 0, 0, 0, 2613, 2662, 2666, 2666, 2666, 2666, 2667, 2667, 2667, 2667, 2668, 2668, 2668, 2668, 2615, 2678, 2678, 2678, 2678, 2680, 2680, 2680, 2680, 2682, 2682, 2682, 2682, 2685, 2685, 2685, 2685, 2658, 2668, 0, 0, 2662, 2687, 2687, 2687, 2687, 0, 0, 2659, 2690, 2690, 2690, 2690, 2693, 2693, 2693, 2693, 0, 2699, 2699, 2699, 2699, 2701, 2701, 2701, 2701, 2702, 2702, 2702, 2702, 0, 2690, 0, 2680, 2705, 2705, 2705, 2705, 0, 2680, 2699, 2680, 2711, 2711, 2711, 2711, 0, 2712, 2712, 2712, 2712, 0, 0, 2711, 2680, 0, 2680, 0, 2712, 0, 2699, 2713, 2713, 2713, 2713, 2714, 2714, 2714, 2714, 0, 0, 0, 2713, 0, 0, 0, 2714, 2715, 2715, 2715, 2715, 2716, 2716, 2716, 2716, 0, 0, 2699, 2715, 0, 0, 0, 2716, 0, 2717, 2717, 2717, 2717, 2711, 2712, 0, 0, 2702, 2718, 2718, 2718, 2718, 2719, 2719, 2719, 2719, 0, 2720, 2720, 2720, 2720, 2717, 2713, 2717, 2721, 2721, 2721, 2721, 0, 0, 2718, 0, 2718, 0, 2719, 0, 2719, 0, 0, 2720, 2714, 2720, 0, 0, 2717, 0, 2721, 2715, 2721, 0, 2719, 2718, 2722, 2722, 2722, 2722, 2725, 2725, 2725, 2725, 2726, 2726, 2726, 2726, 0, 2726, 0, 2725, 0, 0, 2726, 0, 0, 0, 2722, 0, 2722, 0, 2725, 0, 2725, 2727, 2727, 2727, 2727, 0, 2720, 2730, 2730, 2730, 2730, 0, 0, 0, 2721, 2731, 2731, 2731, 2731, 2732, 2732, 2732, 2732, 2727, 2732, 2727, 0, 0, 0, 2730, 0, 2730, 2734, 2734, 2734, 2734, 0, 2731, 0, 2731, 0, 2732, 0, 2732, 2735, 2735, 2735, 2735, 0, 2737, 2737, 2737, 2737, 0, 2734, 0, 2734, 2727, 2738, 2738, 2738, 2738, 2742, 2742, 2742, 2742, 2735, 0, 2735, 0, 0, 2737, 2730, 2737, 2739, 2739, 2739, 2739, 0, 0, 2738, 0, 2738, 0, 2742, 2731, 2734, 0, 2772, 2772, 2772, 2772, 2773, 2773, 2773, 2773, 2739, 0, 2739, 2772, 0, 2734, 0, 2734, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2736, 2737, 0, 0, 2736, 2739, 2736, 2736, 2736, 2736, 2736, 0, 2740, 2740, 2740, 2740, 2741, 2741, 2741, 2741, 2743, 2743, 2743, 2743, 2744, 2744, 2744, 2744, 0, 0, 2736, 2736, 2736, 2736, 2740, 0, 2740, 0, 2741, 0, 2741, 0, 2743, 0, 2743, 0, 2744, 0, 2744, 2745, 2745, 2745, 2745, 2746, 2746, 2746, 2746, 0, 2736, 2736, 2736, 2747, 2747, 2747, 2747, 2748, 2748, 2748, 2748, 0, 0, 2745, 0, 2745, 2740, 2746, 0, 2746, 2749, 2749, 2749, 2749, 0, 2747, 0, 2747, 0, 2748, 0, 2748, 2750, 2750, 2750, 2750, 2751, 2751, 2751, 2751, 0, 0, 2749, 0, 2749, 2752, 2752, 2752, 2752, 2748, 2753, 2753, 2753, 2753, 2750, 0, 2750, 2747, 2751, 0, 2751, 2754, 2754, 2754, 2754, 0, 0, 2752, 2758, 2758, 2758, 2758, 2753, 0, 2753, 0, 2748, 0, 2751, 0, 2749, 0, 0, 2754, 0, 2754, 0, 0, 2750, 0, 2758, 0, 2758, 0, 0, 2749, 2759, 2759, 2759, 2759, 0, 2753, 0, 0, 0, 2751, 2760, 2760, 2760, 2760, 2762, 2762, 2762, 2762, 2763, 2763, 2763, 2763, 2759, 0, 2759, 0, 0, 2754, 2764, 2764, 2764, 2764, 2760, 0, 2760, 0, 2762, 0, 2762, 0, 2763, 0, 2763, 2767, 2767, 2767, 2767, 0, 0, 0, 2764, 0, 2764, 2768, 2768, 2768, 2768, 2769, 2769, 2769, 2769, 2774, 2774, 2774, 2774, 2767, 0, 2767, 0, 0, 2762, 2778, 2778, 2778, 2778, 2768, 0, 2768, 0, 2769, 0, 2769, 2778, 0, 2764, 2780, 2780, 2780, 2780, 2781, 2781, 2781, 2781, 2784, 2784, 2784, 2784, 2785, 2785, 2785, 2785, 2822, 2822, 2822, 2822, 2823, 2823, 2823, 2823, 2767, 2784, 0, 0, 2769, 0, 2784, 0, 0, 2822, 2825, 2825, 2825, 2825, 2822, 2826, 2826, 2826, 2826, 2827, 2827, 2827, 2827, 2833, 2833, 2833, 2833, 2837, 2837, 2837, 2837, 2841, 2841, 2841, 2841, 0, 0, 0, 2784, 0, 0, 2827, 0, 0, 2785, 2843, 2843, 2843, 2843, 2846, 2846, 2846, 2846, 0, 0, 0, 2822, 2847, 2847, 2847, 2847, 2848, 2848, 2848, 2848, 2849, 2849, 2849, 2849, 0, 0, 2846, 2850, 2850, 2850, 2850, 2851, 2851, 2851, 2851, 2853, 2853, 2853, 2853, 0, 0, 0, 2849, 2856, 2856, 2856, 2856, 2857, 2857, 2857, 2857, 2860, 2860, 2860, 2860, 0, 0, 2853, 2861, 2861, 2861, 2861, 0, 0, 0, 2856, 2862, 2862, 2862, 2862, 0, 0, 0, 2860, 0, 0, 0, 2853, 2863, 2863, 2863, 2863, 0, 0, 0, 2856, 2866, 2866, 2866, 2866, 2868, 2868, 2868, 2868, 2869, 2869, 2869, 2869, 0, 0, 0, 2868, 0, 0, 2853, 2869, 2870, 2870, 2870, 2870, 0, 0, 2856, 2871, 2871, 2871, 2871, 2870, 2872, 2872, 2872, 2872, 0, 0, 2871, 2873, 2873, 2873, 2873, 2872, 0, 2874, 2874, 2874, 2874, 0, 2873, 2875, 2875, 2875, 2875, 2876, 2876, 2876, 2876, 0, 0, 0, 2869, 2877, 2877, 2877, 2877, 2874, 2868, 2874, 0, 0, 0, 2875, 0, 2875, 0, 2876, 0, 2876, 0, 0, 0, 2871, 0, 2877, 0, 2877, 2878, 2878, 2878, 2878, 0, 0, 2872, 0, 2875, 0, 0, 2876, 0, 2879, 2879, 2879, 2879, 0, 2881, 2881, 2881, 2881, 2878, 2881, 2878, 0, 0, 0, 2881, 2883, 2883, 2883, 2883, 0, 2877, 2879, 0, 2879, 2886, 2886, 2886, 2886, 2887, 2887, 2887, 2887, 2892, 2892, 2892, 2892, 0, 2883, 0, 2883, 2894, 2894, 2894, 2894, 0, 0, 2886, 0, 2886, 0, 2887, 0, 2887, 0, 2892, 0, 2892, 2895, 2895, 2895, 2895, 0, 2894, 0, 2894, 2896, 2896, 2896, 2896, 2897, 2897, 2897, 2897, 2898, 2898, 2898, 2898, 0, 0, 2895, 0, 2895, 0, 2883, 0, 0, 0, 2896, 2886, 2896, 0, 2897, 0, 2897, 2899, 2899, 2899, 2899, 2900, 2900, 2900, 2900, 0, 0, 0, 2894, 2901, 2901, 2901, 2901, 2902, 2902, 2902, 2902, 0, 0, 2899, 0, 2899, 0, 2900, 2896, 2900, 2903, 2903, 2903, 2903, 0, 2901, 0, 2901, 0, 2902, 0, 2902, 2904, 2904, 2904, 2904, 2905, 2905, 2905, 2905, 0, 0, 2903, 0, 2903, 2906, 2906, 2906, 2906, 2907, 2907, 2907, 2907, 0, 2904, 0, 0, 0, 2905, 0, 2905, 0, 2903, 2902, 0, 0, 0, 2906, 0, 2906, 0, 2907, 0, 2907, 2908, 2908, 2908, 2908, 2909, 2909, 2909, 2909, 2910, 2910, 2910, 2910, 0, 2905, 0, 2903, 2911, 2911, 2911, 2911, 0, 0, 2908, 0, 2908, 0, 2909, 0, 2909, 0, 0, 2907, 0, 2906, 2912, 2912, 2912, 2912, 2911, 0, 2911, 2915, 2915, 2915, 2915, 2916, 2916, 2916, 2916, 2917, 2917, 2917, 2917, 0, 0, 0, 2912, 0, 2912, 2909, 2911, 0, 0, 2915, 0, 2915, 0, 2916, 0, 2916, 0, 2917, 2918, 2918, 2918, 2918, 2919, 2919, 2919, 2919, 2922, 2922, 2922, 2922, 0, 2923, 2923, 2923, 2923, 2927, 2927, 2927, 2927, 0, 2918, 0, 2918, 0, 2919, 2912, 2919, 0, 2922, 0, 2922, 0, 2915, 2923, 0, 2923, 2928, 2928, 2928, 2928, 2929, 2929, 2929, 2929, 0, 0, 2918, 2938, 2938, 2938, 2938, 0, 2918, 0, 2918, 2931, 2931, 2931, 2931, 0, 0, 0, 2922, 2956, 2956, 2956, 2956, 2918, 0, 2918, 2918, 0, 2931, 2957, 2957, 2957, 2957, 2931, 0, 0, 2956, 2958, 2958, 2958, 2958, 2956, 2959, 2959, 2959, 2959, 2962, 2962, 2962, 2962, 2965, 2965, 2965, 2965, 2968, 2968, 2968, 2968, 2969, 2969, 2969, 2969, 0, 0, 2959, 0, 0, 2931, 2972, 2972, 2972, 2972, 2973, 2973, 2973, 2973, 2975, 2975, 2975, 2975, 2976, 2976, 2976, 2976, 2977, 2977, 2977, 2977, 0, 2956, 2978, 2978, 2978, 2978, 2980, 2980, 2980, 2980, 2975, 2981, 2981, 2981, 2981, 0, 0, 0, 2977, 2985, 2985, 2985, 2985, 2989, 2989, 2989, 2989, 0, 2980, 2990, 2990, 2990, 2990, 2991, 2991, 2991, 2991, 2992, 2992, 2992, 2992, 2994, 2994, 2994, 2994, 2989, 0, 0, 2980, 2995, 2995, 2995, 2995, 2996, 2996, 2996, 2996, 0, 0, 0, 2995, 0, 0, 0, 2996, 2997, 2997, 2997, 2997, 2998, 2998, 2998, 2998, 0, 0, 2980, 2997, 0, 0, 0, 2998, 2991, 2999, 2999, 2999, 2999, 0, 2991, 0, 2991, 0, 0, 0, 2999, 3000, 3000, 3000, 3000, 3001, 3001, 3001, 3001, 2991, 0, 2991, 2991, 0, 0, 0, 2996, 3002, 3002, 3002, 3002, 0, 0, 3000, 0, 3000, 2995, 3001, 0, 3001, 0, 2998, 3003, 3003, 3003, 3003, 0, 0, 0, 3002, 0, 3002, 3006, 3006, 3006, 3006, 0, 0, 3000, 3007, 3007, 3007, 3007, 0, 3003, 0, 3003, 3008, 3008, 3008, 3008, 3001, 0, 0, 3006, 0, 3006, 3020, 3020, 3020, 3020, 3007, 0, 3007, 3014, 3014, 3014, 3014, 3015, 3015, 3015, 3015, 3016, 3016, 3016, 3016, 0, 0, 0, 3003, 3017, 3017, 3017, 3017, 0, 0, 3014, 0, 3014, 0, 3015, 0, 3015, 0, 3016, 0, 3016, 3018, 3018, 3018, 3018, 0, 3017, 0, 3017, 0, 3028, 3028, 3028, 3028, 3031, 3031, 3031, 3031, 3038, 3038, 3038, 3038, 0, 3018, 0, 0, 0, 3008, 3039, 3039, 3039, 3039, 3014, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 0, 0, 0, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3021, 3021, 3021, 3021, 3022, 3022, 3022, 3022, 3023, 3023, 3023, 3023, 3024, 3024, 3024, 3024, 0, 0, 0, 3019, 3019, 3019, 3021, 3028, 3021, 0, 3022, 0, 3022, 0, 3023, 0, 3023, 0, 3024, 0, 3024, 3025, 3025, 3025, 3025, 0, 0, 0, 3021, 0, 0, 3019, 3019, 3019, 3026, 3026, 3026, 3026, 3027, 3027, 3027, 3027, 0, 3025, 0, 3025, 3030, 3030, 3030, 3030, 0, 0, 0, 3022, 0, 0, 3026, 0, 3026, 0, 3027, 3023, 3027, 3025, 3034, 3034, 3034, 3034, 3030, 0, 3030, 0, 3026, 3037, 3037, 3037, 3037, 3040, 3040, 3040, 3040, 3041, 3041, 3041, 3041, 0, 3034, 0, 3034, 0, 3025, 3042, 3042, 3042, 3042, 3037, 0, 3037, 3043, 3043, 3043, 3043, 3044, 3044, 3044, 3044, 0, 0, 3027, 0, 3030, 3045, 3045, 3045, 3045, 3049, 3049, 3049, 3049, 3063, 3063, 3063, 3063, 3064, 3064, 3064, 3064, 0, 3045, 3065, 3065, 3065, 3065, 3045, 0, 0, 3063, 3066, 3066, 3066, 3066, 3063, 3069, 3069, 3069, 3069, 3071, 3071, 3071, 3071, 3073, 3073, 3073, 3073, 3075, 3075, 3075, 3075, 0, 3066, 3076, 3076, 3076, 3076, 3077, 3077, 3077, 3077, 3078, 3078, 3078, 3078, 3079, 3079, 3079, 3079, 3080, 3080, 3080, 3080, 3081, 3081, 3081, 3081, 3085, 3085, 3085, 3085, 3063, 3086, 3086, 3086, 3086, 0, 3079, 3089, 3089, 3089, 3089, 3090, 3090, 3090, 3090, 3091, 3091, 3091, 3091, 3092, 3092, 3092, 3092, 3086, 0, 0, 3091, 0, 0, 0, 3092, 3093, 3093, 3093, 3093, 3094, 3094, 3094, 3094, 0, 0, 0, 3093, 3086, 0, 0, 3094, 3095, 3095, 3095, 3095, 3096, 3096, 3096, 3096, 3097, 3097, 3097, 3097, 3098, 3098, 3098, 3098, 3100, 3100, 3100, 3100, 3091, 0, 3095, 3086, 3095, 0, 3096, 0, 3096, 0, 3097, 0, 3097, 3101, 3101, 3101, 3101, 0, 3100, 0, 3100, 3107, 3107, 3107, 3107, 3108, 3108, 3108, 3108, 3109, 3109, 3109, 3109, 3110, 3110, 3110, 3110, 0, 0, 3096, 3097, 0, 0, 3107, 0, 3107, 0, 3108, 0, 3108, 0, 3109, 0, 3109, 3115, 3115, 3115, 3115, 3117, 3117, 3117, 3117, 3119, 3119, 3119, 3119, 0, 0, 3098, 3120, 3120, 3120, 3120, 0, 0, 3107, 3115, 0, 3115, 0, 3117, 0, 3117, 3109, 3119, 3124, 3124, 3124, 3124, 3101, 0, 3120, 3115, 3120, 3131, 3131, 3131, 3131, 3109, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 0, 3120, 0, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3116, 3116, 3116, 3116, 3118, 3118, 3118, 3118, 0, 3121, 3121, 3121, 3121, 3122, 3122, 3122, 3122, 3123, 3123, 3123, 3123, 0, 3116, 0, 3116, 0, 3118, 0, 3118, 0, 0, 3121, 0, 3121, 0, 3122, 0, 3122, 0, 3123, 0, 3123, 3126, 3126, 3126, 3126, 3118, 3132, 3132, 3132, 3132, 0, 0, 3122, 3127, 3127, 3127, 3127, 3146, 3146, 3146, 3146, 0, 0, 3132, 3147, 3147, 3147, 3147, 3132, 3116, 3121, 0, 3118, 0, 3146, 3127, 0, 3127, 0, 3146, 3148, 3148, 3148, 3148, 0, 3123, 3150, 3150, 3150, 3150, 3151, 3151, 3151, 3151, 3152, 3152, 3152, 3152, 3155, 3155, 3155, 3155, 3148, 3156, 3156, 3156, 3156, 3127, 3157, 3157, 3157, 3157, 3158, 3158, 3158, 3158, 0, 3126, 3161, 3161, 3161, 3161, 3162, 3162, 3162, 3162, 3163, 3163, 3163, 3163, 3168, 3168, 3168, 3168, 3169, 3169, 3169, 3169, 0, 0, 3161, 3168, 0, 0, 3162, 3169, 3170, 3170, 3170, 3170, 3171, 3171, 3171, 3171, 0, 0, 0, 3170, 3172, 3172, 3172, 3172, 3157, 0, 3162, 3176, 3176, 3176, 3176, 0, 0, 0, 3171, 0, 3171, 0, 0, 3157, 3180, 3180, 3180, 3180, 0, 3181, 3181, 3181, 3181, 3176, 0, 3176, 0, 3162, 3182, 3182, 3182, 3182, 3183, 3183, 3183, 3183, 3168, 0, 0, 3180, 3171, 3181, 0, 3181, 3184, 3184, 3184, 3184, 0, 0, 3182, 0, 3182, 0, 3183, 0, 3183, 3176, 0, 3181, 3185, 3185, 3185, 3185, 0, 0, 3184, 3186, 3186, 3186, 3186, 3187, 3187, 3187, 3187, 0, 3188, 3188, 3188, 3188, 3189, 3189, 3189, 3189, 3190, 3190, 3190, 3190, 0, 3186, 0, 3186, 0, 3187, 0, 3187, 0, 3182, 3188, 0, 3188, 0, 3189, 0, 3189, 3192, 3192, 3192, 3192, 0, 0, 3186, 3193, 3193, 3193, 3193, 3204, 3204, 3204, 3204, 0, 3188, 3205, 3205, 3205, 3205, 0, 3192, 0, 3192, 3206, 3206, 3206, 3206, 0, 0, 3187, 0, 3204, 3208, 3208, 3208, 3208, 3209, 3209, 3209, 3209, 3213, 3213, 3213, 3213, 0, 3206, 3214, 3214, 3214, 3214, 3218, 3218, 3218, 3218, 3192, 3219, 3219, 3219, 3219, 0, 0, 0, 3213, 0, 0, 0, 3219, 3220, 3220, 3220, 3220, 0, 3218, 3221, 3221, 3221, 3221, 3225, 3225, 3225, 3225, 3193, 3226, 3226, 3226, 3226, 0, 0, 0, 3220, 0, 3220, 3228, 3228, 3228, 3228, 3229, 3229, 3229, 3229, 0, 0, 3225, 3230, 3230, 3230, 3230, 3226, 3231, 3231, 3231, 3231, 0, 0, 3228, 3219, 3228, 0, 3229, 0, 3229, 0, 0, 3220, 0, 3232, 3232, 3232, 3232, 0, 3231, 0, 3231, 3233, 3233, 3233, 3233, 3228, 3234, 3234, 3234, 3234, 3235, 3235, 3235, 3235, 3231, 3232, 0, 3232, 3236, 3236, 3236, 3236, 0, 3233, 0, 3233, 0, 0, 3234, 0, 3234, 0, 3235, 3238, 3238, 3238, 3238, 3245, 3245, 3245, 3245, 3255, 3255, 3255, 3255, 3233, 3246, 3246, 3246, 3246, 3250, 3250, 3250, 3250, 3254, 3254, 3254, 3254, 3256, 3256, 3256, 3256, 0, 3232, 3257, 3257, 3257, 3257, 3246, 3256, 0, 0, 3250, 0, 0, 0, 3254, 3260, 3260, 3260, 3260, 3261, 3261, 3261, 3261, 3262, 3262, 3262, 3262, 3263, 3263, 3263, 3263, 3264, 3264, 3264, 3264, 0, 0, 3260, 0, 3260, 0, 3261, 0, 3261, 0, 3262, 0, 3238, 0, 3263, 0, 3263, 0, 3264, 0, 3264, 0, 0, 0, 3260, 0, 3256, 3265, 3265, 3265, 3265, 0, 3263, 3266, 3266, 3266, 3266, 3270, 3270, 3270, 3270, 3271, 3271, 3271, 3271, 3274, 3274, 3274, 3274, 3275, 3275, 3275, 3275, 3278, 3278, 3278, 3278, 3281, 3281, 3281, 3281, 0, 0, 3271, 3278, 3264, 0, 3274, 3282, 3282, 3282, 3282, 3283, 3283, 3283, 3283, 3284, 3284, 3284, 3284, 3285, 3285, 3285, 3285, 3288, 3288, 3288, 3288, 0, 0, 3282, 0, 3282, 0, 3283, 0, 3283, 3289, 3289, 3289, 3289, 0, 3285, 0, 0, 0, 3288, 0, 3289, 3290, 3290, 3290, 3290, 3282, 0, 0, 0, 3278, 3292, 3292, 3292, 3292, 3293, 3293, 3293, 3293, 3294, 3294, 3294, 3294, 3295, 3295, 3295, 3295, 3296, 3296, 3296, 3296, 0, 0, 3292, 0, 3292, 0, 3293, 0, 3293, 0, 3294, 3297, 3297, 3297, 3297, 0, 0, 0, 3296, 3299, 3299, 3299, 3299, 0, 3292, 3300, 3300, 3300, 3300, 3301, 3301, 3301, 3301, 3302, 3302, 3302, 3302, 0, 0, 0, 3301, 3299, 3304, 3304, 3304, 3304, 0, 3290, 3305, 3305, 3305, 3305, 3306, 3306, 3306, 3306, 3307, 3307, 3307, 3307, 3308, 3308, 3308, 3308, 3309, 3309, 3309, 3309, 3311, 3311, 3311, 3311, 3312, 3312, 3312, 3312, 0, 0, 3307, 3313, 3313, 3313, 3313, 3314, 3314, 3314, 3314, 3315, 3315, 3315, 3315, 0, 0, 0, 3312, 3316, 3316, 3316, 3316, 3317, 3317, 3317, 3317, 0, 0, 3314, 3318, 3318, 3318, 3318, 3319, 3319, 3319, 3319, 0, 0, 0, 3316, 3304, 3320, 3320, 3320, 3320, 3321, 3321, 3321, 3321, 0, 3318, 3322, 3322, 3322, 3322, 3323, 3323, 3323, 3323, 3324, 3324, 3324, 3324, 3320, 3325, 3325, 3325, 3325, 3326, 3326, 3326, 3326, 0, 3322, 3327, 3327, 3327, 3327, 0, 0, 0, 3324, 3328, 3328, 3328, 3328, 3329, 3329, 3329, 3329, 3326, 3330, 3330, 3330, 3330, 3331, 3331, 3331, 3331, 3332, 3332, 3332, 3332, 0, 3328, 3333, 3333, 3333, 3333, 3334, 3334, 3334, 3334, 3330, 3335, 3335, 3335, 3335, 0, 0, 0, 3332, 3336, 3336, 3336, 3336, 3337, 3337, 3337, 3337, 0, 3334, 3338, 3338, 3338, 3338, 3339, 3339, 3339, 3339, 3340, 3340, 3340, 3340, 3336, 3341, 3341, 3341, 3341, 3342, 3342, 3342, 3342, 0, 3338, 3343, 3343, 3343, 3343, 0, 0, 0, 3340, 3344, 3344, 3344, 3344, 3345, 3345, 3345, 3345, 3342, 3346, 3346, 3346, 3346, 3347, 3347, 3347, 3347, 3348, 3348, 3348, 3348, 0, 3344, 3349, 3349, 3349, 3349, 3350, 3350, 3350, 3350, 3346, 3351, 3351, 3351, 3351, 0, 0, 0, 3348, 3352, 3352, 3352, 3352, 3353, 3353, 3353, 3353, 0, 3350, 3354, 3354, 3354, 3354, 3355, 3355, 3355, 3355, 3356, 3356, 3356, 3356, 3352, 3357, 3357, 3357, 3357, 3358, 3358, 3358, 3358, 0, 3354, 3359, 3359, 3359, 3359, 0, 0, 0, 3356, 3360, 3360, 3360, 3360, 3361, 3361, 3361, 3361, 3358, 3362, 3362, 3362, 3362, 3363, 3363, 3363, 3363, 3364, 3364, 3364, 3364, 0, 3360, 3365, 3365, 3365, 3365, 3366, 3366, 3366, 3366, 3362, 3367, 3367, 3367, 3367, 0, 0, 0, 3364, 3368, 3368, 3368, 3368, 3369, 3369, 3369, 3369, 0, 3366, 3370, 3370, 3370, 3370, 3371, 3371, 3371, 3371, 3372, 3372, 3372, 3372, 3368, 3373, 3373, 3373, 3373, 3374, 3374, 3374, 3374, 0, 3370, 3375, 3375, 3375, 3375, 0, 0, 0, 3372, 3376, 3376, 3376, 3376, 3377, 3377, 3377, 3377, 3374, 3378, 3378, 3378, 3378, 3379, 3379, 3379, 3379, 3380, 3380, 3380, 3380, 0, 3376, 3381, 3381, 3381, 3381, 3382, 3382, 3382, 3382, 3378, 3383, 3383, 3383, 3383, 0, 0, 0, 3380, 3384, 3384, 3384, 3384, 3385, 3385, 3385, 3385, 0, 3382, 3386, 3386, 3386, 3386, 3387, 3387, 3387, 3387, 3388, 3388, 3388, 3388, 3384, 3389, 3389, 3389, 3389, 3390, 3390, 3390, 3390, 0, 3386, 3391, 3391, 3391, 3391, 0, 0, 0, 3388, 3392, 3392, 3392, 3392, 3393, 3393, 3393, 3393, 3390, 3394, 3394, 3394, 3394, 3395, 3395, 3395, 3395, 3396, 3396, 3396, 3396, 0, 3392, 3397, 3397, 3397, 3397, 3398, 3398, 3398, 3398, 3394, 3399, 3399, 3399, 3399, 0, 0, 0, 3396, 3400, 3400, 3400, 3400, 3401, 3401, 3401, 3401, 0, 3398, 3402, 3402, 3402, 3402, 3403, 3403, 3403, 3403, 3404, 3404, 3404, 3404, 3400, 3405, 3405, 3405, 3405, 3406, 3406, 3406, 3406, 0, 3402, 3407, 3407, 3407, 3407, 0, 0, 0, 3404, 3408, 3408, 3408, 3408, 3409, 3409, 3409, 3409, 3406, 3410, 3410, 3410, 3410, 3411, 3411, 3411, 3411, 3412, 3412, 3412, 3412, 0, 3408, 3413, 3413, 3413, 3413, 3414, 3414, 3414, 3414, 3410, 3415, 3415, 3415, 3415, 0, 0, 0, 3412, 3416, 3416, 3416, 3416, 3417, 3417, 3417, 3417, 0, 3414, 3418, 3418, 3418, 3418, 3419, 3419, 3419, 3419, 3420, 3420, 3420, 3420, 3416, 3421, 3421, 3421, 3421, 3422, 3422, 3422, 3422, 0, 3418, 3423, 3423, 3423, 3423, 0, 0, 0, 3420, 3424, 3424, 3424, 3424, 3425, 3425, 3425, 3425, 3422, 3426, 3426, 3426, 3426, 3427, 3427, 3427, 3427, 3428, 3428, 3428, 3428, 0, 3424, 3429, 3429, 3429, 3429, 3430, 3430, 3430, 3430, 3426, 3431, 3431, 3431, 3431, 0, 0, 0, 3428, 3432, 3432, 3432, 3432, 3433, 3433, 3433, 3433, 0, 3430, 3434, 3434, 3434, 3434, 3435, 3435, 3435, 3435, 3436, 3436, 3436, 3436, 3432, 3437, 3437, 3437, 3437, 0, 0, 0, 0, 0, 3434, 0, 0, 0, 0, 0, 0, 0, 3436, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3440, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3448, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3453, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 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, 3458, 3458, 3458, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 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, 3466, 3466, 3466, 3466, 3466, 3466, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 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, 3470, 3470, 3470, 3470, 3470, 3470, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 3471, 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, 3472, 3472, 3472, 3472, 3472, 3472, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 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, 3475, 3475, 3475, 3475, 3475, 3475, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3491, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3496, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3501, 0, 0, 3501, 0, 0, 0, 0, 0, 0, 3501, 0, 0, 0, 0, 0, 3501, 0, 0, 0, 0, 0, 0, 3501, 3502, 3502, 3502, 3502, 0, 0, 0, 3502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3502, 3503, 3503, 3503, 3503, 3503, 0, 0, 3503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3503, 0, 0, 0, 0, 0, 3503, 0, 0, 0, 0, 0, 3503, 3504, 3504, 3504, 3504, 0, 0, 0, 3504, 0, 0, 0, 0, 0, 0, 3504, 0, 0, 0, 0, 0, 0, 0, 0, 3504, 0, 0, 0, 0, 0, 3504, 3505, 3505, 3505, 3505, 0, 0, 0, 0, 0, 0, 3505, 0, 0, 0, 3505, 0, 3505, 3505, 3505, 3505, 0, 0, 0, 3505, 3506, 3506, 3506, 3506, 0, 0, 0, 3506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3506, 3507, 3507, 3507, 3507, 0, 0, 0, 3507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3507, 3508, 3508, 3508, 3508, 3508, 0, 0, 3508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3508, 0, 0, 0, 0, 0, 3508, 0, 0, 0, 0, 0, 3508, 3509, 3509, 3509, 3509, 0, 0, 0, 0, 0, 0, 3509, 0, 0, 0, 0, 0, 3509, 3509, 0, 0, 0, 0, 0, 3509, 3513, 0, 0, 0, 3513, 0, 3513, 0, 0, 3513, 0, 0, 0, 3513, 3521, 3521, 3521, 3521, 0, 0, 0, 3521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3521, 0, 0, 0, 3521, 3522, 3522, 3522, 3522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3522, 0, 3522, 3522, 0, 0, 0, 0, 0, 3522, 3523, 3523, 0, 3523, 0, 3523, 3523, 3523, 3523, 3523, 0, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3523, 3524, 3524, 3524, 3524, 0, 0, 0, 3524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3524, 3525, 3525, 3525, 3525, 3525, 0, 0, 3525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3525, 0, 0, 0, 0, 0, 3525, 0, 0, 0, 0, 0, 3525, 3526, 3526, 3526, 3526, 0, 0, 0, 3526, 3526, 0, 0, 0, 3526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3526, 3529, 3529, 3529, 3529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3529, 3529, 0, 3529, 0, 0, 0, 3529, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3531, 3531, 0, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 0, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3532, 3532, 3532, 3532, 0, 0, 0, 3532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3532, 3533, 3533, 3533, 3533, 3533, 0, 0, 3533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3533, 0, 0, 0, 0, 0, 3533, 0, 0, 0, 0, 0, 3533, 3534, 3534, 3534, 3534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3534, 3534, 0, 3534, 0, 0, 0, 3534, 3539, 3539, 0, 0, 3539, 3539, 0, 0, 3539, 3539, 0, 3539, 3539, 3539, 3539, 3539, 0, 3539, 3539, 3539, 3539, 3539, 3539, 0, 3539, 3539, 3539, 3539, 0, 0, 3539, 3540, 3540, 0, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3541, 3541, 0, 3541, 0, 3541, 3541, 3541, 3541, 3541, 0, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3543, 3543, 3543, 3543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3543, 0, 3543, 3543, 0, 0, 0, 0, 0, 3543, 3544, 3544, 3544, 3544, 0, 0, 0, 3544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3544, 3545, 3545, 3545, 3545, 3545, 0, 0, 3545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3545, 0, 0, 0, 0, 0, 3545, 0, 0, 0, 0, 0, 3545, 3546, 3546, 3546, 3546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3546, 3546, 0, 0, 0, 0, 0, 3546, 3547, 3547, 0, 3547, 3547, 3547, 0, 0, 3547, 3547, 0, 3547, 3547, 3547, 3547, 3547, 0, 3547, 3547, 3547, 3547, 3547, 3547, 0, 3547, 3547, 0, 3547, 0, 0, 3547, 3548, 3548, 0, 3548, 0, 3548, 3548, 3548, 3548, 3548, 0, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3549, 3549, 0, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3550, 3550, 0, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 0, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3550, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3552, 3552, 0, 3552, 3552, 3552, 0, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 0, 3552, 0, 3552, 3552, 3552, 3553, 3553, 0, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3553, 3556, 0, 0, 0, 0, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 0, 3556, 0, 0, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3560, 3560, 3560, 3560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3560, 0, 3560, 0, 0, 0, 0, 0, 0, 3560, 3561, 3561, 0, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3566, 3566, 0, 3566, 3566, 3566, 0, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 0, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3571, 3571, 3571, 3571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3571, 3571, 0, 0, 0, 0, 0, 3571, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 0, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3581, 3581, 0, 3581, 0, 3581, 3581, 3581, 3581, 3581, 0, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3582, 3582, 3582, 3582, 0, 0, 0, 3582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3582, 3583, 3583, 3583, 3583, 0, 0, 0, 0, 0, 0, 0, 0, 3583, 0, 0, 0, 3583, 0, 0, 0, 0, 0, 0, 3583, 3584, 3584, 3584, 3584, 0, 0, 0, 3584, 3584, 0, 0, 0, 3584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3584, 3585, 3585, 3585, 3585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3585, 0, 0, 0, 0, 0, 0, 3585, 3585, 3586, 3586, 3586, 3586, 0, 0, 0, 3586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3586, 3587, 3587, 3587, 3587, 3587, 0, 0, 3587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3587, 0, 0, 0, 0, 0, 3587, 0, 0, 0, 0, 0, 3587, 3588, 3588, 3588, 3588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3588, 3588, 0, 0, 0, 0, 0, 3588, 3589, 3589, 0, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3590, 0, 0, 0, 0, 3590, 0, 0, 3590, 3590, 0, 0, 0, 3590, 3590, 3590, 0, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3591, 3591, 0, 3591, 0, 3591, 3591, 3591, 3591, 3591, 0, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3596, 3596, 0, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3597, 3597, 0, 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, 3598, 3598, 0, 3598, 3598, 3598, 0, 3598, 3598, 3598, 0, 0, 0, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3598, 3599, 3599, 0, 3599, 0, 3599, 3599, 3599, 3599, 3599, 0, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3600, 3600, 0, 3600, 3600, 3600, 0, 3600, 3600, 3600, 0, 3600, 3600, 3600, 3600, 3600, 0, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 0, 0, 3600, 3601, 3601, 0, 3601, 0, 3601, 3601, 3601, 3601, 3601, 0, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3602, 3602, 0, 3602, 3602, 3602, 0, 3602, 3602, 3602, 0, 0, 0, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3603, 3603, 0, 3603, 0, 3603, 3603, 3603, 3603, 3603, 0, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3604, 3604, 0, 3604, 3604, 3604, 0, 3604, 3604, 3604, 0, 3604, 3604, 3604, 3604, 3604, 0, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 0, 0, 3604, 3605, 3605, 0, 3605, 0, 3605, 3605, 3605, 3605, 3605, 0, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3607, 3607, 0, 3607, 0, 3607, 3607, 3607, 3607, 3607, 0, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3609, 3609, 0, 3609, 3609, 3609, 0, 3609, 3609, 3609, 0, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 0, 3609, 3609, 3609, 3609, 3610, 3610, 0, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3611, 3611, 0, 3611, 3611, 3611, 0, 3611, 3611, 3611, 0, 0, 0, 3611, 3611, 3611, 0, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3612, 3612, 0, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 0, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 0, 3612, 3612, 0, 3612, 3612, 3612, 3612, 3613, 3613, 0, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 0, 3613, 3613, 0, 3613, 3613, 3613, 3613, 3614, 3614, 3614, 3614, 0, 0, 0, 3614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3614, 3614, 3616, 3616, 3616, 3616, 0, 0, 0, 0, 0, 0, 0, 3616, 0, 3616, 0, 0, 3616, 0, 0, 0, 0, 0, 0, 3616, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3618, 3618, 3618, 3618, 0, 0, 0, 3618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3618, 3620, 3620, 3620, 3620, 0, 0, 0, 0, 0, 0, 3620, 0, 0, 0, 0, 0, 3620, 0, 0, 0, 0, 0, 0, 3620, 3621, 0, 0, 3621, 0, 0, 0, 3621, 3621, 0, 0, 0, 3621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3621, 3622, 3622, 3622, 3622, 0, 0, 0, 3622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3622, 3623, 3623, 3623, 3623, 3623, 0, 0, 3623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3623, 0, 0, 0, 0, 0, 3623, 0, 0, 0, 0, 0, 3623, 3624, 3624, 3624, 3624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3624, 3624, 0, 0, 0, 0, 0, 3624, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3626, 3626, 0, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 0, 3626, 3626, 0, 3626, 3626, 3626, 3626, 3626, 3626, 0, 3626, 3626, 0, 3626, 3626, 3626, 3626, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3628, 3628, 0, 3628, 3628, 3628, 3628, 3628, 0, 3628, 3628, 3628, 3628, 0, 3628, 3628, 0, 3628, 3628, 3628, 0, 3628, 3628, 0, 3628, 3628, 0, 0, 3628, 3628, 3628, 3629, 0, 0, 3629, 0, 0, 0, 0, 0, 0, 3629, 0, 0, 0, 0, 0, 3629, 0, 0, 0, 0, 0, 0, 3629, 3630, 3630, 3630, 3630, 0, 0, 0, 3630, 0, 0, 0, 0, 0, 0, 3630, 0, 0, 0, 0, 0, 0, 0, 0, 3630, 0, 0, 0, 0, 0, 3630, 3631, 3631, 3631, 3631, 0, 0, 0, 3631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3631, 3632, 3632, 3632, 3632, 0, 0, 0, 0, 0, 0, 3632, 0, 0, 0, 0, 0, 3632, 0, 3632, 3632, 0, 0, 0, 3632, 3634, 3634, 3634, 3634, 0, 0, 0, 0, 0, 0, 3634, 0, 0, 0, 3634, 0, 3634, 3634, 3634, 3634, 0, 0, 0, 3634, 3635, 3635, 3635, 3635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3635, 0, 3635, 0, 0, 0, 0, 0, 0, 3635, 3636, 3636, 3636, 3636, 0, 0, 0, 3636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3636, 3637, 3637, 3637, 3637, 0, 0, 0, 3637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3637, 3638, 3638, 3638, 3638, 0, 0, 0, 0, 0, 0, 3638, 0, 0, 0, 0, 0, 3638, 0, 3638, 3638, 0, 0, 0, 3638, 3639, 3639, 3639, 3639, 0, 0, 0, 3639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3639, 3640, 3640, 3640, 3640, 0, 0, 0, 0, 0, 0, 3640, 0, 0, 0, 0, 0, 3640, 0, 0, 0, 0, 0, 0, 3640, 3642, 3642, 3642, 3642, 0, 0, 0, 0, 0, 0, 3642, 0, 0, 0, 0, 0, 3642, 3642, 0, 0, 0, 0, 0, 3642, 3644, 0, 0, 0, 3644, 0, 3644, 0, 0, 3644, 0, 0, 0, 3644, 3652, 3652, 3652, 3652, 0, 0, 0, 3652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3652, 0, 0, 0, 3652, 3653, 3653, 3653, 3653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3653, 0, 3653, 3653, 0, 0, 0, 0, 0, 3653, 3654, 3654, 3654, 3654, 0, 0, 0, 3654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3654, 3656, 3656, 0, 3656, 0, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 0, 3656, 3656, 3656, 3656, 3657, 3657, 0, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3659, 3659, 3659, 3659, 0, 0, 0, 3659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3659, 3660, 3660, 3660, 3660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3660, 0, 0, 3660, 0, 0, 0, 3660, 3662, 3662, 3662, 3662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3662, 3662, 0, 3662, 0, 0, 0, 3662, 3663, 3663, 3663, 3663, 0, 0, 0, 3663, 3663, 0, 0, 0, 3663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3663, 3664, 3664, 3664, 3664, 0, 0, 0, 0, 0, 0, 0, 3664, 3664, 0, 0, 0, 3664, 3664, 0, 3664, 0, 0, 0, 3664, 3668, 3668, 3668, 3668, 0, 0, 0, 0, 0, 0, 3668, 0, 0, 0, 0, 0, 3668, 0, 0, 0, 0, 0, 0, 3668, 3669, 3669, 0, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 0, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3670, 3670, 3670, 3670, 0, 0, 0, 3670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3670, 3671, 3671, 3671, 3671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3671, 0, 0, 3671, 0, 0, 0, 3671, 3673, 3673, 3673, 3673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3673, 3673, 0, 3673, 0, 0, 0, 3673, 3676, 3676, 0, 0, 3676, 3676, 0, 0, 3676, 3676, 0, 3676, 3676, 3676, 3676, 3676, 0, 3676, 3676, 3676, 3676, 3676, 3676, 0, 3676, 3676, 3676, 3676, 0, 0, 3676, 3677, 3677, 0, 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, 3677, 3677, 3677, 3678, 3678, 0, 3678, 0, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 0, 3678, 3678, 3678, 3678, 3679, 3679, 0, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 3680, 0, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3680, 3681, 3681, 3681, 3681, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3681, 0, 3681, 3681, 0, 0, 0, 0, 0, 3681, 3682, 3682, 3682, 3682, 0, 0, 0, 3682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3682, 3683, 3683, 3683, 3683, 0, 0, 0, 3683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3683, 3686, 3686, 3686, 3686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3686, 3686, 0, 0, 0, 0, 0, 3686, 3687, 3687, 0, 3687, 3687, 3687, 0, 0, 3687, 3687, 0, 3687, 3687, 3687, 3687, 3687, 0, 3687, 3687, 3687, 3687, 3687, 3687, 0, 3687, 3687, 0, 3687, 0, 0, 3687, 3688, 3688, 0, 3688, 0, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 0, 3688, 3688, 3688, 3688, 3689, 3689, 0, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3690, 3690, 0, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 0, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3690, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3692, 3692, 0, 3692, 3692, 3692, 0, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 0, 3692, 0, 3692, 3692, 3692, 3693, 3693, 0, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3695, 0, 0, 0, 0, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 0, 3695, 0, 0, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3698, 3698, 3698, 3698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3698, 0, 3698, 0, 0, 0, 0, 0, 0, 3698, 3699, 3699, 3699, 3699, 0, 0, 0, 3699, 0, 0, 0, 0, 3699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3699, 3700, 3700, 0, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3703, 3703, 0, 3703, 3703, 3703, 0, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 0, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3706, 3706, 3706, 3706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3706, 3706, 0, 0, 0, 0, 0, 3706, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 0, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3709, 0, 0, 0, 3709, 3709, 0, 0, 3709, 0, 0, 0, 0, 3709, 0, 3709, 3713, 3713, 0, 3713, 0, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 3713, 0, 3713, 3713, 3713, 3713, 3714, 3714, 0, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3715, 3715, 3715, 3715, 0, 0, 0, 3715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3715, 3716, 3716, 3716, 3716, 0, 0, 0, 0, 0, 0, 0, 0, 3716, 0, 0, 0, 3716, 0, 0, 0, 0, 0, 0, 3716, 3717, 3717, 3717, 3717, 0, 0, 0, 3717, 3717, 0, 0, 0, 3717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3717, 3718, 3718, 3718, 3718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3718, 0, 0, 0, 0, 0, 0, 3718, 3718, 3719, 3719, 0, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3720, 3720, 3720, 3720, 0, 0, 0, 3720, 0, 0, 0, 0, 3720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3720, 3721, 3721, 3721, 3721, 0, 0, 0, 3721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3721, 3724, 3724, 3724, 3724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3724, 3724, 0, 0, 0, 0, 0, 3724, 3725, 3725, 0, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3726, 0, 0, 0, 0, 3726, 0, 0, 3726, 3726, 0, 0, 0, 3726, 3726, 3726, 0, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3726, 3727, 3727, 0, 3727, 0, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 0, 3727, 3727, 3727, 3727, 3728, 3728, 0, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3731, 3731, 0, 3731, 3731, 3731, 0, 3731, 3731, 3731, 0, 0, 0, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3732, 3732, 0, 3732, 0, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 3732, 0, 3732, 3732, 3732, 3732, 3733, 3733, 0, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3734, 3734, 0, 3734, 3734, 3734, 0, 3734, 3734, 3734, 0, 3734, 3734, 3734, 3734, 3734, 0, 3734, 3734, 3734, 3734, 3734, 3734, 3734, 3734, 3734, 3734, 3734, 0, 0, 3734, 3735, 3735, 0, 3735, 0, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 0, 3735, 3735, 3735, 3735, 3736, 3736, 0, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3736, 3737, 3737, 0, 3737, 3737, 3737, 0, 3737, 3737, 3737, 0, 0, 0, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3738, 3738, 0, 3738, 0, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 0, 3738, 3738, 3738, 3738, 3739, 3739, 0, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3740, 3740, 0, 3740, 3740, 3740, 0, 3740, 3740, 3740, 0, 3740, 3740, 3740, 3740, 3740, 0, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 0, 0, 3740, 3741, 3741, 0, 3741, 0, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 0, 3741, 3741, 3741, 3741, 3742, 3742, 0, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3744, 3744, 0, 3744, 0, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 0, 3744, 3744, 3744, 3744, 3745, 3745, 0, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3746, 3746, 0, 3746, 3746, 3746, 0, 3746, 3746, 3746, 0, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 0, 3746, 3746, 3746, 3746, 3747, 3747, 0, 3747, 3747, 3747, 0, 3747, 3747, 3747, 0, 0, 0, 3747, 3747, 3747, 0, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3748, 3748, 0, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 0, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 0, 3748, 3748, 0, 3748, 3748, 3748, 3748, 3749, 3749, 0, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 0, 3749, 3749, 0, 3749, 3749, 3749, 3749, 3750, 3750, 3750, 3750, 0, 0, 0, 3750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3750, 3750, 3751, 3751, 3751, 3751, 0, 0, 0, 0, 0, 0, 0, 3751, 0, 3751, 0, 0, 3751, 0, 0, 0, 0, 0, 0, 3751, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3753, 3753, 3753, 3753, 0, 0, 0, 0, 0, 0, 0, 3753, 0, 3753, 0, 0, 3753, 0, 0, 0, 0, 0, 0, 3753, 3754, 3754, 3754, 3754, 0, 0, 0, 3754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3754, 3755, 3755, 3755, 3755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3755, 0, 0, 0, 0, 0, 0, 3755, 3756, 3756, 3756, 3756, 0, 0, 0, 0, 0, 0, 3756, 0, 0, 0, 0, 0, 3756, 0, 0, 0, 0, 0, 0, 3756, 3759, 3759, 3759, 3759, 0, 0, 0, 3759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3759, 3762, 3762, 3762, 3762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3762, 3762, 0, 0, 0, 0, 0, 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, 3763, 3763, 3763, 3764, 3764, 0, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 0, 3764, 3764, 0, 3764, 3764, 3764, 3764, 3764, 3764, 0, 3764, 3764, 0, 3764, 3764, 3764, 3764, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 0, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3767, 3767, 0, 3767, 3767, 3767, 3767, 3767, 0, 3767, 3767, 3767, 3767, 0, 3767, 3767, 0, 3767, 3767, 3767, 0, 3767, 3767, 0, 3767, 3767, 0, 0, 3767, 3767, 3767, 3768, 3768, 3768, 3768, 0, 0, 0, 0, 0, 0, 3768, 0, 0, 0, 0, 0, 3768, 0, 3768, 3768, 0, 0, 0, 3768, 3769, 3769, 3769, 3769, 0, 0, 0, 0, 0, 0, 3769, 0, 0, 0, 0, 0, 3769, 3769, 3769, 3769, 0, 0, 0, 3769, 3770, 3770, 3770, 3770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3770, 0, 3770, 0, 0, 0, 0, 0, 0, 3770, 3771, 3771, 3771, 3771, 0, 0, 0, 3771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3771, 3773, 3773, 3773, 3773, 3773, 0, 0, 3773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3773, 0, 0, 0, 0, 0, 3773, 0, 0, 0, 0, 0, 3773, 3774, 3774, 3774, 3774, 0, 0, 0, 0, 0, 0, 3774, 0, 0, 0, 0, 0, 3774, 0, 3774, 3774, 0, 0, 0, 3774, 3775, 3775, 3775, 3775, 0, 0, 0, 0, 0, 0, 3775, 0, 0, 0, 0, 0, 3775, 0, 0, 0, 0, 0, 0, 3775, 3776, 3776, 3776, 3776, 0, 0, 0, 0, 0, 0, 3776, 0, 0, 0, 0, 0, 3776, 3776, 0, 0, 0, 0, 0, 3776, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 0, 3777, 3777, 0, 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, 0, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3778, 3779, 3779, 3779, 3779, 3779, 0, 0, 3779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3779, 0, 0, 0, 0, 0, 3779, 0, 0, 0, 0, 0, 3779, 3780, 3780, 3780, 3780, 0, 0, 0, 0, 0, 0, 3780, 0, 0, 0, 0, 0, 3780, 3780, 0, 0, 0, 0, 0, 3780, 3784, 0, 0, 0, 3784, 0, 3784, 0, 0, 3784, 0, 0, 0, 3784, 3785, 3785, 3785, 3785, 3785, 0, 0, 3785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3785, 0, 0, 0, 0, 0, 3785, 0, 0, 0, 0, 0, 3785, 3787, 3787, 3787, 3787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3787, 0, 3787, 3787, 0, 0, 0, 0, 0, 3787, 3788, 3788, 3788, 3788, 0, 0, 0, 3788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3788, 3789, 3789, 3789, 3789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3789, 3789, 0, 0, 0, 0, 0, 3789, 3792, 3792, 0, 3792, 0, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 0, 3792, 3792, 3792, 3792, 3793, 3793, 3793, 3793, 3793, 0, 0, 3793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3793, 0, 0, 0, 0, 0, 3793, 0, 0, 0, 0, 0, 3793, 3794, 3794, 3794, 3794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3794, 0, 0, 3794, 0, 0, 0, 3794, 3795, 3795, 3795, 3795, 0, 0, 0, 3795, 3795, 0, 0, 0, 3795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3795, 3796, 3796, 3796, 3796, 0, 0, 0, 3796, 0, 0, 0, 3796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3796, 3797, 3797, 3797, 3797, 0, 0, 0, 0, 0, 0, 0, 3797, 3797, 0, 0, 0, 3797, 3797, 0, 3797, 0, 0, 0, 3797, 3798, 0, 0, 3798, 0, 0, 0, 0, 3798, 0, 0, 0, 3798, 3798, 0, 0, 3798, 0, 0, 0, 0, 3798, 0, 3798, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 0, 3799, 3799, 0, 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, 0, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3802, 3802, 3802, 3802, 0, 0, 0, 0, 0, 0, 3802, 0, 0, 0, 0, 0, 3802, 0, 0, 0, 0, 0, 0, 3802, 3803, 3803, 3803, 3803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3803, 3803, 0, 3803, 0, 0, 0, 3803, 3804, 3804, 3804, 3804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3804, 0, 0, 3804, 0, 0, 0, 3804, 3805, 3805, 3805, 3805, 3805, 0, 0, 3805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3805, 0, 0, 0, 0, 0, 3805, 0, 0, 0, 0, 0, 3805, 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, 3807, 3807, 3807, 3808, 3808, 0, 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, 0, 3809, 0, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 0, 3809, 3809, 3809, 3809, 3810, 3810, 0, 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, 0, 0, 0, 3811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3811, 3812, 3812, 3812, 3812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3812, 0, 3812, 3812, 0, 0, 0, 0, 0, 3812, 3813, 3813, 3813, 3813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3813, 0, 3813, 3813, 0, 0, 0, 0, 0, 3813, 3815, 3815, 3815, 3815, 3815, 0, 0, 3815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3815, 0, 0, 0, 0, 0, 3815, 0, 0, 0, 0, 0, 3815, 3816, 3816, 0, 3816, 0, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 3816, 0, 3816, 3816, 3816, 3816, 3818, 0, 0, 0, 0, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 0, 3818, 0, 0, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3821, 3821, 3821, 3821, 0, 0, 0, 3821, 0, 0, 0, 0, 3821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3821, 3822, 3822, 3822, 3822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3822, 0, 3822, 0, 0, 0, 0, 0, 0, 3822, 3824, 0, 0, 0, 3824, 3824, 0, 0, 3824, 0, 0, 0, 0, 3824, 0, 3824, 3826, 3826, 0, 3826, 0, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 3826, 0, 3826, 3826, 3826, 3826, 3827, 3827, 0, 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, 0, 0, 0, 3828, 0, 0, 0, 0, 3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3828, 3829, 3829, 3829, 3829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3829, 3829, 0, 0, 0, 0, 0, 3829, 3831, 3831, 3831, 3831, 3831, 0, 0, 3831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3831, 0, 0, 0, 0, 0, 3831, 0, 0, 0, 0, 0, 3831, 3832, 3832, 0, 3832, 0, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 0, 3832, 3832, 3832, 3832, 3834, 3834, 0, 3834, 0, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 0, 3834, 3834, 3834, 3834, 3835, 3835, 0, 3835, 0, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 0, 3835, 3835, 3835, 3835, 3836, 3836, 0, 3836, 0, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 0, 3836, 3836, 3836, 3836, 3837, 3837, 0, 3837, 0, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 3837, 0, 3837, 3837, 3837, 3837, 3838, 3838, 0, 3838, 0, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 3838, 0, 3838, 3838, 3838, 3838, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 0, 3839, 3839, 3839, 3839, 3839, 3839, 0, 3839, 3839, 3839, 3839, 3839, 3839, 3840, 3840, 3840, 3840, 0, 0, 0, 0, 0, 0, 0, 3840, 0, 3840, 0, 0, 3840, 0, 0, 0, 0, 0, 0, 3840, 3841, 3841, 3841, 3841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3841, 0, 0, 0, 0, 0, 0, 3841, 3844, 3844, 3844, 3844, 3844, 0, 0, 3844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3844, 0, 0, 0, 0, 0, 3844, 0, 0, 0, 0, 0, 3844, 3845, 3845, 0, 3845, 3845, 3845, 3845, 3845, 3845, 3845, 3845, 3845, 3845, 0, 3845, 3845, 0, 3845, 3845, 3845, 3845, 3845, 3845, 0, 3845, 3845, 0, 3845, 3845, 3845, 3845, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 0, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3847, 3848, 3848, 3848, 3848, 0, 0, 0, 0, 0, 0, 3848, 0, 0, 0, 0, 0, 3848, 3848, 3848, 3848, 0, 0, 0, 3848, 3850, 3850, 3850, 3850, 0, 0, 0, 0, 0, 0, 3850, 0, 0, 0, 0, 0, 3850, 3850, 0, 0, 0, 0, 0, 3850, 3851, 3851, 3851, 3851, 0, 0, 0, 0, 0, 0, 3851, 0, 0, 0, 0, 0, 3851, 3851, 0, 0, 0, 0, 0, 3851, 3853, 0, 0, 0, 3853, 0, 3853, 0, 0, 3853, 0, 0, 0, 3853, 3854, 3854, 3854, 3854, 3854, 0, 0, 3854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3854, 0, 0, 0, 0, 0, 3854, 0, 0, 0, 0, 0, 3854, 3855, 3855, 3855, 3855, 0, 0, 0, 3855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3855, 3856, 3856, 3856, 3856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3856, 3856, 0, 0, 0, 0, 0, 3856, 3857, 3857, 3857, 3857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3857, 0, 3857, 3857, 0, 0, 0, 0, 0, 3857, 3858, 3858, 3858, 3858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3858, 3858, 0, 0, 0, 0, 0, 3858, 3860, 3860, 3860, 3860, 0, 0, 0, 3860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3860, 3861, 3861, 0, 3861, 0, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 0, 3861, 3861, 3861, 3861, 3862, 3862, 3862, 3862, 0, 0, 0, 3862, 3862, 0, 0, 0, 3862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3862, 3863, 3863, 3863, 3863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3863, 3863, 0, 3863, 0, 0, 0, 3863, 3864, 3864, 3864, 3864, 0, 0, 0, 3864, 0, 0, 0, 3864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3864, 3866, 3866, 3866, 3866, 0, 0, 0, 3866, 3866, 0, 0, 0, 3866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3866, 3867, 0, 0, 3867, 0, 0, 0, 0, 3867, 0, 0, 0, 3867, 3867, 0, 0, 3867, 0, 0, 0, 0, 3867, 0, 3867, 3868, 3868, 0, 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, 3869, 0, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3870, 3870, 3870, 3870, 0, 0, 0, 0, 0, 0, 3870, 0, 0, 0, 0, 0, 3870, 0, 0, 0, 0, 0, 0, 3870, 3871, 3871, 3871, 3871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3871, 3871, 0, 3871, 0, 0, 0, 3871, 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, 3873, 3873, 3873, 3874, 3874, 0, 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, 3874, 3874, 3874, 3875, 3875, 0, 3875, 0, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 0, 3875, 3875, 3875, 3875, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 0, 3876, 3876, 3876, 3876, 3876, 3876, 0, 3876, 3876, 3876, 3876, 3876, 3876, 3877, 3877, 3877, 3877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3877, 0, 3877, 3877, 0, 0, 0, 0, 0, 3877, 3878, 3878, 3878, 3878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3878, 0, 3878, 3878, 0, 0, 0, 0, 0, 3878, 3879, 3879, 0, 3879, 0, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 0, 3879, 3879, 3879, 3879, 3881, 0, 0, 0, 0, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 0, 3881, 0, 0, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3883, 3883, 3883, 3883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3883, 0, 3883, 0, 0, 0, 0, 0, 0, 3883, 3886, 3886, 0, 3886, 0, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 0, 3886, 3886, 3886, 3886, 3887, 3887, 3887, 3887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3887, 3887, 0, 0, 0, 0, 0, 3887, 3888, 3888, 0, 3888, 0, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 0, 3888, 3888, 3888, 3888, 3890, 3890, 0, 3890, 0, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 0, 3890, 3890, 3890, 3890, 3891, 3891, 0, 3891, 0, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 0, 3891, 3891, 3891, 3891, 3892, 3892, 0, 3892, 0, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 3892, 0, 3892, 3892, 3892, 3892, 3893, 3893, 0, 3893, 0, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 0, 3893, 3893, 3893, 3893, 3894, 3894, 0, 3894, 0, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 0, 3894, 3894, 3894, 3894, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 0, 3895, 3895, 3895, 3895, 3895, 3895, 0, 3895, 3895, 3895, 3895, 3895, 3895, 3896, 0, 0, 3896, 0, 0, 0, 3896, 3896, 0, 0, 0, 3896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3896, 3897, 3897, 0, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 0, 3897, 3897, 0, 3897, 3897, 3897, 3897, 3897, 3897, 0, 3897, 3897, 0, 3897, 3897, 3897, 3897, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 0, 3898, 3898, 3898, 3898, 3898, 3898, 0, 3898, 3898, 3898, 3898, 3898, 3898, 3899, 3899, 3899, 3899, 0, 0, 0, 0, 0, 0, 3899, 0, 0, 0, 0, 0, 3899, 3899, 0, 0, 0, 0, 0, 3899, 3900, 0, 0, 0, 3900, 0, 3900, 0, 0, 3900, 0, 0, 0, 3900, 3901, 3901, 3901, 3901, 0, 0, 0, 3901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3901, 3904, 3904, 3904, 3904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3904, 3904, 0, 0, 0, 0, 0, 3904, 3905, 3905, 3905, 3905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3905, 0, 3905, 3905, 0, 0, 0, 0, 0, 3905, 3906, 3906, 3906, 3906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3906, 3906, 0, 3906, 0, 0, 0, 3906, 3907, 0, 0, 3907, 0, 0, 0, 0, 3907, 0, 0, 0, 3907, 3907, 0, 0, 3907, 0, 0, 0, 0, 3907, 0, 3907, 3910, 3910, 3910, 3910, 0, 0, 0, 0, 0, 0, 0, 3910, 0, 0, 0, 0, 3910, 3910, 0, 3910, 0, 0, 0, 3910, 3911, 3911, 0, 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, 3912, 3912, 0, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3913, 3913, 3913, 3913, 0, 0, 0, 0, 0, 0, 3913, 0, 0, 0, 0, 0, 3913, 0, 0, 0, 0, 0, 0, 3913, 3914, 3914, 3914, 3914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3914, 3914, 0, 3914, 0, 0, 0, 3914, 3916, 3916, 0, 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, 3916, 3916, 3916, 3917, 3917, 3917, 3917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3917, 0, 3917, 3917, 0, 0, 0, 0, 0, 3917, 3918, 3918, 3918, 3918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3918, 0, 0, 0, 0, 0, 0, 3918, 3919, 0, 0, 0, 0, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 0, 3919, 0, 0, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3921, 3921, 3921, 3921, 0, 0, 0, 3921, 0, 0, 0, 0, 3921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3921, 3922, 3922, 0, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 0, 3922, 3922, 0, 3922, 3922, 3922, 3922, 3922, 3922, 0, 3922, 3922, 0, 3922, 3922, 3922, 3922, 3923, 3923, 3923, 3923, 0, 0, 0, 0, 0, 0, 3923, 0, 0, 0, 0, 0, 3923, 3923, 0, 0, 0, 0, 0, 3923, 3924, 3924, 3924, 3924, 0, 0, 0, 3924, 3924, 0, 0, 0, 3924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3924, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 0, 3927, 3927, 3927, 3927, 3927, 3927, 0, 3927, 3927, 3927, 3927, 3927, 3927, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 0, 3928, 3928, 3928, 3928, 3928, 3928, 0, 3928, 3928, 3928, 3928, 3928, 3928, 3930, 3930, 3930, 3930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3930, 0, 0, 0, 3930, 0, 0, 3930, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438, 3438 } ; 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: scanner.l,v 1.80 2001/03/19 19:27:41 root Exp $ * * Copyright (C) 1997-2007 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * */ #line 19 "scanner.l" /* * includes */ #include #include #include #include #include "qtbc.h" #include #include #include #include #include #include "scanner.h" #include "entry.h" #include "message.h" #include "config.h" #include "doxygen.h" #include "util.h" #include "defargs.h" #include "language.h" #include "commentscan.h" #include "code.h" #define YY_NEVER_INTERACTIVE 1 /* ----------------------------------------------------------------- * * statics */ static ParserInterface *g_thisParser; static const char * inputString; static int inputPosition; static QFile inputFile; static int lastContext; static int lastCContext; static int lastDocContext; static int lastCPPContext; static int lastSkipSharpContext; static int lastSkipRoundContext; static int lastStringContext; static int lastCurlyContext; static int lastRoundContext; static int lastSquareContext; static int lastInitializerContext; static int lastClassTemplSpecContext; static int lastPreLineCtrlContext; static int lastSkipVerbStringContext; static int lastCommentInArgContext; static int lastCSConstraint; static Protection protection; static Protection baseProt; static int sharpCount = 0 ; static int roundCount = 0 ; static int curlyCount = 0 ; static int squareCount = 0 ; static int padCount = 0 ; static QCString slString; static Entry* current_root = 0 ; static Entry* global_root = 0 ; static Entry* current = 0 ; static Entry* previous = 0 ; static Entry* tempEntry = 0 ; static Entry* firstTypedefEntry = 0 ; static Entry* memspecEntry = 0 ; static int yyLineNr = 1 ; static int anonCount = 0 ; static int anonNSCount = 0 ; static QCString yyFileName; static MethodTypes mtype; static bool gstat; static bool removeSlashes; static Specifier virt; static Specifier baseVirt; static QCString msType,msName,msArgs; static bool isTypedef; static int tmpDocType; static QCString sectionLabel; static QCString sectionTitle; static QCString funcPtrType; static QCString templateStr; static QCString aliasName; static QCString baseName; static QCString* specName; static QCString formulaText; static QCString formulaEnd; static bool useOverrideCommands = FALSE; static bool insideIDL = FALSE; //!< processing IDL code? static bool insideJava = FALSE; //!< processing Java code? static bool insideCS = FALSE; //!< processing C# code? static bool insideD = FALSE; //!< processing D code? static bool insidePHP = FALSE; //!< processing PHP code? static bool insideObjC = FALSE; //!< processing Objective C code? static bool insideCli = FALSE; //!< processing C++/CLI code? static bool insideJS = FALSE; //!< processing JavaScript code? static bool insideCppQuote = FALSE; static bool insideProtocolList = FALSE; static int argRoundCount; static int argSharpCount; static int currentArgumentContext; static int lastCopyArgStringContext; static int lastCopyArgContext; static QCString *copyArgString; static QCString fullArgString; static ArgumentList *currentArgumentList; static char lastCopyArgChar; static QCString *pCopyQuotedString; static QCString *pCopyRoundString; static QCString *pCopyCurlyString; static QGString *pCopyCurlyGString; static QGString *pCopyRoundGString; static QGString *pCopyQuotedGString; static QGString *pSkipVerbString; static QStack autoGroupStack; static bool insideFormula; static bool insideTryBlock=FALSE; static bool insideCode; static bool needsSemi; static int depthIf; static int initBracketCount; static QCString memberGroupRelates; static QCString memberGroupInside; static QCString xrefItemKey; static QCString xrefItemTitle; static QCString xrefListTitle; static QCString g_skipBlockName; static QCString oldStyleArgType; static QCString docBackup; static QCString briefBackup; static bool g_inputFromFile; static int docBlockContext; static QCString docBlock; static QCString docBlockName; static bool docBlockInBody; static bool docBlockAutoBrief; static char docBlockTerm; static QCString idlAttr; static QCString idlProp; static bool g_lexInit = FALSE; //----------------------------------------------------------------------------- // forward declarations //static void handleGroupStartCommand(const char *header); //static void handleGroupEndCommand(); //----------------------------------------------------------------------------- static void initParser() { sectionLabel.resize(0); sectionTitle.resize(0); baseName.resize(0); formulaText.resize(0); protection = Public; baseProt = Public; sharpCount = 0; roundCount = 0; curlyCount = 0; mtype = Method; gstat = FALSE; virt = Normal; baseVirt = Normal; isTypedef = FALSE; autoGroupStack.clear(); insideTryBlock = FALSE; autoGroupStack.setAutoDelete(TRUE); insideFormula = FALSE; insideCode=FALSE; insideCli=Config_getBool("CPP_CLI_SUPPORT"); previous = 0; } static void initEntry() { if (insideJava) { protection = (current_root->spec & Entry::Interface) ? Public : Package; } current->protection = protection ; current->mtype = mtype; current->virt = virt; current->stat = gstat; current->objc = insideObjC; //if (!autoGroupStack.isEmpty()) //{ // //printf("Appending group %s\n",autoGroupStack.top()->groupname.data()); // current->groups->append(new Grouping(*autoGroupStack.top())); //} initGroupInfo(current); isTypedef=FALSE; } //----------------------------------------------------------------------------- ///// remove any automatic grouping and add new one (if given) //static void setCurrentGroup( QCString *newgroup, Grouping::GroupPri_t pri ) //{ // /* remove auto group name from current entry and discard it */ // Grouping *g = current->groups->first(); // int i=0; // while (g) // { // if (g->pri <= Grouping::GROUPING_AUTO_DEF) // { // current->groups->remove(i); // i--; // } // g=current->groups->next(); // i++; // } // // /* use new group name instead? */ // if ( newgroup ) // { // current->groups->append(new Grouping(*newgroup, pri)); // } //} // //static int newMemberGroupId() //{ // static int curGroupId=0; // return curGroupId++; //} // // forward declarations //static void startGroupInDoc(); //static void endGroup(); //----------------------------------------------------------------------------- static void lineCount() { for( const char* c = yytext ; *c ; ++c ) yyLineNr += (*c == '\n') ; } static void addType( Entry* current ) { uint tl=current->type.length(); if( tl>0 && !current->name.isEmpty() && current->type.at(tl-1)!='.') { current->type += ' ' ; } current->type += current->name ; current->name.resize(0) ; tl=current->type.length(); if( tl>0 && !current->args.isEmpty() && current->type.at(tl-1)!='.') { current->type += ' ' ; } current->type += current->args ; current->args.resize(0) ; current->argList->clear(); } 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 void startCommentBlock(bool); static void handleCommentBlock(const QCString &doc,bool brief); static void handleParametersCommentBlocks(ArgumentList *al); //----------------------------------------------------------------- static bool nameIsOperator(QCString &name) { int i=name.find("operator"); if (i==-1) return FALSE; if (i==0 && !isId(name.at(8))) return TRUE; // case operator ::X if (i>0 && !isId(name.at(i-1)) && !isId(name.at(i+8))) return TRUE; // case X::operator return FALSE; // case TEXToperatorTEXT } //----------------------------------------------------------------------------- static void setContext() { QCString fileName = yyFileName; SrcLangExt langExt = getLanguageFromFileName(fileName); insideIDL = langExt==SrcLangExt_IDL; insideJava = langExt==SrcLangExt_Java; insideCS = langExt==SrcLangExt_CSharp; insideD = langExt==SrcLangExt_D; insidePHP = langExt==SrcLangExt_PHP; insideObjC = langExt==SrcLangExt_ObjC; insideJS = langExt==SrcLangExt_JS; if ( insidePHP ) { useOverrideCommands = TRUE; } //printf("setContext(%s) insideIDL=%d insideJava=%d insideCS=%d " // "insideD=%d insidePHP=%d insideObjC=%d\n", // yyFileName.data(),insideIDL,insideJava,insideCS,insideD,insidePHP,insideObjC // ); } //----------------------------------------------------------------------------- static void prependScope() { if (current_root->section & Entry::SCOPE_MASK) { //printf("--- prependScope %s to %s\n",current_root->name.data(),current->name.data()); current->name.prepend(current_root->name+"::"); if (current_root->tArgLists) { if (current->tArgLists==0) { current->tArgLists = new QList; current->tArgLists->setAutoDelete(TRUE); } //printf("prependScope #=%d #current=%d\n",current_root->tArgLists->count(),current->tArgLists->count()); QListIterator talsi(*current_root->tArgLists); ArgumentList *srcAl=0; for (talsi.toLast();(srcAl=talsi.current());--talsi) { ArgumentList *dstAl = new ArgumentList; QListIterator tali(*srcAl); Argument *a; for (;(a=tali.current());++tali) { dstAl->append(new Argument(*a)); //printf("appending argument %s %s\n",a->type.data(),a->name.data()); } current->tArgLists->insert(0,dstAl); } } } } //----------------------------------------------------------------------------- /*! Returns TRUE iff the current entry could be a K&R style C function */ static bool checkForKnRstyleC() { if (((QCString)yyFileName).right(2).lower()!=".c") return FALSE; // must be a C file if (!current->argList) return FALSE; // must have arguments ArgumentListIterator ali(*current->argList); Argument *a; for (ali.toFirst();(a=ali.current());++ali) { // in K&R style argument do not have a type, but doxygen expects a type // so it will think the argument has no name if (a->type.isEmpty() || !a->name.isEmpty()) return FALSE; } return TRUE; } //----------------------------------------------------------------------------- static void splitKnRArg(QCString &oldStyleArgPtr,QCString &oldStyleArgName) { int si = current->args.length(); if (oldStyleArgType.isEmpty()) // new argument { static QRegExp re("([^)]*)"); int bi1 = current->args.findRev(re); int bi2 = bi1!=-1 ? current->args.findRev(re,bi1-1) : -1; char c; if (bi1!=-1 && bi2!=-1) // found something like "int (*func)(int arg)" { int s=bi2+1; oldStyleArgType = current->args.left(s); int i=s; while (iargs.at(i))=='*' || isspace((uchar)c))) i++; oldStyleArgType += current->args.mid(s,i-s); s=i; while (iargs.at(i))) i++; oldStyleArgName = current->args.mid(s,i-s); oldStyleArgType+=current->args.mid(i); } else if (bi1!=-1) // redundant braces like in "int (*var)" { int s=bi1; oldStyleArgType = current->args.left(s); s++; int i=s+1; while (iargs.at(i))=='*' || isspace((uchar)c))) i++; oldStyleArgType += current->args.mid(s,i-s); s=i; while (iargs.at(i))) i++; oldStyleArgName = current->args.mid(s,i-s); } else // normal "int *var" { int l=si,i=l-1,j; char c; // look for start of name in "type *name" while (i>=0 && isId(current->args.at(i))) i--; j=i+1; // look for start of *'s while (i>=0 && ((c=current->args.at(i))=='*' || isspace((uchar)c))) i--; i++; if (i!=l) { oldStyleArgType=current->args.left(i); oldStyleArgPtr=current->args.mid(i,j-i); oldStyleArgName=current->args.mid(j).stripWhiteSpace(); } else { oldStyleArgName=current->args.copy().stripWhiteSpace(); } } } else // continuation like *arg2 in "int *args,*arg2" { int l=si,j=0; char c; while (jargs.at(j))=='*' || isspace((uchar)c))) j++; if (j>0) { oldStyleArgPtr=current->args.left(j); oldStyleArgName=current->args.mid(j).stripWhiteSpace(); } else { oldStyleArgName=current->args.copy().stripWhiteSpace(); } } //fprintf(stderr,"type=%s ptr=%s name=%s\n",oldStyleArgType.data(),oldStyleArgPtr.data(),oldStyleArgName.data()); } //----------------------------------------------------------------------------- /*! Update the argument \a name with additional \a type info. For K&R style * function the type is found \e after the argument list, so this routine * in needed to fix up. */ static void addKnRArgInfo(const QCString &type,const QCString &name, const QCString &brief,const QCString &docs) { if (current->argList==0) return; ArgumentListIterator ali(*current->argList); Argument *a; for (ali.toFirst();(a=ali.current());++ali) { if (a->type==name) { a->type=type.stripWhiteSpace(); if (a->type.left(9)=="register ") // strip keyword { a->type=a->type.mid(9); } a->name=name.stripWhiteSpace(); if (!brief.isEmpty() && !docs.isEmpty()) { a->docs=brief+"\n\n"+docs; } else if (!brief.isEmpty()) { a->docs=brief; } else { a->docs=docs; } } } } //----------------------------------------------------------------------------- void fixArgumentListForJavaScript(ArgumentList *al) { if (al==0) return; ArgumentListIterator ali(*al); Argument *a; for (ali.toFirst();(a=ali.current());++ali) { if (!a->type.isEmpty() && a->name.isEmpty()) { // a->type is actually the (typeless) parameter name, so move it a->name=a->type; a->type.resize(0); } } } /* ----------------------------------------------------------------- */ #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; if (g_inputFromFile) { c = inputFile.readBlock(buf,max_size); if (c==-1) yy_fatal_error("input in flex scanner failed"); } else { while( c < max_size && inputString[inputPosition] ) { *buf = inputString[inputPosition++] ; //printf("%d (%c)\n",*buf,*buf); c++; buf++; } } return c; } /* start command character */ /* language parsing states */ #define Define 1 #define DefineEnd 2 #define CompoundName 3 #define ClassVar 4 #define CSConstraintName 5 #define CSConstraintType 6 #define ClassCategory 7 #define ClassTemplSpec 8 #define CliPropertyType 9 #define CliOverride 10 #define Bases 11 #define BasesProt 12 #define NextSemi 13 #define BitFields 14 #define FindMembers 15 #define FindMembersPHP 16 #define FindMemberName 17 #define FindFields 18 #define FindFieldArg 19 #define Function 20 #define FuncRound 21 #define ExcpRound 22 #define ExcpList 23 #define FuncQual 24 #define Operator 25 #define Array 26 #define ReadBody 27 #define ReadNSBody 28 #define ReadBodyIntf 29 #define Using 30 #define UsingDirective 31 #define SkipCurly 32 #define SkipCurlyCpp 33 #define SkipCurlyEndDoc 34 #define SkipString 35 #define SkipPHPString 36 #define SkipInits 37 #define SkipCPP 38 #define SkipCPPBlock 39 #define SkipComment 40 #define SkipCxxComment 41 #define SkipCurlyBlock 42 #define SkipRoundBlock 43 #define Sharp 44 #define SkipSharp 45 #define SkipRound 46 #define SkipSquare 47 #define SkipRemainder 48 #define TypedefName 49 #define TryFunctionBlock 50 #define TryFunctionBlockEnd 51 #define Comment 52 #define PackageName 53 #define JavaImport 54 #define CSAccessorDecl 55 #define PreLineCtrl 56 #define DefinePHP 57 #define DefinePHPEnd 58 #define OldStyleArgs 59 #define SkipVerbString 60 #define ObjCMethod 61 #define ObjCReturnType 62 #define ObjCParams 63 #define ObjCParamType 64 #define ObjCProtocolList 65 #define QtPropType 66 #define QtPropName 67 #define QtPropAttr 68 #define QtPropRead 69 #define QtPropWrite 70 #define ReadInitializer 71 #define GetCallType 72 #define CppQuote 73 #define EndCppQuote 74 #define MemberSpec 75 #define MemberSpecSkip 76 #define EndTemplate 77 #define FuncPtr 78 #define FuncPtrOperator 79 #define EndFuncPtr 80 #define ReadFuncArgType 81 #define ReadTempArgs 82 #define IDLUnionCase 83 #define NSAliasName 84 #define NSAliasArg 85 #define CopyString 86 #define CopyPHPString 87 #define CopyGString 88 #define CopyPHPGString 89 #define CopyRound 90 #define CopyCurly 91 #define GCopyRound 92 #define GCopyCurly 93 #define SkipUnionSwitch 94 #define Specialization 95 #define FuncPtrInit 96 #define FuncFunc 97 #define FuncFuncEnd 98 #define FuncFuncType 99 #define FuncFuncArray 100 #define CopyArgString 101 #define CopyArgPHPString 102 #define CopyArgRound 103 #define CopyArgSharp 104 #define CopyArgComment 105 #define CopyArgCommentLine 106 #define CopyArgVerbatim 107 #define IDLAttribute 108 #define IDLProp 109 #define IDLPropName 110 /** Prototype scanner states */ #define Prototype 111 #define PrototypePtr 112 #define PrototypeQual 113 #define PrototypeExc 114 #define PrototypeSkipLine 115 /** comment parsing states */ #define DocLine 116 #define DocBlock 117 #define DocCopyBlock 118 /* 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 717 "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 >= 3439 ) 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] != 24677 ); yy_find_action: yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[yy_lp]; if ( yy_act & YY_TRAILING_HEAD_MASK || yy_looking_for_trail_begin ) { if ( yy_act == yy_looking_for_trail_begin ) { yy_looking_for_trail_begin = 0; yy_act &= ~YY_TRAILING_HEAD_MASK; break; } } else if ( yy_act & YY_TRAILING_MASK ) { yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK; yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK; yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; } else { yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; break; } ++yy_lp; goto find_rule; } --yy_cp; yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP #line 719 "scanner.l" { curlyCount=0; needsSemi = TRUE; BEGIN(SkipCurlyBlock); } YY_BREAK case 2: YY_RULE_SETUP #line 724 "scanner.l" { roundCount=0; BEGIN(SkipRoundBlock); } YY_BREAK case 3: YY_RULE_SETUP #line 728 "scanner.l" { ++roundCount; } YY_BREAK case 4: YY_RULE_SETUP #line 731 "scanner.l" { if (roundCount ) --roundCount ; else BEGIN( NextSemi ) ; } YY_BREAK case 5: YY_RULE_SETUP #line 737 "scanner.l" { ++curlyCount ; } YY_BREAK case 6: YY_RULE_SETUP #line 740 "scanner.l" { if( curlyCount ) { --curlyCount ; } else if (needsSemi) { BEGIN( NextSemi ); } else { BEGIN( FindMembers ); } } YY_BREAK case 7: YY_RULE_SETUP #line 754 "scanner.l" { if (insidePHP) { lastStringContext=NextSemi; BEGIN(SkipPHPString); } } YY_BREAK case 8: YY_RULE_SETUP #line 761 "scanner.l" { if (insidePHP) REJECT; } YY_BREAK case 9: YY_RULE_SETUP #line 762 "scanner.l" { lastStringContext=NextSemi; BEGIN(SkipString); } YY_BREAK case 10: YY_RULE_SETUP #line 766 "scanner.l" { unput(*yytext); BEGIN( FindMembers ); } YY_BREAK case 11: YY_RULE_SETUP #line 770 "scanner.l" { unput(*yytext); BEGIN( FindMembers ); } YY_BREAK case 12: YY_RULE_SETUP #line 774 "scanner.l" { // PHP code with unsupported extension? insidePHP = TRUE; } YY_BREAK case 13: YY_RULE_SETUP #line 777 "scanner.l" { // PHP code start BEGIN( FindMembers ); } YY_BREAK case 14: YY_RULE_SETUP #line 780 "scanner.l" { // Non-PHP code text, ignore } YY_BREAK case 15: YY_RULE_SETUP #line 782 "scanner.l" { // Non-PHP code text, ignore yyLineNr++; } YY_BREAK case 16: YY_RULE_SETUP #line 785 "scanner.l" { // Non-PHP code text, ignore } YY_BREAK case 17: YY_RULE_SETUP #line 787 "scanner.l" { // PHP code end if (insidePHP) BEGIN( FindMembersPHP ); else REJECT; } YY_BREAK case 18: YY_RULE_SETUP #line 794 "scanner.l" { if (insidePHP) BEGIN( NextSemi ); else REJECT; } YY_BREAK case 19: YY_RULE_SETUP #line 799 "scanner.l" { // IDL or Borland C++ builder property current->mtype = mtype = Property; current->protection = protection = Public ; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 20: YY_RULE_SETUP #line 809 "scanner.l" { current->mtype = mtype = DCOP; current->protection = protection = Public ; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 21: YY_RULE_SETUP #line 818 "scanner.l" { current->mtype = mtype = Signal; current->protection = protection = Public ; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 22: YY_RULE_SETUP #line 828 "scanner.l" { current->protection = protection = Public ; current->mtype = mtype = Slot; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount(); } YY_BREAK case 23: YY_RULE_SETUP #line 838 "scanner.l" { current->protection = protection = Protected ; current->mtype = mtype = Slot; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount(); } YY_BREAK case 24: YY_RULE_SETUP #line 848 "scanner.l" { current->protection = protection = Private ; current->mtype = mtype = Slot; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount(); } YY_BREAK case 25: YY_RULE_SETUP #line 857 "scanner.l" { current->protection = protection = Public ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 26: YY_RULE_SETUP #line 866 "scanner.l" { // for now treat C++/CLI's internal as package... current->protection = protection = Package ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 27: YY_RULE_SETUP #line 875 "scanner.l" { current->protection = protection = Protected ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 28: YY_RULE_SETUP #line 884 "scanner.l" { current->protection = protection = Private ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 29: YY_RULE_SETUP #line 893 "scanner.l" { if (insideCli) { // C++/CLI event lineCount() ; current->mtype = mtype = Event; current->bodyLine = yyLineNr; curlyCount=0; BEGIN( CliPropertyType ); } else { REJECT; } } YY_BREAK case 30: YY_RULE_SETUP #line 908 "scanner.l" { if (insideCli) { // C++/CLI property lineCount() ; current->mtype = mtype = Property; current->bodyLine = yyLineNr; curlyCount=0; BEGIN( CliPropertyType ); } else { REJECT; } } YY_BREAK case 31: YY_RULE_SETUP #line 923 "scanner.l" { addType( current ); current->name = yytext; } YY_BREAK case 32: YY_RULE_SETUP #line 927 "scanner.l" { // C++/CLI indexed property current->args = yytext; } YY_BREAK case 33: YY_RULE_SETUP #line 930 "scanner.l" { curlyCount=0; //printf("event: '%s' '%s'\n",current->type.data(),current->name.data()); BEGIN( CSAccessorDecl ); } YY_BREAK case 34: YY_RULE_SETUP #line 935 "scanner.l" { unput(*yytext); BEGIN( FindMembers ); } YY_BREAK case 35: YY_RULE_SETUP #line 939 "scanner.l" { yyLineNr++; } YY_BREAK case 36: YY_RULE_SETUP #line 942 "scanner.l" { } YY_BREAK case 37: YY_RULE_SETUP #line 944 "scanner.l" { addType( current ); current->type += yytext; } YY_BREAK case 38: YY_RULE_SETUP #line 948 "scanner.l" { if (!current->type.isEmpty()) { REJECT; } else { current->mtype = mtype = Property; lineCount(); } } YY_BREAK case 39: YY_RULE_SETUP #line 959 "scanner.l" { current->protection = protection = Private ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 40: YY_RULE_SETUP #line 968 "scanner.l" { current->protection = protection = Protected ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 41: YY_RULE_SETUP #line 977 "scanner.l" { current->protection = protection = Public ; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); lineCount() ; } YY_BREAK case 42: YY_RULE_SETUP #line 986 "scanner.l" { if (!insideObjC) { REJECT; } else { lineCount(); current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; current->section = Entry::FUNCTION_SEC; current->protection = protection = Public ; current->objc = TRUE; current->virt = Virtual; current->stat=yytext[0]=='+'; current->mtype = mtype = Method; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); BEGIN( ObjCMethod ); } } YY_BREAK case 43: YY_RULE_SETUP #line 1010 "scanner.l" { // start of method's return type BEGIN( ObjCReturnType ); } YY_BREAK case 44: YY_RULE_SETUP #line 1013 "scanner.l" { // found method name if (current->type.isEmpty()) { current->type = "id"; } current->name = yytext; } YY_BREAK case 45: YY_RULE_SETUP #line 1020 "scanner.l" { // start of parameter list current->name += ':'; Argument *a = new Argument; current->argList->append(a); BEGIN( ObjCParams ); } YY_BREAK case 46: YY_RULE_SETUP #line 1026 "scanner.l" { // TODO: check if nested braches are possible. current->type = yytext; } YY_BREAK case 47: YY_RULE_SETUP #line 1029 "scanner.l" { BEGIN( ObjCMethod ); } YY_BREAK case 48: YY_RULE_SETUP #line 1032 "scanner.l" { // Keyword of parameter QCString keyw = yytext; keyw=keyw.left(keyw.length()-1); // strip : if (keyw.isEmpty()) { current->name += " :"; } else { current->name += keyw+":"; } if (current->argList->getLast()->type.isEmpty()) { current->argList->getLast()->type="id"; } Argument *a = new Argument; a->attrib=(QCString)"["+keyw+"]"; current->argList->append(a); } YY_BREAK case 49: YY_RULE_SETUP #line 1051 "scanner.l" { // name of parameter lineCount(); current->argList->getLast()->name=QCString(yytext).stripWhiteSpace(); } YY_BREAK case 50: YY_RULE_SETUP #line 1055 "scanner.l" { // name of parameter lineCount(); // do we want the comma as part of the name? //current->name += ","; Argument *a = new Argument; a->attrib="[,]"; a->type="..."; current->argList->append(a); } YY_BREAK /* ":" { current->name += ':'; } */ case 51: YY_RULE_SETUP #line 1069 "scanner.l" { BEGIN( ObjCParamType ); } YY_BREAK case 52: YY_RULE_SETUP #line 1072 "scanner.l" { current->argList->getLast()->type=QCString(yytext).stripWhiteSpace(); } YY_BREAK case 53: *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 1075 "scanner.l" { BEGIN( ObjCParams ); } YY_BREAK case 54: YY_RULE_SETUP #line 1078 "scanner.l" { // end of method declaration if (current->argList->getLast() && current->argList->getLast()->type.isEmpty()) { current->argList->getLast()->type="id"; } current->args = argListToString(current->argList); //printf("argList=%s\n",current->args.data()); unput(';'); BEGIN( Function ); } YY_BREAK case 55: YY_RULE_SETUP #line 1088 "scanner.l" { // start of a method body lineCount(); //printf("Type=%s Name=%s args=%s\n", // current->type.data(),current->name.data(),argListToString(current->argList).data() // ); if (current->argList->getLast() && current->argList->getLast()->type.isEmpty()) { current->argList->getLast()->type="id"; } current->args = argListToString(current->argList); unput('{'); BEGIN( Function ); } YY_BREAK case 56: YY_RULE_SETUP #line 1101 "scanner.l" { lineCount(); } YY_BREAK case 57: YY_RULE_SETUP #line 1104 "scanner.l" { if (insideJava) // Java annotation { lineCount(); lastSkipRoundContext = YY_START; roundCount=1; BEGIN( SkipRound ); } else { REJECT; } } YY_BREAK case 58: YY_RULE_SETUP #line 1117 "scanner.l" { if (insideJava) // Java annotation { // skip annotation } else { REJECT; } } YY_BREAK case 59: YY_RULE_SETUP #line 1127 "scanner.l" { isTypedef=FALSE; current->name = yytext; current->name = substitute(current->name,".","::"); current->section = Entry::NAMESPACE_SEC; current->type = "namespace" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount(); curlyCount=0; current_root->addSubEntry(current); current_root = current ; current = new Entry ; initEntry(); BEGIN( FindMembers ) ; } YY_BREAK case 60: YY_RULE_SETUP #line 1144 "scanner.l" { BEGIN(FindMembers); } YY_BREAK case 61: YY_RULE_SETUP #line 1147 "scanner.l" { current->type += " initonly "; if (insideCli) current->spec |= Entry::Initonly; lineCount(); } YY_BREAK case 62: YY_RULE_SETUP #line 1152 "scanner.l" { current->type += " static "; current->stat = TRUE; lineCount(); } YY_BREAK case 63: YY_RULE_SETUP #line 1156 "scanner.l" { current->stat = FALSE; current->explicitExternal = TRUE; lineCount(); } YY_BREAK case 64: YY_RULE_SETUP #line 1161 "scanner.l" { current->type += " virtual "; current->virt = Virtual; lineCount(); } YY_BREAK case 65: YY_RULE_SETUP #line 1165 "scanner.l" { if (!insidePHP) { current->type += " abstract "; current->virt = Pure; } else { current->spec|=Entry::Abstract; } lineCount(); } YY_BREAK case 66: YY_RULE_SETUP #line 1177 "scanner.l" { current->spec|=Entry::Inline; lineCount(); } YY_BREAK case 67: YY_RULE_SETUP #line 1180 "scanner.l" { current->spec|=Entry::Mutable; lineCount(); } YY_BREAK case 68: YY_RULE_SETUP #line 1183 "scanner.l" { current->spec|=Entry::Explicit; lineCount(); } YY_BREAK /* {B}*"import"{BN}+ { // IDL import keyword BEGIN( NextSemi ); } */ case 69: YY_RULE_SETUP #line 1191 "scanner.l" { lineCount(); } YY_BREAK case 70: *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 1192 "scanner.l" { isTypedef=FALSE; current->section = Entry::NAMESPACE_SEC; current->type = "namespace" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount(); BEGIN( CompoundName ); } YY_BREAK case 71: YY_RULE_SETUP #line 1202 "scanner.l" { lineCount(); if (insideIDL) { isTypedef=FALSE; current->section = Entry::NAMESPACE_SEC; current->type = "module" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; BEGIN( CompoundName ); } else if (insideD) { lineCount(); BEGIN(PackageName); } else { addType( current ) ; current->name = QCString(yytext).stripWhiteSpace(); } } YY_BREAK case 72: YY_RULE_SETUP #line 1225 "scanner.l" { lineCount(); if (insideIDL) { isTypedef=FALSE; current->section = Entry::NAMESPACE_SEC; current->type = "library" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; BEGIN( CompoundName ); } else { addType( current ) ; current->name = QCString(yytext).stripWhiteSpace(); } } YY_BREAK case 73: YY_RULE_SETUP #line 1243 "scanner.l" { // M$/Corba IDL/Java interface lineCount(); if (insideIDL || insideJava || insideCS || insideD || insidePHP) { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Interface; addType( current ) ; current->type += " interface" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; BEGIN( CompoundName ); } else { addType( current ) ; current->name = QCString(yytext).stripWhiteSpace(); } } YY_BREAK case 74: YY_RULE_SETUP #line 1263 "scanner.l" { // Objective-C class implementation lineCount(); isTypedef=FALSE; current->section = Entry::OBJCIMPL_SEC; current->objc = insideObjC = TRUE; current->protection = protection = Public ; addType( current ) ; current->type += " implementation" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; BEGIN( CompoundName ); } YY_BREAK case 75: YY_RULE_SETUP #line 1276 "scanner.l" { // Objective-C class interface, or Java attribute lineCount(); isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Interface; current->objc = insideObjC = !insideJava; current->protection = protection = Public ; addType( current ) ; current->type += " interface" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; BEGIN( CompoundName ); } YY_BREAK case 76: YY_RULE_SETUP #line 1290 "scanner.l" { // Objective-C protocol definition lineCount(); isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Protocol; current->objc = insideObjC = TRUE; current->protection = protection = Public ; addType( current ) ; current->type += " protocol" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; BEGIN( CompoundName ); } YY_BREAK case 77: YY_RULE_SETUP #line 1304 "scanner.l" { // Corba IDL exception isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Exception; addType( current ) ; current->type += " exception" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount(); BEGIN( CompoundName ); } YY_BREAK case 78: #line 1317 "scanner.l" case 79: #line 1318 "scanner.l" case 80: YY_RULE_SETUP #line 1318 "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() ; if (yytext[yyleng-1]=='{') unput('{'); if (insidePHP && current->spec&Entry::Abstract) { // convert Abstract to AbstractClass current->spec=(current->spec&~Entry::Abstract)|Entry::AbstractClass; } BEGIN( CompoundName ) ; } YY_BREAK case 81: #line 1336 "scanner.l" case 82: YY_RULE_SETUP #line 1336 "scanner.l" { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Value; addType( current ) ; current->type += " value class" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 83: #line 1350 "scanner.l" case 84: YY_RULE_SETUP #line 1350 "scanner.l" { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Ref; addType( current ) ; current->type += " ref class" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 85: #line 1364 "scanner.l" case 86: YY_RULE_SETUP #line 1364 "scanner.l" { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Interface; addType( current ) ; current->type += " interface class" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 87: YY_RULE_SETUP #line 1377 "scanner.l" { if (insideIDL) { isTypedef=FALSE; current->section = Entry::CLASS_SEC; addType( current ) ; current->type += " coclass" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; BEGIN( CompoundName ) ; } else { addType(current); current->name = yytext; current->name = current->name.stripWhiteSpace(); lineCount(); } } YY_BREAK case 88: #line 1399 "scanner.l" case 89: YY_RULE_SETUP #line 1399 "scanner.l" { isTypedef=((QCString)yytext).find("typedef")!=-1; current->section = Entry::CLASS_SEC ; current->spec = Entry::Struct; addType( current ) ; current->type += " struct" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 90: #line 1413 "scanner.l" case 91: YY_RULE_SETUP #line 1413 "scanner.l" { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Struct | Entry::Value; addType( current ) ; current->type += " value struct" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 92: #line 1427 "scanner.l" case 93: YY_RULE_SETUP #line 1427 "scanner.l" { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Struct | Entry::Ref; addType( current ) ; current->type += " ref struct" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 94: #line 1441 "scanner.l" case 95: YY_RULE_SETUP #line 1441 "scanner.l" { isTypedef=FALSE; current->section = Entry::CLASS_SEC; current->spec = Entry::Struct | Entry::Interface; addType( current ) ; current->type += " interface struct"; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 96: #line 1455 "scanner.l" case 97: YY_RULE_SETUP #line 1455 "scanner.l" { isTypedef=((QCString)yytext).find("typedef")!=-1; current->section = Entry::CLASS_SEC; current->spec = Entry::Union; addType( current ) ; current->type += " union" ; current->fileName = yyFileName; current->startLine = yyLineNr; current->bodyLine = yyLineNr; lineCount() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 98: #line 1469 "scanner.l" case 99: YY_RULE_SETUP #line 1469 "scanner.l" { // for IDL: typedef [something] enum 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() ; if (yytext[yyleng-1]=='{') unput('{'); BEGIN( CompoundName ) ; } YY_BREAK case 100: *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 1481 "scanner.l" { // A::operator()(int arg) lineCount(); current->name += "()"; BEGIN( FindMembers ); } YY_BREAK case 101: *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 1486 "scanner.l" { lineCount(); current->name += yytext ; current->name = current->name.simplifyWhiteSpace(); BEGIN( FindMembers ) ; } YY_BREAK case 102: YY_RULE_SETUP #line 1492 "scanner.l" { // can occur when importing members unput(';'); BEGIN( FindMembers ) ; } YY_BREAK case 103: YY_RULE_SETUP #line 1496 "scanner.l" { lineCount(); current->name += *yytext ; } YY_BREAK case 104: YY_RULE_SETUP #line 1500 "scanner.l" { /* skip guided templ specifiers */ } YY_BREAK case 105: YY_RULE_SETUP #line 1501 "scanner.l" { current->name = current->name.simplifyWhiteSpace(); unput(*yytext); BEGIN( FindMembers ) ; } YY_BREAK case 106: YY_RULE_SETUP #line 1506 "scanner.l" { // generic is a C++/CLI extension lineCount(); if (current->tArgLists==0) { current->tArgLists = new QList; current->tArgLists->setAutoDelete(TRUE); } ArgumentList *al = new ArgumentList; current->spec |= (yytext[0]=='g') ? Entry::Generic : Entry::Template; current->tArgLists->append(al); currentArgumentList = al; templateStr="<"; fullArgString = templateStr.copy(); copyArgString = &templateStr; currentArgumentContext = FindMembers; BEGIN( ReadTempArgs ); } YY_BREAK case 107: YY_RULE_SETUP #line 1523 "scanner.l" { // namespace alias lineCount(); BEGIN( NSAliasName ); } YY_BREAK case 108: YY_RULE_SETUP #line 1527 "scanner.l" { aliasName = yytext; BEGIN( NSAliasArg ); } YY_BREAK case 109: YY_RULE_SETUP #line 1531 "scanner.l" { //printf("Inserting namespace alias %s::%s->%s\n",current_root->name.data(),aliasName.data(),yytext); //if (current_root->name.isEmpty()) //{ // TODO: namespace aliases are now treated as global entities // while they should be aware of the scope they are in Doxygen::namespaceAliasDict.insert(aliasName,new QCString(yytext)); //} //else //{ // Doxygen::namespaceAliasDict.insert(current_root->name+"::"+aliasName, // new QCString(current_root->name+"::"+yytext)); //} } YY_BREAK case 110: YY_RULE_SETUP #line 1545 "scanner.l" { BEGIN( FindMembers ); } YY_BREAK case 111: YY_RULE_SETUP #line 1548 "scanner.l" { // package import => add as a using directive lineCount(); QCString scope=yytext; current->name=removeRedundantWhiteSpace(substitute(scope.left(scope.length()-2),".","::")); current->fileName = yyFileName; current->section=Entry::USINGDIR_SEC; current_root->addSubEntry(current); current = new Entry ; initEntry(); BEGIN(Using); } YY_BREAK case 112: YY_RULE_SETUP #line 1559 "scanner.l" { // class import => add as a using declaration lineCount(); QCString scope=yytext; current->name=removeRedundantWhiteSpace(substitute(scope,".","::")); current->fileName = yyFileName; if (insideD) { current->section=Entry::USINGDIR_SEC; } else { //printf("import name = %s -> %s\n",yytext,current->name.data()); current->section=Entry::USINGDECL_SEC; } current_root->addSubEntry(current); current = new Entry ; initEntry(); BEGIN(Using); } YY_BREAK case 113: YY_RULE_SETUP #line 1578 "scanner.l" { current->startLine=yyLineNr; lineCount(); BEGIN(Using); } YY_BREAK case 114: YY_RULE_SETUP #line 1583 "scanner.l" { lineCount(); BEGIN(UsingDirective); } YY_BREAK case 115: YY_RULE_SETUP #line 1584 "scanner.l" { lineCount(); current->name=yytext; current->fileName = yyFileName; current->section=Entry::USINGDECL_SEC; current_root->addSubEntry(current); current = new Entry ; if (insideCS) /* Hack: in C# a using declaration and directive have the same syntax, so we also add it as a using directive here */ { current->name=yytext; current->fileName = yyFileName; current->startLine = yyLineNr; current->section=Entry::USINGDIR_SEC; current_root->addSubEntry(current); current = new Entry ; } initEntry(); BEGIN(Using); } YY_BREAK case 116: YY_RULE_SETUP #line 1606 "scanner.l" { current->name=removeRedundantWhiteSpace(yytext); current->fileName = yyFileName; current->section=Entry::USINGDIR_SEC; current_root->addSubEntry(current); current = new Entry ; initEntry(); BEGIN(Using); } YY_BREAK case 117: YY_RULE_SETUP #line 1614 "scanner.l" { BEGIN(FindMembers); } YY_BREAK case 118: YY_RULE_SETUP #line 1615 "scanner.l" { // guided template decl QCString n=yytext; addType( current ); current->name=n.left(n.length()-2); } YY_BREAK case 119: *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 1620 "scanner.l" { // Note: this could be a return type! 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 120: *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 1633 "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 case 121: YY_RULE_SETUP #line 1644 "scanner.l" { current->name+=yytext; // *currentTemplateSpec+=yytext; } YY_BREAK case 122: YY_RULE_SETUP #line 1648 "scanner.l" { current->name+='<'; // *currentTemplateSpec+='<'; sharpCount++; } YY_BREAK case 123: YY_RULE_SETUP #line 1653 "scanner.l" { if (insideJava || insideCS) { unput('>'); unput(' '); unput('>'); } else { current->name+=yytext; } // *currentTemplateSpec+=yytext; } YY_BREAK case 124: YY_RULE_SETUP #line 1666 "scanner.l" { current->name+='>'; // *currentTemplateSpec+='>'; if (--sharpCount<=0) { //printf("Found %s\n",current->name.data()); BEGIN(FindMembers); } } YY_BREAK case 125: YY_RULE_SETUP #line 1675 "scanner.l" { lineCount(); current->name+='>'; // *currentTemplateSpec+='>'; if (--sharpCount<=0) { current->args = "("; currentArgumentContext = FuncQual; fullArgString = current->args.copy(); copyArgString = ¤t->args; //printf("Found %s\n",current->name.data()); BEGIN( ReadFuncArgType ) ; } } YY_BREAK case 126: YY_RULE_SETUP #line 1689 "scanner.l" { // function pointer returning a template instance lineCount(); current->name+='>'; BEGIN(FindMembers); } YY_BREAK case 127: *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 1694 "scanner.l" { lineCount(); current->name+='>'; // *currentTemplateSpec+='>'; if (--sharpCount<=0) { BEGIN(FindMemberName); } } YY_BREAK case 128: YY_RULE_SETUP #line 1703 "scanner.l" { current->name+=*yytext; // *currentTemplateSpec+=*yytext; } YY_BREAK case 129: YY_RULE_SETUP #line 1707 "scanner.l" { if (insidePHP) { current->bodyLine = yyLineNr; BEGIN( DefinePHP ); } else REJECT; } YY_BREAK case 130: YY_RULE_SETUP #line 1716 "scanner.l" { // Qt object macro } YY_BREAK case 131: YY_RULE_SETUP #line 1718 "scanner.l" { // Qt property declaration current->protection = protection = Public ; current->mtype = mtype = Property; current->type.resize(0); BEGIN(QtPropType); } YY_BREAK case 132: YY_RULE_SETUP #line 1724 "scanner.l" { // start of property arguments } YY_BREAK case 133: YY_RULE_SETUP #line 1726 "scanner.l" { // end of property arguments unput(';'); BEGIN(FindMembers); } YY_BREAK case 134: YY_RULE_SETUP #line 1730 "scanner.l" { current->type+=yytext; } YY_BREAK case 135: YY_RULE_SETUP #line 1733 "scanner.l" { current->type+=yytext; } YY_BREAK case 136: YY_RULE_SETUP #line 1736 "scanner.l" { current->type+=yytext; BEGIN(QtPropName); } YY_BREAK case 137: YY_RULE_SETUP #line 1740 "scanner.l" { current->name=yytext; BEGIN(QtPropAttr); } YY_BREAK case 138: YY_RULE_SETUP #line 1744 "scanner.l" { current->spec |= Entry::Readable; BEGIN(QtPropRead); } YY_BREAK case 139: YY_RULE_SETUP #line 1748 "scanner.l" { current->spec |= Entry::Writable; BEGIN(QtPropWrite); } YY_BREAK case 140: YY_RULE_SETUP #line 1752 "scanner.l" { // reset method => not supported yet } YY_BREAK case 141: YY_RULE_SETUP #line 1754 "scanner.l" { // scriptable property => not supported yet } YY_BREAK case 142: YY_RULE_SETUP #line 1756 "scanner.l" { // designable property => not supported yet } YY_BREAK case 143: YY_RULE_SETUP #line 1758 "scanner.l" { current->read = yytext; BEGIN(QtPropAttr); } YY_BREAK case 144: YY_RULE_SETUP #line 1762 "scanner.l" { current->write = yytext; BEGIN(QtPropAttr); } YY_BREAK case 145: YY_RULE_SETUP #line 1766 "scanner.l" { current->name=yytext; BEGIN(FindMembers); } YY_BREAK case 146: YY_RULE_SETUP #line 1770 "scanner.l" { lineCount(); if (insideIDL && yyleng==9 && strcmp(yytext,"cpp_quote")==0) { BEGIN(CppQuote); } else if ((insideIDL || insideJava || insideD) && yyleng==6 && strcmp(yytext,"import")==0) { if (insideIDL) BEGIN(NextSemi); else // insideJava or insideD BEGIN(JavaImport); } else if (insideJava && strcmp(yytext,"package")==0) { lineCount(); BEGIN(PackageName); } else if (insideIDL && strcmp(yytext,"case")==0) { BEGIN(IDLUnionCase); } else if (insideTryBlock && strcmp(yytext,"catch")==0) { insideTryBlock=FALSE; BEGIN(TryFunctionBlock); } else if (insideJS && strcmp(yytext,"var")==0) { // javascript variable current->type="var"; } else if (insideJS && strcmp(yytext,"function")==0) { // javascript function current->type="function"; } else { if (YY_START==FindMembers) { addType( current ) ; } bool javaLike = insideJava || insideCS || insideD || insidePHP || insideJS; if (javaLike && strcmp(yytext,"public")==0) { current->protection = Public; } else if (javaLike && strcmp(yytext,"protected")==0) { current->protection = Protected; } else if (javaLike && strcmp(yytext,"private")==0) { current->protection = Private; } else if (javaLike && strcmp(yytext,"static")==0) { if (YY_START==FindMembers) current->name = yytext; else current->name += yytext; current->stat = TRUE; } else { if (YY_START==FindMembers) current->name = yytext; else current->name += yytext; if (current->name.left(7)=="static ") { current->stat = TRUE; current->name= current->name.mid(7); } else if (current->name.left(7)=="inline ") { if (current->type.isEmpty()) { current->type="inline"; } else { current->type+="inline "; } current->name= current->name.mid(7); } else if (current->name.left(6)=="const ") { if (current->type.isEmpty()) { current->type="const"; } else { current->type+="const "; } current->name=current->name.mid(6); } } QCString tmp=yytext; if (nameIsOperator(tmp)) { BEGIN( Operator ); } else { BEGIN(FindMembers); } } } YY_BREAK case 147: YY_RULE_SETUP #line 1879 "scanner.l" { // some number where we did not expect one } YY_BREAK case 148: YY_RULE_SETUP #line 1881 "scanner.l" { if (insideJava || insideCS || insideD) { current->name+="."; } } YY_BREAK case 149: YY_RULE_SETUP #line 1887 "scanner.l" { current->name+=yytext; } YY_BREAK case 150: YY_RULE_SETUP #line 1890 "scanner.l" { insideCppQuote=TRUE; BEGIN(FindMembers); } YY_BREAK case 151: YY_RULE_SETUP #line 1894 "scanner.l" YY_BREAK case 152: YY_RULE_SETUP #line 1895 "scanner.l" { BEGIN(FindMembers); } YY_BREAK case 153: YY_RULE_SETUP #line 1896 "scanner.l" { yyLineNr++; } YY_BREAK case 154: YY_RULE_SETUP #line 1897 "scanner.l" YY_BREAK case 155: YY_RULE_SETUP #line 1898 "scanner.l" { yyLineNr++; } YY_BREAK case 156: YY_RULE_SETUP #line 1899 "scanner.l" { curlyCount=0; lastCurlyContext = TryFunctionBlockEnd ; BEGIN( SkipCurly ); } YY_BREAK case 157: YY_RULE_SETUP #line 1904 "scanner.l" YY_BREAK case 158: YY_RULE_SETUP #line 1905 "scanner.l" { BEGIN(TryFunctionBlock); } YY_BREAK case 159: YY_RULE_SETUP #line 1906 "scanner.l" { unput(*yytext); BEGIN( FindMembers ); } YY_BREAK case 160: YY_RULE_SETUP #line 1909 "scanner.l" { insideCppQuote=FALSE; BEGIN(FindMembers); } YY_BREAK case 161: YY_RULE_SETUP #line 1913 "scanner.l" { if (insidePHP) REJECT; lastCPPContext = YY_START; BEGIN( SkipCPP ) ; } YY_BREAK case 162: YY_RULE_SETUP #line 1918 "scanner.l" { if (insidePHP) REJECT; current->bodyLine = yyLineNr; BEGIN( Define ); } YY_BREAK case 163: *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 1923 "scanner.l" { /* line control directive */ yyLineNr = atoi(&yytext[1]); //printf("setting line number to %d\n",yyLineNr); lastPreLineCtrlContext = YY_START; BEGIN( PreLineCtrl ); } YY_BREAK case 164: YY_RULE_SETUP #line 1929 "scanner.l" { yyFileName = stripQuotes(yytext); } YY_BREAK case 165: YY_RULE_SETUP #line 1932 "scanner.l" {} YY_BREAK case 166: YY_RULE_SETUP #line 1933 "scanner.l" { yyLineNr++; BEGIN( lastPreLineCtrlContext ); } YY_BREAK case 167: YY_RULE_SETUP #line 1937 "scanner.l" YY_BREAK case 168: YY_RULE_SETUP #line 1938 "scanner.l" { yyLineNr++ ; } YY_BREAK case 169: YY_RULE_SETUP #line 1939 "scanner.l" { yyLineNr++ ; BEGIN( lastCPPContext) ; } YY_BREAK case 170: YY_RULE_SETUP #line 1942 "scanner.l" { current->name = yytext; current->name = current->name.left(current->name.length()-1).stripWhiteSpace(); current->args = "("; current->bodyLine = yyLineNr; currentArgumentContext = DefineEnd; fullArgString=current->args.copy(); copyArgString=¤t->args; BEGIN( ReadFuncArgType ) ; } YY_BREAK /* ")" { //printf("Define with args\n"); current->args += ')'; BEGIN( DefineEnd ); } . { current->args += *yytext; } */ case 171: YY_RULE_SETUP #line 1962 "scanner.l" { //printf("Define `%s' without args\n",yytext); current->bodyLine = yyLineNr; current->name = yytext; BEGIN(DefineEnd); } YY_BREAK case 172: YY_RULE_SETUP #line 1968 "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 ; initEntry(); BEGIN(FindMembers); } YY_BREAK case 173: YY_RULE_SETUP #line 1982 "scanner.l" { //printf("End define\n"); current->fileName = yyFileName; current->startLine = yyLineNr; current->type.resize(0); current->args = current->args.simplifyWhiteSpace(); current->name = current->name.stripWhiteSpace(); current->section = Entry::ENUM_SEC; //HACK! current_root->addSubEntry(current); current = new Entry ; initEntry(); BEGIN(FindMembers); } YY_BREAK case 174: YY_RULE_SETUP #line 1995 "scanner.l" YY_BREAK case 175: YY_RULE_SETUP #line 1996 "scanner.l" { yyLineNr++; } YY_BREAK case 176: YY_RULE_SETUP #line 1999 "scanner.l" { if (insideIDL && insideCppQuote) { BEGIN(EndCppQuote); } else { lastStringContext=DefineEnd; BEGIN(SkipString); } } YY_BREAK case 177: YY_RULE_SETUP #line 2010 "scanner.l" YY_BREAK case 178: YY_RULE_SETUP #line 2011 "scanner.l" { current->name = yytext; current->name = current->name.stripWhiteSpace(); current->name = current->name.left(current->name.length()-1).stripWhiteSpace(); current->name = current->name.left(current->name.length()-1); current->args = "("; current->bodyLine = yyLineNr; lastRoundContext = DefinePHPEnd; pCopyRoundString = ¤t->args; roundCount = 0; BEGIN( CopyRound ); } YY_BREAK case 179: YY_RULE_SETUP #line 2024 "scanner.l" { // ^ and % are C++/CLI extensions if (insideCli) { addType( current ); current->name = yytext ; } else { REJECT; } } YY_BREAK case 180: YY_RULE_SETUP #line 2035 "scanner.l" { current->name += yytext ; addType( current ); } YY_BREAK case 181: YY_RULE_SETUP #line 2039 "scanner.l" { lineCount(); if (current->bodyLine==-1) { current->bodyLine=yyLineNr; } docBlockContext = YY_START; docBlockInBody = FALSE; docBlockAutoBrief = ( yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF") ) || ( yytext[yyleng-2]=='!' && Config_getBool("QT_AUTOBRIEF") ); docBlock.resize(0); docBlockTerm = ';'; if (yytext[yyleng-3]=='/') { startCommentBlock(TRUE); BEGIN( DocLine ); } else { startCommentBlock(FALSE); BEGIN( DocBlock ); } } YY_BREAK case 182: YY_RULE_SETUP #line 2062 "scanner.l" { lineCount(); docBlockContext = YY_START; docBlockInBody = FALSE; docBlockAutoBrief = ( yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF") ) || ( yytext[yyleng-2]=='!' && Config_getBool("QT_AUTOBRIEF") ); docBlock.resize(0); docBlockTerm = ','; if (yytext[yyleng-3]=='/') { startCommentBlock(TRUE); BEGIN( DocLine ); } else { startCommentBlock(FALSE); BEGIN( DocBlock ); } } YY_BREAK case 183: YY_RULE_SETUP #line 2081 "scanner.l" { lineCount(); if (current->bodyLine==-1) { current->bodyLine=yyLineNr; } docBlockContext = YY_START; docBlockInBody = FALSE; docBlockAutoBrief = ( yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF") ) || ( yytext[yyleng-2]=='!' && Config_getBool("QT_AUTOBRIEF") ); docBlock.resize(0); docBlockTerm = 0; if (yytext[yyleng-3]=='/') { startCommentBlock(TRUE); BEGIN( DocLine ); } else { startCommentBlock(FALSE); BEGIN( DocBlock ); } } YY_BREAK case 184: YY_RULE_SETUP #line 2105 "scanner.l" { //handleGroupStartCommand(current->name); if (previous && previous->section==Entry::GROUPDOC_SEC) { // link open command to the group defined in the previous entry openGroup(previous,yyFileName,yyLineNr); } else { // link open command to the current entry openGroup(current,yyFileName,yyLineNr); } //current = tmp; initEntry(); if (yytext[1]=='/') { if (yytext[2]=='!' || yytext[2]=='/') { docBlockContext = YY_START; docBlockInBody = FALSE; docBlockAutoBrief = FALSE; docBlock.resize(0); docBlockTerm = 0; startCommentBlock(TRUE); BEGIN(DocLine); } else { lastCContext=YY_START; BEGIN(SkipCxxComment); } } else { if (yytext[2]=='!' || yytext[2]=='*') { docBlockContext = YY_START; docBlockInBody = FALSE; docBlock.resize(0); docBlockAutoBrief = ( yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF") ) || ( yytext[yyleng-2]=='!' && Config_getBool("QT_AUTOBRIEF") ); docBlockTerm = 0; startCommentBlock(FALSE); BEGIN(DocBlock); } else { lastCContext=YY_START; BEGIN(SkipComment); } } } YY_BREAK case 185: YY_RULE_SETUP #line 2157 "scanner.l" { closeGroup(current,yyFileName,yyLineNr); } YY_BREAK case 186: YY_RULE_SETUP #line 2160 "scanner.l" { // in PHP code this could also be due to "bodyLine = yyLineNr; lastInitializerContext = YY_START; initBracketCount=0; BEGIN(ReadInitializer); } YY_BREAK /* Read initializer rules */ case 187: YY_RULE_SETUP #line 2167 "scanner.l" { lastRoundContext=YY_START; pCopyRoundGString=¤t->initializer; roundCount=0; current->initializer+=*yytext; BEGIN(GCopyRound); } YY_BREAK case 188: YY_RULE_SETUP #line 2174 "scanner.l" { lastCurlyContext=YY_START; pCopyCurlyGString=¤t->initializer; curlyCount=0; current->initializer+=*yytext; BEGIN(GCopyCurly); } YY_BREAK case 189: YY_RULE_SETUP #line 2181 "scanner.l" { //printf(">> initializer `%s' <<\n",current->initializer.data()); if (*yytext==';' || lastInitializerContext==FindFields) { unput(*yytext); BEGIN(lastInitializerContext); } else if (*yytext==',' && initBracketCount==0) // for "int a=0,b=0" { unput(*yytext); BEGIN(lastInitializerContext); } else { current->initializer+=*yytext; } } YY_BREAK case 190: YY_RULE_SETUP #line 2198 "scanner.l" { if (insideIDL && insideCppQuote) { BEGIN(EndCppQuote); } else { lastStringContext=YY_START; current->initializer+=*yytext; pCopyQuotedGString=¤t->initializer; BEGIN(CopyGString); } } YY_BREAK case 191: YY_RULE_SETUP #line 2211 "scanner.l" { current->initializer+=yytext; } YY_BREAK case 192: YY_RULE_SETUP #line 2214 "scanner.l" { current->initializer+=yytext; } YY_BREAK case 193: YY_RULE_SETUP #line 2217 "scanner.l" { current->initializer+=yytext; } YY_BREAK case 194: YY_RULE_SETUP #line 2220 "scanner.l" { initBracketCount++; current->initializer+=*yytext; } YY_BREAK case 195: YY_RULE_SETUP #line 2224 "scanner.l" { initBracketCount--; current->initializer+=*yytext; } YY_BREAK case 196: YY_RULE_SETUP #line 2228 "scanner.l" { if (insidePHP) { current->initializer+=yytext; pCopyQuotedGString = ¤t->initializer; lastStringContext=YY_START; BEGIN(CopyPHPGString); } else { current->initializer+=yytext; } } YY_BREAK case 197: YY_RULE_SETUP #line 2241 "scanner.l" { if (insidePHP) { REJECT; } else { current->initializer+=yytext; } } YY_BREAK case 198: YY_RULE_SETUP #line 2251 "scanner.l" { current->initializer+=*yytext; yyLineNr++; } YY_BREAK case 199: YY_RULE_SETUP #line 2255 "scanner.l" { //printf("insideCS=%d\n",insideCS); current->initializer+=yytext; if (!insideCS && !insideObjC) { REJECT; } else { // C#/ObjC verbatim string lastSkipVerbStringContext=YY_START; pSkipVerbString=¤t->initializer; BEGIN(SkipVerbString); } } YY_BREAK case 200: YY_RULE_SETUP #line 2270 "scanner.l" { *pSkipVerbString+=yytext; } YY_BREAK case 201: YY_RULE_SETUP #line 2273 "scanner.l" { // quote escape *pSkipVerbString+=yytext; } YY_BREAK case 202: YY_RULE_SETUP #line 2276 "scanner.l" { *pSkipVerbString+=*yytext; BEGIN(lastSkipVerbStringContext); } YY_BREAK case 203: YY_RULE_SETUP #line 2280 "scanner.l" { *pSkipVerbString+=*yytext; yyLineNr++; } YY_BREAK case 204: YY_RULE_SETUP #line 2284 "scanner.l" { *pSkipVerbString+=*yytext; } YY_BREAK case 205: YY_RULE_SETUP #line 2287 "scanner.l" { if (insidePHP) BEGIN( FindMembersPHP ); else current->initializer+=yytext; } YY_BREAK case 206: YY_RULE_SETUP #line 2293 "scanner.l" { current->initializer+=*yytext; } YY_BREAK /* generic quoted string copy rules */ case 207: YY_RULE_SETUP #line 2298 "scanner.l" { *pCopyQuotedString+=yytext; } YY_BREAK case 208: YY_RULE_SETUP #line 2301 "scanner.l" { *pCopyQuotedString+=*yytext; BEGIN( lastStringContext ); } YY_BREAK case 209: YY_RULE_SETUP #line 2305 "scanner.l" { *pCopyQuotedString+=*yytext; BEGIN( lastStringContext ); } YY_BREAK case 210: YY_RULE_SETUP #line 2309 "scanner.l" { *pCopyQuotedString+=yytext; } YY_BREAK case 211: YY_RULE_SETUP #line 2312 "scanner.l" { *pCopyQuotedString+=*yytext; yyLineNr++; } YY_BREAK case 212: YY_RULE_SETUP #line 2316 "scanner.l" { *pCopyQuotedString+=*yytext; } YY_BREAK /* generic quoted growable string copy rules */ case 213: YY_RULE_SETUP #line 2321 "scanner.l" { *pCopyQuotedGString+=yytext; } YY_BREAK case 214: YY_RULE_SETUP #line 2324 "scanner.l" { *pCopyQuotedGString+=*yytext; BEGIN( lastStringContext ); } YY_BREAK case 215: YY_RULE_SETUP #line 2328 "scanner.l" { *pCopyQuotedGString+=*yytext; BEGIN( lastStringContext ); } YY_BREAK case 216: YY_RULE_SETUP #line 2332 "scanner.l" { *pCopyQuotedGString+=yytext; } YY_BREAK case 217: YY_RULE_SETUP #line 2335 "scanner.l" { *pCopyQuotedGString+=*yytext; yyLineNr++; } YY_BREAK case 218: YY_RULE_SETUP #line 2339 "scanner.l" { *pCopyQuotedGString+=*yytext; } YY_BREAK /* generic round bracket list copy rules */ case 219: YY_RULE_SETUP #line 2344 "scanner.l" { *pCopyRoundString+=*yytext; pCopyQuotedString=pCopyRoundString; lastStringContext=YY_START; BEGIN(CopyString); } YY_BREAK case 220: YY_RULE_SETUP #line 2350 "scanner.l" { *pCopyRoundString+=*yytext; roundCount++; } YY_BREAK case 221: YY_RULE_SETUP #line 2354 "scanner.l" { *pCopyRoundString+=*yytext; if (--roundCount<0) BEGIN(lastRoundContext); } YY_BREAK case 222: YY_RULE_SETUP #line 2359 "scanner.l" { yyLineNr++; *pCopyRoundString+=*yytext; } YY_BREAK case 223: YY_RULE_SETUP #line 2363 "scanner.l" { if (insidePHP) { current->initializer+=yytext; pCopyQuotedString = pCopyRoundString; lastStringContext=YY_START; BEGIN(CopyPHPString); } else { *pCopyRoundString+=yytext; } } YY_BREAK case 224: YY_RULE_SETUP #line 2376 "scanner.l" { if (insidePHP) { REJECT; } else { *pCopyRoundString+=yytext; } } YY_BREAK case 225: YY_RULE_SETUP #line 2386 "scanner.l" { *pCopyRoundString+=yytext; } YY_BREAK case 226: YY_RULE_SETUP #line 2389 "scanner.l" { *pCopyRoundString+=*yytext; } YY_BREAK /* generic round bracket list copy rules for growable strings */ case 227: YY_RULE_SETUP #line 2394 "scanner.l" { *pCopyRoundGString+=*yytext; pCopyQuotedGString=pCopyRoundGString; lastStringContext=YY_START; BEGIN(CopyGString); } YY_BREAK case 228: YY_RULE_SETUP #line 2400 "scanner.l" { *pCopyRoundGString+=*yytext; roundCount++; } YY_BREAK case 229: YY_RULE_SETUP #line 2404 "scanner.l" { *pCopyRoundGString+=*yytext; if (--roundCount<0) BEGIN(lastRoundContext); } YY_BREAK case 230: YY_RULE_SETUP #line 2409 "scanner.l" { yyLineNr++; *pCopyRoundGString+=*yytext; } YY_BREAK case 231: YY_RULE_SETUP #line 2413 "scanner.l" { if (insidePHP) { current->initializer+=yytext; pCopyQuotedGString = pCopyRoundGString; lastStringContext=YY_START; BEGIN(CopyPHPGString); } else { *pCopyRoundGString+=yytext; } } YY_BREAK case 232: YY_RULE_SETUP #line 2426 "scanner.l" { if (insidePHP) { REJECT; } else { *pCopyRoundGString+=yytext; } } YY_BREAK case 233: YY_RULE_SETUP #line 2436 "scanner.l" { *pCopyRoundGString+=yytext; } YY_BREAK case 234: YY_RULE_SETUP #line 2439 "scanner.l" { *pCopyRoundGString+=*yytext; } YY_BREAK /* generic curly bracket list copy rules */ case 235: YY_RULE_SETUP #line 2444 "scanner.l" { *pCopyCurlyString+=*yytext; pCopyQuotedString=pCopyCurlyString; lastStringContext=YY_START; BEGIN(CopyString); } YY_BREAK case 236: YY_RULE_SETUP #line 2450 "scanner.l" { *pCopyCurlyString+=*yytext; if (insidePHP) { pCopyQuotedString=pCopyCurlyString; lastStringContext=YY_START; BEGIN(CopyPHPString); } } YY_BREAK case 237: YY_RULE_SETUP #line 2459 "scanner.l" { *pCopyCurlyString+=*yytext; curlyCount++; } YY_BREAK case 238: YY_RULE_SETUP #line 2463 "scanner.l" { *pCopyCurlyString+=*yytext; if (--curlyCount<0) BEGIN(lastCurlyContext); } YY_BREAK case 239: YY_RULE_SETUP #line 2468 "scanner.l" { if (insidePHP) { REJECT; } else { *pCopyCurlyString+=yytext; } } YY_BREAK case 240: YY_RULE_SETUP #line 2477 "scanner.l" { *pCopyCurlyString+=yytext; } YY_BREAK case 241: YY_RULE_SETUP #line 2480 "scanner.l" { *pCopyCurlyString+=yytext; } YY_BREAK case 242: YY_RULE_SETUP #line 2481 "scanner.l" { yyLineNr++; *pCopyCurlyString+=*yytext; } YY_BREAK case 243: YY_RULE_SETUP #line 2485 "scanner.l" { *pCopyCurlyString+=*yytext; } YY_BREAK /* generic curly bracket list copy rules for growable strings */ case 244: YY_RULE_SETUP #line 2490 "scanner.l" { *pCopyCurlyGString+=*yytext; pCopyQuotedGString=pCopyCurlyGString; lastStringContext=YY_START; BEGIN(CopyGString); } YY_BREAK case 245: YY_RULE_SETUP #line 2496 "scanner.l" { *pCopyCurlyGString+=*yytext; if (insidePHP) { pCopyQuotedGString=pCopyCurlyGString; lastStringContext=YY_START; BEGIN(CopyPHPGString); } } YY_BREAK case 246: YY_RULE_SETUP #line 2505 "scanner.l" { *pCopyCurlyGString+=*yytext; curlyCount++; } YY_BREAK case 247: YY_RULE_SETUP #line 2509 "scanner.l" { *pCopyCurlyGString+=*yytext; if (--curlyCount<0) BEGIN(lastCurlyContext); } YY_BREAK case 248: YY_RULE_SETUP #line 2514 "scanner.l" { if (insidePHP) { REJECT; } else { *pCopyCurlyGString+=yytext; } } YY_BREAK case 249: YY_RULE_SETUP #line 2523 "scanner.l" { *pCopyCurlyGString+=yytext; } YY_BREAK case 250: YY_RULE_SETUP #line 2526 "scanner.l" { *pCopyCurlyGString+=yytext; } YY_BREAK case 251: YY_RULE_SETUP #line 2527 "scanner.l" { yyLineNr++; *pCopyCurlyGString+=*yytext; } YY_BREAK case 252: YY_RULE_SETUP #line 2531 "scanner.l" { *pCopyCurlyGString+=*yytext; } YY_BREAK /* ---------------------- */ case 253: YY_RULE_SETUP #line 2538 "scanner.l" { if (current->type.isEmpty()) // anonymous padding field, e.g. "int :7;" { addType(current); current->name.sprintf("__pad%d__",padCount++); } BEGIN(BitFields); current->bitfields+=":"; } YY_BREAK case 254: YY_RULE_SETUP #line 2547 "scanner.l" { current->bitfields+=*yytext; } YY_BREAK case 255: YY_RULE_SETUP #line 2550 "scanner.l" { QCString oldType = current->type.copy(); if (current->bodyLine==-1) { current->bodyLine = yyLineNr; } if ( insidePHP && current->type.left(3) == "var" ) { current->type = current->type.mid(3); } if (isTypedef && current->type.left(8)!="typedef ") { current->type.prepend("typedef "); } bool needNewCurrent=FALSE; if (!current->name.isEmpty() && current->section!=Entry::ENUM_SEC) { current->type=current->type.simplifyWhiteSpace(); current->args=removeRedundantWhiteSpace(current->args); current->name=current->name.stripWhiteSpace(); current->section = Entry::VARIABLE_SEC ; current->fileName = yyFileName; current->startLine = yyLineNr; current_root->addSubEntry( current ) ; needNewCurrent=TRUE; } if ( *yytext == ',') { if (needNewCurrent) { current = new Entry(*current); } current->name.resize(0); current->args.resize(0); current->brief.resize(0); current->doc.resize(0); current->initializer.resize(0); current->bitfields.resize(0); int i=oldType.length(); while (i>0 && (oldType[i-1]=='*' || oldType[i-1]=='&' || oldType[i-1]==' ')) i--; current->type = oldType.left(i); } else { if (needNewCurrent) { current = new Entry ; } else if (current->groups) { current->groups->clear(); } initEntry(); } BEGIN( FindMembers ) ; } YY_BREAK case 256: YY_RULE_SETUP #line 2607 "scanner.l" { if (!insideCS && current->name.isEmpty() || current->name=="typedef" ) // IDL function property { squareCount=1; lastSquareContext = YY_START; idlAttr.resize(0); idlProp.resize(0); current->mtype = mtype; BEGIN( IDLAttribute ); } else if (insideCS && current->name.isEmpty()) { squareCount=1; lastSquareContext = YY_START; // Skip the C# attribute // for this member current->args.resize(0); BEGIN( SkipSquare ); } else { current->args += yytext ; squareCount=1; BEGIN( Array ) ; } } YY_BREAK case 257: YY_RULE_SETUP #line 2637 "scanner.l" { // end of IDL function attribute if (--squareCount<=0) { lineCount(); if (current->mtype == Property) BEGIN( IDLPropName ); else BEGIN( lastSquareContext ); } } YY_BREAK case 258: YY_RULE_SETUP #line 2648 "scanner.l" { current->mtype = Property; current->spec |= Entry::Settable; } YY_BREAK case 259: YY_RULE_SETUP #line 2652 "scanner.l" { current->mtype = Property; current->spec |= Entry::Gettable; } YY_BREAK case 260: YY_RULE_SETUP #line 2656 "scanner.l" { } YY_BREAK case 261: YY_RULE_SETUP #line 2658 "scanner.l" { // return type (probably HRESULT) - skip it } YY_BREAK case 262: YY_RULE_SETUP #line 2661 "scanner.l" { current->name = yytext; current->name = current->name.left(current->name.length()-1).stripWhiteSpace(); current->startLine = yyLineNr; BEGIN( IDLProp ); } YY_BREAK case 263: YY_RULE_SETUP #line 2667 "scanner.l" { // attribute of a parameter idlAttr += yytext; } YY_BREAK case 264: YY_RULE_SETUP #line 2670 "scanner.l" { // property type idlProp = yytext; } YY_BREAK case 265: YY_RULE_SETUP #line 2673 "scanner.l" { // Rare: Another parameter ([propput] HRESULT Item(int index, [in] Type theRealProperty);) if (!current->args) current->args = "("; else current->args += ", "; current->args += idlAttr; current->args += " "; current->args += idlProp; // prop was actually type of extra parameter current->args += " "; current->args += yytext; current->args = current->args.left(current->args.length() - 1); // strip comma idlProp.resize(0); idlAttr.resize(0); BEGIN( IDLProp ); } YY_BREAK case 266: YY_RULE_SETUP #line 2688 "scanner.l" { // the parameter name for the property - just skip. } YY_BREAK case 267: YY_RULE_SETUP #line 2691 "scanner.l" { current->fileName = yyFileName; current->type = idlProp; current->args = current->args.simplifyWhiteSpace(); if (current->args) current->args += ")"; current->name = current->name.stripWhiteSpace(); current->section = Entry::VARIABLE_SEC; current_root->addSubEntry(current); current = new Entry; initEntry(); BEGIN( FindMembers ); } YY_BREAK case 268: YY_RULE_SETUP #line 2704 "scanner.l" { } YY_BREAK case 269: YY_RULE_SETUP #line 2706 "scanner.l" { current->args += *yytext ; if (--squareCount<=0) BEGIN( FindMembers ) ; } YY_BREAK case 270: YY_RULE_SETUP #line 2710 "scanner.l" { current->args += *yytext ; if (--squareCount<=0) BEGIN( Function ) ; } YY_BREAK case 271: YY_RULE_SETUP #line 2714 "scanner.l" { current->args += *yytext ; squareCount++; } YY_BREAK case 272: YY_RULE_SETUP #line 2717 "scanner.l" { current->args += *yytext ; } YY_BREAK case 273: YY_RULE_SETUP #line 2718 "scanner.l" { squareCount++; } YY_BREAK case 274: YY_RULE_SETUP #line 2719 "scanner.l" { if (--squareCount<=0) BEGIN( lastSquareContext ); } YY_BREAK case 275: YY_RULE_SETUP #line 2723 "scanner.l" { lastStringContext=YY_START; BEGIN( SkipString ); } YY_BREAK case 276: YY_RULE_SETUP #line 2727 "scanner.l" YY_BREAK case 277: YY_RULE_SETUP #line 2728 "scanner.l" { addType( current ) ; current->type += yytext ; BEGIN( Sharp ) ; } YY_BREAK case 278: YY_RULE_SETUP #line 2732 "scanner.l" { current->type += *yytext ; if (--sharpCount<=0) BEGIN( FindMembers ) ; } YY_BREAK case 279: YY_RULE_SETUP #line 2736 "scanner.l" { current->type += *yytext ; sharpCount++; } YY_BREAK case 280: YY_RULE_SETUP #line 2739 "scanner.l" { lineCount(); } YY_BREAK case 281: YY_RULE_SETUP #line 2742 "scanner.l" { current->type += *yytext ; } YY_BREAK case 282: YY_RULE_SETUP #line 2743 "scanner.l" { current->bodyLine = yyLineNr; current->name = yytext; } YY_BREAK case 283: YY_RULE_SETUP #line 2747 "scanner.l" { // Java enum initializer unput('('); lastInitializerContext = YY_START; initBracketCount=0; BEGIN(ReadInitializer); } YY_BREAK case 284: YY_RULE_SETUP #line 2754 "scanner.l" { lastInitializerContext = YY_START; initBracketCount=0; BEGIN(ReadInitializer); } YY_BREAK case 285: YY_RULE_SETUP #line 2759 "scanner.l" { if (insideJava) // last enum field in Java class { if (!current->name.isEmpty()) { 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; current_root->addSubEntry(current); current = new Entry ; initEntry(); } // TODO: skip until the end of the scope BEGIN( SkipRemainder ); } else { REJECT; } } YY_BREAK case 286: YY_RULE_SETUP #line 2783 "scanner.l" { yyLineNr++; } YY_BREAK case 287: YY_RULE_SETUP #line 2786 "scanner.l" YY_BREAK case 288: YY_RULE_SETUP #line 2787 "scanner.l" { //printf("adding `%s' `%s' `%s' to enum `%s' (mGrpId=%d)\n", // current->type.data(), current->name.data(), // current->args.data(), current_root->name.data(),current->mGrpId); if (!current->name.isEmpty()) { 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); if (!insideCS && !insideJava) // for C# and Java 1.5+ enum values always have to be explicitly qualified { current = new Entry(*current); // add to the scope surrounding the enum (copy!) current_root->parent()->addSubEntry(current); } current = new Entry ; initEntry(); } else // probably a redundant , { current->reset(); } } YY_BREAK case 289: YY_RULE_SETUP #line 2815 "scanner.l" { // attribute list in IDL squareCount=1; lastSquareContext = YY_START; BEGIN(SkipSquare); } YY_BREAK /* "," { unput(*yytext); BEGIN(FindFields); } */ case 290: YY_RULE_SETUP #line 2823 "scanner.l" { current->program += yytext ; } YY_BREAK case 291: YY_RULE_SETUP #line 2824 "scanner.l" { current->program += yytext ; } YY_BREAK case 292: YY_RULE_SETUP #line 2825 "scanner.l" { if (!insidePHP) REJECT; // append PHP comment. current->program += yytext ; } YY_BREAK case 293: YY_RULE_SETUP #line 2830 "scanner.l" { current->program += yytext ; pSkipVerbString = ¤t->program; lastSkipVerbStringContext=YY_START; BEGIN( SkipVerbString ); } YY_BREAK case 294: YY_RULE_SETUP #line 2835 "scanner.l" { current->program += yytext ; pCopyQuotedGString = ¤t->program; lastStringContext=YY_START; BEGIN( CopyGString ); } YY_BREAK case 295: YY_RULE_SETUP #line 2840 "scanner.l" { current->program += yytext ; lastContext = YY_START ; BEGIN( Comment ) ; } YY_BREAK case 296: YY_RULE_SETUP #line 2844 "scanner.l" { current->program += yytext ; ++yyLineNr ; lastContext = YY_START ; BEGIN( Comment ) ; } YY_BREAK case 297: YY_RULE_SETUP #line 2849 "scanner.l" { if (!insidePHP) { current->program += yytext; } else { // begin of single quoted string current->program += yytext; pCopyQuotedGString = ¤t->program; lastStringContext=YY_START; BEGIN(CopyPHPGString); } } YY_BREAK case 298: YY_RULE_SETUP #line 2862 "scanner.l" { if (insidePHP) { REJECT; // for PHP code single quotes // are used for strings of arbitrary length } else { current->program += yytext; } } YY_BREAK case 299: YY_RULE_SETUP #line 2873 "scanner.l" { current->program += yytext ; ++curlyCount ; } YY_BREAK case 300: YY_RULE_SETUP #line 2876 "scanner.l" { current->program += yytext ; --curlyCount ; } YY_BREAK case 301: YY_RULE_SETUP #line 2880 "scanner.l" { //err("ReadBody count=%d\n",curlyCount); if ( curlyCount>0 ) { current->program += yytext ; --curlyCount ; } else { current->endBodyLine = yyLineNr; QCString &cn = current->name; QCString rn = current_root->name.copy(); //printf("cn=`%s' rn=`%s'\n",cn.data(),rn.data()); if (!cn.isEmpty() && !rn.isEmpty()) { prependScope(); } 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=removeRedundantWhiteSpace(current->args); // was: current->args.simplifyWhiteSpace(); current->type = current->type.simplifyWhiteSpace(); current->name = current->name.stripWhiteSpace(); //printf("adding `%s' `%s' `%s' brief=%s insideObjC=%d %x\n",current->type.data(),current->name.data(),current->args.data(),current->brief.data(),insideObjC,current->section); if (insideObjC && ((current->spec&Entry::Interface) || (current->spec==Entry::Category)) ) // method definition follows { BEGIN( ReadBodyIntf ) ; } else { current_root->addSubEntry( current ) ; memspecEntry = current; current = new Entry(*current); if (current->section==Entry::NAMESPACE_SEC || (current->spec==Entry::Interface) || insideJava || insidePHP || insideCS || insideD || insideJS ) { // namespaces and interfaces and java classes ends with a closing bracket without semicolon current->reset(); initEntry(); memspecEntry = 0; BEGIN( FindMembers ) ; } else { current->doc.resize(0); current->brief.resize(0); BEGIN( MemberSpec ) ; } } } } } YY_BREAK case 302: YY_RULE_SETUP #line 2944 "scanner.l" { //err("ReadBody count=%d\n",curlyCount); lineCount(); if ( curlyCount>0 ) { current->program += yytext ; --curlyCount ; } else { isTypedef = TRUE; current->endBodyLine = yyLineNr; QCString &cn = current->name; QCString rn = current_root->name.copy(); if (!cn.isEmpty() && !rn.isEmpty()) { prependScope(); } BEGIN( TypedefName ); } } YY_BREAK case 303: YY_RULE_SETUP #line 2964 "scanner.l" { // late "const" or "volatile" keyword lineCount(); current->type.prepend(yytext); } YY_BREAK case 304: YY_RULE_SETUP #line 2968 "scanner.l" { if (current->section == Entry::ENUM_SEC) { current->program+=","; // add field terminator } current->name=yytext; prependScope(); 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 ) ; if (!firstTypedefEntry) { firstTypedefEntry = current; } current = new Entry; initEntry(); isTypedef=TRUE; // to undo reset by initEntry() BEGIN(MemberSpecSkip); } YY_BREAK case 305: YY_RULE_SETUP #line 2988 "scanner.l" { /* typedef of anonymous type */ current->name.sprintf("@%d",anonCount++); 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_root->addSubEntry( current ) ; memspecEntry = current; current = new Entry(*current); unput(';'); BEGIN( MemberSpec ) ; } YY_BREAK case 306: YY_RULE_SETUP #line 3003 "scanner.l" { // the [] part could be improved. lineCount(); int i=0,l=yyleng,j; while (ispec&Entry::Struct) { msType.prepend("struct "+firstTypedefEntry->name); } else if (firstTypedefEntry->spec&Entry::Union) { msType.prepend("union "+firstTypedefEntry->name); } else if (firstTypedefEntry->section==Entry::ENUM_SEC) { msType.prepend("enum "+firstTypedefEntry->name); } else { msType.prepend(firstTypedefEntry->name); } } } YY_BREAK case 307: YY_RULE_SETUP #line 3037 "scanner.l" { //printf("current->name=`%s' msName=`%s'\n",current->name.data(),msName.data()); if (msName.isEmpty() && !current->name.isEmpty()) { // 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; Entry *p=current; while (p) { // only look for class scopes, not namespace scopes if ((p->section & Entry::COMPOUND_MASK) && !p->name.isEmpty()) { //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 (p==current) p=current_root; else p=p->parent(); } } //printf("msName=%s current->name=%s\n",msName.data(),current->name.data()); if (!msName.isEmpty() && msName!=current->name) // skip typedef T {} T; { static bool typedefHidesStruct = Config_getBool("TYPEDEF_HIDES_STRUCT"); // case 1: typedef struct _S { ... } S_t; // -> omit typedef and use S_t as the struct name if (typedefHidesStruct && isTypedef && (current->spec&(Entry::Struct|Entry::Union)) && msType.stripWhiteSpace().isEmpty() && memspecEntry) { memspecEntry->name=msName; } else // case 2: create a typedef field { Entry *varEntry=new Entry; varEntry->protection = current->protection ; varEntry->mtype = current->mtype; varEntry->virt = current->virt; varEntry->stat = current->stat; varEntry->section = Entry::VARIABLE_SEC; varEntry->name = msName.stripWhiteSpace(); varEntry->type = current->type.simplifyWhiteSpace()+" "; varEntry->args = msArgs; if (isTypedef) { varEntry->type.prepend("typedef "); // //printf("current->name = %s %s\n",current->name.data(),msName.data()); } if (typedefHidesStruct && isTypedef && (current->spec&(Entry::Struct|Entry::Union)) && memspecEntry ) // case 1: use S_t as type for pS_t in "typedef struct _S {} S_t, *pS_t;" { varEntry->type+=memspecEntry->name+msType; } else // case 2: use _S as type for for pS_t { varEntry->type+=current->name+msType; } varEntry->fileName = yyFileName; varEntry->startLine = yyLineNr; varEntry->doc = current->doc.copy(); varEntry->brief = current->brief.copy(); varEntry->mGrpId = current->mGrpId; // deep copy group list QListIterator gli(*current->groups); Grouping *g; for (;(g=gli.current());++gli) { varEntry->groups->append(new Grouping(*g)); } if (current->sli) // copy special list items { QListIterator li(*current->sli); ListItemInfo *lii; for (li.toFirst();(lii=li.current());++li) { varEntry->addSpecialListItem(lii->type,lii->itemId); } } //printf("Add: type=`%s',name=`%s',args=`%s' brief=%s doc=%s\n", // varEntry->type.data(),varEntry->name.data(), // varEntry->args.data(),varEntry->brief.data(),varEntry->doc.data()); current_root->addSubEntry(varEntry); } } if (*yytext==';') { msType.resize(0); msName.resize(0); msArgs.resize(0); isTypedef=FALSE; firstTypedefEntry=0; memspecEntry=0; current->reset(); initEntry(); BEGIN( FindMembers ); } else { current->doc.resize(0); current->brief.resize(0); } } YY_BREAK case 308: YY_RULE_SETUP #line 3155 "scanner.l" { lastInitializerContext=YY_START; initBracketCount=0; BEGIN(ReadInitializer); /* BEGIN(MemberSpecSkip); */ } YY_BREAK /* "{" { curlyCount=0; lastCurlyContext = MemberSpecSkip; previous = current; BEGIN(SkipCurly); } */ case 309: YY_RULE_SETUP #line 3169 "scanner.l" { BEGIN(MemberSpec); } YY_BREAK case 310: YY_RULE_SETUP #line 3170 "scanner.l" { unput(';'); BEGIN(MemberSpec); } YY_BREAK case 311: YY_RULE_SETUP #line 3171 "scanner.l" { current->program += yytext ; lineCount() ; } YY_BREAK case 312: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 4; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 3174 "scanner.l" { // end of Objective C block current_root->addSubEntry( current ) ; current=new Entry; initEntry(); insideObjC=FALSE; BEGIN( FindMembers ); } YY_BREAK case 313: YY_RULE_SETUP #line 3181 "scanner.l" { current->program += yytext ; } YY_BREAK case 314: *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 */ #line 3184 "scanner.l" case 315: YY_RULE_SETUP #line 3184 "scanner.l" { /* typedef void (A::*ptr_t)(args...) or int (*func(int))[] */ current->bodyLine = yyLineNr; lineCount(); addType(current); funcPtrType=yytext; roundCount=0; //current->type += yytext; BEGIN( FuncPtr ); } YY_BREAK case 316: YY_RULE_SETUP #line 3193 "scanner.l" { current->name = yytext; if (nameIsOperator(current->name)) { BEGIN( FuncPtrOperator ); } else { if (current->name=="const" || current->name=="volatile") { funcPtrType += current->name; } else { BEGIN( EndFuncPtr ); } } } YY_BREAK case 317: YY_RULE_SETUP #line 3211 "scanner.l" { //printf("Error: FuncPtr `%c' unexpected at line %d of %s\n",*yytext,yyLineNr,yyFileName); } YY_BREAK case 318: *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 3214 "scanner.l" { current->name += yytext; current->name = current->name.simplifyWhiteSpace(); lineCount(); } YY_BREAK case 319: YY_RULE_SETUP #line 3219 "scanner.l" { yyLineNr++; current->name += *yytext; } YY_BREAK case 320: YY_RULE_SETUP #line 3223 "scanner.l" { unput(*yytext); BEGIN( EndFuncPtr ); } YY_BREAK case 321: YY_RULE_SETUP #line 3227 "scanner.l" { current->name += *yytext; } YY_BREAK case 322: *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 3230 "scanner.l" { // a variable with extra braces lineCount(); current->type+=funcPtrType.data()+1; BEGIN(FindMembers); } 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 3235 "scanner.l" { // a function pointer lineCount(); current->type+=funcPtrType+")"; BEGIN(FindMembers); } YY_BREAK case 324: *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 3240 "scanner.l" { // an array of variables lineCount(); current->type+=funcPtrType.data(); current->args += ")"; BEGIN(FindMembers); } YY_BREAK case 325: YY_RULE_SETUP #line 3246 "scanner.l" { // a function returning a function or // a function returning a pointer to an array current->args += *yytext ; //roundCount=0; //BEGIN( FuncFunc ); current->bodyLine = yyLineNr; currentArgumentContext = FuncFuncEnd; fullArgString=current->args.copy(); copyArgString=¤t->args; BEGIN( ReadFuncArgType ) ; } YY_BREAK case 326: YY_RULE_SETUP #line 3257 "scanner.l" { funcPtrType+=yytext; } YY_BREAK case 327: YY_RULE_SETUP #line 3260 "scanner.l" { BEGIN(FindMembers); } YY_BREAK case 328: YY_RULE_SETUP #line 3263 "scanner.l" { current->args += *yytext ; ++roundCount; } YY_BREAK case 329: YY_RULE_SETUP #line 3267 "scanner.l" { current->args += *yytext ; if ( roundCount ) --roundCount; else { BEGIN(FuncFuncEnd); } } YY_BREAK case 330: YY_RULE_SETUP #line 3276 "scanner.l" { lineCount(); current->type+=funcPtrType+")("; BEGIN(FuncFuncType); } YY_BREAK case 331: *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 3281 "scanner.l" { lineCount(); current->type+=funcPtrType.data()+1; BEGIN(Function); } YY_BREAK case 332: *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 3286 "scanner.l" { // function returning a pointer to an array lineCount(); current->type+=funcPtrType; current->args+=")"; BEGIN(FuncFuncArray); } YY_BREAK case 333: YY_RULE_SETUP #line 3292 "scanner.l" { current->args += *yytext; } YY_BREAK case 334: YY_RULE_SETUP #line 3295 "scanner.l" { current->type += *yytext; roundCount++; } YY_BREAK case 335: YY_RULE_SETUP #line 3299 "scanner.l" { current->type += *yytext; if (roundCount) --roundCount; else BEGIN(Function); } YY_BREAK case 336: YY_RULE_SETUP #line 3306 "scanner.l" { lineCount() ; current->type += ", " ; } YY_BREAK case 337: YY_RULE_SETUP #line 3307 "scanner.l" { lineCount() ; current->type += ' ' ; } YY_BREAK case 338: YY_RULE_SETUP #line 3308 "scanner.l" { current->type += *yytext; } YY_BREAK case 339: *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 3311 "scanner.l" { // for catching typedef void (__stdcall *f)() like definitions if (current->type.left(7)=="typedef" && current->bodyLine==-1) // the bodyLine check is to prevent this guard to be true more than once { current->bodyLine = yyLineNr; BEGIN( GetCallType ); } else if (!current->name.isEmpty()) // normal function { current->args = yytext; current->bodyLine = yyLineNr; currentArgumentContext = FuncQual; fullArgString=current->args.copy(); copyArgString=¤t->args; BEGIN( ReadFuncArgType ) ; //printf(">>> Read function arguments!\n"); } } YY_BREAK case 340: YY_RULE_SETUP #line 3329 "scanner.l" { lineCount(); addType(current); funcPtrType="("; funcPtrType+=yytext; roundCount=0; BEGIN( FuncPtr ); } YY_BREAK case 341: YY_RULE_SETUP #line 3337 "scanner.l" { if (!current->name.isEmpty()) { current->args = yytext; current->bodyLine = yyLineNr; currentArgumentContext = FuncQual; fullArgString=current->args.copy(); copyArgString=¤t->args; BEGIN( ReadFuncArgType ) ; //printf(">>> Read function arguments current->argList->count()=%d\n",current->argList->count()); } } YY_BREAK /* "("{BN}*("void"{BN}*)?")" { lineCount(); current->args = "()"; BEGIN( FuncQual ); } */ /*- Function argument reading rules ---------------------------------------*/ case 342: YY_RULE_SETUP #line 3359 "scanner.l" { *copyArgString+=yytext; fullArgString+=yytext; } YY_BREAK case 343: YY_RULE_SETUP #line 3362 "scanner.l" { *copyArgString+=yytext; fullArgString+=yytext; } YY_BREAK case 344: YY_RULE_SETUP #line 3365 "scanner.l" { *copyArgString+=yytext; fullArgString+=yytext; } YY_BREAK case 345: YY_RULE_SETUP #line 3369 "scanner.l" { *copyArgString+=" "; fullArgString+=" "; lineCount(); } YY_BREAK case 346: YY_RULE_SETUP #line 3374 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; lastCopyArgStringContext = YY_START; BEGIN( CopyArgString ); } YY_BREAK case 347: YY_RULE_SETUP #line 3380 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; argRoundCount=0; lastCopyArgContext = YY_START; BEGIN( CopyArgRound ); } YY_BREAK case 348: YY_RULE_SETUP #line 3387 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; stringToArgumentList(fullArgString,current->argList); if (insideJS) { fixArgumentListForJavaScript(current->argList); } handleParametersCommentBlocks(current->argList); /* remember the current documentation block, since we could overwrite it with the documentation of a function argument, which we then have to correct later on */ docBackup = current->doc; briefBackup = current->brief; BEGIN( currentArgumentContext ); } YY_BREAK /* a special comment */ case 349: YY_RULE_SETUP #line 3408 "scanner.l" { if (currentArgumentContext==DefineEnd) { // for defines we interpret a comment // as documentation for the define int i;for (i=yyleng-1;i>=0;i--) { unput(yytext[i]); } stringToArgumentList(fullArgString,current->argList); handleParametersCommentBlocks(current->argList); BEGIN( currentArgumentContext ); } else // not a define { // for functions we interpret a comment // as documentation for the argument fullArgString+=yytext; lastCopyArgChar=0; lastCommentInArgContext=YY_START; if (yytext[1]=='/') BEGIN( CopyArgCommentLine ); else BEGIN( CopyArgComment ); } } YY_BREAK /* a non-special comment */ case 350: YY_RULE_SETUP #line 3435 "scanner.l" { lastCContext = YY_START; BEGIN( SkipComment ); } YY_BREAK case 351: YY_RULE_SETUP #line 3439 "scanner.l" { lastCContext = YY_START; BEGIN( SkipCxxComment ); } YY_BREAK /* "'#" { if (insidePHP) REJECT; *copyArgString+=yytext; fullArgString+=yytext; } "#" { if (!insidePHP) REJECT; lastCContext = YY_START; BEGIN( SkipCxxComment ); } */ /* `)' followed by a special comment */ case 352: YY_RULE_SETUP #line 3457 "scanner.l" { lineCount(); if (currentArgumentContext==DefineEnd) { // for defines we interpret a comment // as documentation for the define int i;for (i=yyleng-1;i>0;i--) { unput(yytext[i]); } *copyArgString+=*yytext; fullArgString+=*yytext; stringToArgumentList(fullArgString,current->argList); handleParametersCommentBlocks(current->argList); BEGIN( currentArgumentContext ); } else { // for functions we interpret a comment // as documentation for the last argument lastCopyArgChar=*yytext; QCString text=&yytext[1]; text=text.stripWhiteSpace(); lastCommentInArgContext=YY_START; fullArgString+=text; if (text.find("//")!=-1) BEGIN( CopyArgCommentLine ); else BEGIN( CopyArgComment ); } } YY_BREAK case 353: YY_RULE_SETUP #line 3488 "scanner.l" YY_BREAK case 354: YY_RULE_SETUP #line 3489 "scanner.l" { fullArgString+=yytext; } YY_BREAK case 355: YY_RULE_SETUP #line 3490 "scanner.l" { fullArgString+=yytext; if (lastCopyArgChar!=0) unput(lastCopyArgChar); BEGIN( lastCommentInArgContext ); } YY_BREAK case 356: YY_RULE_SETUP #line 3495 "scanner.l" { fullArgString+=yytext; yyLineNr++; if (lastCopyArgChar!=0) unput(lastCopyArgChar); BEGIN( lastCommentInArgContext ); } YY_BREAK case 357: *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 3501 "scanner.l" { // verbatim command (which could contain nested comments!) docBlockName=&yytext[1]; fullArgString+=yytext; BEGIN(CopyArgVerbatim); } YY_BREAK case 358: YY_RULE_SETUP #line 3506 "scanner.l" { docBlockName=&yytext[1]; if (docBlockName.at(1)=='[') { docBlockName.at(1)='}'; } if (docBlockName.at(1)=='{') { docBlockName.at(1)='}'; } fullArgString+=yytext; BEGIN(CopyArgVerbatim); } YY_BREAK case 359: *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" { // end of verbatim block fullArgString+=yytext; if (yytext[1]=='f') // end of formula { BEGIN(CopyArgCommentLine); } if (&yytext[4]==docBlockName) { BEGIN(CopyArgCommentLine); } } YY_BREAK case 360: YY_RULE_SETUP #line 3530 "scanner.l" { fullArgString+=yytext; } YY_BREAK case 361: YY_RULE_SETUP #line 3531 "scanner.l" { fullArgString+=*yytext; } YY_BREAK case 362: YY_RULE_SETUP #line 3532 "scanner.l" { fullArgString+=*yytext; yyLineNr++; } YY_BREAK case 363: YY_RULE_SETUP #line 3533 "scanner.l" { fullArgString+=*yytext; } YY_BREAK case 364: YY_RULE_SETUP #line 3534 "scanner.l" { warn(yyFileName,yyLineNr, "Warning: Ignoring %cbrief command inside argument documentation",*yytext ); fullArgString+=' '; } YY_BREAK case 365: YY_RULE_SETUP #line 3540 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; argSharpCount=1; BEGIN( CopyArgSharp ); } YY_BREAK case 366: YY_RULE_SETUP #line 3546 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; //printf("end template list %s\n",copyArgString->data()); stringToArgumentList(fullArgString,currentArgumentList); BEGIN( currentArgumentContext ); } YY_BREAK case 367: YY_RULE_SETUP #line 3553 "scanner.l" { argRoundCount++; *copyArgString+=*yytext; fullArgString+=*yytext; } YY_BREAK case 368: YY_RULE_SETUP #line 3558 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; if (argRoundCount>0) argRoundCount--; else BEGIN( lastCopyArgContext ); } YY_BREAK case 369: YY_RULE_SETUP #line 3566 "scanner.l" { argSharpCount++; //printf("argSharpCount++=%d copy\n",argSharpCount); *copyArgString+=*yytext; fullArgString+=*yytext; } YY_BREAK case 370: YY_RULE_SETUP #line 3572 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; argSharpCount--; if (argSharpCount>0) { //printf("argSharpCount--=%d copy\n",argSharpCount); } else { BEGIN( ReadTempArgs ); //printf("end of argSharpCount\n"); } } YY_BREAK case 371: YY_RULE_SETUP #line 3586 "scanner.l" { *copyArgString+=yytext; fullArgString+=yytext; } YY_BREAK case 372: YY_RULE_SETUP #line 3590 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; BEGIN( lastCopyArgStringContext ); } YY_BREAK case 373: YY_RULE_SETUP #line 3595 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; BEGIN( lastCopyArgStringContext ); } YY_BREAK case 374: YY_RULE_SETUP #line 3600 "scanner.l" { if (insidePHP) { REJECT; } else { *copyArgString+=yytext; fullArgString+=yytext; } } YY_BREAK case 375: YY_RULE_SETUP #line 3611 "scanner.l" { *copyArgString+=yytext; fullArgString+=yytext; if (insidePHP) { lastCopyArgStringContext=YY_START; BEGIN(CopyArgPHPString); } } YY_BREAK case 376: YY_RULE_SETUP #line 3620 "scanner.l" { yyLineNr++; *copyArgString+=*yytext; fullArgString+=*yytext; } YY_BREAK case 377: YY_RULE_SETUP #line 3625 "scanner.l" { *copyArgString+=*yytext; fullArgString+=*yytext; } YY_BREAK /*------------------------------------------------------------------------*/ case 378: YY_RULE_SETUP #line 3635 "scanner.l" { current->args += *yytext ; ++roundCount ; } YY_BREAK case 379: YY_RULE_SETUP #line 3638 "scanner.l" { current->args += *yytext ; if ( roundCount ) --roundCount ; else BEGIN( FuncQual ) ; } YY_BREAK /* "#" { if (insidePHP) REJECT; lastCPPContext = YY_START; BEGIN(SkipCPP); } */ case 380: YY_RULE_SETUP #line 3651 "scanner.l" { if ( strcmp(yytext,";")==0 && insidePHP && !containsWord(current->type,"function") ) { current->reset(); initEntry(); BEGIN( FindMembers ); } else { unput(*yytext); BEGIN( Function ); } } YY_BREAK case 381: YY_RULE_SETUP #line 3665 "scanner.l" { // pure virtual member function lineCount() ; current->virt = Pure; current->args += " override "; } YY_BREAK case 382: YY_RULE_SETUP #line 3670 "scanner.l" { // overridden virtual member function lineCount() ; current->spec |= Entry::Override; current->args += " override "; } YY_BREAK case 383: YY_RULE_SETUP #line 3675 "scanner.l" { // sealed member function lineCount() ; current->spec |= Entry::Sealed; current->args += " sealed "; } YY_BREAK case 384: YY_RULE_SETUP #line 3680 "scanner.l" { // new member function lineCount() ; current->spec |= Entry::New; current->args += " new "; } YY_BREAK case 385: YY_RULE_SETUP #line 3685 "scanner.l" { // const member function lineCount() ; current->args += " const "; current->argList->constSpecifier=TRUE; } YY_BREAK case 386: YY_RULE_SETUP #line 3690 "scanner.l" { // volatile member function lineCount() ; current->args += " volatile "; current->argList->volatileSpecifier=TRUE; } YY_BREAK case 387: YY_RULE_SETUP #line 3695 "scanner.l" { // pure virtual member function lineCount() ; current->args += " = 0"; current->virt = Pure; current->argList->pureSpecifier=TRUE; } YY_BREAK case 388: YY_RULE_SETUP #line 3701 "scanner.l" { lineCount() ; current->args += ", " ; } YY_BREAK case 389: YY_RULE_SETUP #line 3705 "scanner.l" { lineCount() ; current->args += ' ' ; } YY_BREAK case 390: YY_RULE_SETUP #line 3709 "scanner.l" { if (insidePHP) REJECT; lastCPPContext = YY_START; BEGIN(SkipCPP); } YY_BREAK case 391: YY_RULE_SETUP #line 3714 "scanner.l" { if (insideCli && (current_root->section&Entry::COMPOUND_MASK) ) { BEGIN(CliOverride); } else { // typically an initialized function pointer lastInitializerContext=YY_START; initBracketCount=0; BEGIN(ReadInitializer); } } YY_BREAK case 392: YY_RULE_SETUP #line 3729 "scanner.l" { } YY_BREAK case 393: YY_RULE_SETUP #line 3731 "scanner.l" { unput(*yytext); BEGIN(FuncQual); } YY_BREAK case 394: YY_RULE_SETUP #line 3735 "scanner.l" { yyLineNr++; } YY_BREAK case 395: YY_RULE_SETUP #line 3738 "scanner.l" { } YY_BREAK case 396: YY_RULE_SETUP #line 3740 "scanner.l" { unput(*yytext); BEGIN(FuncQual); } YY_BREAK case 397: YY_RULE_SETUP #line 3744 "scanner.l" { current->args += *yytext; pCopyQuotedString=¤t->args; lastStringContext=FuncPtrInit; BEGIN(CopyString); } YY_BREAK case 398: YY_RULE_SETUP #line 3750 "scanner.l" { current->args += *yytext; if (insidePHP) { pCopyQuotedString=¤t->args; lastStringContext=FuncPtrInit; BEGIN(CopyPHPString); } } YY_BREAK case 399: YY_RULE_SETUP #line 3759 "scanner.l" { if (insidePHP) { REJECT; } else { current->args += yytext; } } YY_BREAK case 400: YY_RULE_SETUP #line 3769 "scanner.l" { current->args += yytext; } YY_BREAK case 401: YY_RULE_SETUP #line 3772 "scanner.l" { current->args += *yytext; } YY_BREAK case 402: YY_RULE_SETUP #line 3775 "scanner.l" { current->args += *yytext; yyLineNr++; } YY_BREAK case 403: YY_RULE_SETUP #line 3779 "scanner.l" { // typically a K&R style C function if (insideCS && strcmp(yytext,"where")==0) { // type contraint for a method delete current->typeConstr; current->typeConstr = new ArgumentList; current->typeConstr->append(new Argument); lastCSConstraint = YY_START; BEGIN( CSConstraintName ); } else if (checkForKnRstyleC()) { //fprintf(stderr,"===> got a K&R style function\n"); current->args = yytext; oldStyleArgType.resize(0); BEGIN(OldStyleArgs); } else { current->args += yytext; } } YY_BREAK case 404: YY_RULE_SETUP #line 3801 "scanner.l" { QCString oldStyleArgPtr; QCString oldStyleArgName; splitKnRArg(oldStyleArgPtr,oldStyleArgName); QCString doc,brief; if (current->doc!=docBackup) { doc=current->doc.copy(); current->doc=docBackup; } if (current->brief!=briefBackup) { brief=current->brief.copy(); current->brief=briefBackup; } addKnRArgInfo(oldStyleArgType+oldStyleArgPtr, oldStyleArgName,brief,doc); current->args.resize(0); if (*yytext==';') oldStyleArgType.resize(0); } YY_BREAK case 405: YY_RULE_SETUP #line 3821 "scanner.l" { current->args += yytext; } YY_BREAK case 406: YY_RULE_SETUP #line 3822 "scanner.l" { current->args = argListToString(current->argList); unput('{'); BEGIN(FuncQual); } YY_BREAK case 407: YY_RULE_SETUP #line 3827 "scanner.l" { current->args += *yytext; } YY_BREAK case 408: YY_RULE_SETUP #line 3828 "scanner.l" { current->args += *yytext; } YY_BREAK case 409: YY_RULE_SETUP #line 3829 "scanner.l" { /* try-function-block */ insideTryBlock=TRUE; lineCount(); } YY_BREAK case 410: YY_RULE_SETUP #line 3833 "scanner.l" { // C++ style throw clause current->exception = " throw (" ; roundCount=0; lineCount() ; BEGIN( ExcpRound ) ; } YY_BREAK case 411: YY_RULE_SETUP #line 3839 "scanner.l" { current->exception = " raises (" ; lineCount() ; roundCount=0; BEGIN( ExcpRound ) ; } YY_BREAK case 412: YY_RULE_SETUP #line 3845 "scanner.l" { // Java style throw clause current->exception = " throws " ; lineCount() ; BEGIN( ExcpList ); } YY_BREAK case 413: YY_RULE_SETUP #line 3850 "scanner.l" { current->exception += *yytext ; ++roundCount ; } YY_BREAK case 414: YY_RULE_SETUP #line 3853 "scanner.l" { current->exception += *yytext ; if ( roundCount ) --roundCount ; else BEGIN( FuncQual ) ; } YY_BREAK case 415: YY_RULE_SETUP #line 3859 "scanner.l" { current->exception += *yytext; } YY_BREAK case 416: YY_RULE_SETUP #line 3862 "scanner.l" { unput('{'); BEGIN( FuncQual ); } YY_BREAK case 417: YY_RULE_SETUP #line 3865 "scanner.l" { unput(';'); BEGIN( FuncQual ); } YY_BREAK case 418: YY_RULE_SETUP #line 3868 "scanner.l" { current->exception += ' '; yyLineNr++; } YY_BREAK case 419: YY_RULE_SETUP #line 3872 "scanner.l" { current->exception += *yytext; } YY_BREAK case 420: YY_RULE_SETUP #line 3875 "scanner.l" { current->type += current->name ; current->name = current->args ; current->args = yytext ; roundCount=0; BEGIN( FuncRound ) ; } YY_BREAK case 421: YY_RULE_SETUP #line 3881 "scanner.l" { if (!insidePHP) BEGIN(SkipInits); } YY_BREAK case 422: YY_RULE_SETUP #line 3884 "scanner.l" { current->name=current->name.simplifyWhiteSpace(); current->type=current->type.simplifyWhiteSpace(); current->args=removeRedundantWhiteSpace(current->args); // was: current->args.simplifyWhiteSpace(); current->fileName = yyFileName; current->startLine = yyLineNr; static QRegExp re("([^)]*\\[*&][^)]*)"); // (...*...) if (*yytext!=';' || (current_root->section&Entry::COMPOUND_MASK) ) { int tempArg=current->name.find('<'); QCString tempName; if (tempArg==-1) tempName=current->name; else tempName=current->name.left(tempArg); if (current->type.isEmpty() && (current->type.find(re,0)!=-1 || current->type.left(8)=="typedef ")) { //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 ; current->proto = *yytext==';'; } } 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()); if (!current->type.isEmpty() && (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'\n",current->name.data()); if ( insidePHP) { if (findAndRemoveWord(current->type,"final")) { current->spec |= Entry::Final; } if (findAndRemoveWord(current->type,"abstract")) { current->spec |= Entry::Abstract; } } if ( insidePHP && !containsWord(current->type,"function")) { initEntry(); } else { if ( insidePHP) { findAndRemoveWord(current->type,"function"); } previous = current; current_root->addSubEntry(current); current = new Entry ; initEntry(); lastCurlyContext = FindMembers; if ( *yytext == ',' ) { current->type = previous->type.data(); } if ( *yytext == '{' ) { if ( !insidePHP && (current_root->section & Entry::COMPOUND_MASK) ) { previous->spec |= Entry::Inline; } //addToBody(yytext); curlyCount=0; BEGIN( SkipCurly ) ; } else { if (previous->section!=Entry::VARIABLE_SEC) previous->bodyLine=-1; // a function/member declaration BEGIN( FindMembers ) ; } } } YY_BREAK case 423: YY_RULE_SETUP #line 3975 "scanner.l" { //addToBody(yytext); //lastCurlyContext = FindMembers; //curlyCount=0; //BEGIN( SkipCurly ) ; unput('{'); BEGIN( Function ); } YY_BREAK case 424: YY_RULE_SETUP #line 3983 "scanner.l" { //addToBody(yytext); ++curlyCount ; } YY_BREAK case 425: YY_RULE_SETUP #line 3987 "scanner.l" { //addToBody(yytext); if( curlyCount ) { --curlyCount ; } else { #if 0 if (!Config_getBool("HIDE_IN_BODY_DOCS") && !current->doc.isEmpty()) { // copy documentation found inside the body // to the previous item if (previous->inbodyLine==-1) { previous->inbodyLine = current->docLine; previous->inbodyFile = current->docFile; } //printf("*** inbodyDocs+=%s\n",current->doc.data()); previous->inbodyDocs += current->doc; current->doc.resize(0); } #endif if (current->sli) // copy special list items { QListIterator li(*current->sli); ListItemInfo *lii; for (li.toFirst();(lii=li.current());++li) { previous->addSpecialListItem(lii->type,lii->itemId); } delete current->sli; current->sli = 0; } if (previous) previous->endBodyLine=yyLineNr; BEGIN( lastCurlyContext ) ; } } YY_BREAK case 426: YY_RULE_SETUP #line 4026 "scanner.l" { lineCount(); if ( curlyCount ) { //addToBody(yytext); --curlyCount ; } else { current->endBodyLine=yyLineNr; tempEntry = current; // temporarily switch to the previous entry current = previous; docBlockContext = SkipCurlyEndDoc; docBlockInBody = FALSE; docBlockAutoBrief = ( yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF") ) || ( yytext[yyleng-2]=='!' && Config_getBool("QT_AUTOBRIEF") ); docBlock.resize(0); docBlockTerm = '}'; if (yytext[yyleng-3]=='/') { startCommentBlock(TRUE); BEGIN( DocLine ); } else { startCommentBlock(FALSE); BEGIN( DocBlock ); } } } YY_BREAK case 427: YY_RULE_SETUP #line 4058 "scanner.l" { // desc is followed by another one docBlockContext = SkipCurlyEndDoc; docBlockInBody = FALSE; docBlockAutoBrief = ( yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF") ) || ( yytext[yyleng-2]=='!' && Config_getBool("QT_AUTOBRIEF") ); docBlock.resize(0); docBlockTerm = '}'; if (yytext[yyleng-3]=='/') { startCommentBlock(TRUE); BEGIN( DocLine ); } else { startCommentBlock(FALSE); BEGIN( DocBlock ); } } YY_BREAK case 428: YY_RULE_SETUP #line 4076 "scanner.l" { //addToBody("}"); current = tempEntry; BEGIN( lastCurlyContext ); } YY_BREAK case 429: YY_RULE_SETUP #line 4081 "scanner.l" { //addToBody(yytext); lastStringContext=SkipCurly; BEGIN( SkipString ); } YY_BREAK case 430: YY_RULE_SETUP #line 4086 "scanner.l" { if (insidePHP) REJECT; //addToBody(yytext); BEGIN( SkipCurlyCpp ); } YY_BREAK case 431: YY_RULE_SETUP #line 4092 "scanner.l" { yyLineNr++; //addToBody(yytext); } YY_BREAK case 432: YY_RULE_SETUP #line 4096 "scanner.l" { //addToBody(yytext); } YY_BREAK case 433: YY_RULE_SETUP #line 4099 "scanner.l" { //addToBody(yytext); yyLineNr++; lastCurlyContext = FindMembers; BEGIN( SkipCurly ); } YY_BREAK case 434: YY_RULE_SETUP #line 4105 "scanner.l" { //addToBody(yytext); yyLineNr++; } YY_BREAK case 435: YY_RULE_SETUP #line 4109 "scanner.l" { //addToBody(yytext); lastCContext = YY_START; BEGIN(SkipComment); } YY_BREAK case 436: YY_RULE_SETUP #line 4114 "scanner.l" { //addToBody(yytext); lastCContext = YY_START; BEGIN(SkipCxxComment); } YY_BREAK case 437: YY_RULE_SETUP #line 4119 "scanner.l" { lastStringContext=YY_START; BEGIN( SkipString ); } YY_BREAK case 438: YY_RULE_SETUP #line 4123 "scanner.l" { warn(yyFileName,yyLineNr, "Warning: Found ';' while parsing initializer list! " "(doxygen could be confused by a macro call without semicolon)" ); BEGIN( FindMembers ); } YY_BREAK case 439: YY_RULE_SETUP #line 4130 "scanner.l" { if (!insidePHP) REJECT; //addToBody(yytext); lastCContext = YY_START; BEGIN(SkipCxxComment); } YY_BREAK case 440: YY_RULE_SETUP #line 4137 "scanner.l" { if (!insideCS) REJECT; // C# verbatim string lastSkipVerbStringContext=YY_START; pSkipVerbString=¤t->initializer; BEGIN(SkipVerbString); } YY_BREAK case 441: YY_RULE_SETUP #line 4144 "scanner.l" { if (insidePHP) REJECT; } YY_BREAK case 442: YY_RULE_SETUP #line 4147 "scanner.l" { if (insidePHP) { lastStringContext=YY_START; BEGIN(SkipPHPString); } } YY_BREAK case 443: YY_RULE_SETUP #line 4154 "scanner.l" { } YY_BREAK case 444: YY_RULE_SETUP #line 4155 "scanner.l" { } YY_BREAK case 445: YY_RULE_SETUP #line 4156 "scanner.l" { BEGIN( lastStringContext ); } YY_BREAK case 446: YY_RULE_SETUP #line 4159 "scanner.l" { BEGIN( lastStringContext ); } YY_BREAK case 447: YY_RULE_SETUP #line 4162 "scanner.l" { } YY_BREAK case 448: YY_RULE_SETUP #line 4163 "scanner.l" { yyLineNr++; } YY_BREAK case 449: YY_RULE_SETUP #line 4166 "scanner.l" { } YY_BREAK case 450: YY_RULE_SETUP #line 4167 "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 451: *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 4175 "scanner.l" { sharpCount = 0; current->name = yytext ; if (current->spec & Entry::Protocol) { current->name+="-p"; } lineCount(); lastClassTemplSpecContext = ClassVar; if (insideObjC) // protocol list { BEGIN( ObjCProtocolList ); } else // C++ template specialization { BEGIN( ClassTemplSpec ); } } YY_BREAK case 452: YY_RULE_SETUP #line 4193 "scanner.l" { insideProtocolList=TRUE; BEGIN( Bases ); } YY_BREAK case 453: YY_RULE_SETUP #line 4197 "scanner.l" { current->name += yytext; lineCount(); if (--sharpCount<=0) { current->name = removeRedundantWhiteSpace(current->name); if (current->spec & Entry::Protocol) { // Objective-C protocol unput('{'); // fake start of body BEGIN( ClassVar ); } else { BEGIN( lastClassTemplSpecContext ); } } } YY_BREAK case 454: YY_RULE_SETUP #line 4214 "scanner.l" { current->name += yytext; sharpCount++; } YY_BREAK case 455: YY_RULE_SETUP #line 4218 "scanner.l" { current->name += yytext; } YY_BREAK case 456: YY_RULE_SETUP #line 4221 "scanner.l" { // forward declaration unput(';'); current->reset(); if (isTypedef) // typedef of a class, put typedef keyword back { current->type.prepend("typedef"); } BEGIN( FindMembers ); } YY_BREAK case 457: *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 4230 "scanner.l" { current->name = yytext ; lineCount(); if (current->spec & Entry::Protocol) { current->name += "-p"; } BEGIN( ClassVar ); } YY_BREAK case 458: YY_RULE_SETUP #line 4239 "scanner.l" { current->name = yytext ; lineCount(); if (current->spec & Entry::Protocol) { current->name += "-p"; } if ((current->section & Entry::Protocol) || current->section == Entry::OBJCIMPL_SEC) { unput('{'); // fake start of body } BEGIN( ClassVar ); } YY_BREAK case 459: YY_RULE_SETUP #line 4253 "scanner.l" { // C# style scope current->name = substitute(yytext,".","::"); lineCount(); BEGIN( ClassVar ); } YY_BREAK case 460: *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 4258 "scanner.l" { if (insideIDL && strncmp(yytext,"switch",6)==0 && !isId(yytext[6])) { // Corba IDL style union roundCount=0; BEGIN(SkipUnionSwitch); } else { addType(current); current->name = yytext; current->name = current->name.stripWhiteSpace(); lineCount(); BEGIN( FindMembers ); } } YY_BREAK case 461: YY_RULE_SETUP #line 4274 "scanner.l" { if (isTypedef) { // multiple types in one typedef unput(','); current->type.prepend("typedef "); BEGIN(FindMembers); } else { // Multiple class forward declaration } } YY_BREAK case 462: YY_RULE_SETUP #line 4287 "scanner.l" { if (insideCli) { if (yytext[0]=='s') // sealed current->spec |= Entry::SealedClass; else // abstract current->spec |= Entry::AbstractClass; BEGIN( ClassVar ); } else { REJECT; } } YY_BREAK case 463: YY_RULE_SETUP #line 4301 "scanner.l" { if (insideIDL && strcmp(yytext,"switch")==0) { // Corba IDL style union roundCount=0; BEGIN(SkipUnionSwitch); } else if ((insideJava || insidePHP || insideJS) && (strcmp(yytext,"implements")==0 || strcmp(yytext,"extends")==0)) { current->type.resize(0); baseProt=Public; baseVirt=Normal; baseName.resize(0); BEGIN( BasesProt ) ; } else if (insideCS && strcmp(yytext,"where")==0) // C# type contraint { delete current->typeConstr; current->typeConstr = new ArgumentList; current->typeConstr->append(new Argument); lastCSConstraint = YY_START; BEGIN( CSConstraintName ); } else { if (current->section == Entry::ENUM_SEC) { // found "enum a b" -> variable current->section = Entry::VARIABLE_SEC ; } current->type += ' ' ; current->type += current->name ; current->name = yytext ; if (nameIsOperator(current->name)) { BEGIN( Operator ); } } } YY_BREAK case 464: YY_RULE_SETUP #line 4340 "scanner.l" { if (insideObjC && *yytext=='(') // class category { current->name+='('; if (current->section!=Entry::OBJCIMPL_SEC) { current->spec|=Entry::Category; } BEGIN( ClassCategory ); } else { // probably a function anyway unput(*yytext); BEGIN( FindMembers ); } } YY_BREAK case 465: YY_RULE_SETUP #line 4357 "scanner.l" { // special comment fullArgString.resize(0); lastCopyArgChar='#'; // end marker lastCommentInArgContext=YY_START; if (yytext[1]=='/') BEGIN( CopyArgCommentLine ); else BEGIN( CopyArgComment ); } YY_BREAK case 466: YY_RULE_SETUP #line 4366 "scanner.l" { // artifically inserted token to signal end of comment block current->typeConstr->last()->docs = fullArgString; } YY_BREAK case 467: YY_RULE_SETUP #line 4369 "scanner.l" { // end of type constraint reached // parse documentation of the constraints handleParametersCommentBlocks(current->typeConstr); unput('{'); BEGIN( lastCSConstraint ); } YY_BREAK case 468: YY_RULE_SETUP #line 4375 "scanner.l" { BEGIN( CSConstraintType ); } YY_BREAK case 469: YY_RULE_SETUP #line 4378 "scanner.l" { // parameter name current->typeConstr->last()->name=yytext; } YY_BREAK case 470: YY_RULE_SETUP #line 4382 "scanner.l" { // another constraint for a different param current->typeConstr->append(new Argument); BEGIN( CSConstraintName ); } YY_BREAK case 471: YY_RULE_SETUP #line 4386 "scanner.l" { if (current->typeConstr->last()->type.isEmpty()) // first type constraint for this parameter { current->typeConstr->last()->type=yytext; } else // new type constraint for same parameter { QCString name = current->typeConstr->last()->name; current->typeConstr->append(new Argument); current->typeConstr->last()->name=name; current->typeConstr->last()->type=yytext; } } YY_BREAK case 472: YY_RULE_SETUP #line 4400 "scanner.l" { yyLineNr++; } YY_BREAK case 473: YY_RULE_SETUP #line 4403 "scanner.l" { } YY_BREAK case 474: YY_RULE_SETUP #line 4405 "scanner.l" { current->name+=yytext; } YY_BREAK case 475: YY_RULE_SETUP #line 4408 "scanner.l" { current->name+=')'; if ((current->section & Entry::Protocol) || current->section == Entry::OBJCIMPL_SEC) { unput('{'); // fake start of body } else // category has no variables so push back an empty body { unput('}'); unput('{'); } BEGIN( ClassVar ); } YY_BREAK case 476: YY_RULE_SETUP #line 4422 "scanner.l" { current->type.resize(0); if ((current->spec & Entry::Interface) || (current->spec & Entry::Struct) || insidePHP || insideCS || insideD || insideObjC ) baseProt=Public; else baseProt=Private; baseVirt=Normal; baseName.resize(0); BEGIN( BasesProt ) ; } YY_BREAK case 477: YY_RULE_SETUP #line 4435 "scanner.l" { unput(*yytext); if (isTypedef) // typedef of a class, put typedef keyword back { current->type.prepend("typedef"); } BEGIN( FindMembers ); } YY_BREAK case 478: *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 4443 "scanner.l" { if (!insideObjC) { REJECT; } else { lineCount(); current->program+=yytext; current->fileName = yyFileName ; current->startLine = yyLineNr ; curlyCount=0; BEGIN( ReadBodyIntf ); } } YY_BREAK case 479: *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 */ #line 4459 "scanner.l" case 480: #line 4460 "scanner.l" case 481: #line 4461 "scanner.l" case 482: YY_RULE_SETUP #line 4461 "scanner.l" { if (!insideObjC) { REJECT; } else { lineCount(); current->program+=yytext; current->fileName = yyFileName ; current->startLine = yyLineNr ; curlyCount=0; BEGIN( ReadBodyIntf ); } } YY_BREAK case 483: YY_RULE_SETUP #line 4476 "scanner.l" { current->fileName = yyFileName ; current->startLine = yyLineNr ; current->name = removeRedundantWhiteSpace(current->name); if (current->name.isEmpty() && !isTypedef) // anonymous compound { if (current->section==Entry::NAMESPACE_SEC) // allow reopening of anonymous namespaces { if (Config_getBool("EXTRACT_ANON_NSPACES")) // use visible name { current->name="anonymous_namespace{"+stripPath(current->fileName)+"}"; } else // use invisible name { current->name.sprintf("@%d",anonNSCount); } } else { current->name.sprintf("@%d",anonCount++); } } curlyCount=0; if (current_root && // not a nested struct inside an @interface section !(current_root->spec & Entry::Interface) && ((current->spec & (Entry::Interface | Entry::Protocol | Entry::Category) || current->section==Entry::OBJCIMPL_SEC) ) && insideObjC ) { // ObjC body that ends with @end BEGIN( ReadBodyIntf ); } else if (current->section==Entry::NAMESPACE_SEC) { // namespace body BEGIN( ReadNSBody ); } else { // class body BEGIN( ReadBody ) ; } } YY_BREAK case 484: YY_RULE_SETUP #line 4518 "scanner.l" { lineCount(); baseVirt = Virtual; } YY_BREAK case 485: YY_RULE_SETUP #line 4519 "scanner.l" { lineCount(); baseProt = Public; } YY_BREAK case 486: YY_RULE_SETUP #line 4520 "scanner.l" { lineCount(); baseProt = Protected; } YY_BREAK case 487: YY_RULE_SETUP #line 4521 "scanner.l" { lineCount(); baseProt = Private; } YY_BREAK case 488: YY_RULE_SETUP #line 4522 "scanner.l" { lineCount(); } YY_BREAK case 489: YY_RULE_SETUP #line 4523 "scanner.l" { unput(*yytext); BEGIN(Bases); } YY_BREAK case 490: YY_RULE_SETUP #line 4524 "scanner.l" { baseName+=yytext; current->args += ' '; current->args += yytext; } YY_BREAK case 491: YY_RULE_SETUP #line 4529 "scanner.l" { // Java style class QCString name = substitute(yytext,".","::"); baseName += name; current->args += ' '; current->args += name; } YY_BREAK case 492: *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 4535 "scanner.l" { if (!insideObjC) { REJECT; } else { yyLineNr++; //unput('{'); } } YY_BREAK case 493: YY_RULE_SETUP #line 4546 "scanner.l" { // empty ObjC interface unput('d'); // insert fake body: {}@end unput('n'); unput('e'); unput('@'); unput('}'); unput('{'); } YY_BREAK case 494: YY_RULE_SETUP #line 4554 "scanner.l" { current->name += *yytext; sharpCount=1; roundCount=0; lastSkipSharpContext = YY_START; specName = ¤t->name; BEGIN ( Specialization ); } YY_BREAK case 495: YY_RULE_SETUP #line 4561 "scanner.l" { sharpCount=1; roundCount=0; lastSkipSharpContext = YY_START; if (insideObjC) // start of protocol list { unput(','); } else // template specialization { baseName += *yytext; specName = &baseName; BEGIN ( Specialization ); } } YY_BREAK case 496: YY_RULE_SETUP #line 4576 "scanner.l" { *specName += *yytext; if (roundCount==0) sharpCount++; } YY_BREAK case 497: YY_RULE_SETUP #line 4579 "scanner.l" { *specName += *yytext; if (roundCount==0 && --sharpCount<=0) BEGIN(lastSkipSharpContext); } YY_BREAK case 498: YY_RULE_SETUP #line 4584 "scanner.l" { lineCount(); *specName +=' '; } YY_BREAK case 499: YY_RULE_SETUP #line 4585 "scanner.l" { *specName += yytext; } YY_BREAK case 500: YY_RULE_SETUP #line 4586 "scanner.l" { if (insideCS) // for C# >> ends a nested template { REJECT; } else // for C++ >> is a bitshift operator and > > would end a nested template { *specName += yytext; } } YY_BREAK case 501: YY_RULE_SETUP #line 4596 "scanner.l" { lineCount(); } YY_BREAK case 502: YY_RULE_SETUP #line 4597 "scanner.l" { *specName += *yytext; roundCount++; } YY_BREAK case 503: YY_RULE_SETUP #line 4598 "scanner.l" { *specName += *yytext; roundCount--; } YY_BREAK case 504: YY_RULE_SETUP #line 4599 "scanner.l" { *specName += *yytext; } YY_BREAK case 505: YY_RULE_SETUP #line 4602 "scanner.l" { ++sharpCount; } YY_BREAK case 506: YY_RULE_SETUP #line 4603 "scanner.l" { if (--sharpCount<=0) BEGIN ( lastSkipSharpContext ); } YY_BREAK case 507: YY_RULE_SETUP #line 4606 "scanner.l" { ++roundCount; } YY_BREAK case 508: YY_RULE_SETUP #line 4607 "scanner.l" { if (--roundCount<=0) BEGIN ( lastSkipRoundContext ); } YY_BREAK case 509: YY_RULE_SETUP #line 4610 "scanner.l" { lineCount(); if (insideProtocolList) { baseName+="-p"; } else { current->args += ',' ; } current->name = removeRedundantWhiteSpace(current->name); if (!baseName.isEmpty()) { current->extends->append( new BaseInfo(baseName,baseProt,baseVirt) ); } if ((current->spec & Entry::Interface) || insideJava || insidePHP || insideCS || insideD || insideObjC) { baseProt=Public; } else { baseProt=Private; } baseVirt=Normal; baseName.resize(0); if (*yytext=='>') { // end of a ObjC protocol list insideProtocolList=FALSE; } else { if (*yytext==',' && insideObjC) // Begin of protocol list { insideProtocolList=TRUE; } BEGIN(BasesProt); } } YY_BREAK case 510: YY_RULE_SETUP #line 4651 "scanner.l" { current->fileName = yyFileName ; current->startLine = yyLineNr ; current->name = removeRedundantWhiteSpace(current->name); if (!baseName.isEmpty()) current->extends->append( new BaseInfo(baseName,baseProt,baseVirt) ); curlyCount=0; if (insideObjC) { BEGIN( ReadBodyIntf ); } else { BEGIN( ReadBody ) ; } } YY_BREAK case 511: YY_RULE_SETUP #line 4668 "scanner.l" { roundCount++; } YY_BREAK case 512: YY_RULE_SETUP #line 4671 "scanner.l" { if (--roundCount==0) { BEGIN(ClassVar); } } YY_BREAK case 513: YY_RULE_SETUP #line 4677 "scanner.l" { yyLineNr++; } YY_BREAK case 514: YY_RULE_SETUP #line 4678 "scanner.l" YY_BREAK case 515: YY_RULE_SETUP #line 4679 "scanner.l" { current->program += yytext ; lineCount() ; } YY_BREAK case 516: YY_RULE_SETUP #line 4682 "scanner.l" { current->program += yytext ; } YY_BREAK case 517: YY_RULE_SETUP #line 4683 "scanner.l" { current->program += yytext ; } YY_BREAK case 518: YY_RULE_SETUP #line 4684 "scanner.l" { insideCode=TRUE; current->program += yytext ; } YY_BREAK case 519: YY_RULE_SETUP #line 4688 "scanner.l" { insideCode=FALSE; current->program += yytext ; } YY_BREAK case 520: YY_RULE_SETUP #line 4692 "scanner.l" { current->program += yytext ; } YY_BREAK case 521: YY_RULE_SETUP #line 4693 "scanner.l" { current->program += yytext ; if (!insideCode) BEGIN( lastContext ) ; } YY_BREAK case 522: YY_RULE_SETUP #line 4696 "scanner.l" { current->program += *yytext ; } YY_BREAK case 523: YY_RULE_SETUP #line 4698 "scanner.l" { //printf("Start doc block at %d\n",yyLineNr); removeSlashes=(yytext[1]=='/'); tmpDocType=-1; #if 0 if (YY_START!=SkipCurly) { current->doc.resize(0); } #endif if (!current->doc.isEmpty()) { current->doc+="\n\n"; } else { current->docLine = yyLineNr; current->docFile = yyFileName; } // lastDocContext = YY_START; if (current_root->section & Entry::SCOPE_MASK) { current->inside = current_root->name+"::"; //if (current->mGrpId!=DOX_NOGROUP) //{ // memberGroupInside = current->inside.copy(); //} } docBlockContext = YY_START; docBlockInBody = YY_START==SkipCurly; docBlockAutoBrief = Config_getBool("QT_AUTOBRIEF"); docBlock.resize(0); if (docBlockAutoBrief) { current->briefLine = yyLineNr; current->briefFile = yyFileName; } #if 0 if (!docBlockInBody) { current->doc.resize(0); if (docBlockAutoBrief) { current->brief.resize(0); } } #endif startCommentBlock(FALSE); BEGIN( DocBlock ); } YY_BREAK case 524: *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 4750 "scanner.l" { removeSlashes=(yytext[1]=='/'); lastDocContext = YY_START; //printf("Found comment block at %s:%d\n",yyFileName,yyLineNr); if (current_root->section & Entry::SCOPE_MASK) { current->inside = current_root->name+"::"; //if (current->mGrpId!=DOX_NOGROUP) //{ // memberGroupInside = current->inside.copy(); //} } current->docLine = yyLineNr; current->docFile = yyFileName; docBlockContext = YY_START; docBlockInBody = YY_START==SkipCurly; docBlockAutoBrief = Config_getBool("JAVADOC_AUTOBRIEF"); docBlock.resize(0); if (docBlockAutoBrief) { current->briefLine = yyLineNr; current->briefFile = yyFileName; } #if 0 if (!docBlockInBody) { current->doc.resize(0); if (docBlockAutoBrief) { current->brief.resize(0); } } #endif startCommentBlock(FALSE); BEGIN( DocBlock ); } YY_BREAK case 525: YY_RULE_SETUP #line 4786 "scanner.l" { #if 0 if (YY_START!=SkipCurly) { current->brief.resize(0); current->briefFile=yyFileName; current->briefLine=yyLineNr; } #endif tmpDocType=-1; lastDocContext = YY_START; if (current_root->section & Entry::SCOPE_MASK) { current->inside = current_root->name+"::"; //if (current->mGrpId!=DOX_NOGROUP) //{ // memberGroupInside = current->inside.copy(); //} } docBlockContext = YY_START; docBlockInBody = YY_START==SkipCurly; docBlockAutoBrief = FALSE; docBlock.resize(0); startCommentBlock(current->brief.isEmpty()); BEGIN( DocLine ); } YY_BREAK case 526: *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 4812 "scanner.l" { #if 0 if (YY_START!=SkipCurly) { current->brief.resize(0); current->briefFile=yyFileName; current->briefLine=yyLineNr; } #endif tmpDocType=-1; lastDocContext = YY_START; if (current_root->section & Entry::SCOPE_MASK) { current->inside = current_root->name+"::"; //if (current->mGrpId!=DOX_NOGROUP) //{ // memberGroupInside = current->inside.copy(); //} } docBlockContext = YY_START; docBlockInBody = YY_START==SkipCurly; docBlockAutoBrief = FALSE; docBlock.resize(0); startCommentBlock(current->brief.isEmpty()); BEGIN( DocLine ); } YY_BREAK case 527: YY_RULE_SETUP #line 4838 "scanner.l" { lineCount(); } YY_BREAK case 528: YY_RULE_SETUP #line 4841 "scanner.l" { if (insideCS && !current->name.isEmpty() && !current->type.isEmpty()) { if (containsWord(current->type,"event")) // event { current->mtype = mtype = Event; } else // property { current->mtype = mtype = Property; } current->bodyLine = yyLineNr; curlyCount=0; BEGIN( CSAccessorDecl ); } else { if ((insideJava || insideCS || insideD) && current->name.isEmpty() ) { // static Java initializer needsSemi = FALSE; if (current->stat) { current->name="[static initializer]"; current->type.resize(0); } else { current->name="[instance initializer]"; } unput(*yytext); BEGIN( Function ); } else { needsSemi = TRUE; current->type.resize(0); current->name.resize(0); current->args.resize(0); current->argList->clear(); curlyCount=0; BEGIN( SkipCurlyBlock ); } } } YY_BREAK case 529: YY_RULE_SETUP #line 4890 "scanner.l" { curlyCount++; } YY_BREAK case 530: YY_RULE_SETUP #line 4891 "scanner.l" { if (curlyCount) { curlyCount--; } else { mtype = Method; unput(';'); BEGIN(FindMembers); } } YY_BREAK case 531: YY_RULE_SETUP #line 4903 "scanner.l" { if (curlyCount==0) current->spec |= Entry::Settable; } YY_BREAK case 532: YY_RULE_SETUP #line 4904 "scanner.l" { if (curlyCount==0) current->spec |= Entry::Gettable; } YY_BREAK case 533: YY_RULE_SETUP #line 4905 "scanner.l" { if (curlyCount==0) current->spec |= Entry::Addable; } YY_BREAK case 534: YY_RULE_SETUP #line 4906 "scanner.l" { if (curlyCount==0) current->spec |= Entry::Removable; } YY_BREAK case 535: YY_RULE_SETUP #line 4907 "scanner.l" { if (curlyCount==0) current->spec |= Entry::Raisable; } YY_BREAK case 536: YY_RULE_SETUP #line 4908 "scanner.l" {} YY_BREAK case 537: YY_RULE_SETUP #line 4909 "scanner.l" { yyLineNr++; } YY_BREAK /**********************************************************************************/ /******************** Documentation block related rules ***************************/ /**********************************************************************************/ /* ---- Single line comments ------ */ case 538: YY_RULE_SETUP #line 4919 "scanner.l" { // continuation of multiline C++-style comment docBlock+=yytext; docBlock.resize(docBlock.size() - 3); yyLineNr++; } YY_BREAK case 539: *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 4924 "scanner.l" { // whole line docBlock+=yytext; handleCommentBlock(docBlock,current->brief.isEmpty()); BEGIN( docBlockContext ); } YY_BREAK /* ---- Comments blocks ------ */ case 540: YY_RULE_SETUP #line 4932 "scanner.l" { // end of comment block handleCommentBlock(docBlock,FALSE); BEGIN(docBlockContext); } YY_BREAK case 541: *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 4936 "scanner.l" { // start of a comment line } YY_BREAK case 542: YY_RULE_SETUP #line 4938 "scanner.l" { // strip embedded C++ comments if at the start of a line } YY_BREAK case 543: YY_RULE_SETUP #line 4940 "scanner.l" { // slashes in the middle of a comment block docBlock+=yytext; } YY_BREAK case 544: YY_RULE_SETUP #line 4943 "scanner.l" { // start of a new comment in the // middle of a comment block docBlock+=yytext; } YY_BREAK case 545: *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 4947 "scanner.l" { // escaped command docBlock+=yytext; } YY_BREAK case 546: YY_RULE_SETUP #line 4950 "scanner.l" { docBlock+=yytext; docBlockName=&yytext[1]; if (docBlockName.at(1)=='{') { docBlockName.at(1)='}'; } BEGIN(DocCopyBlock); } YY_BREAK case 547: YY_RULE_SETUP #line 4959 "scanner.l" { docBlock+=yytext; docBlockName="
";
  					  BEGIN(DocCopyBlock);
  					}
	YY_BREAK
case 548:
*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 4964 "scanner.l"
{ // verbatim command (which could contain nested comments!)
                                          docBlock+=yytext;
				          docBlockName=&yytext[1];
  					  BEGIN(DocCopyBlock);
  					}
	YY_BREAK
case 549:
YY_RULE_SETUP
#line 4969 "scanner.l"
{
  					  if (insideCS)
					  {
					    docBlock+=yytext;
					    docBlockName="";
					    BEGIN(DocCopyBlock);
					  }
					  else
					  {
					    REJECT;
					  }
  					}
	YY_BREAK
case 550:
YY_RULE_SETUP
#line 4981 "scanner.l"
{ // any character that isn't special
  					  docBlock+=yytext;
  					}
	YY_BREAK
case 551:
YY_RULE_SETUP
#line 4984 "scanner.l"
{ // newline
  					  yyLineNr++;
					  docBlock+=*yytext;
  					}
	YY_BREAK
case 552:
YY_RULE_SETUP
#line 4988 "scanner.l"
{ // command block
					  docBlock+=*yytext;
  					}
	YY_BREAK
/* ---- Copy verbatim sections ------ */
case 553:
YY_RULE_SETUP
#line 4994 "scanner.l"
{ // end of a 
 block
  					  docBlock+=yytext;
					  if (docBlockName=="
")
					  {
  					    BEGIN(DocBlock);
					  }
  					}
	YY_BREAK
case 554:
YY_RULE_SETUP
#line 5001 "scanner.l"
{ // end of a  block
  					  docBlock+=yytext;
					  if (docBlockName=="")
					  {
  					    BEGIN(DocBlock);
					  }
  					}
	YY_BREAK
case 555:
YY_RULE_SETUP
#line 5008 "scanner.l"
{
  					  docBlock+=yytext;
					  BEGIN(DocBlock);
  					}
	YY_BREAK
case 556:
*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 5012 "scanner.l"
{ // end of verbatim block
  					  docBlock+=yytext;
					  if (&yytext[4]==docBlockName)
					  {
  					    BEGIN(DocBlock);
					  }
  					}
	YY_BREAK
case 557:
YY_RULE_SETUP
#line 5019 "scanner.l"
{ // start of a comment line
  					  if (docBlockName=="verbatim")
					  {
					    REJECT;
					  }
  					}
	YY_BREAK
case 558:
YY_RULE_SETUP
#line 5025 "scanner.l"
{ // any character that is not special
  					  docBlock+=yytext;
  					}
	YY_BREAK
case 559:
YY_RULE_SETUP
#line 5028 "scanner.l"
{
  					  docBlock+=yytext;
					}
	YY_BREAK
case 560:
YY_RULE_SETUP
#line 5031 "scanner.l"
{ // newline
  					  docBlock+=*yytext;
					  yyLineNr++;
  					}
	YY_BREAK
case 561:
YY_RULE_SETUP
#line 5035 "scanner.l"
{ // any other character
  					  docBlock+=*yytext;
  					}
	YY_BREAK
case YY_STATE_EOF(DocCopyBlock):
#line 5038 "scanner.l"
{
  					  warn(yyFileName,yyLineNr,
					      "Warning: reached end of file while inside a %s block!\n"
					      "The command that should end the block seems to be missing!\n",
					      docBlockName.data());
  					  yyterminate();
  					}
	YY_BREAK
/* ------------- Prototype parser -------------- */
case 562:
YY_RULE_SETUP
#line 5049 "scanner.l"
{
  					  current->name+=yytext;
  					}
	YY_BREAK
case 563:
YY_RULE_SETUP
#line 5052 "scanner.l"
{
  					  current->args+=*yytext;
					  currentArgumentContext = PrototypeQual;
					  fullArgString = current->args.copy();
					  copyArgString = ¤t->args;
					  BEGIN( ReadFuncArgType ) ;
  					}
	YY_BREAK
case 564:
YY_RULE_SETUP
#line 5059 "scanner.l"
{
  					  current->type+=current->name+yytext;
					  current->name.resize(0);
  					  BEGIN( PrototypePtr );
  					}
	YY_BREAK
case 565:
YY_RULE_SETUP
#line 5064 "scanner.l"
{
  					  current->name+=yytext;
  					}
	YY_BREAK
case 566:
YY_RULE_SETUP
#line 5067 "scanner.l"
{
  					  current->args+=*yytext;
					  currentArgumentContext = PrototypeQual;
					  fullArgString = current->args.copy();
					  copyArgString = ¤t->args;
					  BEGIN( ReadFuncArgType ) ;
  					}
	YY_BREAK
case 567:
YY_RULE_SETUP
#line 5074 "scanner.l"
{
  					  current->type+=')';
  					  BEGIN( Prototype );
  					}
	YY_BREAK
case 568:
YY_RULE_SETUP
#line 5078 "scanner.l"
{
  					  current->name+=yytext;
  					}
	YY_BREAK
case 569:
YY_RULE_SETUP
#line 5081 "scanner.l"
{
  					  BEGIN( PrototypeSkipLine);
  					}
	YY_BREAK
case 570:
YY_RULE_SETUP
#line 5084 "scanner.l"
{ 
  					  current->args += " const "; 
					  current->argList->constSpecifier=TRUE;
					}
	YY_BREAK
case 571:
YY_RULE_SETUP
#line 5088 "scanner.l"
{ 
  					  current->args += " volatile "; 
					  current->argList->volatileSpecifier=TRUE;
					}
	YY_BREAK
case 572:
YY_RULE_SETUP
#line 5092 "scanner.l"
{ 
					  current->args += " = 0"; 
					  current->virt = Pure; 
					  current->argList->pureSpecifier=TRUE;
					}
	YY_BREAK
case 573:
YY_RULE_SETUP
#line 5097 "scanner.l"
{
  					  current->exception = "throw(";
					  BEGIN(PrototypeExc);
  					}
	YY_BREAK
case 574:
YY_RULE_SETUP
#line 5101 "scanner.l"
{
  					  current->exception += ')';
					  BEGIN(PrototypeQual);
  					}
	YY_BREAK
case 575:
YY_RULE_SETUP
#line 5105 "scanner.l"
{
  					  current->exception += *yytext;
  					}
	YY_BREAK
case 576:
YY_RULE_SETUP
#line 5108 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 577:
YY_RULE_SETUP
#line 5111 "scanner.l"
{
  					  current->name += *yytext;
  					}
	YY_BREAK
case 578:
YY_RULE_SETUP
#line 5114 "scanner.l"
{
  					}
	YY_BREAK
/* ------------ Generic rules -------------- */
case 579:
*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 5121 "scanner.l"
{ 
					  BEGIN( lastCContext ) ;
					}
	YY_BREAK
case 580:
YY_RULE_SETUP
#line 5124 "scanner.l"

	YY_BREAK
case 581:
YY_RULE_SETUP
#line 5125 "scanner.l"
{ yyLineNr++ ; }
	YY_BREAK
case 582:
YY_RULE_SETUP
#line 5126 "scanner.l"
{
					  if (insideIDL && insideCppQuote)
					  {
					    BEGIN(EndCppQuote);
					  }
					}
	YY_BREAK
case 583:
YY_RULE_SETUP
#line 5132 "scanner.l"
{	
  					  if (!insidePHP)
  					    REJECT;
  					  lastCContext = YY_START ;
					  BEGIN( SkipCxxComment ) ;
					}
	YY_BREAK
case 584:
YY_RULE_SETUP
#line 5138 "scanner.l"
{
  					  if (insidePHP)
					  {
  					    lastStringContext=YY_START;
					    BEGIN(SkipPHPString);
					  }
  					}
	YY_BREAK
case 585:
YY_RULE_SETUP
#line 5145 "scanner.l"
{
  					  if (insidePHP)
					  {
  					    lastStringContext=YY_START;
					    BEGIN(SkipString);
					  }
  					}
	YY_BREAK
case 586:
YY_RULE_SETUP
#line 5152 "scanner.l"

	YY_BREAK
case 587:
YY_RULE_SETUP
#line 5153 "scanner.l"

	YY_BREAK
case 588:
YY_RULE_SETUP
#line 5154 "scanner.l"
{ lastCContext = YY_START ;
					  BEGIN( SkipComment ) ;
					}
	YY_BREAK
case 589:
YY_RULE_SETUP
#line 5157 "scanner.l"
{ BEGIN( lastCContext ) ; }
	YY_BREAK
case 590:
YY_RULE_SETUP
#line 5158 "scanner.l"
{	
  					  lastCContext = YY_START ;
					  BEGIN( SkipCxxComment ) ;
					}
	YY_BREAK
case 591:
YY_RULE_SETUP
#line 5162 "scanner.l"
ECHO;
	YY_BREAK
			case YY_STATE_EOF(INITIAL):
			case YY_STATE_EOF(Define):
			case YY_STATE_EOF(DefineEnd):
			case YY_STATE_EOF(CompoundName):
			case YY_STATE_EOF(ClassVar):
			case YY_STATE_EOF(CSConstraintName):
			case YY_STATE_EOF(CSConstraintType):
			case YY_STATE_EOF(ClassCategory):
			case YY_STATE_EOF(ClassTemplSpec):
			case YY_STATE_EOF(CliPropertyType):
			case YY_STATE_EOF(CliOverride):
			case YY_STATE_EOF(Bases):
			case YY_STATE_EOF(BasesProt):
			case YY_STATE_EOF(NextSemi):
			case YY_STATE_EOF(BitFields):
			case YY_STATE_EOF(FindMembers):
			case YY_STATE_EOF(FindMembersPHP):
			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(ExcpList):
			case YY_STATE_EOF(FuncQual):
			case YY_STATE_EOF(Operator):
			case YY_STATE_EOF(Array):
			case YY_STATE_EOF(ReadBody):
			case YY_STATE_EOF(ReadNSBody):
			case YY_STATE_EOF(ReadBodyIntf):
			case YY_STATE_EOF(Using):
			case YY_STATE_EOF(UsingDirective):
			case YY_STATE_EOF(SkipCurly):
			case YY_STATE_EOF(SkipCurlyCpp):
			case YY_STATE_EOF(SkipCurlyEndDoc):
			case YY_STATE_EOF(SkipString):
			case YY_STATE_EOF(SkipPHPString):
			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(Sharp):
			case YY_STATE_EOF(SkipSharp):
			case YY_STATE_EOF(SkipRound):
			case YY_STATE_EOF(SkipSquare):
			case YY_STATE_EOF(SkipRemainder):
			case YY_STATE_EOF(TypedefName):
			case YY_STATE_EOF(TryFunctionBlock):
			case YY_STATE_EOF(TryFunctionBlockEnd):
			case YY_STATE_EOF(Comment):
			case YY_STATE_EOF(PackageName):
			case YY_STATE_EOF(JavaImport):
			case YY_STATE_EOF(CSAccessorDecl):
			case YY_STATE_EOF(PreLineCtrl):
			case YY_STATE_EOF(DefinePHP):
			case YY_STATE_EOF(DefinePHPEnd):
			case YY_STATE_EOF(OldStyleArgs):
			case YY_STATE_EOF(SkipVerbString):
			case YY_STATE_EOF(ObjCMethod):
			case YY_STATE_EOF(ObjCReturnType):
			case YY_STATE_EOF(ObjCParams):
			case YY_STATE_EOF(ObjCParamType):
			case YY_STATE_EOF(ObjCProtocolList):
			case YY_STATE_EOF(QtPropType):
			case YY_STATE_EOF(QtPropName):
			case YY_STATE_EOF(QtPropAttr):
			case YY_STATE_EOF(QtPropRead):
			case YY_STATE_EOF(QtPropWrite):
			case YY_STATE_EOF(ReadInitializer):
			case YY_STATE_EOF(GetCallType):
			case YY_STATE_EOF(CppQuote):
			case YY_STATE_EOF(EndCppQuote):
			case YY_STATE_EOF(MemberSpec):
			case YY_STATE_EOF(MemberSpecSkip):
			case YY_STATE_EOF(EndTemplate):
			case YY_STATE_EOF(FuncPtr):
			case YY_STATE_EOF(FuncPtrOperator):
			case YY_STATE_EOF(EndFuncPtr):
			case YY_STATE_EOF(ReadFuncArgType):
			case YY_STATE_EOF(ReadTempArgs):
			case YY_STATE_EOF(IDLUnionCase):
			case YY_STATE_EOF(NSAliasName):
			case YY_STATE_EOF(NSAliasArg):
			case YY_STATE_EOF(CopyString):
			case YY_STATE_EOF(CopyPHPString):
			case YY_STATE_EOF(CopyGString):
			case YY_STATE_EOF(CopyPHPGString):
			case YY_STATE_EOF(CopyRound):
			case YY_STATE_EOF(CopyCurly):
			case YY_STATE_EOF(GCopyRound):
			case YY_STATE_EOF(GCopyCurly):
			case YY_STATE_EOF(SkipUnionSwitch):
			case YY_STATE_EOF(Specialization):
			case YY_STATE_EOF(FuncPtrInit):
			case YY_STATE_EOF(FuncFunc):
			case YY_STATE_EOF(FuncFuncEnd):
			case YY_STATE_EOF(FuncFuncType):
			case YY_STATE_EOF(FuncFuncArray):
			case YY_STATE_EOF(CopyArgString):
			case YY_STATE_EOF(CopyArgPHPString):
			case YY_STATE_EOF(CopyArgRound):
			case YY_STATE_EOF(CopyArgSharp):
			case YY_STATE_EOF(CopyArgComment):
			case YY_STATE_EOF(CopyArgCommentLine):
			case YY_STATE_EOF(CopyArgVerbatim):
			case YY_STATE_EOF(IDLAttribute):
			case YY_STATE_EOF(IDLProp):
			case YY_STATE_EOF(IDLPropName):
			case YY_STATE_EOF(Prototype):
			case YY_STATE_EOF(PrototypePtr):
			case YY_STATE_EOF(PrototypeQual):
			case YY_STATE_EOF(PrototypeExc):
			case YY_STATE_EOF(PrototypeSkipLine):
			case YY_STATE_EOF(DocLine):
			case YY_STATE_EOF(DocBlock):
				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 >= 3439 )
				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 >= 3439 )
			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 == 3438);
	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 5162 "scanner.l"


//----------------------------------------------------------------------------

static void startCommentBlock(bool brief)
{
  if (brief)
  {
    current->briefFile = yyFileName;
    current->briefLine = yyLineNr;
  }
  else
  {
    current->docFile = yyFileName;
    current->docLine = yyLineNr;
  }
}
  
//----------------------------------------------------------------------------

static void newEntry()
{
  current_root->addSubEntry(current);
  previous = current;
  current = new Entry ;
  initEntry();
}

static void handleCommentBlock(const QCString &doc,bool brief)
{
  static bool hideInBodyDocs = Config_getBool("HIDE_IN_BODY_DOCS");
  int position=0;
  bool needsEntry=FALSE;
  if (docBlockInBody && hideInBodyDocs) return;
  //printf("parseCommentBlock [%s]\n",doc.data());
  while (parseCommentBlock(
	g_thisParser,
	docBlockInBody ? previous : current,
	doc,        // text
	yyFileName, // file
	brief ? current->briefLine : current->docLine,   // line of block start
	docBlockInBody ? FALSE : brief, 
	docBlockInBody ? FALSE : docBlockAutoBrief,
	docBlockInBody,
	protection,
        position,
        needsEntry
        )
     ) 
  {
    //printf("parseCommentBlock position=%d [%s]\n",position,doc.data()+position);
    if (needsEntry) newEntry();
  }
  if (needsEntry)
  {
    newEntry();
  }

  if (docBlockTerm)
  {
    unput(docBlockTerm);
    docBlockTerm=0;
  }
}

static void handleParametersCommentBlocks(ArgumentList *al)
{
  //printf(">>>>>>> handleParametersCommentBlocks()\n");
  ArgumentListIterator ali(*al);
  Argument *a;
  for (ali.toFirst();(a=ali.current());++ali)
  {
    //printf("    Param %s docs=%s\n",a->name.data(),a->docs.data());
    if (!a->docs.isEmpty())
    {
      int position=0;
      bool needsEntry;

      // save context
      QCString orgDoc   = current->doc;
      QCString orgBrief = current->brief;
      int orgDocLine    = current->docLine;
      int orgBriefLine  = current->briefLine;

      current->doc.resize(0);
      current->brief.resize(0);

      //printf("handleParametersCommentBlock [%s]\n",doc.data());
      while (parseCommentBlock(
	     g_thisParser,
	     current,
	     a->docs,            // text
	     yyFileName,         // file
	     current->docLine,   // line of block start
	     FALSE, 
	     FALSE,
	     FALSE,
	     protection,
	     position,
	     needsEntry
	    )
	  ) 
      {
	//printf("handleParametersCommentBlock position=%d [%s]\n",position,doc.data()+position);
	if (needsEntry) newEntry();
      }
      if (needsEntry)
      {
	newEntry();
      }
      a->docs = current->doc;

      // restore context
      current->doc       = orgDoc;
      current->brief     = orgBrief;
      current->docLine   = orgDocLine;
      current->briefLine = orgBriefLine;
    }
  }
}


//----------------------------------------------------------------------------

static void parseCompounds(Entry *rt)
{
  //printf("parseCompounds(%s)\n",rt->name.data());
  g_inputFromFile = FALSE;
  EntryListIterator eli(*rt->children());
  Entry *ce;
  for (;(ce=eli.current());++eli)
  {
    if (!ce->program.isEmpty())
    {
      //printf("-- %s ---------\n%s\n---------------\n",
      //  ce->name.data(),ce->program.data());
      // init scanner state
      padCount=0;
      depthIf = 0;
      inputString = ce->program;
      inputPosition = 0;
      scanYYrestart( scanYYin ) ;
      if (ce->section==Entry::ENUM_SEC)
	BEGIN( FindFields ) ;
      else
	BEGIN( FindMembers ) ;
      current_root = ce ;
      yyFileName = ce->fileName;
      //setContext();
      yyLineNr = ce->startLine ;
      insideObjC = ce->objc;
      //printf("---> Inner block starts at line %d objC=%d\n",yyLineNr,insideObjC);
      //current->reset();
      if (current) delete current;
      current = new Entry;
      gstat = FALSE;
      int ni=ce->name.findRev("::"); if (ni==-1) ni=0; else ni+=2;
      // set default protection based on the compound type
      if( ce->section==Entry::CLASS_SEC ) // class
      {

        if (insidePHP || insideD || insideJS)
	{
          current->protection = protection = Public ; 
	}
	else if (insideJava)
	{
          current->protection = protection = Package ; 
	}
	else if (ce->spec&(Entry::Interface | Entry::Ref | Entry::Value | Entry::Struct | Entry::Union))
	{
	  if (ce->objc)
	  {
	    current->protection = protection = Protected ;
	  }
	  else
	  {
	    current->protection = protection = Public ;
	  }
	}
	else 
	{
          current->protection = protection = Private ;
	}
      }
      else if (ce->section == Entry::ENUM_SEC ) // enum
      {
	current->protection = protection = ce->protection;
      }
      else if (!ce->name.isEmpty() && ce->name.at(ni)=='@') // unnamed union or namespace
      {
	if (ce->section == Entry::NAMESPACE_SEC ) // unnamed namespace
	{
          current->stat = gstat = TRUE;
	}
	current->protection = protection = ce->protection;
      }
      else // named struct, union, protocol, category
      {
	current->protection = protection = Public ;
      }
      mtype = Method;
      virt = Normal;
      //printf("name=%s current->stat=%d gstat=%d\n",ce->name.data(),current->stat,gstat);

      //memberGroupId = DOX_NOGROUP;
      //memberGroupRelates.resize(0);
      //memberGroupInside.resize(0);
      groupEnterCompound(yyFileName,yyLineNr,ce->name);
      
      scanYYlex() ;
      g_lexInit=TRUE;
      //forceEndGroup();

      groupLeaveCompound(yyFileName,yyLineNr,ce->name);
      
      delete current; current=0;
      ce->program.resize(0);


      if (depthIf>0)
      {
	warn(yyFileName,yyLineNr,"Documentation block ended in the middle of a conditional section!");
      }
    }
    parseCompounds(ce);
  }
}

//----------------------------------------------------------------------------

static void parseMain(const char *fileName,const char *fileBuf,Entry *rt)
{
  initParser();
  //g_inputFromFile = TRUE;

  inputString = fileBuf;
  inputPosition = 0;
  g_inputFromFile = FALSE;

  //anonCount     = 0;  // don't reset per file
  depthIf       = 0;
  protection    = Public;
  mtype         = Method;
  gstat         = FALSE;
  virt          = Normal;
  current_root  = rt;
  global_root   = rt;
  inputFile.setName(fileName);
  if (inputFile.open(IO_ReadOnly))
  {
    yyLineNr= 1 ; 
    yyFileName = fileName;
    setContext();
    msg("Parsing file %s...\n",yyFileName.data());

    current_root  = rt ;
    initParser();
    groupEnterFile(yyFileName,yyLineNr);
    current       = new Entry;
    //printf("current=%p current_root=%p\n",current,current_root);
    int sec=guessSection(yyFileName);
    if (sec)
    {
      current->name    = yyFileName;
      current->section = sec;
      current_root->addSubEntry(current);
      current          = new Entry;
    }
    current->reset();
    scanYYrestart( scanYYin );
    if ( insidePHP )
    {
      BEGIN( FindMembersPHP );
    }
    else
    {
      BEGIN( FindMembers );
    }

    scanYYlex();
    g_lexInit=TRUE;

    if (YY_START==Comment)
    {
      warn(yyFileName,yyLineNr,"File ended in the middle of a comment block! Perhaps a missing \\endcode?");
    }

    //forceEndGroup();
    groupLeaveFile(yyFileName,yyLineNr);

    if (depthIf>0)
    {
      warn(yyFileName,yyLineNr,"Documentation block ended in the middle of a conditional section!");
    }

    rt->program.resize(0);
    delete current; current=0;

    parseCompounds(rt);

    inputFile.close();

    anonNSCount++;
  }
}

//----------------------------------------------------------------------------

static void parsePrototype(const QCString &text)
{
  //printf("**** parsePrototype(%s) begin\n",text.data());
  if (text.isEmpty()) 
  {
    warn(yyFileName,yyLineNr,"Empty prototype found!");
    return;
  }

  const char *orgInputString;
  int orgInputPosition;
  YY_BUFFER_STATE orgState;
  bool orgInputFromFile;
  
  // save scanner state
  orgState = YY_CURRENT_BUFFER;
  yy_switch_to_buffer(yy_create_buffer(scanYYin, YY_BUF_SIZE));
  orgInputString = inputString; 
  orgInputPosition = inputPosition;
  orgInputFromFile = g_inputFromFile;

  // set new string
  inputString = text;
  inputPosition = 0;
  g_inputFromFile = FALSE;
  scanYYrestart( scanYYin );
  BEGIN(Prototype);
  scanYYlex();
  g_lexInit=TRUE;

  current->name = current->name.stripWhiteSpace();
  if (current->section == Entry::MEMBERDOC_SEC && current->args.isEmpty())
    current->section = Entry::VARIABLEDOC_SEC;

  // restore original scanner state
  YY_BUFFER_STATE tmpState = YY_CURRENT_BUFFER;
  yy_switch_to_buffer(orgState);
  yy_delete_buffer(tmpState);
  inputString = orgInputString; 
  inputPosition = orgInputPosition;
  g_inputFromFile = orgInputFromFile;

  //printf("**** parsePrototype end\n");
}

void scanFreeScanner()
{
#if defined(YY_FLEX_SUBMINOR_VERSION)
  if (g_lexInit)
  {
    scanYYlex_destroy();
  }
#endif
}

//static void handleGroupStartCommand(const char *header)
//{
//  memberGroupHeader=header;
//  startGroupInDoc();
//}
//
//static void handleGroupEndCommand()
//{
//  endGroup();
//  previous=0;
//}

//----------------------------------------------------------------------------

void CLanguageScanner::parseInput(const char *fileName,const char *fileBuf,Entry *root)
{
  g_thisParser = this;
  ::parseMain(fileName,fileBuf,root);
}

void CLanguageScanner::parseCode(CodeOutputInterface & codeOutIntf,
                   const char * scopeName,
                   const QCString & input,
                   bool isExampleBlock,
                   const char * exampleName,
                   FileDef * fileDef,
                   int startLine,
                   int endLine,
                   bool inlineFragment,
		   MemberDef *memberDef
                  )
{
  ::parseCCode(codeOutIntf,scopeName,input,isExampleBlock,exampleName,
               fileDef,startLine,endLine,inlineFragment,memberDef);
}

bool CLanguageScanner::needsPreprocessing(const QCString &extension)
{
  QCString fe=extension.lower();
  return 
   !( fe==".java" || fe==".as"  || fe==".d"    || fe==".php" || 
      fe==".php4" || fe==".inc" || fe==".phtml" 
    );
}

void CLanguageScanner::resetCodeParserState()
{
  ::resetCCodeParserState();
}

void CLanguageScanner::parsePrototype(const char *text)
{
  ::parsePrototype(text);
}

//----------------------------------------------------------------------------

#if !defined(YY_FLEX_SUBMINOR_VERSION) 
//----------------------------------------------------------------------------
extern "C" { // some bogus code to keep the compiler happy
  void scannerYYdummy() { yy_flex_realloc(0,0); } 
}
#endif